aboutsummaryrefslogtreecommitdiff
path: root/engines/mads/animation.h
diff options
context:
space:
mode:
authorPaul Gilbert2014-03-02 11:41:46 -0500
committerPaul Gilbert2014-03-02 11:41:46 -0500
commite17fdb5aaba0c4a4482367282fdc1df56f4b6115 (patch)
tree633d0f370e6102d21132840e72123b5af00ce458 /engines/mads/animation.h
parent7912f81f2cef0a3dfad86d1a87d68771c13f7744 (diff)
downloadscummvm-rg350-e17fdb5aaba0c4a4482367282fdc1df56f4b6115.tar.gz
scummvm-rg350-e17fdb5aaba0c4a4482367282fdc1df56f4b6115.tar.bz2
scummvm-rg350-e17fdb5aaba0c4a4482367282fdc1df56f4b6115.zip
MADS: Actually added new animation files
Diffstat (limited to 'engines/mads/animation.h')
-rw-r--r--engines/mads/animation.h55
1 files changed, 55 insertions, 0 deletions
diff --git a/engines/mads/animation.h b/engines/mads/animation.h
new file mode 100644
index 0000000000..cc46143b32
--- /dev/null
+++ b/engines/mads/animation.h
@@ -0,0 +1,55 @@
+/* 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 MADS_ANIMATION_H
+#define MADS_ANIMATION_H
+
+#include "common/scummsys.h"
+#include "common/array.h"
+#include "common/rect.h"
+#include "mads/msurface.h"
+#include "mads/scene_data.h"
+
+namespace MADS {
+
+class MADSEngine;
+class Scene;
+
+class Animation {
+private:
+ MADSEngine *_vm;
+ Scene *_scene;
+protected:
+ Animation(MADSEngine *vm, Scene *scene) : _vm(vm), _scene(scene) {}
+public:
+ static Animation *init(MADSEngine *vm, Scene *scene);
+public:
+ /**
+ * Loads animation data
+ */
+ void load(MSurface *sceneSurface, MSurface *interfaceSurface, int sceneId, int flags,
+ byte *palette, SceneInfo *sceneInfo);
+};
+
+} // End of namespace MADS
+
+#endif /* MADS_ANIMATION_H */