zoneserver.h 43 KB

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