79 rader
1.3 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 <SDL.h>
  9. #include "sdlinput.h"
  10. /*
  11. * SDL Input implementation class
  12. */
  13. class SdlInputData
  14. {
  15. friend class SdlInput;
  16. private:
  17. Game *game;
  18. };
  19. /*
  20. * Public SdlInput class
  21. */
  22. SdlInput::SdlInput(Game *game)
  23. {
  24. SDL_Init(SDL_INIT_TIMER);
  25. data = new SdlInputData();
  26. data->game = game;
  27. }
  28. Asset::Group SdlInput::GetGroup()
  29. {
  30. return GROUP_BEFORE;
  31. }
  32. void SdlInput::TickGame(float delta_time)
  33. {
  34. Asset::TickGame(delta_time);
  35. if (data->game->Finished())
  36. destroy = 1;
  37. /* Handle mouse input */
  38. int mx, my;
  39. SDL_GetMouseState(&mx, &my);
  40. data->game->SetMouse(mx * (640 - 32) / 320 - 320, my * (480 - 32) / 240 - 240);
  41. /* Handle keyboard and WM input */
  42. SDL_Event event;
  43. while (SDL_PollEvent(&event))
  44. {
  45. if (event.type == SDL_QUIT)
  46. data->game->Quit();
  47. if (event.type == SDL_KEYDOWN)
  48. {
  49. if (event.key.keysym.sym == SDLK_ESCAPE)
  50. data->game->Quit();
  51. #if 0
  52. else if (event.key.keysym.sym == SDLK_RETURN)
  53. video->FullScreen();
  54. #endif
  55. }
  56. }
  57. }
  58. SdlInput::~SdlInput()
  59. {
  60. delete data;
  61. }