1132 lines
36 KiB
C
1132 lines
36 KiB
C
#include "version.h"
|
||
#define __NPCTEMPLATE__
|
||
|
||
#include <stdio.h>
|
||
#include <string.h>
|
||
|
||
#include "common.h"
|
||
#include "npctemplate.h"
|
||
#include "buf.h"
|
||
#include "char_data.h"
|
||
#include "util.h"
|
||
#include "handletime.h"
|
||
#include "item.h"
|
||
#include "anim_tbl.h"
|
||
#include "configfile.h"
|
||
|
||
/*涩烂毛棵签卞允月凶户卞楮醒烂聒本永玄毛综月 */
|
||
typedef struct tagFunctionNameSet
|
||
{
|
||
char* id;
|
||
char* initfunc;
|
||
char* walkprefunc;
|
||
char* walkpostfunc;
|
||
char* preoverfunc;
|
||
char* postoverfunc;
|
||
char* watchfunc;
|
||
char* loopfunc;
|
||
char* dyingfunc;
|
||
char* talkedfunc;
|
||
char* preattackedfunc;
|
||
char* postattackedfunc;
|
||
char* offfunc;
|
||
char* lookedfunc;
|
||
char* itemputfunc;
|
||
char* specialtalkedfunc;
|
||
char* windowtalkedfunc;
|
||
}FunctionNameSet;
|
||
|
||
|
||
static FunctionNameSet functionSet[]={
|
||
|
||
{ "Sample" , "", "", "", "", "", "", "SampleLoop",
|
||
"SampleDying" ,"","", "","","","","",""},
|
||
|
||
/* 玉失 */
|
||
{ "Door" , "DoorInit" , "","",
|
||
"","DoorPostOver","DoorWatch","",
|
||
"","DoorTalked","", "",
|
||
"DoorOff","DoorLooked","","",""},
|
||
|
||
/* 饕 */
|
||
{ "SimpleShop" ,"SimpleShopInit","","",
|
||
"","","","","",
|
||
"SimpleShopTalked" , "","",
|
||
"","","" ,"SimpleShopSpecialTalked" ,""},
|
||
|
||
/* 丢永本□斥 */
|
||
{ "Msg" , "MsgInit" , "","",
|
||
"","","","",
|
||
"","","", "",
|
||
"","MsgLooked","","",""},
|
||
|
||
/* 伐□皿札□件 */
|
||
{ "Warp","WarpInit","","",
|
||
"","","","",
|
||
"","","","",
|
||
"","", "","",""},
|
||
|
||
/* 及谛 */
|
||
{ "TownPeople" ,"TownPeopleInit","","",
|
||
"","","","",
|
||
"", "TownPeopleTalked" ,"","",
|
||
"","","","",""},
|
||
|
||
/* 赢 */
|
||
{ "Oldman","OldmanInit","","",
|
||
"","","","",
|
||
"","OldmanTalked","","",
|
||
"","", "","",""},
|
||
|
||
|
||
/* 本□皮禾奶件玄 */
|
||
{ "SavePoint","SavePointInit","","",
|
||
"","","","",
|
||
"","SavePointTalked","","",
|
||
"","", "","","SavePointWindowTalked"},
|
||
|
||
/* 甲□仿□ */
|
||
{ "Healer","HealerInit","","",
|
||
"","","","",
|
||
"","HealerTalked","","",
|
||
"","", "","",""},
|
||
|
||
/* 家族Healer add code by shan */
|
||
{ "FmHealer","FmHealerInit","","",
|
||
"","","","",
|
||
"","FmHealerTalked","","",
|
||
"","", "","",""},
|
||
|
||
/* 白虎给予者 add code by shan */
|
||
{ "PetMaker","PetMakerInit","","",
|
||
"","","","",
|
||
"","PetMakerTalked","","",
|
||
"","", "","",""},
|
||
|
||
/* 贿曰 */
|
||
{ "StoryTeller","StoryTellerInit","","",
|
||
"","","","",
|
||
"","StoryTellerTalked","","",
|
||
"","", "","",""},
|
||
|
||
/* 尕 遣盒 */
|
||
{ "RoomAdminNew","RoomAdminNewInit","","",
|
||
"","","","RoomAdminNewLoop",
|
||
"","RoomAdminNewTalked","","",
|
||
"","", "","",""},
|
||
|
||
/* 鳗蜕 */
|
||
{"Dengon",
|
||
"DengonInit", "", "", "", "", "", "", "", "",
|
||
"", "", "", "DengonLooked", "", "","DengonWindowTalked"},
|
||
|
||
/* 家族留言板 add code by shan */
|
||
{"FmDengon",
|
||
"FmDengonInit", "", "", "", "", "", "", "", "",
|
||
"", "", "", "FmDengonLooked", "", "","FmDengonWindowTalked"},
|
||
|
||
/*煽沓馨笛失奶 丞宁岳*/
|
||
{ "ItemCompo" , "ItemCompoInit", "", "",
|
||
"", "", "", "",
|
||
"" ,"ItemCompoTalked","",""
|
||
,"","","" , "",""},
|
||
|
||
/* 裔烂衬 */
|
||
{ "NPCEnemy","NPCEnemyInit","","",
|
||
"","","NPCEnemyWatch","",
|
||
"","NPCEnemyTalked","","",
|
||
"","", "","","NPCEnemyWindowTalked"},
|
||
|
||
/* 失弁扑亦件楝 */
|
||
{ "Action","ActionInit","","",
|
||
"","","ActionWatch","",
|
||
"","ActionTalked","","",
|
||
"","", "","",""},
|
||
|
||
/* 迕它奴件玉它NPC */
|
||
{ "Windowman","WindowmanInit","","",
|
||
"","","","",
|
||
"","WindowmanTalked","","",
|
||
"","WindowmanLooked", "","","WindowmanWindowTalked"},
|
||
|
||
/*windowhealer */
|
||
{ "WindowHealer","WindowHealerInit","","",
|
||
"","","","",
|
||
"","WindowHealerTalked","","",
|
||
"","WindowHealerLooked", "","","WindowHealerWindowTalked"},
|
||
|
||
|
||
/* ItemShop */
|
||
{ "ItemShop","ItemShopInit","","",
|
||
"","","","",
|
||
"","ItemShopTalked","","",
|
||
"","", "","","ItemShopWindowTalked"},
|
||
|
||
{"Sysinfo",
|
||
"SysinfoInit", "", "",
|
||
"", "", "", "SysinfoLoop",
|
||
"", "SysinfoTalked","", "",
|
||
"", "", "", "",""},
|
||
|
||
/* Duel仿件平件弘 憎NPC */
|
||
{ "Duelranking","DuelrankingInit","","",
|
||
"","","",
|
||
#ifdef _DEATH_CONTEND
|
||
"Duelrankingloop",
|
||
#else
|
||
"",
|
||
#endif
|
||
"","","","",
|
||
"","DuelrankingLooked", "","","DuelrankingWindowTalked"},
|
||
|
||
|
||
/* PetSkillShop */
|
||
{ "PetSkillShop","PetSkillShopInit","","",
|
||
"","","","",
|
||
"","PetSkillShopTalked","","",
|
||
"","", "","","PetSkillShopWindowTalked"},
|
||
|
||
/* PetShop */
|
||
{ "PetShop","PetShopInit","","",
|
||
"","","","",
|
||
"","PetShopTalked","","",
|
||
"","", "","","PetShopWindowTalked"},
|
||
|
||
|
||
/* SignBoard */
|
||
{ "SignBoard","SignBoardInit","","",
|
||
"","","","",
|
||
"","","","",
|
||
"","SignBoardLooked", "","","SignBoardWindowTalked"},
|
||
|
||
|
||
/* WarpMan */
|
||
{ "WarpMan","WarpManInit","","",
|
||
"","","WarpManWatch","WarpManLoop",
|
||
"","WarpManTalked","","",
|
||
"","", "","","WarpManWindowTalked"},
|
||
|
||
|
||
/* ExChangeman */
|
||
{ "ExChangeMan","ExChangeManInit","","",
|
||
"","","","",
|
||
"","ExChangeManTalked","","",
|
||
"","", "","","ExChangeManWindowTalked"},
|
||
|
||
/* timeman */
|
||
{ "TimeMan","TimeManInit","","",
|
||
"","","TimeManWatch","",
|
||
"","TimeManTalked","","",
|
||
"","", "","",""},
|
||
|
||
/* 示犯奴仿件必□斥 */
|
||
{ "BodyLan","BodyLanInit","","",
|
||
"","","BodyLanWatch","",
|
||
"","BodyLanTalked","","",
|
||
"","", "","","BodyLanWindowTalked"},
|
||
|
||
/* 示犯奴仿件必□斥 */
|
||
{ "Mic","MicInit","","",
|
||
"","","","",
|
||
"","MicTalked","","",
|
||
"","", "","",""},
|
||
|
||
/* 仿永平□穴件 */
|
||
{ "LuckyMan","LuckyManInit","","",
|
||
"","","","",
|
||
"","LuckyManTalked","","",
|
||
"","", "","","LuckyManWindowTalked"},
|
||
|
||
/* 穴件乒旦田旦楝 */
|
||
{ "Bus","BusInit","","",
|
||
"","","","BusLoop",
|
||
"","BusTalked","","",
|
||
"","", "","",""},
|
||
|
||
/* 加美航空 */ // Arminius 7.7 Ariplane
|
||
{ "Airplane","AirInit","","",
|
||
"","","","AirLoop",
|
||
"","AirTalked","","",
|
||
"","", "","",""},
|
||
|
||
/* 楝 */
|
||
{ "Charm","CharmInit","","",
|
||
"","","","",
|
||
"","CharmTalked","","",
|
||
"","", "","","CharmWindowTalked"},
|
||
|
||
/* 弁奶术楝 */
|
||
{ "Quiz","QuizInit","","",
|
||
"","","","",
|
||
"","QuizTalked","","",
|
||
"","", "","","QuizWindowTalked"},
|
||
|
||
/* 失奶 丞 曰盒今氏 */
|
||
{ "PoolItemShop","PoolItemShopInit","","",
|
||
"","","","PoolItemShopLoop",
|
||
"","PoolItemShopTalked","","",
|
||
"","", "","","PoolItemShopWindowTalked"},
|
||
|
||
/* 奶矛件玄民尼永弁穴件 */
|
||
{ "CheckMan","CheckManInit","","",
|
||
"","","","",
|
||
"","CheckManTalked","","",
|
||
"","", "","","CheckManWindowTalked"},
|
||
|
||
/* 元扎氏仃氏楝 */
|
||
{ "Janken","JankenInit","","",
|
||
"","","","",
|
||
"","JankenTalked","","",
|
||
"","", "","","JankenWindowTalked"},
|
||
|
||
/* 鳖戏谛 */
|
||
{ "Transmigration","TransmigrationInit","","",
|
||
"","","","",
|
||
"","TransmigrationTalked","","",
|
||
"","", "","","TransmigrationWindowTalked"},
|
||
|
||
/* Family Man */
|
||
{ "Familyman","FamilymanInit","","",
|
||
"","","","",
|
||
"","FamilymanTalked","","",
|
||
"","FamilymanLooked", "","","FamilymanWindowTalked"},
|
||
|
||
/* CoolFish: Family Warp Man 2001/6/6 */
|
||
{ "FMWarpMan","FMWarpManInit","","",
|
||
"","","","FMWarpManLoop",
|
||
"","FMWarpManTalked","","",
|
||
"","", "","","FMWarpManWindowTalked"},
|
||
|
||
/* CoolFish: Family PK Man 2001/7/4 */
|
||
{ "FMPKMan","FMPKManInit","","",
|
||
"","","","",
|
||
"","FMPKManTalked","","",
|
||
"","", "","","FMPKManWindowTalked"},
|
||
|
||
/* CoolFish: Family PK CallMan 2001/7/13 */
|
||
{ "FMPKCallMan","FMPKCallManInit","","",
|
||
"","","","",
|
||
"","FMPKCallManTalked","","",
|
||
"","", "","","FMPKCallManWindowTalked"},
|
||
|
||
/* Bank Man */
|
||
{ "Bankman","BankmanInit","","",
|
||
"","","","",
|
||
"","BankmanTalked","","",
|
||
"","BankmanLooked", "","","BankmanWindowTalked"},
|
||
|
||
/* Arminius 7.13 scheduleman */
|
||
{ "Scheduleman","SchedulemanInit","","",
|
||
"","","","SchedulemanLoop",
|
||
"","SchedulemanTalked","","",
|
||
"","", "","","SchedulemanWindowTalked"},
|
||
|
||
/* Arminius 7.24 manor scheduleman */
|
||
{ "ManorSman","ManorSmanInit","","",
|
||
"","","","ManorSmanLoop",
|
||
"","ManorSmanTalked","","",
|
||
"","", "","","ManorSmanWindowTalked"},
|
||
|
||
// Robin
|
||
{ "Riderman","RidermanInit","","",
|
||
"","","","",
|
||
"","RidermanTalked","","",
|
||
"","RidermanLooked", "","","RidermanWindowTalked"},
|
||
|
||
{ "FmLetter","FmLetterInit","","",
|
||
"","","","",
|
||
"","FmLetterTalked","","",
|
||
"","FmLetterLooked", "","","FmLetterWindowTalked"}
|
||
// Terry 2001/08/30
|
||
// 石器服务员 StoneSreviceMan
|
||
#ifdef _SERVICE
|
||
,{
|
||
"StoneServiceMan","StoneServiceManInit","","","","","",
|
||
"StoneServiceManLoop","",
|
||
"StoneServiceManTalked","","","","","","",
|
||
"StoneServiceManWindowTalked"
|
||
}
|
||
#endif
|
||
#ifdef _GAMBLE_BANK
|
||
,{
|
||
"NPC_GambleBank","GambleBankInit","","","","","",
|
||
"GambleBankLoop","",
|
||
"GambleBankTalked","","","","","","",
|
||
"GambleBankWindowTalked"
|
||
}
|
||
#endif
|
||
|
||
#ifdef _GAMBLE_ROULETTE //Gamble_Roulette
|
||
,{
|
||
"NPC_GambleRoulette","GambleRouletteInit","","","","","",
|
||
"GambleRouletteLoop","",
|
||
"GambleRouletteTalked","","","","","","",
|
||
"GambleRouletteWindowTalked"
|
||
}
|
||
//主持人
|
||
,{
|
||
"NPC_GambleMaster","GambleMasterInit","","","","","",
|
||
"GambleMasterLoop","",
|
||
"GambleMasterTalked","","","","","","",
|
||
"GambleMasterWindowTalked"
|
||
}
|
||
|
||
#endif
|
||
|
||
#ifdef _TRANSER_MAN
|
||
/* TranserMan */
|
||
,{ "TranserMan","TranserManInit","","",
|
||
"","","","TranserManLoop",
|
||
"","TranserManTalked","","",
|
||
"","", "","","TranserManWindowTalked"
|
||
}
|
||
#endif
|
||
|
||
#ifdef _NPC_SELLSTH
|
||
/* SellsthMan */
|
||
,{ "SellsthMan","SellsthManInit","","",
|
||
"","","","SellsthManLoop",
|
||
"","SellsthManTalked","","",
|
||
"","", "","","SellsthManWindowTalked"
|
||
}
|
||
#endif
|
||
|
||
#ifdef _NPC_MAKEPAIR
|
||
,{ "MakePair","MakePairManInit","","",
|
||
"","","","MakePairManLoop",
|
||
"","MakePairManTalked","","",
|
||
"","", "","","MakePairManWindowTalked"
|
||
}
|
||
#endif
|
||
|
||
#ifdef _NPC_FUSION
|
||
,{ "PetFusion","PetFusionManInit","","",
|
||
"","","","PetFusionManLoop",
|
||
"","PetFusionManTalked","","",
|
||
"","", "","","PetFusionManWindowTalked"
|
||
}
|
||
#endif
|
||
|
||
#ifdef _PAUCTION_MAN
|
||
/* PauctionMan */
|
||
,{ "PauctionMan","PauctionManInit","","",
|
||
"","","","PauctionManLoop",
|
||
"","PauctionManTalked","","",
|
||
"","", "","","PauctionManWindowTalked"
|
||
}
|
||
#endif
|
||
|
||
#ifdef _ITEM_NPCCHANGE
|
||
,{ "ItemchangeMan","ItemchangeManInit","","",
|
||
"","","","ItemchangeManLoop",
|
||
"","ItemchangeManTalked","","",
|
||
"","", "","","ItemchangeManWindowTalked"
|
||
}
|
||
#endif
|
||
|
||
#ifdef _CFREE_petskill
|
||
,{
|
||
"NPC_FreePetSkill","FreePetSkillInit","","","","","",
|
||
"","",
|
||
"FreePetSkillTalked","","","","","","",
|
||
"FreePetSkillWindowTalked"
|
||
}
|
||
|
||
#endif
|
||
|
||
#ifdef _PETRACE
|
||
//主持人
|
||
,{
|
||
"PetRaceMaster","PetRaceMasterInit","","","","","",
|
||
"PetRaceMasterLoop","",
|
||
"PetRaceMasterTalked","","","","","","",
|
||
"PetRaceMasterWindowTalked"
|
||
}
|
||
// 宠物
|
||
,{
|
||
"PetRacePet","PetRacePetInit","","","","","",
|
||
"PetRacePetLoop","",
|
||
"PetRacePetTalked","","","","","","",""
|
||
}
|
||
#endif
|
||
|
||
#ifdef _NEW_WARPMAN
|
||
,{
|
||
"NPC_NewNpcMan","NewNpcManInit","","","","","",
|
||
"NewNpcManLoop","",
|
||
"NewNpcManTalked","","","","","","",
|
||
"NewNpcManWindowTalked"
|
||
}
|
||
#endif
|
||
|
||
#ifdef _MARKET_TRADE
|
||
,{
|
||
"NPC_MTradeNpcMan","MapTradeManInit","","","","","",
|
||
"MapTradeManLoop","",
|
||
"MapTradeManTalked","","","","","","",
|
||
"MapTradeManWindowTalked"
|
||
}
|
||
#endif
|
||
|
||
#ifdef _BLACK_MARKET
|
||
,{
|
||
"BlackMarket",
|
||
"BlackMarketInit","","","","","","","","BlackMarketTalked","","",
|
||
"","", "","","BlackMarketWindowTalked"
|
||
}
|
||
#endif
|
||
|
||
#ifdef _ALLDOMAN // (不可开) Syu ADD 排行榜NPC
|
||
,{
|
||
"Alldoman","AlldomanInit","","",
|
||
"","","","","","AlldomanTalked","","","","","","",
|
||
"AlldomanWindowTalked"}
|
||
#endif
|
||
|
||
#ifdef _NPC_WELFARE
|
||
,{ "Welfare","WelfareInit","","",
|
||
"","","","",
|
||
"","WelfareTalked","","",
|
||
"","", "","","WelfareWindowTalked"}
|
||
#endif
|
||
|
||
#ifdef _NPC_VERYWELFARE
|
||
,{ "VeryWelfare","VeryWelfareInit","","",
|
||
"","","","",
|
||
"","VeryWelfareTalked","","",
|
||
"","", "","","VeryWelfareWindowTalked"}
|
||
#endif
|
||
|
||
#ifdef _NPC_WELFARE_2 // WON ADD 职业NPC-2
|
||
,{ "Welfare2","WelfareInit2","","",
|
||
"","","","",
|
||
"","WelfareTalked2","","",
|
||
"","", "","","WelfareWindowTalked2"}
|
||
#endif
|
||
|
||
#ifdef _RACEMAN
|
||
,{"Raceman","RacemanInit", "", "",
|
||
"", "", "", "",
|
||
"", "RacemanTalked", "", "",
|
||
"", "", "", "","RacemanWindowTalked"},
|
||
#endif
|
||
|
||
};
|
||
|
||
static int NPC_searchFunctionSet( char* name, int* unuse)
|
||
{
|
||
int i;
|
||
for( i=0 ; i <arraysizeof( functionSet ) ; i++ )
|
||
if( strcasecmp( name, functionSet[i].id ) == 0 )
|
||
return i;
|
||
return -1;
|
||
}
|
||
|
||
BOOL NPC_copyFunctionSetToChar( int id, Char* ch )
|
||
{
|
||
if( id<0 || id>=arraysizeof(functionSet) )return FALSE;
|
||
|
||
strcpysafe( ch->charfunctable[CHAR_INITFUNC].string,
|
||
sizeof( ch->charfunctable[CHAR_INITFUNC].string ),
|
||
functionSet[id].initfunc);
|
||
|
||
strcpysafe( ch->charfunctable[CHAR_WALKPREFUNC].string,
|
||
sizeof(ch->charfunctable[CHAR_WALKPREFUNC].string),
|
||
functionSet[id].walkprefunc);
|
||
|
||
strcpysafe( ch->charfunctable[CHAR_WALKPOSTFUNC].string,
|
||
sizeof(ch->charfunctable[CHAR_WALKPOSTFUNC].string),
|
||
functionSet[id].walkpostfunc);
|
||
|
||
strcpysafe( ch->charfunctable[CHAR_PREOVERFUNC].string,
|
||
sizeof(ch->charfunctable[CHAR_PREOVERFUNC].string),
|
||
functionSet[id].preoverfunc);
|
||
|
||
strcpysafe( ch->charfunctable[CHAR_POSTOVERFUNC].string,
|
||
sizeof(ch->charfunctable[CHAR_POSTOVERFUNC].string),
|
||
functionSet[id].postoverfunc);
|
||
|
||
strcpysafe( ch->charfunctable[CHAR_WATCHFUNC].string,
|
||
sizeof(ch->charfunctable[CHAR_WATCHFUNC].string),
|
||
functionSet[id].watchfunc);
|
||
|
||
strcpysafe( ch->charfunctable[CHAR_LOOPFUNC].string,
|
||
sizeof(ch->charfunctable[CHAR_LOOPFUNC].string),
|
||
functionSet[id].loopfunc);
|
||
|
||
strcpysafe( ch->charfunctable[CHAR_TALKEDFUNC].string,
|
||
sizeof(ch->charfunctable[CHAR_TALKEDFUNC].string),
|
||
functionSet[id].talkedfunc);
|
||
|
||
strcpysafe( ch->charfunctable[CHAR_DYINGFUNC].string,
|
||
sizeof(ch->charfunctable[CHAR_DYINGFUNC].string),
|
||
functionSet[id].dyingfunc);
|
||
|
||
strcpysafe( ch->charfunctable[CHAR_PREATTACKEDFUNC].string,
|
||
sizeof(ch->charfunctable[CHAR_PREATTACKEDFUNC].string),
|
||
functionSet[id].preattackedfunc);
|
||
strcpysafe( ch->charfunctable[CHAR_POSTATTACKEDFUNC].string,
|
||
sizeof(ch->charfunctable[CHAR_POSTATTACKEDFUNC].string),
|
||
functionSet[id].postattackedfunc);
|
||
|
||
strcpysafe( ch->charfunctable[CHAR_OFFFUNC].string,
|
||
sizeof(ch->charfunctable[CHAR_OFFFUNC].string),
|
||
functionSet[id].offfunc );
|
||
|
||
strcpysafe( ch->charfunctable[CHAR_LOOKEDFUNC].string,
|
||
sizeof(ch->charfunctable[CHAR_LOOKEDFUNC].string),
|
||
functionSet[id].lookedfunc );
|
||
|
||
strcpysafe( ch->charfunctable[CHAR_ITEMPUTFUNC].string,
|
||
sizeof(ch->charfunctable[CHAR_ITEMPUTFUNC].string),
|
||
functionSet[id].itemputfunc );
|
||
|
||
strcpysafe( ch->charfunctable[CHAR_SPECIALTALKEDFUNC].string,
|
||
sizeof(ch->charfunctable[CHAR_SPECIALTALKEDFUNC].string),
|
||
functionSet[id].specialtalkedfunc );
|
||
|
||
strcpysafe( ch->charfunctable[CHAR_WINDOWTALKEDFUNC].string,
|
||
sizeof(ch->charfunctable[CHAR_WINDOWTALKEDFUNC].string),
|
||
functionSet[id].windowtalkedfunc );
|
||
|
||
#ifdef _USER_CHARLOOPS
|
||
strcpysafe( ch->charfunctable[CHAR_LOOPFUNCTEMP1].string,
|
||
sizeof(ch->charfunctable[CHAR_LOOPFUNCTEMP1].string), "");
|
||
|
||
strcpysafe( ch->charfunctable[CHAR_LOOPFUNCTEMP2].string,
|
||
sizeof(ch->charfunctable[CHAR_LOOPFUNCTEMP2].string), "");
|
||
#endif
|
||
return TRUE;
|
||
}
|
||
|
||
|
||
typedef enum
|
||
{
|
||
NPC_INTENTRY=0,
|
||
NPC_CHARENTRY=1,
|
||
NPC_INTFUNC=2,
|
||
NPC_CHARFUNC=3,
|
||
}NPC_TYPECATEGORYATREADFILE;
|
||
|
||
/*------------------------------------------------------------
|
||
* Template index 午仄化恳仄中井升丹井check允月
|
||
* 娄醒
|
||
* index int index
|
||
* 忒曰袄
|
||
* valid TRUE
|
||
* invalid FALSE
|
||
------------------------------------------------------------*/
|
||
INLINE int NPC_CHECKTEMPLATEINDEX(int index)
|
||
{
|
||
if( NPC_templatenum <= index || index < 0 )return FALSE;
|
||
return TRUE;
|
||
}
|
||
/*------------------------------------------------------------
|
||
* Template intdata index 午仄化恳仄中井升丹井check允月
|
||
* 娄醒
|
||
* index int index
|
||
* 忒曰袄
|
||
* valid TRUE
|
||
* invalid FALSE
|
||
------------------------------------------------------------*/
|
||
static INLINE int NPC_CHECKTEMPLATEINTINDEX(int index)
|
||
{
|
||
if( NPC_TEMPLATEINTNUM <= index || index < 0 )return FALSE;
|
||
return TRUE;
|
||
}
|
||
/*------------------------------------------------------------
|
||
* Template chardata index 午仄化恳仄中井升丹井check允月
|
||
* 娄醒
|
||
* index int index
|
||
* 忒曰袄
|
||
* valid TRUE
|
||
* invalid FALSE
|
||
------------------------------------------------------------*/
|
||
static INLINE int NPC_CHECKTEMPLATECHARINDEX(int index)
|
||
{
|
||
if( NPC_TEMPLATECHARNUM <= index || index < 0 )return FALSE;
|
||
return TRUE;
|
||
}
|
||
|
||
|
||
|
||
/*------------------------------------------------------------
|
||
* NPC_Template毛赓渝祭允月[
|
||
* 娄醒
|
||
* filenum int 白央奶伙醒
|
||
* 忒曰袄
|
||
* 岳 TRUE(1)
|
||
* 撩 FALSE(0)
|
||
------------------------------------------------------------*/
|
||
BOOL NPC_initTemplateArray( int templatenum )
|
||
{
|
||
NPC_templatenum = templatenum;
|
||
NPC_template = (NPC_Template*)allocateMemory( sizeof( NPC_Template ) *
|
||
NPC_templatenum );
|
||
if( NPC_template == NULL )return FALSE;
|
||
NPC_template_readindex = 0;
|
||
return TRUE;
|
||
}
|
||
|
||
/*------------------------------------------------------------
|
||
* 犯白巧伙玄及NPC 件皿伊□玄毛医 允月[
|
||
* 娄醒
|
||
* temp NPC_Template* 件皿伊□玄及禾奶件正□
|
||
* 忒曰袄
|
||
* 卅仄
|
||
------------------------------------------------------------*/
|
||
void NPC_setDefaultNPCTemplate( NPC_Template* temp )
|
||
{
|
||
int i;
|
||
if( temp == NULL )return;
|
||
|
||
for( i=0 ; i< arraysizeof(temp->chardata) ; i ++ )
|
||
memset( &temp->chardata[i], 0, sizeof(temp->chardata[i] ));
|
||
|
||
temp->intdata[NPC_TEMPLATEMAKEATNOBODY]=0;
|
||
temp->intdata[NPC_TEMPLATEMAKEATNOSEE]=0;
|
||
temp->intdata[NPC_TEMPLATEIMAGENUMBER]=0;
|
||
temp->intdata[NPC_TEMPLATETYPE]=-1;
|
||
|
||
temp->intdata[NPC_TEMPLATEMINHP]=0;
|
||
temp->intdata[NPC_TEMPLATEMINMP]=0;
|
||
temp->intdata[NPC_TEMPLATEMINSTR]=0;
|
||
temp->intdata[NPC_TEMPLATEMINTOUGH]=0;
|
||
|
||
temp->intdata[NPC_TEMPLATEISFLYING]=0;
|
||
|
||
temp->intdata[NPC_TEMPLATEITEMNUM]=0;
|
||
temp->intdata[NPC_TEMPLATELOOPFUNCTIME]=-1;
|
||
temp->intdata[NPC_TEMPLATEFUNCTIONINDEX]=-1;
|
||
|
||
for( i=0; i<NPC_TEMPLATEINTNUM; i++){
|
||
temp->randomdata[i] = 0;
|
||
}
|
||
|
||
temp->hash = 0;
|
||
temp->haveitem=NULL;
|
||
}
|
||
|
||
BOOL NPC_IsNPCTemplateFile( char* filename )
|
||
{
|
||
FILE* f;
|
||
char line1[128];
|
||
char* ret;
|
||
if( filename == NULL
|
||
||strlen( filename ) < 1
|
||
||filename[strlen(filename)-1] == '~'
|
||
||filename[0] == '#'
|
||
||strcmptail( filename, ".bak" ) == 0 )return FALSE;
|
||
|
||
f = fopen( filename , "r" );
|
||
if( f == NULL ) goto RETURNFALSE;
|
||
ret = fgets( line1, sizeof( line1 ), f );
|
||
if( ret == NULL )goto FCLOSERETURNFALSE;
|
||
|
||
if( strcmp( NPC_TEMPLATEFILEMAGIC, line1 ) == 0 ){
|
||
fclose(f);
|
||
return TRUE;
|
||
}
|
||
|
||
FCLOSERETURNFALSE:
|
||
fclose(f);
|
||
RETURNFALSE:
|
||
return FALSE;
|
||
}
|
||
|
||
void NPC_templateallocitemdata( NPC_Template* one )
|
||
{
|
||
int itemnum = one->intdata[NPC_TEMPLATEITEMNUM];
|
||
if( itemnum > 8 ) itemnum = 8;
|
||
else if( itemnum <= 0 ) itemnum = 0;
|
||
/* 袄及 凳 */
|
||
one->intdata[NPC_TEMPLATEITEMNUM] = itemnum;
|
||
one->haveitem = allocateMemory( sizeof( NPC_haveItem ) * itemnum );
|
||
|
||
}
|
||
|
||
|
||
/*------------------------------------------------------------
|
||
* NPC_getRandomValue 午及娄醒及询晶岭及凶户及楮醒
|
||
* 娄醒
|
||
* string char* 侬
|
||
* unuse int* 银歹卅中[
|
||
* 忒曰袄
|
||
* 仿件母丞及 斓及袄 汔及涩烂反}2 及娄醒卞忡绣允月[
|
||
------------------------------------------------------------*/
|
||
static int NPC_seekGraphicNumberFromString( char* string, int* unuse )
|
||
{
|
||
return CHAR_seekGraphicNumberFromString( string );
|
||
|
||
}
|
||
/*------------------------------------------------------------
|
||
* 仿件母丞袄毛 戈
|
||
* 娄醒
|
||
* string char* 侬
|
||
* randomvalue int* 仿件母丞及 五今
|
||
* 忒曰袄
|
||
* 仿件母丞及 斓及袄 汔及涩烂反}2 及娄醒卞忡绣允月[
|
||
------------------------------------------------------------*/
|
||
static int NPC_getRandomValue( char* string,int* randomwidth )
|
||
{
|
||
int minvalue;
|
||
int maxvalue;
|
||
char* startmax=NULL;
|
||
|
||
minvalue = atoi( string );
|
||
startmax = index( string,',' );
|
||
if( startmax != NULL ){
|
||
/* 仿件母丞涩烂互今木化中月 */
|
||
/* +1 反 ","及凶户 */
|
||
maxvalue = atoi(startmax+1);
|
||
|
||
/* 切扎氏午仄凶涩烂分 */
|
||
*randomwidth = ABS(maxvalue - minvalue);
|
||
return min(minvalue,maxvalue);
|
||
}
|
||
*randomwidth = 0;
|
||
return minvalue;
|
||
}
|
||
|
||
|
||
/*------------------------------------------------------------
|
||
* NPCTemplate 白央奶伙毛夫午勾 戈[
|
||
* 娄醒
|
||
* filename char* 涩烂白央奶伙毛 心铵户月玄永皿犯奴伊弁玄伉
|
||
* 忒曰袄
|
||
* 岳 TRUE(1)
|
||
* 分户(仇木动晓白央奶伙毛 氏匹反中仃卅中)
|
||
* 撩 FALSE(0)
|
||
------------------------------------------------------------*/
|
||
BOOL NPC_readTemplateFile( char* filename )
|
||
{
|
||
FILE* f;
|
||
char line[512];
|
||
int linenum=0;
|
||
int start=OFF;
|
||
NPC_Template temp;
|
||
int itmreadindex=0;
|
||
char* ret;
|
||
int randomdata[NPC_TEMPLATEINTNUM];
|
||
int i;
|
||
|
||
if( NPC_template_readindex >= NPC_templatenum ){
|
||
print("模块超过配置数目\n" );
|
||
print("配置模块数目 %d\n", NPC_templatenum);
|
||
return FALSE;
|
||
}
|
||
|
||
for( i=0; i<NPC_TEMPLATEINTNUM ; i++ )
|
||
randomdata[i] = 0;
|
||
|
||
|
||
NPC_setDefaultNPCTemplate( &temp );
|
||
|
||
f= fopen( filename ,"r");
|
||
if( f == NULL )return FALSE;
|
||
ret = fgets( line, sizeof( line ), f );
|
||
if( ret == NULL )goto FCLOSERETURNFALSE;
|
||
if( strcmp( NPC_TEMPLATEFILEMAGIC, line ) != 0 ){
|
||
print( "这不是模块文件.\n" );
|
||
goto FCLOSERETURNFALSE ;
|
||
}
|
||
linenum = 1;
|
||
while( fgets( line , sizeof( line ) , f ) ){
|
||
linenum++;
|
||
if( line[0] == '#' )continue; /* comment */
|
||
if( line[0] == '\n' )continue; /* none */
|
||
chomp( line );
|
||
switch( line[0] ){
|
||
case '{':
|
||
if( start == ON ){
|
||
fprint( "Find {. 已经开始声明. %s:%d\n",
|
||
filename, linenum);
|
||
goto FCLOSERETURNFALSE;
|
||
|
||
}else
|
||
start = ON;
|
||
break;
|
||
case '}':
|
||
if( start == ON ){
|
||
int err=FALSE;
|
||
if( strcmp(temp.chardata[NPC_TEMPLATENAME].string ,"")
|
||
== 0 ){
|
||
fprint( "这些没有名字 %s:%d\n",
|
||
filename, linenum );
|
||
err = TRUE;
|
||
}else if( temp.intdata[NPC_TEMPLATETYPE] == -1 ){
|
||
temp.intdata[NPC_TEMPLATETYPE] = SPR_pet001;
|
||
}
|
||
if( err ){
|
||
if( temp.intdata[NPC_TEMPLATEITEMNUM] != 0 )
|
||
freeMemory( temp.haveitem );
|
||
|
||
}else{
|
||
temp.hash
|
||
= hashpjw(temp.chardata[NPC_TEMPLATENAME].string);
|
||
temp.intdata[NPC_TEMPLATEITEMNUM] = itmreadindex;
|
||
for( i=0 ; i<NPC_TEMPLATEINTNUM ; i++ ){
|
||
temp.randomdata[i] = randomdata[i];
|
||
randomdata[i]=0;
|
||
}
|
||
memcpy( &NPC_template[NPC_template_readindex],
|
||
&temp, sizeof( NPC_Template ) );
|
||
NPC_template_readindex++;
|
||
if( NPC_template_readindex >= NPC_templatenum ){
|
||
print("模块超过配置数目\n" );
|
||
print("配置模块数目是 %d\n",
|
||
NPC_templatenum);
|
||
goto FCLOSERETURNFALSE;
|
||
}
|
||
}
|
||
NPC_setDefaultNPCTemplate( &temp );
|
||
itmreadindex=0;
|
||
start=OFF;
|
||
}else{
|
||
fprint( "未解决 '}' at %s:%d\n",filename,linenum);
|
||
goto FCLOSERETURNFALSE;
|
||
}
|
||
break;
|
||
default:
|
||
{
|
||
typedef struct tagNPC_Readtemplate
|
||
{
|
||
char* keyword;
|
||
NPC_TYPECATEGORYATREADFILE type;
|
||
int index;
|
||
void* func;
|
||
}NPC_Readtemplate;
|
||
static NPC_Readtemplate NPC_readtemplate[NPC_TEMPLATECHARNUM+NPC_TEMPLATEINTNUM]=
|
||
{
|
||
{"templatename" , NPC_CHARENTRY, NPC_TEMPLATENAME,NULL},
|
||
{"name" , NPC_CHARENTRY, NPC_TEMPLATECHARNAME,
|
||
NULL},
|
||
{"makeatnobody", NPC_INTENTRY, NPC_TEMPLATEMAKEATNOBODY,
|
||
NULL},
|
||
{"makeatnosee" , NPC_INTENTRY, NPC_TEMPLATEMAKEATNOSEE,
|
||
NULL},
|
||
{"graphicname", NPC_INTFUNC, NPC_TEMPLATEIMAGENUMBER,
|
||
NPC_seekGraphicNumberFromString},
|
||
{"type", NPC_INTFUNC, NPC_TEMPLATETYPE,
|
||
NPC_seekGraphicNumberFromString},
|
||
|
||
{"hp", NPC_INTFUNC, NPC_TEMPLATEMINHP,
|
||
NPC_getRandomValue},
|
||
{"mp", NPC_INTFUNC, NPC_TEMPLATEMINMP,
|
||
NPC_getRandomValue},
|
||
{"str", NPC_INTFUNC, NPC_TEMPLATEMINSTR,
|
||
NPC_getRandomValue},
|
||
{"tough", NPC_INTFUNC, NPC_TEMPLATEMINTOUGH,
|
||
NPC_getRandomValue},
|
||
|
||
{"fly", NPC_INTENTRY,NPC_TEMPLATEISFLYING,NULL},
|
||
|
||
{"itemnum", NPC_INTENTRY, NPC_TEMPLATEITEMNUM, NULL,},
|
||
{"functionset",NPC_INTFUNC, NPC_TEMPLATEFUNCTIONINDEX,
|
||
NPC_searchFunctionSet,},
|
||
{"initfunc", NPC_CHARENTRY, NPC_TEMPLATEINITFUNC,NULL,},
|
||
{"walkprefunc", NPC_CHARENTRY, NPC_TEMPLATEWALKPREFUNC,
|
||
NULL,},
|
||
{"walkpostfunc",NPC_CHARENTRY, NPC_TEMPLATEWALKPOSTFUNC,
|
||
NULL,},
|
||
{"preoverfunc", NPC_CHARENTRY, NPC_TEMPLATEPREOVERFUNC,
|
||
NULL,},
|
||
{"postoverfunc",NPC_CHARENTRY, NPC_TEMPLATEPOSTOVERFUNC,
|
||
NULL,},
|
||
{"watchfunc", NPC_CHARENTRY, NPC_TEMPLATEWATCHFUNC,
|
||
NULL,},
|
||
{"loopfunc", NPC_CHARENTRY, NPC_TEMPLATELOOPFUNC, NULL,},
|
||
{"talkedfunc",NPC_CHARENTRY,NPC_TEMPLATETALKEDFUNC,NULL,},
|
||
{"dyingfunc",NPC_CHARENTRY,NPC_TEMPLATEDYINGFUNC,NULL,},
|
||
{"preattackedfunc",NPC_CHARENTRY,
|
||
NPC_TEMPLATEPREATTACKEDFUNC,NULL,},
|
||
{"postattackedfunc",NPC_CHARENTRY,
|
||
NPC_TEMPLATEPOSTATTACKEDFUNC,NULL,},
|
||
{"offfunc",NPC_CHARENTRY,NPC_TEMPLATEOFFFUNC,NULL,},
|
||
{"lookedfunc",NPC_CHARENTRY,NPC_TEMPLATELOOKEDFUNC,NULL,},
|
||
{"itemputfunc",NPC_CHARENTRY,NPC_TEMPLATEITEMPUTFUNC,
|
||
NULL,},
|
||
{"specialtalkedfunc",NPC_CHARENTRY,
|
||
NPC_TEMPLATESPECIALTALKEDFUNC, NULL,},
|
||
|
||
{"windowtalkedfunc",NPC_CHARENTRY,
|
||
NPC_TEMPLATEWINDOWTALKEDFUNC, NULL,},
|
||
|
||
{"loopfunctime",NPC_INTENTRY,NPC_TEMPLATELOOPFUNCTIME,
|
||
NULL,},
|
||
};
|
||
|
||
char firstToken[256];
|
||
int ret,i;
|
||
ret = getStringFromIndexWithDelim( line, "=", 1, firstToken, sizeof( firstToken ) );
|
||
if( ret == FALSE ){
|
||
print( "Find error at %s in line %d. Ignore\n", filename , linenum);
|
||
break;
|
||
}
|
||
|
||
if( strcasecmp(firstToken,"itm") == 0 ){
|
||
char one[128];
|
||
char two[128];
|
||
char three[128];
|
||
int itemnumber=0,rate=0,amount=1;
|
||
char secondToken[256]={""};
|
||
if( itmreadindex < temp.intdata[NPC_TEMPLATEITEMNUM] &&
|
||
temp.haveitem != NULL )
|
||
;
|
||
else
|
||
continue;
|
||
ret = getStringFromIndexWithDelim( line, "=", 2,
|
||
secondToken, sizeof(secondToken ) );
|
||
if( ret == FALSE ){
|
||
print( "Find error at %s in line %d. Ignore\n",
|
||
filename , linenum);
|
||
secondToken[0] = '\0';
|
||
}
|
||
ret = getStringFromIndexWithDelim( secondToken, "|", 1, one,sizeof( one ) );
|
||
if( ret != FALSE )itemnumber=atoi(one);
|
||
ret = getStringFromIndexWithDelim( secondToken, "|", 2, two,sizeof(two));
|
||
if( ret != FALSE )rate=atoi(two);
|
||
ret = getStringFromIndexWithDelim( secondToken, "|", 3, three,sizeof(three));
|
||
if( ret != FALSE )amount=atoi(three);
|
||
if( rate > 0 && amount > 0 ){
|
||
if( itemnumber == -1 ){
|
||
temp.haveitem[itmreadindex].itemnumber = -1;
|
||
temp.haveitem[itmreadindex].haverate = rate;
|
||
temp.haveitem[itmreadindex].havenum = amount;
|
||
itmreadindex++;
|
||
}else if( ITEM_CHECKITEMTABLE( itemnumber ) == TRUE ){
|
||
temp.haveitem[itmreadindex].itemnumber=itemnumber;
|
||
temp.haveitem[itmreadindex].haverate = rate;
|
||
temp.haveitem[itmreadindex].havenum = amount;
|
||
itmreadindex++;
|
||
}else
|
||
print("this item is not item %s:%d\n",
|
||
filename , linenum);
|
||
}else
|
||
print("rate or amount is odd setting. rate=%d "
|
||
"amount=%d %s:%d\n", rate,amount, filename,
|
||
linenum);
|
||
goto NEXT;
|
||
}else{
|
||
for( i = 0 ; i < arraysizeof(NPC_readtemplate) ; i ++ ){
|
||
if( strcasecmp( NPC_readtemplate[i].keyword,
|
||
firstToken ) == 0 ){
|
||
char secondToken[256]={""};
|
||
ret = getStringFromIndexWithDelim(
|
||
line, "=", 2, secondToken, sizeof(secondToken)
|
||
);
|
||
if( ret == FALSE )
|
||
print( "Find error at %s in line %d. Ignore\n"
|
||
,filename , linenum);
|
||
|
||
switch( NPC_readtemplate[i].type ){
|
||
case NPC_INTENTRY:
|
||
temp.intdata[NPC_readtemplate[i].index]=atoi(secondToken);
|
||
if( NPC_readtemplate[i].index == NPC_TEMPLATEITEMNUM )
|
||
NPC_templateallocitemdata( &temp );
|
||
break;
|
||
case NPC_CHARENTRY:
|
||
strcpysafe( temp.chardata[NPC_readtemplate[i].index].string,
|
||
sizeof(temp.chardata[NPC_readtemplate[i].index].string),
|
||
secondToken);
|
||
break;
|
||
case NPC_INTFUNC:
|
||
{
|
||
int (*intfunction)(char*,int* );
|
||
intfunction = NPC_readtemplate[i].func;
|
||
temp.intdata[NPC_readtemplate[i].index]
|
||
= intfunction( secondToken, &randomdata[NPC_readtemplate[i].index]);
|
||
break;
|
||
}
|
||
case NPC_CHARFUNC:
|
||
{
|
||
char* (*charfunction)(char* );
|
||
charfunction = NPC_readtemplate[i].func;
|
||
strcpysafe( temp.chardata[NPC_readtemplate[i].index].string,
|
||
sizeof(temp.chardata[NPC_readtemplate[i].index].string),
|
||
charfunction(secondToken));
|
||
break;
|
||
}
|
||
default:
|
||
break;
|
||
}
|
||
goto NEXT;
|
||
}
|
||
}
|
||
}
|
||
fprint("%s:%d There is no such entry %s\n" , filename,
|
||
linenum, firstToken );
|
||
NEXT:
|
||
break;
|
||
}
|
||
break;
|
||
}
|
||
}
|
||
fclose(f);
|
||
return TRUE;
|
||
|
||
FCLOSERETURNFALSE:
|
||
fclose(f);
|
||
return FALSE;
|
||
}
|
||
|
||
BOOL NPC_readNPCTemplateFiles( char* topdirectory ,int templatesize)
|
||
{
|
||
STRING64 *filenames;
|
||
int filenum;
|
||
int i;
|
||
filenames = (STRING64 *)allocateMemory( sizeof( STRING64 ) *
|
||
(int)getFilesearchnum( ) );
|
||
if( filenames == NULL ){
|
||
print( "读取NPC创建文件... 内存出错\n" );
|
||
return FALSE;
|
||
}
|
||
filenum = rgetFileName( topdirectory ,filenames ,getFilesearchnum( ) );
|
||
if( filenum == -1 ){
|
||
fprint("无法从 %s 递归获取文件名\n",topdirectory);
|
||
freeMemory( filenames );
|
||
return FALSE;
|
||
}
|
||
if( filenum >= getFilesearchnum( ) ){
|
||
print( "文件搜索数目失败 %d\n", getFilesearchnum( ) );
|
||
while( 1 );
|
||
}else{
|
||
print( "搜索到文件 = %d\n", filenum );
|
||
}
|
||
if( !NPC_initTemplateArray( templatesize ) ){
|
||
fprint( "开启模块数组错误\n" );
|
||
freeMemory( filenames );
|
||
return FALSE;
|
||
}
|
||
print( "读取文件模块数组错误...." );
|
||
for( i = 0 ; i < filenum ; i ++ )
|
||
if( NPC_IsNPCTemplateFile( filenames[i].string ))
|
||
NPC_readTemplateFile( filenames[i].string );
|
||
print( "正确模块 %d ...\n" , NPC_template_readindex );
|
||
NPC_templatenum=NPC_template_readindex;
|
||
freeMemory( filenames );
|
||
return TRUE;
|
||
}
|
||
|
||
|
||
|
||
/*------------------------------------------------------------
|
||
* 侬 卞覆杀允月 template 及 index 毛忒允[
|
||
* 娄醒
|
||
* templatename char* 件皿伊□玄及 蟆
|
||
* 忒曰袄
|
||
* -1 及凛巨仿□
|
||
------------------------------------------------------------*/
|
||
int NPC_templateGetTemplateIndex( char* templatename )
|
||
{
|
||
int i;
|
||
int hash=hashpjw( templatename );
|
||
|
||
for( i = 0 ; i < NPC_templatenum ; i ++ )
|
||
if( hash == NPC_template[i].hash &&
|
||
strcasecmp( templatename , NPC_template[i].chardata[NPC_TEMPLATENAME].string) == 0 )
|
||
return i;
|
||
|
||
return -1;
|
||
}
|