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-02-15 22:33:40 +01:00
|
|
|
#include <LinkedList.h>
|
2014-01-28 09:00:02 +01:00
|
|
|
|
|
|
|
namespace DanBias
|
|
|
|
{
|
2014-01-30 11:11:04 +01:00
|
|
|
struct LobbyLevelData
|
|
|
|
{
|
|
|
|
int maxClients;
|
2014-02-18 11:34:24 +01:00
|
|
|
int gameTimeInMinutes;
|
|
|
|
std::wstring gameMode;
|
|
|
|
std::wstring mapName;
|
|
|
|
std::wstring gameName;
|
|
|
|
LobbyLevelData()
|
|
|
|
: maxClients(10)
|
|
|
|
, gameTimeInMinutes(10)
|
|
|
|
, gameMode(L"unknown")
|
|
|
|
, mapName(L"unknown")
|
|
|
|
, gameName(L"unknown")
|
|
|
|
{ }
|
2014-01-30 11:11:04 +01:00
|
|
|
};
|
2014-01-28 09:00:02 +01:00
|
|
|
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-30 11:11:04 +01:00
|
|
|
void SetGameDesc(const LobbyLevelData& desc);
|
|
|
|
void GetGameDesc(LobbyLevelData& desc);
|
2014-02-18 13:12:08 +01:00
|
|
|
/**
|
|
|
|
* If param is true, the server will start a game session regardless of clients connected.
|
|
|
|
*/
|
|
|
|
bool StartGameSession( bool forceStart );
|
|
|
|
|
|
|
|
int GetGameSessionClientCount();
|
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);
|
|
|
|
|
2014-02-18 08:55:38 +01:00
|
|
|
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 LobbyStartGame(GameLogic::Protocol_LobbyStartGame& p, Oyster::Network::NetworkClient* c); //id = protocol_Lobby_Start:
|
|
|
|
void LobbyJoin(GameLogic::Protocol_LobbyJoinGame& p, Oyster::Network::NetworkClient* c); //id = protocol_Lobby_Login:
|
|
|
|
void LobbyRefresh(GameLogic::Protocol_LobbyRefresh& p, Oyster::Network::NetworkClient* c); //id = protocol_Lobby_Refresh:
|
|
|
|
void LobbyGameData(GameLogic::Protocol_LobbyGameData& p, Oyster::Network::NetworkClient* c); //id = protocol_Lobby_GameData:
|
|
|
|
void LobbyMainData(GameLogic::Protocol_LobbyClientData& p, Oyster::Network::NetworkClient* c); //id = protocol_Lobby_MainData:
|
|
|
|
void LobbyReady(GameLogic::Protocol_LobbyClientReadyState& p, Oyster::Network::NetworkClient* c); //id = protocol_Lobby_ClientReadyState:
|
|
|
|
void LobbyQuerryGameData(GameLogic::Protocol_QuerryGameType& p, Oyster::Network::NetworkClient* c); //id = protocol_Lobby_QuerryGameType:
|
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-02-18 11:34:24 +01:00
|
|
|
void ProcessClients() override;
|
|
|
|
bool Attach(Utility::DynamicMemory::SmartPointer<Oyster::Network::NetworkClient> client) override;
|
2014-01-28 09:00:02 +01:00
|
|
|
|
|
|
|
private:
|
2014-02-18 08:55:38 +01:00
|
|
|
//Utility::WinTimer timer;
|
|
|
|
//float refreshFrequency;
|
|
|
|
|
2014-02-15 22:33:40 +01:00
|
|
|
Utility::DynamicMemory::LinkedList<Oyster::Network::NetworkClient*> readyList;
|
2014-01-30 00:19:00 +01:00
|
|
|
GameSession gameSession;
|
2014-01-30 11:11:04 +01:00
|
|
|
LobbyLevelData description;
|
2014-02-04 16:07:10 +01:00
|
|
|
Utility::DynamicMemory::SmartPointer<DanBias::GameClient> sessionOwner;
|
2014-02-18 11:34:24 +01:00
|
|
|
Utility::DynamicMemory::DynamicArray<Utility::DynamicMemory::SmartPointer<GameClient>> gClients;
|
2014-01-28 09:00:02 +01:00
|
|
|
};
|
|
|
|
}//End namespace DanBias
|
|
|
|
#endif // !DANBIASGAME_GAMELOBBY_H
|