mirror of
https://github.com/whoahq/whoa.git
synced 2026-02-02 00:32:45 +03:00
62 lines
2.1 KiB
C++
62 lines
2.1 KiB
C++
#ifndef NET_CONNECTION_REALM_CONNECTION_HPP
|
|
#define NET_CONNECTION_REALM_CONNECTION_HPP
|
|
|
|
#include "net/connection/NetClient.hpp"
|
|
#include <storm/Array.hpp>
|
|
#include <cstdint>
|
|
|
|
class CDataStore;
|
|
class RealmResponse;
|
|
|
|
class RealmConnection : public NetClient {
|
|
public:
|
|
// Types
|
|
struct REALMCONNECTIONNODE : TSLinkedNode<REALMCONNECTIONNODE> {
|
|
RealmConnection* connection;
|
|
};
|
|
|
|
// Static variables
|
|
SCritSect static s_AllRealmConnectionsCrit;
|
|
STORM_LIST(REALMCONNECTIONNODE) static s_AllRealmConnections;
|
|
|
|
// Static functions
|
|
int32_t static MessageHandler(void* param, NETMESSAGE msgId, uint32_t time, CDataStore* msg);
|
|
void static PollNet();
|
|
|
|
// Member variables
|
|
RealmResponse* m_realmResponse;
|
|
uint32_t m_restrictHuman;
|
|
uint32_t m_restrictDwarf;
|
|
uint32_t m_restrictGnome;
|
|
uint32_t m_restrictNightElf;
|
|
uint32_t m_restrictDraenei;
|
|
uint32_t m_restrictOrc;
|
|
uint32_t m_restrictTroll;
|
|
uint32_t m_restrictTauren;
|
|
uint32_t m_restrictUndead;
|
|
uint32_t m_restrictBloodElf;
|
|
TSFixedArray<CHARACTER_INFO> m_characterList;
|
|
uint8_t m_authenticated = 0;
|
|
uint32_t m_queuePosition = 0;
|
|
uint32_t m_freeCharacterMigration = 0;
|
|
uint32_t m_billingTimeRemaining = 0;
|
|
uint32_t m_billingTimeRested = 0;
|
|
uint8_t m_billingFlags = 0;
|
|
uint8_t m_accountExpansion = 0;
|
|
|
|
// Virtual member functions
|
|
virtual int32_t HandleAuthChallenge(AuthenticationChallenge* challenge);
|
|
virtual void HandleCharacterDelete(uint8_t result) = 0;
|
|
|
|
// Member functions
|
|
RealmConnection(RealmResponse* realmResponse);
|
|
int32_t HandleAuthResponse(uint32_t msgId, uint32_t time, CDataStore* msg);
|
|
int32_t HandleCharEnum(uint32_t msgId, uint32_t time, CDataStore* msg);
|
|
int32_t DeleteCharHandler(uint32_t msgId, uint32_t time, CDataStore* msg);
|
|
void RequestCharacterEnum();
|
|
void RequestCharacterLogin(uint64_t guid, int32_t a2);
|
|
void SetSelectedRealm(uint32_t a2, uint32_t a3, uint32_t a4);
|
|
};
|
|
|
|
#endif
|