WorldDatabase.h 24 KB

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