2009-10-03 20:49:18 +00:00
|
|
|
/* 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$
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2010-01-31 12:35:15 +00:00
|
|
|
#ifndef SCI_GRAPHICS_PAINT16_H
|
|
|
|
#define SCI_GRAPHICS_PAINT16_H
|
2009-10-04 20:01:21 +00:00
|
|
|
|
2010-01-05 01:22:16 +00:00
|
|
|
#include "sci/graphics/gui.h"
|
2010-02-04 19:22:40 +00:00
|
|
|
#include "sci/graphics/paint.h"
|
2009-10-04 22:43:30 +00:00
|
|
|
|
2009-10-30 17:38:11 +00:00
|
|
|
#include "common/hashmap.h"
|
|
|
|
|
2009-10-03 20:49:18 +00:00
|
|
|
namespace Sci {
|
|
|
|
|
2010-01-31 12:35:15 +00:00
|
|
|
class GfxPorts;
|
2010-02-04 21:04:47 +00:00
|
|
|
class GfxScreen;
|
|
|
|
class GfxPalette;
|
2010-01-05 01:37:57 +00:00
|
|
|
class Font;
|
2009-10-05 07:10:01 +00:00
|
|
|
class SciGuiPicture;
|
2010-02-04 22:30:46 +00:00
|
|
|
class GfxView;
|
2009-10-30 17:38:11 +00:00
|
|
|
|
2010-02-05 15:48:45 +00:00
|
|
|
/**
|
|
|
|
* Paint16 class, handles painting/drawing for SCI16 (SCI0-SCI1.1) games
|
|
|
|
*/
|
2010-02-04 19:22:40 +00:00
|
|
|
class GfxPaint16 : public GfxPaint {
|
2009-10-03 20:49:18 +00:00
|
|
|
public:
|
2010-02-04 21:04:47 +00:00
|
|
|
GfxPaint16(ResourceManager *resMan, SegManager *segMan, Kernel *kernel, GfxCache *cache, GfxPorts *ports, GfxScreen *screen, GfxPalette *palette, GfxTransitions *transitions);
|
2010-01-31 12:35:15 +00:00
|
|
|
~GfxPaint16();
|
2009-10-03 20:49:18 +00:00
|
|
|
|
2010-01-31 21:54:43 +00:00
|
|
|
void init(GfxText16 *text16);
|
2009-10-03 20:49:18 +00:00
|
|
|
|
2010-01-09 14:09:45 +00:00
|
|
|
void setEGAdrawingVisualize(bool state);
|
|
|
|
|
2009-10-07 20:58:33 +00:00
|
|
|
void drawPicture(GuiResourceId pictureId, int16 animationNr, bool mirroredFlag, bool addToFlag, GuiResourceId paletteId);
|
2010-01-07 14:46:29 +00:00
|
|
|
void drawCelAndShow(GuiResourceId viewId, int16 loopNo, int16 celNo, uint16 leftPos, uint16 topPos, byte priority, uint16 paletteNo, uint16 scaleX = 128, uint16 scaleY = 128);
|
|
|
|
void drawCel(GuiResourceId viewId, int16 loopNo, int16 celNo, Common::Rect celRect, byte priority, uint16 paletteNo, uint16 scaleX = 128, uint16 scaleY = 128);
|
2010-02-04 22:17:58 +00:00
|
|
|
void drawCel(GfxView *view, int16 loopNo, int16 celNo, Common::Rect celRect, byte priority, uint16 paletteNo, uint16 scaleX = 128, uint16 scaleY = 128);
|
2010-01-10 09:07:09 +00:00
|
|
|
void drawHiresCelAndShow(GuiResourceId viewId, int16 loopNo, int16 celNo, uint16 leftPos, uint16 topPos, byte priority, uint16 paletteNo, reg_t upscaledHiresHandle, uint16 scaleX = 128, uint16 scaleY = 128);
|
2009-10-03 20:49:18 +00:00
|
|
|
|
2010-01-31 12:35:15 +00:00
|
|
|
void clearScreen(byte color = 255);
|
|
|
|
void invertRect(const Common::Rect &rect);
|
|
|
|
void eraseRect(const Common::Rect &rect);
|
|
|
|
void paintRect(const Common::Rect &rect);
|
|
|
|
void fillRect(const Common::Rect &rect, int16 drawFlags, byte clrPen, byte clrBack = 0, byte bControl = 0);
|
|
|
|
void frameRect(const Common::Rect &rect);
|
2009-10-04 10:46:25 +00:00
|
|
|
|
2010-01-31 12:35:15 +00:00
|
|
|
void bitsShow(const Common::Rect &r);
|
|
|
|
void bitsShowHires(const Common::Rect &rect);
|
|
|
|
reg_t bitsSave(const Common::Rect &rect, byte screenFlags);
|
|
|
|
void bitsGetRect(reg_t memoryHandle, Common::Rect *destRect);
|
|
|
|
void bitsRestore(reg_t memoryHandle);
|
|
|
|
void bitsFree(reg_t memoryHandle);
|
2009-10-30 17:38:11 +00:00
|
|
|
|
2010-02-04 19:22:40 +00:00
|
|
|
void kernelDrawPicture(GuiResourceId pictureId, int16 animationNr, bool animationBlackoutFlag, bool mirroredFlag, bool addToFlag, int16 EGApaletteNo);
|
2010-02-04 20:02:48 +00:00
|
|
|
void kernelDrawCel(GuiResourceId viewId, int16 loopNo, int16 celNo, uint16 leftPos, uint16 topPos, int16 priority, uint16 paletteNo, bool hiresMode, reg_t upscaledHiresHandle);
|
2010-02-04 19:22:40 +00:00
|
|
|
|
2010-02-04 20:18:01 +00:00
|
|
|
void kernelGraphFillBoxForeground(Common::Rect rect);
|
|
|
|
void kernelGraphFillBoxBackground(Common::Rect rect);
|
|
|
|
void kernelGraphFillBox(Common::Rect rect, uint16 colorMask, int16 color, int16 priority, int16 control);
|
|
|
|
void kernelGraphFrameBox(Common::Rect rect, int16 color);
|
|
|
|
void kernelGraphDrawLine(Common::Point startPoint, Common::Point endPoint, int16 color, int16 priority, int16 control);
|
|
|
|
reg_t kernelGraphSaveBox(Common::Rect rect, uint16 flags);
|
|
|
|
reg_t kernelGraphSaveUpscaledHiresBox(Common::Rect rect);
|
|
|
|
void kernelGraphRestoreBox(reg_t handle);
|
|
|
|
void kernelGraphUpdateBox(Common::Rect rect, bool hiresMode);
|
|
|
|
|
2009-10-03 20:49:18 +00:00
|
|
|
private:
|
2009-11-04 13:26:43 +00:00
|
|
|
ResourceManager *_resMan;
|
|
|
|
SegManager *_segMan;
|
|
|
|
Kernel *_kernel;
|
2010-01-31 12:35:15 +00:00
|
|
|
GfxCache *_cache;
|
|
|
|
GfxPorts *_ports;
|
2010-01-31 16:21:11 +00:00
|
|
|
GfxScreen *_screen;
|
|
|
|
GfxPalette *_palette;
|
2010-01-31 21:54:43 +00:00
|
|
|
GfxText16 *_text16;
|
2010-02-04 21:04:47 +00:00
|
|
|
GfxTransitions *_transitions;
|
2009-10-03 20:49:18 +00:00
|
|
|
|
2010-01-09 14:09:45 +00:00
|
|
|
// true means make EGA picture drawing visible
|
|
|
|
bool _EGAdrawingVisualize;
|
2009-10-03 20:49:18 +00:00
|
|
|
};
|
|
|
|
|
2009-10-04 20:01:21 +00:00
|
|
|
} // End of namespace Sci
|
|
|
|
|
|
|
|
#endif
|