2013-12-04 11:32:43 +01:00
|
|
|
#define NOMINMAX
|
|
|
|
#include <Windows.h>
|
|
|
|
#include "Include\DanBiasGame.h"
|
2013-12-06 10:38:43 +01:00
|
|
|
#include "DllInterfaces/GFXAPI.h"
|
|
|
|
#include "GameClientState/GameClientState.h"
|
|
|
|
#include "GameClientState\GameState.h"
|
|
|
|
#include "GameClientState\LobbyState.h"
|
2013-12-11 12:14:00 +01:00
|
|
|
#include "PlayerProtocols.h"
|
2013-12-18 15:28:47 +01:00
|
|
|
#include "ControlProtocols.h"
|
2013-12-11 12:14:00 +01:00
|
|
|
#include "NetworkClient.h"
|
2013-12-11 09:00:36 +01:00
|
|
|
|
2013-12-18 10:47:30 +01:00
|
|
|
#include "../WindowManager/WindowShell.h"
|
2013-12-11 09:00:36 +01:00
|
|
|
#include "L_inputClass.h"
|
2013-12-18 12:18:01 +01:00
|
|
|
#include "WinTimer.h"
|
2013-12-18 10:47:30 +01:00
|
|
|
#include "vld.h"
|
2013-12-04 11:32:43 +01:00
|
|
|
|
|
|
|
namespace DanBias
|
|
|
|
{
|
|
|
|
|
|
|
|
#pragma region Game Data
|
2013-12-11 12:14:00 +01:00
|
|
|
|
|
|
|
|
2013-12-13 12:02:49 +01:00
|
|
|
struct MyRecieverObject :public Oyster::Network::ProtocolRecieverObject
|
2013-12-11 12:14:00 +01:00
|
|
|
{
|
2013-12-13 12:02:49 +01:00
|
|
|
Oyster::Network::NetworkClient* nwClient;
|
|
|
|
Client::GameClientState* gameClientState;
|
|
|
|
|
|
|
|
void ProtocolRecievedCallback(Oyster::Network::CustomNetProtocol& p) override
|
|
|
|
{
|
2013-12-16 09:45:12 +01:00
|
|
|
int pType = p[0].value.netInt;
|
|
|
|
switch (pType)
|
|
|
|
{
|
2013-12-18 15:28:47 +01:00
|
|
|
case protocol_Status:
|
|
|
|
{
|
|
|
|
GameLogic::Protocol_Status::States state;
|
|
|
|
state = (GameLogic::Protocol_Status::States)p[1].value.netShort;
|
|
|
|
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case protocol_Gameplay_PlayerNavigation:
|
2013-12-17 13:39:10 +01:00
|
|
|
{
|
|
|
|
Client::GameClientState::KeyInput* protocolData = new Client::GameClientState::KeyInput;
|
|
|
|
for(int i = 0; i< 6; i++)
|
|
|
|
{
|
|
|
|
protocolData->key[i] = p[i+1].value.netBool;
|
|
|
|
}
|
2013-12-13 12:02:49 +01:00
|
|
|
|
2013-12-18 10:47:30 +01:00
|
|
|
if(dynamic_cast<Client::GameState*>(gameClientState))
|
|
|
|
((Client::GameState*)gameClientState)->Protocol(protocolData);
|
2013-12-17 13:39:10 +01:00
|
|
|
delete protocolData;
|
|
|
|
protocolData = NULL;
|
|
|
|
}
|
2013-12-16 09:45:12 +01:00
|
|
|
break;
|
2013-12-18 15:28:47 +01:00
|
|
|
case protocol_Gameplay_PlayerPosition:
|
2013-12-16 09:45:12 +01:00
|
|
|
{
|
2013-12-17 13:39:10 +01:00
|
|
|
Client::GameClientState::PlayerPos* protocolData = new Client::GameClientState::PlayerPos;
|
|
|
|
for(int i = 0; i< 3; i++)
|
|
|
|
{
|
|
|
|
protocolData->playerPos[i] = p[i].value.netFloat;
|
|
|
|
}
|
2013-12-18 10:47:30 +01:00
|
|
|
if(dynamic_cast<Client::GameState*>(gameClientState))
|
|
|
|
((Client::GameState*)gameClientState)->Protocol(protocolData);
|
2013-12-17 13:39:10 +01:00
|
|
|
delete protocolData;
|
|
|
|
protocolData = NULL;
|
2013-12-16 09:45:12 +01:00
|
|
|
}
|
|
|
|
break;
|
2013-12-13 12:02:49 +01:00
|
|
|
|
2013-12-18 15:28:47 +01:00
|
|
|
case protocol_Gameplay_CreateObject:
|
2013-12-18 12:18:01 +01:00
|
|
|
{
|
|
|
|
|
|
|
|
Client::GameClientState::NewObj* protocolData = new Client::GameClientState::NewObj;
|
|
|
|
protocolData->object_ID = p[1].value.netInt;
|
|
|
|
protocolData->path = p[2].value.netCharPtr;
|
|
|
|
for(int i = 0; i< 16; i++)
|
|
|
|
{
|
|
|
|
protocolData->worldPos[i] = p[i+3].value.netFloat;
|
|
|
|
}
|
2013-12-13 12:02:49 +01:00
|
|
|
|
2013-12-18 12:18:01 +01:00
|
|
|
if(dynamic_cast<Client::GameState*>(gameClientState))
|
|
|
|
((Client::GameState*)gameClientState)->Protocol(protocolData);
|
|
|
|
|
|
|
|
delete protocolData;
|
|
|
|
protocolData = NULL;
|
|
|
|
}
|
|
|
|
break;
|
2013-12-18 15:28:47 +01:00
|
|
|
case protocol_Gameplay_RemoveObject:
|
|
|
|
{
|
|
|
|
Client::GameClientState::RemoveObj* protocolData = new Client::GameClientState::RemoveObj;
|
|
|
|
protocolData->object_ID = p[1].value.netInt;
|
|
|
|
|
|
|
|
if(dynamic_cast<Client::GameState*>(gameClientState))
|
|
|
|
((Client::GameState*)gameClientState)->Protocol(protocolData);
|
|
|
|
|
|
|
|
delete protocolData;
|
|
|
|
protocolData = NULL;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case protocol_Gameplay_ObjectPosition:
|
2013-12-16 09:45:12 +01:00
|
|
|
{
|
2013-12-16 11:08:10 +01:00
|
|
|
|
2013-12-17 13:39:10 +01:00
|
|
|
Client::GameClientState::ObjPos* protocolData = new Client::GameClientState::ObjPos;
|
|
|
|
protocolData->object_ID = p[1].value.netInt;
|
|
|
|
for(int i = 0; i< 16; i++)
|
|
|
|
{
|
|
|
|
protocolData->worldPos[i] = p[i+2].value.netFloat;
|
|
|
|
}
|
|
|
|
|
2013-12-18 10:47:30 +01:00
|
|
|
if(dynamic_cast<Client::GameState*>(gameClientState))
|
|
|
|
((Client::GameState*)gameClientState)->Protocol(protocolData);
|
2013-12-16 11:08:10 +01:00
|
|
|
|
2013-12-17 13:39:10 +01:00
|
|
|
delete protocolData;
|
|
|
|
protocolData = NULL;
|
2013-12-16 09:45:12 +01:00
|
|
|
}
|
|
|
|
break;
|
2013-12-13 12:02:49 +01:00
|
|
|
|
2013-12-16 09:45:12 +01:00
|
|
|
default:
|
|
|
|
break;
|
2013-12-16 09:55:51 +01:00
|
|
|
}
|
2013-12-13 12:02:49 +01:00
|
|
|
}
|
2013-12-11 12:14:00 +01:00
|
|
|
};
|
2013-12-04 11:32:43 +01:00
|
|
|
class DanBiasGamePrivateData
|
|
|
|
{
|
|
|
|
|
|
|
|
public:
|
|
|
|
DanBiasGamePrivateData()
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
~DanBiasGamePrivateData()
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2013-12-13 12:02:49 +01:00
|
|
|
public:
|
2013-12-18 10:47:30 +01:00
|
|
|
WindowShell* window;
|
2013-12-13 12:02:49 +01:00
|
|
|
InputClass* inputObj;
|
2013-12-18 12:18:01 +01:00
|
|
|
Utility::WinTimer* timer;
|
2013-12-16 11:08:10 +01:00
|
|
|
MyRecieverObject* recieverObj;
|
2013-12-04 11:32:43 +01:00
|
|
|
|
|
|
|
} data;
|
|
|
|
#pragma endregion
|
|
|
|
|
2013-12-11 12:14:00 +01:00
|
|
|
|
|
|
|
DanBiasGamePrivateData* DanBiasGame::m_data = new DanBiasGamePrivateData();
|
2013-12-13 12:02:49 +01:00
|
|
|
|
2013-12-04 11:32:43 +01:00
|
|
|
//--------------------------------------------------------------------------------------
|
|
|
|
// Interface API functions
|
|
|
|
//--------------------------------------------------------------------------------------
|
|
|
|
DanBiasClientReturn DanBiasGame::Initiate(DanBiasGameDesc& desc)
|
|
|
|
{
|
2013-12-18 10:47:30 +01:00
|
|
|
|
|
|
|
if(! m_data->window->CreateWin(WindowShell::WINDOW_INIT_DESC()))
|
2013-12-04 11:32:43 +01:00
|
|
|
return DanBiasClientReturn_Error;
|
|
|
|
|
|
|
|
if( FAILED( InitDirect3D() ) )
|
|
|
|
return DanBiasClientReturn_Error;
|
|
|
|
|
2013-12-06 10:38:43 +01:00
|
|
|
if( FAILED( InitInput() ) )
|
2013-12-04 11:32:43 +01:00
|
|
|
return DanBiasClientReturn_Error;
|
|
|
|
|
2013-12-16 11:08:10 +01:00
|
|
|
m_data->recieverObj = new MyRecieverObject;
|
2013-12-17 13:39:10 +01:00
|
|
|
|
|
|
|
m_data->recieverObj->nwClient = new Oyster::Network::NetworkClient(m_data->recieverObj, Oyster::Network::NetworkProtocolCallbackType_Object);
|
2013-12-16 11:08:10 +01:00
|
|
|
m_data->recieverObj->nwClient->Connect(desc.port, desc.IP);
|
2013-12-17 13:39:10 +01:00
|
|
|
|
2013-12-16 11:08:10 +01:00
|
|
|
if (!m_data->recieverObj->nwClient->IsConnected())
|
2013-12-16 09:55:51 +01:00
|
|
|
{
|
|
|
|
// failed to connect
|
|
|
|
return DanBiasClientReturn_Error;
|
|
|
|
}
|
2013-12-16 09:45:12 +01:00
|
|
|
// Start in lobby state
|
2013-12-16 11:08:10 +01:00
|
|
|
m_data->recieverObj->gameClientState = new Client::LobbyState();
|
2013-12-18 12:18:01 +01:00
|
|
|
if(!m_data->recieverObj->gameClientState->Init(m_data->recieverObj->nwClient))
|
|
|
|
return DanBiasClientReturn_Error;
|
2013-12-13 12:02:49 +01:00
|
|
|
|
2013-12-18 12:18:01 +01:00
|
|
|
m_data->timer = new Utility::WinTimer();
|
|
|
|
m_data->timer->reset();
|
2013-12-04 11:32:43 +01:00
|
|
|
return DanBiasClientReturn_Sucess;
|
|
|
|
}
|
|
|
|
|
|
|
|
DanBiasClientReturn DanBiasGame::Run()
|
|
|
|
{
|
|
|
|
// Main message loop
|
2013-12-18 12:18:01 +01:00
|
|
|
while(m_data->window->Frame())
|
2013-12-04 11:32:43 +01:00
|
|
|
{
|
2013-12-18 12:18:01 +01:00
|
|
|
float dt = m_data->timer->getElapsedSeconds();
|
|
|
|
m_data->timer->reset();
|
2013-12-04 11:32:43 +01:00
|
|
|
|
2013-12-18 12:18:01 +01:00
|
|
|
if(Update(dt) != S_OK)
|
|
|
|
return DanBiasClientReturn_Error;
|
|
|
|
if(Render(dt) != S_OK)
|
|
|
|
return DanBiasClientReturn_Error;
|
2013-12-04 11:32:43 +01:00
|
|
|
}
|
|
|
|
return DanBiasClientReturn_Sucess;
|
|
|
|
}
|
|
|
|
|
|
|
|
void DanBiasGame::Release()
|
|
|
|
{
|
|
|
|
CleanUp();
|
|
|
|
}
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------------------------
|
|
|
|
// Create Direct3D with Oyster Graphics
|
|
|
|
//--------------------------------------------------------------------------------------
|
|
|
|
HRESULT DanBiasGame::InitDirect3D()
|
|
|
|
{
|
2013-12-18 10:47:30 +01:00
|
|
|
if(Oyster::Graphics::API::Init(m_data->window->GetHWND(), false, false, Oyster::Math::Float2( 1024, 768)) != Oyster::Graphics::API::Sucsess)
|
2013-12-04 11:32:43 +01:00
|
|
|
return E_FAIL;
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------------------------
|
2013-12-06 10:38:43 +01:00
|
|
|
// Init the input
|
2013-12-04 11:32:43 +01:00
|
|
|
//-------------------------------------------------------------------------------------
|
2013-12-18 10:47:30 +01:00
|
|
|
HRESULT DanBiasGame::InitInput()
|
2013-12-04 11:32:43 +01:00
|
|
|
{
|
2013-12-11 09:00:36 +01:00
|
|
|
m_data->inputObj = new InputClass;
|
2013-12-18 10:47:30 +01:00
|
|
|
if(!m_data->inputObj->Initialize(m_data->window->GetHINSTANCE(), m_data->window->GetHWND(), m_data->window->GetHeight(), m_data->window->GetWidth()))
|
2013-12-04 11:32:43 +01:00
|
|
|
{
|
|
|
|
MessageBox(0, L"Could not initialize the input object.", L"Error", MB_OK);
|
|
|
|
return E_FAIL;
|
|
|
|
}
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
HRESULT DanBiasGame::Update(float deltaTime)
|
|
|
|
{
|
2013-12-18 12:18:01 +01:00
|
|
|
|
2013-12-11 09:00:36 +01:00
|
|
|
m_data->inputObj->Update();
|
2013-12-10 11:26:18 +01:00
|
|
|
|
2013-12-06 10:38:43 +01:00
|
|
|
DanBias::Client::GameClientState::ClientState state = DanBias::Client::GameClientState::ClientState_Same;
|
2013-12-16 11:08:10 +01:00
|
|
|
state = m_data->recieverObj->gameClientState->Update(deltaTime, m_data->inputObj);
|
2013-12-04 11:32:43 +01:00
|
|
|
|
2013-12-06 10:38:43 +01:00
|
|
|
if(state != Client::GameClientState::ClientState_Same)
|
|
|
|
{
|
2013-12-16 11:08:10 +01:00
|
|
|
m_data->recieverObj->gameClientState->Release();
|
|
|
|
delete m_data->recieverObj->gameClientState;
|
|
|
|
m_data->recieverObj->gameClientState = NULL;
|
2013-12-09 11:05:47 +01:00
|
|
|
|
2013-12-06 10:38:43 +01:00
|
|
|
switch (state)
|
|
|
|
{
|
|
|
|
case Client::GameClientState::ClientState_Lobby:
|
2013-12-16 11:08:10 +01:00
|
|
|
m_data->recieverObj->gameClientState = new Client::LobbyState();
|
2013-12-06 10:38:43 +01:00
|
|
|
break;
|
|
|
|
case Client::GameClientState::ClientState_Game:
|
2013-12-16 11:08:10 +01:00
|
|
|
m_data->recieverObj->gameClientState = new Client::GameState();
|
2013-12-06 10:38:43 +01:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return E_FAIL;
|
|
|
|
break;
|
|
|
|
}
|
2013-12-16 11:08:10 +01:00
|
|
|
m_data->recieverObj->gameClientState->Init(m_data->recieverObj->nwClient); // send game client
|
2013-12-09 11:05:47 +01:00
|
|
|
|
2013-12-06 10:38:43 +01:00
|
|
|
}
|
2013-12-04 11:32:43 +01:00
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
HRESULT DanBiasGame::Render(float deltaTime)
|
|
|
|
{
|
|
|
|
int isPressed = 0;
|
2013-12-11 09:00:36 +01:00
|
|
|
if(m_data->inputObj->IsKeyPressed(DIK_A))
|
2013-12-04 11:32:43 +01:00
|
|
|
{
|
|
|
|
isPressed = 1;
|
|
|
|
}
|
2013-12-06 10:38:43 +01:00
|
|
|
|
2013-12-04 11:32:43 +01:00
|
|
|
wchar_t title[255];
|
|
|
|
swprintf(title, sizeof(title), L"| Pressing A: %d | \n", (int)(isPressed));
|
2013-12-18 10:47:30 +01:00
|
|
|
SetWindowText(m_data->window->GetHWND(), title);
|
2013-12-06 10:38:43 +01:00
|
|
|
|
2013-12-16 11:08:10 +01:00
|
|
|
m_data->recieverObj->gameClientState->Render();
|
2013-12-04 11:32:43 +01:00
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
HRESULT DanBiasGame::CleanUp()
|
|
|
|
{
|
2013-12-16 11:08:10 +01:00
|
|
|
m_data->recieverObj->gameClientState->Release();
|
|
|
|
delete m_data->recieverObj->gameClientState;
|
|
|
|
m_data->recieverObj->nwClient->Disconnect();
|
|
|
|
delete m_data->recieverObj->nwClient;
|
|
|
|
delete m_data->recieverObj;
|
2013-12-11 09:00:36 +01:00
|
|
|
delete m_data->inputObj;
|
2013-12-09 09:23:39 +01:00
|
|
|
delete m_data;
|
2013-12-11 09:00:36 +01:00
|
|
|
|
2013-12-09 11:05:47 +01:00
|
|
|
|
|
|
|
Oyster::Graphics::API::Clean();
|
2013-12-04 11:32:43 +01:00
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
} //End namespace DanBias
|