Danbias/Code/Game/GameServer/Implementation/GameClient.cpp

105 lines
2.1 KiB
C++
Raw Normal View History

2014-01-28 09:00:02 +01:00
/////////////////////////////////////////////////////////////////////
// Created by [Dennis Andersen] [2013]
/////////////////////////////////////////////////////////////////////
#include "..\GameClient.h"
#include <NetworkSession.h>
#include <Protocols.h>
using namespace Utility::DynamicMemory;
2014-01-29 10:18:01 +01:00
using namespace Oyster::Network;
2014-01-28 09:00:02 +01:00
using namespace DanBias;
using namespace GameLogic;
GameClient::GameClient(Utility::DynamicMemory::SmartPointer<Oyster::Network::NetworkClient> nwClient)
2014-01-28 09:00:02 +01:00
{
this->isInvalid = false;
this->failedPackagesCount = 0;
this->client = nwClient;
2014-02-18 08:55:38 +01:00
this->player = 0;
isReady = false;
this->character = L"crate_colonists.dan";
2014-02-18 08:55:38 +01:00
this->alias = L"Unknown";
this->secondsSinceLastResponse = 0.0f;
2014-01-28 09:00:02 +01:00
}
GameClient::~GameClient()
{
this->client = 0;
2014-01-28 09:00:02 +01:00
this->player = 0;
2014-02-18 08:55:38 +01:00
this->isReady = false;
this->character = L"crate_colonists.dan";
2014-02-18 08:55:38 +01:00
this->alias = L"Unknown";
this->secondsSinceLastResponse = 0.0f;
2014-01-28 09:00:02 +01:00
}
2014-02-18 08:55:38 +01:00
void GameClient::SetPlayer(GameLogic::IPlayerData* player)
2014-01-28 09:00:02 +01:00
{
2014-02-18 08:55:38 +01:00
this->player = player;
}
void GameClient::SetReadyState(bool r)
{
this->isReady = r;
}
void GameClient::SetSinceLastResponse(float s)
{
this->secondsSinceLastResponse = s;
}
2014-02-18 08:55:38 +01:00
void GameClient::SetAlias(std::wstring alias)
{
this->alias = alias;
}
void GameClient::SetCharacter(std::wstring character)
{
this->character = character;
}
void GameClient::SetState(ClientState state)
{
this->state = state;
}
void GameClient::Invalidate()
{
this->isInvalid = true;
this->isReady = false;
this->state = ClientState_Invalid;
this->client->Disconnect();
}
int GameClient::IncrementFailedProtocol()
{
this->failedPackagesCount++;
return this->failedPackagesCount;
}
void GameClient::ResetFailedProtocolCount()
{
this->failedPackagesCount = 0;
}
void GameClient::SetOwner(Oyster::Network::NetworkSession* owner)
{
this->client->SetOwner(owner);
}
void GameClient::UpdateClient()
{
switch (this->state)
{
case ClientState_Ready:
this->client->Update();
break;
}
}
IPlayerData* GameClient::ReleasePlayer()
{
IPlayerData* temp = this->player;
this->player = 0;
return temp;
}
NetClient GameClient::ReleaseClient()
{
NetClient temp = this->client;
this->client = 0;
return temp;
}