mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-20 13:21:28 +00:00
* Plumbing * Batch processing in world * Cleanup * Cleanup * Update player_event_logs.cpp * Add player zoning event * Use generics * Comments * Add events * Add more events * AA_GAIN, AA_PURCHASE, FORAGE_SUCCESS, FORAGE_FAILURE * FISH_SUCCESS, FISH_FAILURE, ITEM_DESTROY * Add charges to ITEM_DESTROY * WENT_ONLINE, WENT_OFFLINE * LEVEL_GAIN, LEVEL_LOSS * LOOT_ITEM * MERCHANT_PURCHASE * MERCHANT_SELL * SKILL_UP * Add events * Add more events * TASK_ACCEPT, TASK_COMPLETE, and TASK_UPDATE * GROUNDSPAWN_PICKUP * SAY * REZ_ACCEPTED * COMBINE_FAILURE and COMBINE_SUCCESS * DROPPED_ITEM * DEATH * SPLIT_MONEY * TRADER_PURCHASE and TRADER_SELL * DISCOVER_ITEM * Convert GM_COMMAND to use new macro * Convert ZONING event to use macro * Revert some code changes * Revert "Revert some code changes" This reverts commit d53682f997e89a053a660761085913245db91e9d. * Add cereal generation support to repositories * TRADE * Formatting * Cleanup * Relocate discord_manager to discord folder * Discord sending plumbing * Rename UCS's Database class to UCSDatabase to be more specific and not collide with base Database class for repository usage * More discord sending plumbing * More discord message formatting work * More discord formatting work * Discord formatting of events * Format WENT_ONLINE, WENT_OFFLINE * Add merchant purchase event * Handle Discord MERCHANT_SELL formatter * Update player_event_discord_formatter.cpp * Tweaks * Implement retention truncation * Put mutex locking on batch queue, put processor on its own thread * Process on initial bootup * Implement optional QS processing, implement keepalive from world to QS * Reload player event settings when logs are reloaded in game * Set settings defaults * Update player_event_logs.cpp * Update player_event_logs.cpp * Set retention days on boot * Update player_event_logs.cpp * Player Handin Event Testing. Testing player handin stuff. * Cleanup. * Finish NPC Handin. * set a reference to the client inside of the trade object as well for plugins to process * Fix for windows _inline * Bump to cpp20 default, ignore excessive warnings on windows * Bump FMT to 6.1.2 for cpp20 compat and swap fmt::join for Strings::Join * Windows compile fixes * Update CMakeLists.txt * Update CMakeLists.txt * Update CMakeLists.txt * Create 2022_12_19_player_events_tables.sql * [Formatters] Work on Discord Formatters * Handin money. * Format header * [Formatters] Work on Discord Formatters * Format * Format * [Formatters] More Formatter work, need to test further. * [Formatters] More Work on Formatters. * Add missing #endif * [Formatters] Work on Formatters, fix Bot formatting in ^create help * NPC Handin Discord Formatter * Update player_event_logs.cpp * Discover Item Discord Formatter * Dropped Item Discord Formatter * Split Money Discord Formatter * Trader Discord Formatters * Cleanup. * Trade Event Discord Formatter Groundwork * SAY don't record GM commands * GM_Command don't record #help * Update player_event_logs.cpp * Fill in more event data * Post rebase fixes * Post rebase fix * Discord formatting adjustments * Add event deprecation or unimplemented tag support * Trade events * Add return money and sanity checks. * Update schema * Update ucs.cpp * Update client.cpp * Update 2022_12_19_player_events_tables.sql * Implement archive single line * Replace hackers table and functions with PossibleHack player event * Replace very old eventlog table since the same events are covered by player event logs * Update bot_command.cpp * Record NPC kill events ALL / Named / Raid * Add BatchEventProcessIntervalSeconds rule * Naming * Update CMakeLists.txt * Update database_schema.h * Remove logging function and methods * DB version * Cleanup SendPlayerHandinEvent --------- Co-authored-by: Kinglykrab <kinglykrab@gmail.com> Co-authored-by: Aeadoin <109764533+Aeadoin@users.noreply.github.com>
131 lines
4.6 KiB
C++
131 lines
4.6 KiB
C++
/* EQ Everquest Server Emulator
|
|
Copyright (C) 2001-2002 EQ:: Development Team (http://EQ::.org)
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; version 2 of the License.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY except by those people which sell it, which
|
|
are required to give you total support for your newly bought product;
|
|
without even the implied warranty of MERCHANTABILITY or FITNESS FOR
|
|
A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; if not, write to the Free Software
|
|
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
*/
|
|
#ifndef CLIENT_H
|
|
#define CLIENT_H
|
|
|
|
#include <string>
|
|
|
|
#include "../common/linked_list.h"
|
|
#include "../common/timer.h"
|
|
#include "../common/inventory_profile.h"
|
|
//#include "zoneserver.h"
|
|
|
|
#include "../common/eq_packet_structs.h"
|
|
#include "cliententry.h"
|
|
|
|
#define CLIENT_TIMEOUT 30000
|
|
|
|
class EQApplicationPacket;
|
|
class EQStreamInterface;
|
|
|
|
class Client {
|
|
public:
|
|
Client(EQStreamInterface* ieqs);
|
|
~Client();
|
|
|
|
bool Process();
|
|
void SendCharInfo();
|
|
void SendMaxCharCreate();
|
|
void SendMembership();
|
|
void SendMembershipSettings();
|
|
void EnterWorld(bool TryBootup = true);
|
|
void TellClientZoneUnavailable();
|
|
void QueuePacket(const EQApplicationPacket* app, bool ack_req = true);
|
|
void Clearance(int8 response);
|
|
void SendGuildList();
|
|
void SendEnterWorld(std::string name);
|
|
void SendExpansionInfo();
|
|
void SendLogServer();
|
|
void SendApproveWorld();
|
|
void SendPostEnterWorld();
|
|
|
|
inline uint32 GetIP() { return ip; }
|
|
inline uint16 GetPort() { return port; }
|
|
inline uint32 GetZoneID() { return zone_id; }
|
|
inline uint32 GetInstanceID() { return instance_id; }
|
|
inline uint32 WaitingForBootup() { return zone_waiting_for_bootup; }
|
|
inline const char * GetAccountName() { if (cle) { return cle->AccountName(); } return "NOCLE"; }
|
|
inline int16 GetAdmin() { if (cle) { return cle->Admin(); } return 0; }
|
|
inline uint32 GetAccountID() { if (cle) { return cle->AccountID(); } return 0; }
|
|
inline uint32 GetWID() { if (cle) { return cle->GetID(); } return 0; }
|
|
inline uint32 GetLSID() { if (cle) { return cle->LSID(); } return 0; }
|
|
inline const char* GetLSKey() { if (cle) { return cle->GetLSKey(); } return "NOKEY"; }
|
|
inline uint32 GetCharID() { return charid; }
|
|
inline const char* GetCharName() { return char_name; }
|
|
inline EQ::versions::ClientVersion GetClientVersion() { return m_ClientVersion; }
|
|
inline ClientListEntry* GetCLE() { return cle; }
|
|
inline void SetCLE(ClientListEntry* iCLE) { cle = iCLE; }
|
|
bool StoreCharacter(
|
|
uint32 account_id,
|
|
PlayerProfile_Struct *p_player_profile_struct,
|
|
EQ::InventoryProfile *p_inventory_profile
|
|
);
|
|
|
|
private:
|
|
|
|
uint32 ip;
|
|
uint16 port;
|
|
uint32 charid;
|
|
char char_name[64];
|
|
uint32 zone_id;
|
|
uint32 instance_id;
|
|
bool is_player_zoning;
|
|
Timer autobootup_timeout;
|
|
uint32 zone_waiting_for_bootup;
|
|
bool enter_world_triggered;
|
|
|
|
bool StartInTutorial;
|
|
EQ::versions::ClientVersion m_ClientVersion;
|
|
uint32 m_ClientVersionBit;
|
|
bool OPCharCreate(char *name, CharCreate_Struct *cc);
|
|
|
|
void SetClassStartingSkills( PlayerProfile_Struct *pp );
|
|
void SetRaceStartingSkills( PlayerProfile_Struct *pp );
|
|
void SetRacialLanguages( PlayerProfile_Struct *pp );
|
|
void SetClassLanguages(PlayerProfile_Struct *pp);
|
|
|
|
ClientListEntry* cle;
|
|
Timer connect;
|
|
bool firstlogin;
|
|
bool seen_character_select;
|
|
bool realfirstlogin;
|
|
|
|
bool HandlePacket(const EQApplicationPacket *app);
|
|
bool HandleNameApprovalPacket(const EQApplicationPacket *app);
|
|
bool HandleSendLoginInfoPacket(const EQApplicationPacket *app);
|
|
bool HandleGenerateRandomNamePacket(const EQApplicationPacket *app);
|
|
bool HandleCharacterCreateRequestPacket(const EQApplicationPacket *app);
|
|
bool HandleCharacterCreatePacket(const EQApplicationPacket *app);
|
|
bool HandleEnterWorldPacket(const EQApplicationPacket *app);
|
|
bool HandleDeleteCharacterPacket(const EQApplicationPacket *app);
|
|
bool HandleZoneChangePacket(const EQApplicationPacket *app);
|
|
bool HandleChecksumPacket(const EQApplicationPacket *app);
|
|
bool ChecksumVerificationCRCEQGame(uint64 checksum);
|
|
bool ChecksumVerificationCRCSkillCaps(uint64 checksum);
|
|
bool ChecksumVerificationCRCBaseData(uint64 checksum);
|
|
|
|
EQStreamInterface* eqs;
|
|
bool CanTradeFVNoDropItem();
|
|
void RecordPossibleHack(const std::string& message);
|
|
};
|
|
|
|
bool CheckCharCreateInfoSoF(CharCreate_Struct *cc);
|
|
bool CheckCharCreateInfoTitanium(CharCreate_Struct *cc);
|
|
|
|
#endif
|