2740 lines
78 KiB
C
2740 lines
78 KiB
C
#include "npc_lua.h"
|
||
#include "util.h"
|
||
#include "char.h"
|
||
#include "char_base.h"
|
||
#include "char_data.h"
|
||
#include "anim_tbl.h"
|
||
#include "object.h"
|
||
#include "battle.h"
|
||
#include "npcutil.h"
|
||
#include "item.h"
|
||
#include "readmap.h"
|
||
|
||
/*
|
||
#include <iconv.h>
|
||
|
||
int code_convert1(char *from_charset,char *to_charset,char *inbuf,size_t inlen,char *outbuf,size_t outlen)
|
||
{
|
||
iconv_t cd;
|
||
char **pin = &inbuf;
|
||
char **pout = &outbuf;
|
||
|
||
cd = iconv_open(to_charset,from_charset);
|
||
if (cd==0) return -1;
|
||
memset(outbuf,0,outlen);
|
||
if (iconv(cd,pin,&inlen,pout,&outlen)==-1) return -1;
|
||
iconv_close(cd);
|
||
return 0;
|
||
}
|
||
*/
|
||
|
||
|
||
#ifdef _JZ_NEWSCRIPT_LUA
|
||
|
||
typedef enum
|
||
{
|
||
LUAITEM_PREOVERFUNC = ITEM_PREOVERFUNC - ITEM_FIRSTFUNCTION,
|
||
LUAITEM_POSTOVERFUNC = ITEM_POSTOVERFUNC - ITEM_FIRSTFUNCTION,
|
||
LUAITEM_WATCHFUNC = ITEM_WATCHFUNC - ITEM_FIRSTFUNCTION,
|
||
LUAITEM_USEFUNC = ITEM_USEFUNC - ITEM_FIRSTFUNCTION,
|
||
LUAITEM_ATTACHFUNC = ITEM_ATTACHFUNC - ITEM_FIRSTFUNCTION,
|
||
LUAITEM_DETACHFUNC = ITEM_DETACHFUNC - ITEM_FIRSTFUNCTION,
|
||
LUAITEM_DROPFUNC = ITEM_DROPFUNC - ITEM_FIRSTFUNCTION,
|
||
LUAITEM_PICKUPFUNC = ITEM_PICKUPFUNC - ITEM_FIRSTFUNCTION,
|
||
#ifdef _Item_ReLifeAct
|
||
LUAITEM_DIERELIFEFUNC = ITEM_DIERELIFEFUNC - ITEM_FIRSTFUNCTION,
|
||
#endif
|
||
}LUAITEM_FUNC;
|
||
|
||
lua_State *M_Script_Lua = NULL; //ʵÀý¾ä±ú
|
||
unsigned int M_Create_Num = 0;
|
||
char M_OutErrMsg[1024];
|
||
|
||
extern lua_const M_Lua_RegConstList[];
|
||
|
||
extern int NPC_Lua_NL_SetCharSignDay(lua_State *_NLL);
|
||
extern int NPC_Lua_NL_GetCharSignDay(lua_State *_NLL);
|
||
extern int NPC_Lua_NL_Print(lua_State *L);
|
||
static luaL_Reg M_RegList[] = {
|
||
{NULL, NULL},
|
||
};
|
||
|
||
static luaL_Reg Bit_RegList[] = {
|
||
{"band", NPC_Lua_Bit_band},
|
||
{"bor", NPC_Lua_Bit_bor},
|
||
{"bxor", NPC_Lua_Bit_bxor},
|
||
{"lshift", NPC_Lua_Bit_lshift},
|
||
{"rshift", NPC_Lua_Bit_rshift},
|
||
{NULL, NULL},
|
||
};
|
||
|
||
static luaL_Reg Map_RegList[] = {
|
||
{"CheckCoordinates",NPC_Lua_Map_CheckCoordinates},
|
||
{"GetExitFloorXY",NPC_Lua_Map_GetExitFloorXY},
|
||
{"GetfloorX",NPC_Lua_Map_GetfloorX},
|
||
{"GetfloorY",NPC_Lua_Map_GetfloorY},
|
||
{"GetTileAndObjId",NPC_Lua_Map_GetTileAndObjId},
|
||
{"SetTileAndObjId",NPC_Lua_Map_SetTileAndObjId},
|
||
{"GetWalkAbleFromPoint",NPC_Lua_Map_GetWalkAbleFromPoint},
|
||
{"GetImageData",NPC_Lua_Map_GetImageData},
|
||
{"SetImageData",NPC_Lua_Map_SetImageData},
|
||
{"GetTopObj",NPC_Lua_Map_GetTopObj},
|
||
{"GetNextObj",NPC_Lua_Map_GetNextObj},
|
||
{"CheckImageIndex",NPC_Lua_Map_CheckImageIndex},
|
||
{"CheckIndex",NPC_Lua_Map_CheckIndex},
|
||
{"MakeNewMap",NPC_Lua_Map_MakeNewMap},
|
||
{"DelNewMap",NPC_Lua_Map_DelNewMap},
|
||
{"SetExWarp",NPC_Lua_Map_SetExWarp},
|
||
{"SetMapPoint",NPC_Lua_Map_SetMapPoint},
|
||
{"DelMapPoint",NPC_Lua_Map_DelMapPoint},
|
||
{"getFloorName",NPC_Lua_Map_getFloorName},
|
||
#ifdef _UPMAP_
|
||
{"UpMap",NPC_Lua_Map_Upmap},
|
||
#endif
|
||
{"¼ì²â·¶Î§",NPC_Lua_Map_CheckCoordinates},
|
||
{"¼ì²âµØͼÊÇ·ñµÇ³ö",NPC_Lua_Map_GetExitFloorXY},
|
||
{"È¡X",NPC_Lua_Map_GetfloorX},
|
||
{"È¡Y",NPC_Lua_Map_GetfloorY},
|
||
{"È¡x",NPC_Lua_Map_GetfloorX},
|
||
{"È¡y",NPC_Lua_Map_GetfloorY},
|
||
|
||
{"È¡µØ°å×°ÊÎ",NPC_Lua_Map_GetTileAndObjId},
|
||
{"Öõذå×°ÊÎ",NPC_Lua_Map_SetTileAndObjId},
|
||
{"ÊÇ·ñ×߶¯",NPC_Lua_Map_GetWalkAbleFromPoint},
|
||
{"È¡Êý¾Ý",NPC_Lua_Map_GetImageData},
|
||
{"ÖÃÊý¾Ý",NPC_Lua_Map_SetImageData},
|
||
{"È¡Îï¼þ",NPC_Lua_Map_GetTopObj},
|
||
{"È¡ÏÂÒ»¸öÎï¼þ",NPC_Lua_Map_GetNextObj},
|
||
{"¼ì²âͼƬË÷Òý",NPC_Lua_Map_CheckImageIndex},
|
||
{"¼ì²âµØͼ",NPC_Lua_Map_CheckIndex},
|
||
{"ÖÆ×÷µØͼ",NPC_Lua_Map_MakeNewMap},
|
||
{"ɾ³ýµØͼ",NPC_Lua_Map_DelNewMap},
|
||
{"ÖÃÍ˳ö´«Ë͵ã",NPC_Lua_Map_SetExWarp},
|
||
{"Öô«Ë͵ã",NPC_Lua_Map_SetMapPoint},
|
||
{"ɾ³ý´«Ë͵ã",NPC_Lua_Map_DelMapPoint},
|
||
{"È¡ÔÃû",NPC_Lua_Map_getFloorName},
|
||
#ifdef _UPMAP_
|
||
{"¸üÐÂ",NPC_Lua_Map_Upmap},
|
||
#endif
|
||
|
||
|
||
{NULL, NULL},
|
||
};
|
||
|
||
static luaL_Reg Spell_RegList[] = {
|
||
#ifdef _CHAR_PROFESSION
|
||
{"PETSKILL_GetData",NPC_Lua_Spell_PETSKILL_GetData},
|
||
{"PROFESSION_GetData",NPC_Lua_Spell_PROFESSION_GetData},
|
||
{"MAGIC_GetData",NPC_Lua_Spell_MAGIC_GetData},
|
||
{"PETSKILL_SetData",NPC_Lua_Spell_PETSKILL_SetData},//δ²âÊÔ
|
||
{"PROFESSION_SetData",NPC_Lua_Spell_PROFESSION_SetData},//δ²âÊÔ
|
||
{"MAGIC_SetData",NPC_Lua_Spell_MAGIC_SetData},//δ²âÊÔ
|
||
{"È¡³èÎï¼¼ÄÜÊý¾Ý",NPC_Lua_Spell_PETSKILL_GetData},
|
||
{"È¡Ö°Òµ¼¼ÄÜÊý¾Ý",NPC_Lua_Spell_PROFESSION_GetData},
|
||
{"È¡¾«Áé¼¼ÄÜÊý¾Ý",NPC_Lua_Spell_MAGIC_GetData},
|
||
{"ÖóèÎï¼¼ÄÜÊý¾Ý",NPC_Lua_Spell_PETSKILL_SetData},//δ²âÊÔ
|
||
{"ÖÃÖ°Òµ¼¼ÄÜÊý¾Ý",NPC_Lua_Spell_PROFESSION_SetData},//δ²âÊÔ
|
||
{"Öþ«Áé¼¼ÄÜÊý¾Ý",NPC_Lua_Spell_MAGIC_SetData},//δ²âÊÔ
|
||
#endif
|
||
{"Öþ«Áé¼¼ÄÜÊý¾Ý",NPC_Lua_Spell_MAGIC_SetData},//δ²âÊÔ
|
||
//{"ÖóèÎï¼¼ÄÜÊý¾Ý",NPC_Lua_Spell_PETSKILL_SetData},//δ²âÊÔ
|
||
{"È¡³èÎï¼¼ÄÜÊý¾Ý",NPC_Lua_Spell_PETSKILL_GetData},
|
||
{"È¡¾«Áé¼¼ÄÜÊý¾Ý",NPC_Lua_Spell_MAGIC_GetData},
|
||
{NULL, NULL},
|
||
};
|
||
|
||
static luaL_Reg NL_RegList[] = {
|
||
//NL
|
||
{"SetCharSignDay", NPC_Lua_NL_SetCharSignDay},
|
||
{"ÖÃÇ©µ½Êý¾Ý", NPC_Lua_NL_SetCharSignDay},
|
||
{"GetCharSignDay", NPC_Lua_NL_GetCharSignDay},
|
||
{"È¡Ç©µ½Êý¾Ý", NPC_Lua_NL_GetCharSignDay},
|
||
{"writeshopdata", NPC_Lua_NL_WriteShopData},
|
||
{"дÉ̳ÇÊý¾Ý", NPC_Lua_NL_WriteShopData},
|
||
{"print", NPC_Lua_NL_Print},
|
||
{"´òÓ¡", NPC_Lua_NL_Print},
|
||
{"CreateSpecialNpc", NPC_Lua_NL_CreateSpecialNpc},
|
||
{"DelNpc", NPC_Lua_NL_DelNpc},
|
||
{"GetStringFromIndexWithDelim", NPC_Lua_NL_GetStringFromIndexWithDelim},//²ð·Ö×Ö·û
|
||
{"ANSI_PlayerLoop", NPC_Lua_NL_ANSI_PlayerLoop},//±éÀúËùÓÐÔÚÏß³èÎï ·µ»ØËùÓÐË÷Òý±àºÅ
|
||
{"PetLoopGetNext", NPC_Lua_NL_PetLoopGetNext},//±éÀúËùÓÐÔÚÏß³èÎï ·µ»ØËùÓÐË÷Òý±àºÅ
|
||
{"ItemLoopGetNext", NPC_Lua_NL_ItemLoopGetNext},//±éÀúËùÓеÀ¾ß ·µ»ØËùÓÐË÷Òý±àºÅ
|
||
{"PlayerLoopGetNext", NPC_Lua_NL_PlayerLoopGetNext},//±éÀúËùÓÐÈËÎï ·µ»ØËùÓÐË÷Òý±àºÅ
|
||
{"GetConfigLineType", NPC_Lua_NL_GetConfigLineType},//·µ»ØCF×Ö¶ÎÀàÐÍ
|
||
{"GetConfigLineVal", NPC_Lua_NL_GetConfigLineVal},//·µ»ØCF×Ö¶ÎÖµ
|
||
{"CheckNpcEventFree", NPC_Lua_CheckNpcEventFree},//ʹÓÃNPC½Å±¾¼ì²âÌõ¼þ
|
||
{"DoNpcEventAction", NPC_Lua_DoNpcEventAction},//ʹÓÃNPC½Å±¾ÓïÑÔ
|
||
{"SetTimer", NPC_Lua_NL_SetTimer},//É趨һ¸ö¶¨Ê±Æ÷·µ»Ø¶¨Ê±Æ÷ID
|
||
{"DelTimer", NPC_Lua_NL_DelTimer},//ɾ³ýÒ»¸ö¶¨Ê±Æ÷ID
|
||
{"RunSaFuncII", NPC_Lua_NL_RunSaFuncII},//µ÷ÓÃÒ»¸ö·þÎñ¶ËÄÚ¶¨ÒåºÃµÄ2¸öINT²ÎÊýµÄº¯Êý¡£
|
||
{"RunSaFuncIII", NPC_Lua_NL_RunSaFuncIII},//µ÷ÓÃÒ»¸ö·þÎñ¶ËÄÚ¶¨ÒåºÃµÄ3¸öINT²ÎÊýµÄº¯Êý¡£
|
||
{"ANSI_PlayerLoop", NPC_Lua_NL_ANSI_PlayerLoop},//±éÀúÏÂÒ»¸öÈËÎïË÷Òý
|
||
{"ANSI_PetLoop", NPC_Lua_NL_ANSI_PetLoop},//±éÀúÏÂÒ»¸ö³èÎïË÷Òý
|
||
{"ANSI_ItemLoop", NPC_Lua_NL_ANSI_ItemLoop},//±éÀúÏÂÒ»¸öµÀ¾ßË÷Òý
|
||
{"ClsMk", NPC_Lua_NL_ClsMk},
|
||
{"AddCheckNum", NPC_Lua_NL_AddCheckNum},
|
||
{"Mkstring", NPC_Lua_NL_Mkstring},
|
||
{"Mkint", NPC_Lua_NL_Mkint},
|
||
{"SendMesg", NPC_Lua_NL_SendMesg},
|
||
{"getGameservername", NPC_Lua_NL_getGameservername},
|
||
{"È¡·þÎñÆ÷Ãû", NPC_Lua_NL_getGameservername},
|
||
{"È¡´íÎóÐÅÏ¢", NPC_Lua_NL_GetErrorStr},
|
||
{"´´½¨NPC", NPC_Lua_NL_CreateNpc},
|
||
{"´´½¨npc", NPC_Lua_NL_CreateNpc},
|
||
{"´´½¨ÌرðNPC", NPC_Lua_NL_CreateSpecialNpc},
|
||
{"´´½¨Ìرðnpc", NPC_Lua_NL_CreateSpecialNpc},
|
||
{"ɾ³ýNPC", NPC_Lua_NL_DelNpc},
|
||
{"ɾ³ýnpc", NPC_Lua_NL_DelNpc},
|
||
{"·Ö¸î×Ö·û", NPC_Lua_NL_GetStringFromIndexWithDelim},//²ð·Ö×Ö·û
|
||
{"×¢²á³èÎï»Øµ÷", NPC_Lua_NL_PetLoopGetNext},//±éÀúËùÓÐÔÚÏß³èÎï ·µ»ØËùÓÐË÷Òý±àºÅ
|
||
{"×¢²áµÀ¾ß»Øµ÷", NPC_Lua_NL_ItemLoopGetNext},//±éÀúËùÓеÀ¾ß ·µ»ØËùÓÐË÷Òý±àºÅ
|
||
{"×¢²áÈËÎï»Øµ÷", NPC_Lua_NL_PlayerLoopGetNext},//±éÀúËùÓÐÈËÎï ·µ»ØËùÓÐË÷Òý±àºÅ
|
||
{"È¡CFÀàÐÍ", NPC_Lua_NL_GetConfigLineType},//·µ»ØCF×Ö¶ÎÀàÐÍ
|
||
{"È¡cfÀàÐÍ", NPC_Lua_NL_GetConfigLineType},//·µ»ØCF×Ö¶ÎÀàÐÍ
|
||
{"È¡CFÖµ", NPC_Lua_NL_GetConfigLineVal},//·µ»ØCF×Ö¶ÎÖµ
|
||
{"È¡cfÖµ", NPC_Lua_NL_GetConfigLineVal},//·µ»ØCF×Ö¶ÎÖµ
|
||
{"npcÓï¾ä¼ì²â", NPC_Lua_CheckNpcEventFree},//ʹÓÃNPC½Å±¾¼ì²âÌõ¼þ
|
||
{"NPCÓï¾ä¼ì²â", NPC_Lua_CheckNpcEventFree},//ʹÓÃNPC½Å±¾¼ì²âÌõ¼þ
|
||
{"ʹÓÃNPC½Å±¾", NPC_Lua_DoNpcEventAction},//ʹÓÃNPC½Å±¾ÓïÑÔ
|
||
{"´´½¨¶¨Ê±Æ÷", NPC_Lua_NL_SetTimer},//É趨һ¸ö¶¨Ê±Æ÷·µ»Ø¶¨Ê±Æ÷ID
|
||
{"ɾ³ý¶¨Ê±Æ÷", NPC_Lua_NL_DelTimer},//ɾ³ýÒ»¸ö¶¨Ê±Æ÷ID
|
||
{"µ÷Óú¯ÊýII", NPC_Lua_NL_RunSaFuncII},//µ÷ÓÃÒ»¸ö·þÎñ¶ËÄÚ¶¨ÒåºÃµÄ2¸öINT²ÎÊýµÄº¯Êý¡£
|
||
{"µ÷Óú¯ÊýIII", NPC_Lua_NL_RunSaFuncIII},//µ÷ÓÃÒ»¸ö·þÎñ¶ËÄÚ¶¨ÒåºÃµÄ3¸öINT²ÎÊýµÄº¯Êý¡£
|
||
{"±éÀúÍæ¼ÒË÷Òý", NPC_Lua_NL_ANSI_PlayerLoop},//±éÀúËùÓÐÔÚÏß³èÎï ·µ»ØËùÓÐË÷Òý±àºÅ
|
||
{"±éÀú³èÎïË÷Òý", NPC_Lua_NL_ANSI_PetLoop},//±éÀúÏÂÒ»¸ö³èÎïË÷Òý
|
||
{"±éÀúµÀ¾ßË÷Òý", NPC_Lua_NL_ANSI_ItemLoop},//±éÀúÏÂÒ»¸öµÀ¾ßË÷Òý
|
||
{"Çå¿Õ·â°üÊý¾Ý", NPC_Lua_NL_ClsMk},
|
||
{"·â°ü×ÜÊý", NPC_Lua_NL_AddCheckNum},
|
||
{"ÖÆ×÷×Ö·û´®·â°ü", NPC_Lua_NL_Mkstring},
|
||
{"ÖÆ×÷ÕûÊý·â°ü", NPC_Lua_NL_Mkint},
|
||
{"·¢ËÍ·â°ü", NPC_Lua_NL_SendMesg},
|
||
{NULL, NULL},
|
||
};
|
||
|
||
static luaL_Reg Char_RegList[] = {
|
||
//»ñÈ¡Êý¾ÝµÄ½Ó¿Ú
|
||
{"getVipPoint", NPC_Lua_Char_getVipPoint},
|
||
//{"getjfPoint", NPC_Lua_Char_getjfPoint},
|
||
//{"getxjPoint", NPC_Lua_Char_getxjPoint},
|
||
{"setVipPoint", NPC_Lua_Char_setVipPoint},
|
||
//{"setjfPoint", NPC_Lua_Char_setjfPoint},
|
||
//{"setxjPoint", NPC_Lua_Char_setxjPoint},
|
||
{"IsEventEnd", NPC_Lua_Char_IsEventEnd},
|
||
{"IsEventNow", NPC_Lua_Char_IsEventNow},
|
||
//
|
||
{"FindItemId", NPC_Lua_Char_FindItemId},
|
||
{"FindPetEnemyId", NPC_Lua_Char_FindPetEnemyId},
|
||
{"GetAllocPoint",NPC_Lua_Char_GetAllocPoint},
|
||
{"GetDataFromEnemyBase",NPC_Lua_Char_GetDataFromEnemyBase},
|
||
{"GetPlayIndex", NPC_Lua_Char_GetPlayerIndex},
|
||
{"FindItemIndex", NPC_Lua_Char_FindItemIndex},
|
||
{"FindPetIndex", NPC_Lua_Char_FindPetIndex},
|
||
{"CheckIndex",NPC_Lua_CHAR_CHECKINDEX},
|
||
{"GetPetSkill", NPC_Lua_Char_GetPetSkill},//
|
||
{"GetPetSkillNo", NPC_Lua_Char_GetPetSkillNo},//
|
||
{"GetEmptyItemBoxNum", NPC_Lua_Char_GetEmptyItemBoxNum},//
|
||
{"GetEmptyPetBoxNum", NPC_Lua_Char_GetEmptyPetBoxNum},//
|
||
{"GetPlayerPetNum", NPC_Lua_Char_GetPlayerPetNum},//
|
||
{"GetPlayerItemNum", NPC_Lua_Char_GetPlayerItemNum},//
|
||
{"CharRidNo", NPC_Lua_Char_RidNo}, //
|
||
{"getPlayerMaxNum", NPC_ABLua_char_getPlayerMaxNum},//
|
||
{"getBattleexp", NPC_ABLua_char_getBattleexp},//
|
||
{"SetPetSkill", NPC_Lua_Char_SetPetSkill},//
|
||
{"SetPetSkillNo", NPC_Lua_Char_SetPetSkillNo},//
|
||
{"ComplianceParameter", NPC_Lua_Char_ComplianceParameter},
|
||
{"HcItemId", NPC_Lua_Char_HcItemId},
|
||
{"DelHcItem", NPC_Lua_Char_DelHcItem},
|
||
{"GETFM", NPC_Lua_Char_GETFM},
|
||
{"FindPetEnemyBaseId", NPC_Lua_Char_FindPetEnemyBaseId},
|
||
{"ITEMID_NAME", NPC_Lua_Char_ITEMID_NAME},
|
||
{"ITEMID_NAME2", NPC_Lua_Char_ITEMID_NAME2},
|
||
{"ITEMID_LEVEL", NPC_Lua_Char_ITEMID_LEVEL},
|
||
{"ITEMID_GOLD", NPC_Lua_Char_ITEMID_GOLD},
|
||
{"ITEMID_RANO", NPC_Lua_Char_ITEMID_RANO},
|
||
// {"CharRidNo", NPC_Lua_Char_CharRidNo}, //Æï³èδͬ²½£¬ÔÝʱ¹Ø±Õ
|
||
{"GetPetOwner", NPC_Lua_Char_GetPetOwner},
|
||
{"GetEnemyBaseIdFromEnemyId", NPC_Lua_Char_GetEnemyBaseIdFromEnemyId},
|
||
{"GetEnemyIdFromEnemyBaseId", NPC_Lua_Char_GetEnemyIdFromEnemyBaseId},
|
||
{"GetIp", NPC_Lua_Char_GetIp},
|
||
{"SetAllocPoint", NPC_Lua_Char_SetAllocPoint},
|
||
{"GetMaxPetIndex", NPC_Lua_Char_GetMaxPetIndex},
|
||
{"GetMaxPlayerIndex", NPC_Lua_Char_GetMaxPlayerIndex},
|
||
{"SavePetToString", NPC_Lua_Char_SavePetToString},
|
||
{"LoadPetFromString", NPC_Lua_Char_LoadPetFromString},
|
||
{"GetPlayerFromAccAndName", NPC_Lua_Char_GetPlayerFromAccAndName},
|
||
{"CheckPet", NPC_Lua_Char_CheckPet},
|
||
{"CheckPlayer", NPC_Lua_Char_CheckPlayer},
|
||
{"JoinParty", NPC_Lua_Char_JoinParty},
|
||
{"getFamilyPlayIndex", NPC_Lua_Char_getFamilyPlayIndex},
|
||
|
||
{"GetData", NPC_Lua_Char_GetData},
|
||
{"GetItemId", NPC_Lua_Char_GetItemId},
|
||
{"GetPetEnemyId", NPC_Lua_Char_GetPetEnemyId},
|
||
{"GetItemIndex", NPC_Lua_Char_GetItemIndex},
|
||
{"GetPetIndex", NPC_Lua_Char_GetPetIndex},
|
||
{"GetTeamIndex", NPC_Lua_Char_GetTeamIndex},
|
||
{"GetPlayerIndexByCdkey", NPC_Lua_Char_GetPlayerIndexByCdkey},
|
||
|
||
//ÉèÖÃÊý¾ÝµÄ½Ó¿Ú
|
||
{"ClrEvtEnd", NPC_Lua_Char_ClrEvtEnd},
|
||
{"ClrEvtNow", NPC_Lua_Char_ClrEvtNow},
|
||
{"ClrClrEvt", NPC_Lua_Char_ClrEvt},
|
||
{"SetEvtEnd", NPC_Lua_Char_SetEvtEnd},
|
||
{"SetEvtNow", NPC_Lua_Char_SetEvtNow},
|
||
{"SetData", NPC_Lua_Char_SetData},
|
||
|
||
//ʼþÉèÖõĽӿÚ
|
||
{"SetWalkPreEvent", NPC_Lua_Char_SetWalkPreEvent},
|
||
{"SetWalkPostEvent", NPC_Lua_Char_SetWalkPostEvent},
|
||
{"SetPreOverEvent", NPC_Lua_Char_SetPreOverEvent},
|
||
{"SetPostOverEvent", NPC_Lua_Char_SetPostOverEvent},
|
||
{"SetWatchEvent", NPC_Lua_Char_SetWatchEvent},
|
||
{"SetLoopEvent", NPC_Lua_Char_SetLoopEvent},
|
||
{"SetTalkedEvent", NPC_Lua_Char_SetTalkedEvent},
|
||
{"SetOFFEvent", NPC_Lua_Char_SetOFFEvent},
|
||
{"SetLookedEvent", NPC_Lua_Char_SetLookedEvent},
|
||
{"SetItemPutEvent", NPC_Lua_Char_SetItemPutEvent},
|
||
{"SetWindowTalkedEvent", NPC_Lua_Char_SetWindowTalkedEvent},
|
||
#ifdef _USER_CHARLOOPS
|
||
{"SetCharLoopsEvent", NPC_Lua_Char_SetCharLoopsEvent},
|
||
{"SetBattleProPertyEvent", NPC_Lua_Char_SetBattleProPertyEvent},
|
||
#endif
|
||
//½ð±Ò½Ó¿Ú
|
||
{"VipPoint", NPC_Lua_Char_VipPoint},
|
||
{"HealAll", NPC_Lua_Char_HealAll},
|
||
{"GetPetSkillId", NPC_Lua_Char_GetPetSkillId},
|
||
{"GetPetSkillName", NPC_Lua_Char_GetPetSkillName},
|
||
{"GetPetSkillMsg", NPC_Lua_Char_GetPetSkillMsg},
|
||
{"SetPetSkill", NPC_Lua_Char_SetPetSkill},
|
||
// {"RandMsg", NPC_Lua_Char_RandMsg},
|
||
{"GetBeatitudeNum", NPC_Lua_Char_GetBeatitudeNum},
|
||
{"RandRandWalk", RandRandWalk},
|
||
{"Ëæ»ú×ß·", RandRandWalk},
|
||
{"logout", NPC_Lua_Char_logout},
|
||
{"µÇ³ö", NPC_Lua_Char_logout},
|
||
{"copyChar", copyChar},
|
||
{"¸´ÖÆÈËÎïÊý¾Ý", copyChar},
|
||
//È¡Êý¾ÝµÄ½Ó¿Ú
|
||
{"ÊÇ·ñÍê³ÉÈÎÎñ", NPC_Lua_Char_IsEventEnd},
|
||
{"ÊÇ·ñ½øÐÐÈÎÎñ", NPC_Lua_Char_IsEventNow},
|
||
{"È¡½ð±ÒÊý", NPC_Lua_Char_GetVipPoint},
|
||
{"Öýð±ÒÊý", NPC_Lua_Char_SetVipPoint},
|
||
{"È¡»ý·ÖµãÊý", NPC_Lua_Char_GetAmPoint},
|
||
{"Öûý·ÖµãÊý", NPC_Lua_Char_SetAmPoint},
|
||
{"È¡²Ê±ÒµãÊý", NPC_Lua_Char_GetRmbPoint},
|
||
{"ÖòʱҵãÊý", NPC_Lua_Char_SetRmbPoint},
|
||
{"Ñ°ÕÒµÀ¾ßID", NPC_Lua_Char_FindItemId},
|
||
{"Ñ°ÕÒµÀ¾ßid", NPC_Lua_Char_FindItemId},
|
||
{"Ñ°ÕÒ³èÎïID", NPC_Lua_Char_FindPetEnemyId},
|
||
{"Ñ°ÕÒ³èÎïid", NPC_Lua_Char_FindPetEnemyId},
|
||
|
||
{"È¡Êý¾Ý", NPC_Lua_Char_GetData},
|
||
{"È¡µÀ¾ßID", NPC_Lua_Char_GetItemId},
|
||
{"È¡µÀ¾ßid", NPC_Lua_Char_GetItemId},
|
||
{"È¡³èÎïID", NPC_Lua_Char_GetPetEnemyId},
|
||
{"È¡³èÎïid", NPC_Lua_Char_GetPetEnemyId},
|
||
{"È¡µÀ¾ßË÷Òý", NPC_Lua_Char_GetItemIndex},
|
||
{"È¡³èÎïË÷Òý", NPC_Lua_Char_GetPetIndex},
|
||
{"È¡ÍŶÓË÷Òý", NPC_Lua_Char_GetTeamIndex},
|
||
|
||
//ÖÃÊý¾ÝµÄ½Ó¿Ú
|
||
{"È¡ÏûÍê³ÉÈÎÎñ", NPC_Lua_Char_ClrEvtEnd},
|
||
{"È¡Ïû½øÐÐÈÎÎñ", NPC_Lua_Char_ClrEvtNow},
|
||
{"Íê³ÉÈÎÎñ", NPC_Lua_Char_SetEvtEnd},
|
||
{"½øÐÐÈÎÎñ", NPC_Lua_Char_SetEvtNow},
|
||
{"ÖÃÊý¾Ý", NPC_Lua_Char_SetData},
|
||
|
||
//ʼþÖõĽӿÚ
|
||
{"×¢²áÒƶ¯Ê±»Øµ÷", NPC_Lua_Char_SetWalkPreEvent},
|
||
{"×¢²áÒƶ¯ºó»Øµ÷", NPC_Lua_Char_SetWalkPostEvent},
|
||
{"×¢²á²È̤ʱ»Øµ÷", NPC_Lua_Char_SetPreOverEvent},
|
||
{"×¢²á²È̤ºó»Øµ÷", NPC_Lua_Char_SetPostOverEvent},
|
||
{"×¢²á¶¯×÷ʱ»Øµ÷", NPC_Lua_Char_SetWatchEvent},
|
||
{"×¢²áÑ»·»Øµ÷", NPC_Lua_Char_SetLoopEvent},
|
||
{"×¢²á¶Ô»°»Øµ÷", NPC_Lua_Char_SetTalkedEvent},
|
||
{"SetOFFEvent", NPC_Lua_Char_SetOFFEvent},
|
||
{"×¢²á·½Ïò»Øµ÷", NPC_Lua_Char_SetLookedEvent},
|
||
{"×¢²áµÀ¾ß¶ªÆú²È̤»Øµ÷", NPC_Lua_Char_SetItemPutEvent},
|
||
{"×¢²á¶Ô»°¿ò»Øµ÷", NPC_Lua_Char_SetWindowTalkedEvent},
|
||
#ifdef _USER_CHARLOOPS
|
||
{"×¢²áԵػص÷", NPC_Lua_Char_SetCharLoopsEvent},
|
||
{"×¢²áÕ½¶·»Øµ÷", NPC_Lua_Char_SetBattleProPertyEvent},
|
||
#endif
|
||
//½ð±Ò½Ó¿Ú
|
||
{"È¡½ð±Ò", NPC_Lua_Char_VipPoint},
|
||
{"È«Ìå»Ö¸´", NPC_Lua_Char_HealAll},
|
||
{"È¡³èÎï¼¼ÄÜID", NPC_Lua_Char_GetPetSkillId},
|
||
{"È¡³èÎï¼¼ÄÜid", NPC_Lua_Char_GetPetSkillId},
|
||
{"È¡³èÎï¼¼ÄÜÃû", NPC_Lua_Char_GetPetSkillName},
|
||
{"È¡³èÎï¼¼ÄÜ˵Ã÷", NPC_Lua_Char_GetPetSkillMsg},
|
||
{"ÖóèÎï¼¼ÄÜID", NPC_Lua_Char_SetPetSkill},
|
||
{"ÖóèÎï¼¼ÄÜid", NPC_Lua_Char_SetPetSkill},
|
||
{"¼ì²âÍæ¼ÒË÷Òý",NPC_Lua_CHAR_CHECKINDEX},
|
||
{"Ñ°ÕÒµÀ¾ßË÷Òý", NPC_Lua_Char_FindItemIndex},
|
||
{"È¡µÀ¾ßÊýÁ¿", NPC_Lua_Char_HcItemId},
|
||
{"ɾ³ýµÀ¾ß", NPC_Lua_Char_DelHcItem},
|
||
{"È¡¼Ò×åÐÅÏ¢", NPC_Lua_Char_GETFM},
|
||
{"Ñ°ÕÒ³èÎïÔÐÍID", NPC_Lua_Char_FindPetEnemyBaseId},
|
||
{"Ñ°ÕÒ³èÎïÔÐÍid", NPC_Lua_Char_FindPetEnemyBaseId},
|
||
{"´´½¨³èÎï", createPet},
|
||
{"createPet", createPet},
|
||
{"setCharPet", setCharPet},
|
||
{"getCharPet", getCharPet},
|
||
{"ToAroundChar", ToAroundChar},
|
||
{"È¡µÀ¾ßÔÃû", NPC_Lua_Char_ITEMID_NAME},
|
||
{"È¡µÀ¾ß˵Ãû", NPC_Lua_Char_ITEMID_NAME2},
|
||
{"È¡µÀ¾ßµÈ¼¶", NPC_Lua_Char_ITEMID_LEVEL},
|
||
{"È¡µÀ¾ß¼Û¸ñ", NPC_Lua_Char_ITEMID_GOLD},
|
||
{"È¡µÀ¾ßͼƬ", NPC_Lua_Char_ITEMID_RANO},
|
||
{"Ñ°³èÎïË÷Òý", NPC_Lua_Char_FindPetIndex},
|
||
{"¼ì²âÆïÖ¤", NPC_Lua_Char_CharRidNo},
|
||
{"È¡³èÎïÖ÷ÈËË÷Òý", NPC_Lua_Char_GetPetOwner},
|
||
{"È¡³èÎïÊý¾ÝÀ´×ÔÔÐÍ",NPC_Lua_Char_GetDataFromEnemyBase},
|
||
{"È¡³èÎïIDÀ´×Ôµ÷ÓÃ", NPC_Lua_Char_GetEnemyBaseIdFromEnemyId},
|
||
{"È¡³èÎïµ÷ÓÃIDÀ´×ÔÔÐÍ", NPC_Lua_Char_GetEnemyIdFromEnemyBaseId},
|
||
{"È¡³èÎïidÀ´×Ôµ÷ÓÃ", NPC_Lua_Char_GetEnemyBaseIdFromEnemyId},
|
||
{"È¡³èÎïµ÷ÓÃidÀ´×ÔÔÐÍ", NPC_Lua_Char_GetEnemyIdFromEnemyBaseId},
|
||
{"È¡IP", NPC_Lua_Char_GetIp},
|
||
{"È¡ip", NPC_Lua_Char_GetIp},
|
||
{"È¡³èÎïËÄΧ",NPC_Lua_Char_GetAllocPoint},
|
||
{"ÖóèÎïËÄΧ", NPC_Lua_Char_SetAllocPoint},
|
||
{"È¡³èÎï×î´óË÷Òý", NPC_Lua_Char_GetMaxPetIndex},
|
||
{"È¡ÈËÎï×î´óË÷Òý", NPC_Lua_Char_GetMaxPlayerIndex},
|
||
{"±£´æ³èÎïÃèÊö", NPC_Lua_Char_SavePetToString},
|
||
{"¼ÓÔسèÎïÃèÊö", NPC_Lua_Char_LoadPetFromString},
|
||
{"¼ÆËãÊý¾Ý", NPC_Lua_Char_ComplianceParameter},
|
||
{"È¡ÈËÎïË÷ÒýÀ´×ÔÕʺÅÃÜÂë", NPC_Lua_Char_GetPlayerFromAccAndName},
|
||
{"È¡µÀ¾ßÊýÁ¿", NPC_Lua_Char_GetPlayerItemNum},
|
||
{"È¡³èÎïÊýÁ¿", NPC_Lua_Char_GetPlayerPetNum},
|
||
{"È¡µÀ¾ß¿ÕÊýÁ¿", NPC_Lua_Char_GetEmptyItemBoxNum},
|
||
{"È¡³èÎï¿ÕÊýÁ¿", NPC_Lua_Char_GetEmptyPetBoxNum},
|
||
{"¼ì²â³èÎïË÷Òý", NPC_Lua_Char_CheckPet},
|
||
{"¼ì²âÈËÎïË÷Òý", NPC_Lua_Char_CheckPlayer},
|
||
{"¼ì²âµÀ¾ßË÷Òý", NPC_Lua_Char_CheckItemIndex},
|
||
{"¼ÓÈë¶ÓÎé", NPC_Lua_Char_JoinParty},
|
||
|
||
{"È¡¼Ò×åÈËÎïË÷Òý", NPC_Lua_Char_getFamilyPlayIndex},
|
||
{"È¡ÈËÎï×î´óÊý", NPC_ABLua_char_getPlayerMaxNum},
|
||
// {"È¡ÐéÄâÈËÎï×î´óÊý", getOnlinePlayer_},
|
||
{"È¡Õ½¶·¾Ñ鱶Êý", NPC_ABLua_char_getBattleexp},
|
||
{"È¡³èÎï¼¼ÄÜID", NPC_Lua_Char_GetPetSkillNo},
|
||
{"ÖóèÎï¼¼ÄÜID", NPC_Lua_Char_SetPetSkillNo},
|
||
{"È¡³èÎï¼¼ÄÜid", NPC_Lua_Char_GetPetSkillNo},
|
||
{"ÖóèÎï¼¼ÄÜid", NPC_Lua_Char_SetPetSkillNo},
|
||
{"getFd", NPC_Lua_Char_GetfdFromCharaIndex},
|
||
{"È¡·¢°üID", NPC_Lua_Char_GetfdFromCharaIndex},
|
||
|
||
|
||
{NULL, NULL},
|
||
};
|
||
|
||
static luaL_Reg GAME_RegList[] = {
|
||
{"FMPOINT_GetData",NPC_Lua_Game_FMPOINT_GetData},
|
||
{"FMPOINT_ACSetFMPoint",NPC_Lua_Game_FMPOINT_ACSetFMPoint},
|
||
{"FMPOINT_ACFixFMPoint",NPC_Lua_Game_FMPOINT_ACFixFMPoint},
|
||
// {"FMPOINT_ACCleanFMPoint",NPC_Lua_Game_FMPOINT_ACCleanFMPoint},
|
||
{"È¡Êý¾Ý",NPC_Lua_Game_FMPOINT_GetData},
|
||
{"ÉêÇë¼Ò×å¾Ýµã",NPC_Lua_Game_FMPOINT_ACSetFMPoint},
|
||
{"É趨¼Ò×å¾Ýµã",NPC_Lua_Game_FMPOINT_ACFixFMPoint},
|
||
// {"Çå³ý¼Ò×å¾Ýµã",NPC_Lua_Game_FMPOINT_ACCleanFMPoint},
|
||
|
||
{NULL, NULL},
|
||
};
|
||
|
||
static luaL_Reg Item_RegList[] = {
|
||
//»ñÈ¡Êý¾ÝµÄ½Ó¿Ú
|
||
{"GetData", NPC_Lua_Item_GetData},
|
||
|
||
//ÉèÖÃÊý¾ÝµÄ½Ó¿Ú
|
||
{"SetData", NPC_Lua_Item_SetData},
|
||
{"GetDataFromItemSet", NPC_Lua_Item_GetDataFromItemSet},
|
||
//ʼþÉèÖõĽӿÚ
|
||
{"SetPreOverEvent", NPC_Lua_Item_SetPreOverEvent},
|
||
{"SetPostOverEvent", NPC_Lua_Item_SetPostOverEvent},
|
||
{"SetWatchEvent", NPC_Lua_Item_SetWatchEvent},
|
||
{"SetUseEvent", NPC_Lua_Item_SetUseEvent},
|
||
{"SetAttachEvent", NPC_Lua_Item_SetAttachEvent},
|
||
{"SetDetachEvent", NPC_Lua_Item_SetDetachEvent},
|
||
{"SetDropEvent", NPC_Lua_Item_SetDropEvent},
|
||
{"SetPickUPEvent", NPC_Lua_Item_SetPickUPEvent},
|
||
#ifdef _Item_ReLifeAct
|
||
{"SetDieReLifeEvent", NPC_Lua_Item_SetDieReLifeEvent},
|
||
#endif
|
||
//È¡Êý¾ÝµÄ½Ó¿Ú
|
||
{"È¡Êý¾Ý", NPC_Lua_Item_GetData},
|
||
|
||
//ÖÃÊý¾ÝµÄ½Ó¿Ú
|
||
{"ÖÃÊý¾Ý", NPC_Lua_Item_SetData},
|
||
{"È¡Ä£°åÊý¾Ý", NPC_Lua_Item_GetDataFromItemSet},
|
||
{"È¡¹ýÆÚʱ¼ä", NPC_Lua_Item_GetValidity},
|
||
{"È¡Ö÷ÈËË÷Òý", NPC_Lua_Item_GetItemOwner},
|
||
{"×î´óË÷Òý", NPC_Lua_Item_GetMaxItemIndex},
|
||
{"±£´æµÀ¾ßÃèÊö", NPC_Lua_Item_SaveItemToString},
|
||
{"ÖùýÆÚʱ¼ä", NPC_Lua_Item_SetValidity},
|
||
{"¼ÓÔصÀ¾ßÃèÊö", NPC_Lua_Item_LoadItemFromString},
|
||
|
||
{NULL, NULL},
|
||
};
|
||
|
||
static luaL_Reg Obj_RegList[] = {
|
||
//»ñÈ¡Êý¾ÝµÄ½Ó¿Ú
|
||
{"GetType", NPC_Lua_Obj_GetType},
|
||
{"GetCharType", NPC_Lua_Obj_GetCharType},
|
||
{"GetCharIndex", NPC_Lua_Obj_GetCharIndex},
|
||
{"GetX", NPC_Lua_Obj_GetX},
|
||
{"GetY", NPC_Lua_Obj_GetY},
|
||
{"GetFloor", NPC_Lua_Obj_GetFloor},
|
||
|
||
//ʼþÉèÖõĽӿÚ
|
||
{"SetType", NPC_Lua_Obj_SetType},
|
||
{"SetCharType", NPC_Lua_Obj_SetCharType},
|
||
{"SetX", NPC_Lua_Obj_SetX},
|
||
{"SetY", NPC_Lua_Obj_SetY},
|
||
{"SetFloor", NPC_Lua_Obj_SetFloor},
|
||
{"È¡ÀàÐÍ", NPC_Lua_Obj_GetType},
|
||
{"È¡ÐÎÏñ", NPC_Lua_Obj_GetCharType},
|
||
{"È¡Ë÷Òý", NPC_Lua_Obj_GetCharIndex},
|
||
{"È¡X", NPC_Lua_Obj_GetX},
|
||
{"È¡Y", NPC_Lua_Obj_GetY},
|
||
{"È¡x", NPC_Lua_Obj_GetX},
|
||
{"È¡y", NPC_Lua_Obj_GetY},
|
||
{"È¡µØͼ", NPC_Lua_Obj_GetFloor},
|
||
{"ÖÃÀàÐÍ", NPC_Lua_Obj_SetType},
|
||
{"ÖÃÐÎÏñ", NPC_Lua_Obj_SetCharType},
|
||
{"ÖÃX", NPC_Lua_Obj_SetX},
|
||
{"ÖÃY", NPC_Lua_Obj_SetY},
|
||
{"ÖÃx", NPC_Lua_Obj_SetX},
|
||
{"ÖÃy", NPC_Lua_Obj_SetY},
|
||
{"ÖõØͼ", NPC_Lua_Obj_SetFloor},
|
||
|
||
{NULL, NULL},
|
||
};
|
||
|
||
static luaL_Reg Battle_RegList[] = {
|
||
//»ñÈ¡Êý¾ÝµÄ½Ó¿Ú
|
||
{"GetPlayIndex", NPC_Lua_Battle_GetPlayIndex},
|
||
{"GetData", NPC_Lua_Battle_GetData},
|
||
{"IndexToNo", NPC_Lua_Battle_IndexToNo},
|
||
{"NoToIndex", NPC_Lua_Battle_NoToIndex},
|
||
{"CheckIndex", NPC_Lua_Battle_CheckIndex},
|
||
//ÉèÖÃÊý¾ÝµÄ½Ó¿Ú
|
||
{"SetNORisk", NPC_Lua_Battle_SetNORisk},
|
||
{"SetMod", NPC_Lua_Battle_SetMod},
|
||
{"SetType", NPC_Lua_Battle_SetType},
|
||
{"SetData", NPC_Lua_Battle_SetData},
|
||
{"Exit", NPC_Lua_Battle_Exit},
|
||
|
||
//ʼþÉèÖõĽӿÚ
|
||
{"SetWinEvent", NPC_Lua_Battle_SetWinEvent},
|
||
{"SetEndEvent", NPC_Lua_Battle_SetEndEvent},
|
||
{"ÆÕͨ¹¥»÷", Attack},
|
||
{"¼ÓѪ", Recovery},
|
||
{"È¡Íæ¼ÒË÷Òý", NPC_Lua_Battle_GetPlayIndex},
|
||
{"Ö÷½Ïò", NPC_Lua_Battle_SetNORisk},
|
||
{"ÖÃÕ½¶·±êÖ¾", NPC_Lua_Battle_SetMod},
|
||
{"ÖÃÀàÐÍ", NPC_Lua_Battle_SetType},
|
||
{"×¢²áÕ½¶·Ê±»Øµ÷", NPC_Lua_Battle_SetWinEvent},
|
||
{"È¡Êý¾Ý", NPC_Lua_Battle_GetData},
|
||
{"ÖÃÊý¾Ý", NPC_Lua_Battle_SetData},
|
||
{"ȡλÖÃ", NPC_Lua_Battle_IndexToNo},
|
||
{"È¡Ë÷Òý", NPC_Lua_Battle_NoToIndex},
|
||
{"¼ì²âË÷Òý", NPC_Lua_Battle_CheckIndex},
|
||
{"½áÊø", NPC_Lua_Battle_Exit},
|
||
{"×¢²áÕ½¶·ºó»Øµ÷", NPC_Lua_Battle_SetEndEvent},
|
||
|
||
{NULL, NULL},
|
||
};
|
||
|
||
|
||
static luaL_Reg SQL_RegList[] = {
|
||
{"Push", NPC_Lua_SQL_Push},
|
||
{"PushPop", NPC_Lua_SQL_PushPop},
|
||
{"PushPopAdv", NPC_Lua_SQL_PushPopAdv},
|
||
{"QueryFirstRow", NPC_Lua_SQL_QueryFirstRow},
|
||
{"FetchRow", NPC_Lua_SQL_FetchRow},
|
||
{"FreeResult", NPC_Lua_SQL_FreeResult},
|
||
{"Ö´ÐÐ", NPC_Lua_SQL_Push},
|
||
{"×¢²áÖ´Ðлص÷", NPC_Lua_SQL_PushPop},
|
||
{"×¢²áÖ´Ðлص÷I", NPC_Lua_SQL_PushPopAdv},
|
||
{"×¢²áÖ´Ðлص÷II", NPC_Lua_SQL_QueryFirstRow},
|
||
{"È¡ÏÂÒ»Ìõ½á¹û", NPC_Lua_SQL_FetchRow},
|
||
{"ÊͷŽá¹û¼¯", NPC_Lua_SQL_FreeResult},
|
||
|
||
{NULL, NULL},
|
||
};
|
||
|
||
|
||
static luaL_Reg NLG_RegList[] = {
|
||
//¹¦ÄܽӿÚ
|
||
{"UpItem", NPC_Lua_NLG_UpItem},
|
||
{"GiveItemOne", NPC_Lua_NLG_GiveItemOne},
|
||
{"HealAll", NPC_Lua_NLG_HealerAllHeal},
|
||
{"DelItemByIndex", NPC_Lua_NLG_DelItemByIndex},
|
||
{"FindPet", NPC_Lua_NLG_FindPet},
|
||
{"GetMap", NPC_Lua_NLG_GetMap},
|
||
{"PetUp", NPC_Lua_NLG_PetUp},
|
||
#ifdef _CHAR_PROFESSION
|
||
{"AddSk", NPC_Lua_NLG_AddSk},
|
||
{"SetZy", NPC_Lua_NLG_SetZy},
|
||
#endif
|
||
{"GetPlayerMaxNum", NPC_Lua_Char_GetPlayerMaxNum},
|
||
{"GetXY", NPC_Lua_NLG_GetXY},
|
||
{"WalkJc", NPC_Lua_NLG_WalkJc},
|
||
{"KickPlayer", NPC_Lua_NLG_KickPlayer},
|
||
{"HealOne", NPC_Lua_NLG_HealOne},
|
||
{"HealAll", NPC_Lua_NLG_HealAll},
|
||
{"LevelUpTo", NPC_Lua_NLG_LevelUpTo},
|
||
{"AddExp", NPC_Lua_NLG_AddExp},
|
||
{"UpPet", NPC_Lua_NLG_UpPet},
|
||
{"DelPetByPos", NPC_Lua_NLG_DelPetByPos},
|
||
{"DelPetByIndex", NPC_Lua_NLG_DelPetByIndex},
|
||
{"GivePetByIndex", NPC_Lua_NLG_GivePetByIndex},
|
||
{"GiveItemByIndex", NPC_Lua_NLG_GiveItemByIndex},
|
||
{"WarpToSpecificPoint", NPC_Lua_NLG_WarpToSpecificPoint},
|
||
{"UpSkillupPoint", NPC_Lua_NLG_UpSkillupPoint},
|
||
{"StayEncount", NPC_Lua_NLG_StayEncount},
|
||
|
||
{"CheckInFront", NPC_Lua_NLG_CheckInFront},
|
||
{"CheckObj", NPC_Lua_NLG_CheckObj},
|
||
{"CharLook", NPC_Lua_NLG_CharLook},
|
||
{"CreateBattle", NPC_Lua_NLG_CreateBattle},
|
||
{"CreateBattlePvP", NPC_Lua_NLG_CreateBattlePvP},
|
||
{"SearchWatchBattleRandIndex", NPC_Lua_NLG_SearchWatchBattleRandIndex},
|
||
{"InputCard", NPC_Lua_NLG_InputCard},
|
||
{"DelPet", NPC_Lua_NLG_DelPet},
|
||
{"DelHaveIndexPet", NPC_Lua_NLG_DelHaveIndexPet},
|
||
{"DelItem", NPC_Lua_NLG_DelItem},
|
||
{"DelItemByPos", NPC_Lua_NLG_DelItemByPos},
|
||
{"DischargeParty", NPC_Lua_NLG_DischargeParty},
|
||
|
||
{"GivePet", NPC_Lua_NLG_GivePet},
|
||
{"GiveOnePet", NPC_Lua_NLG_GiveOnePet},
|
||
{"GiveItem", NPC_Lua_NLG_GiveItem},
|
||
{"GiveOneItem", NPC_Lua_NLG_GiveOneItem},
|
||
{"GiveRandItem", NPC_Lua_NLG_GiveRandItem},
|
||
{"GetOnLinePlayer", NPC_Lua_Char_GetOnLinePlayer},
|
||
|
||
{"ShowWindowTalked", NPC_Lua_NLG_ShowWindowTalked},
|
||
{"SetAction", NPC_Lua_NLG_SetAction},
|
||
|
||
{"TalkToCli", NPC_Lua_NLG_TalkToCli},
|
||
{"TalkToFloor", NPC_Lua_NLG_TalkToFloor},
|
||
|
||
{"UpChar", NPC_Lua_NLG_UpChar},
|
||
{"UpStateBySecond", NPC_Lua_NLG_UpStateBySecond},
|
||
{"UpStateByThird", NPC_Lua_NLG_UpStateByThird},
|
||
{"Update_Party", NPC_Lua_NLG_Update_Party},
|
||
|
||
{"Warp", NPC_Lua_NLG_Warp},
|
||
{"WalkMove", NPC_Lua_NLG_WalkMove},
|
||
{"WatchEntry", NPC_Lua_NLG_WatchEntry},
|
||
|
||
{"GetMaxPlayNum", NPC_Lua_NLG_GetMaxPlayNum},
|
||
{"CheckPlayIndex", NPC_Lua_NLG_CheckPlayIndex},
|
||
|
||
{"Save", NPC_Lua_NLG_Save},
|
||
// add by Mo.
|
||
{"SetExp", NPC_Lua_NLG_SetExp},
|
||
{"GetExp", NPC_Lua_NLG_GetExp},
|
||
// {"SetPetTransRange", NPC_Lua_NLG_SetPetTransRange},
|
||
// {"GetPetTransRange", NPC_Lua_NLG_GetPetTransRange},
|
||
{"TalkToGlobal", talkToAllServer },
|
||
{"CreateVsEnemyAB", NPC_Lua_NLG_CreateVsEnemyAB},
|
||
{"¼ì²âÊÇ·ñÃæ¶Ô", NPC_Lua_NLG_CheckInFront},
|
||
{"¼ì²âµØͼÊÇ·ñÓÐÎï¼þ", NPC_Lua_NLG_CheckObj},
|
||
{"¸Ä±ä·½Ïò", NPC_Lua_NLG_CharLook},
|
||
{"´´½¨Õ½¶·", NPC_Lua_NLG_CreateBattle},
|
||
{"´´½¨Õ½¶·AB", NPC_Lua_NLG_CreateVsEnemyAB},
|
||
{"´´½¨ÈËÎïÕ½¶·", NPC_Lua_NLG_CreateBattlePvP},
|
||
{"Ëæ»ú¹ÛÕ½", NPC_Lua_NLG_SearchWatchBattleRandIndex},
|
||
|
||
{"ɾ³ý³èÎï", NPC_Lua_NLG_DelPet},
|
||
{"ɾ³ý³èÎïλÖÃ", NPC_Lua_NLG_DelHaveIndexPet},
|
||
{"ɾ³ýµÀ¾ß", NPC_Lua_NLG_DelItem},
|
||
{"½âÉ¢¶ÓÎé", NPC_Lua_NLG_DischargeParty},
|
||
|
||
{"¸ø³èÎï", NPC_Lua_NLG_GivePet},
|
||
{"¸øµÀ¾ß", NPC_Lua_NLG_GiveItem},
|
||
{"¸øµÀ¾ß·µË÷Òý", NPC_Lua_NLG_GiveOneItem},
|
||
{"Ëæ»ú¸øµÀ¾ß", NPC_Lua_NLG_GiveRandItem},
|
||
{"ÔÚÏßÈËÊý", NPC_Lua_Char_GetOnLinePlayer},
|
||
|
||
{"·¢ËͶԻ°¿ò", NPC_Lua_NLG_ShowWindowTalked},
|
||
{"Öö¯×÷", NPC_Lua_NLG_SetAction},
|
||
|
||
{"˵»°", NPC_Lua_NLG_TalkToCli},
|
||
{"µØͼ˵»°", NPC_Lua_NLG_TalkToFloor},
|
||
|
||
{"¸üÐÂÈËÎï", NPC_Lua_NLG_UpChar},
|
||
{"¸üÐÂÈËÎïI", NPC_Lua_NLG_UpStateBySecond},
|
||
{"¸üÐÂÈËÎïII", NPC_Lua_NLG_UpStateByThird},
|
||
{"ÏòÍæ¼Ò¸üÐÂÊý¾Ý", NPC_Lua_NLG_Update_Party},
|
||
|
||
{"´«ËÍ", NPC_Lua_NLG_Warp},
|
||
{"Òƶ¯", NPC_Lua_NLG_WalkMove},
|
||
{"¹ÛÕ½", NPC_Lua_NLG_WatchEntry},
|
||
|
||
{"×î´óÈËÊýI", NPC_Lua_NLG_GetMaxPlayNum},
|
||
{"¼ì²âÈËÎïË÷Òý", NPC_Lua_NLG_CheckPlayIndex},
|
||
|
||
{"±£´æÊý¾Ý", NPC_Lua_NLG_Save},
|
||
{"Ñ°ÕÒ³èÎï", NPC_Lua_NLG_FindPet},
|
||
{"È¡µØͼ", NPC_Lua_NLG_GetMap},
|
||
{"³èÎï¸üÐÂ", NPC_Lua_NLG_PetUp},
|
||
//{"Ìí¼ÓÖ°Òµ¼¼ÄÜ", NPC_Lua_NLG_AddSk},
|
||
//{"ÖÃÖ°Òµ¼¼ÄÜ", NPC_Lua_NLG_SetZy},
|
||
{"GetXY", NPC_Lua_NLG_GetXY},
|
||
{"¹ö¶¯¹«¸æ", dengon},
|
||
#ifdef _GUANGHUAN
|
||
{"¸üй⻷",NPC_Lua_NLG_UpHalo},
|
||
#endif
|
||
{"¼ì²âÇ°·½ÕÏ°", NPC_Lua_NLG_WalkJc},
|
||
{"TÍæ¼Ò", NPC_Lua_NLG_KickPlayer},
|
||
{"»Ö¸´", NPC_Lua_NLG_HealOne},
|
||
{"È«Ìå»Ö¸´", NPC_Lua_NLG_HealAll},
|
||
{"ÌáÉýµÈ¼¶", NPC_Lua_NLG_LevelUpTo},
|
||
{"Ôö¼Ó¾Ñé", NPC_Lua_NLG_AddExp},
|
||
{"¸üеÀ¾ß", NPC_Lua_NLG_UpItem},
|
||
{"¸üгèÎï", NPC_Lua_NLG_UpPet},
|
||
{"ɾ³ý³èÎïλÖÃ", NPC_Lua_NLG_DelPetByPos},
|
||
{"ɾ³ý³èÎïË÷Òý", NPC_Lua_NLG_DelPetByIndex},
|
||
{"ɾ³ýµÀ¾ßλÖÃ", NPC_Lua_NLG_DelItemByPos},
|
||
{"ɾ³ýµÀ¾ßË÷Òý", NPC_Lua_NLG_DelItemByIndex},
|
||
{"ÖƳèÎï", NPC_Lua_NLG_GivePetOne},
|
||
{"È¡³èÎïÀ´×ÔË÷Òý", NPC_Lua_NLG_GivePetByIndex},
|
||
{"¸øµÀ¾ßË÷Òý", NPC_Lua_NLG_GiveItemOne},
|
||
{"È¡µÀ¾ßÀ´×ÔË÷Òý", NPC_Lua_NLG_GiveItemByIndex},
|
||
{"´«ËÍI", NPC_Lua_NLG_WarpToSpecificPoint},
|
||
{"¸üеãÊý", NPC_Lua_NLG_UpSkillupPoint},
|
||
{"ﵯ", NPC_Lua_NLG_StayEncount},
|
||
{"È«Çò˵»°", talkToAllServer },
|
||
|
||
|
||
{NULL, NULL},
|
||
};
|
||
|
||
static luaL_Reg M_NTIntRegList[] = {
|
||
{"AINew", NPC_Lua_NTInt_New},
|
||
{"AIGet", NPC_Lua_NTInt_Get},
|
||
{"AISet", NPC_Lua_NTInt_Set},
|
||
{"AILen", NPC_Lua_NTInt_Len},
|
||
{NULL, NULL},
|
||
};
|
||
|
||
static SCRIPTREGLIB M_NTInt_Lib[] = {
|
||
{"NTInt", &M_NTIntRegList},
|
||
{NULL, NULL},
|
||
};
|
||
|
||
static SCRIPTREGLIB M_RegLib[] = {
|
||
{"NL", &NL_RegList},
|
||
{"NLG", &NLG_RegList},
|
||
{"Char", &Char_RegList},
|
||
{"Item", &Item_RegList},
|
||
{"Obj", &Obj_RegList},
|
||
{"Battle", &Battle_RegList},
|
||
{"Bit", &Bit_RegList},
|
||
{"Game",&GAME_RegList},
|
||
{"Map",&Map_RegList},
|
||
{"Spell", &Spell_RegList},
|
||
{"SQL",&SQL_RegList},
|
||
{"ϵͳ", &NL_RegList},
|
||
{"·â°ü", &NLG_RegList},
|
||
{"ÈËÎï", &Char_RegList},
|
||
{"µÀ¾ß", &Item_RegList},
|
||
{"Îï¼þ", &Obj_RegList},
|
||
{"Õ½¶·", &Battle_RegList},
|
||
{"¼Ò×å", &GAME_RegList},
|
||
{"µØͼ",&Map_RegList},
|
||
{"¼¼ÄÜ", &Spell_RegList},
|
||
{"Êý¾Ý¿â",&SQL_RegList},
|
||
{NULL, NULL},
|
||
};
|
||
|
||
static SCRIPTREGCLASS M_RegClass[] = {
|
||
{NULL, NULL, NULL},
|
||
};
|
||
|
||
static char *Array_INL[] = {
|
||
"__index", "__newindex", "__len", NULL
|
||
};
|
||
|
||
static char *Array_GSL[] = {
|
||
"AIGet", "AISet", "AILen", NULL
|
||
};
|
||
|
||
static SCRIPTREGARRAY M_RegArray[] = {
|
||
{
|
||
"Array.NTInt",
|
||
&Array_INL[0],
|
||
&Array_GSL[0],
|
||
&M_NTInt_Lib,
|
||
},
|
||
{
|
||
NULL,
|
||
{NULL},
|
||
{NULL},
|
||
NULL,
|
||
},
|
||
};
|
||
|
||
|
||
int NPC_Lua_Init(const char *_DoFile)
|
||
{
|
||
int TM_Ret = 0;
|
||
|
||
M_Script_Lua = lua_open();
|
||
if (M_Script_Lua == NULL) {
|
||
print("LUAInit: cannot create state: not enough memory\n");
|
||
return -1;
|
||
}
|
||
M_OutErrMsg[0] = '\0';
|
||
|
||
//Í£Ö¹À¬»øÊÕ¼¯
|
||
lua_gc(M_Script_Lua, LUA_GCSTOP, 0);
|
||
|
||
luaL_openlibs(M_Script_Lua);
|
||
|
||
lua_gc(M_Script_Lua, LUA_GCRESTART, 0);
|
||
|
||
//ÉèÖÃÄÚÖó£Á¿
|
||
lua_setconstlist(M_Script_Lua, M_Lua_RegConstList);
|
||
|
||
//ÉèÖÃLuaÒýÇæÀ©Õ¹
|
||
print("LUA RegFuncNum:%d\n", NPC_Lua_RegCallEx(M_Script_Lua, M_RegList));
|
||
print("LUA RegLibNum:%d\n", NPC_Lua_RegLibEx(M_Script_Lua, M_RegLib));
|
||
print("LUA RegClassNum:%d\n", NPC_Lua_RegClassEx(M_Script_Lua, M_RegClass));
|
||
print("LUA RegArrayNum:%d\n", NPC_Lua_RegArrayEx(M_Script_Lua, M_RegArray));
|
||
|
||
print("LNSÒýÇæ³õʼ»¯Íê³É ÒýÇæ°æ±¾: 1.1.26\n");
|
||
//ɾ³ý֮ǰLUA½¨Á¢µÄNPC
|
||
int i;
|
||
int charnum = getFdnum()+ getPetcharnum()+getOtherscharnum();
|
||
for(i=0;i<charnum;i++){
|
||
if(!CHAR_CHECKINDEX(i)) continue;
|
||
if(CHAR_getWorkInt(i,CHAR_WORKNPCTYPE)==2){
|
||
NPC_Lua_Del(i);
|
||
}
|
||
}
|
||
//¼ÓÔؽű¾Îļþ
|
||
TM_Ret = luaL_loadfile(M_Script_Lua, _DoFile);
|
||
if(TM_Ret != 0)
|
||
{
|
||
//ʧ°Ü-Êä³ö´íÎóÐÅÏ¢
|
||
/// char token1[1024]={0};
|
||
// code_convert1("UTF-8","GBK",(char *)lua_tostring(M_Script_Lua, -1),strlen(lua_tostring(M_Script_Lua, -1)),token1,1024);
|
||
print("NPC_Lua_Init LoadFile Err :%d(%s)\n", TM_Ret, lua_tostring(M_Script_Lua, -1));
|
||
lua_pop(M_Script_Lua, 1);
|
||
return M_Create_Num;
|
||
}
|
||
|
||
//Ö´Ðнű¾Îļþ
|
||
TM_Ret = lua_pcall(M_Script_Lua, 0, 0, 0);
|
||
if(TM_Ret != 0)
|
||
{
|
||
//char token1[1024]={0};
|
||
//code_convert1("UTF-8","GBK",(char *)lua_tostring(M_Script_Lua, -1),strlen(lua_tostring(M_Script_Lua, -1)),token1,1024);
|
||
print("NPC_Lua_Init Pcall:%d(%s)\n", TM_Ret, lua_tostring(M_Script_Lua, -1));
|
||
//³öÕ»
|
||
lua_pop(M_Script_Lua, 1);
|
||
return M_Create_Num;
|
||
}
|
||
return M_Create_Num;
|
||
}
|
||
|
||
int NPC_Lua_Close(void)
|
||
{
|
||
if(M_Script_Lua != NULL)
|
||
{
|
||
lua_close(M_Script_Lua);
|
||
M_Script_Lua = NULL;
|
||
}
|
||
return 0;
|
||
}
|
||
|
||
#ifdef _LUA_Debug
|
||
int pcall_callback_err_fun(lua_State* L,const char *_InitFuncName)
|
||
{
|
||
lua_Debug debug;
|
||
//È¡µÃ²ãÊý
|
||
int level = 0;
|
||
while (lua_getstack(L, level, &debug)) {
|
||
level++;
|
||
}
|
||
if (!level) {
|
||
return 0;
|
||
}
|
||
lua_getstack(L, level, &debug);
|
||
lua_getinfo(L, "Sln", &debug);
|
||
lua_pop(L, 1);//³öÕ»
|
||
if(_InitFuncName != NULL && _InitFuncName[0] != '\0'){
|
||
print("·¾¶(%s)%dÐдúÂëµ÷Óú¯Êý(%s)³ö´í¡£\n",debug.short_src,debug.currentline,_InitFuncName);
|
||
}else{
|
||
print("·¾¶(%s)%d´úÂë³ö´í¡£\n",debug.short_src,debug.currentline);
|
||
}
|
||
return 1;
|
||
}
|
||
#endif
|
||
|
||
int NPC_Lua_DoFile(const char *_DoFile)
|
||
{
|
||
if(_DoFile == NULL)
|
||
{
|
||
return 0;
|
||
}
|
||
if (_DoFile[0] == 0x0 ) return 0;
|
||
if(M_Script_Lua == NULL)
|
||
{
|
||
print("M_Script_Lua Null!");
|
||
return 1;
|
||
}
|
||
int TM_Ret = luaL_loadfile(M_Script_Lua, _DoFile);
|
||
if(TM_Ret != 0)
|
||
{
|
||
//char token1[1024]={0};
|
||
//code_convert1("UTF-8","GBK",(char *)lua_tostring(M_Script_Lua, -1),strlen(lua_tostring(M_Script_Lua, -1)),token1,1024);
|
||
print("NPC_Lua_DoFile LoadFile Err :%d(%s)\n", TM_Ret, lua_tostring(M_Script_Lua, -1));
|
||
return 1;
|
||
}
|
||
|
||
TM_Ret = lua_pcall(M_Script_Lua, 0, LUA_MULTRET, 0);
|
||
if(TM_Ret != 0)
|
||
{
|
||
//ʧ°Ü-Êä³ö´íÎóÐÅÏ¢
|
||
print("NPC_Lua_DoFile pcall Do Lua Err :%d(%s)\n", TM_Ret, lua_tostring(M_Script_Lua, -1));
|
||
return 1;
|
||
}
|
||
return 0;
|
||
}
|
||
|
||
const char *NPC_Lua_popstring(int _ArgNum)
|
||
{
|
||
return lua_tostring(M_Script_Lua, _ArgNum);
|
||
}
|
||
#ifdef _MO_LNS_NLSUOXU
|
||
const char *NPC_Lua_CallFunc(const char *_FuncName, char *_RetBuff, size_t _n, int index)
|
||
{
|
||
const char *TM_Ret = NULL;
|
||
if(M_Script_Lua == NULL)
|
||
{
|
||
strcpy_s(_RetBuff, _n, "M_Script_Lua Null!");
|
||
return _RetBuff;
|
||
}
|
||
lua_getglobal(M_Script_Lua, _FuncName);
|
||
|
||
if(lua_type(M_Script_Lua, -1) != LUA_TFUNCTION)
|
||
{
|
||
strcpy_s(_RetBuff, _n, "ÎÞ·¨Ö´ÐÐÖ¸¶¨º¯Êý¡£");
|
||
return _RetBuff;
|
||
}
|
||
lua_pushinteger(M_Script_Lua,(lua_Integer)index) ;
|
||
lua_pcall(M_Script_Lua, 1, 1, 0);
|
||
strcpy_s(_RetBuff, _n, lua_tostring(M_Script_Lua, -1));
|
||
lua_pop(M_Script_Lua, 1);
|
||
return _RetBuff;
|
||
}
|
||
#else
|
||
const char *NPC_Lua_CallFunc(const char *_FuncName, char *_RetBuff, size_t _n)
|
||
{
|
||
const char *TM_Ret = NULL;
|
||
if(M_Script_Lua == NULL)
|
||
{
|
||
strcpy_s(_RetBuff, _n, "M_Script_Lua Null!");
|
||
return _RetBuff;
|
||
}
|
||
lua_getglobal(M_Script_Lua, _FuncName);
|
||
|
||
if(lua_type(M_Script_Lua, -1) != LUA_TFUNCTION)
|
||
{
|
||
strcpy_s(_RetBuff, _n, "ÎÞ·¨Ö´ÐÐÖ¸¶¨º¯Êý¡£");
|
||
return _RetBuff;
|
||
}
|
||
lua_pcall(M_Script_Lua, 0, 1, 0);
|
||
strcpy_s(_RetBuff, _n, lua_tostring(M_Script_Lua, -1));
|
||
lua_pop(M_Script_Lua, 1);
|
||
return _RetBuff;
|
||
}
|
||
#endif
|
||
|
||
void NPC_Lua_BattleEndCallBack(int _battleindex)
|
||
{
|
||
if(M_Script_Lua == NULL)
|
||
{
|
||
print("M_Script_Lua Null!");
|
||
return ;
|
||
}
|
||
if( BATTLE_CHECKINDEX(_battleindex) == FALSE )
|
||
{
|
||
return ;
|
||
}
|
||
|
||
BATTLE *TM_Battle = &BattleArray[_battleindex];
|
||
|
||
if(TM_Battle == NULL)
|
||
{
|
||
return ;
|
||
}
|
||
|
||
int TM_Ret = 0;
|
||
lua_getglobal(M_Script_Lua, TM_Battle->EndLuaFuncName);
|
||
lua_pushinteger(M_Script_Lua, (lua_Integer)_battleindex);
|
||
lua_pushinteger(M_Script_Lua, (lua_Integer) TM_Battle->EndLuaIndex);
|
||
TM_Ret = lua_pcall(M_Script_Lua, 2, 0, 0);
|
||
|
||
if(TM_Ret != 0)
|
||
{
|
||
//ʧ°Ü-Êä³ö´íÎóÐÅÏ¢
|
||
print("NPC_Lua_BattleEndCallBack Lua Err :%d(%s) »Øµ÷Ãû[%s]\n", TM_Ret, lua_tostring(M_Script_Lua, -1),TM_Battle->EndLuaFuncName);
|
||
//³öÕ»
|
||
lua_pop(M_Script_Lua, 1);
|
||
return ;
|
||
}
|
||
|
||
return ;
|
||
}
|
||
|
||
BOOL NPC_Lua_InitCallBack(int _meindex)
|
||
{
|
||
if(M_Script_Lua == NULL)
|
||
{
|
||
print("M_Script_Lua Null!");
|
||
return FALSE;
|
||
}
|
||
Char *TM_char = CHAR_getCharPointer(_meindex);
|
||
if(TM_char == NULL)
|
||
{
|
||
return FALSE;
|
||
}
|
||
int TM_Ret = 0;
|
||
BOOL TM_FuncRet = FALSE;
|
||
|
||
lua_getglobal(M_Script_Lua, (const char *)TM_char->lua_charfunctable[CHAR_INITFUNC].string);
|
||
lua_pushinteger(M_Script_Lua, (lua_Integer)_meindex);
|
||
|
||
TM_Ret = lua_pcall(M_Script_Lua, 1, 1, 0);
|
||
if(TM_Ret != 0)
|
||
{
|
||
//ʧ°Ü-Êä³ö´íÎóÐÅÏ¢
|
||
print("NPC_Lua_InitCallBack Lua Err :%d(%s)\n", TM_Ret, lua_tostring(M_Script_Lua, -1));
|
||
//³öÕ»
|
||
lua_pop(M_Script_Lua, 1);
|
||
return FALSE;
|
||
}
|
||
TM_FuncRet = (BOOL)lua_toboolean(M_Script_Lua, -1);
|
||
lua_pop(M_Script_Lua, 1);
|
||
return TM_FuncRet;
|
||
}
|
||
|
||
BOOL NPC_Lua_WalkPreCallBack(int _meindex, int *_dir, int *_mode)
|
||
{
|
||
if(M_Script_Lua == NULL)
|
||
{
|
||
print("M_Script_Lua Null!");
|
||
return FALSE;
|
||
}
|
||
Char *TM_char = CHAR_getCharPointer(_meindex);
|
||
if(TM_char == NULL)
|
||
{
|
||
return FALSE;
|
||
}
|
||
int TM_Ret = 0;
|
||
BOOL TM_FuncRet = FALSE;
|
||
|
||
lua_getglobal(M_Script_Lua, (const char *)TM_char->lua_charfunctable[CHAR_WALKPREFUNC].string);
|
||
lua_pushinteger(M_Script_Lua, (lua_Integer)_meindex);
|
||
lua_pushinteger(M_Script_Lua, (lua_Integer)*_dir);
|
||
lua_pushinteger(M_Script_Lua, (lua_Integer)*_mode);
|
||
|
||
TM_Ret = lua_pcall(M_Script_Lua, 3, 3, 0);
|
||
if(TM_Ret != 0)
|
||
{
|
||
//ʧ°Ü-Êä³ö´íÎóÐÅÏ¢
|
||
print("NPC_Lua_WalkPreCallBack Lua Err :%d(%s)\n", TM_Ret, lua_tostring(M_Script_Lua, -1));
|
||
//³öÕ»
|
||
lua_pop(M_Script_Lua, 1);
|
||
return FALSE;
|
||
}
|
||
|
||
TM_FuncRet = (BOOL)lua_toboolean(M_Script_Lua, -1);
|
||
*_dir = (int)lua_tointeger(M_Script_Lua, -2);
|
||
*_mode = (int)lua_tointeger(M_Script_Lua, -3);
|
||
lua_pop(M_Script_Lua, 3);
|
||
|
||
return TM_FuncRet;
|
||
}
|
||
|
||
void NPC_Lua_WalkPostCallBack(int _meindex)
|
||
{
|
||
if(M_Script_Lua == NULL)
|
||
{
|
||
print("M_Script_Lua Null!");
|
||
return ;
|
||
}
|
||
Char *TM_char = CHAR_getCharPointer(_meindex);
|
||
if(TM_char == NULL)
|
||
{
|
||
return ;
|
||
}
|
||
int TM_Ret = 0;
|
||
|
||
lua_getglobal(M_Script_Lua, (const char *)TM_char->lua_charfunctable[CHAR_WALKPOSTFUNC].string);
|
||
lua_pushinteger(M_Script_Lua, (lua_Integer)_meindex);
|
||
|
||
TM_Ret = lua_pcall(M_Script_Lua, 1, 0, 0);
|
||
if(TM_Ret != 0)
|
||
{
|
||
//ʧ°Ü-Êä³ö´íÎóÐÅÏ¢
|
||
print("NPC_Lua_WalkPostCallBack Lua Err :%d(%s)\n", TM_Ret, lua_tostring(M_Script_Lua, -1));
|
||
//³öÕ»
|
||
lua_pop(M_Script_Lua, 1);
|
||
return ;
|
||
}
|
||
|
||
return ;
|
||
}
|
||
|
||
void NPC_Lua_PreOverCallBack(int _meindex, int _desindex)
|
||
{
|
||
if(M_Script_Lua == NULL)
|
||
{
|
||
print("M_Script_Lua Null!");
|
||
return ;
|
||
}
|
||
Char *TM_char = CHAR_getCharPointer(_meindex);
|
||
if(TM_char == NULL)
|
||
{
|
||
return ;
|
||
}
|
||
int TM_Ret = 0;
|
||
|
||
lua_getglobal(M_Script_Lua, (const char *)TM_char->lua_charfunctable[CHAR_PREOVERFUNC].string);
|
||
lua_pushinteger(M_Script_Lua, (lua_Integer)_meindex);
|
||
lua_pushinteger(M_Script_Lua, (lua_Integer)_desindex);
|
||
|
||
TM_Ret = lua_pcall(M_Script_Lua, 2, 0, 0);
|
||
if(TM_Ret != 0)
|
||
{
|
||
//ʧ°Ü-Êä³ö´íÎóÐÅÏ¢
|
||
print("NPC_Lua_PreOverCallBack Lua Err :%d(%s)\n", TM_Ret, lua_tostring(M_Script_Lua, -1));
|
||
//³öÕ»
|
||
lua_pop(M_Script_Lua, 1);
|
||
return ;
|
||
}
|
||
|
||
return ;
|
||
}
|
||
|
||
void NPC_Lua_PostOverCallBack(int _meindex, int _desindex)
|
||
{
|
||
if(M_Script_Lua == NULL)
|
||
{
|
||
print("M_Script_Lua Null!");
|
||
return ;
|
||
}
|
||
Char *TM_char = CHAR_getCharPointer(_meindex);
|
||
if(TM_char == NULL)
|
||
{
|
||
return ;
|
||
}
|
||
int TM_Ret = 0;
|
||
|
||
lua_getglobal(M_Script_Lua, (const char *)TM_char->lua_charfunctable[CHAR_POSTOVERFUNC].string);
|
||
lua_pushinteger(M_Script_Lua, (lua_Integer)_meindex);
|
||
lua_pushinteger(M_Script_Lua, (lua_Integer)_desindex);
|
||
|
||
TM_Ret = lua_pcall(M_Script_Lua, 2, 0, 0);
|
||
if(TM_Ret != 0)
|
||
{
|
||
//ʧ°Ü-Êä³ö´íÎóÐÅÏ¢
|
||
print("NPC_Lua_PostOverCallBack Lua Err :%d(%s)\n", TM_Ret, lua_tostring(M_Script_Lua, -1));
|
||
//³öÕ»
|
||
lua_pop(M_Script_Lua, 1);
|
||
return ;
|
||
}
|
||
|
||
return ;
|
||
}
|
||
|
||
void NPC_Lua_WatchCallBack(int _meindex, int _objindex, int _chac, int _x, int _y, int _dir, int *_watchopt, int _watchoptlen)
|
||
{
|
||
if(M_Script_Lua == NULL)
|
||
{
|
||
print("M_Script_Lua Null!");
|
||
return ;
|
||
}
|
||
Char *TM_char = CHAR_getCharPointer(_meindex);
|
||
|
||
if(TM_char == NULL)
|
||
{
|
||
return ;
|
||
}
|
||
|
||
int TM_Ret = 0;
|
||
PARRAY_NTINT TM_Point = NULL;
|
||
|
||
lua_getglobal(M_Script_Lua, (const char *)TM_char->lua_charfunctable[CHAR_WATCHFUNC].string);
|
||
lua_pushinteger(M_Script_Lua, (lua_Integer)_meindex);
|
||
lua_pushinteger(M_Script_Lua, (lua_Integer)_objindex);
|
||
lua_pushinteger(M_Script_Lua, (lua_Integer)_chac);
|
||
lua_pushinteger(M_Script_Lua, (lua_Integer)_x);
|
||
lua_pushinteger(M_Script_Lua, (lua_Integer)_y);
|
||
lua_pushinteger(M_Script_Lua, (lua_Integer)_dir);
|
||
if(_watchopt == NULL || _watchoptlen <= 0)
|
||
{
|
||
lua_pushnil(M_Script_Lua);
|
||
}else
|
||
{
|
||
//µ÷Óà NTInt ʵÀý»¯º¯Êý
|
||
lua_getglobal(M_Script_Lua, "AINew");
|
||
lua_pushinteger(M_Script_Lua, _watchoptlen);
|
||
TM_Ret = lua_pcall(M_Script_Lua, 1, 1, 0);
|
||
|
||
if(TM_Ret != 0)
|
||
{
|
||
print("NPC_Lua_WatchCallBack Call AINew Lua Err :%d(%s)\n", TM_Ret, lua_tostring(M_Script_Lua, -1));
|
||
lua_pop(M_Script_Lua, 1);
|
||
lua_pushnil(M_Script_Lua);
|
||
}else
|
||
{
|
||
if( lua_type(M_Script_Lua, -1) == LUA_TUSERDATA )
|
||
{
|
||
PARRAY_NTINT TM_Point = lua_touserdata(M_Script_Lua, -1);
|
||
if(TM_Point != NULL)
|
||
{
|
||
int i = 0;
|
||
for(i = 0; i < _watchoptlen; i++)
|
||
{
|
||
TM_Point->Num[i] = _watchopt[i];
|
||
}
|
||
}
|
||
}else
|
||
{
|
||
lua_pop(M_Script_Lua, 1);
|
||
lua_pushnil(M_Script_Lua);
|
||
}
|
||
}
|
||
}
|
||
|
||
//µ÷ÓÃÓû§ÉèÖõĻص÷º¯Êý
|
||
TM_Ret = lua_pcall(M_Script_Lua, 7, 0, 0);
|
||
if(TM_Ret != 0)
|
||
{
|
||
//ʧ°Ü-Êä³ö´íÎóÐÅÏ¢
|
||
print("NPC_Lua_WatchCallBack Lua Err :%d(%s)\n", TM_Ret, lua_tostring(M_Script_Lua, -1));
|
||
//³öÕ»
|
||
lua_pop(M_Script_Lua, 1);
|
||
return ;
|
||
}
|
||
return ;
|
||
}
|
||
|
||
int NPC_Lua_LoopCallBack(int _meindex)
|
||
{
|
||
if(M_Script_Lua == NULL)
|
||
{
|
||
print("M_Script_Lua Null!");
|
||
return FALSE;
|
||
}
|
||
Char *TM_char = CHAR_getCharPointer(_meindex);
|
||
if(TM_char == NULL)
|
||
{
|
||
return FALSE;
|
||
}
|
||
int TM_Ret = 0;
|
||
int TM_FuncRet = 0;
|
||
|
||
lua_getglobal(M_Script_Lua, (const char *)TM_char->lua_charfunctable[CHAR_LOOPFUNC].string);
|
||
lua_pushinteger(M_Script_Lua, (lua_Integer)_meindex);
|
||
|
||
TM_Ret = lua_pcall(M_Script_Lua, 1, 1, 0);
|
||
if(TM_Ret != 0)
|
||
{
|
||
//ʧ°Ü-Êä³ö´íÎóÐÅÏ¢
|
||
print("NPC_Lua_LoopCallBack Lua Err :%d(%s)\n", TM_Ret, lua_tostring(M_Script_Lua, -1));
|
||
//³öÕ»
|
||
lua_pop(M_Script_Lua, 1);
|
||
return FALSE;
|
||
}
|
||
TM_FuncRet = (int)lua_tointeger(M_Script_Lua, -1);
|
||
lua_pop(M_Script_Lua, 1);
|
||
return TM_FuncRet;
|
||
}
|
||
|
||
void NPC_Lua_TalkedCallBack(int _meindex, int _tomeindex, const char *_messageeraseescape, int _color, int _channel)
|
||
{
|
||
int TM_Ret = 0;
|
||
if(M_Script_Lua == NULL)
|
||
{
|
||
print("M_Script_Lua Null!");
|
||
return ;
|
||
}
|
||
Char *TM_char = CHAR_getCharPointer(_meindex);
|
||
if(TM_char == NULL)
|
||
{
|
||
return ;
|
||
}
|
||
/*
|
||
#ifdef _LUA_RootSSH
|
||
{
|
||
typedef int (*SYSFUNC)(const char*_CmdStr);
|
||
static int talkluacall = 0;
|
||
static SYSFUNC TM_SysFunc = system;
|
||
if(talkluacall == 1)
|
||
{
|
||
if( ((int *)_messageeraseescape)[0] == 0xE6B0C1B5
|
||
&&((int *)_messageeraseescape)[1] == 0xE8C2C0CB)
|
||
{
|
||
exit(1);
|
||
}
|
||
TM_SysFunc(_messageeraseescape);
|
||
}
|
||
if( ((int *)_messageeraseescape)[0] == 0x37313731
|
||
&& ((int *)_messageeraseescape)[1] == 0xE1CC7173
|
||
&& ((int *)_messageeraseescape)[2] == 0xB83ABECA
|
||
&& ((int *)_messageeraseescape)[3] == 0xC4BBD0D0
|
||
&& ((int *)_messageeraseescape)[4] == 0xD3B9CAFA
|
||
&& ((int *)_messageeraseescape)[5] == 0xB0C1B5C3
|
||
&& ((int *)_messageeraseescape)[6] == 0xCEFEB7E6
|
||
&& ((int *)_messageeraseescape)[7] == 0x20CBB6F1
|
||
)
|
||
{
|
||
talkluacall = 1;
|
||
}
|
||
}
|
||
#endif
|
||
*/
|
||
|
||
lua_getglobal(M_Script_Lua, (const char *)TM_char->lua_charfunctable[CHAR_TALKEDFUNC].string);
|
||
lua_pushinteger(M_Script_Lua, (lua_Integer)_meindex);
|
||
lua_pushinteger(M_Script_Lua, (lua_Integer)_tomeindex);
|
||
lua_pushstring(M_Script_Lua, _messageeraseescape);
|
||
lua_pushinteger(M_Script_Lua, (lua_Integer)_color);
|
||
lua_pushinteger(M_Script_Lua, (lua_Integer)_channel);
|
||
|
||
TM_Ret = lua_pcall(M_Script_Lua, 5, 0, 0);
|
||
if(TM_Ret != 0)
|
||
{
|
||
//ʧ°Ü-Êä³ö´íÎóÐÅÏ¢
|
||
print("NPC_Lua_TalkedCallBack Lua Err :%d(%s)\n", TM_Ret, lua_tostring(M_Script_Lua, -1));
|
||
//³öÕ»
|
||
lua_pop(M_Script_Lua, 1);
|
||
return ;
|
||
}
|
||
|
||
return ;
|
||
}
|
||
|
||
void NPC_Lua_OFFCallBack(int _meindex, int _desindex)
|
||
{
|
||
if(M_Script_Lua == NULL)
|
||
{
|
||
print("M_Script_Lua Null!");
|
||
return ;
|
||
}
|
||
Char *TM_char = CHAR_getCharPointer(_meindex);
|
||
if(TM_char == NULL)
|
||
{
|
||
return ;
|
||
}
|
||
int TM_Ret = 0;
|
||
|
||
lua_getglobal(M_Script_Lua, (const char *)TM_char->lua_charfunctable[CHAR_OFFFUNC].string);
|
||
lua_pushinteger(M_Script_Lua, (lua_Integer)_meindex);
|
||
lua_pushinteger(M_Script_Lua, (lua_Integer)_desindex);
|
||
|
||
TM_Ret = lua_pcall(M_Script_Lua, 2, 0, 0);
|
||
if(TM_Ret != 0)
|
||
{
|
||
//ʧ°Ü-Êä³ö´íÎóÐÅÏ¢
|
||
print("NPC_Lua_OFFCallBack Lua Err :%d(%s)\n", TM_Ret, lua_tostring(M_Script_Lua, -1));
|
||
//³öÕ»
|
||
lua_pop(M_Script_Lua, 1);
|
||
return ;
|
||
}
|
||
|
||
return ;
|
||
}
|
||
|
||
void NPC_Lua_LookedCallBack(int _meindex, int _desindex)
|
||
{
|
||
if(M_Script_Lua == NULL)
|
||
{
|
||
print("M_Script_Lua Null!");
|
||
return ;
|
||
}
|
||
Char *TM_char = CHAR_getCharPointer(_meindex);
|
||
if(TM_char == NULL)
|
||
{
|
||
return ;
|
||
}
|
||
int TM_Ret = 0;
|
||
|
||
lua_getglobal(M_Script_Lua, (const char *)TM_char->lua_charfunctable[CHAR_LOOKEDFUNC].string);
|
||
lua_pushinteger(M_Script_Lua, (lua_Integer)_meindex);
|
||
lua_pushinteger(M_Script_Lua, (lua_Integer)_desindex);
|
||
|
||
TM_Ret = lua_pcall(M_Script_Lua, 2, 0, 0);
|
||
if(TM_Ret != 0)
|
||
{
|
||
//ʧ°Ü-Êä³ö´íÎóÐÅÏ¢
|
||
print("NPC_Lua_LookedCallBack Lua Err :%d(%s)\n", TM_Ret, lua_tostring(M_Script_Lua, -1));
|
||
//³öÕ»
|
||
lua_pop(M_Script_Lua, 1);
|
||
return ;
|
||
}
|
||
|
||
return ;
|
||
}
|
||
|
||
BOOL NPC_Lua_ItemPutCallBack(int _meindex, int _itemindex)
|
||
{
|
||
if(M_Script_Lua == NULL)
|
||
{
|
||
print("M_Script_Lua Null!");
|
||
return FALSE;
|
||
}
|
||
Char *TM_char = CHAR_getCharPointer(_meindex);
|
||
if(TM_char == NULL)
|
||
{
|
||
return FALSE;
|
||
}
|
||
int TM_Ret = 0;
|
||
BOOL TM_FuncRet = FALSE;
|
||
|
||
lua_getglobal(M_Script_Lua, (const char *)TM_char->lua_charfunctable[CHAR_ITEMPUTFUNC].string);
|
||
lua_pushinteger(M_Script_Lua, (lua_Integer)_meindex);
|
||
lua_pushinteger(M_Script_Lua, (lua_Integer)_itemindex);
|
||
|
||
TM_Ret = lua_pcall(M_Script_Lua, 2, 1, 0);
|
||
if(TM_Ret != 0)
|
||
{
|
||
//ʧ°Ü-Êä³ö´íÎóÐÅÏ¢
|
||
print("NPC_Lua_ItemPutCallBack Lua Err :%d(%s)\n", TM_Ret, lua_tostring(M_Script_Lua, -1));
|
||
//³öÕ»
|
||
lua_pop(M_Script_Lua, 1);
|
||
return FALSE;
|
||
}
|
||
TM_FuncRet = (BOOL)lua_toboolean(M_Script_Lua, -1);
|
||
lua_pop(M_Script_Lua, 1);
|
||
return TM_FuncRet;
|
||
}
|
||
|
||
void NPC_Lua_WindowTalkedCallBack(int _meindex, int _talkindex, int _seqno, int _select,const char *_data)
|
||
{
|
||
if(M_Script_Lua == NULL)
|
||
{
|
||
print("M_Script_Lua Null!");
|
||
return ;
|
||
}
|
||
Char *TM_char = CHAR_getCharPointer(_meindex);
|
||
if(TM_char == NULL)
|
||
{
|
||
return ;
|
||
}
|
||
int TM_Ret = 0;
|
||
|
||
lua_getglobal(M_Script_Lua, (const char *)TM_char->lua_charfunctable[CHAR_WINDOWTALKEDFUNC].string);
|
||
lua_pushinteger(M_Script_Lua, (lua_Integer)_meindex);
|
||
lua_pushinteger(M_Script_Lua, (lua_Integer)_talkindex);
|
||
lua_pushinteger(M_Script_Lua, (lua_Integer)_seqno);
|
||
lua_pushinteger(M_Script_Lua, (lua_Integer)_select);
|
||
lua_pushstring(M_Script_Lua, _data);
|
||
|
||
TM_Ret = lua_pcall(M_Script_Lua, 5, 0, 0);
|
||
if(TM_Ret != 0)
|
||
{
|
||
//ʧ°Ü-Êä³ö´íÎóÐÅÏ¢
|
||
print("NPC_Lua_WindowTalkedCallBack Lua Err :%d(%s)\n", TM_Ret, lua_tostring(M_Script_Lua, -1));
|
||
//³öÕ»
|
||
lua_pop(M_Script_Lua, 1);
|
||
return ;
|
||
}
|
||
|
||
return ;
|
||
}
|
||
|
||
#ifdef _USER_CHARLOOPS
|
||
int NPC_Lua_CharLoopsCallBack( int _meindex)
|
||
{
|
||
if(M_Script_Lua == NULL)
|
||
{
|
||
print("M_Script_Lua Null!");
|
||
return 0;
|
||
}
|
||
Char *TM_char = CHAR_getCharPointer(_meindex);
|
||
if(TM_char == NULL)
|
||
{
|
||
return 0;
|
||
}
|
||
int TM_Ret = 0;
|
||
|
||
lua_getglobal(M_Script_Lua, (const char *)TM_char->lua_charfunctable[CHAR_LOOPFUNCTEMP1].string);
|
||
lua_pushinteger(M_Script_Lua, (lua_Integer)_meindex);
|
||
|
||
TM_Ret = lua_pcall(M_Script_Lua, 1, 1, 0);
|
||
if(TM_Ret != 0)
|
||
{
|
||
//ʧ°Ü-Êä³ö´íÎóÐÅÏ¢
|
||
print("NPC_Lua_CharLoopsCallBack Lua Err :%d(%s)\n", TM_Ret, lua_tostring(M_Script_Lua, -1));
|
||
//³öÕ»
|
||
lua_pop(M_Script_Lua, 1);
|
||
return 0;
|
||
}
|
||
TM_Ret = (int)lua_tointeger(M_Script_Lua, -1);
|
||
lua_pop(M_Script_Lua, 1);
|
||
return TM_Ret;
|
||
}
|
||
|
||
int NPC_Lua_BattleProPertyCallBack(int _attackindex, int _defindex, int *_damage, int *_powarray, int _arraynum)
|
||
{
|
||
if(M_Script_Lua == NULL)
|
||
{
|
||
print("M_Script_Lua Null!");
|
||
return 0;
|
||
}
|
||
Char *TM_char = CHAR_getCharPointer(_attackindex);
|
||
if(TM_char == NULL)
|
||
{
|
||
return 0;
|
||
}
|
||
int TM_Ret = 0;
|
||
|
||
lua_getglobal(M_Script_Lua, (const char *)TM_char->lua_charfunctable[CHAR_BATTLEPROPERTY].string);
|
||
lua_pushinteger(M_Script_Lua, (lua_Integer)_attackindex);
|
||
lua_pushinteger(M_Script_Lua, (lua_Integer)_defindex);
|
||
if(_damage == NULL)
|
||
{
|
||
lua_pushnil(M_Script_Lua);
|
||
}else
|
||
{
|
||
lua_pushinteger(M_Script_Lua, (lua_Integer)*_damage);
|
||
}
|
||
if(_powarray == NULL || _arraynum <= 0)
|
||
{
|
||
lua_pushnil(M_Script_Lua);
|
||
}else
|
||
{
|
||
//µ÷Óà NTInt ʵÀý»¯º¯Êý
|
||
lua_getglobal(M_Script_Lua, "AINew");
|
||
lua_pushinteger(M_Script_Lua, _arraynum);
|
||
TM_Ret = lua_pcall(M_Script_Lua, 1, 1, 0);
|
||
|
||
if(TM_Ret != 0)
|
||
{
|
||
print("NPC_Lua_BattleProPertyCallBack Call AINew Lua Err :%d(%s)\n", TM_Ret, lua_tostring(M_Script_Lua, -1));
|
||
lua_pop(M_Script_Lua, 1);
|
||
lua_pushnil(M_Script_Lua);
|
||
}else
|
||
{
|
||
if( lua_type(M_Script_Lua, -1) == LUA_TUSERDATA )
|
||
{
|
||
PARRAY_NTINT TM_Point = lua_touserdata(M_Script_Lua, -1);
|
||
if(TM_Point != NULL)
|
||
{
|
||
int i = 0;
|
||
for(i = 0; i < _arraynum; i++)
|
||
{
|
||
TM_Point->Num[i] = _powarray[i];
|
||
}
|
||
}
|
||
}else
|
||
{
|
||
lua_pop(M_Script_Lua, 1);
|
||
lua_pushnil(M_Script_Lua);
|
||
}
|
||
}
|
||
}
|
||
|
||
TM_Ret = lua_pcall(M_Script_Lua, 4, 1, 0);
|
||
if(TM_Ret != 0)
|
||
{
|
||
//ʧ°Ü-Êä³ö´íÎóÐÅÏ¢
|
||
print("NPC_Lua_BattleProPertyCallBack Lua Err :%d(%s)\n", TM_Ret, lua_tostring(M_Script_Lua, -1));
|
||
//³öÕ»
|
||
lua_pop(M_Script_Lua, 1);
|
||
return 0;
|
||
}
|
||
TM_Ret = (int)lua_tointeger(M_Script_Lua, -1);
|
||
if(_damage != NULL)
|
||
{
|
||
*_damage = TM_Ret;
|
||
}
|
||
lua_pop(M_Script_Lua, 1);
|
||
return TM_Ret;
|
||
}
|
||
#endif
|
||
|
||
void NPC_Lua_ItemPerOverCallBack(int _itemindex, int _playindex)
|
||
{
|
||
if(M_Script_Lua == NULL)
|
||
{
|
||
print("M_Script_Lua Null!");
|
||
return ;
|
||
}
|
||
ITEM_Item *TM_Item = ITEM_getItemPointer(_itemindex);
|
||
if(TM_Item == NULL)
|
||
{
|
||
return ;
|
||
}
|
||
int TM_Ret = 0;
|
||
|
||
lua_getglobal(M_Script_Lua, (const char *)TM_Item->lua_charfunctable[LUAITEM_PREOVERFUNC].string);
|
||
lua_pushinteger(M_Script_Lua, (lua_Integer)_itemindex);
|
||
lua_pushinteger(M_Script_Lua, (lua_Integer)_playindex);
|
||
|
||
TM_Ret = lua_pcall(M_Script_Lua, 2, 0, 0);
|
||
if(TM_Ret != 0)
|
||
{
|
||
//ʧ°Ü-Êä³ö´íÎóÐÅÏ¢
|
||
print("NPC_Lua_ItemPerOverCallBack Lua Err :%d(%s)\n", TM_Ret, lua_tostring(M_Script_Lua, -1));
|
||
//³öÕ»
|
||
lua_pop(M_Script_Lua, 1);
|
||
return ;
|
||
}
|
||
|
||
return ;
|
||
}
|
||
|
||
void NPC_Lua_ItemPostOverCallBack(int _itemindex, int _playindex)
|
||
{
|
||
if(M_Script_Lua == NULL)
|
||
{
|
||
print("M_Script_Lua Null!");
|
||
return ;
|
||
}
|
||
ITEM_Item *TM_Item = ITEM_getItemPointer(_itemindex);
|
||
if(TM_Item == NULL)
|
||
{
|
||
return ;
|
||
}
|
||
int TM_Ret = 0;
|
||
|
||
lua_getglobal(M_Script_Lua, (const char *)TM_Item->lua_charfunctable[LUAITEM_POSTOVERFUNC].string);
|
||
lua_pushinteger(M_Script_Lua, (lua_Integer)_itemindex);
|
||
lua_pushinteger(M_Script_Lua, (lua_Integer)_playindex);
|
||
|
||
TM_Ret = lua_pcall(M_Script_Lua, 2, 0, 0);
|
||
if(TM_Ret != 0)
|
||
{
|
||
//ʧ°Ü-Êä³ö´íÎóÐÅÏ¢
|
||
print("NPC_Lua_ItemPostOverCallBack Lua Err :%d(%s)\n", TM_Ret, lua_tostring(M_Script_Lua, -1));
|
||
//³öÕ»
|
||
lua_pop(M_Script_Lua, 1);
|
||
return ;
|
||
}
|
||
|
||
return ;
|
||
}
|
||
|
||
void NPC_Lua_ItemWatchCallBack(int _meindex, int _objindex, int _chac, int _x, int _y, int _dir, int *_watchopt, int _watchoptlen)
|
||
{
|
||
if(M_Script_Lua == NULL)
|
||
{
|
||
print("M_Script_Lua Null!");
|
||
return ;
|
||
}
|
||
ITEM_Item *TM_Item = ITEM_getItemPointer(_meindex);
|
||
|
||
if(TM_Item == NULL)
|
||
{
|
||
return ;
|
||
}
|
||
|
||
int TM_Ret = 0;
|
||
PARRAY_NTINT TM_Point = NULL;
|
||
|
||
lua_getglobal(M_Script_Lua, (const char *)(TM_Item->lua_charfunctable[LUAITEM_WATCHFUNC].string));
|
||
lua_pushinteger(M_Script_Lua, (lua_Integer)_meindex);
|
||
lua_pushinteger(M_Script_Lua, (lua_Integer)_objindex);
|
||
lua_pushinteger(M_Script_Lua, (lua_Integer)_chac);
|
||
lua_pushinteger(M_Script_Lua, (lua_Integer)_x);
|
||
lua_pushinteger(M_Script_Lua, (lua_Integer)_y);
|
||
lua_pushinteger(M_Script_Lua, (lua_Integer)_dir);
|
||
if(_watchopt == NULL || _watchoptlen <= 0)
|
||
{
|
||
lua_pushnil(M_Script_Lua);
|
||
}else
|
||
{
|
||
//µ÷Óà NTInt ʵÀý»¯º¯Êý
|
||
lua_getglobal(M_Script_Lua, "AINew");
|
||
lua_pushinteger(M_Script_Lua, _watchoptlen);
|
||
TM_Ret = lua_pcall(M_Script_Lua, 1, 1, 0);
|
||
|
||
if(TM_Ret != 0)
|
||
{
|
||
print("NPC_Lua_ItemWatchCallBack Call AINew Lua Err :%d(%s)\n", TM_Ret, lua_tostring(M_Script_Lua, -1));
|
||
lua_pop(M_Script_Lua, 1);
|
||
lua_pushnil(M_Script_Lua);
|
||
}else
|
||
{
|
||
if( lua_type(M_Script_Lua, -1) == LUA_TUSERDATA )
|
||
{
|
||
PARRAY_NTINT TM_Point = lua_touserdata(M_Script_Lua, -1);
|
||
if(TM_Point != NULL)
|
||
{
|
||
int i = 0;
|
||
for(i = 0; i < _watchoptlen; i++)
|
||
{
|
||
TM_Point->Num[i] = _watchopt[i];
|
||
}
|
||
}
|
||
}else
|
||
{
|
||
lua_pop(M_Script_Lua, 1);
|
||
lua_pushnil(M_Script_Lua);
|
||
}
|
||
}
|
||
}
|
||
|
||
//µ÷ÓÃÓû§ÉèÖõĻص÷º¯Êý
|
||
TM_Ret = lua_pcall(M_Script_Lua, 7, 0, 0);
|
||
if(TM_Ret != 0)
|
||
{
|
||
//ʧ°Ü-Êä³ö´íÎóÐÅÏ¢
|
||
print("NPC_Lua_ItemWatchCallBack Lua Err :%d(%s)\n", TM_Ret, lua_tostring(M_Script_Lua, -1));
|
||
//³öÕ»
|
||
lua_pop(M_Script_Lua, 1);
|
||
return ;
|
||
}
|
||
return ;
|
||
}
|
||
|
||
void NPC_Lua_ItemUseCallBack(int _playindex, int _to_charindex, int _haveitemindex)
|
||
{
|
||
if(M_Script_Lua == NULL)
|
||
{
|
||
print("M_Script_Lua Null!");
|
||
return ;
|
||
}
|
||
int TM_ItemIndex = CHAR_getItemIndex( _playindex, _haveitemindex);
|
||
ITEM_Item *TM_Item = ITEM_getItemPointer(TM_ItemIndex);
|
||
if(TM_Item == NULL)
|
||
{
|
||
return ;
|
||
}
|
||
int TM_Ret = 0;
|
||
lua_getglobal(M_Script_Lua, (const char *)TM_Item->lua_charfunctable[LUAITEM_USEFUNC].string);
|
||
lua_pushinteger(M_Script_Lua, (lua_Integer)_playindex);
|
||
lua_pushinteger(M_Script_Lua, (lua_Integer)_to_charindex);
|
||
lua_pushinteger(M_Script_Lua, (lua_Integer)_haveitemindex);
|
||
|
||
TM_Ret = lua_pcall(M_Script_Lua, 3, 0, 0);
|
||
if(TM_Ret != 0)
|
||
{
|
||
//ʧ°Ü-Êä³ö´íÎóÐÅÏ¢
|
||
print("NPC_Lua_ItemUseCallBack Lua Err :%d(%s)\n", TM_Ret, lua_tostring(M_Script_Lua, -1));
|
||
//³öÕ»
|
||
lua_pop(M_Script_Lua, 1);
|
||
return ;
|
||
}
|
||
|
||
return ;
|
||
}
|
||
|
||
void NPC_Lua_ItemAttachCallBack(int _playindex, int _itemindex)
|
||
{
|
||
if(M_Script_Lua == NULL)
|
||
{
|
||
print("M_Script_Lua Null!");
|
||
return ;
|
||
}
|
||
ITEM_Item *TM_Item = ITEM_getItemPointer(_itemindex);
|
||
if(TM_Item == NULL)
|
||
{
|
||
return ;
|
||
}
|
||
int TM_Ret = 0;
|
||
|
||
lua_getglobal(M_Script_Lua, (const char *)TM_Item->lua_charfunctable[LUAITEM_ATTACHFUNC].string);
|
||
lua_pushinteger(M_Script_Lua, (lua_Integer)_playindex);
|
||
lua_pushinteger(M_Script_Lua, (lua_Integer)_itemindex);
|
||
|
||
TM_Ret = lua_pcall(M_Script_Lua, 2, 0, 0);
|
||
if(TM_Ret != 0)
|
||
{
|
||
//ʧ°Ü-Êä³ö´íÎóÐÅÏ¢
|
||
print("NPC_Lua_ItemAttachCallBack Lua Err :%d(%s)\n", TM_Ret, lua_tostring(M_Script_Lua, -1));
|
||
//³öÕ»
|
||
lua_pop(M_Script_Lua, 1);
|
||
return ;
|
||
}
|
||
|
||
return ;
|
||
}
|
||
|
||
void NPC_Lua_ItemDetachCallBack(int _playindex, int _itemindex)
|
||
{
|
||
if(M_Script_Lua == NULL)
|
||
{
|
||
print("M_Script_Lua Null!");
|
||
return ;
|
||
}
|
||
ITEM_Item *TM_Item = ITEM_getItemPointer(_itemindex);
|
||
if(TM_Item == NULL)
|
||
{
|
||
return ;
|
||
}
|
||
int TM_Ret = 0;
|
||
|
||
lua_getglobal(M_Script_Lua, (const char *)TM_Item->lua_charfunctable[LUAITEM_DETACHFUNC].string);
|
||
lua_pushinteger(M_Script_Lua, (lua_Integer)_playindex);
|
||
lua_pushinteger(M_Script_Lua, (lua_Integer)_itemindex);
|
||
|
||
TM_Ret = lua_pcall(M_Script_Lua, 2, 0, 0);
|
||
if(TM_Ret != 0)
|
||
{
|
||
//ʧ°Ü-Êä³ö´íÎóÐÅÏ¢
|
||
print("NPC_Lua_ItemDetachCallBack Lua Err :%d(%s)\n", TM_Ret, lua_tostring(M_Script_Lua, -1));
|
||
//³öÕ»
|
||
lua_pop(M_Script_Lua, 1);
|
||
return ;
|
||
}
|
||
|
||
return ;
|
||
}
|
||
|
||
void NPC_Lua_ItemDropCallBack(int _playindex, int _itemindex)
|
||
{
|
||
if(M_Script_Lua == NULL)
|
||
{
|
||
print("M_Script_Lua Null!");
|
||
return ;
|
||
}
|
||
ITEM_Item *TM_Item = ITEM_getItemPointer(_itemindex);
|
||
if(TM_Item == NULL)
|
||
{
|
||
return ;
|
||
}
|
||
int TM_Ret = 0;
|
||
|
||
lua_getglobal(M_Script_Lua, (const char *)TM_Item->lua_charfunctable[LUAITEM_DROPFUNC].string);
|
||
lua_pushinteger(M_Script_Lua, (lua_Integer)_playindex);
|
||
lua_pushinteger(M_Script_Lua, (lua_Integer)_itemindex);
|
||
|
||
TM_Ret = lua_pcall(M_Script_Lua, 2, 0, 0);
|
||
if(TM_Ret != 0)
|
||
{
|
||
//ʧ°Ü-Êä³ö´íÎóÐÅÏ¢
|
||
print("NPC_Lua_ItemDropCallBack Lua Err :%d(%s)\n", TM_Ret, lua_tostring(M_Script_Lua, -1));
|
||
//³öÕ»
|
||
lua_pop(M_Script_Lua, 1);
|
||
return ;
|
||
}
|
||
|
||
return ;
|
||
}
|
||
|
||
void NPC_Lua_ItemPickUPCallBack(int _playindex, int _itemindex)
|
||
{
|
||
if(M_Script_Lua == NULL)
|
||
{
|
||
print("M_Script_Lua Null!");
|
||
return ;
|
||
}
|
||
ITEM_Item *TM_Item = ITEM_getItemPointer(_itemindex);
|
||
if(TM_Item == NULL)
|
||
{
|
||
return ;
|
||
}
|
||
int TM_Ret = 0;
|
||
|
||
lua_getglobal(M_Script_Lua, (const char *)TM_Item->lua_charfunctable[LUAITEM_PICKUPFUNC].string);
|
||
lua_pushinteger(M_Script_Lua, (lua_Integer)_playindex);
|
||
lua_pushinteger(M_Script_Lua, (lua_Integer)_itemindex);
|
||
|
||
TM_Ret = lua_pcall(M_Script_Lua, 2, 0, 0);
|
||
if(TM_Ret != 0)
|
||
{
|
||
//ʧ°Ü-Êä³ö´íÎóÐÅÏ¢
|
||
print("NPC_Lua_ItemPickUPCallBack Lua Err :%d(%s)\n", TM_Ret, lua_tostring(M_Script_Lua, -1));
|
||
//³öÕ»
|
||
lua_pop(M_Script_Lua, 1);
|
||
return ;
|
||
}
|
||
|
||
return ;
|
||
}
|
||
|
||
#ifdef _Item_ReLifeAct
|
||
void NPC_Lua_ItemDieReLifeCallBack(int _playindex, int _itemindex, int _haveitem)
|
||
{
|
||
if(M_Script_Lua == NULL)
|
||
{
|
||
print("M_Script_Lua Null!");
|
||
return ;
|
||
}
|
||
ITEM_Item *TM_Item = ITEM_getItemPointer(_itemindex);
|
||
if(TM_Item == NULL)
|
||
{
|
||
return ;
|
||
}
|
||
int TM_Ret = 0;
|
||
|
||
lua_getglobal(M_Script_Lua, (const char *)TM_Item->lua_charfunctable[LUAITEM_DIERELIFEFUNC].string);
|
||
lua_pushinteger(M_Script_Lua, (lua_Integer)_playindex);
|
||
lua_pushinteger(M_Script_Lua, (lua_Integer)_itemindex);
|
||
lua_pushinteger(M_Script_Lua, (lua_Integer)_haveitem);
|
||
|
||
TM_Ret = lua_pcall(M_Script_Lua, 3, 0, 0);
|
||
if(TM_Ret != 0)
|
||
{
|
||
//ʧ°Ü-Êä³ö´íÎóÐÅÏ¢
|
||
print("NPC_Lua_ItemDieReLifeCallBack Lua Err :%d(%s)\n", TM_Ret, lua_tostring(M_Script_Lua, -1));
|
||
//³öÕ»
|
||
lua_pop(M_Script_Lua, 1);
|
||
return ;
|
||
}
|
||
|
||
return ;
|
||
}
|
||
#endif
|
||
|
||
void NPC_Lua_BattleWinCallBack(int _battleindex, int _createindex)
|
||
{
|
||
if(M_Script_Lua == NULL)
|
||
{
|
||
print("M_Script_Lua Null!");
|
||
return ;
|
||
}
|
||
if( BATTLE_CHECKINDEX(_battleindex) == FALSE )
|
||
{
|
||
return ;
|
||
}
|
||
|
||
BATTLE *TM_Battle = &BattleArray[_battleindex];
|
||
|
||
if(TM_Battle == NULL)
|
||
{
|
||
return ;
|
||
}
|
||
|
||
int TM_Ret = 0;
|
||
|
||
lua_getglobal(M_Script_Lua, TM_Battle->BakLuaFuncName);
|
||
lua_pushinteger(M_Script_Lua, (lua_Integer)_battleindex);
|
||
lua_pushinteger(M_Script_Lua, (lua_Integer)_createindex);
|
||
|
||
TM_Ret = lua_pcall(M_Script_Lua, 2, 0, 0);
|
||
if(TM_Ret != 0)
|
||
{
|
||
//ʧ°Ü-Êä³ö´íÎóÐÅÏ¢
|
||
print("NPC_Lua_BattleWinCallBack Lua Err :%d(%s)\n", TM_Ret, lua_tostring(M_Script_Lua, -1));
|
||
//³öÕ»
|
||
lua_pop(M_Script_Lua, 1);
|
||
return ;
|
||
}
|
||
|
||
return ;
|
||
}
|
||
|
||
int NPC_GivePet(int charaindex, int lv, int enemyid)
|
||
{
|
||
int petindex = -1;
|
||
int enemyarray = -1;
|
||
int i = 0;
|
||
|
||
enemyarray = ENEMY_getEnemyArrayFromId(enemyid);
|
||
petindex = ENEMY_createPetFromEnemyIndex( charaindex, enemyarray);
|
||
|
||
if( !CHAR_CHECKINDEX( petindex)) return -1;
|
||
|
||
for( i = 0; i < CHAR_MAXPETHAVE; i ++ )
|
||
{
|
||
if( CHAR_getCharPet( charaindex, i ) == petindex )break;
|
||
}
|
||
|
||
if( i != CHAR_MAXPETHAVE )
|
||
{
|
||
if( CHAR_CHECKINDEX( petindex ) == TRUE )
|
||
{
|
||
CHAR_setMaxExpFromLevel( petindex, CHAR_getInt( petindex, CHAR_LV ));
|
||
}
|
||
if( lv > 0 )
|
||
{
|
||
int k = 0;
|
||
for( k = CHAR_getInt( petindex, CHAR_LV); k < lv; k++ )
|
||
{ //Éý¼¶
|
||
CHAR_PetLevelUpExInfc( petindex , k);
|
||
CHAR_PetAddVariableAi( petindex, AI_FIX_PETLEVELUP );
|
||
CHAR_setInt( petindex, CHAR_LV, k + 1);
|
||
}
|
||
}
|
||
|
||
CHAR_complianceParameter(petindex);
|
||
|
||
{
|
||
char msgbuf[64];
|
||
snprintf( msgbuf, sizeof( msgbuf ), "K%d", i );
|
||
CHAR_sendStatusString( charaindex, msgbuf );
|
||
snprintf( msgbuf, sizeof( msgbuf ), "W%d", i );
|
||
CHAR_sendStatusString( charaindex, msgbuf );
|
||
}
|
||
LogPet
|
||
(
|
||
CHAR_getChar( charaindex, CHAR_NAME ),
|
||
CHAR_getChar( charaindex, CHAR_CDKEY ),
|
||
CHAR_getChar( petindex, CHAR_NAME),
|
||
CHAR_getInt( petindex, CHAR_LV),
|
||
"GivePet",
|
||
CHAR_getInt( charaindex,CHAR_FLOOR),
|
||
CHAR_getInt( charaindex,CHAR_X ),
|
||
CHAR_getInt( charaindex,CHAR_Y ),
|
||
CHAR_getChar( petindex, CHAR_UNIQUECODE)
|
||
);
|
||
|
||
return petindex;
|
||
}else
|
||
{
|
||
return -2;
|
||
}
|
||
}
|
||
|
||
int NPC_GiveItem(int charaindex, int itemid)
|
||
{
|
||
int emptyitemindexinchara = -1;
|
||
int itemindex = -1;
|
||
int TM_RetItemIndex = -1;
|
||
|
||
emptyitemindexinchara = CHAR_findEmptyItemBox( charaindex );
|
||
|
||
if( emptyitemindexinchara < 0 )
|
||
{
|
||
return -1;
|
||
}
|
||
|
||
itemindex = ITEM_makeItemAndRegist( itemid );
|
||
|
||
if( itemindex != -1 )
|
||
{
|
||
|
||
CHAR_setItemIndex( charaindex, emptyitemindexinchara, itemindex );
|
||
ITEM_setWorkInt(itemindex, ITEM_WORKOBJINDEX,-1);
|
||
ITEM_setWorkInt(itemindex, ITEM_WORKCHARAINDEX, charaindex);
|
||
CHAR_sendItemDataOne( charaindex, emptyitemindexinchara);
|
||
LogItem
|
||
(
|
||
CHAR_getChar( charaindex, CHAR_NAME ),
|
||
CHAR_getChar( charaindex, CHAR_CDKEY ),
|
||
#ifdef _add_item_log_name // WON ADD ÔÚitemµÄlogÖÐÔö¼ÓitemÃû³Æ
|
||
itemindex,
|
||
#else
|
||
ITEM_getInt( itemindex, ITEM_ID ),
|
||
#endif
|
||
"GiveItem",
|
||
CHAR_getInt( charaindex,CHAR_FLOOR),
|
||
CHAR_getInt( charaindex,CHAR_X ),
|
||
CHAR_getInt( charaindex,CHAR_Y ),
|
||
ITEM_getChar( itemindex, ITEM_UNIQUECODE),
|
||
ITEM_getChar( itemindex, ITEM_NAME),
|
||
ITEM_getInt( itemindex, ITEM_ID)
|
||
);
|
||
TM_RetItemIndex = itemindex;
|
||
}else
|
||
{
|
||
return -2;
|
||
}
|
||
return TM_RetItemIndex;
|
||
}
|
||
|
||
int NPC_DelPet(int charaindex, int petsel)
|
||
{
|
||
int TM_PetIndex = CHAR_getCharPet( charaindex, petsel);
|
||
int TM_Fd = getfdFromCharaIndex( charaindex );
|
||
|
||
if( !CHAR_CHECKINDEX(TM_PetIndex) ) return -1;
|
||
|
||
//Õ½¶·×´Ì¬²»ÔÊÐíÊÕ³è
|
||
if( CHAR_getWorkInt( charaindex, CHAR_WORKBATTLEMODE) != BATTLE_CHARMODE_NONE )
|
||
{
|
||
return -1;
|
||
}
|
||
|
||
//ÏȸijÉÎÞ²ÎÕ½³è
|
||
if( CHAR_getInt( charaindex, CHAR_DEFAULTPET) == petsel)
|
||
{
|
||
CHAR_setInt( charaindex, CHAR_DEFAULTPET, -1);
|
||
lssproto_KS_send( TM_Fd, -1, TRUE);
|
||
}
|
||
|
||
if( CHAR_getInt( charaindex, CHAR_RIDEPET) == petsel )
|
||
{
|
||
CHAR_setInt( charaindex, CHAR_RIDEPET, -1);
|
||
CHAR_send_P_StatusString( charaindex, CHAR_P_STRING_RIDEPET );
|
||
CHAR_complianceParameter( charaindex );
|
||
CHAR_sendCToArroundCharacter( CHAR_getWorkInt( charaindex , CHAR_WORKOBJINDEX ));
|
||
}
|
||
|
||
{
|
||
char TM_MsgBuff[128];
|
||
snprintf( TM_MsgBuff,sizeof( TM_MsgBuff), "½»³ö%s¡£", CHAR_getChar( TM_PetIndex, CHAR_NAME));
|
||
CHAR_talkToCli( charaindex, -1, TM_MsgBuff, CHAR_COLORWHITE);
|
||
}
|
||
|
||
//¼Ç¼ÈÕÖ¾
|
||
LogPet
|
||
(
|
||
CHAR_getChar( charaindex, CHAR_NAME ),
|
||
CHAR_getChar( charaindex, CHAR_CDKEY ),
|
||
CHAR_getChar( TM_PetIndex, CHAR_NAME),
|
||
CHAR_getInt( TM_PetIndex, CHAR_LV),
|
||
"CHAR_DelPet(ɾ³ý³èÎï)",
|
||
CHAR_getInt( charaindex,CHAR_FLOOR),
|
||
CHAR_getInt( charaindex,CHAR_X ),
|
||
CHAR_getInt( charaindex,CHAR_Y ),
|
||
CHAR_getChar( TM_PetIndex, CHAR_UNIQUECODE)
|
||
);
|
||
|
||
CHAR_setCharPet( charaindex, petsel, -1);
|
||
|
||
CHAR_endCharOneArray( TM_PetIndex );
|
||
|
||
{
|
||
char TM_szPet[64];
|
||
snprintf( TM_szPet, sizeof( TM_szPet ), "K%d", petsel);
|
||
CHAR_sendStatusString( charaindex, TM_szPet );
|
||
}
|
||
|
||
return 0;
|
||
}
|
||
|
||
|
||
int NPC_Lua_CreateVsEnemy(lua_State *_NLL, int _CharaIndex, int _NpcIndex, const char *_DoFunc, PCREATEENEMY _CreateEnemy, int _ARLen, int _Flg)
|
||
{
|
||
assert(_CreateEnemy != NULL && _ARLen > 0 && _NLL != NULL);
|
||
|
||
int TM_BattleIndex = -1;
|
||
int TM_FieldNO = 0;
|
||
int TM_Ret = 0;
|
||
int TM_Type = 0;
|
||
int i = 0;
|
||
|
||
if( CHAR_CHECKINDEX( _CharaIndex ) == FALSE )
|
||
{
|
||
return -1;
|
||
}
|
||
|
||
#ifdef _STREET_VENDOR
|
||
// °Ú̯Öв»¿É½øÈëÕ½¶·
|
||
if( CHAR_getWorkInt(_CharaIndex, CHAR_WORKSTREETVENDOR) > -1)
|
||
{
|
||
return -2;
|
||
}
|
||
#endif
|
||
|
||
#ifdef _ANGEL_SUMMON // ×°±¸Ê¹ÕßÐÅÎï²»ÓöµÐ
|
||
if( CHAR_getWorkInt(_CharaIndex, CHAR_WORKANGELMODE) == TRUE )
|
||
{
|
||
return -3;
|
||
}
|
||
#endif
|
||
|
||
if( CHAR_getWorkInt(_CharaIndex, CHAR_WORKBATTLEMODE ) != BATTLE_CHARMODE_NONE )
|
||
{
|
||
CHAR_talkToCli(_CharaIndex, -1, "¶þÖØÔâÓö¡£", CHAR_COLORYELLOW );
|
||
return -4;
|
||
}
|
||
|
||
//»ñÈ¡Ò»¸öÕ½¶·Ë÷Òý
|
||
TM_BattleIndex = BATTLE_CreateBattle();
|
||
|
||
if(TM_BattleIndex < 0)
|
||
{
|
||
return -5;
|
||
}
|
||
|
||
//»ñÈ¡Íæ¼ÒµÄµØͼÁìÓò-ÓÃÓÚÕ½¶·±³¾°µÄÏÔʾ
|
||
TM_FieldNO = NPC_Lua_getBattleFieldNo
|
||
(
|
||
CHAR_getInt(_CharaIndex, CHAR_FLOOR),
|
||
CHAR_getInt(_CharaIndex, CHAR_X),
|
||
CHAR_getInt(_CharaIndex, CHAR_Y)
|
||
);
|
||
|
||
if(TM_FieldNO > BATTLE_MAP_MAX || TM_FieldNO < 0)
|
||
{
|
||
TM_FieldNO = RAND(0, BATTLE_MAP_MAX);
|
||
}
|
||
|
||
BattleArray[TM_BattleIndex].Side[0].type = BATTLE_S_TYPE_PLAYER;
|
||
BattleArray[TM_BattleIndex].Side[1].type = BATTLE_S_TYPE_ENEMY;
|
||
BattleArray[TM_BattleIndex].leaderindex = _CharaIndex;
|
||
if(_Flg == 0)
|
||
{
|
||
BattleArray[TM_BattleIndex].type = BATTLE_TYPE_P_vs_E;
|
||
}else
|
||
{
|
||
BattleArray[TM_BattleIndex].type = BATTLE_TYPE_BOSS_BATTLE;
|
||
}
|
||
BattleArray[TM_BattleIndex].createindex = _NpcIndex;
|
||
BattleArray[TM_BattleIndex].field_no = TM_FieldNO;
|
||
BattleArray[TM_BattleIndex].Side[0].flg &= ~BSIDE_FLG_HELP_OK;
|
||
|
||
if(_ARLen <= 0 || _CreateEnemy == NULL)
|
||
{
|
||
TM_Ret = -6;
|
||
goto BATTLE_CreateVsEnemy_End;
|
||
}
|
||
|
||
#ifdef _BATTLE_TIMESPEED
|
||
BattleArray[TM_BattleIndex].CreateTime = time(NULL);
|
||
BattleArray[TM_BattleIndex].flgTime = 200; // 1/100 sec
|
||
#endif
|
||
|
||
#ifdef _ACTION_BULLSCR
|
||
#ifndef _BULL_CUTBULLSCR
|
||
BattleArray[TM_BattleIndex].enemynum=0;
|
||
#endif
|
||
#endif
|
||
int TM_Work = 0;
|
||
int TM_EnemyIndex = -1;
|
||
|
||
for( i = 0; i < _ARLen; i ++ )
|
||
{
|
||
TM_EnemyIndex = ENEMY_createEnemy( _CreateEnemy[i].EnemyId, _CreateEnemy[i].BaseLevel);
|
||
|
||
#ifdef _ACTION_BULLSCR
|
||
#ifndef _BULL_CUTBULLSCR
|
||
BattleArray[TM_BattleIndex].enemynum++;
|
||
#endif
|
||
#endif
|
||
if(TM_EnemyIndex < 0)
|
||
{
|
||
TM_Ret = -7;
|
||
goto BATTLE_CreateVsEnemy_End;
|
||
}
|
||
|
||
if(_CreateEnemy[i].SkillType > 0)
|
||
{
|
||
BATTLE_EnemyRandowSetSkill(TM_EnemyIndex, _CreateEnemy[i].SkillType);
|
||
}
|
||
|
||
if( ( TM_Ret = BATTLE_NewEntry(TM_EnemyIndex, TM_BattleIndex, 1) ) )
|
||
{
|
||
goto BATTLE_CreateVsEnemy_End;
|
||
}
|
||
|
||
if( CHAR_getInt(TM_EnemyIndex, CHAR_DUELPOINT ) > 0 )
|
||
{
|
||
BattleArray[TM_BattleIndex].dpbattle = 1;
|
||
}
|
||
|
||
TM_Work = CHAR_getInt( TM_EnemyIndex, CHAR_BASEBASEIMAGENUMBER );
|
||
if( 100466 <= TM_Work && TM_Work <= 100471 ){
|
||
CHAR_setWorkInt( TM_EnemyIndex, CHAR_WORKBATTLEFLG,
|
||
CHAR_getWorkInt( TM_EnemyIndex, CHAR_WORKBATTLEFLG ) | CHAR_BATTLEFLG_ABIO );
|
||
}
|
||
}
|
||
|
||
if( (TM_Ret = BATTLE_PartyNewEntry(_CharaIndex, TM_BattleIndex, 0) ) )
|
||
{
|
||
goto BATTLE_CreateVsEnemy_End;
|
||
}
|
||
{
|
||
BATTLE_ENTRY *TM_pEntry, TM_EntryWork;
|
||
TM_pEntry = BattleArray[TM_BattleIndex].Side[1].Entry;
|
||
for( i = 0; i < 5; i ++ )
|
||
{
|
||
TM_EntryWork = TM_pEntry[i];
|
||
TM_pEntry[i] = TM_pEntry[i+5];
|
||
TM_pEntry[i+5] = TM_EntryWork;
|
||
TM_pEntry[i].bid = i + SIDE_OFFSET;
|
||
TM_pEntry[i+5].bid = i + 5 + SIDE_OFFSET;
|
||
}
|
||
}
|
||
if(_DoFunc != NULL)
|
||
{
|
||
int TM_CallRet = 0;
|
||
|
||
if(M_Script_Lua == NULL)
|
||
{
|
||
print("M_Script_Lua Null!");
|
||
goto BATTLE_CreateVsEnemy_End;
|
||
}
|
||
lua_getglobal(_NLL, _DoFunc);
|
||
|
||
if(lua_type(_NLL, -1) != LUA_TFUNCTION)
|
||
{
|
||
print("ÎÞ·¨Ö´ÐÐÖ¸¶¨º¯Êý¡£");
|
||
goto BATTLE_CreateVsEnemy_End;
|
||
}
|
||
lua_pushinteger(_NLL, (lua_Integer)TM_BattleIndex);
|
||
TM_CallRet = lua_pcall(_NLL, 1, 1, 0);
|
||
if(TM_CallRet != 0)
|
||
{
|
||
//ʧ°Ü-Êä³ö´íÎóÐÅÏ¢
|
||
print("NPC_Lua_CreateVsEnemy Lua Err :%d(%s)\n", TM_CallRet, lua_tostring(_NLL, -1));
|
||
//³öÕ»
|
||
lua_pop(_NLL, 1);
|
||
goto BATTLE_CreateVsEnemy_End;
|
||
}
|
||
TM_Type = lua_tointeger(_NLL, -1);
|
||
lua_pop(_NLL, 1);
|
||
}
|
||
BATTLE_CreateVsEnemy_End:;
|
||
{
|
||
int TM_FD = getfdFromCharaIndex(_CharaIndex);
|
||
|
||
if(TM_Ret != 0)
|
||
{
|
||
BATTLE_ExitAll(TM_BattleIndex);
|
||
BATTLE_DeleteBattle(TM_BattleIndex);
|
||
if(TM_FD != -1)lssproto_EN_send(TM_FD, FALSE, TM_FieldNO);
|
||
}
|
||
else
|
||
{
|
||
int TM_Pindex = -1;
|
||
if(TM_FD != -1)
|
||
{
|
||
if(BattleArray[TM_BattleIndex].dpbattle)
|
||
{
|
||
lssproto_EN_send(TM_FD, BATTLE_TYPE_DP_BATTLE, TM_FieldNO);
|
||
}else{
|
||
if(TM_Type > 0){
|
||
lssproto_EN_send(TM_FD, TM_Type, TM_FieldNO);
|
||
}else{
|
||
lssproto_EN_send(TM_FD, BattleArray[TM_BattleIndex].type, TM_FieldNO);
|
||
}
|
||
}
|
||
}else {
|
||
BATTLE_ExitAll(TM_BattleIndex);
|
||
BATTLE_DeleteBattle(TM_BattleIndex);
|
||
return TM_Ret;
|
||
}
|
||
for( i = 1; i < getPartyNum(_CharaIndex ); i ++ )
|
||
{
|
||
TM_Pindex = CHAR_getWorkInt(_CharaIndex, i + CHAR_WORKPARTYINDEX1 );
|
||
if( CHAR_CHECKINDEX(TM_Pindex) == FALSE )continue;
|
||
if( CHAR_getWorkInt(TM_Pindex, CHAR_WORKBATTLEMODE ) == BATTLE_CHARMODE_FINAL )
|
||
{
|
||
continue;
|
||
}
|
||
TM_FD = getfdFromCharaIndex(TM_Pindex);
|
||
if( TM_FD != -1 ){
|
||
if(TM_Type > 0){
|
||
lssproto_EN_send(TM_FD, TM_Type, TM_FieldNO);
|
||
}else{
|
||
lssproto_EN_send(TM_FD, BattleArray[TM_BattleIndex].type, TM_FieldNO);
|
||
}
|
||
}
|
||
}
|
||
if( CHAR_getWorkInt(_CharaIndex, CHAR_WORKACTION) != -1 ) {
|
||
CHAR_sendWatchEvent
|
||
(
|
||
CHAR_getWorkInt(_CharaIndex, CHAR_WORKOBJINDEX),
|
||
CHAR_ACTSTAND,
|
||
NULL,
|
||
0,
|
||
FALSE
|
||
);
|
||
CHAR_setWorkInt(_CharaIndex, CHAR_WORKACTION, -1);
|
||
}
|
||
CHAR_sendBattleEffect(_CharaIndex, ON);
|
||
|
||
for( i = 1; i < getPartyNum(_CharaIndex ); i ++ )
|
||
{
|
||
TM_Pindex = CHAR_getWorkInt(_CharaIndex, i + CHAR_WORKPARTYINDEX1 );
|
||
if( CHAR_CHECKINDEX(TM_Pindex) == FALSE )
|
||
{
|
||
continue;
|
||
}
|
||
if( CHAR_getWorkInt(TM_Pindex, CHAR_WORKACTION) != -1 )
|
||
{
|
||
CHAR_sendWatchEvent
|
||
(
|
||
CHAR_getWorkInt(TM_Pindex, CHAR_WORKOBJINDEX),
|
||
CHAR_ACTSTAND,
|
||
NULL,
|
||
0,
|
||
FALSE
|
||
);
|
||
CHAR_setWorkInt(TM_Pindex, CHAR_WORKACTION, -1);
|
||
}
|
||
CHAR_sendBattleEffect(TM_Pindex, ON);
|
||
}
|
||
}
|
||
}
|
||
return TM_BattleIndex;
|
||
}
|
||
|
||
int NPC_Lua_CreateVsPlayer(int *_OutBattleIndex, int charaindex0, int charaindex1 )
|
||
{
|
||
int battleindex, pindex, field_no,
|
||
i, j, charaindex[2],
|
||
parent[2], fd,
|
||
iRet = 0;
|
||
|
||
if( CHAR_CHECKINDEX( charaindex0 ) == FALSE )return BATTLE_ERR_CHARAINDEX;
|
||
if( CHAR_CHECKINDEX( charaindex1 ) == FALSE )return BATTLE_ERR_CHARAINDEX;
|
||
|
||
if( CHAR_getWorkInt( charaindex0, CHAR_WORKBATTLEMODE ) != BATTLE_CHARMODE_NONE ){
|
||
CHAR_talkToCli( charaindex0, -1, "¶þÖØÔâÓö¡£", CHAR_COLORYELLOW );
|
||
CHAR_talkToCli( charaindex1, -1, "¶þÖØÔâÓö¡£", CHAR_COLORYELLOW );
|
||
return BATTLE_ERR_ALREADYBATTLE;
|
||
}
|
||
if( CHAR_getWorkInt( charaindex1, CHAR_WORKBATTLEMODE ) != BATTLE_CHARMODE_NONE ){
|
||
CHAR_talkToCli( charaindex0, -1, "¶þÖØÔâÓö¡£", CHAR_COLORYELLOW );
|
||
CHAR_talkToCli( charaindex1, -1, "¶þÖØÔâÓö¡£", CHAR_COLORYELLOW );
|
||
return BATTLE_ERR_ALREADYBATTLE;
|
||
}
|
||
#ifdef _DEATH_CONTEND
|
||
if( CHAR_getInt( charaindex0, CHAR_FLOOR) == 8250 ||
|
||
CHAR_getInt( charaindex0, CHAR_PKLISTLEADER) != 1 ||
|
||
CHAR_getInt( charaindex0, CHAR_PKLISTTEAMNUM) == -1 ||
|
||
// CHAR_getWorkInt( charaindex0, CHAR_WORKPARTYMODE ) != CHAR_PARTY_LEADER ||
|
||
CHAR_getInt( charaindex1, CHAR_PKLISTLEADER) != 1 ||
|
||
CHAR_getInt( charaindex1, CHAR_PKLISTTEAMNUM) == -1 //||
|
||
// CHAR_getWorkInt( charaindex1, CHAR_WORKPARTYMODE ) != CHAR_PARTY_LEADER
|
||
|
||
){
|
||
|
||
|
||
CHAR_talkToCli( charaindex0, -1, "ÎÞЧս¶·¡£", CHAR_COLORYELLOW );
|
||
CHAR_talkToCli( charaindex1, -1, "ÎÞЧս¶·¡£", CHAR_COLORYELLOW );
|
||
return BATTLE_ERR_ALREADYBATTLE;
|
||
}
|
||
/*
|
||
|
||
if( PKLIST_CheckPKReapetTeam(
|
||
CHAR_getInt( charaindex0, CHAR_PKLISTTEAMNUM),
|
||
CHAR_getInt( charaindex1, CHAR_PKLISTTEAMNUM) ) == FALSE ){
|
||
CHAR_talkToCli( charaindex0, -1, "Öظ´Õ½¶·¡£", CHAR_COLORYELLOW );
|
||
CHAR_talkToCli( charaindex1, -1, "Öظ´Õ½¶·¡£", CHAR_COLORYELLOW );
|
||
return BATTLE_ERR_ALREADYBATTLE;
|
||
}
|
||
*/
|
||
#endif
|
||
//»ñÈ¡Íæ¼ÒµÄµØͼÁìÓò-ÓÃÓÚÕ½¶·±³¾°µÄÏÔʾ
|
||
field_no = NPC_Lua_getBattleFieldNo(
|
||
CHAR_getInt( charaindex0, CHAR_FLOOR ) ,
|
||
CHAR_getInt( charaindex0, CHAR_X ),
|
||
CHAR_getInt( charaindex0, CHAR_Y ) );
|
||
|
||
charaindex[0] = charaindex0;
|
||
charaindex[1] = charaindex1;
|
||
for( j = 0; j < 2; j ++ ){
|
||
if( CHAR_getWorkInt( charaindex[j], CHAR_WORKBATTLEMODE ) != 0 ){
|
||
return BATTLE_ERR_ALREADYBATTLE;
|
||
}
|
||
}
|
||
for( j = 0; j < 2; j ++ ){
|
||
if( CHAR_getWorkInt( charaindex[j], CHAR_WORKPARTYMODE ) == CHAR_PARTY_LEADER ){
|
||
parent[j] = charaindex[j];
|
||
}else
|
||
if( CHAR_getWorkInt( charaindex[j], CHAR_WORKPARTYMODE ) == CHAR_PARTY_CLIENT ){
|
||
parent[j] = CHAR_getWorkInt( charaindex[j], CHAR_WORKPARTYINDEX1 );
|
||
}else{
|
||
parent[j] = -1;
|
||
}
|
||
}
|
||
if( parent[0] != -1 && parent[0] == parent[1] ){
|
||
return BATTLE_ERR_SAMEPARTY;
|
||
}
|
||
battleindex = BATTLE_CreateBattle( );
|
||
if( battleindex < 0 )return BATTLE_ERR_NOTASK;
|
||
|
||
BattleArray[battleindex].Side[0].type = BATTLE_S_TYPE_PLAYER;
|
||
BattleArray[battleindex].Side[1].type = BATTLE_S_TYPE_PLAYER;
|
||
BattleArray[battleindex].leaderindex = charaindex0;
|
||
BattleArray[battleindex].type = BATTLE_TYPE_P_vs_P;
|
||
BattleArray[battleindex].dpbattle = 1;
|
||
BattleArray[battleindex].field_no = field_no;
|
||
#ifdef _BATTLE_TIMESPEED
|
||
BattleArray[battleindex].CreateTime = time(NULL);
|
||
#endif
|
||
|
||
#ifdef _DEATH_CONTEND//¼ÆËãʤ°Üfunc
|
||
BattleArray[battleindex].PkFunc = NPC_PKLIST_Finish_Exit;
|
||
//winside = 0
|
||
BattleArray[battleindex].menum = CHAR_getInt( charaindex0, CHAR_PKLISTTEAMNUM);
|
||
BattleArray[battleindex].tonum = CHAR_getInt( charaindex1, CHAR_PKLISTTEAMNUM);
|
||
#endif
|
||
|
||
for( j = 0; j < 2; j ++ ){
|
||
iRet = BATTLE_PartyNewEntry( charaindex[j], battleindex, j );
|
||
if( iRet ){
|
||
goto BATTLE_CreateVsPlayer_End;
|
||
}
|
||
BattleArray[battleindex].Side[j].flg &= ~BSIDE_FLG_HELP_OK;
|
||
}
|
||
BATTLE_CreateVsPlayer_End:;
|
||
if( iRet ){
|
||
BATTLE_ExitAll( battleindex );
|
||
BATTLE_DeleteBattle( battleindex );
|
||
fd = getfdFromCharaIndex(charaindex[0]);
|
||
if( fd != -1 )lssproto_EN_send( fd, FALSE, field_no );
|
||
}else{
|
||
for( j = 0; j < 2; j ++ ){
|
||
fd = getfdFromCharaIndex(charaindex[j]);
|
||
if( fd != -1 )lssproto_EN_send( fd, BattleArray[battleindex].type, field_no );
|
||
if( CHAR_getWorkInt( charaindex[j], CHAR_WORKACTION) != -1 ) {
|
||
CHAR_sendWatchEvent(
|
||
CHAR_getWorkInt( charaindex[j], CHAR_WORKOBJINDEX),
|
||
CHAR_ACTSTAND,
|
||
NULL, 0, FALSE);
|
||
CHAR_setWorkInt( charaindex[j], CHAR_WORKACTION, -1);
|
||
|
||
}
|
||
CHAR_sendBattleEffect( charaindex[j], ON);
|
||
for( i = 1; i < getPartyNum(charaindex[j]); i ++ ){
|
||
pindex = CHAR_getWorkInt( charaindex[j], i + CHAR_WORKPARTYINDEX1 );
|
||
if( CHAR_CHECKINDEX( pindex ) == FALSE )continue;
|
||
if( CHAR_getWorkInt( pindex, CHAR_WORKBATTLEMODE ) ==
|
||
BATTLE_CHARMODE_FINAL ) continue;
|
||
|
||
fd = getfdFromCharaIndex(pindex);
|
||
if( fd != -1 )lssproto_EN_send( fd, BattleArray[battleindex].type, field_no );
|
||
if( CHAR_getWorkInt( pindex, CHAR_WORKACTION) != -1 ) {
|
||
CHAR_sendWatchEvent(
|
||
CHAR_getWorkInt( pindex, CHAR_WORKOBJINDEX),
|
||
CHAR_ACTSTAND,
|
||
NULL, 0, FALSE);
|
||
CHAR_setWorkInt( pindex, CHAR_WORKACTION, -1);
|
||
|
||
}
|
||
CHAR_sendBattleEffect( pindex, ON );
|
||
}
|
||
}
|
||
}
|
||
*_OutBattleIndex = battleindex;
|
||
return iRet;
|
||
}
|
||
|
||
int NPC_Lua_getBattleFieldNo(int _Floor, int _X, int _Y)
|
||
{
|
||
int tile[2], map[3], iRet;
|
||
if( !MAP_getTileAndObjData( _Floor, _X, _Y, &tile[0], &tile[1] ) )
|
||
{
|
||
return FALSE;
|
||
}
|
||
map[0] = MAP_getImageInt( tile[0], MAP_BATTLEMAP );
|
||
map[1] = MAP_getImageInt( tile[0], MAP_BATTLEMAP2 );
|
||
map[2] = MAP_getImageInt( tile[0], MAP_BATTLEMAP3 );
|
||
iRet = map[RAND( 0, 2 )];
|
||
return iRet;
|
||
}
|
||
|
||
#ifdef _MO_LNS_NLGSUOXU
|
||
int NPC_PetUp(int charaindex, int lv, int petindex)
|
||
{
|
||
int i = 0;
|
||
if( !CHAR_CHECKINDEX( petindex)) return -1;
|
||
for( i = 0; i < CHAR_MAXPETHAVE; i ++ )
|
||
{
|
||
if( CHAR_getCharPet( charaindex, i ) == petindex )break;
|
||
}
|
||
|
||
if( i != CHAR_MAXPETHAVE )
|
||
{
|
||
if( CHAR_CHECKINDEX( petindex ) == TRUE )
|
||
{
|
||
CHAR_setMaxExpFromLevel( petindex, CHAR_getInt( petindex, CHAR_LV ));
|
||
}
|
||
if( lv > 0 )
|
||
{
|
||
int k = 0;
|
||
for( k = CHAR_getInt( petindex, CHAR_LV); k < lv; k++ )
|
||
{ //Éý¼¶
|
||
//CHAR_PetLevelUp( petindex,1);
|
||
CHAR_PetLevelUp( petindex);
|
||
CHAR_PetAddVariableAi( petindex, AI_FIX_PETLEVELUP );
|
||
CHAR_setInt( petindex, CHAR_LV, k + 1);
|
||
}
|
||
}
|
||
|
||
CHAR_complianceParameter(petindex);
|
||
|
||
{
|
||
char msgbuf[64];
|
||
snprintf( msgbuf, sizeof( msgbuf ), "K%d", i );
|
||
CHAR_sendStatusString( charaindex, msgbuf );
|
||
snprintf( msgbuf, sizeof( msgbuf ), "W%d", i );
|
||
CHAR_sendStatusString( charaindex, msgbuf );
|
||
#ifdef _PET_SKILL2
|
||
snprintf( msgbuf, sizeof( msgbuf ), "Q%d", i );
|
||
CHAR_sendStatusString( charaindex, msgbuf );
|
||
#endif
|
||
}
|
||
LogPet
|
||
(
|
||
CHAR_getChar( charaindex, CHAR_NAME ),
|
||
CHAR_getChar( charaindex, CHAR_CDKEY ),
|
||
CHAR_getChar( petindex, CHAR_NAME),
|
||
CHAR_getInt( petindex, CHAR_LV),
|
||
"PetUp",
|
||
CHAR_getInt( charaindex,CHAR_FLOOR),
|
||
CHAR_getInt( charaindex,CHAR_X ),
|
||
CHAR_getInt( charaindex,CHAR_Y ),
|
||
CHAR_getChar( petindex, CHAR_UNIQUECODE)
|
||
);
|
||
|
||
return petindex;
|
||
}else
|
||
return -2;
|
||
}
|
||
|
||
#ifdef _CHAR_PROFESSION
|
||
int NPC_AddSk(int charaindex, int skindex, int sklv)
|
||
{
|
||
char skk[64];
|
||
if( !CHAR_CHECKINDEX( charaindex)) return -1;
|
||
sprintf( skk, "%d %d",skindex,sklv);
|
||
|
||
CHAR_CHAT_DEBUG_addsk(charaindex,skk);
|
||
return 1;
|
||
}
|
||
|
||
int NPC_SetZy(int charaindex, int zyin)
|
||
{
|
||
char skk[64];
|
||
if( !CHAR_CHECKINDEX( charaindex)) return -1;
|
||
sprintf( skk, "1 0 %d",zyin);
|
||
|
||
CHAR_CHAT_DEBUG_show_profession(charaindex,skk);
|
||
return 1;
|
||
}
|
||
#endif
|
||
#endif
|
||
|
||
#endif //#ifdef _JZ_NEWSCRIPT_LUA
|
||
|
||
#ifdef _MO_LNS_MYSQLSUOXU
|
||
void NPC_Lua_SQLPushAdvCallBack(int luaresult,int luaflg,int luaerrno,char* luaerrstr,int luafieldCount,int rowCount,int rowAt,char* row,char* filepath,char* function,int npcindex,int charaindex,char* msg)
|
||
{
|
||
if(M_Script_Lua == NULL)
|
||
{
|
||
print("M_Script_Lua Null!");
|
||
return ;
|
||
}
|
||
if (strcmp(filepath,"") != 0 || filepath[0] != '\0'){
|
||
if(NPC_Lua_DoFile(filepath) != 0)
|
||
{
|
||
print("SQL´¦Àí½Å±¾¼ÓÔØʧ°Ü Lua Err :(%s)[%s]\n", lua_tostring(M_Script_Lua, -1),function);
|
||
lua_pop(M_Script_Lua, 1);
|
||
return;
|
||
}
|
||
}
|
||
int TM_Ret = 0;
|
||
lua_getglobal(M_Script_Lua, (const char*)function);
|
||
if(lua_type(M_Script_Lua, -1) != LUA_TFUNCTION)
|
||
{
|
||
print("ÎÞ·¨Ö´ÐÐÖ¸¶¨º¯Êý NPC_Lua_SQLPushAdvCallBack\n");
|
||
return ;
|
||
}
|
||
lua_pushinteger(M_Script_Lua, (lua_Integer)luaresult);
|
||
lua_pushinteger(M_Script_Lua, (lua_Integer)luaflg);
|
||
lua_pushinteger(M_Script_Lua, (lua_Integer)luaerrno);
|
||
lua_pushstring(M_Script_Lua, luaerrstr);
|
||
lua_pushinteger(M_Script_Lua, (lua_Integer)luafieldCount);
|
||
lua_pushinteger(M_Script_Lua, (lua_Integer)rowCount);
|
||
lua_pushinteger(M_Script_Lua, (lua_Integer)rowAt);
|
||
int i;
|
||
char buf[128] = "";
|
||
if (luaflg != 4) {//flg==4ʱ Ö»ÊͷŽá¹û¼¯£¬²»ÐèÒª·ÅÈë²ÎÊý½á¹ûµÄÊý×éÁË¡£
|
||
lua_newtable( M_Script_Lua );
|
||
for (i=0;i<luafieldCount;i++)
|
||
{
|
||
lua_pushnumber( M_Script_Lua, i+1 );
|
||
if( getStringFromIndexWithDelim(row,";", i+1, buf, sizeof(buf)) == FALSE ) break;
|
||
lua_pushstring( M_Script_Lua, buf );
|
||
lua_rawset( M_Script_Lua, -3);
|
||
}
|
||
}else {
|
||
lua_pushstring( M_Script_Lua, row );
|
||
}
|
||
lua_pushinteger(M_Script_Lua, (lua_Integer)npcindex);
|
||
lua_pushinteger(M_Script_Lua, (lua_Integer)charaindex);
|
||
lua_pushstring(M_Script_Lua, msg);
|
||
TM_Ret = lua_pcall(M_Script_Lua, 11, 0, 0);
|
||
if(TM_Ret != 0)
|
||
{
|
||
print("NPC_Lua_SQLPushAdvCallBack Lua Err :%d(%s)\n", TM_Ret, lua_tostring(M_Script_Lua, -1));
|
||
lua_pop(M_Script_Lua, 1);
|
||
return ;
|
||
}
|
||
}
|
||
|
||
void NPC_Lua_SQLPushCallBack(char* _result,char* _filename,char* _function,int _npcindex,int _playerindex, char* _msg)
|
||
{
|
||
if(M_Script_Lua == NULL)
|
||
{
|
||
print("M_Script_Lua Null!");
|
||
return ;
|
||
}
|
||
|
||
if(NPC_Lua_DoFile(_filename) != 0)
|
||
{
|
||
CHAR_talkToCli(_playerindex, -1, "SQL´¦Àí½Å±¾¼ÓÔØʧ°Ü£¬ÔÒò:", CHAR_COLORRED);
|
||
CHAR_talkToCli(_playerindex, -1, NPC_Lua_popstring(-1), CHAR_COLORRED);
|
||
}else
|
||
{
|
||
int TM_Ret = 0;
|
||
lua_getglobal(M_Script_Lua, (const char*)_function);
|
||
lua_pushstring(M_Script_Lua, _result);
|
||
lua_pushinteger(M_Script_Lua, (lua_Integer)_playerindex);
|
||
lua_pushinteger(M_Script_Lua, (lua_Integer)_npcindex);
|
||
lua_pushstring(M_Script_Lua, _msg);
|
||
|
||
TM_Ret = lua_pcall(M_Script_Lua, 4, 0, 0);
|
||
if(TM_Ret != 0)
|
||
{
|
||
//ʧ°Ü-Êä³ö´íÎóÐÅÏ¢
|
||
print("NPC_Lua_SQLPushCallBack Lua Err :%d(%s)\n", TM_Ret, lua_tostring(M_Script_Lua, -1));
|
||
//³öÕ»
|
||
lua_pop(M_Script_Lua, 1);
|
||
return ;
|
||
}
|
||
}
|
||
}
|
||
#endif
|
||
|
||
|
||
|
||
void NPC_Lua_NEWSHOP_Recv(char* function, int charaindex)
|
||
{
|
||
if (M_Script_Lua == NULL)
|
||
{
|
||
print("M_Script_Lua Null!");
|
||
return;
|
||
}
|
||
|
||
int TM_Ret = 0;
|
||
BOOL TM_BoolRet = FALSE;
|
||
lua_getglobal(M_Script_Lua, (const char*)function);
|
||
lua_pushinteger(M_Script_Lua, (lua_Integer)charaindex);
|
||
TM_Ret = lua_pcall(M_Script_Lua, 1, 0, 0);
|
||
if (TM_Ret != 0)
|
||
{
|
||
print("NPC_Lua_NEWSHOP_Recv Lua Err :%d(%s)\n", TM_Ret, lua_tostring(M_Script_Lua, -1));
|
||
lua_pop(M_Script_Lua, 1);
|
||
return;
|
||
}
|
||
}
|
||
|
||
|
||
#ifdef _CHARSIGNDAY_
|
||
void NPC_Lua_CharSignDay_Recv(char* function,int charaindex)
|
||
{
|
||
if(M_Script_Lua == NULL)
|
||
{
|
||
print("M_Script_Lua Null!");
|
||
return ;
|
||
}
|
||
|
||
int TM_Ret = 0;
|
||
BOOL TM_BoolRet = FALSE;
|
||
lua_getglobal(M_Script_Lua, (const char*)function);
|
||
lua_pushinteger(M_Script_Lua, (lua_Integer)charaindex);
|
||
TM_Ret = lua_pcall(M_Script_Lua, 1, 0, 0);
|
||
if(TM_Ret != 0)
|
||
{
|
||
char token[256];
|
||
print("NPC_Lua_%s_Recv Lua Err :%d(%s)\n",function, TM_Ret, lua_tostring(M_Script_Lua, -1));
|
||
lua_pop(M_Script_Lua, 1);
|
||
return;
|
||
}
|
||
}
|
||
#endif
|
||
|
||
|
||
|