75 líneas
1.5 KiB

  1. //
  2. // Deus Hax (working title)
  3. // Copyright (c) 2010 Sam Hocevar <sam@hocevar.net>
  4. //
  5. #if defined HAVE_CONFIG_H
  6. # include "config.h"
  7. #endif
  8. #include <cstdio>
  9. #include <cmath>
  10. #include <SDL.h>
  11. #include "sdlinput.h"
  12. #include "debugfps.h"
  13. #include "debugsprite.h"
  14. #include "game.h"
  15. #include "ticker.h"
  16. #include "profiler.h"
  17. #include "video.h"
  18. static float const FPS = 30.0f;
  19. int main(int argc, char **argv)
  20. {
  21. /* Initialise SDL */
  22. if (SDL_Init(SDL_INIT_VIDEO) < 0)
  23. {
  24. fprintf(stderr, "Cannot initialise SDL: %s\n", SDL_GetError());
  25. return EXIT_FAILURE;
  26. }
  27. SDL_Surface *video = SDL_SetVideoMode(640, 480, 0, SDL_OPENGL);
  28. if (!video)
  29. {
  30. fprintf(stderr, "Cannot create OpenGL screen: %s\n", SDL_GetError());
  31. SDL_Quit();
  32. return EXIT_FAILURE;
  33. }
  34. SDL_WM_SetCaption("Deus Hax (SDL)", NULL);
  35. SDL_ShowCursor(0);
  36. SDL_WM_GrabInput(SDL_GRAB_ON);
  37. /* Initialise OpenGL */
  38. Video::Setup(video->w, video->h);
  39. /* Create a game */
  40. Game *game = new Game("maps/testmap.tmx");
  41. /* Register an input driver and some debug stuff */
  42. new SdlInput(game);
  43. new DebugFps();
  44. new DebugSprite(game);
  45. while (!game->Finished())
  46. {
  47. /* Tick the game */
  48. Ticker::TickGame();
  49. /* Clear the screen, tick the renderer, show the frame and
  50. * clamp to desired framerate. */
  51. Video::Clear();
  52. Ticker::TickRender();
  53. SDL_GL_SwapBuffers();
  54. Ticker::ClampFps(1.0f / FPS);
  55. }
  56. SDL_Quit();
  57. return EXIT_SUCCESS;
  58. }