zoneserver.h 44 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100
  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. #ifndef ZONESERVER_H
  17. #define ZONESERVER_H
  18. #include "../common/linked_list.h"
  19. #include "../common/timer.h"
  20. #include "../common/queue.h"
  21. #include "../common/servertalk.h"
  22. #include "../common/TCPConnection.h"
  23. #include "WorldTCPConnection.h"
  24. #include "../common/Mutex.h"
  25. #include "../common/DataBuffer.h"
  26. #include "net.h"
  27. #include "Player.h"
  28. #include "Combat.h"
  29. #include <list>
  30. #include <map>
  31. #include <set>
  32. #include "MutexList.h"
  33. #include "MutexMap.h"
  34. #include "MutexVector.h"
  35. #include "NPC.h"
  36. #include "Widget.h"
  37. #include "Object.h"
  38. #include "GroundSpawn.h"
  39. #include "Sign.h"
  40. #include "Zone/map.h"
  41. #include "Zone/pathfinder_interface.h"
  42. #include "Zone/mob_movement_manager.h"
  43. #include "Zone/region_map.h"
  44. extern NetConnection net; // needs to be here or compile errors in commands.cpp
  45. class SpellProcess;
  46. class TradeskillMgr;
  47. class Bot;
  48. #define EXPANSION_UNKNOWN 1
  49. #define EXPANSION_UNKNOWN2 64
  50. #define EXPANSION_UNKNOWN3 128
  51. #define EXPANSION_UNKNOWN4 256
  52. #define EXPANSION_UNKNOWN5 512
  53. #define EXPANSION_DOF 1024
  54. #define EXPANSION_KOS 2048
  55. #define EXPANSION_EOF 4096
  56. #define EXPANSION_ROK 8192
  57. #define EXPANSION_TSO 16384
  58. #define EXPANSION_DOV 65536 // This enables DoV and CoE AA tree's lower values disable both trees
  59. // Can't verify these 3 values
  60. // 32768 - SF
  61. // 131072 - AoD
  62. #define SPAWN_SCRIPT_SPAWN 0
  63. #define SPAWN_SCRIPT_RESPAWN 1
  64. #define SPAWN_SCRIPT_ATTACKED 2
  65. #define SPAWN_SCRIPT_TARGETED 3
  66. #define SPAWN_SCRIPT_HAILED 4
  67. #define SPAWN_SCRIPT_DEATH 5
  68. #define SPAWN_SCRIPT_KILLED 6
  69. #define SPAWN_SCRIPT_AGGRO 7
  70. #define SPAWN_SCRIPT_HEALTHCHANGED 8
  71. #define SPAWN_SCRIPT_RANDOMCHAT 9
  72. #define SPAWN_SCRIPT_CONVERSATION 10
  73. #define SPAWN_SCRIPT_TIMER 11
  74. #define SPAWN_SCRIPT_CUSTOM 12
  75. #define SPAWN_SCRIPT_HAILED_BUSY 13
  76. #define SPAWN_SCRIPT_CASTED_ON 14
  77. #define SPAWN_SCRIPT_AUTO_ATTACK_TICK 15
  78. #define SPAWN_SCRIPT_COMBAT_RESET 16
  79. #define SPAWN_SCRIPT_GROUP_DEAD 17
  80. #define SPAWN_SCRIPT_HEAR_SAY 18
  81. #define SPAWN_SCRIPT_PRESPAWN 19
  82. #define SPAWN_SCRIPT_USEDOOR 20
  83. #define SPAWN_SCRIPT_BOARD 21
  84. #define SPAWN_SCRIPT_DEBOARD 22
  85. #define SPAWN_CONDITIONAL_NONE 0
  86. #define SPAWN_CONDITIONAL_DAY 1
  87. #define SPAWN_CONDITIONAL_NIGHT 2
  88. #define SPAWN_CONDITIONAL_NOT_RAINING 4
  89. #define SPAWN_CONDITIONAL_RAINING 8
  90. #define MAX_REVIVEPOINT_DISTANCE 1000
  91. /* JA: TODO Turn into R_World Rules */
  92. #define SEND_SPAWN_DISTANCE 250 /* when spawns appear visually to the client */
  93. #define HEAR_SPAWN_DISTANCE 30 /* max distance a client can be from a spawn to 'hear' it */
  94. #define MAX_CHASE_DISTANCE 80
  95. #define REMOVE_SPAWN_DISTANCE 300 // increased distance between send/remove is ideal, this makes sure there is no overlap if a 'fast' client (AKA GM warp speed)
  96. #define TRACKING_STOP 0
  97. #define TRACKING_START 1
  98. #define TRACKING_UPDATE 2
  99. #define TRACKING_CLOSE_WINDOW 3
  100. #define TRACKING_TYPE_ENTITIES 1
  101. #define TRACKING_TYPE_HARVESTABLES 2
  102. #define TRACKING_SPAWN_TYPE_PC 0
  103. #define TRACKING_SPAWN_TYPE_NPC 1
  104. #define WAYPOINT_CATEGORY_GROUP 0
  105. #define WAYPOINT_CATEGORY_QUESTS 1
  106. #define WAYPOINT_CATEGORY_PEOPLE 2
  107. #define WAYPOINT_CATEGORY_PLACES 3
  108. #define WAYPOINT_CATEGORY_USER 4
  109. #define WAYPOINT_CATEGORY_DIRECTIONS 5
  110. #define WAYPOINT_CATEGORY_TRACKING 6
  111. #define WAYPOINT_CATEGORY_HOUSES 7
  112. #define WAYPOINT_CATEGORY_MAP 8
  113. struct PlayerProximity{
  114. float distance;
  115. string in_range_lua_function;
  116. string leaving_range_lua_function;
  117. map<Client*, bool> clients_in_proximity;
  118. };
  119. struct LocationProximity {
  120. float x;
  121. float y;
  122. float z;
  123. float max_variation;
  124. string in_range_lua_function;
  125. string leaving_range_lua_function;
  126. map<Client*, bool> clients_in_proximity;
  127. };
  128. struct LocationGrid {
  129. int32 id;
  130. int32 grid_id;
  131. string name;
  132. bool include_y;
  133. bool discovery;
  134. MutexList<Location*> locations;
  135. MutexMap<Player*, bool> players;
  136. };
  137. struct TrackedSpawn {
  138. Spawn* spawn;
  139. float distance;
  140. };
  141. struct HouseItem {
  142. int32 spawn_id;
  143. int32 item_id;
  144. int32 unique_id;
  145. Item* item;
  146. };
  147. class Widget;
  148. class Client;
  149. class Sign;
  150. class Object;
  151. class GroundSpawn;
  152. struct GroundSpawnEntry;
  153. struct GroundSpawnEntryItem;
  154. struct LootTable;
  155. struct LootDrop;
  156. struct GlobalLoot;
  157. struct TransportDestination;
  158. struct LocationTransportDestination;
  159. #ifdef WIN32
  160. void ZoneLoop(void *tmp);
  161. void SpawnLoop(void *tmp);
  162. void SendInitialSpawns(void *tmp);
  163. void SendLevelChangedSpawns(void*tmp);
  164. #else
  165. void *ZoneLoop(void *tmp);
  166. void *SpawnLoop(void *tmp);
  167. void *SendInitialSpawns(void *tmp);
  168. void *SendLevelChangedSpawns(void *tmp);
  169. #endif
  170. using namespace std;
  171. struct RevivePoint{
  172. int32 id;
  173. int32 zone_id; //usually this zone, but not always
  174. string location_name;
  175. float x;
  176. float y;
  177. float z;
  178. float heading;
  179. };
  180. struct SpawnScriptTimer {
  181. int32 timer;
  182. int32 spawn;
  183. int32 player;
  184. string function;
  185. int32 current_count;
  186. int32 max_count;
  187. };
  188. enum Instance_Type {
  189. NONE,
  190. GROUP_LOCKOUT_INSTANCE,
  191. GROUP_PERSIST_INSTANCE,
  192. RAID_LOCKOUT_INSTANCE,
  193. RAID_PERSIST_INSTANCE,
  194. SOLO_LOCKOUT_INSTANCE,
  195. SOLO_PERSIST_INSTANCE,
  196. TRADESKILL_INSTANCE, // allows anyone to enter, server searches for the first instance that is available
  197. PUBLIC_INSTANCE, // same as tradeskill, except dead spawns are tracked
  198. PERSONAL_HOUSE_INSTANCE,
  199. GUILD_HOUSE_INSTANCE,
  200. QUEST_INSTANCE
  201. };
  202. struct FlightPathInfo {
  203. float speed;
  204. bool flying;
  205. bool dismount;
  206. };
  207. struct FlightPathLocation {
  208. float X;
  209. float Y;
  210. float Z;
  211. };
  212. struct ZoneInfoSlideStructInfo {
  213. float unknown1[2];
  214. int32 unknown2[2];
  215. int32 unknown3;
  216. int32 unknown4;
  217. char slide[128];
  218. char voiceover[128];
  219. int32 key1;
  220. int32 key2;
  221. };
  222. struct ZoneInfoSlideStructTransitionInfo {
  223. int32 transition_x;
  224. int32 transition_y;
  225. float transition_zoom;
  226. float transition_time;
  227. };
  228. struct ZoneInfoSlideStruct {
  229. ZoneInfoSlideStructInfo* info;
  230. vector<ZoneInfoSlideStructTransitionInfo*> slide_transition_info;
  231. };
  232. class SPGrid;
  233. // need to attempt to clean this up and add xml comments, remove unused code, find a logical way to sort the functions maybe by get/set/process/add etc...
  234. class ZoneServer {
  235. public:
  236. ZoneServer(const char* file);
  237. ~ZoneServer();
  238. void Init();
  239. bool Process();
  240. bool SpawnProcess();
  241. ZoneInfoSlideStruct* GenerateSlideStruct(float unknown1a, float unknown1b, int32 unknown2a, int32 unknown2b, int32 unknown3, int32 unknown4, const char* slide, const char* voiceover, int32 key1, int32 key2);
  242. void AddZoneInfoSlideStructTransitionInfo(ZoneInfoSlideStruct* info, int32 x, int32 y, float zoom, float transition_time);
  243. vector<ZoneInfoSlideStruct*>* GenerateTutorialSlides();
  244. void LoadRevivePoints(vector<RevivePoint*>* revive_points);
  245. vector<RevivePoint*>* GetRevivePoints(Client* client);
  246. RevivePoint* GetRevivePoint(int32 id);
  247. void AddClient(Client* client);
  248. void SimpleMessage(int8 type, const char* message, Spawn* from, float distance, bool send_to_sender = true);
  249. void HandleChatMessage(Spawn* from, const char* to, int16 channel, const char* message, float distance = 0, const char* channel_name = 0, bool show_bubble = true, int32 language = 0);
  250. void HandleChatMessage(Client* client, Spawn* from, const char* to, int16 channel, const char* message, float distance = 0, const char* channel_name = 0, bool show_bubble = true, int32 language = 0);
  251. void HandleBroadcast(const char* message);
  252. void HandleAnnouncement(const char* message);
  253. int16 SetSpawnTargetable(Spawn* spawn, float distance);
  254. int16 SetSpawnTargetable(int32 spawn_id);
  255. void ApplySetSpawnCommand(Client* client, Spawn* target, int8 type, const char* value);
  256. void SetSpawnCommand(Spawn* spawn, int8 type, char* value, Client* client = 0);
  257. void SetSpawnCommand(int32 spawn_id, int8 type, char* value, Client* client = 0);
  258. void AddLoot(NPC* npc, Spawn* killer = nullptr);
  259. NPC* AddNPCSpawn(SpawnLocation* spawnlocation, SpawnEntry* spawnentry);
  260. Object* AddObjectSpawn(SpawnLocation* spawnlocation, SpawnEntry* spawnentry);
  261. GroundSpawn* AddGroundSpawn(SpawnLocation* spawnlocation, SpawnEntry* spawnentry);
  262. Widget* AddWidgetSpawn(SpawnLocation* spawnlocation, SpawnEntry* spawnentry);
  263. Sign* AddSignSpawn(SpawnLocation* spawnlocation, SpawnEntry* spawnentry);
  264. void AddSpawn(Spawn* spawn);
  265. void RemoveDeadEnemyList(Spawn* spawn);
  266. void RemoveDeadSpawn(Spawn* spawn);
  267. void AddSpawnGroupLocation(int32 group_id, int32 location_id, int32 spawn_location_id);
  268. void AddSpawnGroupAssociation(int32 group_id1, int32 group_id2);
  269. void AddSpawnGroupChance(int32 group_id, float percent);
  270. void RemoveSpawn(Spawn* spawn, bool delete_spawn = true, bool respawn = true, bool lock = true, bool erase_from_spawn_list = true, bool lock_spell_process = false);
  271. void ProcessSpawnLocations();
  272. void SendQuestUpdates(Client* client, Spawn* spawn = 0);
  273. EQ2Packet* GetZoneInfoPacket(Client* client);
  274. Spawn* FindSpawn(Player* searcher, const char* name);
  275. bool CallSpawnScript(Spawn* npc, int8 type, Spawn* spawn = 0, const char* message = 0, bool is_door_open = false, sint32 input_value = 0, sint32* return_value = 0);
  276. void SendSpawnVisualState(Spawn* spawn, int16 type);
  277. void SendSpellFailedPacket(Client* client, int16 error);
  278. void SendInterruptPacket(Spawn* interrupted, LuaSpell* spell, bool fizzle=false);
  279. void HandleEmote(Client* originator, string name);
  280. Client* GetClientBySpawn(Spawn* spawn);
  281. Spawn* GetSpawnByDatabaseID(int32 id);
  282. Spawn* GetSpawnByID(int32 id, bool spawnListLocked=false);
  283. void PlaySoundFile(Client* client, const char* name, float origin_x, float origin_y, float origin_z);
  284. void SendZoneSpawns(Client* client);
  285. void StartZoneInitialSpawnThread(Client* client);
  286. void SendSpawnChanges();
  287. void SendSpawnChanges(Spawn* spawn);
  288. void SendSpawnChanges(Spawn* spawn, Client* client, bool override_changes = false, bool override_vis_changes = false);
  289. void SendSpawnChangesByDBID(int32 spawn_id, Client* client, bool override_changes = false, bool override_vis_changes = false);
  290. void SendPlayerPositionChanges(Player* player);
  291. void UpdateVitality(float amount);
  292. vector<Entity*> GetPlayers();
  293. void KillSpawn(bool spawnListLocked, Spawn* dead, Spawn* killer, bool send_packet = true, int8 damage_type = 0, int16 kill_blow_type = 0);
  294. void SendDamagePacket(Spawn* attacker, Spawn* victim, int8 type1, int8 type2, int8 damage_type, int16 damage, const char* spell_name);
  295. void SendHealPacket(Spawn* caster, Spawn* target, int16 type, int32 heal_amt, const char* spell_name);
  296. void SendCastSpellPacket(LuaSpell* spell, Entity* caster);
  297. void SendCastSpellPacket(int32 spell_visual, Spawn* target, Spawn* caster = 0);
  298. void SendCastEntityCommandPacket(EntityCommand* entity_command, int32 spawn_id, int32 target_id);
  299. void TriggerCharSheetTimer();
  300. /// <summary>Sends the game time packet to all connected clients</summary>
  301. void SendTimeUpdateToAllClients();
  302. void AddWidgetTimer(Spawn* widget, float time);
  303. bool HasWidgetTimer(Spawn* widget);
  304. void Despawn(Spawn* spawn, int32 timer);
  305. void RepopSpawns(Client* client, Spawn* spawn);
  306. bool AddCloseSpawnsToSpawnGroup(Spawn* spawn, float radius);
  307. void Depop(bool respawns = false, bool repop = false);
  308. Spawn* GetSpawnGroup(int32 id);
  309. void AddEnemyList(NPC* npc);
  310. void ReloadClientQuests();
  311. void SendAllSpawnsForLevelChange(Client* client);
  312. void SendAllSpawnsForSeeInvisChange(Client* client);
  313. void SendAllSpawnsForVisChange(Client* client, bool limitToEntities=true);
  314. void AddLocationGrid(LocationGrid* grid);
  315. void RemoveLocationGrids();
  316. void DeleteTransporters();
  317. void CheckTransporters(Client* client);
  318. void WritePlayerStatistics();
  319. bool SendRadiusSpawnInfo(Client* client, float radius);
  320. void FindSpawn(Client* client, char* regSearchStr);
  321. volatile bool spawnthread_active;
  322. volatile bool combatthread_active;
  323. volatile int8 initial_spawn_threads_active;
  324. volatile bool client_thread_active;
  325. void AddChangedSpawn(Spawn* spawn);
  326. void AddDamagedSpawn(Spawn* spawn);
  327. void AddDrowningVictim(Player* player);
  328. void RemoveDrowningVictim(Player* player);
  329. Client* GetDrowningVictim(Player* player);
  330. void DeleteSpellProcess();
  331. void LoadSpellProcess();
  332. void LockAllSpells(Player* player);
  333. void UnlockAllSpells(Player* player);
  334. void RemoveSpellTimersFromSpawn(Spawn* spawn, bool remove_all, bool delete_recast = true, bool call_expire_function = true, bool lock_spell_process = false);
  335. void Interrupted(Entity* caster, Spawn* interruptor, int16 error_code, bool cancel = false, bool from_movement = false);
  336. Spell* GetSpell(Entity* caster);
  337. void ProcessSpell(Spell* spell, Entity* caster, Spawn* target = 0, bool lock = true, bool harvest_spell = false, LuaSpell* customSpell = 0, int16 custom_cast_time = 0, bool in_heroic_opp = false);
  338. void ProcessEntityCommand(EntityCommand* entity_command, Entity* caster, Spawn* target, bool lock = true);
  339. void AddPlayerTracking(Player* player);
  340. void RemovePlayerTracking(Player* player, int8 mode);
  341. void SendUpdateTitles(Client *client, Title *suffix = 0, Title *prefix = 0);
  342. void SendUpdateTitles(Spawn *spawn, Title *suffix = 0, Title *prefix = 0);
  343. void RemoveTargetFromSpell(LuaSpell* spell, Spawn* target, bool remove_caster = false);
  344. /// <summary>Set the rain levl in the zone</summary>
  345. /// <param name='val'>Level of rain in the zone 0.0 - 1.1 (rain starts at 0.76)</param>
  346. void SetRain(float val);
  347. /// <summary>Sets the wind direction</summary>
  348. /// <param name='val'>Direction in degrees to set the wind</param>
  349. void SetWind(float val);
  350. /// <summary>Handles zone-wide weather changes</summary>
  351. void ProcessWeather();
  352. Spawn* GetClosestTransportSpawn(float x, float y, float z);
  353. Spawn* GetTransportByRailID(sint64 rail_id);
  354. void ResurrectSpawn(Spawn* spawn, Client* client);
  355. void HidePrivateSpawn(Spawn* spawn);
  356. Client* GetClientByName(char* name);
  357. Client* GetClientByCharID(int32 charid);
  358. /// <summary>Gets spawns for a true AoE spell</summary>
  359. vector<Spawn*> GetAttackableSpawnsByDistance(Spawn* spawn, float distance);
  360. void StartZoneSpawnsForLevelThread(Client* client);
  361. void SendDispellPacket(Entity* caster, Spawn* target, string dispell_name, string spell_name, int8 dispell_type);
  362. void SetupInstance(int32 createdInstanceID=0);
  363. void SendUpdateDefaultCommand(Spawn* spawn, const char* command, float distance, Spawn* toplayer = NULL);
  364. map<int32, int32>* GetSpawnLocationsByGroup(int32 group_id);
  365. IPathfinder* pathing;
  366. MobMovementManager* movementMgr;
  367. /****************************************************
  368. Following functions are only used for LUA commands
  369. ****************************************************/
  370. int32 GetClosestLocation(Spawn* spawn);
  371. Spawn* GetClosestSpawn(Spawn* spawn, int32 spawn_id);
  372. SpawnLocation* GetSpawnLocation(int32 id);
  373. void PlayFlavor(Client* client, Spawn* spawn, const char* mp3, const char* text, const char* emote, int32 key1, int32 key2, int8 language);
  374. void PlayVoice(Client* client, Spawn* spawn, const char* mp3, int32 key1, int32 key2);
  375. void PlayFlavor(Spawn* spawn, const char* mp3, const char* text, const char* emote, int32 key1, int32 key2, int8 language);
  376. void PlayVoice(Spawn* spawn, const char* mp3, int32 key1, int32 key2);
  377. void SendThreatPacket(Spawn* caster, Spawn* target, int32 threat_amt, const char* spell_name);
  378. void KillSpawnByDistance(Spawn* spawn, float max_distance, bool include_players = false, bool send_packet = false);
  379. void SpawnSetByDistance(Spawn* spawn, float max_distance, string field, string value);
  380. void AddSpawnScriptTimer(SpawnScriptTimer* timer);
  381. Spawn* GetSpawnByLocationID(int32 location_id);
  382. void AddMovementNPC(Spawn* spawn);
  383. void AddPlayerProximity(Spawn* spawn, float distance, string in_range_function, string leaving_range_function);
  384. void AddLocationProximity(float x, float y, float z, float max_variation, string in_range_function, string leaving_range_function);
  385. void PlayAnimation(Spawn* spawn, int32 visual_state, Spawn* spawn2 = 0, int8 type = 1);
  386. void AddTransportSpawn(Spawn* spawn);
  387. vector<Spawn*> GetSpawnsByID(int32 id);
  388. vector<Spawn*> GetSpawnsByRailID(sint64 rail_id);
  389. void RemovePlayerPassenger(int32 char_id);
  390. bool IsDusk() { return isDusk; } // never used, probably meant for lua though
  391. /****************************************************
  392. Following functions are all contained in the header
  393. ****************************************************/
  394. inline const char* GetZoneName() { return zone_name; }
  395. void SetZoneName(char* new_zone) {
  396. if( strlen(new_zone) >= sizeof zone_name )
  397. return;
  398. strcpy(zone_name, new_zone);
  399. }
  400. inline const char* GetZoneFile() { return zone_file; }
  401. void SetZoneFile(char* zone) {
  402. if (strlen(zone) >= sizeof zone_file)
  403. return;
  404. strcpy(zone_file, zone);
  405. }
  406. inline const char* GetZoneSkyFile() { return zonesky_file; }
  407. void SetZoneSkyFile(char* zone) {
  408. if (strlen(zone) >= sizeof zonesky_file)
  409. return;
  410. strcpy(zonesky_file, zone);
  411. }
  412. inline const char* GetZoneDescription() { return zone_description; }
  413. void SetZoneDescription(char* desc) {
  414. if( strlen(desc) >= sizeof zone_description )
  415. return;
  416. strcpy(zone_description, desc);
  417. }
  418. void SetUnderWorld(float under){ underworld = under; }
  419. inline int32 GetZoneID() { return zoneID; }
  420. void SetZoneID(int32 new_id){ zoneID = new_id; }
  421. inline bool IsCityZone() { return cityzone; }
  422. inline bool AlwaysLoaded() { return always_loaded; }
  423. void SetCityZone(bool val) { cityzone = val; }
  424. void SetAlwaysLoaded(bool val) { always_loaded = val; }
  425. inline int32& NumPlayers() { return pNumPlayers; }
  426. void SetMinimumStatus(sint16 minStatus) { minimumStatus = minStatus; }
  427. sint16 GetMinimumStatus() { return minimumStatus; }
  428. void SetMinimumLevel(int16 minLevel) { minimumLevel = minLevel; }
  429. void SetMaximumLevel(int16 maxLevel) { maximumLevel = maxLevel; }
  430. void SetMinimumVersion(int16 minVersion) { minimumVersion = minVersion; }
  431. int16 GetMinimumLevel() { return minimumLevel; }
  432. int16 GetMaximumLevel() { return maximumLevel; }
  433. int16 GetMinimumVersion() { return minimumVersion; }
  434. inline bool GetZoneLockState() { return locked; } // JA: /zone lock|unlock
  435. void SetZoneLockState(bool lock_state) { locked = lock_state; } // JA: /zone lock|unlock
  436. int32 GetInstanceID() { return instanceID; }
  437. bool IsInstanceZone() { return isInstance; }
  438. void SetShutdownTimer(int val){
  439. shutdownTimer.SetTimer(val*1000);
  440. }
  441. void AddSpawnLocation(int32 id, SpawnLocation* spawnlocation) {
  442. MSpawnLocationList.writelock(__FUNCTION__, __LINE__);
  443. if (spawn_location_list.count(id) > 0)
  444. safe_delete(spawn_location_list[id]);
  445. spawn_location_list[id] = spawnlocation;
  446. MSpawnLocationList.releasewritelock(__FUNCTION__, __LINE__);
  447. }
  448. void SetInstanceType(int16 type) { InstanceType = (Instance_Type)type; if(type>0)isInstance=true; else isInstance=false; }
  449. Instance_Type GetInstanceType() { return InstanceType; }
  450. float GetSafeX(){ return safe_x; }
  451. float GetSafeY(){ return safe_y; }
  452. float GetSafeZ(){ return safe_z; }
  453. float GetSafeHeading() { return safe_heading; }
  454. void SetSafeX(float val){ safe_x = val; }
  455. void SetSafeY(float val){ safe_y = val; }
  456. void SetSafeZ(float val){ safe_z = val; }
  457. void SetSafeHeading(float val) { safe_heading = val; }
  458. float GetXPModifier() { return xp_mod; }
  459. void SetXPModifier(float val) { xp_mod = val; }
  460. void SetZoneMOTD(string z_motd) { zone_motd = z_motd; }
  461. string GetZoneMOTD() { return zone_motd; }
  462. bool isZoneShuttingDown ( ) { return zoneShuttingDown; }
  463. void Shutdown(){ zoneShuttingDown = true; }
  464. int32 GetClientCount(){ return clients.size(); }
  465. int32 GetDefaultLockoutTime() { return def_lockout_time; }
  466. int32 GetDefaultReenterTime() { return def_reenter_time; }
  467. int32 GetDefaultResetTime() { return def_reset_time; }
  468. int8 GetForceGroupZoneOption() { return group_zone_option; }
  469. void SetDefaultLockoutTime(int32 val) { def_lockout_time = val; }
  470. void SetDefaultReenterTime(int32 val) { def_reenter_time = val; }
  471. void SetDefaultResetTime(int32 val) { def_reset_time = val; }
  472. void SetForceGroupZoneOption(int8 val) { group_zone_option = val; }
  473. SpellProcess* GetSpellProcess() {return spellProcess;}
  474. bool FinishedDepop(){ return finished_depop; }
  475. /// <summary>Returns the Tradeskill Manager for this zone</summary>
  476. TradeskillMgr* GetTradeskillMgr() { return tradeskillMgr; }
  477. // had to add these to access weather from Commands
  478. bool isWeatherEnabled() { return weather_enabled; }
  479. void SetWeatherEnabled(bool val) { weather_enabled = val; }
  480. bool isWeatherAllowed() { return weather_allowed; }
  481. void SetWeatherAllowed(bool val) { weather_allowed = val; }
  482. int8 GetWeatherType() { return weather_type; }
  483. void SetWeatherType(int8 val) { weather_type = val; }
  484. int32 GetWeatherFrequency() { return weather_frequency; }
  485. void SetWeatherFrequency(int32 val) { weather_frequency = val; }
  486. float GetWeatherMinSeverity() { return weather_min_severity; }
  487. void SetWeatherMinSeverity(float val) { weather_min_severity = val; }
  488. float GetWeatherMaxSeverity() { return weather_max_severity; }
  489. void SetWeatherMaxSeverity(float val) { weather_max_severity = val; }
  490. float GetWeatherChangeAmount() { return weather_change_amount; }
  491. void SetWeatherChangeAmount(float val) { weather_change_amount = val; }
  492. float GetWeatherDynamicOffset() { return weather_dynamic_offset; }
  493. void SetWeatherDynamicOffset(float val) { weather_dynamic_offset = val; }
  494. int8 GetWeatherChance() { return weather_change_chance; }
  495. void SetWeatherChance(int8 val) { weather_change_chance = val; }
  496. float GetCurrentWeather() { return weather_current_severity; }
  497. void SetCurrentWeather(float val) { weather_current_severity = val; }
  498. int8 GetWeatherPattern() { return weather_pattern; }
  499. void SetWeatherPattern(int8 val) { weather_pattern = val; }
  500. void SetWeatherLastChangedTime(int32 val) { weather_last_changed_time = val; }
  501. int32 GetExpansionFlag() { return expansion_flag; }
  502. void SetExpansionFlag(int32 val) { expansion_flag = val; }
  503. int32 GetHolidayFlag() { return holiday_flag; }
  504. void SetHolidayFlag(int32 val) { holiday_flag = val; }
  505. void RemoveClientImmediately(Client* client);
  506. void ClearHate(Entity* entity);
  507. /****************************************************
  508. Following functions are pending deletion, left in for
  509. now just to make sure one won't be of future use.
  510. ****************************************************/
  511. //void RemoveFromRangeMap(Client* client); // never used?
  512. //void AddSpawnAssociatedGroup(vector<int32>* ret, int32 group_id); // never used, not even any code for it
  513. //inline const char* GetCAddress() { return clientaddress; } // never used?
  514. //inline int16 GetCPort() { return clientport; } // never used?
  515. //inline bool IsBootingUp() { return BootingUp; } // never used?
  516. //int32 GetShutdownTimer() {return shutdownTimer.GetTimerTime();} // never used
  517. //float GetUnderWorld(){ return underworld; } // function never used but variable is
  518. // Following were private
  519. //char clientaddress[250]; // never used
  520. //int16 clientport; // never used
  521. //bool BootingUp; // never used
  522. //bool authenticated; // never used?
  523. //int16 next_index; // never used
  524. void AddFlightPath(int32 id, FlightPathInfo* info);
  525. void AddFlightPathLocation(int32 id, FlightPathLocation* location);
  526. void DeleteFlightPaths();
  527. void SendFlightPathsPackets(Client* client);
  528. int32 GetFlightPathIndex(int32 id);
  529. float GetFlightPathSpeed(int32 id);
  530. void SendSpawn(Spawn* spawn, Client* client); // moved from private to public for bots
  531. void ProcessSpawnConditional(int8 condition);
  532. void SetSpawnStructs(Client* client);
  533. void AddSpawnProximities(Spawn* spawn);
  534. void RemoveSpawnProximities(Spawn* spawn);
  535. void SetSpawnScript(SpawnEntry* entry, Spawn* spawn);
  536. bool IsLoading() {
  537. return LoadingData;
  538. }
  539. vector<HouseItem> GetHouseItems(Client* client);
  540. Spawn* GetSpawnFromUniqueItemID(int32 unique_id);
  541. void SendHouseItems(Client* client);
  542. MutexMap<int32, int32> house_object_database_lookup; // 1st int32 = model type, 2nd int32 = spawn id
  543. int32 GetWatchdogTime() { return watchdogTimestamp; }
  544. void SetWatchdogTime(int32 time) { watchdogTimestamp = time; }
  545. void CancelThreads();
  546. void AddPendingSpawnRemove(int32 id);
  547. void ProcessSpawnRemovals();
  548. bool SendRemoveSpawn(Client* client, Spawn* spawn, PacketStruct* packet = 0, bool delete_spawn = false);
  549. void AddSpawnToGroup(Spawn* spawn, int32 group_id);
  550. void QueueStateCommandToClients(int32 spawn_id, int32 state);
  551. void QueueDefaultCommand(int32 spawn_id, std::string command, float distance);
  552. void ProcessQueuedStateCommands();
  553. void UpdateClientSpawnMap(Player* player, Client* client);
  554. void WorldTimeUpdateTrigger() { sync_game_time_timer.Trigger(); }
  555. void StopSpawnScriptTimer(Spawn* spawn, std::string functionName);
  556. private:
  557. #ifndef WIN32
  558. pthread_t ZoneThread;
  559. pthread_t SpawnThread;
  560. #endif
  561. /* Private Functions */
  562. void AddTransporter(LocationTransportDestination* loc);
  563. void CheckDeadSpawnRemoval();
  564. void DeleteData(bool boot_clients = true);
  565. void DeleteFactionLists();
  566. void ProcessDepop(bool respawns_allowed = false, bool repop = false);
  567. /*
  568. Following functions were public but never used outside the zone server so moved them to private
  569. */
  570. void ClientProcess(); // never used outside zone server
  571. void RemoveClient(Client* client); // never used outside zone server
  572. void DeterminePosition(SpawnLocation* spawnlocation, Spawn* spawn); // never used outside zone server
  573. void AddDeadSpawn(Spawn* spawn, int32 timer = 0xFFFFFFFF); // never used outside zone server
  574. int32 CalculateSpawnGroup(SpawnLocation* spawnlocation, bool respawn = false); // never used outside zone server
  575. float GetSpawnGroupChance(int32 group_id); // never used outside zone server
  576. vector<int32>* GetAssociatedLocations(set<int32>* groups); // never used outside zone server
  577. set<int32>* GetAssociatedGroups(int32 group_id); // never used outside zone server
  578. list<int32>* GetSpawnGroupsByLocation(int32 location_id); // never used outside zone server
  579. void ProcessSpawnLocation(int32 location_id, bool respawn = false); // never used outside zone server
  580. Spawn* ProcessSpawnLocation(SpawnLocation* spawnlocation, bool respawn = false); // never used outside zone server
  581. Spawn* ProcessInstanceSpawnLocation(SpawnLocation* spawnlocation, map<int32,int32>* instNPCs, map<int32,int32>* instGroundSpawns, map<int32,int32>* instObjSpawns, map<int32,int32>* instWidgetSpawns, map<int32,int32>* instSignSpawns, bool respawn = false); // never used outside zone server
  582. void SendCharSheetChanges(); // never used outside zone server
  583. void SendCharSheetChanges(Client* client); // never used outside zone server
  584. void SaveClients(); // never used outside zone server
  585. void CheckSendSpawnToClient(); // never used outside zone server
  586. void CheckSendSpawnToClient(Client* client, bool initial_login = false); // never used outside zone server
  587. void CheckRemoveSpawnFromClient(Spawn* spawn); // never used outside zone server
  588. void SaveClient(Client* client); // never used outside zone server
  589. void ProcessFaction(Spawn* spawn, Client* client); // never used outside zone server
  590. void RegenUpdate(); // never used outside zone server
  591. void SendCalculatedXP(Player* player, Spawn* victim); // never used outside zone server, might not be used at all any more
  592. void SendTimeUpdate(Client* client); // never used outside zone server
  593. void CheckWidgetTimers(); // never used outside zone server
  594. void CheckRespawns(); // never used outside zone server
  595. void CheckSpawnExpireTimers(); // never used outside zone server
  596. void AddSpawnExpireTimer(Spawn* spawn, int32 expire_time, int32 expire_offset = 0); // never used outside zone server
  597. void CheckSpawnRange(Client* client, Spawn* spawn, bool initial_login = false); // never used outside zone server
  598. void CheckSpawnRange(Spawn* spawn); // never used outside zone server
  599. void DeleteSpawnScriptTimers(Spawn* spawn, bool all = false); // never used outside zone server
  600. void DeleteSpawnScriptTimers(); // never used outside zone server
  601. void CheckSpawnScriptTimers(); // never used outside zone server
  602. void PrepareSpawnID(Player* player, Spawn* spawn); // never used outside zone server
  603. void RemoveMovementNPC(Spawn* spawn); // never used outside zone server
  604. bool CheckNPCAttacks(NPC* npc, Spawn* victim, Client* client = 0); // never used outside zone server
  605. bool AggroVictim(NPC* npc, Spawn* victim, Client* client = 0); // never used outside zone server
  606. bool CheckEnemyList(NPC* npc); // never used outside zone server
  607. void RemovePlayerProximity(Spawn* spawn, bool all = false); // never used outside zone server
  608. void RemovePlayerProximity(Client* client); // never used outside zone server
  609. void CheckPlayerProximity(Spawn* spawn, Client* client); // never used outside zone server
  610. void RemoveLocationProximities(); // never used outside zone server
  611. void CheckLocationProximity(); // never used outside zone server
  612. void CheckLocationGrids(); // never used outside zone server
  613. void RemoveSpawnSupportFunctions(Spawn* spawn, bool lock_spell_process = false); // never used outside zone server
  614. void ReloadTransporters(); // never used outside zone server
  615. void DeleteSpawns(bool delete_all); // never used outside zone server
  616. void AddPendingDelete(Spawn* spawn); // never used outside zone server
  617. void RemovePendingDelete(Spawn* spawn); // never used outside zone server
  618. void ClearDeadSpawns(); // never used outside zone server
  619. void RemoveChangedSpawn(Spawn* spawn); // never used outside zone server
  620. void ProcessDrowning(); // never used outside zone server
  621. void RemoveDamagedSpawn(Spawn* spawn); // never used outside zone server
  622. void ProcessTracking(); // never used outside zone server
  623. void ProcessTracking(Client* client); // never used outside zone server
  624. void SendEpicMobDeathToGuild(Player* killer, Spawn* victim); // never used outside zone server
  625. void ProcessAggroChecks(Spawn* spawn); // never used outside zone server
  626. /// <summary>Checks to see if it is time to remove a spawn and removes it</summary>
  627. /// <param name='force_delete_all'>Forces all spawns scheduled to be removed regardless of time</param>
  628. bool CombatProcess(Spawn* spawn); // never used outside zone server
  629. void InitWeather(); // never used outside zone server
  630. ///<summary>Dismiss all pets in the zone, useful when the spell process needs to be reloaded</summary>
  631. void DismissAllPets(); // never used outside zone server
  632. /* Mutex Lists */
  633. MutexList<int32> changed_spawns; // int32 = spawn id
  634. vector<Client*> clients;
  635. MutexList<Client*> connected_clients; // probably remove this list so we are not maintaining 2 client lists
  636. MutexList<int32> damaged_spawns; // int32 = spawn id
  637. MutexList<LocationProximity*> location_proximities;
  638. MutexList<LocationGrid*> location_grids;
  639. MutexList<int32> remove_movement_spawns; // int32 = spawn id
  640. set<SpawnScriptTimer*> spawn_script_timers;
  641. Mutex MSpawnScriptTimers;
  642. set<SpawnScriptTimer*> remove_spawn_script_timers_list;
  643. Mutex MRemoveSpawnScriptTimersList;
  644. list<LocationTransportDestination*> transporter_locations;
  645. /* Mutex Maps */
  646. MutexMap<Spawn*, Client*> client_spawn_map; // ok
  647. MutexMap<Client*, int32> drowning_victims;
  648. MutexMap<int32, int32> movement_spawns; // 1st int32 = spawn id
  649. MutexMap<int32, PlayerProximity*> player_proximities; // 1st int32 = spawn id
  650. MutexMap<int32, Player*> players_tracking;
  651. MutexMap<int32, int32> quick_database_id_lookup; // 1st int32 = database id, 2nd int32 = spawn id
  652. MutexMap<int32, int32> respawn_timers;
  653. map<Spawn*, int32> spawn_delete_list;
  654. MutexMap<int32, int32> spawn_expire_timers; // 1st int32 = spawn id
  655. map<int32, set<int32>* > spawn_group_associations;
  656. map<int32, float> spawn_group_chances;
  657. map<int32, map<int32, int32>* > spawn_group_locations;
  658. MutexMap<int32, MutexList<int32> > spawn_group_map; // MutexList<int32> is a list of spawn id's
  659. map<int32, list<int32>* > spawn_location_groups;
  660. map<int32, SpawnLocation*> spawn_location_list;
  661. MutexMap<Client*, MutexMap<int32, float >* > spawn_range_map; // int32 in the MutexMap<int32, float>* = spawn id, float = distance
  662. Mutex MWidgetTimers;
  663. map<int32, int32> widget_timers; // 1st int32 = spawn id
  664. /* Mutexs */
  665. Mutex m_enemy_faction_list;
  666. Mutex m_npc_faction_list;
  667. Mutex m_reverse_enemy_faction_list;
  668. Mutex MDeadSpawns;
  669. CriticalSection* MMasterZoneLock; //This needs to be a recursive lock to fix a possible /reload spells crash with multiple zones loaded - Foof
  670. Mutex MMasterSpawnLock;
  671. Mutex MPendingSpawnListAdd;
  672. Mutex MSpawnList;
  673. Mutex MTransportSpawns;
  674. Mutex MSpawnGroupAssociation;
  675. Mutex MSpawnGroupLocations;
  676. Mutex MSpawnLocationGroups;
  677. Mutex MSpawnGroupChances;
  678. Mutex MTransportLocations;
  679. Mutex MSpawnLocationList;
  680. Mutex MSpawnDeleteList;
  681. Mutex MClientList;
  682. /* Maps */
  683. map<int32, int32> dead_spawns;
  684. map<int32, vector<int32>* > enemy_faction_list;
  685. map<int32, vector<int32>* > npc_faction_list;
  686. map<int32, vector<int32>* > reverse_enemy_faction_list;
  687. map<int32, Spawn*> spawn_list;
  688. map<int32, FlightPathInfo*> m_flightPaths;
  689. map<int32, vector<FlightPathLocation*> > m_flightPathRoutes;
  690. /* Lists */
  691. list<Spawn*> pending_spawn_list_add;
  692. /* Vectors */
  693. vector<RevivePoint*>* revive_points;
  694. vector<int32> transport_spawns;
  695. /* Classes */
  696. SpellProcess* spellProcess;
  697. TradeskillMgr* tradeskillMgr;
  698. /* Timers */
  699. Timer aggro_timer;
  700. Timer charsheet_changes;
  701. Timer client_save;
  702. Timer location_prox_timer;
  703. Timer location_grid_timer;
  704. Timer movement_timer;
  705. Timer regenTimer;
  706. Timer respawn_timer;
  707. Timer shutdownTimer;
  708. Timer spawn_check_add;
  709. Timer spawn_check_remove;
  710. Timer spawn_expire_timer;
  711. Timer spawn_range;
  712. Timer spawn_update;
  713. Timer sync_game_time_timer;
  714. Timer tracking_timer;
  715. Timer weatherTimer;
  716. Timer widget_timer;
  717. Timer queue_updates;
  718. /* Enums */
  719. Instance_Type InstanceType;
  720. /* Variables */
  721. volatile bool finished_depop;
  722. volatile bool depop_zone;
  723. volatile bool repop_zone;
  724. volatile bool respawns_allowed;
  725. volatile bool LoadingData;
  726. bool reloading_spellprocess;
  727. bool zoneShuttingDown;
  728. bool cityzone;
  729. bool always_loaded;
  730. bool isInstance;
  731. int32 pNumPlayers;
  732. sint16 minimumStatus;
  733. int16 minimumLevel;
  734. int16 maximumLevel;
  735. int16 minimumVersion;
  736. char zone_name[64];
  737. char zonesky_file[64];
  738. char zone_file[64];
  739. char zone_description[255];
  740. float underworld;
  741. float safe_x;
  742. float safe_y;
  743. float safe_z;
  744. float safe_heading;
  745. float xp_mod;
  746. volatile int32 zoneID;
  747. bool locked; // JA: implementing /zone lock|unlock commands
  748. int32 instanceID;
  749. string zone_motd;
  750. int32 def_reenter_time;
  751. int32 def_reset_time;
  752. int32 def_lockout_time;
  753. int8 group_zone_option;
  754. float rain;
  755. bool isDusk;
  756. int dusk_hour;
  757. int dawn_hour;
  758. int dusk_minute;
  759. int dawn_minute;
  760. int32 spawn_delete_timer;
  761. int32 expansion_flag;
  762. int32 holiday_flag;
  763. map<int16, PacketStruct*> versioned_pos_structs;
  764. map<int16, PacketStruct*> versioned_info_structs;
  765. map<int16, PacketStruct*> versioned_vis_structs;
  766. /* Weather Stuff */
  767. bool weather_enabled; // false = disabled, true = enabled
  768. int8 weather_type; // 0 = normal, 1 = dynamic, 2 = random, 3 = chaotic
  769. int32 weather_frequency; // how often weather changes
  770. float weather_min_severity; // minimum weather severity in a zone
  771. float weather_max_severity; // maximum weather severity in a zone
  772. float weather_change_amount; // how much does the weather change each interval (normal weather conditions)
  773. float weather_dynamic_offset; // max amount the weather change each interval (dynamic weather conditions)
  774. int8 weather_change_chance; // percentage chance the weather will change
  775. int8 weather_pattern; // 0 = decreasing severity, 1 = increasing severity, 2 = random severity
  776. int32 weather_last_changed_time; // last time weather changed (used with weather_frequency)
  777. float weather_current_severity; // current weather conditions in a zone
  778. bool weather_allowed; // from zones.weather_allowed field in database
  779. bool weather_signaled; // whether or not we told the client "it begins to rain"
  780. bool reloading;
  781. map<int32, vector<EntityCommand*>* > entity_command_list;
  782. map<int32, map<int32, int8> > npc_spell_list;
  783. map<int32, map<int32, int16> > npc_skill_list;
  784. map<int32, vector<int32> > npc_equipment_list;
  785. map<int32, NPC*> npc_list;
  786. map<int32,Object*> object_list;
  787. map<int32,Sign*> sign_list;
  788. map<int32,Widget*> widget_list;
  789. map<int32, vector<GroundSpawnEntry*> > groundspawn_entries;
  790. map<int32, vector<GroundSpawnEntryItem*> > groundspawn_items;
  791. Mutex MGroundSpawnItems;
  792. map<int32,GroundSpawn*> groundspawn_list;
  793. map<int32,LootTable*> loot_tables;
  794. map<int32, vector<LootDrop*> > loot_drops;
  795. map<int32, vector<int32> > spawn_loot_list;
  796. vector<GlobalLoot*> level_loot_list;
  797. map<int16, vector<GlobalLoot*> > racial_loot_list;
  798. map<int32, vector<GlobalLoot*> > zone_loot_list;
  799. map<int32, vector<TransportDestination*> > transporters;
  800. map<int32, MutexList<LocationTransportDestination*>* > location_transporters;
  801. Mutex MTransporters;
  802. Mutex MTransportMaps;
  803. // Map <transport if, map name>
  804. map<int32, string> m_transportMaps;
  805. int32 watchdogTimestamp;
  806. std::map<int32, bool> m_pendingSpawnRemove;
  807. Mutex MPendingSpawnRemoval;
  808. std::map<int32, int32> lua_queued_state_commands;
  809. std::map<int32, std::map<std::string, float>> lua_spawn_update_command;
  810. std::mutex MLuaQueueStateCmd;
  811. public:
  812. Spawn* GetSpawn(int32 id);
  813. /* Entity Commands */
  814. map<int32, vector<EntityCommand*>*>* GetEntityCommandListAll() {return &entity_command_list;}
  815. vector<EntityCommand*>* GetEntityCommandList(int32 id);
  816. void SetEntityCommandList(int32 id, EntityCommand* command);
  817. void ClearEntityCommands();
  818. EntityCommand* GetEntityCommand(int32 id, string name);
  819. /* NPC's */
  820. void AddNPC(int32 id, NPC* npc);
  821. NPC* GetNPC(int32 id, bool override_loading = false) {
  822. if((!reloading || override_loading) && npc_list.count(id) > 0)
  823. return npc_list[id];
  824. else
  825. return 0;
  826. }
  827. NPC* GetNewNPC(int32 id) {
  828. if(!reloading && npc_list.count(id) > 0)
  829. return new NPC(npc_list[id]);
  830. else
  831. return 0;
  832. }
  833. /* NPC Spells */
  834. void AddNPCSpell(int32 list_id, int32 spell_id, int8 tier);
  835. vector<Spell*>* GetNPCSpells(int32 primary_list, int32 secondary_list);
  836. /* NPC Skills */
  837. void AddNPCSkill(int32 list_id, int32 skill_id, int16 value);
  838. map<string, Skill*>* GetNPCSkills(int32 primary_list, int32 secondary_list);
  839. /* NPC Equipment */
  840. void AddNPCEquipment(int32 list_id, int32 item_id);
  841. void SetNPCEquipment(NPC* npc);
  842. /* Objects */
  843. void AddObject(int32 id, Object* object){ object_list[id] = object; }
  844. Object* GetObject(int32 id, bool override_loading = false) {
  845. if((!reloading || override_loading) && object_list.count(id) > 0)
  846. return object_list[id];
  847. else
  848. return 0;
  849. }
  850. Object* GetNewObject(int32 id) {
  851. if(!reloading && object_list.count(id) > 0)
  852. return object_list[id]->Copy();
  853. else
  854. return 0;
  855. }
  856. /* Signs */
  857. void AddSign(int32 id, Sign* sign){ sign_list[id] = sign; }
  858. Sign* GetSign(int32 id, bool override_loading = false) {
  859. if((!reloading || override_loading) && sign_list.count(id) > 0)
  860. return sign_list[id];
  861. else
  862. return 0;
  863. }
  864. Sign* GetNewSign(int32 id) {
  865. if(!reloading && sign_list.count(id) > 0)
  866. return sign_list[id]->Copy();
  867. else
  868. return 0;
  869. }
  870. /* Widgets */
  871. void AddWidget(int32 id, Widget* widget);
  872. Widget* GetWidget(int32 id, bool override_loading = false);
  873. Widget* GetNewWidget(int32 id);
  874. /* Groundspawns */
  875. // JA: groundspawn revamp
  876. void AddGroundSpawnEntry(int32 groundspawn_id, int16 min_skill_level, int16 min_adventure_level, int8 bonus_table, float harvest1, float harvest3, float harvest5, float harvest_imbue, float harvest_rare, float harvest10, int32 harvest_coin);
  877. void AddGroundSpawnItem(int32 groundspawn_id, int32 item_id, int8 is_rare, int32 grid_id);
  878. vector<GroundSpawnEntry*>* GetGroundSpawnEntries(int32 id);
  879. vector<GroundSpawnEntryItem*>* GetGroundSpawnEntryItems(int32 id);
  880. void LoadGroundSpawnEntries();
  881. void LoadGroundSpawnItems();
  882. //
  883. void DeleteGroundSpawnItems();
  884. void AddGroundSpawn(int32 id, GroundSpawn* spawn);
  885. GroundSpawn* GetGroundSpawn(int32 id, bool override_loading = false);
  886. GroundSpawn* GetNewGroundSpawn(int32 id);
  887. /* Pet names */
  888. vector<string> pet_names;
  889. /* Loot */
  890. void AddLootTable(int32 id, LootTable* table);
  891. void AddLootDrop(int32 id, LootDrop* drop);
  892. void AddSpawnLootList(int32 spawn_id, int32 id);
  893. void ClearSpawnLootList(int32 spawn_id);
  894. void AddLevelLootList(GlobalLoot* loot);
  895. void AddRacialLootList(int16 racial_id, GlobalLoot* loot);
  896. void AddZoneLootList(int32 zone, GlobalLoot* loot);
  897. void ClearLootTables();
  898. vector<int32> GetSpawnLootList(int32 spawn_id, int32 zone_id, int8 spawn_level, int16 racial_id, Spawn* spawn = 0);
  899. vector<LootDrop*>* GetLootDrops(int32 table_id);
  900. LootTable* GetLootTable(int32 table_id);
  901. /* Transporters */
  902. void AddLocationTransporter(int32 zone_id, string message, float trigger_x, float trigger_y, float trigger_z, float trigger_radius, int32 destination_zone_id, float destination_x, float destination_y, float destination_z, float destination_heading, int32 cost, int32 unique_id);
  903. void AddTransporter(int32 transport_id, int8 type, string name, string message, int32 destination_zone_id, float destination_x, float destination_y, float destination_z, float destination_heading,
  904. int32 cost, int32 unique_id, int8 min_level, int8 max_level, int32 quest_req, int16 quest_step_req, int32 quest_complete, int32 map_x, int32 map_y, int32 expansion_flag, int32 holiday_flag, int32 min_client_version,
  905. int32 max_client_version, int32 flight_path_id, int16 mount_id, int8 mount_red_color, int8 mount_green_color, int8 mount_blue_color);
  906. void GetTransporters(vector<TransportDestination*>* returnList, Client* client, int32 transport_id);
  907. MutexList<LocationTransportDestination*>* GetLocationTransporters(int32 zone_id);
  908. void DeleteGlobalTransporters();
  909. ///<summary></summary>
  910. ///<param name='id'>The transport id</param>
  911. ///<param name='name'>Name of the map</param>
  912. void AddTransportMap(int32 id, string name);
  913. ///<summary>Checks to see if the transport has a map</summary>
  914. ///<param name='id'>The transport id we want to check</param>
  915. ///<returns>True if the transport id has a map</returns>
  916. bool TransportHasMap(int32 id);
  917. ///<summary>Gets the map name for the given transport id</summary>
  918. ///<param name='id'>The transport id that we want a map for</param>
  919. ///<returns>Map name</returns>
  920. string GetTransportMap(int32 id);
  921. ///<summary>Clears the list of transporter maps</summary>
  922. void DeleteTransporterMaps();
  923. void DeleteGlobalSpawns();
  924. void ReloadSpawns();
  925. void SendStateCommand(Spawn* spawn, int32 state);
  926. };
  927. #endif