Open Source Tomb Raider Engine
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Game.h 1.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. /*!
  2. * \file include/Game.h
  3. * \brief Game abstraction
  4. *
  5. * \author xythobuz
  6. */
  7. #ifndef _GAME_H_
  8. #define _GAME_H_
  9. #include <vector>
  10. #include "Camera.h"
  11. #include "global.h"
  12. #include "Render.h"
  13. #include "TombRaider.h"
  14. #include "World.h"
  15. /*!
  16. * \brief Game abstraction
  17. */
  18. class Game {
  19. public:
  20. Game();
  21. ~Game();
  22. int initialize();
  23. bool isLoaded();
  24. int loadLevel(const char *level);
  25. void destroy();
  26. void handleAction(ActionEvents action, bool isFinished);
  27. void handleMouseMotion(int xrel, int yrel);
  28. unsigned int getTextureStart();
  29. unsigned int getTextureOffset();
  30. //! \fixme should be private
  31. entity_t *mLara;
  32. private:
  33. void processPakSounds();
  34. void processTextures();
  35. void processSprites();
  36. void processMoveables();
  37. void processMoveable(int index, int i, int *ent,
  38. std::vector<skeletal_model_t *> &cache2,
  39. std::vector<unsigned int> &cache, int object_id);
  40. void processModels();
  41. void processRooms();
  42. void setupTextureColor(texture_tri_t *r_tri, float *colorf);
  43. char *mName;
  44. bool mLoaded;
  45. TombRaider mTombRaider;
  46. unsigned int mTextureStart;
  47. unsigned int mTextureOffset;
  48. };
  49. #endif