summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLaG1924 <12997935+LaG1924@users.noreply.github.com>2018-01-13 10:31:24 +0100
committerLaG1924 <12997935+LaG1924@users.noreply.github.com>2018-01-13 10:57:41 +0100
commite0b7f23cd967db7e713b9de960cad9bceb9fece8 (patch)
tree4c97ce06d0f1b34f6678fa69d2988b29d4a606ee
parentFinally removed all SFML references (diff)
downloadAltCraft-e0b7f23cd967db7e713b9de960cad9bceb9fece8.tar
AltCraft-e0b7f23cd967db7e713b9de960cad9bceb9fece8.tar.gz
AltCraft-e0b7f23cd967db7e713b9de960cad9bceb9fece8.tar.bz2
AltCraft-e0b7f23cd967db7e713b9de960cad9bceb9fece8.tar.lz
AltCraft-e0b7f23cd967db7e713b9de960cad9bceb9fece8.tar.xz
AltCraft-e0b7f23cd967db7e713b9de960cad9bceb9fece8.tar.zst
AltCraft-e0b7f23cd967db7e713b9de960cad9bceb9fece8.zip
-rw-r--r--src/NetworkClient.cpp65
-rw-r--r--src/NetworkClient.hpp9
2 files changed, 35 insertions, 39 deletions
diff --git a/src/NetworkClient.cpp b/src/NetworkClient.cpp
index 99d89f9..e959faf 100644
--- a/src/NetworkClient.cpp
+++ b/src/NetworkClient.cpp
@@ -3,6 +3,7 @@
#include <easylogging++.h>
#include "Network.hpp"
+#include "Event.hpp"
NetworkClient::NetworkClient(std::string address, unsigned short port, std::string username) {
network = std::make_unique<Network>(address, port);
@@ -44,46 +45,42 @@ NetworkClient::NetworkClient(std::string address, unsigned short port, std::stri
timeOfLastKeepAlivePacket = std::chrono::steady_clock::now();
state = Play;
+ thread = std::thread(&NetworkClient::ExecNs,this);
}
NetworkClient::~NetworkClient() {
+ isRunning = false;
+ thread.join();
}
-std::shared_ptr<Packet> NetworkClient::ReceivePacket() {
- if (toReceive.empty())
- return std::shared_ptr < Packet > (nullptr);
- auto ret = toReceive.front();
- toReceive.pop();
- return ret;
-}
-
-void NetworkClient::SendPacket(std::shared_ptr<Packet> packet) {
- toSend.push(packet);
-}
-
-void NetworkClient::UpdatePacket() {
- while (!toSend.empty()) {
- if (toSend.front() != nullptr)
- network->SendPacket(*toSend.front(), compressionThreshold);
- toSend.pop();
- }
-
- auto packet = network->ReceivePacket(state, compressionThreshold >= 0);
- if (packet.get() != nullptr) {
- if (packet->GetPacketId() != PacketNamePlayCB::KeepAliveCB) {
- toReceive.push(packet);
+void NetworkClient::ExecNs() {
+ EventListener listener;
+
+ listener.RegisterHandler("SendPacket", [&](const Event& eventData) {
+ std::shared_ptr<Packet> packet = eventData.get<std::shared_ptr<Packet>>();
+ network->SendPacket(*packet,compressionThreshold);
+ });
+
+ while (isRunning) {
+ listener.HandleAllEvents();
+
+ std::shared_ptr<Packet> packet = network->ReceivePacket(state, compressionThreshold >= 0);
+ if (packet != nullptr) {
+ if (packet->GetPacketId() != PacketNamePlayCB::KeepAliveCB) {
+ PUSH_EVENT("ReceivedPacket", packet);
+ }
+ else {
+ timeOfLastKeepAlivePacket = std::chrono::steady_clock::now();
+ auto packetKeepAlive = std::static_pointer_cast<PacketKeepAliveCB>(packet);
+ auto packetKeepAliveSB = std::make_shared<PacketKeepAliveSB>(packetKeepAlive->KeepAliveId);
+ network->SendPacket(*packetKeepAliveSB, compressionThreshold);
+ }
}
- else {
- timeOfLastKeepAlivePacket = std::chrono::steady_clock::now();
- auto packetKeepAlive = std::static_pointer_cast<PacketKeepAliveCB>(packet);
- auto packetKeepAliveSB = std::make_shared<PacketKeepAliveSB>(packetKeepAlive->KeepAliveId);
- network->SendPacket(*packetKeepAliveSB, compressionThreshold);
+ using namespace std::chrono_literals;
+ if (std::chrono::steady_clock::now() - timeOfLastKeepAlivePacket > 20s) {
+ packet = std::make_shared<PacketDisconnectPlay>();
+ std::static_pointer_cast<PacketDisconnectPlay>(packet)->Reason = "Timeout: server not respond";
+ PUSH_EVENT("ReceivedPacket", packet);
}
}
- using namespace std::chrono_literals;
- if (std::chrono::steady_clock::now() - timeOfLastKeepAlivePacket > 20s) {
- auto disconnectPacket = std::make_shared<PacketDisconnectPlay>();
- disconnectPacket->Reason = "Timeout: server not respond";
- toReceive.push(disconnectPacket);
- }
} \ No newline at end of file
diff --git a/src/NetworkClient.hpp b/src/NetworkClient.hpp
index 2bcbd9f..f372468 100644
--- a/src/NetworkClient.hpp
+++ b/src/NetworkClient.hpp
@@ -4,6 +4,7 @@
#include <queue>
#include <string>
#include <chrono>
+#include <thread>
class Network;
struct Packet;
@@ -16,12 +17,10 @@ class NetworkClient {
ConnectionState state;
int compressionThreshold = -1;
std::chrono::steady_clock::time_point timeOfLastKeepAlivePacket;
+ std::thread thread;
+ bool isRunning=true;
+ void ExecNs();
public:
NetworkClient(std::string address, unsigned short port, std::string username);
~NetworkClient();
-
- std::shared_ptr <Packet> ReceivePacket();
- void SendPacket(std::shared_ptr<Packet> packet);
-
- void UpdatePacket();
}; \ No newline at end of file