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

135 lines
3.0 KiB
C++
Raw Normal View History

/////////////////////////////////////////////////////////////////////
// Created by [Dennis Andersen] [2013]
/////////////////////////////////////////////////////////////////////
2014-01-28 09:00:02 +01:00
#include "..\GameSession.h"
#include "..\GameClient.h"
#include <Protocols.h>
#include <PostBox\PostBox.h>
#include <GameLogicStates.h>
2014-01-29 10:18:01 +01:00
#define NOMINMAX
#include <Windows.h>
using namespace Utility::DynamicMemory;
using namespace Oyster;
using namespace Oyster::Network;
using namespace Oyster::Thread;
using namespace GameLogic;
namespace DanBias
{
GameSession* GameSession::gameSession = nullptr;
2014-01-30 00:19:00 +01:00
GameSession::GameSession()
2014-01-20 15:47:52 +01:00
:gameInstance(GameAPI::Instance())
{
this->owner = 0;
this->isCreated = false;
this->isRunning = false;
this->gameSession = this;
2014-01-30 00:19:00 +01:00
memset(&this->description, 0, sizeof(GameDescription));
}
GameSession::~GameSession()
{
2014-01-29 10:18:01 +01:00
this->worker.Terminate();
this->clients.Clear();
this->gameInstance;
this->owner = 0;
2014-01-29 10:18:01 +01:00
this->isCreated = false;
this->isRunning = false;
}
bool GameSession::Create(GameDescription& desc)
{
2014-01-30 00:19:00 +01:00
this->description = desc;
2014-01-20 15:47:52 +01:00
/* Do some error checking */
if(desc.clients.Size() == 0) return false;
if(!desc.owner) return false;
if(this->isCreated) return false;
2014-01-20 15:47:52 +01:00
/* standard initialization of some data */
this->clients.Resize(desc.clients.Size());
this->owner = desc.owner;
2014-01-20 15:47:52 +01:00
/* Initiate the game instance */
if(!this->gameInstance.Initiate())
{
printf("Failed to initiate the game instance\n");
}
/* Create the game level */
if(!(this->levelData = this->gameInstance.CreateLevel()))
{
printf("Level not created!");
return false;
}
/* Create the players in the game instance */
GameLogic::IPlayerData* p = 0;
for (unsigned int i = 0; i < desc.clients.Size(); i++)
{
2014-01-20 15:47:52 +01:00
if( (p = this->gameInstance.CreatePlayer()) )
{
2014-01-29 10:18:01 +01:00
this->clients[i] = new GameClient(desc.clients[i], p);
2014-01-20 15:47:52 +01:00
}
else
{
printf("Failed to create player (%i)\n", i);
}
}
2014-01-20 15:47:52 +01:00
/* Create the worker thread */
2014-01-29 10:18:01 +01:00
if(this->worker.Create(this, false) != OYSTER_THREAD_ERROR_SUCCESS)
2014-01-20 15:47:52 +01:00
return false;
2014-01-20 15:47:52 +01:00
this->worker.SetPriority(Oyster::Thread::OYSTER_THREAD_PRIORITY_3);
2014-01-29 10:18:01 +01:00
/* Set some game instance data options */
2014-01-20 15:47:52 +01:00
this->gameInstance.SetSubscription(GameLogic::GameEvent::ObjectEventFunctionType_OnMove, GameSession::ObjectMove);
this->isCreated = true;
return this->isCreated;
}
void GameSession::Run()
{
if(this->isRunning) return;
if(this->clients.Size() > 0)
{
2014-01-29 10:18:01 +01:00
this->worker.Start();
2014-01-20 15:47:52 +01:00
this->worker.SetPriority(OYSTER_THREAD_PRIORITY_1);
this->isRunning = true;
}
}
2014-01-29 10:18:01 +01:00
bool GameSession::Attach(Utility::DynamicMemory::SmartPointer<NetworkClient> client)
{
2014-01-29 10:18:01 +01:00
if(!this->isCreated) return false;
2014-01-29 10:18:01 +01:00
client->SetOwner(this);
SmartPointer<GameClient> obj = new GameClient(client, this->gameInstance.CreatePlayer());
for (unsigned int i = 0; i < clients.Size(); i++)
{
if(!clients[i])
{
clients[i] = obj;
2014-01-29 10:18:01 +01:00
return true;
}
}
2014-01-29 10:18:01 +01:00
clients.Push(obj);
return true;
}
}//End namespace DanBias