Danbias/Code/Game/GameClient/GameClientState/LobbyState.cpp

155 lines
4.0 KiB
C++
Raw Normal View History

#include "LobbyState.h"
#include "DllInterfaces/GFXAPI.h"
#include "OysterMath.h"
#include "C_obj/C_Player.h"
#include "C_obj/C_StaticObj.h"
#include "C_obj/C_DynamicObj.h"
2014-01-30 14:17:50 +01:00
#include <GameServerAPI.h>
#include <Protocols.h>
2014-02-13 13:30:14 +01:00
#include "EventHandler\EventHandler.h"
#include "Buttons\ButtonRectangle.h"
using namespace ::DanBias::Client;
2014-02-12 16:31:15 +01:00
using namespace ::Oyster;
using namespace ::Oyster::Network;
2014-02-13 13:30:14 +01:00
using namespace ::Oyster::Event;
using namespace ::Oyster::Math3D;
2014-02-12 16:31:15 +01:00
struct LobbyState::MyData
{
2014-02-12 16:31:15 +01:00
MyData(){}
GameClientState::ClientState nextState;
NetworkClient *nwClient;
2014-02-17 11:27:43 +01:00
InputClass *input;
2014-02-13 13:30:14 +01:00
Graphics::API::Texture background;
EventButtonCollection guiElements;
2014-02-12 09:15:41 +01:00
} privData;
void OnButtonInteract_Ready( Oyster::Event::ButtonEvent<LobbyState*>& e );
2014-02-13 13:30:14 +01:00
2014-02-12 09:15:41 +01:00
LobbyState::LobbyState(void) {}
2014-02-12 16:31:15 +01:00
LobbyState::~LobbyState(void)
{
2014-02-12 16:31:15 +01:00
if( this->privData )
this->Release();
}
2014-02-12 09:15:41 +01:00
2014-02-17 11:27:43 +01:00
bool LobbyState::Init( SharedStateContent &shared )
{
2014-02-12 16:31:15 +01:00
privData = new MyData();
2013-12-09 12:01:36 +01:00
2014-02-12 16:31:15 +01:00
this->privData->nextState = GameClientState::ClientState_Same;
2014-02-17 11:27:43 +01:00
this->privData->nwClient = shared.network;
this->privData->input = shared.input;
2013-12-09 12:01:36 +01:00
2014-02-13 13:30:14 +01:00
this->privData->background = Graphics::API::CreateTexture( L"grass_md.png" );
// create buttons
ButtonRectangle<LobbyState*> *button;
2014-02-13 13:30:14 +01:00
2014-02-17 13:05:35 +01:00
button = new ButtonRectangle<LobbyState*>( L"earth_md.png", L"Ready", Float4(1.0f), OnButtonInteract_Ready, this, Float3(0.5f, 0.2f, 0.5f), Float2(0.3f, 0.1f), ResizeAspectRatio_Width );
this->privData->guiElements.AddButton( button );
2014-02-13 13:30:14 +01:00
// bind button collection to the singleton eventhandler
EventHandler::Instance().AddCollection( &this->privData->guiElements );
2014-02-13 13:30:14 +01:00
return true;
}
2014-02-17 11:27:43 +01:00
GameClientState::ClientState LobbyState::Update( float deltaTime )
{
2014-02-13 13:30:14 +01:00
// Wishlist:
// picking
// mouse events
// different menus
// play sounds
// update animation
// send data to server
// check data from server
MouseInput mouseState;
{
2014-02-17 11:27:43 +01:00
this->privData->input->GetMousePos( mouseState.x, mouseState.y );
mouseState.mouseButtonPressed = this->privData->input->IsMousePressed();
2014-02-13 13:30:14 +01:00
}
EventHandler::Instance().Update( mouseState );
2014-02-12 16:31:15 +01:00
return this->privData->nextState;
}
2014-02-12 14:33:56 +01:00
bool LobbyState::Render( )
{
2014-02-12 16:31:15 +01:00
Graphics::API::NewFrame();
Graphics::API::StartGuiRender();
2014-02-14 12:09:59 +01:00
Graphics::API::RenderGuiElement( this->privData->background, Float3(0.5f, 0.5f, 1.0f), Float2(1.0f) );
this->privData->guiElements.RenderTexture();
Graphics::API::StartTextRender();
this->privData->guiElements.RenderText();
2014-02-13 13:30:14 +01:00
2014-02-12 16:31:15 +01:00
Graphics::API::EndFrame();
return true;
}
bool LobbyState::Release()
{
privData = NULL;
return true;
2013-12-13 12:02:49 +01:00
}
2014-02-12 09:15:41 +01:00
2014-02-12 16:31:15 +01:00
void LobbyState::ChangeState( ClientState next )
{
2014-02-13 13:30:14 +01:00
if( next == GameClientState::ClientState_LobbyReady )
{ // Send ready signal to server lobby
2014-02-14 14:31:01 +01:00
this->ChangeState( GameClientState::ClientState_NetLoad );
2014-02-13 13:30:14 +01:00
}
else
this->privData->nextState = next;
2014-02-12 16:31:15 +01:00
}
2014-02-12 09:15:41 +01:00
using namespace ::Oyster::Network;
2014-02-12 10:43:06 +01:00
void LobbyState::DataRecieved( NetEvent<NetworkClient*, NetworkClient::ClientEventArgs> e )
2013-12-13 12:02:49 +01:00
{
2014-02-12 09:15:41 +01:00
CustomNetProtocol data = e.args.data.protocol;
short ID = data[0].value.netShort; // fetching the id data.
2013-12-13 12:02:49 +01:00
2014-02-12 09:15:41 +01:00
// Block irrelevant messages.
if( ProtocolIsLobby(ID) )
2014-02-12 09:15:41 +01:00
{
switch(ID)
{
2014-02-14 17:12:38 +01:00
case protocol_Lobby_CreateGame: break; /** @todo TODO: implement */
case protocol_Lobby_StartGame: break; /** @todo TODO: implement */
case protocol_Lobby_JoinGame: break; /** @todo TODO: implement */
case protocol_Lobby_Login: break; /** @todo TODO: implement */
case protocol_Lobby_Refresh: break; /** @todo TODO: implement */
case protocol_Lobby_ClientData: break; /** @todo TODO: implement */
case protocol_Lobby_GameData: break; /** @todo TODO: implement */
default: break;
}
}
else if( ProtocolIsGeneral(ID) )
{
switch( ID )
{
case protocol_General_Status: break; /** @todo TODO: implement */
case protocol_General_Text: break; /** @todo TODO: implement */
default: break;
}
2014-02-12 09:15:41 +01:00
}
2014-02-13 13:30:14 +01:00
}
void OnButtonInteract_Ready( Oyster::Event::ButtonEvent<LobbyState*>& e )
2014-02-13 13:30:14 +01:00
{
switch( e.state )
{
case ButtonState_Released:
e.owner->ChangeState( GameClientState::ClientState_LobbyReady );
break;
default: break;
}
}