aboutsummaryrefslogtreecommitdiff
path: root/engines/made/screenfx.h
diff options
context:
space:
mode:
authorBenjamin Haisch2008-05-14 09:54:15 +0000
committerBenjamin Haisch2008-05-14 09:54:15 +0000
commit0ec51de2721d7b670c997b7a3d1bc53f432d6e6b (patch)
tree3ec87d40623869be3adbb03d85039240f2312a26 /engines/made/screenfx.h
parent97855800b6592cf9c9bc2b010c13cdd07575f5e2 (diff)
downloadscummvm-rg350-0ec51de2721d7b670c997b7a3d1bc53f432d6e6b.tar.gz
scummvm-rg350-0ec51de2721d7b670c997b7a3d1bc53f432d6e6b.tar.bz2
scummvm-rg350-0ec51de2721d7b670c997b7a3d1bc53f432d6e6b.zip
- Added some visual effects (palette fading etc.)
- Moved Screen::getAnimFrameCount directly into o1_GETFRAMECOUNT - Renamed variables/cleanup svn-id: r32104
Diffstat (limited to 'engines/made/screenfx.h')
-rw-r--r--engines/made/screenfx.h63
1 files changed, 63 insertions, 0 deletions
diff --git a/engines/made/screenfx.h b/engines/made/screenfx.h
new file mode 100644
index 0000000000..e1f877b42e
--- /dev/null
+++ b/engines/made/screenfx.h
@@ -0,0 +1,63 @@
+/* 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.
+ *
+ * $URL$
+ * $Id$
+ *
+ */
+
+#ifndef MADE_SCREENFX_H
+#define MADE_SCREENFX_H
+
+#include "common/endian.h"
+#include "common/util.h"
+#include "common/rect.h"
+
+#include "graphics/surface.h"
+
+#include "made/made.h"
+#include "made/screen.h"
+
+namespace Made {
+
+class ScreenEffects {
+public:
+ ScreenEffects(Screen *screen);
+ void run(int16 effectNum, Graphics::Surface *surface, byte *palette, byte *newPalette, int colorCount);
+ void flash(int count, byte *palette, int colorCount);
+private:
+ Screen *_screen;
+ byte _fxPalette[768];
+ static const byte vfxOffsTable[64];
+ static const byte vfxOffsIndexTable[8];
+ const byte *vfxOffsTablePtr;
+ int16 vfxX1, vfxY1, vfxWidth, vfxHeight;
+ void setPalette(byte *palette);
+ void setBlendedPalette(byte *palette, byte *newPalette, int colorCount, int16 value, int16 maxValue);
+ void copyRect(Graphics::Surface *surface, int16 x1, int16 y1, int16 x2, int16 y2);
+ void vfx00(Graphics::Surface *surface, byte *palette, byte *newPalette, int colorCount);
+ void vfx09(Graphics::Surface *surface, byte *palette, byte *newPalette, int colorCount);
+ void vfx14(Graphics::Surface *surface, byte *palette, byte *newPalette, int colorCount);
+ void vfx17(Graphics::Surface *surface, byte *palette, byte *newPalette, int colorCount);
+};
+
+} // End of namespace Made
+
+#endif /* MADE_H */