2014-01-28 09:00:02 +01:00
|
|
|
/////////////////////////////////////////////////////////////////////
|
|
|
|
// Created by [Dennis Andersen] [2013]
|
|
|
|
/////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef DANBIASSERVER_MAINLOBBY_H
|
|
|
|
#define DANBIASSERVER_MAINLOBBY_H
|
|
|
|
|
|
|
|
#include <NetworkSession.h>
|
|
|
|
#include <Protocols.h>
|
|
|
|
#include <PostBox\IPostBox.h>
|
|
|
|
#include <WinTimer.h>
|
2014-01-29 10:18:01 +01:00
|
|
|
#include "GameSession.h"
|
2014-01-28 09:00:02 +01:00
|
|
|
|
|
|
|
namespace DanBias
|
|
|
|
{
|
|
|
|
class GameLobby :public Oyster::Network::NetworkSession
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
GameLobby();
|
|
|
|
virtual~GameLobby();
|
|
|
|
void Release();
|
2014-01-29 10:18:01 +01:00
|
|
|
void Update();
|
2014-01-28 09:00:02 +01:00
|
|
|
|
2014-01-29 10:18:01 +01:00
|
|
|
operator bool();
|
2014-01-28 09:00:02 +01:00
|
|
|
|
|
|
|
private:
|
2014-01-29 10:18:01 +01:00
|
|
|
void ParseProtocol(Oyster::Network::CustomNetProtocol& p, Oyster::Network::NetworkClient* c);
|
|
|
|
|
|
|
|
void GeneralStatus(GameLogic::Protocol_General_Status& p, Oyster::Network::NetworkClient* c); //id = protocol_General_Status:
|
|
|
|
void GeneralText(GameLogic::Protocol_General_Text& p, Oyster::Network::NetworkClient* c); //id = protocol_General_Text:
|
|
|
|
void LobbyCreateGame(GameLogic::Protocol_LobbyCreateGame& p, Oyster::Network::NetworkClient* c); //id = protocol_Lobby_Create:
|
|
|
|
void LobbyStartGame(GameLogic::Protocol_LobbyStartGame& p, Oyster::Network::NetworkClient* c); //id = protocol_Lobby_Start:
|
|
|
|
void LobbyJoin(GameLogic::Protocol_LobbyRefresh& p, Oyster::Network::NetworkClient* c); //id = protocol_Lobby_Join:
|
|
|
|
void LobbyLogin(GameLogic::Protocol_LobbyRefresh& p, Oyster::Network::NetworkClient* c); //id = protocol_Lobby_Login:
|
|
|
|
void LobbyRefresh(GameLogic::Protocol_LobbyRefresh& p, Oyster::Network::NetworkClient* c); //id = protocol_Lobby_Refresh:
|
|
|
|
void LobbyMainData(GameLogic::Protocol_LobbyRefresh& p, Oyster::Network::NetworkClient* c); //id = protocol_Lobby_MainData:
|
|
|
|
void LobbyGameData(GameLogic::Protocol_LobbyRefresh& p, Oyster::Network::NetworkClient* c); //id = protocol_Lobby_GameData:
|
2014-01-28 09:00:02 +01:00
|
|
|
|
|
|
|
private:
|
|
|
|
void ClientEventCallback(Oyster::Network::NetEvent<Oyster::Network::NetworkClient*, Oyster::Network::NetworkClient::ClientEventArgs> e) override;
|
2014-01-29 10:18:01 +01:00
|
|
|
void ClientConnectedEvent(Utility::DynamicMemory::SmartPointer<Oyster::Network::NetworkClient> client) override;
|
2014-01-28 09:00:02 +01:00
|
|
|
|
|
|
|
private:
|
|
|
|
Utility::WinTimer timer;
|
|
|
|
float refreshFrequency;
|
2014-01-29 10:18:01 +01:00
|
|
|
GameSession* gameSession;
|
2014-01-28 09:00:02 +01:00
|
|
|
};
|
|
|
|
}//End namespace DanBias
|
|
|
|
#endif // !DANBIASGAME_GAMELOBBY_H
|