123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- /*!
- * \file include/Game.h
- * \brief Game abstraction
- *
- * \author xythobuz
- */
-
- #ifndef _GAME_H_
- #define _GAME_H_
-
- #include <vector>
-
- #include "Camera.h"
- #include "Entity.h"
- #include "Render.h"
- #include "TombRaider.h"
- #include "World.h"
-
- /*!
- * \brief Game abstraction
- */
- class Game {
- public:
-
- Game();
-
- ~Game();
-
- int initialize();
-
- bool isLoaded();
-
- int loadLevel(const char *level);
-
- void destroy();
-
- void handleAction(ActionEvents action, bool isFinished);
-
- void handleMouseMotion(int xrel, int yrel);
-
- unsigned int getTextureStart();
- unsigned int getTextureOffset();
-
- Entity &getLara();
-
- private:
-
- void processPakSounds();
- void processTextures();
- void processSprites();
- void processMoveables();
- void processMoveable(int index, int i, int object_id);
- void processModels();
- void processRooms();
-
- char *mName;
- bool mLoaded;
-
- TombRaider mTombRaider;
-
- unsigned int mTextureStart;
- unsigned int mTextureOffset;
-
- int mLara;
- };
-
- Game &getGame();
-
- #endif
|