2021-09-13 15:53:43 +03:00
|
|
|
//
|
|
|
|
// Created by Neirokan on 30.04.2020
|
|
|
|
//
|
|
|
|
|
|
|
|
#include "ClientUDP.h"
|
|
|
|
#include "MsgType.h"
|
|
|
|
#include <thread>
|
|
|
|
#include "../utils/Time.h"
|
|
|
|
#include <cmath>
|
|
|
|
#include "../utils/Log.h"
|
|
|
|
|
2021-10-09 13:41:12 +03:00
|
|
|
ClientUDP::ClientUDP() : _lastBroadcast(std::numeric_limits<double>::min()), _working(false)
|
2021-09-13 15:53:43 +03:00
|
|
|
{
|
|
|
|
_socket.setTimeoutCallback(std::bind(&ClientUDP::timeout, this, std::placeholders::_1));
|
|
|
|
}
|
|
|
|
|
|
|
|
bool ClientUDP::connected() const
|
|
|
|
{
|
|
|
|
return _socket.ownId();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool ClientUDP::isWorking() const
|
|
|
|
{
|
|
|
|
return _working;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ClientUDP::connect(sf::IpAddress ip, sf::Uint16 port)
|
|
|
|
{
|
|
|
|
sf::Packet packet;
|
2021-09-20 12:47:42 +03:00
|
|
|
packet << MsgType::Connect << Network::VERSION;
|
2021-09-13 15:53:43 +03:00
|
|
|
_working = _socket.bind(0);
|
|
|
|
_socket.addConnection(_socket.serverId(), ip, port);
|
|
|
|
_socket.sendRely(packet, _socket.serverId());
|
|
|
|
|
|
|
|
Log::log("ClientUDP: connecting to the server...");
|
|
|
|
}
|
|
|
|
|
|
|
|
void ClientUDP::update()
|
|
|
|
{
|
|
|
|
if (!isWorking())
|
|
|
|
return;
|
|
|
|
|
|
|
|
while (isWorking() && process());
|
|
|
|
|
|
|
|
// Send new client information to server
|
2021-09-20 12:47:42 +03:00
|
|
|
if (Time::time() - _lastBroadcast > 1.0 / Network::WORLD_UPDATE_RATE && connected()) {
|
2021-09-13 15:53:43 +03:00
|
|
|
updatePacket();
|
|
|
|
_lastBroadcast = Time::time();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Socket update
|
|
|
|
_socket.update();
|
|
|
|
}
|
|
|
|
|
|
|
|
void ClientUDP::disconnect()
|
|
|
|
{
|
|
|
|
sf::Packet packet;
|
|
|
|
packet << MsgType::Disconnect << _socket.ownId();
|
|
|
|
_socket.send(packet, _socket.serverId());
|
|
|
|
_socket.unbind();
|
|
|
|
_working = false;
|
|
|
|
|
|
|
|
Log::log("ClientUDP: disconnected from the server.");
|
|
|
|
processDisconnected();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool ClientUDP::timeout(sf::Uint16 id)
|
|
|
|
{
|
|
|
|
Log::log("ClientUDP: timeout from the server.");
|
|
|
|
|
|
|
|
if (id != _socket.serverId())
|
|
|
|
return true;
|
|
|
|
disconnect();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Recive and process message.
|
|
|
|
// Returns true, if some message was received.
|
|
|
|
bool ClientUDP::process()
|
|
|
|
{
|
|
|
|
sf::Packet packet;
|
|
|
|
sf::Uint16 senderId;
|
|
|
|
sf::Uint16 targetId;
|
|
|
|
MsgType type;
|
|
|
|
|
|
|
|
if ((type = _socket.receive(packet, senderId)) == MsgType::Empty)
|
|
|
|
return false;
|
|
|
|
if (!connected() && type != MsgType::Init)
|
|
|
|
return true;
|
|
|
|
|
|
|
|
switch (type)
|
|
|
|
{
|
|
|
|
// here we process any operations based on msg type
|
|
|
|
case MsgType::Init:
|
|
|
|
packet >> targetId;
|
|
|
|
_socket.setId(targetId);
|
|
|
|
|
|
|
|
Log::log("ClientUDP: client Id = " + std::to_string(targetId) + " connected.");
|
|
|
|
|
|
|
|
processInit(packet);
|
|
|
|
break;
|
|
|
|
case MsgType::Update:
|
|
|
|
|
|
|
|
processUpdate(packet);
|
|
|
|
break;
|
|
|
|
case MsgType::NewClient:
|
|
|
|
|
|
|
|
Log::log("ClientUDP: new client init...");
|
|
|
|
|
|
|
|
processNewClient(packet);
|
|
|
|
break;
|
|
|
|
case MsgType::Disconnect:
|
|
|
|
packet >> targetId;
|
|
|
|
if (targetId == _socket.ownId())
|
|
|
|
disconnect();
|
|
|
|
|
|
|
|
Log::log("ClientUDP: client Id = " + std::to_string(targetId) + " disconnected from the server");
|
|
|
|
|
|
|
|
processDisconnect(targetId);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
processCustomPacket(type, packet);
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|