mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-08 17:28:20 +00:00
511672c5cb
* Fix crashes fix crash with chat filter fix ldf_config being empty in database on windows debug * WorldServer: Fix further crashes on windows address multi threaded signal handling on worldservers Remove iterator invalidation code in zone manager
79 lines
2.2 KiB
C++
79 lines
2.2 KiB
C++
#ifndef USER_H
|
|
#define USER_H
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
#include "../thirdparty/raknet/Source/RakNetTypes.h"
|
|
#include "dCommonVars.h"
|
|
|
|
#include <unordered_map>
|
|
|
|
class Character;
|
|
enum class eGameMasterLevel : uint8_t;
|
|
|
|
struct BehaviorParams {
|
|
uint32_t behavior;
|
|
LWOOBJID objid;
|
|
bool followup;
|
|
};
|
|
|
|
class User {
|
|
public:
|
|
User(const SystemAddress& sysAddr, const std::string& username, const std::string& sessionKey);
|
|
User(const User& other);
|
|
~User();
|
|
User& operator=(const User& other);
|
|
bool operator==(const User& other) const;
|
|
|
|
uint32_t GetAccountID() { return m_AccountID; }
|
|
std::string& GetUsername() { return m_Username; }
|
|
std::string& GetSessionKey() { return m_SessionKey; }
|
|
SystemAddress& GetSystemAddress() { return m_SystemAddress; }
|
|
|
|
eGameMasterLevel GetMaxGMLevel() { return m_MaxGMLevel; }
|
|
uint32_t GetLastCharID() { return m_LastCharID; }
|
|
void SetLastCharID(uint32_t newCharID) { m_LastCharID = newCharID; }
|
|
|
|
std::vector<Character*>& GetCharacters() { return m_Characters; }
|
|
Character* GetLastUsedChar();
|
|
|
|
void SetLoggedInChar(const LWOOBJID& objID) { m_LoggedInCharID = objID; }
|
|
LWOOBJID& GetLoggedInChar() { return m_LoggedInCharID; }
|
|
|
|
bool GetLastChatMessageApproved() { return m_LastChatMessageApproved; }
|
|
void SetLastChatMessageApproved(bool approved) { m_LastChatMessageApproved = approved; }
|
|
|
|
const std::unordered_map<std::string, bool>& GetIsBestFriendMap() { return m_IsBestFriendMap; }
|
|
void UpdateBestFriendValue(const std::string_view playerName, const bool newValue);
|
|
|
|
bool GetIsMuted() const;
|
|
|
|
time_t GetMuteExpire() const;
|
|
void SetMuteExpire(time_t value);
|
|
|
|
// Added for GameMessageHandler
|
|
std::unordered_map<uint32_t, BehaviorParams> uiBehaviorHandles;
|
|
|
|
void UserOutOfSync();
|
|
|
|
private:
|
|
uint32_t m_AccountID;
|
|
std::string m_Username;
|
|
std::string m_SessionKey;
|
|
SystemAddress m_SystemAddress;
|
|
|
|
eGameMasterLevel m_MaxGMLevel; //The max GM level this account can assign to it's characters
|
|
uint32_t m_LastCharID;
|
|
std::vector<Character*> m_Characters;
|
|
LWOOBJID m_LoggedInCharID;
|
|
|
|
std::unordered_map<std::string, bool> m_IsBestFriendMap;
|
|
|
|
bool m_LastChatMessageApproved = false;
|
|
int m_AmountOfTimesOutOfSync = 0;
|
|
const int m_MaxDesyncAllowed = 12;
|
|
time_t m_MuteExpire;
|
|
};
|
|
|
|
#endif // USER_H
|