From e17fdb5aaba0c4a4482367282fdc1df56f4b6115 Mon Sep 17 00:00:00 2001 From: Paul Gilbert Date: Sun, 2 Mar 2014 11:41:46 -0500 Subject: MADS: Actually added new animation files --- engines/mads/animation.h | 55 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 55 insertions(+) create mode 100644 engines/mads/animation.h (limited to 'engines/mads/animation.h') 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 */ -- cgit v1.2.3