12345678910111213141516171819202122232425262728293031323334353637383940 |
- /*!
- * \file include/Sprite.h
- * \brief World Sprite
- *
- * \author xythobuz
- */
-
- #ifndef _SPRITE_H_
- #define _SPRITE_H_
-
- #include "TombRaider.h"
-
- class Sprite {
- public:
- Sprite(TombRaider& tr, unsigned int room, unsigned int index);
- Sprite(TombRaider& tr, unsigned int item, unsigned int sequence, unsigned int index);
- void display();
-
- private:
- float vertex[4][3];
- float texel[4][2];
- float pos[3];
- float radius; //!< \fixme yeah, I know (I don't? --xythobuz)
- int texture;
- };
-
- class SpriteSequence {
- public:
- SpriteSequence(TombRaider& tr, unsigned int item, unsigned int sequence);
- ~SpriteSequence();
-
- unsigned long size();
- Sprite& get(unsigned long index);
-
- private:
- std::vector<Sprite*> sprites;
- };
-
- #endif
|