2012-01-08 11:39:03 -06:00
|
|
|
|
|
|
|
#include <time.h>
|
|
|
|
#include <SDL/SDL.h>
|
2012-01-14 12:51:24 -06:00
|
|
|
#include <iostream>
|
|
|
|
#include <sstream>
|
|
|
|
#include <string>
|
2012-01-08 11:39:03 -06:00
|
|
|
#include "Config.h"
|
2012-01-15 13:35:40 -06:00
|
|
|
#include "Global.h"
|
2012-01-08 11:39:03 -06:00
|
|
|
#include "Graphics.h"
|
|
|
|
|
2012-01-14 12:51:24 -06:00
|
|
|
#include "interface/Engine.h"
|
2012-01-08 11:39:03 -06:00
|
|
|
#include "interface/Button.h"
|
2012-01-10 17:18:37 -06:00
|
|
|
#include "interface/Panel.h"
|
|
|
|
#include "interface/ControlFactory.h"
|
2012-01-14 12:51:24 -06:00
|
|
|
#include "interface/Point.h"
|
|
|
|
#include "interface/Label.h"
|
2012-01-08 11:39:03 -06:00
|
|
|
|
2012-01-17 14:46:06 -06:00
|
|
|
#include "game/GameController.h"
|
|
|
|
#include "game/GameView.h"
|
|
|
|
|
2012-01-29 08:44:36 -06:00
|
|
|
#include "dialogues/ErrorMessage.h"
|
|
|
|
|
2012-01-19 07:44:59 -06:00
|
|
|
#include "client/HTTP.h"
|
|
|
|
|
2012-01-14 12:51:24 -06:00
|
|
|
using namespace std;
|
|
|
|
|
2012-01-08 11:39:03 -06:00
|
|
|
SDL_Surface * SDLOpen()
|
|
|
|
{
|
2012-01-14 12:51:24 -06:00
|
|
|
#if defined(WIN32) && defined(WINCONSOLE)
|
|
|
|
FILE * console = fopen("CON", "w" );
|
|
|
|
#endif
|
2012-01-08 11:39:03 -06:00
|
|
|
if (SDL_Init(SDL_INIT_VIDEO)<0)
|
|
|
|
{
|
|
|
|
fprintf(stderr, "Initializing SDL: %s\n", SDL_GetError());
|
|
|
|
return 0;
|
|
|
|
}
|
2012-01-24 17:33:32 -06:00
|
|
|
SDL_EnableUNICODE(1);
|
2012-01-14 12:51:24 -06:00
|
|
|
#if defined(WIN32) && defined(WINCONSOLE)
|
|
|
|
//On Windows, SDL redirects stdout to stdout.txt, which can be annoying when debugging, here we redirect back to the console
|
|
|
|
if (console)
|
|
|
|
{
|
|
|
|
freopen("CON", "w", stdout);
|
|
|
|
freopen("con", "w", stderr);
|
|
|
|
fclose(console);
|
|
|
|
}
|
|
|
|
#endif
|
2012-01-08 11:39:03 -06:00
|
|
|
atexit(SDL_Quit);
|
|
|
|
return SDL_SetVideoMode(XRES + BARSIZE, YRES + MENUSIZE, 32, SDL_SWSURFACE);
|
|
|
|
}
|
|
|
|
|
2012-01-15 13:35:40 -06:00
|
|
|
/*int SDLPoll(SDL_Event * event)
|
2012-01-08 11:39:03 -06:00
|
|
|
{
|
|
|
|
while (SDL_PollEvent(event))
|
|
|
|
{
|
|
|
|
switch (event->type)
|
|
|
|
{
|
|
|
|
case SDL_QUIT:
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0;
|
2012-01-15 13:35:40 -06:00
|
|
|
}*/
|
2012-01-08 11:39:03 -06:00
|
|
|
|
|
|
|
int main(int argc, char * argv[])
|
|
|
|
{
|
2012-01-14 12:51:24 -06:00
|
|
|
int elapsedTime = 0, currentTime = 0, lastTime = 0, currentFrame = 0;
|
2012-01-24 14:19:19 -06:00
|
|
|
float fps = 0, delta = 1.0f;
|
2012-01-08 11:39:03 -06:00
|
|
|
|
2012-01-17 14:46:06 -06:00
|
|
|
ui::Engine::Ref().g = new Graphics();
|
|
|
|
ui::Engine::Ref().g->AttachSDLSurface(SDLOpen());
|
2012-01-15 13:35:40 -06:00
|
|
|
|
2012-01-20 16:07:49 -06:00
|
|
|
ui::Engine * engine = &ui::Engine::Ref();
|
2012-01-21 17:29:40 -06:00
|
|
|
engine->Begin(XRES+BARSIZE, YRES+MENUSIZE);
|
2012-01-17 14:46:06 -06:00
|
|
|
|
|
|
|
GameController * gameController = new GameController();
|
|
|
|
engine->ShowWindow(gameController->GetView());
|
2012-01-08 11:39:03 -06:00
|
|
|
|
2012-01-29 08:44:36 -06:00
|
|
|
new ErrorMessage("Error", "This is a test error message");
|
|
|
|
|
2012-01-08 11:39:03 -06:00
|
|
|
SDL_Event event;
|
2012-01-15 13:35:40 -06:00
|
|
|
while(engine->Running())
|
2012-01-08 11:39:03 -06:00
|
|
|
{
|
2012-01-15 13:35:40 -06:00
|
|
|
event.type = 0;
|
|
|
|
while (SDL_PollEvent(&event))
|
2012-01-08 11:39:03 -06:00
|
|
|
{
|
2012-01-15 13:35:40 -06:00
|
|
|
switch (event.type)
|
|
|
|
{
|
|
|
|
case SDL_QUIT:
|
|
|
|
engine->Exit();
|
|
|
|
break;
|
|
|
|
case SDL_KEYDOWN:
|
2012-01-24 17:33:32 -06:00
|
|
|
engine->onKeyPress(event.key.keysym.unicode, false, false, false);
|
2012-01-15 13:35:40 -06:00
|
|
|
break;
|
|
|
|
case SDL_KEYUP:
|
2012-01-28 08:51:39 -06:00
|
|
|
engine->onKeyRelease(event.key.keysym.unicode, false, false, false);
|
2012-01-15 13:35:40 -06:00
|
|
|
break;
|
|
|
|
case SDL_MOUSEMOTION:
|
|
|
|
engine->onMouseMove(event.motion.x, event.motion.y);
|
|
|
|
break;
|
|
|
|
case SDL_MOUSEBUTTONDOWN:
|
2012-01-21 12:51:28 -06:00
|
|
|
if(event.button.button == SDL_BUTTON_WHEELUP)
|
|
|
|
{
|
|
|
|
engine->onMouseWheel(event.motion.x, event.motion.y, 1);
|
|
|
|
}
|
|
|
|
else if (event.button.button == SDL_BUTTON_WHEELDOWN)
|
|
|
|
{
|
|
|
|
engine->onMouseWheel(event.motion.x, event.motion.y, -1);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
engine->onMouseClick(event.motion.x, event.motion.y, event.button.button);
|
|
|
|
}
|
2012-01-15 13:35:40 -06:00
|
|
|
break;
|
|
|
|
case SDL_MOUSEBUTTONUP:
|
2012-01-21 12:51:28 -06:00
|
|
|
if(event.button.button != SDL_BUTTON_WHEELUP && event.button.button != SDL_BUTTON_WHEELDOWN)
|
|
|
|
engine->onMouseUnclick(event.motion.x, event.motion.y, event.button.button);
|
2012-01-15 13:35:40 -06:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
event.type = 0; //Clear last event
|
2012-01-08 11:39:03 -06:00
|
|
|
}
|
|
|
|
|
2012-01-14 12:51:24 -06:00
|
|
|
engine->Tick(delta);
|
|
|
|
engine->Draw();
|
2012-01-08 11:39:03 -06:00
|
|
|
|
2012-01-14 12:51:24 -06:00
|
|
|
currentFrame++;
|
|
|
|
currentTime = SDL_GetTicks();
|
|
|
|
elapsedTime = currentTime - lastTime;
|
2012-01-24 14:19:19 -06:00
|
|
|
if(ui::Engine::Ref().FpsLimit > 2.0f && (currentFrame>2 || elapsedTime > 1000*2/ui::Engine::Ref().FpsLimit) && elapsedTime && currentFrame*1000/elapsedTime > ui::Engine::Ref().FpsLimit)
|
2012-01-15 13:35:40 -06:00
|
|
|
{
|
|
|
|
while (currentFrame*1000/elapsedTime > ui::Engine::Ref().FpsLimit)
|
|
|
|
{
|
|
|
|
SDL_Delay(1);
|
|
|
|
currentTime = SDL_GetTicks();
|
|
|
|
elapsedTime = currentTime-lastTime;
|
|
|
|
}
|
|
|
|
}
|
2012-01-14 12:51:24 -06:00
|
|
|
if(elapsedTime>=1000)
|
|
|
|
{
|
|
|
|
fps = (((float)currentFrame)/((float)elapsedTime))*1000.0f;
|
|
|
|
currentFrame = 0;
|
|
|
|
lastTime = currentTime;
|
2012-01-24 17:33:32 -06:00
|
|
|
if(ui::Engine::Ref().FpsLimit > 2.0f)
|
|
|
|
{
|
|
|
|
delta = ui::Engine::Ref().FpsLimit/fps;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
delta = 1.0f;
|
|
|
|
}
|
2012-01-14 12:51:24 -06:00
|
|
|
}
|
2012-01-08 11:39:03 -06:00
|
|
|
}
|
2012-01-21 07:19:10 -06:00
|
|
|
ui::Engine::Ref().CloseWindow();
|
|
|
|
delete gameController;
|
|
|
|
delete ui::Engine::Ref().g;
|
2012-01-08 11:39:03 -06:00
|
|
|
}
|