Last change
on this file since 6656 was
6600,
checked in by bensch, 19 years ago
|
TRUNK: merged the avi_play branche again
|
File size:
775 bytes
|
Rev | Line | |
---|
[6488] | 1 | /*! |
---|
| 2 | * @file movie_entity.h |
---|
| 3 | * Definition of a Movie Screen |
---|
| 4 | */ |
---|
| 5 | |
---|
| 6 | #ifndef _MOVIE_ENTITY_H |
---|
| 7 | #define _MOVIE_ENTITY_H |
---|
| 8 | |
---|
| 9 | #include "world_entity.h" |
---|
| 10 | |
---|
| 11 | |
---|
| 12 | class MediaContainer; |
---|
| 13 | |
---|
| 14 | class MovieEntity : public WorldEntity |
---|
| 15 | { |
---|
| 16 | private: |
---|
[6507] | 17 | MediaContainer* media_container; |
---|
[6488] | 18 | |
---|
| 19 | int counter; |
---|
| 20 | float timer; |
---|
| 21 | float fps; |
---|
| 22 | |
---|
[6508] | 23 | float axis; |
---|
| 24 | float rotation; |
---|
| 25 | float height; |
---|
| 26 | float width; |
---|
| 27 | |
---|
[6488] | 28 | public: |
---|
[6489] | 29 | MovieEntity (const TiXmlElement* root = NULL); |
---|
[6488] | 30 | ~MovieEntity (); |
---|
| 31 | |
---|
| 32 | virtual void draw () const; |
---|
| 33 | virtual void tick (float time); |
---|
[6508] | 34 | |
---|
[6532] | 35 | virtual void loadParams(const TiXmlElement* root); |
---|
[6508] | 36 | |
---|
[6488] | 37 | void loadMovie(const char* filename); |
---|
[6508] | 38 | void setAxis(float axis); |
---|
| 39 | void setRotation(float rotation); |
---|
| 40 | void setSize(float width, float height); |
---|
[6488] | 41 | |
---|
| 42 | }; |
---|
| 43 | |
---|
[6507] | 44 | #endif /* _MOVIE_ENTITY_H */ |
---|
Note: See
TracBrowser
for help on using the repository browser.