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