blob: a41b5f41e20561ec1e3e7b94b713cc04402ab703 (
plain) (
blame)
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
|
#pragma once
#include <queue>
#include <thread>
#include <mutex>
#include "Network.hpp"
struct ServerInfo{
std::string version;
int protocol = 0;
int players_max = 0;
int players_online = 0;
std::vector<std::pair<std::string, std::string>> players;
std::string description;
double ping = 0;
std::string favicon;
std::string json;
};
class NetworkClient {
public:
NetworkClient(std::string address, unsigned short port, std::string username);
~NetworkClient();
void Update();
void MainLoop();
Packet * GetPacket();
void AddPacketToQueue(Packet packet);
static ServerInfo ServerPing(std::string address,unsigned short port);
private:
std::mutex m_updateMutex;
std::thread m_networkThread;
bool isContinue=true;
NetworkClient (const NetworkClient&);
NetworkClient&operator=(const NetworkClient&);
Network m_network;
std::queue <Packet> m_received;
std::queue <Packet> m_toSend;
};
|