LuaInterface.cpp 90 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646
  1. /*
  2. EQ2Emulator: Everquest II Server Emulator
  3. Copyright (C) 2007 EQ2EMulator Development Team (http://www.eq2emulator.net)
  4. This file is part of EQ2Emulator.
  5. EQ2Emulator is free software: you can redistribute it and/or modify
  6. it under the terms of the GNU General Public License as published by
  7. the Free Software Foundation, either version 3 of the License, or
  8. (at your option) any later version.
  9. EQ2Emulator is distributed in the hope that it will be useful,
  10. but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. GNU General Public License for more details.
  13. You should have received a copy of the GNU General Public License
  14. along with EQ2Emulator. If not, see <http://www.gnu.org/licenses/>.
  15. */
  16. #include "LuaInterface.h"
  17. #include "LuaFunctions.h"
  18. #include "WorldDatabase.h"
  19. #include "SpellProcess.h"
  20. #include "../common/Log.h"
  21. #include "World.h"
  22. #ifndef WIN32
  23. #include <stdio.h>
  24. #include <sys/types.h>
  25. #include <sys/stat.h>
  26. #include <dirent.h>
  27. #include <pthread.h>
  28. #else
  29. #include <process.h>
  30. #endif
  31. extern WorldDatabase database;
  32. extern ZoneList zone_list;
  33. LuaInterface::LuaInterface() {
  34. shutting_down = false;
  35. lua_system_reloading = false;
  36. MDebugClients.SetName("LuaInterface::MDebugClients");
  37. MSpells.SetName("LuaInterface::MSpells");
  38. MSpawnScripts.SetName("LuaInterface::MSpawnScripts");
  39. MZoneScripts.SetName("LuaInterface::MZoneScripts");
  40. MQuests.SetName("LuaInterface::MQuests");
  41. MLUAUserData.SetName("LuaInterface::MLUAUserData");
  42. MLUAMain.SetName("LuaInterface::MLUAMain");
  43. MItemScripts.SetName("LuaInterface::MItemScripts");
  44. MSpellDelete.SetName("LuaInterface::MSpellDelete");
  45. MCustomSpell.SetName("LuaInterface::MCustomSpell");
  46. MRegionScripts.SetName("LuaInterface::MRegionScripts");
  47. user_data_timer = new Timer(20000);
  48. user_data_timer->Start();
  49. spell_delete_timer = new Timer(5000);
  50. spell_delete_timer->Start();
  51. }
  52. #ifdef WIN32
  53. vector<string>* LuaInterface::GetDirectoryListing(const char* directory) {
  54. vector<string>* ret = new vector<string>;
  55. WIN32_FIND_DATA fdata;
  56. HANDLE dhandle;
  57. char buf[MAX_PATH];
  58. snprintf(buf, sizeof(buf), "%s\\*", directory);
  59. if((dhandle = FindFirstFile(buf, &fdata)) == INVALID_HANDLE_VALUE) {
  60. safe_delete(ret);
  61. return 0;
  62. }
  63. ret->push_back(string(fdata.cFileName));
  64. while(1) {
  65. if(FindNextFile(dhandle, &fdata)) {
  66. ret->push_back(string(fdata.cFileName));
  67. }
  68. else{
  69. if(GetLastError() == ERROR_NO_MORE_FILES) {
  70. break;
  71. } else {
  72. safe_delete(ret);
  73. FindClose(dhandle);
  74. return 0;
  75. }
  76. }
  77. }
  78. if(FindClose(dhandle) == 0) {
  79. safe_delete(ret);
  80. return 0;
  81. }
  82. return ret;
  83. }
  84. #else
  85. vector<string>* LuaInterface::GetDirectoryListing(const char* directory) {
  86. vector<string>* ret = new vector<string>;
  87. DIR *dp;
  88. struct dirent *ep;
  89. dp = opendir (directory);
  90. if (dp != NULL){
  91. while ((ep = readdir (dp)))
  92. ret->push_back(string(ep->d_name));
  93. (void) closedir (dp);
  94. }
  95. else {
  96. safe_delete(ret);
  97. return 0;
  98. }
  99. return ret;
  100. }
  101. #endif
  102. LuaInterface::~LuaInterface() {
  103. shutting_down = true;
  104. MLUAMain.lock();
  105. DestroySpells();
  106. DestroySpawnScripts();
  107. DestroyQuests();
  108. DestroyItemScripts();
  109. DestroyZoneScripts();
  110. DestroyRegionScripts();
  111. DeleteUserDataPtrs(true);
  112. DeletePendingSpells(true);
  113. safe_delete(user_data_timer);
  114. safe_delete(spell_delete_timer);
  115. MLUAMain.unlock();
  116. }
  117. int LuaInterface::GetNumberOfArgs(lua_State* state) {
  118. return lua_gettop(state);
  119. }
  120. void LuaInterface::Process() {
  121. if(shutting_down)
  122. return;
  123. MLUAMain.lock();
  124. if(user_data_timer && user_data_timer->Check())
  125. DeleteUserDataPtrs(false);
  126. if(spell_delete_timer && spell_delete_timer->Check())
  127. DeletePendingSpells(false);
  128. MLUAMain.unlock();
  129. }
  130. void LuaInterface::DestroySpells() {
  131. map<string, LuaSpell*>::iterator itr;
  132. MSpells.lock();
  133. for(itr = spells.begin(); itr != spells.end(); itr++){
  134. lua_close(itr->second->state);
  135. safe_delete(itr->second);
  136. }
  137. spells.clear();
  138. MSpells.unlock();
  139. }
  140. void LuaInterface::DestroyQuests(bool reload) {
  141. map<int32, lua_State*>::iterator itr;
  142. MQuests.lock();
  143. for(itr = quest_states.begin(); itr != quest_states.end(); itr++){
  144. safe_delete(quests[itr->first]);
  145. lua_close(itr->second);
  146. }
  147. quests.clear();
  148. quest_states.clear();
  149. map<int32, Mutex*>::iterator mutex_itr;
  150. for(mutex_itr = quests_mutex.begin(); mutex_itr != quests_mutex.end(); mutex_itr++){
  151. safe_delete(mutex_itr->second);
  152. }
  153. quests_mutex.clear();
  154. if(reload)
  155. database.LoadQuests();
  156. MQuests.unlock();
  157. }
  158. void LuaInterface::DestroyItemScripts() {
  159. map<string, map<lua_State*, bool> >::iterator itr;
  160. map<lua_State*, bool>::iterator state_itr;
  161. Mutex* mutex = 0;
  162. MItemScripts.writelock(__FUNCTION__, __LINE__);
  163. for(itr = item_scripts.begin(); itr != item_scripts.end(); itr++){
  164. mutex = GetItemScriptMutex(itr->first.c_str());
  165. mutex->writelock(__FUNCTION__, __LINE__);
  166. for(state_itr = itr->second.begin(); state_itr != itr->second.end(); state_itr++)
  167. lua_close(state_itr->first);
  168. mutex->releasewritelock(__FUNCTION__, __LINE__);
  169. safe_delete(mutex);
  170. }
  171. item_scripts.clear();
  172. item_inverse_scripts.clear();
  173. item_scripts_mutex.clear();
  174. MItemScripts.releasewritelock(__FUNCTION__, __LINE__);
  175. }
  176. void LuaInterface::DestroySpawnScripts() {
  177. map<string, map<lua_State*, bool> >::iterator itr;
  178. map<lua_State*, bool>::iterator state_itr;
  179. Mutex* mutex = 0;
  180. MSpawnScripts.writelock(__FUNCTION__, __LINE__);
  181. for(itr = spawn_scripts.begin(); itr != spawn_scripts.end(); itr++){
  182. mutex = GetSpawnScriptMutex(itr->first.c_str());
  183. mutex->writelock(__FUNCTION__, __LINE__);
  184. for(state_itr = itr->second.begin(); state_itr != itr->second.end(); state_itr++)
  185. lua_close(state_itr->first);
  186. mutex->releasewritelock(__FUNCTION__, __LINE__);
  187. safe_delete(mutex);
  188. }
  189. spawn_scripts.clear();
  190. spawn_inverse_scripts.clear();
  191. spawn_scripts_mutex.clear();
  192. MSpawnScripts.releasewritelock(__FUNCTION__, __LINE__);
  193. }
  194. void LuaInterface::DestroyZoneScripts() {
  195. map<string, map<lua_State*, bool> >::iterator itr;
  196. map<lua_State*, bool>::iterator state_itr;
  197. Mutex* mutex = 0;
  198. MZoneScripts.writelock(__FUNCTION__, __LINE__);
  199. for (itr = zone_scripts.begin(); itr != zone_scripts.end(); itr++){
  200. mutex = GetZoneScriptMutex(itr->first.c_str());
  201. mutex->writelock(__FUNCTION__, __LINE__);
  202. for(state_itr = itr->second.begin(); state_itr != itr->second.end(); state_itr++)
  203. lua_close(state_itr->first);
  204. mutex->releasewritelock(__FUNCTION__, __LINE__);
  205. safe_delete(mutex);
  206. }
  207. zone_scripts.clear();
  208. zone_inverse_scripts.clear();
  209. zone_scripts_mutex.clear();
  210. MZoneScripts.releasewritelock(__FUNCTION__, __LINE__);
  211. }
  212. void LuaInterface::DestroyRegionScripts() {
  213. map<string, map<lua_State*, bool> >::iterator itr;
  214. map<lua_State*, bool>::iterator state_itr;
  215. Mutex* mutex = 0;
  216. MRegionScripts.writelock(__FUNCTION__, __LINE__);
  217. for (itr = region_scripts.begin(); itr != region_scripts.end(); itr++){
  218. mutex = GetRegionScriptMutex(itr->first.c_str());
  219. mutex->writelock(__FUNCTION__, __LINE__);
  220. for(state_itr = itr->second.begin(); state_itr != itr->second.end(); state_itr++)
  221. lua_close(state_itr->first);
  222. mutex->releasewritelock(__FUNCTION__, __LINE__);
  223. safe_delete(mutex);
  224. }
  225. region_scripts.clear();
  226. region_inverse_scripts.clear();
  227. region_scripts_mutex.clear();
  228. MRegionScripts.releasewritelock(__FUNCTION__, __LINE__);
  229. }
  230. void LuaInterface::ReloadSpells() {
  231. DestroySpells();
  232. database.LoadSpellScriptData();
  233. }
  234. bool LuaInterface::LoadLuaSpell(const char* name) {
  235. LuaSpell* spell = 0;
  236. string lua_script = string(name);
  237. if (lua_script.find(".lua") == string::npos)
  238. lua_script.append(".lua");
  239. lua_State* state = LoadLuaFile(lua_script.c_str());
  240. if(state){
  241. spell = new LuaSpell;
  242. spell->file_name = lua_script;
  243. spell->state = state;
  244. spell->spell = 0;
  245. spell->caster = 0;
  246. spell->initial_target = 0;
  247. spell->resisted = false;
  248. spell->interrupted = false;
  249. spell->last_spellattack_hit = false;
  250. spell->crit = false;
  251. spell->MSpellTargets.SetName("LuaSpell.MSpellTargets");
  252. spell->cancel_after_all_triggers = false;
  253. spell->num_triggers = 0;
  254. spell->num_calls = 0;
  255. spell->is_recast_timer = false;
  256. spell->had_triggers = false;
  257. spell->had_dmg_remaining = false;
  258. spell->slot_pos = 0;
  259. spell->damage_remaining = 0;
  260. spell->effect_bitmask = 0;
  261. spell->restored = false;
  262. spell->initial_caster_char_id = 0;
  263. spell->initial_target_char_id = 0;
  264. MSpells.lock();
  265. if (spells.count(lua_script) > 0) {
  266. lua_close(spells[lua_script]->state);
  267. safe_delete(spells[lua_script]);
  268. }
  269. spells[lua_script] = spell;
  270. MSpells.unlock();
  271. return true;
  272. }
  273. return false;
  274. }
  275. bool LuaInterface::LoadLuaSpell(string name) {
  276. return LoadLuaSpell(name.c_str());
  277. }
  278. bool LuaInterface::LoadItemScript(string name) {
  279. return LoadItemScript(name.c_str());
  280. }
  281. bool LuaInterface::LoadItemScript(const char* name) {
  282. bool ret = false;
  283. if(name){
  284. lua_State* state = LoadLuaFile(name);
  285. if(state){
  286. MItemScripts.writelock(__FUNCTION__, __LINE__);
  287. item_scripts[name][state] = false;
  288. MItemScripts.releasewritelock(__FUNCTION__, __LINE__);
  289. ret = true;
  290. }
  291. }
  292. return ret;
  293. }
  294. bool LuaInterface::LoadSpawnScript(const char* name) {
  295. bool ret = false;
  296. if(name){
  297. lua_State* state = LoadLuaFile(name);
  298. if(state){
  299. MSpawnScripts.writelock(__FUNCTION__, __LINE__);
  300. spawn_scripts[name][state] = false;
  301. MSpawnScripts.releasewritelock(__FUNCTION__, __LINE__);
  302. ret = true;
  303. }
  304. }
  305. return ret;
  306. }
  307. bool LuaInterface::LoadZoneScript(const char* name) {
  308. bool ret = false;
  309. if (name) {
  310. lua_State* state = LoadLuaFile(name);
  311. if (state) {
  312. MZoneScripts.writelock(__FUNCTION__, __LINE__);
  313. zone_scripts[name][state] = false;
  314. MZoneScripts.releasewritelock(__FUNCTION__, __LINE__);
  315. ret = true;
  316. }
  317. }
  318. return ret;
  319. }
  320. bool LuaInterface::LoadRegionScript(const char* name) {
  321. bool ret = false;
  322. if (name) {
  323. lua_State* state = LoadLuaFile(name);
  324. if (state) {
  325. MRegionScripts.writelock(__FUNCTION__, __LINE__);
  326. region_scripts[name][state] = false;
  327. MRegionScripts.releasewritelock(__FUNCTION__, __LINE__);
  328. ret = true;
  329. }
  330. }
  331. return ret;
  332. }
  333. void LuaInterface::ProcessErrorMessage(const char* message) {
  334. MDebugClients.lock();
  335. vector<Client*> delete_clients;
  336. map<Client*, int32>::iterator itr;
  337. for(itr = debug_clients.begin(); itr != debug_clients.end(); itr++){
  338. if((Timer::GetCurrentTime2() - itr->second) > 60000)
  339. delete_clients.push_back(itr->first);
  340. else
  341. itr->first->Message(CHANNEL_COLOR_RED, "LUA Error: %s", message);
  342. }
  343. for(int32 i=0;i<delete_clients.size();i++)
  344. debug_clients.erase(delete_clients[i]);
  345. MDebugClients.unlock();
  346. }
  347. void LuaInterface::RemoveDebugClients(Client* client) {
  348. MDebugClients.lock();
  349. debug_clients.erase(client);
  350. MDebugClients.unlock();
  351. }
  352. void LuaInterface::UpdateDebugClients(Client* client) {
  353. MDebugClients.lock();
  354. debug_clients[client] = Timer::GetCurrentTime2();
  355. MDebugClients.unlock();
  356. }
  357. Mutex* LuaInterface::GetQuestMutex(Quest* quest) {
  358. Mutex* ret = 0;
  359. MQuests.lock();
  360. if(quests_mutex.count(quest->GetQuestID()) == 0){
  361. ret = new Mutex();
  362. quests_mutex[quest->GetQuestID()] = ret;
  363. ret->SetName(string("Quest::").append(quest->GetName()));
  364. }
  365. else
  366. ret = quests_mutex[quest->GetQuestID()];
  367. MQuests.unlock();
  368. return ret;
  369. }
  370. bool LuaInterface::CallQuestFunction(Quest* quest, const char* function, Spawn* player, int32 step_id, int32* returnValue) {
  371. if(shutting_down)
  372. return false;
  373. lua_State* state = 0;
  374. if(quest){
  375. LogWrite(LUA__DEBUG, 0, "LUA", "Quest: %s, function: %s", quest->GetName(), function);
  376. Mutex* mutex = GetQuestMutex(quest);
  377. mutex->lock();
  378. if(quest_states.count(quest->GetQuestID()) > 0)
  379. state = quest_states[quest->GetQuestID()];
  380. bool success = false; // if no state then we return false
  381. if(state){
  382. int8 arg_count = 3;
  383. lua_getglobal(state, function);
  384. SetQuestValue(state, quest);
  385. Spawn* spawn = player->GetZone()->GetSpawnByDatabaseID(quest->GetQuestGiver());
  386. SetSpawnValue(state, spawn);
  387. SetSpawnValue(state, player);
  388. if(step_id != 0xFFFFFFFF){
  389. SetInt32Value(state, step_id);
  390. arg_count++;
  391. }
  392. success = CallScriptInt32(state, arg_count, returnValue);
  393. }
  394. mutex->unlock();
  395. LogWrite(LUA__DEBUG, 0, "LUA", "Done!");
  396. return success;
  397. }
  398. return false;
  399. }
  400. Quest* LuaInterface::LoadQuest(int32 id, const char* name, const char* type, const char* zone, int8 level, const char* description, char* script_name) {
  401. if(shutting_down)
  402. return 0;
  403. lua_State* state = LoadLuaFile(script_name);
  404. Quest* quest = 0;
  405. if(state){
  406. quest = new Quest(id);
  407. if (name)
  408. quest->SetName(string(name));
  409. if (type)
  410. quest->SetType(string(type));
  411. if (zone)
  412. quest->SetZone(string(zone));
  413. quest->SetLevel(level);
  414. if (description)
  415. quest->SetDescription(string(description));
  416. lua_getglobal(state, "Init");
  417. SetQuestValue(state, quest);
  418. if(lua_pcall(state, 1, 0, 0) != 0){
  419. LogError("Error processing Quest \"%s\" (%u): %s", name ? name : "unknown", id, lua_tostring(state, -1));
  420. lua_pop(state, 1);
  421. safe_delete(quest);
  422. return 0;
  423. }
  424. if(!quest->GetName()){
  425. safe_delete(quest);
  426. return 0;
  427. }
  428. quest_states[id] = state;
  429. quests[id] = quest;
  430. }
  431. return quest;
  432. }
  433. const char* LuaInterface::GetScriptName(lua_State* state)
  434. {
  435. map<lua_State*, string>::iterator itr;
  436. MItemScripts.writelock(__FUNCTION__, __LINE__);
  437. itr = item_inverse_scripts.find(state);
  438. if (itr != item_inverse_scripts.end())
  439. {
  440. const char* scriptName = itr->second.c_str();
  441. MItemScripts.releasewritelock(__FUNCTION__, __LINE__);
  442. return scriptName;
  443. }
  444. MItemScripts.releasewritelock(__FUNCTION__, __LINE__);
  445. MSpawnScripts.writelock(__FUNCTION__, __LINE__);
  446. itr = spawn_inverse_scripts.find(state);
  447. if (itr != spawn_inverse_scripts.end())
  448. {
  449. const char* scriptName = itr->second.c_str();
  450. MSpawnScripts.releasewritelock(__FUNCTION__, __LINE__);
  451. return scriptName;
  452. }
  453. MSpawnScripts.releasewritelock(__FUNCTION__, __LINE__);
  454. MZoneScripts.writelock(__FUNCTION__, __LINE__);
  455. itr = zone_inverse_scripts.find(state);
  456. if (itr != zone_inverse_scripts.end())
  457. {
  458. const char* scriptName = itr->second.c_str();
  459. MZoneScripts.releasewritelock(__FUNCTION__, __LINE__);
  460. return scriptName;
  461. }
  462. MZoneScripts.releasewritelock(__FUNCTION__, __LINE__);
  463. MRegionScripts.writelock(__FUNCTION__, __LINE__);
  464. itr = region_inverse_scripts.find(state);
  465. if (itr != region_inverse_scripts.end())
  466. {
  467. const char* scriptName = itr->second.c_str();
  468. MRegionScripts.releasewritelock(__FUNCTION__, __LINE__);
  469. return scriptName;
  470. }
  471. MRegionScripts.releasewritelock(__FUNCTION__, __LINE__);
  472. MSpells.lock();
  473. LuaSpell* spell = GetCurrentSpell(state);
  474. if (spell)
  475. {
  476. const char* fileName = (spell->file_name.length() > 0) ? spell->file_name.c_str() : "";
  477. MSpells.unlock();
  478. return fileName;
  479. }
  480. MSpells.unlock();
  481. return "";
  482. }
  483. bool LuaInterface::LoadSpawnScript(string name) {
  484. return LoadSpawnScript(name.c_str());
  485. }
  486. bool LuaInterface::LoadZoneScript(string name) {
  487. return LoadZoneScript(name.c_str());
  488. }
  489. bool LuaInterface::LoadRegionScript(string name) {
  490. return LoadRegionScript(name.c_str());
  491. }
  492. std::string LuaInterface::AddSpawnPointers(LuaSpell* spell, bool first_cast, bool precast, const char* function, SpellScriptTimer* timer, bool passLuaSpell, Spawn* altTarget) {
  493. std::string functionCalled = string("");
  494. if (function)
  495. {
  496. functionCalled = string(function);
  497. lua_getglobal(spell->state, function);
  498. }
  499. else if (precast)
  500. {
  501. functionCalled = "precast";
  502. lua_getglobal(spell->state, "precast");
  503. }
  504. else if(first_cast)
  505. {
  506. functionCalled = "cast";
  507. lua_getglobal(spell->state, "cast");
  508. }
  509. else
  510. {
  511. functionCalled = "tick";
  512. lua_getglobal(spell->state, "tick");
  513. }
  514. if(passLuaSpell)
  515. SetSpellValue(spell->state, spell);
  516. Spawn* temp_spawn = 0;
  517. if (timer && timer->caster && spell->caster)
  518. temp_spawn = spell->caster->GetZone()->GetSpawnByID(timer->caster);
  519. if (temp_spawn)
  520. SetSpawnValue(spell->state, temp_spawn);
  521. else if (spell->caster)
  522. SetSpawnValue(spell->state, spell->caster);
  523. temp_spawn = 0;
  524. if (timer && timer->target && spell->caster)
  525. temp_spawn = spell->caster->GetZone()->GetSpawnByID(timer->target);
  526. if (temp_spawn)
  527. SetSpawnValue(spell->state, temp_spawn);
  528. else {
  529. if(altTarget)
  530. {
  531. SetSpawnValue(spell->state, altTarget);
  532. }
  533. else if(spell->caster && spell->caster->GetZone() != nullptr && spell->initial_target)
  534. {
  535. // easier to debug target id as ptr
  536. Spawn* new_target = spell->caster->GetZone()->GetSpawnByID(spell->initial_target);
  537. SetSpawnValue(spell->state, new_target);
  538. }
  539. else if(spell->caster && spell->caster->GetTarget())
  540. SetSpawnValue(spell->state, spell->caster->GetTarget());
  541. else
  542. SetSpawnValue(spell->state, 0);
  543. }
  544. return functionCalled;
  545. }
  546. LuaSpell* LuaInterface::GetCurrentSpell(lua_State* state) {
  547. if(current_spells.count(state) > 0)
  548. return current_spells[state];
  549. return 0;
  550. }
  551. bool LuaInterface::CallSpellProcess(LuaSpell* spell, int8 num_parameters, std::string customFunction) {
  552. if(shutting_down || !spell || !spell->caster)
  553. return false;
  554. MSpells.lock();
  555. current_spells[spell->state] = spell;
  556. MSpells.unlock();
  557. if(lua_pcall(spell->state, num_parameters, 0, 0) != 0){
  558. LogError("Error running function '%s' in %s: %s", customFunction.c_str(), spell->spell->GetName(), lua_tostring(spell->state, -1));
  559. lua_pop(spell->state, 1);
  560. RemoveSpell(spell, false); // may be in a lock
  561. return false;
  562. }
  563. return true;
  564. }
  565. void LuaInterface::RemoveSpawnScript(const char* name) {
  566. lua_State* state = 0;
  567. Mutex* mutex = GetSpawnScriptMutex(name);
  568. while((state = GetSpawnScript(name, false))){
  569. mutex->writelock(__FUNCTION__, __LINE__);
  570. lua_close(state);
  571. spawn_scripts[name].erase(state);
  572. mutex->releasewritelock(__FUNCTION__, __LINE__);
  573. }
  574. MSpawnScripts.writelock(__FUNCTION__, __LINE__);
  575. spawn_scripts.erase(name);
  576. MSpawnScripts.releasewritelock(__FUNCTION__, __LINE__);
  577. }
  578. bool LuaInterface::CallItemScript(lua_State* state, int8 num_parameters, std::string* returnValue) {
  579. if(shutting_down)
  580. return false;
  581. if(!state || lua_pcall(state, num_parameters, 1, 0) != 0){
  582. if (state){
  583. const char* err = lua_tostring(state, -1);
  584. LogError("%s: %s", GetScriptName(state), err);
  585. lua_pop(state, 1);
  586. }
  587. return false;
  588. }
  589. std::string result = std::string("");
  590. if(lua_isstring(state, -1)){
  591. size_t size = 0;
  592. const char* str = lua_tolstring(state, -1, &size);
  593. if(str)
  594. result = string(str);
  595. }
  596. if(returnValue)
  597. *returnValue = std::string(result);
  598. return true;
  599. }
  600. bool LuaInterface::CallItemScript(lua_State* state, int8 num_parameters, sint64* returnValue) {
  601. if(shutting_down)
  602. return false;
  603. if(!state || lua_pcall(state, num_parameters, 1, 0) != 0){
  604. if (state){
  605. const char* err = lua_tostring(state, -1);
  606. LogError("%s: %s", GetScriptName(state), err);
  607. lua_pop(state, 1);
  608. }
  609. return false;
  610. }
  611. sint64 result = 0;
  612. if (lua_isnumber(state, -1))
  613. {
  614. result = (sint64)lua_tonumber(state, -1);
  615. lua_pop(state, 1);
  616. }
  617. if(returnValue)
  618. *returnValue = result;
  619. return true;
  620. }
  621. bool LuaInterface::CallSpawnScript(lua_State* state, int8 num_parameters) {
  622. if(shutting_down || lua_system_reloading)
  623. return false;
  624. if(!state || lua_pcall(state, num_parameters, 0, 0) != 0){
  625. if (state){
  626. const char* err = lua_tostring(state, -1);
  627. LogError("%s: %s", GetScriptName(state), err);
  628. lua_pop(state, 1);
  629. }
  630. return false;
  631. }
  632. return true;
  633. }
  634. bool LuaInterface::CallScriptInt32(lua_State* state, int8 num_parameters, int32* returnValue) {
  635. if(shutting_down)
  636. return false;
  637. if (!state || lua_pcall(state, num_parameters, 1, 0) != 0) {
  638. if (state){
  639. const char* err = lua_tostring(state, -1);
  640. LogError("%s: %s", GetScriptName(state), err);
  641. lua_pop(state, 1);
  642. }
  643. return false;
  644. }
  645. int32 result = 0;
  646. if (lua_isnumber(state, -1))
  647. {
  648. result = (int32)lua_tonumber(state, -1);
  649. lua_pop(state, 1);
  650. }
  651. if(returnValue)
  652. *returnValue = result;
  653. return true;
  654. }
  655. bool LuaInterface::CallScriptSInt32(lua_State* state, int8 num_parameters, sint32* returnValue) {
  656. if(shutting_down)
  657. return false;
  658. if (!state || lua_pcall(state, num_parameters, 1, 0) != 0) {
  659. if (state){
  660. const char* err = lua_tostring(state, -1);
  661. LogError("%s: %s", GetScriptName(state), err);
  662. lua_pop(state, 1);
  663. }
  664. return false;
  665. }
  666. sint32 result = 0;
  667. if (lua_isnumber(state, -1))
  668. {
  669. result = (sint32)lua_tointeger(state, -1);
  670. lua_pop(state, 1);
  671. }
  672. if(returnValue)
  673. *returnValue = result;
  674. return true;
  675. }
  676. bool LuaInterface::CallRegionScript(lua_State* state, int8 num_parameters, int32* returnValue) {
  677. if(shutting_down)
  678. return false;
  679. if (!state || lua_pcall(state, num_parameters, 1, 0) != 0) {
  680. if (state){
  681. const char* err = lua_tostring(state, -1);
  682. LogError("%s: %s", GetScriptName(state), err);
  683. lua_pop(state, 1);
  684. }
  685. return false;
  686. }
  687. int32 result = 0;
  688. if (lua_isnumber(state, -1))
  689. {
  690. result = (int32)lua_tonumber(state, -1);
  691. lua_pop(state, 1);
  692. }
  693. if(returnValue)
  694. *returnValue = result;
  695. return true;
  696. }
  697. lua_State* LuaInterface::LoadLuaFile(const char* name) {
  698. if(shutting_down)
  699. return 0;
  700. lua_State* state = luaL_newstate();
  701. luaL_openlibs(state);
  702. if(luaL_dofile(state, name) == 0){
  703. RegisterFunctions(state);
  704. return state;
  705. }
  706. else{
  707. LogError("Error loading %s (file name: '%s')", lua_tostring(state, -1), name);
  708. lua_pop(state, 1);
  709. lua_close(state);
  710. }
  711. return 0;
  712. }
  713. void LuaInterface::RemoveSpell(LuaSpell* spell, bool call_remove_function, bool can_delete, string reason, bool removing_all_spells) {
  714. if(shutting_down)
  715. return;
  716. if(call_remove_function){
  717. lua_getglobal(spell->state, "remove");
  718. LUASpawnWrapper* spawn_wrapper = new LUASpawnWrapper();
  719. spawn_wrapper->spawn = spell->caster;
  720. AddUserDataPtr(spawn_wrapper);
  721. lua_pushlightuserdata(spell->state, spawn_wrapper);
  722. if(spell->caster && (spell->initial_target || spell->caster->GetTarget())){
  723. spawn_wrapper = new LUASpawnWrapper();
  724. if(!spell->initial_target)
  725. spawn_wrapper->spawn = spell->caster->GetTarget();
  726. else
  727. spawn_wrapper->spawn = spell->caster->GetZone()->GetSpawnByID(spell->initial_target);
  728. AddUserDataPtr(spawn_wrapper);
  729. lua_pushlightuserdata(spell->state, spawn_wrapper);
  730. }
  731. else
  732. lua_pushlightuserdata(spell->state, 0);
  733. if (spell->caster && !spell->caster->Alive())
  734. reason = "dead";
  735. lua_pushstring(spell->state, (char*)reason.c_str());
  736. MSpells.lock();
  737. current_spells[spell->state] = spell;
  738. MSpells.unlock();
  739. lua_pcall(spell->state, 3, 0, 0);
  740. ResetFunctionStack(spell->state);
  741. }
  742. spell->MSpellTargets.readlock(__FUNCTION__, __LINE__);
  743. if(spell->caster) {
  744. for (int8 i = 0; i < spell->targets.size(); i++) {
  745. Spawn* target = spell->caster->GetZone()->GetSpawnByID(spell->targets.at(i));
  746. if (!target || !target->IsEntity())
  747. continue;
  748. ((Entity*)target)->RemoveProc(0, spell);
  749. ((Entity*)target)->RemoveSpellEffect(spell);
  750. ((Entity*)target)->RemoveSpellBonus(spell);
  751. }
  752. }
  753. multimap<int32,int8>::iterator entries;
  754. for(entries = spell->char_id_targets.begin(); entries != spell->char_id_targets.end(); entries++)
  755. {
  756. Client* tmpClient = zone_list.GetClientByCharID(entries->first);
  757. if(tmpClient && tmpClient->GetPlayer())
  758. {
  759. tmpClient->GetPlayer()->RemoveProc(0, spell);
  760. tmpClient->GetPlayer()->RemoveSpellEffect(spell);
  761. tmpClient->GetPlayer()->RemoveSpellBonus(spell);
  762. }
  763. }
  764. spell->char_id_targets.clear(); // TODO: reach out to those clients in different
  765. spell->MSpellTargets.releasereadlock(__FUNCTION__, __LINE__);
  766. // we need to make sure all memory is purged for a copied spell, its only used once
  767. if (spell->spell->IsCopiedSpell())
  768. can_delete = true;
  769. if (can_delete) {
  770. AddPendingSpellDelete(spell);
  771. }
  772. if (spell->caster)
  773. {
  774. spell->caster->GetZone()->GetSpellProcess()->RemoveSpellScriptTimerBySpell(spell);
  775. spell->caster->RemoveProc(0, spell);
  776. spell->caster->RemoveMaintainedSpell(spell);
  777. int8 spell_type = spell->spell->GetSpellData()->spell_type;
  778. if(spell->caster->IsPlayer() && !removing_all_spells)
  779. {
  780. Player* player = (Player*)spell->caster;
  781. switch(spell_type)
  782. {
  783. case SPELL_TYPE_FOOD:
  784. if(player->get_character_flag(CF_FOOD_AUTO_CONSUME))
  785. {
  786. Item* item = player->GetEquipmentList()->GetItem(EQ2_FOOD_SLOT);
  787. if(item && player->GetClient())
  788. player->GetClient()->ConsumeFoodDrink(item, EQ2_FOOD_SLOT);
  789. }
  790. break;
  791. case SPELL_TYPE_DRINK:
  792. if(player->get_character_flag(CF_DRINK_AUTO_CONSUME))
  793. {
  794. Item* item = player->GetEquipmentList()->GetItem(EQ2_DRINK_SLOT);
  795. if(item && player->GetClient())
  796. player->GetClient()->ConsumeFoodDrink(item, EQ2_DRINK_SLOT);
  797. }
  798. break;
  799. }
  800. }
  801. }
  802. }
  803. void LuaInterface::RegisterFunctions(lua_State* state) {
  804. lua_register(state, "SetHP", EQ2Emu_lua_SetCurrentHP);
  805. lua_register(state, "SetMaxHP", EQ2Emu_lua_SetMaxHP);
  806. lua_register(state, "SetMaxHPBase", EQ2Emu_lua_SetMaxHPBase);
  807. lua_register(state, "SetPower", EQ2Emu_lua_SetCurrentPower);
  808. lua_register(state, "SetMaxPower", EQ2Emu_lua_SetMaxPower);
  809. lua_register(state, "SetMaxPowerBase", EQ2Emu_lua_SetMaxPowerBase);
  810. lua_register(state, "SetPosition", EQ2Emu_lua_SetPosition);
  811. lua_register(state, "SetHeading", EQ2Emu_lua_SetHeading);
  812. lua_register(state, "SetModelType", EQ2Emu_lua_SetModelType);
  813. lua_register(state, "SetAdventureClass", EQ2Emu_lua_SetAdventureClass);
  814. lua_register(state, "SetTradeskillClass", EQ2Emu_lua_SetTradeskillClass);
  815. lua_register(state, "SetMount", EQ2Emu_lua_SetMount);
  816. lua_register(state, "SetMountColor", EQ2Emu_lua_SetMountColor);
  817. lua_register(state, "GetMount", EQ2Emu_lua_GetMount);
  818. lua_register(state, "GetRace", EQ2Emu_lua_GetRace);
  819. lua_register(state, "GetRaceName", EQ2Emu_lua_GetRaceName);
  820. lua_register(state, "GetClass", EQ2Emu_lua_GetClass);
  821. lua_register(state, "GetClassName", EQ2Emu_lua_GetClassName);
  822. lua_register(state, "GetArchetypeName", EQ2Emu_lua_GetArchetypeName);
  823. lua_register(state, "SetSpeed", EQ2Emu_lua_SetSpeed);
  824. lua_register(state, "ModifyPower", EQ2Emu_lua_ModifyPower);
  825. lua_register(state, "ModifyHP", EQ2Emu_lua_ModifyHP);
  826. lua_register(state, "GetDistance", EQ2Emu_lua_GetDistance);
  827. lua_register(state, "GetHeading", EQ2Emu_lua_GetHeading);
  828. lua_register(state, "GetLevel", EQ2Emu_lua_GetLevel);
  829. lua_register(state, "GetHP", EQ2Emu_lua_GetCurrentHP);
  830. lua_register(state, "GetMaxHP", EQ2Emu_lua_GetMaxHP);
  831. lua_register(state, "GetMaxHPBase", EQ2Emu_lua_GetMaxHPBase);
  832. lua_register(state, "GetMaxPower", EQ2Emu_lua_GetMaxPower);
  833. lua_register(state, "GetMaxPowerBase", EQ2Emu_lua_GetMaxPowerBase);
  834. lua_register(state, "GetName", EQ2Emu_lua_GetName);
  835. lua_register(state, "GetPower", EQ2Emu_lua_GetCurrentPower);
  836. lua_register(state, "GetX", EQ2Emu_lua_GetX);
  837. lua_register(state, "GetY", EQ2Emu_lua_GetY);
  838. lua_register(state, "GetZ", EQ2Emu_lua_GetZ);
  839. lua_register(state, "GetSpawnID", EQ2Emu_lua_GetSpawnID);
  840. lua_register(state, "GetSpawnGroupID", EQ2Emu_lua_GetSpawnGroupID);
  841. lua_register(state, "SetSpawnGroupID", EQ2Emu_lua_SetSpawnGroupID);
  842. lua_register(state, "AddSpawnToGroup", EQ2Emu_lua_AddSpawnToGroup);
  843. lua_register(state, "GetSpawnLocationID", EQ2Emu_lua_GetSpawnLocationID);
  844. lua_register(state, "GetSpawnLocationPlacementID", EQ2Emu_lua_GetSpawnLocationPlacementID);
  845. lua_register(state, "CreateSpawnList", EQ2Emu_lua_CreateSpawnList);
  846. lua_register(state, "AddSpawnToSpawnList", EQ2Emu_lua_AddSpawnToSpawnList);
  847. lua_register(state, "RemoveSpawnFromSpawnList", EQ2Emu_lua_RemoveSpawnFromSpawnList);
  848. lua_register(state, "GetSpawnListBySpawnID", EQ2Emu_lua_GetSpawnListBySpawnID);
  849. lua_register(state, "GetSpawnListByRailID", EQ2Emu_lua_GetSpawnListByRailID);
  850. lua_register(state, "GetPassengerSpawnList", EQ2Emu_lua_GetPassengerSpawnList);
  851. lua_register(state, "GetSpawnFromList", EQ2Emu_lua_GetSpawnFromList);
  852. lua_register(state, "GetSpawnListSize", EQ2Emu_lua_GetSpawnListSize);
  853. lua_register(state, "SetFactionID", EQ2Emu_lua_SetFactionID);
  854. lua_register(state, "GetFactionID", EQ2Emu_lua_GetFactionID);
  855. lua_register(state, "GetFactionAmount", EQ2Emu_lua_GetFactionAmount);
  856. lua_register(state, "ChangeFaction", EQ2Emu_lua_ChangeFaction);
  857. lua_register(state, "GetGender", EQ2Emu_lua_GetGender);
  858. lua_register(state, "GetTarget", EQ2Emu_lua_GetTarget);
  859. lua_register(state, "HasFreeSlot", EQ2Emu_lua_HasFreeSlot);
  860. lua_register(state, "HasItemEquipped", EQ2Emu_lua_HasItemEquipped);
  861. lua_register(state, "GetEquippedItemByID", EQ2Emu_lua_GetEquippedItemByID);
  862. lua_register(state, "SetEquippedItemByID", EQ2Emu_lua_SetEquippedItemByID);
  863. lua_register(state, "SetEquippedItem", EQ2Emu_lua_SetEquippedItem);
  864. lua_register(state, "UnequipSlot", EQ2Emu_lua_UnequipSlot);
  865. lua_register(state, "SetEquipment", EQ2Emu_lua_SetEquipment);
  866. lua_register(state, "GetEquippedItemBySlot", EQ2Emu_lua_GetEquippedItemBySlot);
  867. lua_register(state, "GetItemByID", EQ2Emu_lua_GetItemByID);
  868. lua_register(state, "GetItemType", EQ2Emu_lua_GetItemType);
  869. lua_register(state, "GetItemEffectType", EQ2Emu_lua_GetItemEffectType);
  870. lua_register(state, "GetSpellName", EQ2Emu_lua_GetSpellName);
  871. lua_register(state, "PerformCameraShake", EQ2Emu_lua_PerformCameraShake);
  872. lua_register(state, "GetModelType", EQ2Emu_lua_GetModelType);
  873. lua_register(state, "GetSpeed", EQ2Emu_lua_GetSpeed);
  874. lua_register(state, "HasMoved", EQ2Emu_lua_HasMoved);
  875. lua_register(state, "SpellDamage", EQ2Emu_lua_SpellDamage);
  876. lua_register(state, "CastSpell", EQ2Emu_lua_CastSpell);
  877. lua_register(state, "SpellHeal", EQ2Emu_lua_SpellHeal);
  878. lua_register(state, "SpellHealPct", EQ2Emu_lua_SpellHealPct);
  879. lua_register(state, "AddItem", EQ2Emu_lua_AddItem);
  880. lua_register(state, "SummonItem", EQ2Emu_lua_SummonItem);
  881. lua_register(state, "RemoveItem", EQ2Emu_lua_RemoveItem);
  882. lua_register(state, "HasItem", EQ2Emu_lua_HasItem);
  883. lua_register(state, "SpawnMob", EQ2Emu_lua_Spawn);
  884. lua_register(state, "SummonPet", EQ2Emu_lua_SummonPet);
  885. lua_register(state, "AddSpawnAccess", EQ2Emu_lua_AddSpawnAccess);
  886. lua_register(state, "GetZone", EQ2Emu_lua_GetZone);
  887. lua_register(state, "GetZoneName", EQ2Emu_lua_GetZoneName);
  888. lua_register(state, "GetZoneID", EQ2Emu_lua_GetZoneID);
  889. lua_register(state, "Zone", EQ2Emu_lua_Zone);
  890. lua_register(state, "AddHate", EQ2Emu_lua_AddHate);
  891. lua_register(state, "IsAlive", EQ2Emu_lua_IsAlive);
  892. lua_register(state, "IsInCombat", EQ2Emu_lua_IsInCombat);
  893. lua_register(state, "Attack", EQ2Emu_lua_Attack);
  894. lua_register(state, "ApplySpellVisual", EQ2Emu_lua_ApplySpellVisual);
  895. lua_register(state, "IsPlayer", EQ2Emu_lua_IsPlayer);
  896. lua_register(state, "GetCharacterID", EQ2Emu_lua_GetCharacterID);
  897. lua_register(state, "FaceTarget", EQ2Emu_lua_FaceTarget);
  898. lua_register(state, "MoveToLocation", EQ2Emu_lua_MoveToLocation);
  899. lua_register(state, "ClearRunningLocations", EQ2Emu_lua_ClearRunningLocations);
  900. lua_register(state, "Shout", EQ2Emu_lua_Shout);
  901. lua_register(state, "Say", EQ2Emu_lua_Say);
  902. lua_register(state, "SayOOC", EQ2Emu_lua_SayOOC);
  903. lua_register(state, "Emote", EQ2Emu_lua_Emote);
  904. lua_register(state, "MovementLoopAddLocation", EQ2Emu_lua_MovementLoopAdd); // do not remove this function, it is already heavily used by the content team
  905. lua_register(state, "MovementLoopAdd", EQ2Emu_lua_MovementLoopAdd);
  906. // lua_register(state, "GetCurrentZoneSafeLocation", EQ2Emu_lua_GetCurrentZoneSafeLocation); // This is already added below.
  907. lua_register(state, "AddTimer", EQ2Emu_lua_AddTimer);
  908. lua_register(state, "StopTimer", EQ2Emu_lua_StopTimer);
  909. lua_register(state, "Harvest", EQ2Emu_lua_Harvest);
  910. lua_register(state, "SetAttackable", EQ2Emu_lua_SetAttackable);
  911. lua_register(state, "AddSpellBonus", EQ2Emu_lua_AddSpellBonus);
  912. lua_register(state, "RemoveSpellBonus", EQ2Emu_lua_RemoveSpellBonus);
  913. lua_register(state, "AddSkillBonus", EQ2Emu_lua_AddSkillBonus);
  914. lua_register(state, "RemoveSkillBonus", EQ2Emu_lua_RemoveSkillBonus);
  915. lua_register(state, "AddControlEffect", EQ2Emu_lua_AddControlEffect);
  916. lua_register(state, "RemoveControlEffect", EQ2Emu_lua_RemoveControlEffect);
  917. lua_register(state, "HasControlEffect", EQ2Emu_lua_HasControlEffect);
  918. lua_register(state, "GetBaseAggroRadius", EQ2Emu_lua_GetBaseAggroRadius);
  919. lua_register(state, "GetAggroRadius", EQ2Emu_lua_GetAggroRadius);
  920. lua_register(state, "SetAggroRadius", EQ2Emu_lua_SetAggroRadius);
  921. lua_register(state, "GetCurrentZoneSafeLocation", EQ2Emu_lua_GetCurrentZoneSafeLocation);
  922. lua_register(state, "SetDeity", EQ2Emu_lua_SetDeity);
  923. lua_register(state, "GetDeity", EQ2Emu_lua_GetDeity);
  924. lua_register(state, "GetInt", EQ2Emu_lua_GetInt);
  925. lua_register(state, "GetWis", EQ2Emu_lua_GetWis);
  926. lua_register(state, "GetSta", EQ2Emu_lua_GetSta);
  927. lua_register(state, "GetStr", EQ2Emu_lua_GetStr);
  928. lua_register(state, "GetAgi", EQ2Emu_lua_GetAgi);
  929. lua_register(state, "SetInt", EQ2Emu_lua_SetInt);
  930. lua_register(state, "SetWis", EQ2Emu_lua_SetWis);
  931. lua_register(state, "SetSta", EQ2Emu_lua_SetSta);
  932. lua_register(state, "SetStr", EQ2Emu_lua_SetStr);
  933. lua_register(state, "SetAgi", EQ2Emu_lua_SetAgi);
  934. lua_register(state, "GetIntBase", EQ2Emu_lua_GetIntBase);
  935. lua_register(state, "GetWisBase", EQ2Emu_lua_GetWisBase);
  936. lua_register(state, "GetStaBase", EQ2Emu_lua_GetStaBase);
  937. lua_register(state, "GetStrBase", EQ2Emu_lua_GetStrBase);
  938. lua_register(state, "GetAgiBase", EQ2Emu_lua_GetAgiBase);
  939. lua_register(state, "SetIntBase", EQ2Emu_lua_SetIntBase);
  940. lua_register(state, "SetWisBase", EQ2Emu_lua_SetWisBase);
  941. lua_register(state, "SetStaBase", EQ2Emu_lua_SetStaBase);
  942. lua_register(state, "SetStrBase", EQ2Emu_lua_SetStrBase);
  943. lua_register(state, "SetAgiBase", EQ2Emu_lua_SetAgiBase);
  944. lua_register(state, "GetSpawn", EQ2Emu_lua_GetSpawn);
  945. lua_register(state, "GetVariableValue", EQ2Emu_lua_GetVariableValue);
  946. lua_register(state, "GetCoinMessage", EQ2Emu_lua_GetCoinMessage);
  947. lua_register(state, "GetSpawnByGroupID", EQ2Emu_lua_GetSpawnByGroupID);
  948. lua_register(state, "GetSpawnByLocationID", EQ2Emu_lua_GetSpawnByLocationID);
  949. lua_register(state, "PlayFlavor", EQ2Emu_lua_PlayFlavor);
  950. lua_register(state, "PlayFlavorID", EQ2Emu_lua_PlayFlavorID);
  951. lua_register(state, "PlaySound", EQ2Emu_lua_PlaySound);
  952. lua_register(state, "PlayVoice", EQ2Emu_lua_PlayVoice);
  953. lua_register(state, "PlayAnimation", EQ2Emu_lua_PlayAnimation);
  954. lua_register(state, "AddLootItem", EQ2Emu_lua_AddLootItem);
  955. lua_register(state, "HasLootItem", EQ2Emu_lua_HasLootItem);
  956. lua_register(state, "RemoveLootItem", EQ2Emu_lua_RemoveLootItem);
  957. lua_register(state, "AddLootCoin", EQ2Emu_lua_AddLootCoin);
  958. lua_register(state, "GiveLoot", EQ2Emu_lua_GiveLoot);
  959. lua_register(state, "HasPendingLootItem", EQ2Emu_lua_HasPendingLootItem);
  960. lua_register(state, "HasPendingLoot", EQ2Emu_lua_HasPendingLoot);
  961. lua_register(state, "SetLootCoin", EQ2Emu_lua_SetLootCoin);
  962. lua_register(state, "HasCoin", EQ2Emu_lua_HasCoin);
  963. lua_register(state, "GetLootCoin", EQ2Emu_lua_GetLootCoin);
  964. lua_register(state, "SetPlayerProximityFunction", EQ2Emu_lua_SetPlayerProximityFunction);
  965. lua_register(state, "SetLocationProximityFunction", EQ2Emu_lua_SetLocationProximityFunction);
  966. lua_register(state, "CreateConversation", EQ2Emu_lua_CreateConversation);
  967. lua_register(state, "AddConversationOption", EQ2Emu_lua_AddConversationOption);
  968. lua_register(state, "StartConversation", EQ2Emu_lua_StartConversation);
  969. lua_register(state, "CloseConversation", EQ2Emu_lua_CloseConversation);
  970. lua_register(state, "CloseItemConversation", EQ2Emu_lua_CloseItemConversation);
  971. //lua_register(state, "StartItemConversation", EQ2Emu_lua_StartItemConversation);
  972. lua_register(state, "StartDialogConversation", EQ2Emu_lua_StartDialogConversation);
  973. lua_register(state, "SendStateCommand", EQ2Emu_lua_SendStateCommand);
  974. lua_register(state, "SpawnSet", EQ2Emu_lua_SpawnSet);
  975. lua_register(state, "SpawnSetByDistance", EQ2Emu_lua_SpawnSetByDistance);
  976. lua_register(state, "SpawnMove", EQ2Emu_lua_SpawnMove);
  977. lua_register(state, "KillSpawn", EQ2Emu_lua_KillSpawn);
  978. lua_register(state, "KillSpawnByDistance", EQ2Emu_lua_KillSpawnByDistance);
  979. lua_register(state, "Despawn", EQ2Emu_lua_Despawn);
  980. lua_register(state, "ChangeHandIcon", EQ2Emu_lua_ChangeHandIcon);
  981. lua_register(state, "SetVisualFlag", EQ2Emu_lua_SetVisualFlag);
  982. lua_register(state, "SetInfoFlag", EQ2Emu_lua_SetInfoFlag);
  983. lua_register(state, "IsBindAllowed", EQ2Emu_lua_IsBindAllowed);
  984. lua_register(state, "IsGateAllowed", EQ2Emu_lua_IsGateAllowed);
  985. lua_register(state, "Bind", EQ2Emu_lua_Bind);
  986. lua_register(state, "Gate", EQ2Emu_lua_Gate);
  987. lua_register(state, "SendMessage", EQ2Emu_lua_SendMessage);
  988. lua_register(state, "SendPopUpMessage", EQ2Emu_lua_SendPopUpMessage);
  989. lua_register(state, "SetServerControlFlag", EQ2Emu_lua_SetServerControlFlag);
  990. lua_register(state, "ToggleTracking", EQ2Emu_lua_ToggleTracking);
  991. lua_register(state, "AddPrimaryEntityCommand", EQ2Emu_lua_AddPrimaryEntityCommand);
  992. lua_register(state, "AddSpellBookEntry", EQ2Emu_lua_AddSpellBookEntry);
  993. lua_register(state, "HasSpell", EQ2Emu_lua_HasSpell);
  994. lua_register(state, "Interrupt", EQ2Emu_lua_Interrupt);
  995. lua_register(state, "Stealth", EQ2Emu_lua_Stealth);
  996. lua_register(state, "IsInvis", EQ2Emu_lua_IsInvis);
  997. lua_register(state, "IsStealthed", EQ2Emu_lua_IsStealthed);
  998. lua_register(state, "AddSpawnIDAccess", EQ2Emu_lua_AddSpawnIDAccess);
  999. lua_register(state, "RemoveSpawnIDAccess", EQ2Emu_lua_RemoveSpawnIDAccess);
  1000. lua_register(state, "HasRecipeBook", EQ2Emu_lua_HasRecipeBook);
  1001. lua_register(state, "SetRequiredQuest", EQ2Emu_lua_SetRequiredQuest);
  1002. lua_register(state, "SetRequiredHistory", EQ2Emu_lua_SetRequiredHistory);
  1003. lua_register(state, "SetStepComplete", EQ2Emu_lua_SetStepComplete);
  1004. lua_register(state, "AddStepProgress", EQ2Emu_lua_AddStepProgress);
  1005. lua_register(state, "UpdateQuestTaskGroupDescription", EQ2Emu_lua_UpdateQuestTaskGroupDescription);
  1006. lua_register(state, "GetTaskGroupStep", EQ2Emu_lua_GetTaskGroupStep);
  1007. lua_register(state, "GetQuestStep", EQ2Emu_lua_GetQuestStep);
  1008. lua_register(state, "QuestStepIsComplete", EQ2Emu_lua_QuestStepIsComplete);
  1009. lua_register(state, "RegisterQuest", EQ2Emu_lua_RegisterQuest);
  1010. lua_register(state, "SetQuestPrereqLevel", EQ2Emu_lua_SetQuestPrereqLevel);
  1011. lua_register(state, "AddQuestPrereqQuest", EQ2Emu_lua_AddQuestPrereqQuest);
  1012. lua_register(state, "AddQuestPrereqItem", EQ2Emu_lua_AddQuestPrereqItem);
  1013. lua_register(state, "AddQuestPrereqFaction", EQ2Emu_lua_AddQuestPrereqFaction);
  1014. lua_register(state, "AddQuestPrereqRace", EQ2Emu_lua_AddQuestPrereqRace);
  1015. lua_register(state, "AddQuestPrereqModelType", EQ2Emu_lua_AddQuestPrereqModelType);
  1016. lua_register(state, "AddQuestPrereqClass", EQ2Emu_lua_AddQuestPrereqClass);
  1017. lua_register(state, "AddQuestPrereqTradeskillLevel", EQ2Emu_lua_AddQuestPrereqTradeskillLevel);
  1018. lua_register(state, "AddQuestPrereqTradeskillClass", EQ2Emu_lua_AddQuestPrereqTradeskillClass);
  1019. lua_register(state, "AddQuestSelectableRewardItem", EQ2Emu_lua_AddQuestSelectableRewardItem);
  1020. lua_register(state, "HasQuestRewardItem", EQ2Emu_lua_HasQuestRewardItem);
  1021. lua_register(state, "AddQuestRewardItem", EQ2Emu_lua_AddQuestRewardItem);
  1022. lua_register(state, "AddQuestRewardCoin", EQ2Emu_lua_AddQuestRewardCoin);
  1023. lua_register(state, "AddQuestRewardFaction", EQ2Emu_lua_AddQuestRewardFaction);
  1024. lua_register(state, "SetQuestRewardStatus", EQ2Emu_lua_SetQuestRewardStatus);
  1025. lua_register(state, "SetStatusTmpReward", EQ2Emu_lua_SetStatusTmpReward);
  1026. lua_register(state, "SetCoinTmpReward", EQ2Emu_lua_SetCoinTmpReward);
  1027. lua_register(state, "SetQuestRewardComment", EQ2Emu_lua_SetQuestRewardComment);
  1028. lua_register(state, "SetQuestRewardExp", EQ2Emu_lua_SetQuestRewardExp);
  1029. lua_register(state, "AddQuestStepKill", EQ2Emu_lua_AddQuestStepKill);
  1030. lua_register(state, "AddQuestStepKillByRace", EQ2Emu_lua_AddQuestStepKillByRace);
  1031. lua_register(state, "AddQuestStep", EQ2Emu_lua_AddQuestStep);
  1032. lua_register(state, "AddQuestStepChat", EQ2Emu_lua_AddQuestStepChat);
  1033. lua_register(state, "AddQuestStepObtainItem", EQ2Emu_lua_AddQuestStepObtainItem);
  1034. lua_register(state, "AddQuestStepZoneLoc", EQ2Emu_lua_AddQuestStepZoneLoc);
  1035. lua_register(state, "AddQuestStepLocation", EQ2Emu_lua_AddQuestStepLocation);
  1036. lua_register(state, "AddQuestStepSpell", EQ2Emu_lua_AddQuestStepSpell);
  1037. lua_register(state, "AddQuestStepCraft", EQ2Emu_lua_AddQuestStepCraft);
  1038. lua_register(state, "AddQuestStepHarvest", EQ2Emu_lua_AddQuestStepHarvest);
  1039. lua_register(state, "AddQuestStepCompleteAction", EQ2Emu_lua_AddQuestStepCompleteAction);
  1040. lua_register(state, "AddQuestStepProgressAction", EQ2Emu_lua_AddQuestStepProgressAction);
  1041. lua_register(state, "SetQuestCompleteAction", EQ2Emu_lua_SetQuestCompleteAction);
  1042. lua_register(state, "GiveQuestReward", EQ2Emu_lua_GiveQuestReward);
  1043. lua_register(state, "UpdateQuestStepDescription", EQ2Emu_lua_UpdateQuestStepDescription);
  1044. lua_register(state, "UpdateQuestDescription", EQ2Emu_lua_UpdateQuestDescription);
  1045. lua_register(state, "UpdateQuestZone", EQ2Emu_lua_UpdateQuestZone);
  1046. lua_register(state, "SetCompletedDescription", EQ2Emu_lua_SetCompletedDescription);
  1047. lua_register(state, "OfferQuest", EQ2Emu_lua_OfferQuest);
  1048. lua_register(state, "ProvidesQuest", EQ2Emu_lua_ProvidesQuest);
  1049. lua_register(state, "HasQuest", EQ2Emu_lua_HasQuest);
  1050. lua_register(state, "HasCompletedQuest", EQ2Emu_lua_HasCompletedQuest);
  1051. lua_register(state, "QuestIsComplete", EQ2Emu_lua_QuestIsComplete);
  1052. lua_register(state, "QuestReturnNPC", EQ2Emu_lua_QuestReturnNPC);
  1053. lua_register(state, "GetQuest", EQ2Emu_lua_GetQuest);
  1054. lua_register(state, "HasCollectionsToHandIn", EQ2Emu_lua_HasCollectionsToHandIn);
  1055. lua_register(state, "HandInCollections", EQ2Emu_lua_HandInCollections);
  1056. lua_register(state, "UseWidget", EQ2Emu_lua_UseWidget);
  1057. lua_register(state, "SetSpellList", EQ2Emu_lua_SetSpellList);
  1058. lua_register(state, "GetPet", EQ2Emu_lua_GetPet);
  1059. lua_register(state, "Charm", EQ2Emu_lua_Charm);
  1060. lua_register(state, "GetGroup", EQ2Emu_lua_GetGroup);
  1061. lua_register(state, "SetCompleteFlag", EQ2Emu_lua_SetCompleteFlag);
  1062. lua_register(state, "SetQuestYellow", EQ2Emu_lua_SetQuestYellow);
  1063. lua_register(state, "CanReceiveQuest", EQ2Emu_lua_CanReceiveQuest);
  1064. lua_register(state, "AddTransportSpawn", EQ2Emu_lua_AddTransportSpawn);
  1065. lua_register(state, "IsTransportSpawn", EQ2Emu_lua_IsTransportSpawn);
  1066. // Option window
  1067. lua_register(state, "CreateOptionWindow", EQ2Emu_lua_CreateOptionWindow);
  1068. lua_register(state, "AddOptionWindowOption", EQ2Emu_lua_AddOptionWindowOption);
  1069. lua_register(state, "SendOptionWindow", EQ2Emu_lua_SendOptionWindow);
  1070. lua_register(state, "GetTradeskillClass", EQ2Emu_lua_GetTradeskillClass);
  1071. lua_register(state, "GetTradeskillLevel", EQ2Emu_lua_GetTradeskillLevel);
  1072. lua_register(state, "GetTradeskillClassName", EQ2Emu_lua_GetTradeskillClassName);
  1073. lua_register(state, "SetTradeskillLevel", EQ2Emu_lua_SetTradeskillLevel);
  1074. lua_register(state, "SummonDeityPet", EQ2Emu_lua_SummonDeityPet);
  1075. lua_register(state, "SummonCosmeticPet", EQ2Emu_lua_SummonCosmeticPet);
  1076. lua_register(state, "DismissPet", EQ2Emu_lua_DismissPet);
  1077. lua_register(state, "GetCharmedPet", EQ2Emu_lua_GetCharmedPet);
  1078. lua_register(state, "GetDeityPet", EQ2Emu_lua_GetDeityPet);
  1079. lua_register(state, "GetCosmeticPet", EQ2Emu_lua_GetCosmeticPet);
  1080. lua_register(state, "SetQuestFeatherColor", EQ2Emu_lua_SetQuestFeatherColor);
  1081. lua_register(state, "RemoveSpawnAccess", EQ2Emu_lua_RemoveSpawnAccess);
  1082. lua_register(state, "SpawnByLocationID", EQ2Emu_lua_SpawnByLocationID);
  1083. lua_register(state, "CastEntityCommand", EQ2Emu_lua_CastEntityCommand);
  1084. lua_register(state, "SetLuaBrain", EQ2Emu_lua_SetLuaBrain);
  1085. lua_register(state, "SetBrainTick", EQ2Emu_lua_SetBrainTick);
  1086. lua_register(state, "SetFollowTarget", EQ2Emu_lua_SetFollowTarget);
  1087. lua_register(state, "GetFollowTarget", EQ2Emu_lua_GetFollowTarget);
  1088. lua_register(state, "ToggleFollow", EQ2Emu_lua_ToggleFollow);
  1089. lua_register(state, "IsFollowing", EQ2Emu_lua_IsFollowing);
  1090. lua_register(state, "SetTempVariable", EQ2Emu_lua_SetTempVariable);
  1091. lua_register(state, "GetTempVariable", EQ2Emu_lua_GetTempVariable);
  1092. lua_register(state, "GiveQuestItem", EQ2Emu_lua_GiveQuestItem);
  1093. lua_register(state, "SetQuestRepeatable", EQ2Emu_lua_SetQuestRepeatable);
  1094. lua_register(state, "AddWaypoint", EQ2Emu_lua_AddWaypoint);
  1095. lua_register(state, "RemoveWaypoint", EQ2Emu_lua_RemoveWaypoint);
  1096. lua_register(state, "SendWaypoints", EQ2Emu_lua_SendWaypoints);
  1097. lua_register(state, "AddWard", EQ2Emu_lua_AddWard);
  1098. lua_register(state, "AddToWard", EQ2Emu_lua_AddToWard);
  1099. lua_register(state, "RemoveWard", EQ2Emu_lua_RemoveWard);
  1100. lua_register(state, "GetWardAmountLeft", EQ2Emu_lua_GetWardAmountLeft);
  1101. lua_register(state, "GetWardValue", EQ2Emu_lua_GetWardValue);
  1102. lua_register(state, "SetTarget", EQ2Emu_lua_SetTarget);
  1103. lua_register(state, "IsPet", EQ2Emu_lua_IsPet);
  1104. lua_register(state, "GetOwner", EQ2Emu_lua_GetOwner);
  1105. lua_register(state, "SetInCombat", EQ2Emu_lua_SetInCombat);
  1106. lua_register(state, "CompareSpawns", EQ2Emu_lua_CompareSpawns);
  1107. lua_register(state, "ClearRunback", EQ2Emu_lua_ClearRunback);
  1108. lua_register(state, "Runback", EQ2Emu_lua_Runback);
  1109. lua_register(state, "GetRunbackDistance", EQ2Emu_lua_GetRunbackDistance);
  1110. lua_register(state, "IsCasting", EQ2Emu_lua_IsCasting);
  1111. lua_register(state, "IsMezzed", EQ2Emu_lua_IsMezzed);
  1112. lua_register(state, "IsStunned", EQ2Emu_lua_IsStunned);
  1113. lua_register(state, "IsMezzedOrStunned", EQ2Emu_lua_IsMezzedOrStunned);
  1114. lua_register(state, "ProcessSpell", EQ2Emu_lua_ProcessSpell);
  1115. lua_register(state, "ProcessMelee", EQ2Emu_lua_ProcessMelee);
  1116. lua_register(state, "HasRecovered", EQ2Emu_lua_HasRecovered);
  1117. lua_register(state, "GetEncounterSize", EQ2Emu_lua_GetEncounterSize);
  1118. lua_register(state, "GetMostHated", EQ2Emu_lua_GetMostHated);
  1119. lua_register(state, "ClearHate", EQ2Emu_lua_ClearHate);
  1120. lua_register(state, "ClearEncounter", EQ2Emu_lua_ClearEncounter);
  1121. lua_register(state, "GetEncounter", EQ2Emu_lua_GetEncounter);
  1122. lua_register(state, "GetHateList", EQ2Emu_lua_GetHateList);
  1123. lua_register(state, "HasGroup", EQ2Emu_lua_HasGroup);
  1124. lua_register(state, "HasSpellEffect", EQ2Emu_lua_HasSpellEffect);
  1125. lua_register(state, "SetSuccessTimer", EQ2Emu_lua_SetSuccessTimer);
  1126. lua_register(state, "SetFailureTimer", EQ2Emu_lua_SetFailureTimer);
  1127. lua_register(state, "IsGroundSpawn", EQ2Emu_lua_IsGroundSpawn);
  1128. lua_register(state, "CanHarvest", EQ2Emu_lua_CanHarvest);
  1129. lua_register(state, "SummonDumbFirePet", EQ2Emu_lua_SummonDumbFirePet);
  1130. lua_register(state, "GetSkillValue", EQ2Emu_lua_GetSkillValue);
  1131. lua_register(state, "GetSkillMaxValue", EQ2Emu_lua_GetSkillMaxValue);
  1132. lua_register(state, "GetSkillName", EQ2Emu_lua_GetSkillName);
  1133. lua_register(state, "SetSkillMaxValue", EQ2Emu_lua_SetSkillMaxValue);
  1134. lua_register(state, "SetSkillValue", EQ2Emu_lua_SetSkillValue);
  1135. lua_register(state, "GetSkill", EQ2Emu_lua_GetSkill);
  1136. lua_register(state, "GetSkillIDByName", EQ2Emu_lua_GetSkillIDByName);
  1137. lua_register(state, "HasSkill", EQ2Emu_lua_HasSkill);
  1138. lua_register(state, "AddSkill", EQ2Emu_lua_AddSkill);
  1139. lua_register(state, "IncreaseSkillCapsByType", EQ2Emu_lua_IncreaseSkillCapsByType);
  1140. lua_register(state, "RemoveSkill", EQ2Emu_lua_RemoveSkill);
  1141. lua_register(state, "AddProc", EQ2Emu_lua_AddProc);
  1142. lua_register(state, "RemoveProc", EQ2Emu_lua_RemoveProc);
  1143. lua_register(state, "Knockback", EQ2Emu_lua_Knockback);
  1144. lua_register(state, "IsEpic", EQ2Emu_lua_IsEpic);
  1145. lua_register(state, "IsHeroic", EQ2Emu_lua_IsHeroic);
  1146. lua_register(state, "ProcDamage", EQ2Emu_lua_ProcDamage);
  1147. lua_register(state, "LastSpellAttackHit", EQ2Emu_lua_LastSpellAttackHit);
  1148. lua_register(state, "IsBehind", EQ2Emu_lua_IsBehind);
  1149. lua_register(state, "IsFlanking", EQ2Emu_lua_IsFlanking);
  1150. lua_register(state, "AddSpellTimer", EQ2Emu_lua_AddSpellTimer);
  1151. lua_register(state, "GetItemCount", EQ2Emu_lua_GetItemCount);
  1152. lua_register(state, "SetItemCount", EQ2Emu_lua_SetItemCount);
  1153. lua_register(state, "Resurrect", EQ2Emu_lua_Resurrect);
  1154. lua_register(state, "BreatheUnderwater", EQ2Emu_lua_BreatheUnderwater);
  1155. lua_register(state, "BlurVision", EQ2Emu_lua_BlurVision);
  1156. lua_register(state, "SetVision", EQ2Emu_lua_SetVision);
  1157. lua_register(state, "GetItemSkillReq", EQ2Emu_lua_GetItemSkillReq);
  1158. lua_register(state, "SetSpeedMultiplier", EQ2Emu_lua_SetSpeedMultiplier);
  1159. lua_register(state, "SetIllusion", EQ2Emu_lua_SetIllusion);
  1160. lua_register(state, "ResetIllusion", EQ2Emu_lua_ResetIllusion);
  1161. lua_register(state, "AddThreatTransfer", EQ2Emu_lua_AddThreatTransfer);
  1162. lua_register(state, "RemoveThreatTransfer", EQ2Emu_lua_RemoveThreatTransfer);
  1163. lua_register(state, "CureByType", EQ2Emu_lua_CureByType);
  1164. lua_register(state, "CureByControlEffect", EQ2Emu_lua_CureByControlEffect);
  1165. lua_register(state, "AddSpawnSpellBonus", EQ2Emu_lua_AddSpawnSpellBonus);
  1166. lua_register(state, "RemoveSpawnSpellBonus", EQ2Emu_lua_RemoveSpawnSpellBonus);
  1167. lua_register(state, "CancelSpell", EQ2Emu_lua_CancelSpell);
  1168. lua_register(state, "RemoveStealth", EQ2Emu_lua_RemoveStealth);
  1169. lua_register(state, "RemoveInvis", EQ2Emu_lua_RemoveInvis);
  1170. lua_register(state, "StartHeroicOpportunity", EQ2Emu_lua_StartHeroicOpportunity);
  1171. lua_register(state, "CopySpawnAppearance", EQ2Emu_lua_CopySpawnAppearance);
  1172. lua_register(state, "SetSpellTriggerCount", EQ2Emu_lua_SetSpellTriggerCount);
  1173. lua_register(state, "GetSpellTriggerCount", EQ2Emu_lua_GetSpellTriggerCount);
  1174. lua_register(state, "RemoveTriggerFromSpell", EQ2Emu_lua_RemoveTriggerFromSpell);
  1175. lua_register(state, "HasSpellImmunity", EQ2Emu_lua_HasSpellImmunity);
  1176. lua_register(state, "AddImmunitySpell", EQ2Emu_lua_AddImmunitySpell);
  1177. lua_register(state, "RemoveImmunitySpell", EQ2Emu_lua_RemoveImmunitySpell);
  1178. lua_register(state, "SetSpellSnareValue", EQ2Emu_lua_SetSpellSnareValue);
  1179. lua_register(state, "CheckRaceType", EQ2Emu_lua_CheckRaceType);
  1180. lua_register(state, "GetRaceType", EQ2Emu_lua_GetRaceType);
  1181. lua_register(state, "GetRaceBaseType", EQ2Emu_lua_GetRaceBaseType);
  1182. lua_register(state, "GetQuestFlags", EQ2Emu_lua_GetQuestFlags);
  1183. lua_register(state, "SetQuestFlags", EQ2Emu_lua_SetQuestFlags);
  1184. lua_register(state, "SetQuestTimer", EQ2Emu_lua_SetQuestTimer);
  1185. lua_register(state, "RemoveQuestStep", EQ2Emu_lua_RemoveQuestStep);
  1186. lua_register(state, "ResetQuestStep", EQ2Emu_lua_ResetQuestStep);
  1187. lua_register(state, "SetQuestTimerComplete", EQ2Emu_lua_SetQuestTimerComplete);
  1188. lua_register(state, "AddQuestStepFailureAction", EQ2Emu_lua_AddQuestStepFailureAction);
  1189. lua_register(state, "SetStepFailed", EQ2Emu_lua_SetStepFailed);
  1190. lua_register(state, "GetQuestCompleteCount", EQ2Emu_lua_GetQuestCompleteCount);
  1191. lua_register(state, "SetServerVariable", EQ2Emu_lua_SetServerVariable);
  1192. lua_register(state, "GetServerVariable", EQ2Emu_lua_GetServerVariable);
  1193. lua_register(state, "HasLanguage", EQ2Emu_lua_HasLanguage);
  1194. lua_register(state, "AddLanguage", EQ2Emu_lua_AddLanguage);
  1195. lua_register(state, "IsNight", EQ2Emu_lua_IsNight);
  1196. lua_register(state, "AddMultiFloorLift", EQ2Emu_lua_AddMultiFloorLift);
  1197. lua_register(state, "StartAutoMount", EQ2Emu_lua_StartAutoMount);
  1198. lua_register(state, "EndAutoMount", EQ2Emu_lua_EndAutoMount);
  1199. lua_register(state, "IsOnAutoMount", EQ2Emu_lua_IsOnAutoMount);
  1200. lua_register(state, "SetPlayerHistory", EQ2Emu_lua_SetPlayerHistory);
  1201. lua_register(state, "GetPlayerHistory", EQ2Emu_lua_GetPlayerHistory);
  1202. lua_register(state, "SetGridID", EQ2Emu_lua_SetGridID);
  1203. lua_register(state, "GetQuestStepProgress", EQ2Emu_lua_GetQuestStepProgress);
  1204. lua_register(state, "SetPlayerLevel", EQ2Emu_lua_SetPlayerLevel);
  1205. lua_register(state, "AddCoin", EQ2Emu_lua_AddCoin);
  1206. lua_register(state, "RemoveCoin", EQ2Emu_lua_RemoveCoin);
  1207. lua_register(state, "GetPlayersInZone", EQ2Emu_lua_GetPlayersInZone);
  1208. lua_register(state, "SpawnGroupByID", EQ2Emu_lua_SpawnGroupByID);
  1209. lua_register(state, "SetSpawnAnimation", EQ2Emu_lua_SetSpawnAnimation);
  1210. lua_register(state, "GetClientVersion", EQ2Emu_lua_GetClientVersion);
  1211. lua_register(state, "GetItemID", EQ2Emu_lua_GetItemID);
  1212. lua_register(state, "IsEntity", EQ2Emu_lua_IsEntity);
  1213. lua_register(state, "GetOrigX", EQ2Emu_lua_GetOrigX);
  1214. lua_register(state, "GetOrigY", EQ2Emu_lua_GetOrigY);
  1215. lua_register(state, "GetOrigZ", EQ2Emu_lua_GetOrigZ);
  1216. lua_register(state, "GetPCTOfHP", EQ2Emu_lua_GetPCTOfHP);
  1217. lua_register(state, "GetPCTOfPower", EQ2Emu_lua_GetPCTOfPower);
  1218. lua_register(state, "GetBoundZoneID", EQ2Emu_lua_GetBoundZoneID);
  1219. lua_register(state, "Evac", EQ2Emu_lua_Evac);
  1220. lua_register(state, "GetSpellTier", EQ2Emu_lua_GetSpellTier);
  1221. lua_register(state, "GetSpellID", EQ2Emu_lua_GetSpellID);
  1222. lua_register(state, "StartTransmute", EQ2Emu_lua_StartTransmute);
  1223. lua_register(state, "CompleteTransmute", EQ2Emu_lua_CompleteTransmute);
  1224. lua_register(state, "ProcHate", EQ2Emu_lua_ProcHate);
  1225. lua_register(state, "GetRandomSpawnByID", EQ2Emu_lua_GetRandomSpawnByID);
  1226. lua_register(state, "ShowLootWindow", EQ2Emu_lua_ShowLootWindow);
  1227. lua_register(state, "AddPrimaryEntityCommandAllSpawns", EQ2Emu_lua_AddPrimaryEntityCommandAllSpawns);
  1228. lua_register(state, "InstructionWindow", EQ2Emu_lua_InstructionWindow);
  1229. lua_register(state, "InstructionWindowClose", EQ2Emu_lua_InstructionWindowClose);
  1230. lua_register(state, "InstructionWindowGoal", EQ2Emu_lua_InstructionWindowGoal);
  1231. lua_register(state, "ShowWindow", EQ2Emu_lua_ShowWindow);
  1232. lua_register(state, "FlashWindow", EQ2Emu_lua_FlashWindow);
  1233. lua_register(state, "EnableGameEvent", EQ2Emu_lua_EnableGameEvent);
  1234. lua_register(state, "GetTutorialStep", EQ2Emu_lua_GetTutorialStep);
  1235. lua_register(state, "SetTutorialStep", EQ2Emu_lua_SetTutorialStep);
  1236. lua_register(state, "DisplayText", EQ2Emu_lua_DisplayText);
  1237. lua_register(state, "GiveExp", EQ2Emu_lua_GiveExp);
  1238. lua_register(state, "CheckLOS", EQ2Emu_lua_CheckLOS);
  1239. lua_register(state, "CheckLOSByCoordinates", EQ2Emu_lua_CheckLOSByCoordinates);
  1240. lua_register(state, "SetZoneExpansionFlag", EQ2Emu_lua_SetZoneExpansionFlag);
  1241. lua_register(state, "GetZoneExpansionFlag", EQ2Emu_lua_GetZoneExpansionFlag);
  1242. lua_register(state, "SetZoneHolidayFlag", EQ2Emu_lua_SetZoneHolidayFlag);
  1243. lua_register(state, "GetZoneHolidayFlag", EQ2Emu_lua_GetZoneHolidayFlag);
  1244. lua_register(state, "SetCanBind", EQ2Emu_lua_SetCanBind);
  1245. lua_register(state, "GetCanBind", EQ2Emu_lua_GetCanBind);
  1246. lua_register(state, "GetCanGate", EQ2Emu_lua_GetCanGate);
  1247. lua_register(state, "SetCanGate", EQ2Emu_lua_SetCanGate);
  1248. lua_register(state, "AddSpawnProximity", EQ2Emu_lua_AddSpawnProximity);
  1249. lua_register(state, "CanSeeInvis", EQ2Emu_lua_CanSeeInvis);
  1250. lua_register(state, "SetSeeInvis", EQ2Emu_lua_SetSeeInvis);
  1251. lua_register(state, "SetSeeHide", EQ2Emu_lua_SetSeeHide);
  1252. lua_register(state, "SetAccessToEntityCommand", EQ2Emu_lua_SetAccessToEntityCommand);
  1253. lua_register(state, "SetAccessToEntityCommandByCharID", EQ2Emu_lua_SetAccessToEntityCommandByCharID);
  1254. lua_register(state, "RemovePrimaryEntityCommand", EQ2Emu_lua_RemovePrimaryEntityCommand);
  1255. lua_register(state, "SendUpdateDefaultCommand", EQ2Emu_lua_SendUpdateDefaultCommand);
  1256. lua_register(state, "SendTransporters", EQ2Emu_lua_SendTransporters);
  1257. lua_register(state, "SetTemporaryTransportID", EQ2Emu_lua_SetTemporaryTransportID);
  1258. lua_register(state, "GetTemporaryTransportID", EQ2Emu_lua_GetTemporaryTransportID);
  1259. lua_register(state, "SetAlignment", EQ2Emu_lua_SetAlignment);
  1260. lua_register(state, "GetAlignment", EQ2Emu_lua_GetAlignment);
  1261. lua_register(state, "GetSpell", EQ2Emu_lua_GetSpell);
  1262. lua_register(state, "GetSpellData", EQ2Emu_lua_GetSpellData);
  1263. lua_register(state, "SetSpellData", EQ2Emu_lua_SetSpellData);
  1264. lua_register(state, "CastCustomSpell", EQ2Emu_lua_CastCustomSpell);
  1265. lua_register(state, "SetSpellDataIndex", EQ2Emu_lua_SetSpellDataIndex);
  1266. lua_register(state, "GetSpellDataIndex", EQ2Emu_lua_GetSpellDataIndex);
  1267. lua_register(state, "SetSpellDisplayEffect", EQ2Emu_lua_SetSpellDisplayEffect);
  1268. lua_register(state, "GetSpellDisplayEffect", EQ2Emu_lua_GetSpellDisplayEffect);
  1269. lua_register(state, "InWater", EQ2Emu_lua_InWater);
  1270. lua_register(state, "InLava", EQ2Emu_lua_InLava);
  1271. lua_register(state, "DamageSpawn", EQ2Emu_lua_DamageSpawn);
  1272. lua_register(state, "IsInvulnerable", EQ2Emu_lua_IsInvulnerable);
  1273. lua_register(state, "SetInvulnerable", EQ2Emu_lua_SetInvulnerable);
  1274. lua_register(state, "GetRuleFlagBool", EQ2Emu_lua_GetRuleFlagBool);
  1275. lua_register(state, "GetRuleFlagInt32", EQ2Emu_lua_GetRuleFlagInt32);
  1276. lua_register(state, "GetRuleFlagFloat", EQ2Emu_lua_GetRuleFlagFloat);
  1277. lua_register(state, "GetAAInfo", EQ2Emu_lua_GetAAInfo);
  1278. lua_register(state, "SetAAInfo", EQ2Emu_lua_SetAAInfo);
  1279. lua_register(state, "AddMasterTitle", EQ2Emu_lua_AddMasterTitle);
  1280. lua_register(state, "AddCharacterTitle", EQ2Emu_lua_AddCharacterTitle);
  1281. lua_register(state, "SetCharacterTitleSuffix", EQ2Emu_lua_SetCharacterTitleSuffix);
  1282. lua_register(state, "SetCharacterTitlePrefix", EQ2Emu_lua_SetCharacterTitlePrefix);
  1283. lua_register(state, "ResetCharacterTitleSuffix", EQ2Emu_lua_ResetCharacterTitleSuffix);
  1284. lua_register(state, "ResetCharacterTitlePrefix", EQ2Emu_lua_ResetCharacterTitlePrefix);
  1285. lua_register(state, "GetInfoStructString", EQ2Emu_lua_GetInfoStructString);
  1286. lua_register(state, "GetInfoStructUInt", EQ2Emu_lua_GetInfoStructUInt);
  1287. lua_register(state, "GetInfoStructSInt", EQ2Emu_lua_GetInfoStructSInt);
  1288. lua_register(state, "GetInfoStructFloat", EQ2Emu_lua_GetInfoStructFloat);
  1289. lua_register(state, "SetInfoStructString", EQ2Emu_lua_SetInfoStructString);
  1290. lua_register(state, "SetInfoStructUInt", EQ2Emu_lua_SetInfoStructUInt);
  1291. lua_register(state, "SetInfoStructSInt", EQ2Emu_lua_SetInfoStructSInt);
  1292. lua_register(state, "SetInfoStructFloat", EQ2Emu_lua_SetInfoStructFloat);
  1293. lua_register(state, "SetCharSheetChanged", EQ2Emu_lua_SetCharSheetChanged);
  1294. lua_register(state, "AddPlayerMail", EQ2Emu_lua_AddPlayerMail);
  1295. lua_register(state, "AddPlayerMailByCharID", EQ2Emu_lua_AddPlayerMailByCharID);
  1296. lua_register(state, "OpenDoor", EQ2Emu_lua_OpenDoor);
  1297. lua_register(state, "CloseDoor", EQ2Emu_lua_CloseDoor);
  1298. lua_register(state, "IsOpen", EQ2Emu_lua_IsOpen);
  1299. lua_register(state, "MakeRandomInt", EQ2Emu_lua_MakeRandomInt);
  1300. lua_register(state, "MakeRandomFloat", EQ2Emu_lua_MakeRandomFloat);
  1301. lua_register(state, "AddIconValue", EQ2Emu_lua_AddIconValue);
  1302. lua_register(state, "RemoveIconValue", EQ2Emu_lua_RemoveIconValue);
  1303. lua_register(state, "GetShardID", EQ2Emu_lua_GetShardID);
  1304. lua_register(state, "GetShardCharID", EQ2Emu_lua_GetShardCharID);
  1305. lua_register(state, "GetShardCreatedTimestamp", EQ2Emu_lua_GetShardCreatedTimestamp);
  1306. lua_register(state, "DeleteDBShardID", EQ2Emu_lua_DeleteDBShardID);
  1307. lua_register(state, "PauseMovement", EQ2Emu_lua_PauseMovement);
  1308. lua_register(state, "StopMovement", EQ2Emu_lua_StopMovement);
  1309. lua_register(state, "GetArrowColor", EQ2Emu_lua_GetArrowColor);
  1310. lua_register(state, "GetTSArrowColor", EQ2Emu_lua_GetTSArrowColor);
  1311. lua_register(state, "GetSpawnByRailID", EQ2Emu_lua_GetSpawnByRailID);
  1312. lua_register(state, "SetRailID", EQ2Emu_lua_SetRailID);
  1313. lua_register(state, "IsZoneLoading", EQ2Emu_lua_IsZoneLoading);
  1314. lua_register(state, "IsRunning", EQ2Emu_lua_IsRunning);
  1315. lua_register(state, "GetZoneLockoutTimer", EQ2Emu_lua_GetZoneLockoutTimer);
  1316. lua_register(state, "SetWorldTime", EQ2Emu_lua_SetWorldTime);
  1317. lua_register(state, "GetWorldTimeYear", EQ2Emu_lua_GetWorldTimeYear);
  1318. lua_register(state, "GetWorldTimeMonth", EQ2Emu_lua_GetWorldTimeMonth);
  1319. lua_register(state, "GetWorldTimeHour", EQ2Emu_lua_GetWorldTimeHour);
  1320. lua_register(state, "GetWorldTimeMinute", EQ2Emu_lua_GetWorldTimeMinute);
  1321. lua_register(state, "SendTimeUpdate", EQ2Emu_lua_SendTimeUpdate);
  1322. lua_register(state, "GetLootTier", EQ2Emu_lua_GetLootTier);
  1323. lua_register(state, "SetLootTier", EQ2Emu_lua_SetLootTier);
  1324. lua_register(state, "GetLootDropType", EQ2Emu_lua_GetLootDropType);
  1325. lua_register(state, "SetLootDropType", EQ2Emu_lua_SetLootDropType);
  1326. }
  1327. void LuaInterface::LogError(const char* error, ...) {
  1328. va_list argptr;
  1329. char buffer[4096];
  1330. va_start(argptr, error);
  1331. vsnprintf(buffer, sizeof(buffer), error, argptr);
  1332. va_end(argptr);
  1333. SimpleLogError(buffer);
  1334. }
  1335. void LuaInterface::SimpleLogError(const char* error) {
  1336. ProcessErrorMessage(error);
  1337. LogWrite(LUA__ERROR, 0, "LUA", "%s", error);
  1338. }
  1339. void LuaInterface::ResetFunctionStack(lua_State* state) {
  1340. lua_settop(state, 0);
  1341. }
  1342. void LuaInterface::AddUserDataPtr(LUAUserData* data) {
  1343. MLUAUserData.lock();
  1344. user_data[data] = Timer::GetCurrentTime2() + 300000; //allow a function to use this pointer for 5 minutes
  1345. MLUAUserData.unlock();
  1346. }
  1347. void LuaInterface::DeletePendingSpells(bool all) {
  1348. MSpellDelete.lock();
  1349. if (spells_pending_delete.size() > 0) {
  1350. int32 time = Timer::GetCurrentTime2();
  1351. map<LuaSpell*, int32>::iterator itr;
  1352. vector<LuaSpell*> tmp_deletes;
  1353. vector<LuaSpell*>::iterator del_itr;
  1354. for (itr = spells_pending_delete.begin(); itr != spells_pending_delete.end(); itr++) {
  1355. if (all || time >= itr->second)
  1356. tmp_deletes.push_back(itr->first);
  1357. }
  1358. LuaSpell* spell = 0;
  1359. for (del_itr = tmp_deletes.begin(); del_itr != tmp_deletes.end(); del_itr++) {
  1360. spell = *del_itr;
  1361. if (spell->caster) {
  1362. spell->caster->GetZone()->GetSpellProcess()->DeleteActiveSpell(spell);
  1363. }
  1364. else if(spell->targets.size() > 0) {
  1365. spell->MSpellTargets.readlock(__FUNCTION__, __LINE__);
  1366. for (int8 i = 0; i < spell->targets.size(); i++) {
  1367. Spawn* target = spell->caster->GetZone()->GetSpawnByID(spell->targets.at(i));
  1368. if (!target || !target->IsEntity())
  1369. continue;
  1370. target->GetZone()->GetSpellProcess()->DeleteActiveSpell(spell);
  1371. }
  1372. spell->MSpellTargets.releasereadlock(__FUNCTION__, __LINE__);
  1373. }
  1374. spells_pending_delete.erase(spell);
  1375. if (spell->spell->IsCopiedSpell())
  1376. {
  1377. RemoveCustomSpell(spell->spell->GetSpellID());
  1378. safe_delete(spell->spell);
  1379. }
  1380. safe_delete(spell);
  1381. }
  1382. }
  1383. MSpellDelete.unlock();
  1384. }
  1385. void LuaInterface::DeletePendingSpell(LuaSpell* spell) {
  1386. MSpellDelete.lock();
  1387. if (spells_pending_delete.size() > 0) {
  1388. map<LuaSpell*, int32>::iterator itr = spells_pending_delete.find(spell);
  1389. if (itr != spells_pending_delete.end())
  1390. spells_pending_delete.erase(itr);
  1391. }
  1392. MSpellDelete.unlock();
  1393. }
  1394. void LuaInterface::DeleteUserDataPtrs(bool all) {
  1395. MLUAUserData.lock();
  1396. if(user_data.size() > 0){
  1397. map<LUAUserData*, int32>::iterator itr;
  1398. int32 time = Timer::GetCurrentTime2();
  1399. vector<LUAUserData*> tmp_deletes;
  1400. vector<LUAUserData*>::iterator del_itr;
  1401. for(itr = user_data.begin(); itr != user_data.end(); itr++){
  1402. if(all || time >= itr->second)
  1403. tmp_deletes.push_back(itr->first);
  1404. }
  1405. LUAUserData* data = 0;
  1406. for(del_itr = tmp_deletes.begin(); del_itr != tmp_deletes.end(); del_itr++){
  1407. data = *del_itr;
  1408. user_data.erase(data);
  1409. safe_delete(data);
  1410. }
  1411. }
  1412. MLUAUserData.unlock();
  1413. }
  1414. Spawn* LuaInterface::GetSpawn(lua_State* state, int8 arg_num) {
  1415. Spawn* ret = 0;
  1416. if (lua_islightuserdata(state, arg_num)){
  1417. LUAUserData* data = (LUAUserData*)lua_touserdata(state, arg_num);
  1418. if(!data || !data->IsCorrectlyInitialized()){
  1419. LogError("%s: GetSpawn error while processing %s", GetScriptName(state), lua_tostring(state, -1));
  1420. }
  1421. else if(!data->IsSpawn()){
  1422. lua_Debug ar;
  1423. lua_getstack (state, 1, &ar);
  1424. lua_getinfo(state, "Sln", &ar);
  1425. LogError("%s: Invalid data type used for GetSpawn in %s (line %d)", GetScriptName(state), ar.source, ar.currentline);
  1426. }
  1427. else
  1428. ret = data->spawn;
  1429. }
  1430. return ret;
  1431. }
  1432. vector<ConversationOption>* LuaInterface::GetConversation(lua_State* state, int8 arg_num) {
  1433. vector<ConversationOption>* ret = 0;
  1434. if(lua_islightuserdata(state, arg_num)){
  1435. LUAUserData* data = (LUAUserData*)lua_touserdata(state, arg_num);
  1436. if(!data || !data->IsCorrectlyInitialized()){
  1437. LogError("%s: GetConversation error while processing %s", GetScriptName(state), lua_tostring(state, -1));
  1438. }
  1439. else if(!data->IsConversationOption()){
  1440. lua_Debug ar;
  1441. lua_getstack (state, 1, &ar);
  1442. lua_getinfo(state, "Sln", &ar);
  1443. LogError("%s: Invalid data type used for GetConversation in %s (line %d)", GetScriptName(state), ar.source, ar.currentline);
  1444. }
  1445. else
  1446. ret = data->conversation_options;
  1447. }
  1448. return ret;
  1449. }
  1450. vector<Spawn*>* LuaInterface::GetSpawnList(lua_State* state, int8 arg_num) {
  1451. vector<Spawn*>* ret = 0;
  1452. if (lua_islightuserdata(state, arg_num)) {
  1453. LUAUserData* data = (LUAUserData*)lua_touserdata(state, arg_num);
  1454. if (!data || !data->IsCorrectlyInitialized()) {
  1455. LogError("%s: GetSpawnList error while processing %s", GetScriptName(state), lua_tostring(state, -1));
  1456. }
  1457. else if (!data->IsSpawnList()) {
  1458. lua_Debug ar;
  1459. lua_getstack(state, 1, &ar);
  1460. lua_getinfo(state, "Sln", &ar);
  1461. LogError("%s: Invalid data type used for GetSpawnList in %s (line %d)", GetScriptName(state), ar.source, ar.currentline);
  1462. }
  1463. else
  1464. ret = data->spawn_list;
  1465. }
  1466. return ret;
  1467. }
  1468. vector<OptionWindowOption>* LuaInterface::GetOptionWindow(lua_State* state, int8 arg_num) {
  1469. vector<OptionWindowOption>* ret = 0;
  1470. if(lua_islightuserdata(state, arg_num)){
  1471. LUAUserData* data = (LUAUserData*)lua_touserdata(state, arg_num);
  1472. if(!data || !data->IsCorrectlyInitialized()){
  1473. LogError("%s: GetOptionWindow error while processing %s", GetScriptName(state), lua_tostring(state, -1));
  1474. }
  1475. else if(!data->IsOptionWindow()){
  1476. lua_Debug ar;
  1477. lua_getstack (state, 1, &ar);
  1478. lua_getinfo(state, "Sln", &ar);
  1479. LogError("%s: Invalid data type used for GetOptionWindow in %s (line %d)", GetScriptName(state), ar.source, ar.currentline);
  1480. }
  1481. else
  1482. ret = data->option_window_option;
  1483. }
  1484. return ret;
  1485. }
  1486. Quest* LuaInterface::GetQuest(lua_State* state, int8 arg_num) {
  1487. Quest* ret = 0;
  1488. if(lua_islightuserdata(state, arg_num)){
  1489. LUAUserData* data = (LUAUserData*)lua_touserdata(state, arg_num);
  1490. if(!data || !data->IsCorrectlyInitialized()){
  1491. LogError("%s: GetQuest error while processing %s", GetScriptName(state), lua_tostring(state, 0));
  1492. }
  1493. else if(!data->IsQuest()){
  1494. lua_Debug ar;
  1495. lua_getstack (state, 1, &ar);
  1496. lua_getinfo(state, "Sln", &ar);
  1497. LogError("%s: Invalid data type used for GetQuest in %s (line %d)", GetScriptName(state), ar.source, ar.currentline);
  1498. }
  1499. else
  1500. ret = data->quest;
  1501. }
  1502. return ret;
  1503. }
  1504. Item* LuaInterface::GetItem(lua_State* state, int8 arg_num) {
  1505. Item* ret = 0;
  1506. if(lua_islightuserdata(state, arg_num)){
  1507. LUAUserData* data = (LUAUserData*)lua_touserdata(state, arg_num);
  1508. if(!data || !data->IsCorrectlyInitialized()){
  1509. LogError("%s: GetItem error while processing %s", GetScriptName(state), lua_tostring(state, 0));
  1510. }
  1511. else if(!data->IsItem()){
  1512. lua_Debug ar;
  1513. lua_getstack (state, 1, &ar);
  1514. lua_getinfo(state, "Sln", &ar);
  1515. LogError("%s: Invalid data type used for GetItem in %s (line %d)", GetScriptName(state), ar.source, ar.currentline);
  1516. }
  1517. else
  1518. ret = data->item;
  1519. }
  1520. return ret;
  1521. }
  1522. Skill* LuaInterface::GetSkill(lua_State* state, int8 arg_num) {
  1523. Skill* ret = 0;
  1524. if (lua_islightuserdata(state, arg_num)) {
  1525. LUAUserData* data = (LUAUserData*)lua_touserdata(state, arg_num);
  1526. if (!data || !data->IsCorrectlyInitialized()) {
  1527. LogError("%s: GetSkill error while processing %s", GetScriptName(state), lua_tostring(state, 0));
  1528. }
  1529. else if (!data->IsSkill()) {
  1530. lua_Debug ar;
  1531. lua_getstack(state, 1, &ar);
  1532. lua_getinfo(state, "Sln", &ar);
  1533. LogError("%s: Invalid data type used for GetSkill in %s (line %d)", GetScriptName(state), ar.source, ar.currentline);
  1534. }
  1535. else
  1536. ret = data->skill;
  1537. }
  1538. return ret;
  1539. }
  1540. LuaSpell* LuaInterface::GetSpell(lua_State* state, int8 arg_num) {
  1541. LuaSpell* ret = 0;
  1542. if (lua_islightuserdata(state, arg_num)) {
  1543. LUAUserData* data = (LUAUserData*)lua_touserdata(state, arg_num);
  1544. if (!data || !data->IsCorrectlyInitialized()) {
  1545. LogError("%s: GetSpell error while processing %s", GetScriptName(state), lua_tostring(state, 0));
  1546. }
  1547. else if (!data->IsSpell()) {
  1548. lua_Debug ar;
  1549. lua_getstack(state, 1, &ar);
  1550. lua_getinfo(state, "Sln", &ar);
  1551. LogError("%s: Invalid data type used for GetSpell in %s (line %d)", GetScriptName(state), ar.source, ar.currentline);
  1552. }
  1553. else
  1554. ret = data->spell;
  1555. }
  1556. return ret;
  1557. }
  1558. ZoneServer* LuaInterface::GetZone(lua_State* state, int8 arg_num) {
  1559. ZoneServer* ret = 0;
  1560. if(lua_islightuserdata(state, arg_num)){
  1561. LUAUserData* data = (LUAUserData*)lua_touserdata(state, arg_num);
  1562. if(!data || !data->IsCorrectlyInitialized()){
  1563. LogError("%s: GetZone error while processing %s", GetScriptName(state), lua_tostring(state, -1));
  1564. }
  1565. else if(!data->IsZone()){
  1566. lua_Debug ar;
  1567. lua_getstack (state, 1, &ar);
  1568. lua_getinfo(state, "Sln", &ar);
  1569. LogError("%s: Invalid data type used for GetZone in %s (line %d)", GetScriptName(state), ar.source, ar.currentline);
  1570. }
  1571. else
  1572. ret = data->zone;
  1573. }
  1574. return ret;
  1575. }
  1576. sint64 LuaInterface::GetSInt64Value(lua_State* state, int8 arg_num) {
  1577. sint64 val = 0;
  1578. if(lua_isnumber(state, arg_num)){
  1579. val = (sint64)lua_tointeger(state, arg_num);
  1580. }
  1581. return val;
  1582. }
  1583. int64 LuaInterface::GetInt64Value(lua_State* state, int8 arg_num) {
  1584. int64 val = 0;
  1585. if(lua_isnumber(state, arg_num)){
  1586. val = (int64)lua_tonumber(state, arg_num);
  1587. }
  1588. return val;
  1589. }
  1590. sint32 LuaInterface::GetSInt32Value(lua_State* state, int8 arg_num) {
  1591. sint32 val = 0;
  1592. if(lua_isnumber(state, arg_num)){
  1593. val = lua_tointeger(state, arg_num);
  1594. }
  1595. return val;
  1596. }
  1597. int32 LuaInterface::GetInt32Value(lua_State* state, int8 arg_num) {
  1598. int32 val = 0;
  1599. if(lua_isnumber(state, arg_num)){
  1600. val = (int32)lua_tonumber(state, arg_num);
  1601. }
  1602. return val;
  1603. }
  1604. int16 LuaInterface::GetInt16Value(lua_State* state, int8 arg_num) {
  1605. int16 val = 0;
  1606. if(lua_isnumber(state, arg_num)){
  1607. val = lua_tointeger(state, arg_num);
  1608. }
  1609. return val;
  1610. }
  1611. int8 LuaInterface::GetInt8Value(lua_State* state, int8 arg_num) {
  1612. int8 val = 0;
  1613. if(lua_isnumber(state, arg_num)){
  1614. val = lua_tointeger(state, arg_num);
  1615. }
  1616. return val;
  1617. }
  1618. float LuaInterface::GetFloatValue(lua_State* state, int8 arg_num) {
  1619. float val = 0;
  1620. if(lua_isnumber(state, arg_num))
  1621. val = (float)lua_tonumber(state, arg_num);
  1622. return val;
  1623. }
  1624. string LuaInterface::GetStringValue(lua_State* state, int8 arg_num) {
  1625. string val;
  1626. if(lua_isstring(state, arg_num)){
  1627. size_t size = 0;
  1628. const char* str = lua_tolstring(state, arg_num, &size);
  1629. if(str)
  1630. val = string(str);
  1631. }
  1632. return val;
  1633. }
  1634. bool LuaInterface::GetBooleanValue(lua_State* state, int8 arg_num) {
  1635. return lua_toboolean(state, arg_num) == 1;
  1636. }
  1637. void LuaInterface::SetStringValue(lua_State* state, const char* value) {
  1638. lua_pushstring(state, value);
  1639. }
  1640. void LuaInterface::SetBooleanValue(lua_State* state, bool value) {
  1641. lua_pushboolean(state, value);
  1642. }
  1643. void LuaInterface::SetFloatValue(lua_State* state, float value) {
  1644. lua_pushnumber(state, value);
  1645. }
  1646. void LuaInterface::SetInt32Value(lua_State* state, int32 value) {
  1647. lua_pushinteger(state, value);
  1648. }
  1649. void LuaInterface::SetSInt32Value(lua_State* state, sint32 value) {
  1650. lua_pushinteger(state, value);
  1651. }
  1652. void LuaInterface::SetInt64Value(lua_State* state, int64 value) {
  1653. lua_pushinteger(state, value);
  1654. }
  1655. void LuaInterface::SetSInt64Value(lua_State* state, sint64 value) {
  1656. lua_pushinteger(state, value);
  1657. }
  1658. void LuaInterface::SetSpawnValue(lua_State* state, Spawn* spawn) {
  1659. LUASpawnWrapper* spawn_wrapper = new LUASpawnWrapper();
  1660. spawn_wrapper->spawn = spawn;
  1661. AddUserDataPtr(spawn_wrapper);
  1662. lua_pushlightuserdata(state, spawn_wrapper);
  1663. }
  1664. void LuaInterface::SetSpawnListValue(lua_State* state, vector<Spawn*>* spawnList) {
  1665. LUASpawnListWrapper* spawnList_wrapper = new LUASpawnListWrapper();
  1666. spawnList_wrapper->spawn_list = spawnList;
  1667. AddUserDataPtr(spawnList_wrapper);
  1668. lua_pushlightuserdata(state, spawnList_wrapper);
  1669. }
  1670. void LuaInterface::SetConversationValue(lua_State* state, vector<ConversationOption>* conversation) {
  1671. LUAConversationOptionWrapper* conv_wrapper = new LUAConversationOptionWrapper();
  1672. conv_wrapper->conversation_options = conversation;
  1673. AddUserDataPtr(conv_wrapper);
  1674. lua_pushlightuserdata(state, conv_wrapper);
  1675. }
  1676. void LuaInterface::SetOptionWindowValue(lua_State* state, vector<OptionWindowOption>* optionWindow) {
  1677. LUAOptionWindowWrapper* option_wrapper = new LUAOptionWindowWrapper();
  1678. option_wrapper->option_window_option = optionWindow;
  1679. AddUserDataPtr(option_wrapper);
  1680. lua_pushlightuserdata(state, option_wrapper);
  1681. }
  1682. void LuaInterface::SetItemValue(lua_State* state, Item* item) {
  1683. LUAItemWrapper* item_wrapper = new LUAItemWrapper();
  1684. item_wrapper->item = item;
  1685. AddUserDataPtr(item_wrapper);
  1686. lua_pushlightuserdata(state, item_wrapper);
  1687. }
  1688. void LuaInterface::SetSkillValue(lua_State* state, Skill* skill) {
  1689. LUASkillWrapper* skill_wrapper = new LUASkillWrapper();
  1690. skill_wrapper->skill = skill;
  1691. AddUserDataPtr(skill_wrapper);
  1692. lua_pushlightuserdata(state, skill_wrapper);
  1693. }
  1694. void LuaInterface::SetQuestValue(lua_State* state, Quest* quest) {
  1695. LUAQuestWrapper* quest_wrapper = new LUAQuestWrapper();
  1696. quest_wrapper->quest = quest;
  1697. AddUserDataPtr(quest_wrapper);
  1698. lua_pushlightuserdata(state, quest_wrapper);
  1699. }
  1700. void LuaInterface::SetZoneValue(lua_State* state, ZoneServer* zone) {
  1701. LUAZoneWrapper* zone_wrapper = new LUAZoneWrapper();
  1702. zone_wrapper->zone = zone;
  1703. AddUserDataPtr(zone_wrapper);
  1704. lua_pushlightuserdata(state, zone_wrapper);
  1705. }
  1706. void LuaInterface::SetSpellValue(lua_State* state, LuaSpell* spell) {
  1707. LUASpellWrapper* spell_wrapper = new LUASpellWrapper();
  1708. spell_wrapper->spell = spell;
  1709. AddUserDataPtr(spell_wrapper);
  1710. lua_pushlightuserdata(state, spell_wrapper);
  1711. }
  1712. LuaSpell* LuaInterface::GetSpell(const char* name) {
  1713. string lua_script = string(name);
  1714. if (lua_script.find(".lua") == string::npos)
  1715. lua_script.append(".lua");
  1716. if(spells.count(lua_script) > 0)
  1717. {
  1718. LogWrite(LUA__DEBUG, 0, "LUA", "Found LUA Spell Script: '%s'", lua_script.c_str());
  1719. LuaSpell* spell = spells[lua_script];
  1720. LuaSpell* new_spell = new LuaSpell;
  1721. new_spell->state = spell->state;
  1722. new_spell->file_name = string(spell->file_name);
  1723. new_spell->timer = spell->timer;
  1724. new_spell->timer.Disable();
  1725. new_spell->resisted = false;
  1726. new_spell->interrupted = false;
  1727. new_spell->crit = false;
  1728. new_spell->last_spellattack_hit = false;
  1729. new_spell->MSpellTargets.SetName("LuaSpell.MSpellTargets");
  1730. new_spell->cancel_after_all_triggers = false;
  1731. new_spell->num_triggers = 0;
  1732. new_spell->num_calls = 0;
  1733. new_spell->is_recast_timer = false;
  1734. new_spell->had_triggers = false;
  1735. new_spell->had_dmg_remaining = false;
  1736. new_spell->slot_pos = 0;
  1737. new_spell->damage_remaining = 0;
  1738. new_spell->effect_bitmask = 0;
  1739. new_spell->caster = 0;
  1740. new_spell->initial_target = 0;
  1741. new_spell->spell = 0;
  1742. new_spell->restored = false;
  1743. new_spell->initial_caster_char_id = 0;
  1744. new_spell->initial_target_char_id = 0;
  1745. return new_spell;
  1746. }
  1747. else{
  1748. LogWrite(LUA__ERROR, 0, "LUA", "Error LUA Spell Script: '%s'", name);
  1749. return 0;
  1750. }
  1751. }
  1752. Mutex* LuaInterface::GetItemScriptMutex(const char* name) {
  1753. Mutex* mutex = 0;
  1754. if(item_scripts_mutex.count(name) > 0)
  1755. mutex = item_scripts_mutex[name];
  1756. if(!mutex){
  1757. mutex = new Mutex();
  1758. item_scripts_mutex[name] = mutex;
  1759. }
  1760. return mutex;
  1761. }
  1762. Mutex* LuaInterface::GetSpawnScriptMutex(const char* name) {
  1763. Mutex* mutex = 0;
  1764. if(spawn_scripts_mutex.count(string(name)) > 0)
  1765. mutex = spawn_scripts_mutex[name];
  1766. if(!mutex){
  1767. mutex = new Mutex();
  1768. spawn_scripts_mutex[name] = mutex;
  1769. }
  1770. return mutex;
  1771. }
  1772. Mutex* LuaInterface::GetZoneScriptMutex(const char* name) {
  1773. Mutex* mutex = 0;
  1774. if(zone_scripts_mutex.count(name) > 0)
  1775. mutex = zone_scripts_mutex[name];
  1776. if(!mutex){
  1777. mutex = new Mutex();
  1778. zone_scripts_mutex[name] = mutex;
  1779. }
  1780. return mutex;
  1781. }
  1782. Mutex* LuaInterface::GetRegionScriptMutex(const char* name) {
  1783. Mutex* mutex = 0;
  1784. if(region_scripts_mutex.count(name) > 0)
  1785. mutex = region_scripts_mutex[name];
  1786. if(!mutex){
  1787. mutex = new Mutex();
  1788. region_scripts_mutex[name] = mutex;
  1789. }
  1790. return mutex;
  1791. }
  1792. void LuaInterface::UseItemScript(const char* name, lua_State* state, bool val) {
  1793. MItemScripts.writelock(__FUNCTION__, __LINE__);
  1794. item_scripts[name][state] = val;
  1795. item_inverse_scripts[state] = name;
  1796. MItemScripts.releasewritelock(__FUNCTION__, __LINE__);
  1797. }
  1798. void LuaInterface::UseSpawnScript(const char* name, lua_State* state, bool val) {
  1799. MSpawnScripts.writelock(__FUNCTION__, __LINE__);
  1800. spawn_scripts[name][state] = val;
  1801. spawn_inverse_scripts[state] = name;
  1802. MSpawnScripts.releasewritelock(__FUNCTION__, __LINE__);
  1803. }
  1804. void LuaInterface::UseZoneScript(const char* name, lua_State* state, bool val) {
  1805. MZoneScripts.writelock(__FUNCTION__, __LINE__);
  1806. zone_scripts[name][state] = val;
  1807. zone_inverse_scripts[state] = name;
  1808. MZoneScripts.releasewritelock(__FUNCTION__, __LINE__);
  1809. }
  1810. void LuaInterface::UseRegionScript(const char* name, lua_State* state, bool val) {
  1811. MRegionScripts.writelock(__FUNCTION__, __LINE__);
  1812. region_scripts[name][state] = val;
  1813. region_inverse_scripts[state] = name;
  1814. MRegionScripts.releasewritelock(__FUNCTION__, __LINE__);
  1815. }
  1816. lua_State* LuaInterface::GetItemScript(const char* name, bool create_new, bool use) {
  1817. map<string, map<lua_State*, bool> >::iterator itr;
  1818. map<lua_State*, bool>::iterator item_script_itr;
  1819. lua_State* ret = 0;
  1820. Mutex* mutex = 0;
  1821. itr = item_scripts.find(name);
  1822. if(itr != item_scripts.end()) {
  1823. mutex = GetItemScriptMutex(name);
  1824. mutex->readlock(__FUNCTION__, __LINE__);
  1825. for(item_script_itr = itr->second.begin(); item_script_itr != itr->second.end(); item_script_itr++){
  1826. if(!item_script_itr->second){ //not in use
  1827. ret = item_script_itr->first;
  1828. if (use)
  1829. {
  1830. item_script_itr->second = true;
  1831. break; // don't keep iterating, we already have our result
  1832. }
  1833. }
  1834. }
  1835. mutex->releasereadlock(__FUNCTION__, __LINE__);
  1836. }
  1837. if(!ret && create_new){
  1838. if(name && LoadItemScript(name))
  1839. ret = GetItemScript(name, create_new, use);
  1840. else{
  1841. LogError("Error LUA Item Script '%s'", name);
  1842. return 0;
  1843. }
  1844. }
  1845. return ret;
  1846. }
  1847. lua_State* LuaInterface::GetSpawnScript(const char* name, bool create_new, bool use) {
  1848. if (lua_system_reloading)
  1849. return 0;
  1850. map<string, map<lua_State*, bool> >::iterator itr;
  1851. map<lua_State*, bool>::iterator spawn_script_itr;
  1852. lua_State* ret = 0;
  1853. Mutex* mutex = 0;
  1854. itr = spawn_scripts.find(name);
  1855. if(itr != spawn_scripts.end()) {
  1856. mutex = GetSpawnScriptMutex(name);
  1857. mutex->readlock(__FUNCTION__, __LINE__);
  1858. for(spawn_script_itr = itr->second.begin(); spawn_script_itr != itr->second.end(); spawn_script_itr++){
  1859. if(!spawn_script_itr->second){ //not in use
  1860. ret = spawn_script_itr->first;
  1861. if (use)
  1862. {
  1863. spawn_script_itr->second = true;
  1864. break; // don't keep iterating, we already have our result
  1865. }
  1866. }
  1867. }
  1868. mutex->releasereadlock(__FUNCTION__, __LINE__);
  1869. }
  1870. if(!ret && create_new){
  1871. if(name && LoadSpawnScript(name))
  1872. ret = GetSpawnScript(name, create_new, use);
  1873. else{
  1874. LogError("Error LUA Spawn Script '%s'", name);
  1875. return 0;
  1876. }
  1877. }
  1878. return ret;
  1879. }
  1880. lua_State* LuaInterface::GetZoneScript(const char* name, bool create_new, bool use) {
  1881. map<string, map<lua_State*, bool> >::iterator itr;
  1882. map<lua_State*, bool>::iterator zone_script_itr;
  1883. lua_State* ret = 0;
  1884. Mutex* mutex = 0;
  1885. itr = zone_scripts.find(name);
  1886. if(itr != zone_scripts.end()) {
  1887. mutex = GetZoneScriptMutex(name);
  1888. mutex->readlock(__FUNCTION__, __LINE__);
  1889. for(zone_script_itr = itr->second.begin(); zone_script_itr != itr->second.end(); zone_script_itr++){
  1890. if(!zone_script_itr->second){ //not in use
  1891. ret = zone_script_itr->first;
  1892. if (use)
  1893. {
  1894. zone_script_itr->second = true;
  1895. break; // don't keep iterating, we already have our result
  1896. }
  1897. }
  1898. }
  1899. mutex->releasereadlock(__FUNCTION__, __LINE__);
  1900. }
  1901. if(!ret && create_new){
  1902. if(name && LoadZoneScript(name))
  1903. ret = GetZoneScript(name);
  1904. else{
  1905. LogError("Error LUA Zone Script '%s'", name);
  1906. return 0;
  1907. }
  1908. }
  1909. return ret;
  1910. }
  1911. lua_State* LuaInterface::GetRegionScript(const char* name, bool create_new, bool use) {
  1912. map<string, map<lua_State*, bool> >::iterator itr;
  1913. map<lua_State*, bool>::iterator region_script_itr;
  1914. lua_State* ret = 0;
  1915. Mutex* mutex = 0;
  1916. itr = region_scripts.find(name);
  1917. if(itr != region_scripts.end()) {
  1918. mutex = GetRegionScriptMutex(name);
  1919. mutex->readlock(__FUNCTION__, __LINE__);
  1920. for(region_script_itr = itr->second.begin(); region_script_itr != itr->second.end(); region_script_itr++){
  1921. if(!region_script_itr->second){ //not in use
  1922. ret = region_script_itr->first;
  1923. if (use)
  1924. {
  1925. region_script_itr->second = true;
  1926. break; // don't keep iterating, we already have our result
  1927. }
  1928. }
  1929. }
  1930. mutex->releasereadlock(__FUNCTION__, __LINE__);
  1931. }
  1932. if(!ret && create_new){
  1933. if(name && LoadRegionScript(name))
  1934. ret = GetRegionScript(name);
  1935. else{
  1936. LogError("Error LUA Zone Script '%s'", name);
  1937. return 0;
  1938. }
  1939. }
  1940. return ret;
  1941. }
  1942. bool LuaInterface::RunItemScript(string script_name, const char* function_name, Item* item, Spawn* spawn, Spawn* target, sint64* returnValue) {
  1943. if(!item)
  1944. return false;
  1945. lua_State* state = GetItemScript(script_name.c_str(), true, true);
  1946. if(state){
  1947. Mutex* mutex = GetItemScriptMutex(script_name.c_str());
  1948. if(mutex)
  1949. mutex->readlock(__FUNCTION__, __LINE__);
  1950. else{
  1951. LogError("Error getting lock for '%s'", script_name.c_str());
  1952. UseItemScript(script_name.c_str(), state, false);
  1953. return false;
  1954. }
  1955. lua_getglobal(state, function_name);
  1956. if (!lua_isfunction(state, lua_gettop(state))){
  1957. lua_pop(state, 1);
  1958. mutex->releasereadlock(__FUNCTION__);
  1959. UseItemScript(script_name.c_str(), state, false);
  1960. return false;
  1961. }
  1962. SetItemValue(state, item);
  1963. int8 num_parms = 1;
  1964. if(spawn){
  1965. SetSpawnValue(state, spawn);
  1966. num_parms++;
  1967. }
  1968. if(target){
  1969. SetSpawnValue(state, target);
  1970. num_parms++;
  1971. }
  1972. if(!CallItemScript(state, num_parms, returnValue)){
  1973. if(mutex)
  1974. mutex->releasereadlock(__FUNCTION__, __LINE__);
  1975. UseItemScript(script_name.c_str(), state, false);
  1976. return false;
  1977. }
  1978. if(mutex)
  1979. mutex->releasereadlock(__FUNCTION__, __LINE__);
  1980. UseItemScript(script_name.c_str(), state, false);
  1981. return true;
  1982. }
  1983. else
  1984. return false;
  1985. }
  1986. bool LuaInterface::RunItemScriptWithReturnString(string script_name, const char* function_name, Item* item, Spawn* spawn, std::string* returnValue) {
  1987. if(!item)
  1988. return false;
  1989. lua_State* state = GetItemScript(script_name.c_str(), true, true);
  1990. if(state){
  1991. Mutex* mutex = GetItemScriptMutex(script_name.c_str());
  1992. if(mutex)
  1993. mutex->readlock(__FUNCTION__, __LINE__);
  1994. else{
  1995. LogError("Error getting lock for '%s'", script_name.c_str());
  1996. UseItemScript(script_name.c_str(), state, false);
  1997. return false;
  1998. }
  1999. lua_getglobal(state, function_name);
  2000. if (!lua_isfunction(state, lua_gettop(state))){
  2001. lua_pop(state, 1);
  2002. mutex->releasereadlock(__FUNCTION__);
  2003. UseItemScript(script_name.c_str(), state, false);
  2004. return false;
  2005. }
  2006. SetItemValue(state, item);
  2007. int8 num_parms = 1;
  2008. if(spawn){
  2009. SetSpawnValue(state, spawn);
  2010. num_parms++;
  2011. }
  2012. if(!CallItemScript(state, num_parms, returnValue)){
  2013. if(mutex)
  2014. mutex->releasereadlock(__FUNCTION__, __LINE__);
  2015. UseItemScript(script_name.c_str(), state, false);
  2016. return false;
  2017. }
  2018. if(mutex)
  2019. mutex->releasereadlock(__FUNCTION__, __LINE__);
  2020. UseItemScript(script_name.c_str(), state, false);
  2021. return true;
  2022. }
  2023. else
  2024. return false;
  2025. }
  2026. bool LuaInterface::RunSpawnScript(string script_name, const char* function_name, Spawn* npc, Spawn* spawn, const char* message, bool is_door_open, sint32 input_value, sint32* return_value) {
  2027. if(!npc || lua_system_reloading)
  2028. return false;
  2029. bool isUseDoorFunction = false;
  2030. if(!strcmp(function_name,"usedoor"))
  2031. isUseDoorFunction = true;
  2032. lua_State* state = GetSpawnScript(script_name.c_str(), true, true);
  2033. if(state){
  2034. Mutex* mutex = GetSpawnScriptMutex(script_name.c_str());
  2035. if(mutex)
  2036. mutex->readlock(__FUNCTION__, __LINE__);
  2037. else{
  2038. LogError("Error getting lock for '%s'", script_name.c_str());
  2039. UseSpawnScript(script_name.c_str(), state, false);
  2040. return false;
  2041. }
  2042. lua_getglobal(state, function_name);
  2043. if (!lua_isfunction(state, lua_gettop(state))){
  2044. lua_pop(state, 1);
  2045. mutex->releasereadlock(__FUNCTION__);
  2046. UseSpawnScript(script_name.c_str(), state, false);
  2047. return false;
  2048. }
  2049. SetSpawnValue(state, npc);
  2050. int8 num_parms = 1;
  2051. // we always send spawn, even if null (nil) when its 'usedoor' function
  2052. if(spawn || isUseDoorFunction){
  2053. SetSpawnValue(state, spawn);
  2054. num_parms++;
  2055. }
  2056. // usedoor function always passes just npc, spawn and is_door_open
  2057. if(isUseDoorFunction){
  2058. SetBooleanValue(state, is_door_open);
  2059. num_parms++;
  2060. }
  2061. else {
  2062. if(message){
  2063. SetStringValue(state, message);
  2064. num_parms++;
  2065. }
  2066. if(!strcmp(function_name,"healthchanged"))
  2067. {
  2068. // passes as damage dealt
  2069. SetSInt32Value(state, input_value);
  2070. num_parms++;
  2071. }
  2072. }
  2073. if(!CallScriptSInt32(state, num_parms, return_value)){
  2074. if(mutex)
  2075. mutex->releasereadlock(__FUNCTION__, __LINE__);
  2076. UseSpawnScript(script_name.c_str(), state, false);
  2077. return false;
  2078. }
  2079. if(mutex)
  2080. mutex->releasereadlock(__FUNCTION__, __LINE__);
  2081. UseSpawnScript(script_name.c_str(), state, false);
  2082. return true;
  2083. }
  2084. else
  2085. return false;
  2086. }
  2087. bool LuaInterface::RunZoneScript(string script_name, const char* function_name, ZoneServer* zone, Spawn* spawn, int32 int32_arg1, const char* str_arg1, Spawn* spawn_arg1, int32 int32_arg2, const char* str_arg2, Spawn* spawn_arg2) {
  2088. if (!zone)
  2089. return false;
  2090. lua_State* state = GetZoneScript(script_name.c_str(), true, true);
  2091. if (state) {
  2092. Mutex* mutex = GetZoneScriptMutex(script_name.c_str());
  2093. if (mutex)
  2094. mutex->readlock(__FUNCTION__, __LINE__);
  2095. else {
  2096. LogError("Error getting lock for '%s'", script_name.c_str());
  2097. UseZoneScript(script_name.c_str(), state, false);
  2098. return false;
  2099. }
  2100. lua_getglobal(state, function_name);
  2101. if (!lua_isfunction(state, lua_gettop(state))) {
  2102. lua_pop(state, 1);
  2103. mutex->releasereadlock(__FUNCTION__);
  2104. UseZoneScript(script_name.c_str(), state, false);
  2105. return false;
  2106. }
  2107. SetZoneValue(state, zone);
  2108. int8 num_params = 1;
  2109. if (spawn) {
  2110. SetSpawnValue(state, spawn);
  2111. num_params++;
  2112. }
  2113. if (int32_arg1 > 0) {
  2114. SetInt32Value(state, int32_arg1);
  2115. num_params++;
  2116. }
  2117. if (str_arg1) {
  2118. SetStringValue(state, str_arg1);
  2119. num_params++;
  2120. }
  2121. if (spawn_arg1) {
  2122. SetSpawnValue(state, spawn_arg1);
  2123. num_params++;
  2124. }
  2125. if (int32_arg2 > 0) {
  2126. SetInt32Value(state, int32_arg2);
  2127. num_params++;
  2128. }
  2129. if (str_arg2) {
  2130. SetStringValue(state, str_arg2);
  2131. num_params++;
  2132. }
  2133. if (spawn_arg2) {
  2134. SetSpawnValue(state, spawn_arg2);
  2135. num_params++;
  2136. }
  2137. if (!CallScriptInt32(state, num_params)) {
  2138. if (mutex)
  2139. mutex->releasereadlock(__FUNCTION__, __LINE__);
  2140. UseZoneScript(script_name.c_str(), state, false);
  2141. return false;
  2142. }
  2143. if (mutex)
  2144. mutex->releasereadlock(__FUNCTION__, __LINE__);
  2145. UseZoneScript(script_name.c_str(), state, false);
  2146. return true;
  2147. }
  2148. else
  2149. return false;
  2150. }
  2151. bool LuaInterface::RunZoneScriptWithReturn(string script_name, const char* function_name, ZoneServer* zone, Spawn* spawn, int32 int32_arg1, int32 int32_arg2, int32 int32_arg3, int32* returnValue) {
  2152. if (!zone)
  2153. return false;
  2154. lua_State* state = GetZoneScript(script_name.c_str(), true, true);
  2155. if (state) {
  2156. Mutex* mutex = GetZoneScriptMutex(script_name.c_str());
  2157. if (mutex)
  2158. mutex->readlock(__FUNCTION__, __LINE__);
  2159. else {
  2160. LogError("Error getting lock for '%s'", script_name.c_str());
  2161. UseZoneScript(script_name.c_str(), state, false);
  2162. return false;
  2163. }
  2164. lua_getglobal(state, function_name);
  2165. if (!lua_isfunction(state, lua_gettop(state))) {
  2166. lua_pop(state, 1);
  2167. mutex->releasereadlock(__FUNCTION__);
  2168. UseZoneScript(script_name.c_str(), state, false);
  2169. return false;
  2170. }
  2171. SetZoneValue(state, zone);
  2172. int8 num_params = 1;
  2173. SetSpawnValue(state, spawn);
  2174. num_params++;
  2175. SetInt32Value(state, int32_arg1);
  2176. num_params++;
  2177. SetInt32Value(state, int32_arg2);
  2178. num_params++;
  2179. SetInt32Value(state, int32_arg3);
  2180. num_params++;
  2181. if (!CallScriptInt32(state, num_params, returnValue)) {
  2182. if (mutex)
  2183. mutex->releasereadlock(__FUNCTION__, __LINE__);
  2184. UseZoneScript(script_name.c_str(), state, false);
  2185. return false;
  2186. }
  2187. if (mutex)
  2188. mutex->releasereadlock(__FUNCTION__, __LINE__);
  2189. UseZoneScript(script_name.c_str(), state, false);
  2190. return true;
  2191. }
  2192. else
  2193. return false;
  2194. }
  2195. bool LuaInterface::RunRegionScript(string script_name, const char* function_name, ZoneServer* zone, Spawn* spawn, sint32 int32_arg1, int32* returnValue) {
  2196. if (!zone)
  2197. return false;
  2198. lua_State* state = GetRegionScript(script_name.c_str(), true, true);
  2199. if (state) {
  2200. Mutex* mutex = GetRegionScriptMutex(script_name.c_str());
  2201. if (mutex)
  2202. mutex->readlock(__FUNCTION__, __LINE__);
  2203. else {
  2204. LogError("Error getting lock for '%s'", script_name.c_str());
  2205. UseRegionScript(script_name.c_str(), state, false);
  2206. return false;
  2207. }
  2208. lua_getglobal(state, function_name);
  2209. if (!lua_isfunction(state, lua_gettop(state))) {
  2210. lua_pop(state, 1);
  2211. mutex->releasereadlock(__FUNCTION__);
  2212. UseRegionScript(script_name.c_str(), state, false);
  2213. return false;
  2214. }
  2215. SetZoneValue(state, zone);
  2216. int8 num_params = 1;
  2217. if (spawn) {
  2218. SetSpawnValue(state, spawn);
  2219. num_params++;
  2220. }
  2221. if (int32_arg1 > 0) {
  2222. SetSInt32Value(state, int32_arg1);
  2223. num_params++;
  2224. }
  2225. if (!CallRegionScript(state, num_params, returnValue)) {
  2226. if (mutex)
  2227. mutex->releasereadlock(__FUNCTION__, __LINE__);
  2228. UseRegionScript(script_name.c_str(), state, false);
  2229. return false;
  2230. }
  2231. if (mutex)
  2232. mutex->releasereadlock(__FUNCTION__, __LINE__);
  2233. UseRegionScript(script_name.c_str(), state, false);
  2234. return true;
  2235. }
  2236. else
  2237. return false;
  2238. }
  2239. void LuaInterface::AddPendingSpellDelete(LuaSpell* spell) {
  2240. MSpellDelete.lock();
  2241. if ( spells_pending_delete.count(spell) == 0 )
  2242. spells_pending_delete[spell] = Timer::GetCurrentTime2() + 10000;
  2243. MSpellDelete.unlock();
  2244. }
  2245. void LuaInterface::AddCustomSpell(LuaSpell* spell)
  2246. {
  2247. MCustomSpell.writelock();
  2248. custom_spells[spell->spell->GetSpellID()] = spell;
  2249. MCustomSpell.releasewritelock();
  2250. }
  2251. void LuaInterface::RemoveCustomSpell(int32 id)
  2252. {
  2253. MCustomSpell.writelock();
  2254. map<int32, LuaSpell*>::iterator itr = custom_spells.find(id);
  2255. if (itr != custom_spells.end())
  2256. {
  2257. custom_spells.erase(itr);
  2258. custom_free_spell_ids.push_front(id);
  2259. }
  2260. MCustomSpell.releasewritelock();
  2261. }
  2262. // prior to calling FindCustomSpell you should call FindCustomSpellLock and after FindCustomSpellUnlock
  2263. LuaSpell* LuaInterface::FindCustomSpell(int32 id)
  2264. {
  2265. LuaSpell* spell = 0;
  2266. map<int32, LuaSpell*>::iterator itr = custom_spells.find(id);
  2267. if (itr != custom_spells.end())
  2268. spell = itr->second;
  2269. return spell;
  2270. }
  2271. int32 LuaInterface::GetFreeCustomSpellID()
  2272. {
  2273. int32 id = 0;
  2274. MCustomSpell.writelock();
  2275. if (!custom_free_spell_ids.empty())
  2276. {
  2277. id = custom_free_spell_ids.front();
  2278. custom_free_spell_ids.pop_front();
  2279. }
  2280. MCustomSpell.releasewritelock();
  2281. return id;
  2282. }
  2283. LUAUserData::LUAUserData(){
  2284. correctly_initialized = false;
  2285. quest = 0;
  2286. conversation_options = 0;
  2287. spawn = 0;
  2288. zone = 0;
  2289. skill = 0;
  2290. option_window_option = 0;
  2291. item = 0;
  2292. spawn_list = 0;
  2293. }
  2294. bool LUAUserData::IsCorrectlyInitialized(){
  2295. return correctly_initialized;
  2296. }
  2297. bool LUAUserData::IsConversationOption(){
  2298. return false;
  2299. }
  2300. bool LUAUserData::IsSpawnList() {
  2301. return false;
  2302. }
  2303. bool LUAUserData::IsOptionWindow() {
  2304. return false;
  2305. }
  2306. bool LUAUserData::IsSpawn(){
  2307. return false;
  2308. }
  2309. bool LUAUserData::IsQuest(){
  2310. return false;
  2311. }
  2312. bool LUAUserData::IsZone(){
  2313. return false;
  2314. }
  2315. bool LUAUserData::IsItem(){
  2316. return false;
  2317. }
  2318. bool LUAUserData::IsSkill() {
  2319. return false;
  2320. }
  2321. bool LUAUserData::IsSpell() {
  2322. return false;
  2323. }
  2324. LUAConversationOptionWrapper::LUAConversationOptionWrapper(){
  2325. correctly_initialized = true;
  2326. }
  2327. bool LUAConversationOptionWrapper::IsConversationOption(){
  2328. return true;
  2329. }
  2330. LUASpawnListWrapper::LUASpawnListWrapper() {
  2331. correctly_initialized = true;
  2332. }
  2333. bool LUASpawnListWrapper::IsSpawnList() {
  2334. return true;
  2335. }
  2336. LUAOptionWindowWrapper::LUAOptionWindowWrapper() {
  2337. correctly_initialized = true;
  2338. }
  2339. bool LUAOptionWindowWrapper::IsOptionWindow() {
  2340. return true;
  2341. }
  2342. LUASpawnWrapper::LUASpawnWrapper(){
  2343. correctly_initialized = true;
  2344. }
  2345. bool LUASpawnWrapper::IsSpawn(){
  2346. return true;
  2347. }
  2348. LUAZoneWrapper::LUAZoneWrapper(){
  2349. correctly_initialized = true;
  2350. }
  2351. bool LUAZoneWrapper::IsZone(){
  2352. return true;
  2353. }
  2354. LUAQuestWrapper::LUAQuestWrapper(){
  2355. correctly_initialized = true;
  2356. }
  2357. bool LUAQuestWrapper::IsQuest(){
  2358. return true;
  2359. }
  2360. LUAItemWrapper::LUAItemWrapper(){
  2361. correctly_initialized = true;
  2362. }
  2363. bool LUAItemWrapper::IsItem(){
  2364. return true;
  2365. }
  2366. LUASkillWrapper::LUASkillWrapper() {
  2367. correctly_initialized = true;
  2368. }
  2369. bool LUASkillWrapper::IsSkill() {
  2370. return true;
  2371. }
  2372. LUASpellWrapper::LUASpellWrapper() {
  2373. correctly_initialized = true;
  2374. }
  2375. bool LUASpellWrapper::IsSpell() {
  2376. return true;
  2377. }