Danbias/Code/Game/GameServer/GameSession.h

125 lines
4.5 KiB
C
Raw Normal View History

2014-01-07 10:26:09 +01:00
/////////////////////////////////////////////////////////////////////
// Created by [Dennis Andersen] [2013]
/////////////////////////////////////////////////////////////////////
#ifndef DANBIASSERVER_GAME_SESSION_H
#define DANBIASSERVER_GAME_SESSION_H
//warning C4150: deletion of pointer to incomplete type, no destructor called, because of forward decleration and the use of smartpointer.
2014-01-07 10:26:09 +01:00
#pragma warning(disable: 4150)
2014-01-28 09:00:02 +01:00
#include "GameClient.h"
#include <WinTimer.h>
2014-01-07 10:26:09 +01:00
#include <PostBox\IPostBox.h>
#include <Thread\OysterThread.h>
2014-01-20 15:47:52 +01:00
#include <GameAPI.h>
#include <Queue.h>
2014-01-28 09:00:02 +01:00
#include <NetworkSession.h>
2014-01-29 10:18:01 +01:00
#include <DynamicArray.h>
#include <Protocols.h>
2014-01-29 10:18:01 +01:00
2014-01-07 10:26:09 +01:00
namespace DanBias
{
2014-01-29 10:18:01 +01:00
class GameSession : public Oyster::Network::NetworkSession
, public Oyster::Thread::IThreadObject
2014-01-07 10:26:09 +01:00
{
public:
2014-01-29 10:18:01 +01:00
/**
* A container to use when initiating a new session
*/
2014-01-07 10:26:09 +01:00
struct GameDescription
{
2014-02-18 08:55:38 +01:00
unsigned int maxClients;
std::wstring mapName;
std::wstring gameMode;
2014-02-18 08:55:38 +01:00
int gameTimeMinutes;
2014-01-29 10:18:01 +01:00
Oyster::Network::NetworkSession* owner;
Utility::DynamicMemory::DynamicArray<Utility::DynamicMemory::SmartPointer<GameClient>> clients;
2014-01-07 10:26:09 +01:00
};
public:
GameSession();
virtual~GameSession();
/** Initiates and creates a game session. */
2014-02-18 13:12:08 +01:00
bool Create(GameDescription& desc, bool forceStart);
2014-01-07 10:26:09 +01:00
/** Runs the game session (ie starts the game loop). */
void Run();
/** Join an existing/running game session
* @param client The client to attach to the session
*/
bool Join(gClient client);
//void CloseSession( bool dissconnectClients ) override;
2014-01-07 10:26:09 +01:00
inline bool IsCreated() const { return this->isCreated; }
inline bool IsRunning() const { return this->isRunning; }
2014-02-18 13:12:08 +01:00
operator bool() { return (this->isCreated && this->isRunning); }
2014-01-07 10:26:09 +01:00
//Private member functions
2014-01-07 10:26:09 +01:00
private:
2014-02-18 08:55:38 +01:00
// Client event callback function
2014-01-29 10:18:01 +01:00
void ClientEventCallback(Oyster::Network::NetEvent<Oyster::Network::NetworkClient*, Oyster::Network::NetworkClient::ClientEventArgs> e) override;
void ProcessClients() override;
bool Send(Oyster::Network::CustomNetProtocol& message) override;
bool Send(Oyster::Network::CustomNetProtocol& protocol, int ID) override;
2014-01-29 10:18:01 +01:00
2014-02-18 08:55:38 +01:00
//Sends a client to the owner, if param is NULL then all clients is sent
void SendToOwner(DanBias::GameClient* obj);
2014-01-29 10:18:01 +01:00
//Derived from IThreadObject
2014-02-18 08:55:38 +01:00
void ThreadEntry( ) override;
2014-01-29 10:18:01 +01:00
bool DoWork ( ) override;
private:
void ParseProtocol ( Oyster::Network::CustomNetProtocol& p, DanBias::GameClient* c );
void Gameplay_PlayerMovementRight ( DanBias::GameClient* c );
void Gameplay_PlayerMovementLeft ( DanBias::GameClient* c );
void Gameplay_PlayerMovementBack ( DanBias::GameClient* c );
void Gameplay_PlayerMovementForth ( DanBias::GameClient* c );
void Gameplay_PlayerJump ( DanBias::GameClient* c );
void Gameplay_PlayerLeftTurn ( GameLogic::Protocol_PlayerLeftTurn& p, DanBias::GameClient* c );
void Gameplay_PlayerChangeWeapon ( GameLogic::Protocol_PlayerChangeWeapon& p, DanBias::GameClient* c );
void Gameplay_PlayerShot ( GameLogic::Protocol_PlayerShot& p, DanBias::GameClient* c );
void Gameplay_ObjectPickup ( GameLogic::Protocol_ObjectPickup& p, DanBias::GameClient* c );
void Gameplay_ObjectDamage ( GameLogic::Protocol_ObjectDamage& p, DanBias::GameClient* c );
void Gameplay_ObjectPosition ( GameLogic::Protocol_ObjectPosition& p, DanBias::GameClient* c );
void Gameplay_ObjectEnabled ( GameLogic::Protocol_ObjectEnable& p, DanBias::GameClient* c );
void Gameplay_ObjectDisabled ( GameLogic::Protocol_ObjectDisable& p, DanBias::GameClient* c );
void Gameplay_ObjectCreate ( GameLogic::Protocol_ObjectCreate& p, DanBias::GameClient* c );
void General_Status ( GameLogic::Protocol_General_Status& p, DanBias::GameClient* c );
void General_Text ( GameLogic::Protocol_General_Text& p, DanBias::GameClient* c );
2014-02-15 22:33:40 +01:00
2014-01-30 00:19:00 +01:00
//Callback method recieving from gamelogic
static void ObjectMove ( GameLogic::IObjectData* movedObject );
static void ObjectDisabled ( GameLogic::IObjectData* movedObject, float seconds );
2014-01-30 00:19:00 +01:00
//Private member variables
2014-01-07 10:26:09 +01:00
private:
Utility::DynamicMemory::DynamicArray<gClient> gClients;
gClient sessionOwner;
2014-01-07 10:26:09 +01:00
Oyster::Thread::OysterThread worker;
2014-01-20 15:47:52 +01:00
GameLogic::GameAPI& gameInstance;
GameLogic::ILevelData *levelData;
NetworkSession* owner;
2014-01-07 10:26:09 +01:00
bool isCreated;
bool isRunning;
float logicFrameTime;
float networkFrameTime;
2014-01-31 22:52:52 +01:00
Utility::WinTimer logicTimer;
Utility::WinTimer networkTimer;
2014-01-30 00:19:00 +01:00
GameDescription description;
2014-01-20 15:47:52 +01:00
2014-01-30 00:19:00 +01:00
//TODO: Remove this uggly hax
static GameSession* gameSession;
2014-01-07 10:26:09 +01:00
2014-01-07 10:26:09 +01:00
};//End GameSession
}//End namespace DanBias
#endif // !DANBIASSERVER_GAME_SESSION_H