diff options
author | Paul Gilbert | 2016-06-27 23:48:13 -0400 |
---|---|---|
committer | Paul Gilbert | 2016-07-15 19:25:41 -0400 |
commit | 0715be79269a0830136f76e78da2e893ce2e2ed4 (patch) | |
tree | 03e6aab25e84b9792437d65caf9d072af506768b /engines/titanic/support | |
parent | 4db07ba145f75cdcf65a88b136790abc891b2745 (diff) | |
download | scummvm-rg350-0715be79269a0830136f76e78da2e893ce2e2ed4.tar.gz scummvm-rg350-0715be79269a0830136f76e78da2e893ce2e2ed4.tar.bz2 scummvm-rg350-0715be79269a0830136f76e78da2e893ce2e2ed4.zip |
TITANIC: Added CGameObject text methods
Diffstat (limited to 'engines/titanic/support')
-rw-r--r-- | engines/titanic/support/movie.cpp | 4 | ||||
-rw-r--r-- | engines/titanic/support/movie.h | 10 |
2 files changed, 14 insertions, 0 deletions
diff --git a/engines/titanic/support/movie.cpp b/engines/titanic/support/movie.cpp index cde3b22a8c..27bcb97ae9 100644 --- a/engines/titanic/support/movie.cpp +++ b/engines/titanic/support/movie.cpp @@ -87,6 +87,10 @@ void OSMovie::play(uint startFrame, uint endFrame, int v3, bool v4) { _state = MOVIE_NONE; } +void OSMovie::play(const Rect &rect, int v1, int v2) { + warning("TODO: OSMovie::play 3"); +} + void OSMovie::playClip(const Rect &rect, uint startFrame, uint endFrame) { warning("TODO: OSMovie::playClip"); } diff --git a/engines/titanic/support/movie.h b/engines/titanic/support/movie.h index 61dd4cf61d..da3285547d 100644 --- a/engines/titanic/support/movie.h +++ b/engines/titanic/support/movie.h @@ -60,6 +60,11 @@ public: * Plays the movie */ virtual void play(uint startFrame, uint endFrame, int v3, bool v4) = 0; + + /** + * Plays the movie + */ + virtual void play(const Rect &rect, int v1, int v2) = 0; /** * Plays a sub-section of a movie @@ -124,6 +129,11 @@ public: virtual void play(uint startFrame, uint endFrame, int v3, bool v4); /** + * Plays the movie + */ + virtual void play(const Rect &rect, int v1, int v2); + + /** * Plays a sub-section of a movie */ virtual void playClip(const Rect &rect, uint startFrame, uint endFrame); |