2012-09-08 11:43:33 +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.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef HOPKINS_GRAPHICS_H
|
|
|
|
#define HOPKINS_GRAPHICS_H
|
|
|
|
|
|
|
|
#include "common/scummsys.h"
|
2013-03-02 22:30:42 +00:00
|
|
|
#include "common/array.h"
|
2012-09-08 11:43:33 +00:00
|
|
|
#include "common/endian.h"
|
2012-09-19 11:34:23 +00:00
|
|
|
#include "common/rect.h"
|
2012-09-08 11:43:33 +00:00
|
|
|
#include "common/str.h"
|
2012-09-08 14:12:27 +00:00
|
|
|
#include "graphics/surface.h"
|
2012-09-08 11:43:33 +00:00
|
|
|
|
|
|
|
namespace Hopkins {
|
|
|
|
|
2013-02-25 03:03:38 +00:00
|
|
|
#define DIRTY_RECTS_SIZE 250
|
2012-09-09 09:55:05 +00:00
|
|
|
#define PALETTE_SIZE 256
|
2012-09-10 10:26:24 +00:00
|
|
|
#define PALETTE_BLOCK_SIZE (PALETTE_SIZE * 3)
|
2012-09-15 11:42:20 +00:00
|
|
|
#define PALETTE_EXT_BLOCK_SIZE 800
|
2012-11-16 07:32:40 +00:00
|
|
|
static const byte kSetOffset = 251;
|
|
|
|
static const byte kByteStop = 252;
|
|
|
|
static const byte k8bVal = 253;
|
|
|
|
static const byte k16bVal = 254;
|
2012-09-09 09:55:05 +00:00
|
|
|
|
2012-09-08 13:43:35 +00:00
|
|
|
struct RGB8 {
|
|
|
|
byte r;
|
|
|
|
byte g;
|
|
|
|
byte b;
|
|
|
|
};
|
|
|
|
|
2012-09-19 11:34:23 +00:00
|
|
|
class HopkinsEngine;
|
|
|
|
|
2012-09-08 13:43:35 +00:00
|
|
|
class GraphicsManager {
|
2012-09-09 09:55:05 +00:00
|
|
|
private:
|
2012-09-19 11:34:23 +00:00
|
|
|
HopkinsEngine *_vm;
|
|
|
|
|
2012-12-19 01:15:32 +00:00
|
|
|
int _lockCounter;
|
2013-01-20 10:28:39 +00:00
|
|
|
bool _initGraphicsFl;
|
|
|
|
int _screenWidth;
|
|
|
|
int _screenHeight;
|
2013-02-25 03:03:38 +00:00
|
|
|
byte *_videoPtr;
|
2013-02-07 07:44:22 +00:00
|
|
|
int _width;
|
|
|
|
int _posXClipped, _posYClipped;
|
|
|
|
bool _clipFl;
|
|
|
|
int _specialWidth;
|
|
|
|
|
2012-09-13 11:08:54 +00:00
|
|
|
byte SD_PIXELS[PALETTE_SIZE * 2];
|
2013-03-19 07:05:37 +00:00
|
|
|
int _enlargedX, _enlargedY;
|
|
|
|
bool _enlargedXFl, _enlargedYFl;
|
2013-02-07 07:44:22 +00:00
|
|
|
int clip_x1, clip_y1;
|
2013-03-19 07:05:37 +00:00
|
|
|
int _reduceX, _reducedY;
|
|
|
|
int _zoomOutFactor;
|
2013-02-07 07:44:22 +00:00
|
|
|
|
|
|
|
void loadScreen(const Common::String &file);
|
|
|
|
void loadPCX640(byte *surface, const Common::String &file, byte *palette, bool typeFlag);
|
|
|
|
void loadPCX320(byte *surface, const Common::String &file, byte *palette);
|
|
|
|
void fadeIn(const byte *palette, int step, const byte *surface);
|
|
|
|
void fadeOut(const byte *palette, int step, const byte *surface);
|
|
|
|
void changePalette(const byte *palette);
|
|
|
|
uint16 mapRGB(byte r, byte g, byte b);
|
|
|
|
|
|
|
|
void Trans_bloc(byte *destP, const byte *srcP, int count, int minThreshold, int maxThreshold);
|
|
|
|
void Copy_Vga16(const byte *surface, int xp, int yp, int width, int height, int destX, int destY);
|
|
|
|
void copy16bFromSurfaceScaleX2(const byte *surface);
|
|
|
|
public:
|
2012-12-19 07:00:22 +00:00
|
|
|
int _lineNbr;
|
2012-12-23 19:36:08 +00:00
|
|
|
byte _colorTable[PALETTE_EXT_BLOCK_SIZE];
|
2012-12-23 18:08:23 +00:00
|
|
|
byte _palette[PALETTE_EXT_BLOCK_SIZE];
|
2012-12-23 19:36:08 +00:00
|
|
|
byte _oldPalette[PALETTE_EXT_BLOCK_SIZE];
|
2012-12-19 01:15:32 +00:00
|
|
|
byte *_vesaScreen;
|
|
|
|
byte *_vesaBuffer;
|
2013-02-25 03:03:38 +00:00
|
|
|
byte *_screenBuffer;
|
2013-01-01 12:53:07 +00:00
|
|
|
int _scrollOffset;
|
2013-01-19 23:56:19 +00:00
|
|
|
int _scrollPosX;
|
2013-01-01 20:03:24 +00:00
|
|
|
bool _largeScreenFl;
|
2013-01-19 23:56:19 +00:00
|
|
|
int _oldScrollPosX;
|
2012-12-30 17:51:47 +00:00
|
|
|
int _scrollSpeed;
|
2012-12-19 07:00:22 +00:00
|
|
|
int _lineNbr2;
|
2013-01-20 10:28:39 +00:00
|
|
|
int _minX, _minY;
|
|
|
|
int _maxX, _maxY;
|
2012-12-26 21:02:48 +00:00
|
|
|
bool _noFadingFl;
|
2013-02-07 07:44:22 +00:00
|
|
|
int _scrollStatus;
|
|
|
|
bool _skipVideoLockFl;
|
|
|
|
int _fadeDefaultSpeed;
|
|
|
|
|
2013-03-02 23:56:14 +00:00
|
|
|
/**
|
|
|
|
* The _dirtyRects list contains paletted game areas that need to be redrawn.
|
|
|
|
* The _dstrect array is the list of areas of the screen that ScummVM needs to be redrawn.
|
|
|
|
* Some areas, such as the animation managers, skip the _dirtyRects and use _dstrec directly.
|
|
|
|
*/
|
2013-03-02 22:30:42 +00:00
|
|
|
Common::Array<Common::Rect> _dirtyRects;
|
2013-03-02 23:56:14 +00:00
|
|
|
Common::Array<Common::Rect> _refreshRects;
|
2013-03-03 03:36:38 +00:00
|
|
|
bool _showDirtyRects;
|
2013-03-02 23:56:14 +00:00
|
|
|
|
2013-02-07 07:44:22 +00:00
|
|
|
int WinScan;
|
|
|
|
byte *PAL_PIXELS;
|
|
|
|
bool MANU_SCROLL;
|
|
|
|
int FADE_LINUX;
|
2012-09-08 13:43:35 +00:00
|
|
|
public:
|
|
|
|
GraphicsManager();
|
2012-09-08 14:12:27 +00:00
|
|
|
~GraphicsManager();
|
2012-09-08 13:43:35 +00:00
|
|
|
|
2013-02-07 07:44:22 +00:00
|
|
|
void setParent(HopkinsEngine *vm);
|
2012-12-19 01:15:32 +00:00
|
|
|
void lockScreen();
|
|
|
|
void unlockScreen();
|
2013-02-07 07:44:22 +00:00
|
|
|
void clearPalette();
|
2012-12-19 01:15:32 +00:00
|
|
|
void clearScreen();
|
2013-03-06 14:46:05 +00:00
|
|
|
void clearVesaScreen();
|
2013-03-03 01:40:03 +00:00
|
|
|
void resetDirtyRects();
|
2013-03-02 23:56:14 +00:00
|
|
|
void resetRefreshRects();
|
2013-02-26 03:00:36 +00:00
|
|
|
void addDirtyRect(int x1, int y1, int x2, int y2);
|
2013-03-06 14:46:05 +00:00
|
|
|
void addDirtyRect(const Common::Rect &r) { addDirtyRect(r.left, r.top, r.right, r.bottom); }
|
2013-03-09 14:44:46 +00:00
|
|
|
void addRefreshRect(int x1, int y1, int x2, int y2);
|
2013-03-10 03:04:41 +00:00
|
|
|
void addRectToArray(Common::Array<Common::Rect> &rects, const Common::Rect &newRect);
|
2013-03-03 01:40:03 +00:00
|
|
|
void displayDirtyRects();
|
2013-03-02 23:56:14 +00:00
|
|
|
void displayRefreshRects();
|
2013-02-20 00:23:39 +00:00
|
|
|
void copySurface(const byte *surface, int x1, int y1, int width, int height, byte *destSurface, int destX, int destY);
|
2012-12-19 01:15:32 +00:00
|
|
|
void loadImage(const Common::String &file);
|
|
|
|
void loadVgaImage(const Common::String &file);
|
2013-01-03 21:32:22 +00:00
|
|
|
void fadeInLong();
|
2012-12-26 07:27:32 +00:00
|
|
|
void fadeInBreakout();
|
2013-02-07 07:44:22 +00:00
|
|
|
void fadeInDefaultLength(const byte *surface);
|
|
|
|
void fadeInShort();
|
|
|
|
void fadeOutDefaultLength(const byte *surface);
|
2013-03-14 02:58:48 +00:00
|
|
|
void fadeOutBreakout();
|
2013-02-07 07:44:22 +00:00
|
|
|
void fadeOutLong();
|
|
|
|
void fadeOutShort();
|
|
|
|
void fastDisplay(const byte *spriteData, int xp, int yp, int spriteIndex, bool addSegment = true);
|
2013-02-20 07:30:16 +00:00
|
|
|
void copyWinscanVbe3(const byte *srcData, byte *destSurface);
|
|
|
|
void copyWinscanVbe(const byte *srcP, byte *destP);
|
|
|
|
void copyVideoVbe16(const byte *srcData);
|
|
|
|
void copyVideoVbe16a(const byte *srcData);
|
|
|
|
void copySurfaceRect(const byte *srcSurface, byte *destSurface, int xs, int ys, int width, int height);
|
|
|
|
void restoreSurfaceRect(byte *destSurface, const byte *src, int xp, int yp, int width, int height);
|
2013-03-19 21:01:03 +00:00
|
|
|
void displayFont(byte *surface, const byte *spriteData, int xp, int yp, int characterIndex, int color);
|
2013-02-07 07:44:22 +00:00
|
|
|
void drawHorizontalLine(byte *surface, int xp, int yp, uint16 width, byte col);
|
|
|
|
void drawVerticalLine(byte *surface, int xp, int yp, int height, byte col);
|
|
|
|
void initColorTable(int minIndex, int maxIndex, byte *palette);
|
|
|
|
void setGraphicalMode(int width, int height);
|
2013-01-07 07:33:55 +00:00
|
|
|
void setPaletteVGA256(const byte *palette);
|
|
|
|
void setPaletteVGA256WithRefresh(const byte *palette, const byte *surface);
|
2013-02-07 07:44:22 +00:00
|
|
|
void scrollScreen(int amount);
|
|
|
|
int zoomIn(int v, int percentage);
|
|
|
|
int zoomOut(int v, int percentage);
|
2013-02-19 13:34:43 +00:00
|
|
|
void initScreen(const Common::String &file, int mode, bool initializeScreen);
|
2013-02-20 00:23:39 +00:00
|
|
|
void displayAllBob();
|
|
|
|
void endDisplayBob();
|
2013-02-25 22:40:19 +00:00
|
|
|
void updateScreen();
|
|
|
|
void reduceScreenPart(const byte *srcSruface, byte *destSurface, int xp, int yp, int width, int height, int zoom);
|
2013-02-07 07:44:22 +00:00
|
|
|
|
2012-09-15 03:23:46 +00:00
|
|
|
void SETCOLOR3(int palIndex, int r, int g, int b);
|
2012-09-28 23:33:42 +00:00
|
|
|
void SETCOLOR4(int palIndex, int r, int g, int b);
|
2013-02-07 07:44:22 +00:00
|
|
|
void AFFICHE_SPEEDVGA(const byte *objectData, int xp, int yp, int idx, bool addSegment = true);
|
2013-01-21 21:25:12 +00:00
|
|
|
void Affiche_Perfect(byte *surface, const byte *srcData, int xp300, int yp300, int frameIndex, int zoom1, int zoom2, bool flipFl);
|
2013-02-02 18:20:58 +00:00
|
|
|
void Copy_Mem(const byte *srcSurface, int x1, int y1, uint16 width, int height, byte *destSurface, int destX, int destY);
|
2013-02-25 22:40:19 +00:00
|
|
|
void setScreenWidth(int pitch);
|
2013-02-07 07:44:22 +00:00
|
|
|
void Sprite_Vesa(byte *surface, const byte *spriteData, int xp, int yp, int spriteIndex);
|
|
|
|
void m_scroll16(const byte *surface, int xs, int ys, int width, int height, int destX, int destY);
|
|
|
|
void m_scroll16A(const byte *surface, int xs, int ys, int width, int height, int destX, int destY);
|
|
|
|
void Trans_bloc2(byte *surface, byte *col, int size);
|
2013-01-07 11:24:04 +00:00
|
|
|
void NB_SCREEN(bool initPalette);
|
2012-09-09 09:55:05 +00:00
|
|
|
};
|
|
|
|
|
2012-09-08 11:43:33 +00:00
|
|
|
} // End of namespace Hopkins
|
|
|
|
|
|
|
|
#endif /* HOPKINS_GRAPHICS_H */
|