World.h 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581
  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 EQ2_WORLD_H
  17. #define EQ2_WORLD_H
  18. #include <string>
  19. #include <vector>
  20. #include <map>
  21. #include <list>
  22. #include "SpawnLists.h"
  23. #include "zoneserver.h"
  24. #include "NPC.h"
  25. #include "Widget.h"
  26. #include "Object.h"
  27. #include "GroundSpawn.h"
  28. #include "Sign.h"
  29. #include "Variables.h"
  30. #include "MutexList.h"
  31. #include "PlayerGroups.h"
  32. using namespace std;
  33. struct MerchantInfo{
  34. vector<int32> inventory_ids;
  35. /*int32 faction_id;
  36. sint32 faction_min;
  37. sint32 faction_max;
  38. float low_buy_multiplier;
  39. float high_buy_multiplier;
  40. float low_sell_multiplier;
  41. float high_sell_multiplier;*/
  42. };
  43. struct MerchantItemInfo{
  44. int32 item_id;
  45. int16 quantity;
  46. int32 price_item_id;
  47. int32 price_item2_id;
  48. int16 price_item_qty;
  49. int16 price_item2_qty;
  50. int32 price_status;
  51. int64 price_coins;
  52. int32 price_stationcash;
  53. };
  54. struct LootTable{
  55. string name;
  56. int32 mincoin;
  57. int32 maxcoin;
  58. int16 maxlootitems;
  59. float lootdrop_probability;
  60. float coin_probability;
  61. };
  62. struct LootDrop{
  63. int32 item_id;
  64. int16 item_charges;
  65. bool equip_item;
  66. float probability;
  67. };
  68. struct GroundSpawnEntry {
  69. int16 min_skill_level;
  70. int16 min_adventure_level;
  71. int8 bonus_table;
  72. float harvest1;
  73. float harvest3;
  74. float harvest5;
  75. float harvest_imbue;
  76. float harvest_rare;
  77. float harvest10;
  78. int32 harvest_coin;
  79. };
  80. struct GroundSpawnEntryItem {
  81. int32 item_id;
  82. int8 is_rare;
  83. int32 grid_id;
  84. };
  85. struct TransportDestination{
  86. int32 unique_id;
  87. int8 type;
  88. string display_name;
  89. string message;
  90. int32 destination_zone_id;
  91. float destination_x;
  92. float destination_y;
  93. float destination_z;
  94. float destination_heading;
  95. int32 cost;
  96. int8 min_level;
  97. int8 max_level;
  98. int32 req_quest;
  99. int16 req_quest_step;
  100. int32 req_quest_complete;
  101. int32 map_x;
  102. int32 map_y;
  103. int32 faction_id;
  104. int32 faction_value;
  105. };
  106. struct LocationTransportDestination{
  107. int32 unique_id;
  108. string message;
  109. int32 destination_zone_id;
  110. float destination_x;
  111. float destination_y;
  112. float destination_z;
  113. float destination_heading;
  114. float trigger_x;
  115. float trigger_y;
  116. float trigger_z;
  117. float trigger_radius;
  118. int32 cost;
  119. int32 faction_id;
  120. int32 faction_value;
  121. };
  122. //ideally we wouldn't need to store this information as we could get it from the Client object,
  123. //however since the client object disconnects from the server when zoning we can't count on it being available
  124. /*struct PlayerGroup;
  125. struct GroupOptions{
  126. int8 loot_method;
  127. int8 loot_items_rarity;
  128. int8 auto_split;
  129. int8 default_yell;
  130. int8 group_autolock;
  131. int8 solo_autolock;
  132. };
  133. struct GroupMemberInfo{
  134. string name;
  135. string zone;
  136. sint32 hp_current;
  137. sint32 hp_max;
  138. sint32 power_current;
  139. sint32 power_max;
  140. int16 level_current;
  141. int16 level_max;
  142. int8 race_id;
  143. int8 class_id;
  144. Client* client;
  145. PlayerGroup* group;
  146. };
  147. struct PlayerGroup{
  148. deque<GroupMemberInfo*> members;
  149. GroupOptions options;
  150. };*/
  151. struct LottoPlayer {
  152. int32 end_time;
  153. int8 num_matches;
  154. bool set;
  155. };
  156. struct HouseZone {
  157. int32 id;
  158. string name;
  159. int64 cost_coin;
  160. int32 cost_status;
  161. int64 upkeep_coin;
  162. int32 upkeep_status;
  163. int8 vault_slots;
  164. int8 alignment;
  165. int8 guild_level;
  166. int32 zone_id;
  167. int32 exit_zone_id;
  168. float exit_x;
  169. float exit_y;
  170. float exit_z;
  171. float exit_heading;
  172. };
  173. struct PlayerHouse {
  174. int32 house_id;
  175. int64 unique_id;
  176. int32 instance_id;
  177. int32 upkeep_due;
  178. int64 escrow_coins;
  179. int32 escrow_status;
  180. string player_name;
  181. };
  182. // Constants for STATs counters
  183. // Server Utilization
  184. #define STAT_SERVER_OS_TYPE 1 // what OS this server is running on
  185. #define STAT_SERVER_CPU_TYPE 2 // cpu type/speed (ie., Intel P4 3.0GHz)
  186. #define STAT_SERVER_CPU_CURRENT 3 // current CPU usage by EQ2World.exe process
  187. #define STAT_SERVER_CPU_PEAK 4 // highest CPU usage by EQ2World.exe this session
  188. #define STAT_SERVER_PHYSICAL_RAM_TOTAL 5 // total RAM in server
  189. #define STAT_SERVER_PHYSICAL_RAM_CURRENT 6 // current RAM usage by EQ2World.exe
  190. #define STAT_SERVER_PHYSICAL_RAM_PEAK 7 // highest RAM usage by EQ2World.exe this session
  191. #define STAT_SERVER_VIRTUAL_RAM_TOTAL 8 // total vRAM in server
  192. #define STAT_SERVER_VIRTUAL_RAM_CURRENT 9 // current vRAM usage by EQ2World.exe
  193. #define STAT_SERVER_VIRTUAL_RAM_PEAK 10 // highest vRAM usage by EQ2World.exe this session
  194. #define STAT_SERVER_DISK_USAGE 11 // size of /eq2emulator folder and contents
  195. #define STAT_SERVER_THREAD_COUNT 12 // thread count of EQ2World.exe process
  196. #define STAT_SERVER_AVG_LATENCY 13 // network latency between world and loginserver
  197. // Server Stats
  198. #define STAT_SERVER_CREATED 100 // unix_timestamp of date server first came online
  199. #define STAT_SERVER_START_TIME 101 // unix_timestamp of date/time server booted up
  200. #define STAT_SERVER_ACCEPTED_CONNECTION 102 // successful connections since server startup
  201. #define STAT_SERVER_MOST_CONNECTIONS 103 // most players online in history of server
  202. #define STAT_SERVER_NUM_ACCOUNTS 104 // total number of unique accounts
  203. #define STAT_SERVER_NUM_CHARACTERS 105 // total number of player characters
  204. #define STAT_SERVER_AVG_CHAR_LEVEL 106 // average level of player characters
  205. #define STAT_SERVER_NUM_ACTIVE_ZONES 107 // number of currently running/loaded zones
  206. #define STAT_SERVER_NUM_ACTIVE_INSTANCES 108 // number of active zones that are "instances"
  207. // Player PvE counters
  208. #define STAT_PLAYER_TOTAL_NPC_KILLS 1000 // total NPC kills by player
  209. #define STAT_PLAYER_TOTAL_DEATHS 1001 // total non-PvP deaths of player
  210. #define STAT_PLAYER_KVD_RATIO 1002 // kill-versus-death ratio of player
  211. #define STAT_PLAYER_HIGHEST_MELEE_HIT 1003 // players highest melee hit to date
  212. #define STAT_PLAYER_HIGHEST_MAGIC_HIT 1004 // players highest magic hit to date
  213. #define STAT_PLAYER_HIGHEST_HO_HIT 1005 // players highest heroic opportunity hit
  214. #define STAT_PLAYER_TOTAL_STATUS 1006 // player total status
  215. #define STAT_PLAYER_TOTAL_WEALTH 1007 // player total wealth
  216. #define STAT_PLAYER_QUESTS_COMPLETED 1008 // total quests completed
  217. #define STAT_PLAYER_RECIPES_KNOWN 1009 // total recipes player knows
  218. #define STAT_PLAYER_TOTAL_CRAFTED_ITEMS 1010 // total items crafted by player
  219. #define STAT_PLAYER_ITEMS_DISCOVERED 1011 // total items discovered by player
  220. #define STAT_PLAYER_RARES_HARVESTED 1012 // total rare harvests by player
  221. #define STAT_PLAYER_ITEMS_HARVESTED 1013 // total rare harvests by player
  222. #define STAT_PLAYER_MASTER_ABILITIES 1014 // total master abilities player has
  223. #define STAT_PLAYER_HIGHEST_FALLING_HIT 1015 // player's highest damage amount taken from falling
  224. // Player PvP counters
  225. #define STAT_PLAYER_TOTAL_PVP_KILLS 1100 // total PVP kills by player
  226. #define STAT_PLAYER_PVP_KILL_STREAK 1101 // longest PVP kill streak of player
  227. #define STAT_PLAYER_TOTAL_PVP_DEATHS 1102 // total PVP deaths of player
  228. #define STAT_PLAYER_PVP_DEATH_STREAK 1103 // longest PVP death streak of player
  229. #define STAT_PLAYER_PVP_KVD_RATIO 1104 // PVP kill-versus-death ratio of player
  230. #define STAT_PLAYER_TOTAL_ARENA_KILLS 1105 // total Arena kills of player
  231. // MOST stats for players
  232. #define STAT_PLAYER_MOST_NPC_KILLS 1200 // IPvP: Player with most NPC kills
  233. #define STAT_PLAYER_MOST_NPC_DEATHS 1201 // IPvP: Player with most non-PVP deaths
  234. #define STAT_PLAYER_MOST_PVP_KILLS 1202 // IPvP: Player with most PvP kills
  235. #define STAT_PLAYER_MOST_PVP_DEATHS 1203 // IPvP: Player with most PvP deaths
  236. #define STAT_PLAYER_MOST_ARENA_KILLS 1204 // IPvP: Player with most Arena kills
  237. #define STAT_PLAYER_MOST_STATUS 1205 // IPvP: Player with most Status
  238. #define STAT_PLAYER_MOST_WEALTH 1206 // IPvP: Player with most Wealth
  239. // HIGHEST stats for players
  240. #define STAT_PLAYER_HIGHEST_NPC_KVD_RATIO 1300 // IPvP: Player with highest NPC kill-versus-death ratio
  241. #define STAT_PLAYER_HIGHEST_PVP_KILL_STREAK 1301 // IPvP: Player with longest PvP kill streak
  242. #define STAT_PLAYER_HIGHEST_PVP_DEATH_STREAK 1302 // IPvP: Player with longest PvP death streak
  243. #define STAT_PLAYER_HIGHEST_PVP_KVD_RATIO 1303 // IPvP: Player with highest PvP kill-versus-death ratio
  244. #define STAT_PLAYER_HIGHEST_HP 1304 // IPvP: Player with highest HP on server
  245. #define STAT_PLAYER_HIGHEST_POWER 1305 // IPvP: Player with highest Power on server
  246. #define STAT_PLAYER_HIGHEST_RESISTS 1306 // IPvP: Player with highest Resists on server
  247. struct Statistic {
  248. int32 stat_id;
  249. sint32 stat_value;
  250. int32 stat_date;
  251. bool save_needed;
  252. };
  253. // Player EVENT defines
  254. // Some EVENTs are single occurrance (S), while others are cummulative throughout the life of the player (C)
  255. #define PLAYER_EVENT_NEW_ADV_LEVEL 2000 // (C) player achieves a new adventure level
  256. #define PLAYER_EVENT_NEW_TS_LEVEL 2001 // (C) player achieves a new tradeskill level
  257. #define PLAYER_EVENT_NEW_AA 2002 // (C) player earns AA pt
  258. #define PLAYER_EVENT_NEW_ACHIEVEMENT 2003 // (C) player new achievement
  259. #define PLAYER_EVENT_LAST_DEATH 2004 // (S) player was last killed
  260. #define PLAYER_EVENT_LAST_KILL 2005 // (S) player last killed spawn_id
  261. #define PLAYER_EVENT_DISCOVER_POI 2006 // (C) player discovers location_id
  262. // These maybe should be World stat events, since it is about 1 player discovering a new item?
  263. #define PLAYER_EVENT_DISCOVER_ITEM 2007 // (C) player discovers item_id
  264. #define PLAYER_EVENT_DISCOVER_RECIPE 2008 // (C) player discovers recipe_id
  265. struct PlayerHistory {
  266. int32 history_zone;
  267. int32 history_id;
  268. sint32 history_value;
  269. int32 history_date;
  270. bool save_needed;
  271. };
  272. struct GlobalLoot {
  273. int8 minLevel;
  274. int8 maxLevel;
  275. int32 table_id;
  276. };
  277. #define TRANSPORT_TYPE_LOCATION 0
  278. #define TRANSPORT_TYPE_ZONE 1
  279. #define TRANSPORT_TYPE_GENERIC 2
  280. class ZoneList {
  281. public:
  282. ZoneList();
  283. ~ZoneList();
  284. void Add(ZoneServer* zone);
  285. void Remove(ZoneServer* zone);
  286. ZoneServer* Get(int32 id, bool loadZone = true);
  287. ZoneServer* Get(const char* zone_name, bool loadZone=true);
  288. ZoneServer* GetByInstanceID(int32 id, int32 zone_id=0);
  289. /// <summary>Get the instance for the given zone id with the lowest population</summary>
  290. /// <param name='zone_id'>The id of the zone to look up</param>
  291. /// <returns>ZoneServer* of an active zone with the given id</returns>
  292. ZoneServer* GetByLowestPopulation(int32 zone_id);
  293. void AddClientToMap(string name, Client* client){
  294. name = ToLower(name);
  295. MClientList.lock();
  296. client_map[name] = client;
  297. MClientList.unlock();
  298. }
  299. void CheckFriendList(Client* client);
  300. void CheckFriendZoned(Client* client);
  301. // move to Chat/Chat.h?
  302. bool HandleGlobalChatMessage(Client* from, char* to, int16 channel, const char* message, const char* channel_name = 0);
  303. void HandleGlobalBroadcast(const char* message);
  304. void HandleGlobalAnnouncement(const char* message);
  305. //
  306. int32 Count();
  307. Client* GetClientByCharName(string name){
  308. name = ToLower(name);
  309. Client* ret = 0;
  310. MClientList.lock();
  311. if(client_map.count(name) > 0)
  312. ret = client_map[name];
  313. MClientList.unlock();
  314. return ret;
  315. }
  316. Client* GetClientByCharID(int32 id) {
  317. Client* ret = 0;
  318. MClientList.lock();
  319. map<string, Client*>::iterator itr;
  320. for (itr = client_map.begin(); itr != client_map.end(); itr++) {
  321. if (itr->second->GetCharacterID() == id) {
  322. ret = itr->second;
  323. break;
  324. }
  325. }
  326. MClientList.unlock();
  327. return ret;
  328. }
  329. Client* GetClientByEQStream(EQStream* eqs) {
  330. Client* ret = 0;
  331. if (eqs) {
  332. MClientList.lock();
  333. map<string, Client*>::iterator itr;
  334. for (itr = client_map.begin(); itr != client_map.end(); itr++) {
  335. if (itr->second->getConnection() == eqs) {
  336. ret = itr->second;
  337. break;
  338. }
  339. }
  340. MClientList.unlock();
  341. }
  342. return ret;
  343. }
  344. void UpdateVitality(float amount);
  345. void RemoveClientFromMap(string name, Client* client){
  346. name = ToLower(name);
  347. MClientList.lock();
  348. if(client_map.count(name) > 0 && client_map[name] == client)
  349. client_map.erase(name);
  350. MClientList.unlock();
  351. }
  352. bool ClientConnected(int32 account_id);
  353. void ReloadClientQuests();
  354. bool DepopFinished();
  355. void Depop();
  356. void Repop();
  357. void DeleteSpellProcess();
  358. void LoadSpellProcess();
  359. void ProcessWhoQuery(const char* query, Client* client);
  360. void ProcessWhoQuery(vector<string>* queries, ZoneServer* zone, vector<Entity*>* players, bool isGM);
  361. void SendZoneList(Client* client);
  362. void WritePlayerStatistics();
  363. void ShutDownZones();
  364. void ReloadMail();
  365. void ReloadSpawns();
  366. private:
  367. Mutex MClientList;
  368. Mutex MZoneList;
  369. map<ZoneServer*, int32> removed_zoneservers;
  370. map<string,Client*> client_map;
  371. list<ZoneServer*> zlist;
  372. };
  373. class World {
  374. public:
  375. World();
  376. ~World();
  377. int8 GetClassID(const char* name);
  378. void Process();
  379. void init();
  380. PacketStruct* GetWorldTime(int16 version);
  381. void WorldTimeTick();
  382. float GetXPRate();
  383. float GetTSXPRate();
  384. void LoadVitalityInformation();
  385. void UpdateVitality();
  386. WorldTime* GetWorldTimeStruct(){
  387. return &world_time;
  388. }
  389. ulong GetCurrentThreadID();
  390. int64 GetThreadUsageCPUTime();
  391. // These 2 functions are never used. What was their purpose? Should they be removed?
  392. void AddNPCAppearance(int32 id, AppearanceData* appearance){ npc_appearance_list[id] = appearance; }
  393. AppearanceData* GetNPCAppearance(int32 id) { return npc_appearance_list[id]; }
  394. void ReloadGuilds();
  395. bool ReportBug(string data, char* player_name, int32 account_id, const char* spawn_name, int32 spawn_id, int32 zone_id);
  396. void AddSpawnScript(int32 id, const char* name);
  397. void AddSpawnEntryScript(int32 id, const char* name);
  398. void AddSpawnLocationScript(int32 id, const char* name);
  399. void AddZoneScript(int32 id, const char* name);
  400. const char* GetSpawnScript(int32 id);
  401. const char* GetSpawnEntryScript(int32 id);
  402. const char* GetSpawnLocationScript(int32 id);
  403. const char* GetZoneScript(int32 id);
  404. void ResetSpawnScripts();
  405. void ResetZoneScripts();
  406. int16 GetMerchantItemQuantity(int32 merchant_id, int32 item_id);
  407. void DecreaseMerchantQuantity(int32 merchant_id, int32 item_id, int16 amount);
  408. int32 GetInventoryID(int32 merchant_id, int32 item_id);
  409. void AddMerchantItem(int32 inventory_id, MerchantItemInfo ItemInfo);
  410. void RemoveMerchantItem(int32 inventory_id, int32 item_id);
  411. vector<MerchantItemInfo>* GetMerchantList(int32 merchant_id);
  412. vector<MerchantItemInfo>* GetMerchantItemList(int32 merchant_id, int8 merchant_type, Player* player);
  413. MerchantInfo* GetMerchantInfo(int32 merchant_id);
  414. map<int32, MerchantInfo*>* GetMerchantInfo();
  415. void AddMerchantInfo(int32 merchant_id, MerchantInfo* multiplier);
  416. void DeleteMerchantsInfo();
  417. void DeleteMerchantItems();
  418. void DeleteSpawns();
  419. vector<Variable*>* GetClientVariables();
  420. void WritePlayerStatistics();
  421. void WriteServerStatistics();
  422. void AddServerStatistic(int32 stat_id, sint32 stat_value, int32 stat_date);
  423. void UpdateServerStatistic(int32 stat_id, sint32 stat_value, bool overwrite = false);
  424. sint32 GetServerStatisticValue(int32 stat_id);
  425. void RemoveServerStatistics();
  426. //PlayerGroup* AddGroup(Client* leader);
  427. //void AddGroupMember(PlayerGroup* group, Client* member);
  428. //void RemoveGroupMember(Client* member, bool immediate = false);
  429. //void DisbandGroup(PlayerGroup* group, bool lock = true);
  430. void SendGroupQuests(PlayerGroup* group, Client* client);
  431. //void UpdateGroupBuffs();
  432. //void RemoveGroupBuffs(PlayerGroup *group, Client *client);
  433. //void SetPendingGroup(char* name, char* leader);
  434. //void GroupMessage(PlayerGroup* group, const char* message, ...);
  435. //void SimpleGroupMessage(PlayerGroup* group, const char* message);
  436. //void GroupChatMessage(PlayerGroup* group, Spawn* from, const char* message);
  437. //const char* GetPendingGroup(string name);
  438. //void GroupReadLock();
  439. //void GroupReadUnLock();
  440. //void CheckRemoveGroupedPlayer();
  441. //void SendGroupUpdate(PlayerGroup* group, Client* exclude = 0);
  442. void RejoinGroup(Client* client);
  443. //bool MakeLeader(Client* leader, string new_leader);
  444. void AddBonuses(ItemStatsValues* values, int16 type, sint32 value, Entity* entity);
  445. void CreateGuild(const char* guild_name, Client* leader = 0, int32 group_id = 0);
  446. void SaveGuilds();
  447. void PickRandomLottoDigits(int32* digits);
  448. void AddLottoPlayer(int32 character_id, int32 end_time);
  449. void RemoveLottoPlayer(int32 character_id);
  450. void SetLottoPlayerNumMatches(int32 character_id, int8 num_matches);
  451. void CheckLottoPlayers();
  452. void PopulateTOVStatMap();
  453. int32 LoadItemBlueStats();
  454. sint16 GetItemStatTOVValue(sint16 subtype);
  455. sint16 GetItemStatDOVValue(sint16 subtype);
  456. sint16 GetItemStatCOEValue(sint16 subtype);
  457. sint16 GetItemStatKAValue(sint16 subtype);
  458. sint16 GetItemStatTESTValue(sint16 subtype);
  459. vector<string> biography;
  460. volatile bool items_loaded;
  461. volatile bool spells_loaded;
  462. volatile bool achievments_loaded;
  463. void AddHouseZone(int32 id, string name, int64 cost_coins, int32 cost_status, int64 upkeep_coins, int32 upkeep_status, int8 vault_slots, int8 alignment, int8 guild_level, int32 zone_id, int32 exit_zone_id, float exit_x, float exit_y, float exit_z, float exit_heading);
  464. HouseZone* GetHouseZone(int32 id);
  465. void AddPlayerHouse(int32 char_id, int32 house_id, int64 unique_id, int32 instance_id, int32 upkeep_due, int64 escrow_coins, int32 escrow_status, string player_name);
  466. PlayerHouse* GetPlayerHouseByHouseID(int32 char_id, int32 house_id);
  467. PlayerHouse* GetPlayerHouseByUniqueID(int64 unique_id);
  468. PlayerHouse* GetPlayerHouseByInstanceID(int32 instance_id);
  469. vector<PlayerHouse*> GetAllPlayerHouses(int32 char_id);
  470. vector<PlayerHouse*> GetAllPlayerHousesByHouseID(int32 house_id);
  471. PlayerGroupManager* GetGroupManager() { return &m_playerGroupManager; }
  472. bool CheckTempBugCRC(char* msg);
  473. private:
  474. //void RemovePlayerFromGroup(PlayerGroup* group, GroupMemberInfo* info, bool erase = true);
  475. //void DeleteGroupMember(GroupMemberInfo* info);
  476. Mutex MMerchantList;
  477. Mutex MSpawnScripts;
  478. Mutex MZoneScripts;
  479. //Mutex MGroups;
  480. map<int32, MerchantInfo*> merchant_info;
  481. map<int32, vector<MerchantItemInfo> > merchant_inventory_items;
  482. int32 vitality_frequency;
  483. float vitality_amount;
  484. float xp_rate;
  485. float ts_xp_rate; // JA
  486. WorldTime world_time;
  487. map<int32,AppearanceData*> npc_appearance_list;
  488. map<int32, string> spawn_scripts;
  489. map<int32, string> spawnentry_scripts;
  490. map<int32, string> spawnlocation_scripts;
  491. map<int32, string> zone_scripts;
  492. //vector<PlayerGroup*> player_groups;
  493. //map<GroupMemberInfo*, int32> group_removal_pending;
  494. //map<string, string> pending_groups;
  495. map<int32, Statistic*> server_statistics;
  496. MutexMap<int32, LottoPlayer*> lotto_players;
  497. int32 last_checked_time;
  498. Timer save_time_timer;
  499. Timer time_tick_timer;
  500. Timer vitality_timer;
  501. Timer player_stats_timer;
  502. Timer server_stats_timer;
  503. //Timer remove_grouped_player;
  504. Timer guilds_timer;
  505. Timer lotto_players_timer;
  506. Timer group_buff_updates;
  507. map<int32, HouseZone*> m_houseZones;
  508. // Map <house id, map<char id, player house>>
  509. map<int32, map<int32, PlayerHouse*> > m_playerHouses;
  510. Mutex MHouseZones;
  511. Mutex MPlayerHouses;
  512. map<int16,int16> tov_itemstat_conversion;
  513. map<int16,int16> dov_itemstat_conversion;
  514. map<int16,int16> coe_itemstat_conversion;
  515. map<int16,int16> ka_itemstat_conversion;
  516. PlayerGroupManager m_playerGroupManager;
  517. Mutex MBugReport;
  518. map<sint32, bool> bug_report_crc;
  519. };
  520. #endif