aboutsummaryrefslogtreecommitdiff
path: root/engines/titanic/support/avi_surface.h
diff options
context:
space:
mode:
authorPaul Gilbert2016-07-04 21:18:04 -0400
committerPaul Gilbert2016-07-15 19:27:23 -0400
commit0b860220fc25d6ba78c7a403913d07561f492a6a (patch)
treeae028a0eff6b368719b94c587b1e0d3b9a16813f /engines/titanic/support/avi_surface.h
parentf99b16f564315be5863de57bd03bb8354673f0c5 (diff)
downloadscummvm-rg350-0b860220fc25d6ba78c7a403913d07561f492a6a.tar.gz
scummvm-rg350-0b860220fc25d6ba78c7a403913d07561f492a6a.tar.bz2
scummvm-rg350-0b860220fc25d6ba78c7a403913d07561f492a6a.zip
TITANIC: Beginnings of AVISurface class
Diffstat (limited to 'engines/titanic/support/avi_surface.h')
-rw-r--r--engines/titanic/support/avi_surface.h57
1 files changed, 57 insertions, 0 deletions
diff --git a/engines/titanic/support/avi_surface.h b/engines/titanic/support/avi_surface.h
new file mode 100644
index 0000000000..248f2c5ab3
--- /dev/null
+++ b/engines/titanic/support/avi_surface.h
@@ -0,0 +1,57 @@
+/* ScummVM - Graphic Adventure Engine
+ *
+ * ScummVM is the legal property of its developers, whose names
+ * are too numerous to list here. Please refer to the COPYRIGHT
+ * file distributed with this source distribution.
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+ *
+ */
+
+#ifndef TITANIC_AVI_SURFACE_H
+#define TITANIC_AVI_SURFACE_H
+
+#include "video/video_decoder.h"
+#include "titanic/core/resource_key.h"
+#include "titanic/support/movie_range_info.h"
+
+namespace Titanic {
+
+class CSoundManager;
+
+class AVISurface {
+private:
+ int _field4;
+ int _field8;
+ int _fieldC;
+ int _field10;
+ int _frame;
+ CMovieRangeInfoList _movieRangeInfo;
+ int _field28;
+ int _field2C;
+ int _field30;
+ int _field34;
+ int _field38;
+ CSoundManager *_soundManager;
+ // TODO: Lots more fields
+public:
+ AVISurface(const CResourceKey &key);
+
+
+};
+
+} // End of namespace Titanic
+
+#endif /* TITANIC_AVI_SURFACE_H */