Danbias/Code/Game/DanBiasLauncher/Launcher.cpp

42 lines
1.0 KiB
C++
Raw Normal View History

2013-12-03 12:07:37 +01:00
/////////////////////////////////////////////////
// Launcher to launch Danbias server or client //
/////////////////////////////////////////////////
#define NOMINMAX
2013-12-03 12:07:37 +01:00
#include <Windows.h>
2013-12-12 09:33:59 +01:00
#include "DanBiasServerAPI.h"
//#include "DanBiasGame.h"
2013-12-03 12:07:37 +01:00
int WINAPI WinMain( HINSTANCE hinst, HINSTANCE prevInst, PSTR cmdLine, int cmdShow)
{
#if defined(DANBIAS_SERVER)
if(SetDllDirectory(L"..\\DLL") == FALSE)
{
return cmdShow;
}
2013-12-12 09:33:59 +01:00
if( DanBias::DanBiasServerAPI::Initiate() == DanBias::DanBiasServerReturn_Sucess)
2013-12-03 12:07:37 +01:00
{
2013-12-12 09:33:59 +01:00
DanBias::DanBiasServerAPI::Run();
DanBias::DanBiasServerAPI::Release();
2013-12-03 12:07:37 +01:00
}
#elif defined(DANBIAS_CLIENT)
if(SetDllDirectory(L"..\\DLL") == FALSE)
{
return cmdShow;
}
2013-12-03 12:07:37 +01:00
// Game client starter code goes here
DanBias::DanBiasGameDesc gameDesc;
gameDesc.port = 1;
gameDesc.hinst = hinst;
gameDesc.nCmdShow = cmdShow;
if( DanBias::DanBiasGame::Initiate(gameDesc) == DanBias::DanBiasClientReturn_Sucess)
{
DanBias::DanBiasGame::Run();
DanBias::DanBiasGame::Release();
}
2013-12-03 12:07:37 +01:00
#endif
return cmdShow;
}