WorldDatabase.h 23 KB

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