blob: dbd6eb2c455a549ebf2ddfe9f07c1984b069506d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
//===========================================================================//
//
// Purpose:
//
//===========================================================================//
#pragma once
#include "cl_rcon.pb.h"
#include "sv_rcon.pb.h"
constexpr const char* NETCON_VERSION = "2.0.0.1";
class CNetCon
{
public:
~CNetCon();
bool Init(void);
bool Shutdown(void);
void TermSetup(void);
void UserInput(void);
void RunFrame(void);
bool ShouldQuit(void) const;
bool Connect(const std::string& svInAdr, const std::string& svInPort);
void Disconnect(void);
void Send(const std::string& svMessage) const;
void Recv(void);
void ProcessBuffer(const char* pszIn, int nRecvLen) const;
void ProcessMessage(const sv_rcon::response& sv_response) const;
std::string Serialize(const std::string& svReqBuf, const std::string& svReqVal, cl_rcon::request_t request_t) const;
sv_rcon::response Deserialize(const std::string& svBuf) const;
private:
CNetAdr2* m_pNetAdr2 = new CNetAdr2("localhost", "37015");
CSocketCreator* m_pSocket = new CSocketCreator();
bool m_bInitialized = false;
bool m_bQuitApplication = false;
std::atomic<bool> m_abPromptConnect{true};
std::atomic<bool> m_abConnEstablished{false};
};
|