WorldDatabase.h 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659
  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 EQ2WORLD_EMU_DATABASE_H
  17. #define EQ2WORLD_EMU_DATABASE_H
  18. #ifdef WIN32
  19. #include <WinSock2.h>
  20. #include <windows.h>
  21. #endif
  22. #include <mysql.h>
  23. #include <string>
  24. #include <vector>
  25. #include <map>
  26. #include <stdio.h>
  27. #include "../common/database.h"
  28. #include "../common/types.h"
  29. #include "../common/MiscFunctions.h"
  30. #include "../common/Mutex.h"
  31. #include "../common/DatabaseNew.h"
  32. #include "client.h"
  33. #include "Object.h"
  34. #include "Widget.h"
  35. #include "Sign.h"
  36. #include "NPC.h"
  37. #include "zoneserver.h"
  38. #include "Collections/Collections.h"
  39. #include "Achievements/Achievements.h"
  40. #include "Recipes/Recipe.h"
  41. #include "../common/PacketStruct.h"
  42. #include "Spells.h"
  43. #include "Titles.h"
  44. #include "Rules/Rules.h"
  45. #include "Languages.h"
  46. #include "World.h"
  47. using namespace std;
  48. #define APPEARANCE_SOGA_HFHC 0
  49. #define APPEARANCE_SOGA_HTHC 1
  50. #define APPEARANCE_SOGA_HFC 2
  51. #define APPEARANCE_SOGA_HTC 3
  52. #define APPEARANCE_SOGA_HH 4
  53. #define APPEARANCE_SOGA_HC1 5
  54. #define APPEARANCE_SOGA_HC2 6
  55. #define APPEARANCE_SOGA_SC 7
  56. #define APPEARANCE_SOGA_EC 8
  57. #define APPEARANCE_HTHC 9
  58. #define APPEARANCE_HFHC 10
  59. #define APPEARANCE_HTC 11
  60. #define APPEARANCE_HFC 12
  61. #define APPEARANCE_HH 13
  62. #define APPEARANCE_HC1 14
  63. #define APPEARANCE_HC2 15
  64. #define APPEARANCE_WC1 16
  65. #define APPEARANCE_WC2 17
  66. #define APPEARANCE_SC 18
  67. #define APPEARANCE_EC 19
  68. #define APPEARANCE_SHIRT 20
  69. #define APPEARANCE_UCC 21
  70. #define APPEARANCE_PANTS 22
  71. #define APPEARANCE_ULC 23
  72. #define APPEARANCE_U9 24
  73. #define APPEARANCE_BODY_SIZE 25
  74. #define APPEARANCE_SOGA_WC1 26
  75. #define APPEARANCE_SOGA_WC2 27
  76. #define APPEARANCE_SOGA_SHIRT 28
  77. #define APPEARANCE_SOGA_UCC 29
  78. #define APPEARANCE_SOGA_PANTS 30
  79. #define APPEARANCE_SOGA_ULC 31
  80. #define APPEARANCE_SOGA_U13 32
  81. #define APPEARANCE_SOGA_EBT 33
  82. #define APPEARANCE_SOGA_CHEEKT 34
  83. #define APPEARANCE_SOGA_NT 35
  84. #define APPEARANCE_SOGA_CHINT 36
  85. #define APPEARANCE_SOGA_LT 37
  86. #define APPEARANCE_SOGA_EART 38
  87. #define APPEARANCE_SOGA_EYET 39
  88. #define APPEARANCE_EBT 40
  89. #define APPEARANCE_CHEEKT 41
  90. #define APPEARANCE_NT 42
  91. #define APPEARANCE_CHINT 43
  92. #define APPEARANCE_EART 44
  93. #define APPEARANCE_EYET 45
  94. #define APPEARANCE_LT 46
  95. #define APPEARANCE_BODY_AGE 47
  96. #define APPEARANCE_MC 48
  97. #define APPEARANCE_SMC 49
  98. #define APPEARANCE_SBS 50
  99. #define APPEARANCE_SBA 51
  100. #define CHAR_PROPERTY_SPEED "modify_speed"
  101. #define CHAR_PROPERTY_FLYMODE "modify_flymode"
  102. #define CHAR_PROPERTY_INVUL "modify_invul"
  103. #define CHAR_PROPERTY_REGIONDEBUG "modify_regiondebug"
  104. #define CHAR_PROPERTY_GMVISION "modify_gmvision"
  105. #define CHAR_PROPERTY_LUADEBUG "modify_luadebug"
  106. #define CHAR_PROPERTY_GROUPLOOTMETHOD "group_loot_method"
  107. #define CHAR_PROPERTY_GROUPLOOTITEMRARITY "group_loot_item_rarity"
  108. #define CHAR_PROPERTY_GROUPAUTOSPLIT "group_auto_split"
  109. #define CHAR_PROPERTY_GROUPDEFAULTYELL "group_default_yell"
  110. #define CHAR_PROPERTY_GROUPAUTOLOCK "group_autolock"
  111. #define CHAR_PROPERTY_GROUPLOCKMETHOD "group_lock_method"
  112. #define CHAR_PROPERTY_GROUPSOLOAUTOLOCK "group_solo_autolock"
  113. #define CHAR_PROPERTY_AUTOLOOTMETHOD "group_auto_loot_method"
  114. #define CHAR_PROPERTY_ASSISTAUTOATTACK "assist_auto_attack"
  115. #define DB_TYPE_SPELLEFFECTS 1
  116. #define DB_TYPE_MAINTAINEDEFFECTS 2
  117. struct StartingItem{
  118. string type;
  119. int32 item_id;
  120. string creator;
  121. int8 condition;
  122. int8 attuned;
  123. int16 count;
  124. };
  125. struct ClaimItems {
  126. int32 char_id;
  127. int32 item_id;
  128. int8 max_claim;
  129. int8 curr_claim;
  130. int8 one_per_char;
  131. int32 vet_reward_time;
  132. };
  133. class Bot;
  134. class WorldDatabase : public Database {
  135. public:
  136. WorldDatabase();
  137. ~WorldDatabase();
  138. bool ConnectNewDatabase();
  139. void PingNewDB();
  140. string GetZoneName(int32 id);
  141. string GetZoneDescription(int32 id);
  142. int32 LoadCharacterSkills(int32 char_id, Player* player);
  143. void DeleteCharacterSkill(int32 char_id, Skill* skill);
  144. void DeleteCharacterSpell(int32 character_id, int32 spell_id);
  145. int32 LoadCharacterSpells(int32 char_id, Player* player);
  146. int32 LoadItemBlueStats();
  147. void SaveQuickBar(int32 char_id, vector<QuickBarItem*>* quickbar_items);
  148. void SavePlayerSpells(Client* client);
  149. int32 LoadSkills();
  150. void LoadCommandList();
  151. map<int8, vector<MacroData*> >* LoadCharacterMacros(int32 char_id);
  152. void UpdateCharacterMacro(int32 char_id, int8 number, const char* name, int16 icon, vector<string>* updates);
  153. void SaveWorldTime(WorldTime* time);
  154. bool SaveSpawnInfo(Spawn* spawn);
  155. int32 GetNextSpawnIDInZone(int32 zone_id);
  156. bool SaveSpawnEntry(Spawn* spawn, const char* spawn_location_name, int8 percent, float x_offset, float y_offset, float z_offset, bool save_zonespawn = true, bool create_spawnlocation = true);
  157. float GetSpawnLocationPlacementOffsetX(int32 location_id);
  158. float GetSpawnLocationPlacementOffsetY(int32 location_id);
  159. float GetSpawnLocationPlacementOffsetZ(int32 location_id);
  160. int32 GetNextSpawnLocation();
  161. bool CreateNewSpawnLocation(int32 id, const char* name);
  162. bool RemoveSpawnFromSpawnLocation(Spawn* spawn);
  163. int32 GetSpawnLocationCount(int32 location, Spawn* spawn = 0);
  164. vector<string>* GetSpawnNameList(const char* in_name);
  165. void LoadSubCommandList();
  166. void LoadGlobalVariables();
  167. void UpdateVitality(int32 timestamp, float amount);
  168. void SaveVariable(const char* name, const char* value, const char* comment);
  169. void LoadVisualStates();
  170. void LoadAppearanceMasterList();
  171. void Save(Client* client);
  172. void SaveItems(Client* client);
  173. void SaveItem(int32 account_id, int32 char_id, Item* item, const char* type);
  174. void DeleteBuyBack(int32 char_id, int32 item_id, int16 quantity, int32 price);
  175. void LoadBuyBacks(Client* client);
  176. void SaveBuyBacks(Client* client);
  177. void SaveBuyBack(int32 char_id, int32 item_id, int16 quantity, int32 price);
  178. void DeleteItem(int32 char_id, Item* item, const char* type);
  179. void SaveCharacterColors(int32 char_id, const char* type, EQ2_Color color);
  180. void SaveCharacterFloats(int32 char_id, const char* type, float float1, float float2, float float3, float multiplier = 100.0f);
  181. int16 GetAppearanceID(string name);
  182. vector<int16>* GetAppearanceIDsLikeName(string name, bool filtered = true);
  183. string GetAppearanceName(int16 appearance_id);
  184. void UpdateRandomize(int32 spawn_id, sint32 value);
  185. int32 SaveCharacter(PacketStruct* create, int32 loginID);
  186. int32 LoadNPCAppearanceEquipmentData(ZoneServer* zone);
  187. void SaveNPCAppearanceEquipment(int32 spawn_id, int8 slot_id, int16 type, int8 red=0, int8 green=0, int8 blue=0, int8 hred=0, int8 hgreen=0, int8 hblue=0);
  188. void LoadSpecialZones();
  189. void SaveCharacterSkills(Client* client);
  190. void SaveCharacterQuests(Client* client);
  191. void SaveCharacterQuestProgress(Client* client, Quest* quest);
  192. void DeleteCharacterQuest(int32 quest_id, int32 char_id, bool repeated_quest = false);
  193. void LoadCharacterQuests(Client* client);
  194. void LoadPlayerAA(Player *player);
  195. void LoadCharacterQuestProgress(Client* client);
  196. void LoadCharacterFriendsIgnoreList(Player* player);
  197. void LoadZoneInfo(ZoneServer* zone);
  198. void LoadZoneInfo(ZoneInfo* zone_info);
  199. int32 GetZoneID(const char* name);
  200. void SaveZoneInfo(int32 zone_id, const char* field, sint32 value);
  201. void SaveZoneInfo(int32 zone_id, const char* field, float value);
  202. void SaveZoneInfo(int32 zone_id, const char* field, const char* value);
  203. bool GetZoneRequirements(const char* zoneName,sint16* minStatus, int16* minLevel, int16* maxLevel, int16* minVersion);
  204. int16 GetMinimumClientVersion(int8 expansion_id);
  205. string GetExpansionIDByVersion(int16 version);
  206. int32 CheckTableVersions(char* tablename);
  207. bool RunDatabaseQueries(TableQuery* queries, bool output_result = true, bool data = false);
  208. void UpdateTableVersion(char* name, int32 version);
  209. void UpdateDataTableVersion(char* name, int32 version);
  210. void UpdateStartingFactions(int32 char_id, int8 choice);
  211. string GetStartingZoneName(int8 choice);
  212. void UpdateStartingZone(int32 char_id, int8 class_id, int8 race_id, PacketStruct* create);
  213. void UpdateStartingItems(int32 char_id, int8 class_id, int8 race_id, bool base_class = false);
  214. void UpdateStartingSkills(int32 char_id, int8 class_id, int8 race_id);
  215. void UpdateStartingSpells(int32 char_id, int8 class_id, int8 race_id);
  216. void UpdateStartingSkillbar(int32 char_id, int8 class_id, int8 race_id);
  217. void UpdateStartingTitles(int32 char_id, int8 class_id, int8 race_id, int8 gender_id);
  218. bool UpdateSpawnLocationSpawns(Spawn* spawn);
  219. bool UpdateSpawnWidget(int32 widget_id, char* query);
  220. bool CheckVersionTable();
  221. void LoadFactionAlliances();
  222. void LoadFactionList();
  223. bool LoadPlayerFactions(Client* client);
  224. void SavePlayerFactions(Client* client);
  225. bool VerifyFactionID(int32 char_id, int32 faction_id);
  226. void LoadSpawnScriptData();
  227. void LoadZoneScriptData();
  228. int32 LoadSpellScriptData();
  229. bool UpdateSpawnScriptData(int32 spawn_id, int32 spawn_location_id, int32 spawnentry_id, const char* name);
  230. map<int32, string>* GetZoneList(const char* name, bool is_admin = false);
  231. bool VerifyZone(const char* name);
  232. int8 GetInstanceTypeByZoneID(int32 zoneID);
  233. /*void loadNPCAppearance(int32 appearance_id);
  234. void LoadNPCAppearances();*/
  235. void ResetDatabase();
  236. void EnableConstraints();
  237. void DisableConstraints();
  238. int32 SaveCombinedSpawnLocation(ZoneServer* zone, Spawn* spawn, const char* name);
  239. int32 ProcessSpawnLocations(ZoneServer* zone, const char* sql_query, int8 type);
  240. int32 LoadSpawnLocationGroupAssociations(ZoneServer* zone);
  241. int32 LoadSpawnLocationGroups(ZoneServer* zone);
  242. int32 LoadSpawnGroupChances(ZoneServer* zone);
  243. bool SpawnGroupAddAssociation(int32 group1, int32 group2);
  244. bool SpawnGroupRemoveAssociation(int32 group1, int32 group2);
  245. bool SpawnGroupAddSpawn(Spawn* spawn, int32 group_id);
  246. bool SpawnGroupRemoveSpawn(Spawn* spawn, int32 group_id);
  247. int32 CreateSpawnGroup(Spawn* spawn, string name);
  248. void DeleteSpawnGroup(int32 id);
  249. bool SetGroupSpawnChance(int32 id, float chance);
  250. void LoadGroundSpawnEntries(ZoneServer* zone);
  251. void LoadGroundSpawnItems(ZoneServer* zone);
  252. void LoadSpawns(ZoneServer* zone);
  253. int8 GetAppearanceType(string type);
  254. void LoadNPCs(ZoneServer* zone);
  255. void LoadSpiritShards(ZoneServer* zone);
  256. int32 LoadAppearances(ZoneServer* zone, Client* client = 0);
  257. int32 LoadNPCSpells();
  258. int32 LoadNPCSkills(ZoneServer* zone);
  259. int32 LoadNPCEquipment(ZoneServer* zone);
  260. void LoadObjects(ZoneServer* zone);
  261. void LoadGroundSpawns(ZoneServer* zone);
  262. void LoadWidgets(ZoneServer* zone);
  263. void LoadSigns(ZoneServer* zone);
  264. void ReloadItemList(int32 item_id = 0);
  265. void LoadItemList(int32 item_id = 0);
  266. int32 LoadItemStats(int32 item_id = 0);
  267. int32 LoadItemModStrings(int32 item_id = 0);
  268. int32 LoadItemAppearances(int32 item_id = 0);
  269. int32 LoadItemLevelOverride(int32 item_id = 0);
  270. int32 LoadItemEffects(int32 item_id = 0);
  271. int32 LoadBookPages(int32 item_id = 0);
  272. int32 LoadNextUniqueItemID();
  273. int32 LoadSkillItems(int32 item_id = 0);
  274. int32 LoadRangeWeapons(int32 item_id = 0);
  275. int32 LoadThrownWeapons(int32 item_id = 0);
  276. int32 LoadBaubles(int32 item_id = 0);
  277. int32 LoadBooks(int32 item_id = 0);
  278. int32 LoadItemsets(int32 item_id = 0);
  279. int32 LoadHouseItem(int32 item_id = 0);
  280. int32 LoadRecipeBookItems(int32 item_id = 0);
  281. int32 LoadArmor(int32 item_id = 0);
  282. int32 LoadAdornments(int32 item_id = 0);
  283. int32 LoadClassifications();
  284. int32 LoadShields(int32 item_id = 0);
  285. int32 LoadBags(int32 item_id = 0);
  286. int32 LoadFoods(int32 item_id = 0);
  287. int32 LoadWeapons(int32 item_id = 0);
  288. int32 LoadRanged();
  289. int32 LoadHouseContainers(int32 item_id = 0);
  290. void LoadBrokerItemStats();
  291. void SaveSignMark(int32 char_id, int32 sign_id, char* char_name, Client* client);
  292. string GetSignMark(int32 char_id, int32 sign_id, char* char_name); // returns the string containing the character name
  293. map<int32, vector<LevelArray*> >* LoadSpellClasses();
  294. void LoadTransporters(ZoneServer* zone);
  295. void LoadTransportMaps(ZoneServer* zone);
  296. void LoadDataFromRow(DatabaseResult *result, Item* item);
  297. void LoadCharacterItemList(int32 account_id, int32 char_id, Player* player, int16);
  298. bool loadCharacter(const char* name, int32 account_id, Client* client);
  299. bool LoadCharacterStats(int32 id, int32 account_id, Client* client);
  300. void LoadCharacterQuestRewards(Client* client);
  301. void LoadCharacterQuestTemporaryRewards(Client* client, int32 quest_id);
  302. bool InsertCharacterStats(int32 character_id, int8 class_id, int8 race_id);
  303. bool UpdateCharacterTimeStamp(int32 account_id, int32 character_id, int32 timestamp);
  304. bool insertCharacterProperty(Client* client, char* propName, char* propValue);
  305. bool loadCharacterProperties(Client* client);
  306. string GetPlayerName(char* name);
  307. int32 GetCharacterTimeStamp(int32 character_id, int32 account_id,bool* char_exists);
  308. int32 GetCharacterTimeStamp(int32 character_id);
  309. sint32 GetLatestDataTableVersion(char* name);
  310. sint16 GetLowestCharacterAdminStatus(int32 account_id);
  311. sint16 GetHighestCharacterAdminStatus(int32 account_id);
  312. sint16 GetCharacterAdminStatus(char* character_name);
  313. sint16 GetCharacterAdminStatus(int32 account_id , int32 char_id);
  314. bool UpdateAdminStatus(char* character_name, sint16 flag);
  315. void LoadMerchantInformation();
  316. void LoadMerchantInventory();
  317. string GetMerchantDescription(int32 merchant_id);
  318. void LoadPlayerStatistics(Player* player, int32 char_id);
  319. void WritePlayerStatistic(Player* player, Statistic* stat);
  320. void LoadServerStatistics();
  321. void WriteServerStatistic(Statistic* stat);
  322. void WriteServerStatistic(int32 stat_id, sint32 stat_value);
  323. void WriteServerStatisticsNeededQueries();
  324. void SavePlayerMail(Mail* mail);
  325. void SavePlayerMail(Client* client);
  326. void LoadPlayerMail(Client* client, bool new_only = false);
  327. void DeletePlayerMail(Mail* mail);
  328. vector<int32>* GetAllPlayerIDs();
  329. void GetPetNames(ZoneServer* zone);
  330. //void LoadMerchantMultipliers();
  331. char* GetCharacterName(int32 character_id);
  332. int8 GetCharacterLevel(int32 character_id);
  333. int16 GetCharacterModelType(int32 character_id);
  334. int8 GetCharacterClass(int32 character_id);
  335. int8 GetCharacterGender(int32 character_id);
  336. int32 GetCharacterID(const char* name);
  337. int32 GetCharacterCurrentZoneID(int32 character_id);
  338. int32 GetCharacterAccountID(int32 character_id);
  339. void LoadEntityCommands(ZoneServer* zone);
  340. void LoadSpells();
  341. void LoadSpellEffects();
  342. void LoadSpellLuaData();
  343. void LoadTraits();
  344. int32 LoadPlayerSkillbar(Client* client);
  345. string GetColumnNames(char* name);
  346. string GetZoneName(char* zone_description);
  347. bool GetItemResultsToClient (Client* client, const char* varSearch, int maxResults=20);
  348. void LoadRevivePoints(vector<RevivePoint*>* revive_points, int32 zone_id);
  349. void SaveBugReport(const char* category, const char* subcategory, const char* causes_crash, const char* reproducible, const char* summary, const char* description, const char* version, const char* player, int32 account_id, const char* spawn_name, int32 spawn_id, int32 zone_id);
  350. void FixBugReport();
  351. int32 LoadQuests();
  352. void LoadQuestDetails(Quest* quest);
  353. bool DeleteCharacter(int32 account_id, int32 character_id);
  354. int32 GetMaxHotBarID();
  355. int8 CheckNameFilter(const char* name, int8 min_length = 4, int8 max_length = 15);
  356. static int32 NextUniqueHotbarID(){
  357. next_id++;
  358. return next_id;
  359. }
  360. void LoadFogInit(string zone, PacketStruct* packet);
  361. static int32 next_id;
  362. void ToggleCharacterOnline();
  363. void ToggleCharacterOnline(Client* client, int8 toggle);
  364. // Zone Instance DB Functions
  365. map<int32,int32>* GetInstanceRemovedSpawns(int32 instance_id, int8 type);
  366. int32 CreateNewInstance(int32 zone_id);
  367. //int32 AddCharacterInstance(int32 char_id, int32 instance_id, int32 grant_reenter_time_left=0, int32 grant_reset_time_left=0, int32 lockout_time=0);
  368. int32 AddCharacterInstance(int32 char_id, int32 instance_id, string zone_name, int8 instance_type, int32 last_success, int32 last_failure, int32 success_lockout, int32 failure_lockout);
  369. bool UpdateCharacterInstanceTimers(int32 char_id, int32 instance_id, int32 lockout_time=0, int32 reset_time=0, int32 reenter_time=0 );
  370. bool UpdateCharacterInstance(int32 char_id, string zone_name, int32 instance_id, int8 type = 0, int32 timestamp = 0);
  371. bool VerifyInstanceID(int32 char_id, int32 instance_id);
  372. bool CheckVectorForValue(vector<int32>* vector, int32 value);
  373. int32 CheckSpawnRemoveInfo(map<int32,int32>* inmap, int32 spawn_location_entry_id);
  374. bool UpdateInstancedSpawnRemoved(int32 spawn_location_entry_id, int32 spawn_type, int32 respawn_time, int32 instance_id );
  375. int32 CreateInstanceSpawnRemoved(int32 spawn_location_entry_id, int32 spawn_type, int32 respawn_time, int32 instance_id );
  376. bool DeleteInstance(int32 instance_id);
  377. bool DeleteInstanceSpawnRemoved(int32 instance_id, int32 spawn_location_entry_id);
  378. bool DeleteCharacterFromInstance(int32 char_id, int32 instance_id);
  379. bool LoadCharacterInstances(Client* client);
  380. //
  381. MutexMap<int32, LoginEquipmentUpdate>* GetEquipmentUpdates();
  382. MutexMap<int32, LoginEquipmentUpdate>* GetEquipmentUpdates(int32 char_id);
  383. void UpdateLoginEquipment();
  384. MutexMap<int32, LoginZoneUpdate>* GetZoneUpdates();
  385. void UpdateLoginZones();
  386. void LoadLocationGrids(ZoneServer* zone);
  387. bool LoadLocationGridLocations(LocationGrid* grid);
  388. int32 CreateLocation(int32 zone_id, int32 grid_id, const char* name, bool include_y);
  389. bool AddLocationPoint(int32 location_id, float x, float y, float z);
  390. bool DeleteLocation(int32 location_id);
  391. bool DeleteLocationPoint(int32 location_point_id);
  392. void ListLocations(Client* client);
  393. void ListLocationPoints(Client* client, int32 location_id);
  394. bool LocationExists(int32 location_id);
  395. bool GetTableVersions(vector<TableVersion *> *table_versions);
  396. bool QueriesFromFile(const char *file);
  397. /* Achievements */
  398. void LoadAchievements();
  399. int32 LoadAchievementRequirements(Achievement *achievement);
  400. int32 LoadAchievementRewards(Achievement *achievement);
  401. void LoadPlayerAchievements(Player *player);
  402. int32 LoadPlayerAchievementsUpdates(Player *player);
  403. int32 LoadPlayerAchievementsUpdateItems(AchievementUpdate *update, int32 player_id);
  404. /* Alternate Advancement */
  405. void LoadAltAdvancements();
  406. void LoadTreeNodes();
  407. /* Collections */
  408. void LoadCollections();
  409. int32 LoadCollectionItems(Collection *collection);
  410. int32 LoadCollectionRewards(Collection *collection);
  411. void LoadPlayerCollections(Player *player);
  412. void LoadPlayerCollectionItems(Player *player, Collection *collection);
  413. void SavePlayerCollections(Client *client);
  414. void SavePlayerCollection(Client *client, Collection *collection);
  415. void SavePlayerCollectionItems(Client *client, Collection *collection);
  416. void SavePlayerCollectionItem(Client *client, Collection *collection, int32 item_id);
  417. /* Commands */
  418. map<int32, string>* GetSpawnTemplateListByName(const char* name);
  419. map<int32, string>* GetSpawnTemplateListByID(int32 location_id);
  420. int32 SaveSpawnTemplate(int32 placement_id, const char* template_name);
  421. bool RemoveSpawnTemplate(int32 template_id);
  422. int32 CreateSpawnFromTemplateByID(Client* client, int32 template_id);
  423. int32 CreateSpawnFromTemplateByName(Client* client, const char* template_name);
  424. bool SaveZoneSafeCoords(int32 zone_id, float x, float y, float z, float heading);
  425. bool SaveSignZoneToCoords(int32 spawn_id, float x, float y, float z, float heading);
  426. /* Guilds */
  427. void LoadGuilds();
  428. int32 LoadGuildMembers(Guild* guild);
  429. void LoadGuildEvents(Guild* guild);
  430. void LoadGuildRanks(Guild* guild);
  431. void LoadGuildEventFilters(Guild* guild);
  432. void LoadGuildPointsHistory(Guild* guild, GuildMember* guild_member);
  433. void LoadGuildRecruiting(Guild* guild);
  434. void SaveGuild(Guild* guild, bool new_guild = false);
  435. void SaveGuildMembers(Guild* guild);
  436. void SaveGuildEvents(Guild* guild);
  437. void SaveGuildRanks(Guild* guild);
  438. void SaveGuildEventFilters(Guild* guild);
  439. void SaveGuildPointsHistory(Guild* guild);
  440. void SaveGuildRecruiting(Guild* guild);
  441. void DeleteGuild(Guild* guild);
  442. void DeleteGuildMember(Guild* guild, int32 character_id);
  443. void DeleteGuildEvent(Guild* guild, int64 event_id);
  444. void DeleteGuildPointHistory(Guild* guild, int32 character_id, PointHistory* point_history);
  445. void ArchiveGuildEvent(Guild* guild, GuildEvent* guild_event);
  446. void SaveHiddenGuildEvent(Guild* guild, GuildEvent* guild_event);
  447. void LoadGuildDefaultRanks(Guild* guild);
  448. void LoadGuildDefaultEventFilters(Guild* guild);
  449. bool AddNewPlayerToServerGuild(int32 account_id, int32 char_id);
  450. int32 GetGuildIDByCharacterID(int32 char_id);
  451. /* Chat */
  452. void LoadChannels();
  453. /* Recipes */
  454. void LoadRecipes();
  455. void LoadRecipeBooks();
  456. void LoadPlayerRecipes(Player *player);
  457. int32 LoadPlayerRecipeBooks(int32 char_id, Player *player);
  458. void SavePlayerRecipeBook(Player* player, int32 recipebook_id);
  459. void LoadRecipeComponents();
  460. void UpdatePlayerRecipe(Player* player, int32 recipe_id, int8 highest_rank);
  461. void SavePlayerRecipe(Player* player, int32 recipe_id);
  462. /* Tradeskills */
  463. void LoadTradeskillEvents();
  464. /* Rules */
  465. void LoadGlobalRuleSet();
  466. void LoadRuleSets(bool reload=false);
  467. void LoadRuleSetDetails(RuleSet *rule_set);
  468. /* Titles */
  469. sint32 AddMasterTitle(const char* titleName, int8 isPrefix = 0);
  470. void LoadTitles();
  471. sint32 LoadCharacterTitles(int32 char_id, Player *player);
  472. sint32 GetCharPrefixIndex(int32 char_id, Player *player);
  473. sint32 GetCharSuffixIndex(int32 char_id, Player *player);
  474. void SaveCharPrefixIndex(sint32 index, int32 char_id);
  475. void SaveCharSuffixIndex(sint32 index, int32 char_id);
  476. sint32 AddCharacterTitle(sint32 index, int32 char_id, Spawn* player);
  477. /* Languages */
  478. void LoadLanguages();
  479. int32 LoadCharacterLanguages(int32 char_id, Player *player);
  480. int16 GetCharacterCurrentLang(int32 char_id, Player *player);
  481. void SaveCharacterCurrentLang(int32 id, int32 char_id, Client *client);
  482. void UpdateStartingLanguage(int32 char_id, uint8 race_id, int32 starting_city=0);
  483. /// <summary>Saves the given language for the given player</summary>
  484. /// <param name='char_id'>Character ID to save the language to</param>
  485. /// <param name='lang_id'>Language ID to save to the character</param>
  486. void SaveCharacterLang(int32 char_id, int32 lang_id);
  487. /* Tradeskills */
  488. /* Character History */
  489. void SaveCharacterHistory(Player* player, int8 type, int8 subtype, int32 value, int32 value2, char* location, int32 event_date);
  490. /* Housing */
  491. void LoadHouseZones();
  492. int64 AddPlayerHouse(int32 char_id, int32 house_id, int32 instance_id, int32 upkeep_due);
  493. void SetHouseUpkeepDue(int32 char_id, int32 house_id, int32 instance_id, int32 upkeep_due);
  494. void RemovePlayerHouse(int32 char_id, int32 house_id);
  495. void UpdateHouseEscrow(int32 house_id, int32 instance_id, int64 amount_coins, int32 amount_status);
  496. void LoadPlayerHouses();
  497. void LoadDeposits(PlayerHouse* house);
  498. void LoadHistory(PlayerHouse* house);
  499. void AddHistory(PlayerHouse* house, char* name, char* reason, int32 timestamp, int64 amount = 0, int32 status = 0, int8 pos_flag = 0);
  500. /* World */
  501. bool CheckBannedIPs(const char* loginIP);
  502. /* Heroic OP */
  503. void LoadHOStarters();
  504. void LoadHOWheel();
  505. /* Claim Items */
  506. void LoadClaimItems(int32 char_id);
  507. int16 CountCharClaimItems(int32 char_id);
  508. vector<ClaimItems> LoadCharacterClaimItems(int32 char_id);
  509. void ClaimItem(int32 char_id, int32 item_id, Client* client);
  510. int32 GetAccountAge(int32 account_id);
  511. /* Race Types */
  512. void LoadRaceTypes();
  513. /* Loot */
  514. void LoadLoot(ZoneServer* zone);
  515. void LoadGlobalLoot(ZoneServer* zone);
  516. bool LoadSpawnLoot(ZoneServer* zone, Spawn* spawn);
  517. void AddLootTableToSpawn(Spawn* spawn, int32 loottable_id);
  518. bool RemoveSpawnLootTable(Spawn* spawn, int32 loottable_id);
  519. void LoadCharacterHistory(int32 char_id, Player *player);
  520. void LoadSpellErrors();
  521. /* Load single spawns */
  522. bool LoadSign(ZoneServer* zone, int32 spawn_id);
  523. bool LoadWidget(ZoneServer* zone, int32 spawn_id);
  524. bool LoadObject(ZoneServer* zone, int32 spawn_id);
  525. bool LoadGroundSpawn(ZoneServer* zone, int32 spawn_id);
  526. void LoadGroundSpawnEntry(ZoneServer* zone, int32 entry_id);
  527. void LoadGroundSpawnItems(ZoneServer* zone, int32 entry_id);
  528. bool LoadNPC(ZoneServer* zone, int32 spawn_id);
  529. void LoadAppearance(ZoneServer* zone, int32 spawn_id);
  530. void LoadNPCAppearanceEquipmentData(ZoneServer* zone, int32 spawn_id);
  531. /* Save character Pictures */
  532. /// <summary>Saves the pictures that clients send to the server</summary>
  533. /// <param name='characterID'>The ID of the character</param>
  534. /// <param name='type'>The type of image this is, 0 = paperdoll, 1 = headshot</param>
  535. /// <param name='picture'>The raw png data</param>
  536. void SaveCharacterPicture(int32 characterID, int8 type, uchar* picture, int32 picture_size);
  537. /* Quests */
  538. /// <summary>Updates the given date for the quest in the DB for a repeatable quest</summary>
  539. /// <param name='client'>Client to save the quest for</param>
  540. /// <param name='quest_id'>ID of the quest to save</param>
  541. /// <param name='quest_complete_count'>Number of times the quest has already been completed</param>
  542. void SaveCharRepeatableQuest(Client* client, int32 quest_id, int16 quest_complete_count);
  543. /* Zone Flight Paths */
  544. void LoadZoneFlightPaths(ZoneServer* zone);
  545. void LoadZoneFlightPathLocations(ZoneServer* zone);
  546. /* Character LUA History */
  547. void SaveCharacterLUAHistory(Player* player, int32 event_id, int32 value, int32 value2);
  548. void LoadCharacterLUAHistory(int32 char_id, Player* player);
  549. /* Bots - BotDB.cpp */
  550. int32 CreateNewBot(int32 char_id, string name, int8 race, int8 advClass, int8 gender, int16 model_id, int32& index);
  551. void SaveBotAppearance(Bot* bot);
  552. void SaveBotColors(int32 bot_id, const char* type, EQ2_Color color);
  553. void SaveBotFloats(int32 bot_id, const char* type, float float1, float float2, float float3);
  554. bool LoadBot(int32 char_id, int32 bot_index, Bot* bot);
  555. void LoadBotAppearance(Bot* bot);
  556. void SaveBotItem(int32 bot_id, int32 item_id, int8 slot);
  557. void LoadBotEquipment(Bot* bot);
  558. string GetBotList(int32 char_id);
  559. void DeleteBot(int32 char_id, int32 bot_index);
  560. void SetBotStartingItems(Bot* bot, int8 class_id, int8 race_id);
  561. void LoadTransmuting();
  562. void FindSpell(Client* client, char* findString);
  563. void LoadChestTraps();
  564. bool CheckExpansionFlags(ZoneServer* zone, int32 spawnXpackFlag);
  565. bool CheckHolidayFlags(ZoneServer* zone, int32 spawnHolidayFlag);
  566. void GetHouseSpawnInstanceData(ZoneServer* zone, Spawn* spawn);
  567. int32 FindHouseInstanceSpawn(Spawn* spawn);
  568. /* Starting Character Abilities */
  569. void LoadStartingSkills(World* world);
  570. void LoadStartingSpells(World* world);
  571. void LoadVoiceOvers(World* world);
  572. int32 CreateSpiritShard(const char* name, int32 level, int8 race, int8 gender, int8 adventure_class,
  573. int16 model_type, int16 soga_model_type, int16 hair_type, int16 hair_face_type, int16 wing_type,
  574. int16 chest_type, int16 legs_type, int16 soga_hair_type, int16 soga_hair_face_type, int8 hide_hood,
  575. int16 size, int16 collision_radius, int16 action_state, int16 visual_state, int16 mood_state, int16 emote_state,
  576. int16 pos_state, int16 activity_status, char* sub_title, char* prefix_title, char* suffix_title, char* lastname,
  577. float x, float y, float z, float heading, int32 gridid, int32 charid, int32 zoneid, int32 instanceid);
  578. bool DeleteSpiritShard(int32 id);
  579. void LoadCharacterSpellEffects(int32 char_id, Client *client, int8 db_spell_type);
  580. private:
  581. DatabaseNew database_new;
  582. std::map<int32, string> zone_names;
  583. string skills;
  584. int32 max_zonename;
  585. char** zonename_array;
  586. std::map<int32, int8> zone_instance_types;
  587. };
  588. #endif