WorldDatabase.h 26 KB

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