aboutsummaryrefslogtreecommitdiff
path: root/engines/titanic/support/movie_range_info.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/titanic/support/movie_range_info.h')
-rw-r--r--engines/titanic/support/movie_range_info.h20
1 files changed, 13 insertions, 7 deletions
diff --git a/engines/titanic/support/movie_range_info.h b/engines/titanic/support/movie_range_info.h
index be04975cbf..b8186e6f7e 100644
--- a/engines/titanic/support/movie_range_info.h
+++ b/engines/titanic/support/movie_range_info.h
@@ -34,11 +34,11 @@ class CGameObject;
class CMovieRangeInfo : public ListItem {
public:
- int _fieldC;
- int _field10;
- int _frameNumber;
- uint _startFrame;
- uint _endFrame;
+ int _startFrame;
+ int _endFrame;
+ int _initialFrame;
+ bool _isReversed;
+ bool _isFlag1;
CMovieEventList _events;
public:
CMovieRangeInfo();
@@ -60,9 +60,15 @@ public:
*/
void addEvent(CMovieEvent *movieEvent) { _events.push_back(movieEvent); }
- void get1(CMovieEventList &list);
+ /**
+ * Get any movie end events for the range
+ */
+ void getMovieEnd(CMovieEventList &list);
- void get2(CMovieEventList &list, int val);
+ /**
+ * Get any movie frame events for a specified frame number
+ */
+ void getMovieFrame(CMovieEventList &list, int frameNumber);
void process(CGameObject *owner);
};