aboutsummaryrefslogtreecommitdiff
path: root/engines/mohawk/video.h
diff options
context:
space:
mode:
authorBastien Bouclet2017-02-20 18:02:57 +0100
committerEugene Sandulenko2017-07-03 08:50:10 +0200
commitf977b5712328133b638c33992d4e111624d1881d (patch)
treec8480f6b0f9f3f2471f44fa09c894015fdc49ba1 /engines/mohawk/video.h
parent9153393219b398ce5a7a8122d9af38e32e128059 (diff)
downloadscummvm-rg350-f977b5712328133b638c33992d4e111624d1881d.tar.gz
scummvm-rg350-f977b5712328133b638c33992d4e111624d1881d.tar.bz2
scummvm-rg350-f977b5712328133b638c33992d4e111624d1881d.zip
MOHAWK: Rewrite the Riven movie manager
Diffstat (limited to 'engines/mohawk/video.h')
-rw-r--r--engines/mohawk/video.h23
1 files changed, 0 insertions, 23 deletions
diff --git a/engines/mohawk/video.h b/engines/mohawk/video.h
index c3d04ea58c..c59c4af96a 100644
--- a/engines/mohawk/video.h
+++ b/engines/mohawk/video.h
@@ -39,18 +39,6 @@ namespace Mohawk {
class MohawkEngine;
-struct MLSTRecord {
- uint16 index;
- uint16 movieID;
- uint16 code;
- uint16 left;
- uint16 top;
- uint16 u0[3];
- uint16 loop;
- uint16 volume;
- uint16 u1;
-};
-
/**
* A video monitored by the VideoManager
*/
@@ -317,14 +305,6 @@ public:
void stopVideos();
bool isVideoPlaying();
- // Riven-related functions
- void activateMLST(const MLSTRecord &mlst);
- void clearMLST();
- void disableAllMovies();
- VideoEntryPtr playMovieRiven(uint16 id);
- void playMovieBlockingRiven(uint16 id);
- VideoEntryPtr findVideoRiven(uint16 id);
- void stopMovieRiven(uint16 id);
void waitUntilMovieEnds(const VideoEntryPtr &video);
// Handle functions
@@ -337,9 +317,6 @@ public:
private:
MohawkEngine *_vm;
- // Riven-related variables
- Common::Array<MLSTRecord> _mlstRecords;
-
// Keep tabs on any videos playing
typedef Common::List<VideoEntryPtr> VideoList;
VideoList _videos;