client.h 27 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765
  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 CLIENT_H
  17. #define CLIENT_H
  18. #include <list>
  19. #include <atomic>
  20. #include <mutex>
  21. #include <shared_mutex>
  22. #include "../common/EQStream.h"
  23. #include "../common/timer.h"
  24. #include "Items/Items.h"
  25. #include "zoneserver.h"
  26. #include "Player.h"
  27. #include "Quests.h"
  28. using namespace std;
  29. #define CLIENT_TIMEOUT 60000
  30. struct TransportDestination;
  31. struct ConversationOption;
  32. struct VoiceOverStruct;
  33. #define MAIL_SEND_RESULT_SUCCESS 0
  34. #define MAIL_SEND_RESULT_UNKNOWN_PLAYER 1
  35. #define MAIL_SEND_RESULT_CANNOT_SEND_TO_PLAYER 2
  36. #define MAIL_SEND_RESULT_GIFT_WRONG_SERVER 3 /* Cannot send gifts across worlds */
  37. #define MAIL_SEND_RESULT_CANNOT_SEND_TO_SELF 4
  38. #define MAIL_SEND_RESULT_MAILBOX_FULL 5
  39. #define MAIL_SEND_RESULT_NOT_ENOUGH_COIN 6
  40. #define MAIL_SEND_RESULT_ITEM_IN_BAG 7 /* Cannot send non-empty bags as gifts */
  41. #define MAIL_SEND_RESULT_NOT_IN_GUILD 8
  42. #define MAIL_SEND_RESULT_GUILD_ACCESS_DENIED 9
  43. #define MAIL_SEND_RESULT_GIFTS_TO_GUILD 10 /* Cannot send gifts to entire guild */
  44. #define MAIL_SEND_RESULT_EMPTY_TO_LIST 11 /* Empty recipient list */
  45. #define MAIL_SEND_RESULT_TRIAL_PLAYERS 12 /* Cannot send mail to trial players */
  46. #define MAIL_SEND_RESULT_MAIL_WRONG_SERVER 13 /* Cannot send mail across worlds */
  47. #define MAIL_SEND_RESULT_UNKNOWN_ERROR 14
  48. #define MAIL_TYPE_REGULAR 0
  49. #define MAIL_TYPE_SPAM 1
  50. #define MAIL_TYPE_GM 2
  51. struct QueuedQuest{
  52. int32 quest_id;
  53. int32 step;
  54. bool display_quest_helper;
  55. };
  56. struct BuyBackItem{
  57. int32 item_id;
  58. int32 unique_id;
  59. int16 quantity;
  60. int32 price;
  61. bool save_needed;
  62. };
  63. struct MacroData{
  64. string name;
  65. string text;
  66. int16 icon;
  67. };
  68. struct Mail {
  69. int32 mail_id;
  70. int32 player_to_id;
  71. string player_from;
  72. string subject;
  73. string mail_body;
  74. int8 already_read;
  75. int8 mail_type;
  76. int32 coin_copper;
  77. int32 coin_silver;
  78. int32 coin_gold;
  79. int32 coin_plat;
  80. int16 stack;
  81. int32 postage_cost;
  82. int32 attachment_cost;
  83. int32 char_item_id;
  84. int32 time_sent;
  85. int32 expire_time;
  86. int8 save_needed;
  87. };
  88. struct MailWindow {
  89. int32 coin_copper;
  90. int32 coin_silver;
  91. int32 coin_gold;
  92. int32 coin_plat;
  93. Item* item;
  94. int32 char_item_id;
  95. int32 stack;
  96. };
  97. struct PendingGuildInvite {
  98. Guild* guild;
  99. Player* invited_by;
  100. };
  101. struct PendingResurrection {
  102. Spawn* caster;
  103. Timer* expire_timer;
  104. string spell_name;
  105. string heal_name;
  106. bool active;
  107. float hp_perc;
  108. float mp_perc;
  109. float range;
  110. int8 crit_mod;
  111. bool no_calcs;
  112. int32 subspell;
  113. bool crit;
  114. bool should_delete;
  115. int32 spell_visual;
  116. };
  117. #define PAPERDOLL_TYPE_FULL 0
  118. #define PAPERDOLL_TYPE_HEAD 1
  119. struct IncomingPaperdollImage {
  120. uchar* image_bytes;
  121. int32 current_size_bytes;
  122. int8 image_num_packets;
  123. int8 last_received_packet_index;
  124. int8 image_type;
  125. };
  126. struct WaypointInfo {
  127. int32 id;
  128. int8 type;
  129. };
  130. class Client {
  131. public:
  132. Client(EQStream* ieqs);
  133. ~Client();
  134. void RemoveClientFromZone();
  135. bool Process(bool zone_process = false);
  136. void Disconnect(bool send_disconnect = true);
  137. void SetConnected(bool val){ connected = val; }
  138. bool IsConnected(){ return connected; }
  139. bool IsReadyForSpawns(){ return ready_for_spawns; }
  140. bool IsReadyForUpdates() { return ready_for_updates; }
  141. bool IsZoning(){ return client_zoning; }
  142. void SetReadyForUpdates();
  143. void SetReadyForSpawns(bool val);
  144. void QueuePacket(EQ2Packet* app, bool attemptedCombine=false);
  145. void SendLoginInfo();
  146. int8 GetMessageChannelColor(int8 channel_type);
  147. void HandleTellMessage(Client* from, const char* message, const char* to, int32 current_language_id);
  148. void SimpleMessage(int8 color, const char* message);
  149. void Message(int8 type, const char* message, ...);
  150. void SendSpellUpdate(Spell* spell, bool add_silently = false, bool add_to_hotbar = true);
  151. void Zone(ZoneServer* new_zone, bool set_coords = true, bool is_spell = false);
  152. void Zone(const char* new_zone, bool set_coords = true, bool is_spell = false);
  153. void Zone(int32 instanceid, bool set_coords = true, bool byInstanceID=false, bool is_spell = false);
  154. void SendZoneInfo();
  155. void SendZoneSpawns();
  156. void HandleVerbRequest(EQApplicationPacket* app);
  157. void SendCharInfo();
  158. void SendLoginDeniedBadVersion();
  159. void SendCharPOVGhost();
  160. void SendPlayerDeathWindow();
  161. float DistanceFrom(Client* client);
  162. void SendDefaultGroupOptions();
  163. bool HandleLootItem(Spawn* entity, int32 item_id);
  164. bool HandleLootItem(Spawn* entity, Item* item);
  165. void HandleLoot(EQApplicationPacket* app);
  166. void HandleSkillInfoRequest(EQApplicationPacket* app);
  167. void HandleExamineInfoRequest(EQApplicationPacket* app);
  168. void HandleQuickbarUpdateRequest(EQApplicationPacket* app);
  169. void SendPopupMessage(int8 unknown, const char* text, const char* type, float size, int8 red, int8 green, int8 blue);
  170. void PopulateSkillMap();
  171. void ChangeLevel(int16 old_level, int16 new_level);
  172. void ChangeTSLevel(int16 old_level, int16 new_level);
  173. bool Summon(const char* search_name);
  174. std::string IdentifyInstanceLockout(int32 zoneID, bool displayClient = true);
  175. ZoneServer* IdentifyInstance(int32 zoneID);
  176. bool TryZoneInstance(int32 zoneID, bool zone_coords_valid=false);
  177. bool GotoSpawn(const char* search_name, bool forceTarget=false);
  178. void DisplayDeadWindow();
  179. void HandlePlayerRevive(int32 point_id);
  180. void Bank(Spawn* banker, bool cancel = false);
  181. void BankWithdrawal(int64 amount);
  182. bool BankWithdrawalNoBanker(int64 amount);
  183. bool BankHasCoin(int64 amount);
  184. void BankDeposit(int64 amount);
  185. Spawn* GetBanker();
  186. void SetBanker(Spawn* in_banker);
  187. bool AddItem(int32 item_id, int16 quantity = 0, AddItemType type = AddItemType::NOT_SET);
  188. bool AddItem(Item* item, bool* item_deleted = 0, AddItemType type = AddItemType::NOT_SET);
  189. bool AddItemToBank(int32 item_id, int16 quantity = 0);
  190. bool AddItemToBank(Item* item);
  191. void UnequipItem(int16 index, sint32 bag_id = -999, int8 to_slot = 255, int8 appearance_equip = 0);
  192. bool RemoveItem(Item *item, int16 quantity, bool force_override_no_delete = false);
  193. void ProcessTeleport(Spawn* spawn, vector<TransportDestination*>* destinations, int32 transport_id = 0, bool is_spell = false);
  194. void ProcessTeleportLocation(EQApplicationPacket* app);
  195. void UpdateCharacterInstances();
  196. void SetLastSavedTimeStamp(int32 unixts) { last_saved_timestamp = unixts; }
  197. int32 GetLastSavedTimeStamp() { return last_saved_timestamp; }
  198. bool CheckZoneAccess(const char* zoneName);
  199. ZoneServer* GetCurrentZone();
  200. void SetCurrentZoneByInstanceID(int32 id, int32 zoneid);
  201. //void SetCurrentZoneByInstanceID(instanceid, zoneid);
  202. void SetCurrentZone(int32 id);
  203. void SetCurrentZone(ZoneServer* zone) {
  204. current_zone = zone;
  205. if(player) {
  206. player->SetZone(zone, GetVersion());
  207. }
  208. }
  209. void SetZoningDestination(ZoneServer* zone) {
  210. zoning_destination = zone;
  211. }
  212. ZoneServer* GetZoningDestination() { return zoning_destination; }
  213. Player* GetPlayer(){ return player; }
  214. EQStream* getConnection(){ return eqs; }
  215. inline int32 GetIP() { return ip; }
  216. inline int16 GetPort() { return port; }
  217. inline int32 WaitingForBootup() { return pwaitingforbootup; }
  218. inline int32 GetCharacterID() { return character_id; }
  219. inline int32 GetAccountID() { return account_id; }
  220. inline const char* GetAccountName() { return account_name; }
  221. inline sint16 GetAdminStatus() { return admin_status; }
  222. inline int16 GetVersion() { return version; }
  223. void SetNameCRC(int32 val){ name_crc = val; }
  224. int32 GetNameCRC(){ return name_crc; }
  225. void SetVersion(int16 new_version){ version = new_version; }
  226. void SetAccountID(int32 in_accountid) { account_id = in_accountid; }
  227. void SetCharacterID(int32 in_characterid) { character_id = in_characterid; }
  228. void SetAdminStatus(sint16 in_status) { admin_status = in_status; }
  229. void DetermineCharacterUpdates ( );
  230. void UpdateTimeStampFlag ( int8 flagType )
  231. {
  232. if(! (timestamp_flag & flagType ) )
  233. timestamp_flag |= flagType;
  234. }
  235. int8 GetTimeStampFlag ( ) { return timestamp_flag; }
  236. bool UpdateQuickbarNeeded();
  237. void Save();
  238. bool remove_from_list;
  239. void CloseLoot(int32 spawn_id);
  240. void SendPendingLoot(int32 total_coins, Spawn* entity);
  241. void Loot(int32 total_coins, vector<Item*>* items, Spawn* entity);
  242. void Loot(Spawn* entity, bool attemptDisarm=true);
  243. void OpenChest(Spawn* entity, bool attemptDisarm=true);
  244. void CastGroupOrSelf(Entity* source, uint32 spellID, uint32 spellTier=1, float restrictiveRadius=0.0f);
  245. void CheckPlayerQuestsKillUpdate(Spawn* spawn);
  246. void CheckPlayerQuestsChatUpdate(Spawn* spawn);
  247. void CheckPlayerQuestsItemUpdate(Item* item);
  248. void CheckPlayerQuestsSpellUpdate(Spell* spell);
  249. void CheckPlayerQuestsLocationUpdate();
  250. void AddPendingQuest(Quest* quest, bool forced = false);
  251. void AcceptQuest(int32 quest_id);
  252. void RemovePendingQuest(int32 quest_id);
  253. void SetPlayerQuest(Quest* quest, map<int32, int32>* progress);
  254. void AddPlayerQuest(Quest* quest, bool call_accepted = true, bool send_packets = true);
  255. void RemovePlayerQuest(int32 id, bool send_update = true, bool delete_quest = true);
  256. void SendQuestJournal(bool all_quests = false, Client* client = 0, bool updated = true);
  257. void SendQuestUpdate(Quest* quest);
  258. void SendQuestFailure(Quest* quest);
  259. void SendQuestUpdateStep(Quest* quest, int32 step, bool display_quest_helper = true);
  260. void SendQuestUpdateStepImmediately(Quest* quest, int32 step, bool display_quest_helper = true);
  261. void DisplayQuestRewards(Quest* quest, int64 coin, vector<Item*>* rewards=0, vector<Item*>* selectable_rewards=0, map<int32, sint32>* factions=0, const char* header="Quest Reward!", int32 status_points=0, const char* text=0, bool was_displayed = false);
  262. void PopulateQuestRewardItems(vector <Item*>* items, PacketStruct* packet, std::string num_rewards_str = "num_rewards", std::string reward_id_str = "reward_id" , std::string item_str = "item");
  263. void DisplayQuestComplete(Quest* quest, bool tempReward = false, std::string customDescription = string(""), bool was_displayed = false);
  264. void DisplayRandomizeFeatures(int32 features);
  265. void AcceptQuestReward(Quest* quest, int32 item_id);
  266. Quest* GetPendingQuestAcceptance(int32 item_id);
  267. void DisplayConversation(int32 conversation_id, int32 spawn_id, vector<ConversationOption>* conversations, const char* text, const char* mp3, int32 key1, int32 key2, int8 language = 0, int8 can_close = 1);
  268. void DisplayConversation(Item* item, vector<ConversationOption>* conversations, const char* text, int8 type, const char* mp3 = 0, int32 key1 = 0, int32 key2 = 0, int8 language = 0, int8 can_close = 1);
  269. void DisplayConversation(Spawn* src, int8 type, vector<ConversationOption>* conversations, const char* text, const char* mp3 = 0, int32 key1 = 0, int32 key2 = 0, int8 language = 0, int8 can_close = 1);
  270. void CloseDialog(int32 conversation_id);
  271. int32 GetConversationID(Spawn* spawn, Item* item);
  272. void CombineSpawns(float radius, Spawn* spawn);
  273. void AddCombineSpawn(Spawn* spawn);
  274. void RemoveCombineSpawn(Spawn* spawn);
  275. void SaveCombineSpawns(const char* name = 0);
  276. Spawn* GetCombineSpawn();
  277. bool ShouldTarget();
  278. void TargetSpawn(Spawn* spawn);
  279. void ReloadQuests();
  280. int32 GetCurrentQuestID(){ return current_quest_id; }
  281. void SetLuaDebugClient(bool val);
  282. void SetMerchantTransaction(Spawn* spawn);
  283. Spawn* GetMerchantTransaction();
  284. void SetMailTransaction(Spawn* spawn);
  285. Spawn* GetMailTransaction();
  286. void PlaySound(const char* name);
  287. void SendBuyMerchantList(bool sell = false);
  288. void SendSellMerchantList(bool sell = false);
  289. void SendBuyBackList(bool sell = false);
  290. void SendRepairList();
  291. void ShowLottoWindow();
  292. void PlayLotto(int32 price, int32 ticket_item_id);
  293. void SendGuildCreateWindow();
  294. float CalculateBuyMultiplier(int32 merchant_id);
  295. float CalculateSellMultiplier(int32 merchant_id);
  296. void BuyItem(int32 item_id, int16 quantity);
  297. void SellItem(int32 item_id, int16 quantity, int32 unique_id = 0);
  298. void BuyBack(int32 item_id, int16 quantity);
  299. void RepairItem(int32 item_id);
  300. void RepairAllItems();
  301. void AddBuyBack(int32 unique_id, int32 item_id, int16 quantity, int32 price, bool save_needed = true);
  302. deque<BuyBackItem*>* GetBuyBacks();
  303. vector<Item*>* GetRepairableItems();
  304. vector<Item*>* GetItemsByEffectType(ItemEffectType type, ItemEffectType secondary_effect = NO_EFFECT_TYPE);
  305. void SendMailList();
  306. void DisplayMailMessage(int32 mail_id);
  307. void HandleSentMail(EQApplicationPacket* app);
  308. void DeleteMail(int32 mail_id, bool from_database = false);
  309. bool AddMailItem(Item* item);
  310. bool AddMailCoin(int32 copper, int32 silver = 0, int32 gold = 0, int32 plat = 0);
  311. bool RemoveMailCoin(int32 copper, int32 silver = 0, int32 gold = 0, int32 plat = 0);
  312. void TakeMailAttachments(int32 mail_id);
  313. void ResetSendMail(bool cancel = true, bool needslock = true);
  314. bool GateAllowed();
  315. bool BindAllowed();
  316. bool Bind();
  317. bool Gate(bool is_spell = false);
  318. void SendChatRelationship(int8 type, const char* name);
  319. void SendFriendList();
  320. void SendIgnoreList();
  321. void SendNewAdventureSpells();
  322. void SendNewTradeskillSpells();
  323. string GetCoinMessage(int32 total_coins);
  324. void SetItemSearch(vector<Item*>* items);
  325. vector<Item*>* GetSearchItems();
  326. void SearchStore(int32 page);
  327. void SetPlayer(Player* new_player);
  328. void AddPendingQuestAcceptReward(Quest* quest);
  329. void AddPendingQuestReward(Quest* quest, bool update=true, bool is_temporary = false, std::string description = std::string(""));
  330. bool HasQuestRewardQueued(int32 quest_id, bool is_temporary, bool is_collection);
  331. void QueueQuestReward(int32 quest_id, bool is_temporary, bool is_collection, bool has_displayed, int64 tmp_coin, int32 tmp_status, std::string description, bool db_saved=false, int32 index=0);
  332. void RemoveQueuedQuestReward();
  333. void AddPendingQuestUpdate(int32 quest_id, int32 step_id, int32 progress = 0xFFFFFFFF);
  334. void ProcessQuestUpdates();
  335. void AddWaypoint(const char* waypoint_name, int8 waypoint_category, int32 spawn_id);
  336. void BeginWaypoint(const char* waypoint_name, float x, float y, float z);
  337. void InspectPlayer(Player* player_to_inspect);
  338. void SetPendingGuildInvite(Guild* guild, Player* invited_by = 0);
  339. PendingGuildInvite* GetPendingGuildInvite() {return &pending_guild_invite;}
  340. void ShowClaimWindow();
  341. void ShowGuildSearchWindow();
  342. void CheckQuestQueue();
  343. void ShowDressingRoom(Item *item, sint32 crc);
  344. void SendCollectionList();
  345. bool SendCollectionsForItem(Item *item);
  346. void HandleCollectionAddItem(int32 collection_id, Item *item);
  347. void DisplayCollectionComplete(Collection *collection);
  348. void HandInCollections();
  349. void AcceptCollectionRewards(Collection *collection, int32 selectable_item_id = 0);
  350. void SendRecipeList();
  351. void PopulateRecipeData(Recipe* recipe, PacketStruct* packet, int i=0);
  352. int32 GetRecipeCRC(Recipe* recipe);
  353. void SendRecipeDetails(vector<int32>* recipes);
  354. void SendTitleUpdate();
  355. void SendUpdateTitles(sint32 prefix, sint32 suffix);
  356. void SendLanguagesUpdate(int32 id, bool setlang = 1);
  357. void SendAchievementsList();
  358. void SendAchievementUpdate(bool first_login = false);
  359. ///<summary>Send the pet options window to the client</summary>
  360. ///<param name="type">Type of pet, 1 = combat 0 = non combat</param>
  361. void SendPetOptionsWindow(const char* pet_name, int8 type = 1);
  362. void SendBiography();
  363. bool IsCrafting();
  364. void SetRecipeListSent(bool val) {m_recipeListSent = val; }
  365. bool GetRecipeListSent() { return m_recipeListSent; }
  366. void ShowRecipeBook();
  367. PendingResurrection* GetCurrentRez();
  368. void SendResurrectionWindow();
  369. void AcceptResurrection();
  370. Mutex m_resurrect;
  371. Mutex* GetResurrectMutex();
  372. void SetPendingLastName(string last_name);
  373. void RemovePendingLastName();
  374. string* GetPendingLastName();
  375. void SendLastNameConfirmation();
  376. void SetInitialSpawnsSent(bool val) { initial_spawns_sent = val; }
  377. bool GetInitialSpawnsSent() { return initial_spawns_sent; }
  378. void SendQuestJournalUpdate(Quest* quest, bool updated=true);
  379. void AddQuestTimer(int32 quest_id);
  380. void RemoveQuestTimer(int32 quest_id);
  381. void SetPendingFlightPath(int32 val) { pending_flight_path = val; }
  382. int32 GetPendingFlightPath() { return pending_flight_path; }
  383. void EndAutoMount();
  384. bool GetOnAutoMount() { return on_auto_mount; }
  385. bool IsCurrentTransmuteID(int32 trans_id);
  386. void SetTransmuteID(int32 trans_id);
  387. int32 GetTransmuteID();
  388. enum ServerSpawnPlacementMode { DEFAULT, OPEN_HEADING, CLOSE_HEADING };
  389. void SetSpawnPlacementMode(ServerSpawnPlacementMode mode) { spawnPlacementMode = mode; }
  390. ServerSpawnPlacementMode GetSpawnPlacementMode() { return spawnPlacementMode; }
  391. bool HandleNewLogin(int32 account_id, int32 access_code);
  392. void SendSpawnChanges(set<Spawn*>& spawns);
  393. void MakeSpawnChangePacket(map<int32, SpawnData> info_changes, map<int32, SpawnData> pos_changes, map<int32, SpawnData> vis_changes, int32 info_size, int32 pos_size, int32 vis_size);
  394. bool IsZonedIn() { return connected_to_zone; }
  395. void SendHailCommand(Spawn* target);
  396. void SendDefaultCommand(Spawn* spawn, const char* command, float distance);
  397. void SetTempPlacementSpawn(Spawn* tmp);
  398. Spawn* GetTempPlacementSpawn() { return tempPlacementSpawn; }
  399. void SetPlacementUniqueItemID(int32 id) { placement_unique_item_id = id; }
  400. int32 GetPlacementUniqueItemID() { return placement_unique_item_id; }
  401. void SetHasOwnerOrEditAccess(bool val) { hasOwnerOrEditAccess = val; }
  402. bool HasOwnerOrEditAccess() { return hasOwnerOrEditAccess; }
  403. bool HandleHouseEntityCommands(Spawn* spawn, int32 spawnid, string command);
  404. // find an appropriate spawn to use for the house object, save spawn location/entry data to DB
  405. bool PopulateHouseSpawn(PacketStruct* place_object);
  406. // finalize the spawn-in of the object in world, remove the item from player inventory, set the spawned in object item id (for future pickup)
  407. bool PopulateHouseSpawnFinalize();
  408. void SendMoveObjectMode(Spawn* spawn, uint8 placementMode, float unknown2_3=0.0f);
  409. void SendFlightAutoMount(int32 path_id, int16 mount_id = 0, int8 mount_red_color = 0xFF, int8 mount_green_color = 0xFF, int8 mount_blue_color=0xFF);
  410. void SendShowBook(Spawn* sender, string title, int8 language, int8 num_pages, ...);
  411. void SendShowBook(Spawn* sender, string title, int8 language, vector<Item::BookPage*> pages);
  412. void SetTemporaryTransportID(int32 id) { temporary_transport_id = id; }
  413. int32 GetTemporaryTransportID() { return temporary_transport_id; }
  414. void SetRejoinGroupID(int32 id) { rejoin_group_id = id; }
  415. void TempRemoveGroup();
  416. void ReplaceGroupClient(Client* new_client);
  417. void SendWaypoints();
  418. void AddWaypoint(string name, int8 type);
  419. void RemoveWaypoint(string name) {
  420. if (waypoints.count(name) > 0){
  421. waypoints.erase(name);
  422. }
  423. }
  424. void SelectWaypoint(int32 id);
  425. void ClearWaypoint();
  426. bool ShowPathToTarget(float x, float y, float z, float y_offset);
  427. bool ShowPathToTarget(Spawn* spawn);
  428. void SetRegionDebug(bool val) { regionDebugMessaging = val; }
  429. static void CreateMail(int32 charID, std::string fromName, std::string subjectName, std::string mailBody,
  430. int8 mailType, int32 copper, int32 silver, int32 gold, int32 platinum, int32 item_id, int16 stack_size, int32 time_sent, int32 expire_time);
  431. void CreateAndUpdateMail(std::string fromName, std::string subjectName, std::string mailBody,
  432. int8 mailType, int32 copper, int32 silver, int32 gold, int32 platinum, int32 item_id, int16 stack_size, int32 time_sent, int32 expire_time);
  433. void SendEquipOrInvUpdateBySlot(int8 slot);
  434. void SetReloadingZone(bool val) { client_reloading_zone = val; }
  435. bool IsReloadingZone() { return client_reloading_zone; }
  436. void QueueStateCommand(int32 spawn_player_id, int32 state);
  437. void ProcessStateCommands();
  438. void PurgeItem(Item* item);
  439. void ConsumeFoodDrink(Item* item, int32 slot);
  440. void AwardCoins(int64 total_coins, std::string reason = string(""));
  441. void TriggerSpellSave();
  442. void ClearSentItemDetails() {
  443. MItemDetails.writelock(__FUNCTION__, __LINE__);
  444. sent_item_details.clear();
  445. MItemDetails.releasewritelock(__FUNCTION__, __LINE__);
  446. }
  447. bool IsPlayerLoadingComplete() { return player_loading_complete; }
  448. int32 GetRejoinGroupID() { return rejoin_group_id; }
  449. void ClearSentSpellList() {
  450. MSpellDetails.writelock(__FUNCTION__, __LINE__);
  451. sent_spell_details.clear();
  452. MSpellDetails.releasewritelock(__FUNCTION__, __LINE__);
  453. }
  454. void UpdateSentSpellList();
  455. bool CountSentSpell(int32 id, int32 tier) {
  456. bool res = false;
  457. MSpellDetails.readlock(__FUNCTION__, __LINE__);
  458. std::map<int32, int32>::iterator itr = sent_spell_details.find(id);
  459. if(itr != sent_spell_details.end() && itr->second == tier)
  460. res = true;
  461. MSpellDetails.releasereadlock(__FUNCTION__, __LINE__);
  462. return res;
  463. }
  464. void SetSentSpell(int32 id, int32 tier) {
  465. MSpellDetails.writelock(__FUNCTION__, __LINE__);
  466. sent_spell_details[id] = tier;
  467. MSpellDetails.releasewritelock(__FUNCTION__, __LINE__);
  468. }
  469. void DisableSave() { disable_save = true; }
  470. bool IsSaveDisabled() { return disable_save; }
  471. void ResetZoningCoords() {
  472. zoning_x = 0;
  473. zoning_y = 0;
  474. zoning_z = 0;
  475. zoning_h = 0;
  476. }
  477. void SetZoningCoords(float x, float y, float z, float h) {
  478. zoning_x = x;
  479. zoning_y = y;
  480. zoning_z = z;
  481. zoning_h = h;
  482. }
  483. bool UseItem(Item* item, Spawn* target = nullptr);
  484. void SendPlayFlavor(Spawn* spawn, int8 language, VoiceOverStruct* non_garble, VoiceOverStruct* garble, bool success = false, bool garble_success = false);
  485. void SaveQuestRewardData(bool force_refresh = false);
  486. void UpdateCharacterRewardData(QuestRewardData* data);
  487. void SetQuestUpdateState(bool val) { quest_updates = val; }
  488. bool SetPlayerPOVGhost(Spawn* spawn);
  489. int32 GetPlayerPOVGhostSpawnID() { return pov_ghost_spawn_id; }
  490. void HandleDialogSelectMsg(int32 conversation_id, int32 response_index);
  491. bool SetPetName(const char* name);
  492. bool CheckConsumptionAllowed(int16 slot, bool send_message = true);
  493. void StartLinkdeadTimer();
  494. bool IsLinkdeadTimerEnabled();
  495. bool AddRecipeBookToPlayer(int32 recipe_id, Item* item = nullptr);
  496. bool RemoveRecipeFromPlayer(int32 recipe_id);
  497. void SaveSpells();
  498. void GiveQuestReward(Quest* quest, bool has_displayed = false);
  499. void SendReplaceWidget(int32 widget_id, bool delete_widget, float x=0.0f, float y=0.0f, float z=0.0f, int32 grid_id=0);
  500. void ProcessZoneIgnoreWidgets();
  501. void SendHearCast(Spawn* caster, Spawn* target, int32 spell_visual, int16 cast_time);
  502. int32 GetSpellVisualOverride(int32 spell_visual);
  503. private:
  504. void AddRecipeToPlayerPack(Recipe* recipe, PacketStruct* packet, int16* i);
  505. void SavePlayerImages();
  506. void SkillChanged(Skill* skill, int16 previous_value, int16 new_value);
  507. void SetStepComplete(int32 quest_id, int32 step);
  508. void AddStepProgress(int32 quest_id, int32 step, int32 progress);
  509. void SendNewSpells(int8 class_id);
  510. void SendNewTSSpells(int8 class_id);
  511. void AddSendNewSpells(vector<Spell*>* spells);
  512. map<int32, map<int32, int32> > quest_pending_updates;
  513. vector<QueuedQuest*> quest_queue;
  514. vector<QuestRewardData*> quest_pending_reward;
  515. volatile bool quest_updates;
  516. Mutex MQuestPendingUpdates;
  517. Mutex MQuestQueue;
  518. Mutex MDeletePlayer;
  519. vector<Item*>* search_items;
  520. int32 waypoint_id = 0;
  521. map<string, WaypointInfo> waypoints;
  522. Spawn* transport_spawn;
  523. Mutex MBuyBack;
  524. deque<BuyBackItem*> buy_back_items;
  525. Spawn* merchant_transaction;
  526. Spawn* mail_transaction;
  527. mutable std::shared_mutex MPendingQuestAccept;
  528. vector<int32> pending_quest_accept;
  529. bool lua_debug;
  530. bool should_target;
  531. Spawn* combine_spawn;
  532. int8 num_active_failures;
  533. int32 next_conversation_id;
  534. map<int32, int32> conversation_spawns;
  535. map<int32, Item*> conversation_items;
  536. mutable std::shared_mutex MConversation;
  537. map<int32, map<int8, string> > conversation_map;
  538. int32 current_quest_id;
  539. Spawn* banker;
  540. map<int32, int32> sent_spell_details;
  541. map<int32, bool> sent_item_details;
  542. Player* player;
  543. int16 version;
  544. int8 timestamp_flag;
  545. int32 ip;
  546. int16 port;
  547. int32 account_id;
  548. int32 character_id;
  549. sint16 admin_status; // -2 Banned, -1 Suspended, 0 User, etc.
  550. char account_name[64];
  551. char zone_name[64];
  552. int32 zoneID;
  553. int32 instanceID;
  554. Timer* autobootup_timeout;
  555. int32 pwaitingforbootup;
  556. int32 last_update_time;
  557. int32 last_saved_timestamp;
  558. Timer* CLE_keepalive_timer;
  559. Timer* connect;
  560. Timer* camp_timer;
  561. Timer* linkdead_timer;
  562. bool connected;
  563. std::atomic<bool> ready_for_spawns;
  564. std::atomic<bool> ready_for_updates;
  565. bool seencharsel;
  566. bool connected_to_zone;
  567. bool client_zoning;
  568. int32 zoning_id;
  569. int32 zoning_instance_id;
  570. ZoneServer* zoning_destination;
  571. float zoning_x;
  572. float zoning_y;
  573. float zoning_z;
  574. float zoning_h;
  575. bool firstlogin;
  576. enum NewLoginState { LOGIN_NONE, LOGIN_DELAYED, LOGIN_ALLOWED, LOGIN_INITIAL_LOAD, LOGIN_SEND };
  577. NewLoginState new_client_login; // 1 = delayed state, 2 = let client in
  578. Timer underworld_cooldown_timer;
  579. Timer pos_update;
  580. Timer quest_pos_timer;
  581. Timer lua_debug_timer;
  582. Timer temp_placement_timer;
  583. Timer spawn_removal_timer;
  584. std::atomic<bool> player_pos_changed;
  585. std::atomic<int8> player_pos_change_count;
  586. bool HandlePacket(EQApplicationPacket *app);
  587. EQStream* eqs;
  588. bool quickbar_changed;
  589. ZoneServer* current_zone;
  590. int32 name_crc;
  591. MailWindow mail_window;
  592. std::mutex MMailWindowMutex;
  593. PendingGuildInvite pending_guild_invite;
  594. PendingResurrection current_rez;
  595. string* pending_last_name;
  596. IncomingPaperdollImage incoming_paperdoll;
  597. int32 transmuteID;
  598. ZoneServer* GetHouseZoneServer(int32 spawn_id, int64 house_id);
  599. std::atomic<bool> m_recipeListSent;
  600. bool initial_spawns_sent;
  601. bool should_load_spells;
  602. // int32 = quest id
  603. vector<int32> quest_timers;
  604. Mutex MQuestTimers;
  605. int32 pending_flight_path;
  606. ServerSpawnPlacementMode spawnPlacementMode;
  607. bool on_auto_mount;
  608. bool EntityCommandPrecheck(Spawn* spawn, const char* command);
  609. bool delayedLogin;
  610. int32 delayedAccountID;
  611. int32 delayedAccessKey;
  612. Timer delayTimer;
  613. Spawn* tempPlacementSpawn;
  614. int32 placement_unique_item_id;
  615. bool hasOwnerOrEditAccess;
  616. bool hasSentTempPlacementSpawn;
  617. int32 temporary_transport_id;
  618. int32 rejoin_group_id;
  619. int32 lastRegionRemapTime;
  620. bool regionDebugMessaging;
  621. bool client_reloading_zone;
  622. map<int32, int32> queued_state_commands;
  623. Mutex MQueueStateCmds;
  624. Timer save_spell_state_timer; // will be the 're-trigger' to delay
  625. int32 save_spell_state_time_bucket; // bucket as we collect over time when timer is reset by new spell effects being casted
  626. std::mutex MSaveSpellStateMutex;
  627. bool player_loading_complete;
  628. Mutex MItemDetails;
  629. Mutex MSpellDetails;
  630. bool disable_save;
  631. vector< string > devices;
  632. std::atomic<int32> pov_ghost_spawn_id;
  633. Timer delay_msg_timer;
  634. uchar* recipe_orig_packet;
  635. uchar* recipe_xor_packet;
  636. int recipe_packet_count;
  637. int recipe_orig_packet_size;
  638. };
  639. class ClientList {
  640. public:
  641. ClientList();
  642. ~ClientList();
  643. bool ContainsStream(EQStream* eqs);
  644. void Add(Client* client);
  645. Client* Get(int32 ip, int16 port);
  646. Client* FindByAccountID(int32 account_id);
  647. Client* FindByName(char* charname);
  648. void Remove(Client* client, bool delete_data = false);
  649. void RemoveConnection(EQStream* eqs);
  650. void Process();
  651. int32 Count();
  652. void ReloadQuests();
  653. void CheckPlayersInvisStatus(Client* owner);
  654. void RemovePlayerFromInvisHistory(int32 spawnID);
  655. private:
  656. Mutex MClients;
  657. list<Client*> client_list;
  658. };
  659. #endif