| 1 | /*! | 
|---|
| 2 |  * @file texture.h | 
|---|
| 3 |  * @brief Contains the texture class, that handles the reading of Images into Texutre-files. | 
|---|
| 4 |  */ | 
|---|
| 5 |  | 
|---|
| 6 | #ifndef _TEXTURE_SEQUENCE_H | 
|---|
| 7 | #define _TEXTURE_SEQUENCE_H | 
|---|
| 8 |  | 
|---|
| 9 | #include "texture.h" | 
|---|
| 10 |  | 
|---|
| 11 | #include "glincl.h" | 
|---|
| 12 |  | 
|---|
| 13 | #include <vector> | 
|---|
| 14 | #include <stdarg.h> | 
|---|
| 15 |  | 
|---|
| 16 | /* Forward Declaration */ | 
|---|
| 17 | struct SDL_Surface; | 
|---|
| 18 |  | 
|---|
| 19 | //! A Class, that reads in Textures from different fileformats. | 
|---|
| 20 | class TextureSequence : public Texture | 
|---|
| 21 | { | 
|---|
| 22 |   public: | 
|---|
| 23 |     TextureSequence(unsigned int count = 0, ...); | 
|---|
| 24 |   //  Texture(TEXTURE_TYPE type, int resolution); | 
|---|
| 25 |     virtual ~TextureSequence(); | 
|---|
| 26 |  | 
|---|
| 27 |     bool loadImageSeries(unsigned int count, ...); | 
|---|
| 28 |     bool loadImageSeries(unsigned int count, va_list textureNames); | 
|---|
| 29 |     bool addFrame(const char* image); | 
|---|
| 30 |     bool addFrame(SDL_Surface* surface); | 
|---|
| 31 |     bool addFrame(GLuint texture); | 
|---|
| 32 |  | 
|---|
| 33 |     void clearLists(); | 
|---|
| 34 |  | 
|---|
| 35 |     virtual bool rebuild(); | 
|---|
| 36 |  | 
|---|
| 37 |     /** @returns the count of frames in this sequence */ | 
|---|
| 38 |     inline unsigned int getFrameCount() const { return this->textures.size(); }; | 
|---|
| 39 |  | 
|---|
| 40 |     //void gotoFrame(unsigned int frameNumber); | 
|---|
| 41 |     /** @returns The textureID of the Frame @param frameNumber the n-th frame this texture-series.  */ | 
|---|
| 42 |     inline GLuint getFrameTexture(unsigned int frameNumber) const { return (this->textures.size()>frameNumber)?this->textures[frameNumber]:0; }; | 
|---|
| 43 |     /** @returns The SDL_Surface of the image at Frame @param frameNumber the n-th frame of this image-seriers */ | 
|---|
| 44 |     const SDL_Surface* const getFrameImage(unsigned int frameNumber) const { return (this->images.size()>frameNumber)?this->images[frameNumber]:NULL; }; | 
|---|
| 45 |  | 
|---|
| 46 |   private: | 
|---|
| 47 |     std::vector<GLuint>          textures;            //!< The Texture-ID of opengl from this Texture. | 
|---|
| 48 |     std::vector<SDL_Surface*>    images;              //!< The SDL_Surfce that stores the Texture on it. | 
|---|
| 49 | }; | 
|---|
| 50 |  | 
|---|
| 51 | #endif /* _TEXTURE_SEQUENCE_H */ | 
|---|