LuaInterface.cpp 92 KB

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