2009-12-29 23:18:24 +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$
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef MOHAWK_GRAPHICS_H
|
|
|
|
#define MOHAWK_GRAPHICS_H
|
|
|
|
|
|
|
|
#include "mohawk/bitmap.h"
|
|
|
|
|
|
|
|
#include "common/file.h"
|
2010-11-19 21:25:36 +00:00
|
|
|
#include "common/hashmap.h"
|
2010-05-24 17:18:09 +00:00
|
|
|
#include "graphics/pict.h"
|
2011-01-18 16:18:10 +00:00
|
|
|
|
|
|
|
namespace Graphics {
|
|
|
|
|
|
|
|
class JPEG;
|
|
|
|
|
|
|
|
}
|
2009-12-29 23:18:24 +00:00
|
|
|
|
|
|
|
namespace Mohawk {
|
|
|
|
|
2010-12-02 21:25:15 +00:00
|
|
|
class MohawkEngine;
|
2009-12-29 23:18:24 +00:00
|
|
|
class MohawkEngine_Myst;
|
|
|
|
class MohawkEngine_Riven;
|
2010-11-30 09:04:47 +00:00
|
|
|
class MohawkEngine_LivingBooks;
|
2011-01-20 21:35:00 +00:00
|
|
|
class MohawkEngine_CSTime;
|
2009-12-29 23:18:24 +00:00
|
|
|
class MohawkBitmap;
|
|
|
|
class MystBitmap;
|
|
|
|
|
2010-11-29 20:55:11 +00:00
|
|
|
enum RectState{
|
|
|
|
kRectEnabled,
|
|
|
|
kRectDisabled,
|
|
|
|
kRectUnreachable
|
|
|
|
};
|
|
|
|
|
2010-11-25 02:59:56 +00:00
|
|
|
class MohawkSurface {
|
2009-12-29 23:18:24 +00:00
|
|
|
public:
|
2010-11-25 02:59:56 +00:00
|
|
|
MohawkSurface();
|
|
|
|
MohawkSurface(Graphics::Surface *surface, byte *palette = NULL, int offsetX = 0, int offsetY = 0);
|
|
|
|
~MohawkSurface();
|
|
|
|
|
|
|
|
// getSurface() returns the surface in the current format
|
|
|
|
// This will be the initial format unless convertToTrueColor() is called
|
|
|
|
Graphics::Surface *getSurface() const { return _surface; }
|
|
|
|
byte *getPalette() const { return _palette; }
|
|
|
|
|
|
|
|
// Convert the 8bpp image to the current screen format
|
|
|
|
// Does nothing if _surface is already >8bpp
|
|
|
|
void convertToTrueColor();
|
|
|
|
|
|
|
|
// Functions for OldMohawkBitmap offsets
|
|
|
|
// They both default to 0
|
|
|
|
int getOffsetX() const { return _offsetX; }
|
|
|
|
int getOffsetY() const { return _offsetY; }
|
|
|
|
void setOffsetX(int x) { _offsetX = x; }
|
|
|
|
void setOffsetY(int y) { _offsetY = y; }
|
|
|
|
|
|
|
|
private:
|
2009-12-29 23:18:24 +00:00
|
|
|
Graphics::Surface *_surface;
|
|
|
|
byte *_palette;
|
2010-11-25 02:59:56 +00:00
|
|
|
int _offsetX, _offsetY;
|
2009-12-29 23:18:24 +00:00
|
|
|
};
|
|
|
|
|
2010-11-19 21:25:36 +00:00
|
|
|
class GraphicsManager {
|
|
|
|
public:
|
|
|
|
GraphicsManager();
|
|
|
|
virtual ~GraphicsManager();
|
|
|
|
|
|
|
|
// Free all surfaces in the cache
|
|
|
|
void clearCache();
|
|
|
|
|
2010-12-02 21:25:15 +00:00
|
|
|
void preloadImage(uint16 image);
|
|
|
|
virtual void setPalette(uint16 id);
|
|
|
|
void copyAnimImageToScreen(uint16 image, int left = 0, int top = 0);
|
|
|
|
void copyAnimImageSectionToScreen(uint16 image, Common::Rect src, Common::Rect dest);
|
2010-12-25 19:52:54 +00:00
|
|
|
void copyAnimSubImageToScreen(uint16 image, uint16 subimage, int left = 0, int top = 0);
|
2010-12-02 21:25:15 +00:00
|
|
|
|
2011-01-19 20:53:28 +00:00
|
|
|
void getSubImageSize(uint16 image, uint16 subimage, uint16 &width, uint16 &height);
|
|
|
|
|
2010-11-19 21:25:36 +00:00
|
|
|
protected:
|
2010-12-25 19:52:54 +00:00
|
|
|
void copyAnimImageSectionToScreen(MohawkSurface *image, Common::Rect src, Common::Rect dest);
|
|
|
|
|
2010-11-19 21:25:36 +00:00
|
|
|
// findImage will search the cache to find the image.
|
|
|
|
// If not found, it will call decodeImage to get a new one.
|
2010-11-25 02:59:56 +00:00
|
|
|
MohawkSurface *findImage(uint16 id);
|
2010-11-19 21:25:36 +00:00
|
|
|
|
|
|
|
// decodeImage will always return a new image.
|
2010-11-25 02:59:56 +00:00
|
|
|
virtual MohawkSurface *decodeImage(uint16 id) = 0;
|
2010-12-25 19:52:54 +00:00
|
|
|
virtual Common::Array<MohawkSurface *> decodeImages(uint16 id);
|
2010-11-19 21:25:36 +00:00
|
|
|
|
2010-12-02 21:25:15 +00:00
|
|
|
virtual MohawkEngine *getVM() = 0;
|
|
|
|
|
2010-11-19 21:25:36 +00:00
|
|
|
private:
|
|
|
|
// An image cache that stores images until clearCache() is called
|
2010-11-25 02:59:56 +00:00
|
|
|
Common::HashMap<uint16, MohawkSurface*> _cache;
|
2010-12-25 19:52:54 +00:00
|
|
|
Common::HashMap<uint16, Common::Array<MohawkSurface*> > _subImageCache;
|
2010-11-19 21:25:36 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class MystGraphics : public GraphicsManager {
|
2009-12-29 23:18:24 +00:00
|
|
|
public:
|
|
|
|
MystGraphics(MohawkEngine_Myst*);
|
|
|
|
~MystGraphics();
|
2010-01-25 01:39:44 +00:00
|
|
|
|
2009-12-29 23:18:24 +00:00
|
|
|
void loadExternalPictureFile(uint16 stack);
|
|
|
|
void copyImageSectionToScreen(uint16 image, Common::Rect src, Common::Rect dest);
|
2010-12-14 19:11:16 +00:00
|
|
|
void copyImageSectionToBackBuffer(uint16 image, Common::Rect src, Common::Rect dest);
|
2009-12-29 23:18:24 +00:00
|
|
|
void copyImageToScreen(uint16 image, Common::Rect dest);
|
2010-12-14 19:11:16 +00:00
|
|
|
void copyImageToBackBuffer(uint16 image, Common::Rect dest);
|
2010-12-17 11:31:08 +00:00
|
|
|
void copyBackBufferToScreen(Common::Rect r);
|
2010-11-29 21:03:02 +00:00
|
|
|
void runTransition(uint16 type, Common::Rect rect, uint16 steps, uint16 delay);
|
2010-11-29 20:55:11 +00:00
|
|
|
void drawRect(Common::Rect rect, RectState state);
|
2010-12-12 18:41:15 +00:00
|
|
|
void drawLine(const Common::Point &p1, const Common::Point &p2, uint32 color);
|
2010-11-19 21:25:36 +00:00
|
|
|
|
|
|
|
protected:
|
2010-11-25 02:59:56 +00:00
|
|
|
MohawkSurface *decodeImage(uint16 id);
|
2010-12-02 21:25:15 +00:00
|
|
|
MohawkEngine *getVM() { return (MohawkEngine *)_vm; }
|
2010-11-19 21:25:36 +00:00
|
|
|
|
2009-12-29 23:18:24 +00:00
|
|
|
private:
|
|
|
|
MohawkEngine_Myst *_vm;
|
|
|
|
MystBitmap *_bmpDecoder;
|
2010-05-24 17:18:09 +00:00
|
|
|
Graphics::PictDecoder *_pictDecoder;
|
2011-01-18 16:18:10 +00:00
|
|
|
Graphics::JPEG *_jpegDecoder;
|
2010-01-25 01:39:44 +00:00
|
|
|
|
2009-12-29 23:18:24 +00:00
|
|
|
struct PictureFile {
|
|
|
|
uint32 pictureCount;
|
|
|
|
struct PictureEntry {
|
|
|
|
uint32 offset;
|
|
|
|
uint32 size;
|
|
|
|
uint16 id;
|
|
|
|
uint16 type;
|
|
|
|
uint16 width;
|
|
|
|
uint16 height;
|
2010-08-19 17:33:10 +00:00
|
|
|
} *entries;
|
2009-12-29 23:18:24 +00:00
|
|
|
|
|
|
|
Common::File picFile;
|
|
|
|
} _pictureFile;
|
2010-11-17 19:58:19 +00:00
|
|
|
|
2010-12-14 19:11:16 +00:00
|
|
|
Graphics::Surface *_backBuffer;
|
2010-11-17 19:58:19 +00:00
|
|
|
Graphics::PixelFormat _pixelFormat;
|
2010-12-17 14:36:32 +00:00
|
|
|
Common::Rect _viewport;
|
2009-12-29 23:18:24 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct SFXERecord {
|
|
|
|
// Record values
|
|
|
|
uint16 frameCount;
|
|
|
|
Common::Rect rect;
|
|
|
|
uint16 speed;
|
|
|
|
Common::Array<Common::SeekableReadStream*> frameScripts;
|
2010-01-25 01:39:44 +00:00
|
|
|
|
2009-12-29 23:18:24 +00:00
|
|
|
// Cur frame
|
|
|
|
uint16 curFrame;
|
|
|
|
uint32 lastFrameTime;
|
|
|
|
};
|
|
|
|
|
2010-11-19 21:25:36 +00:00
|
|
|
class RivenGraphics : public GraphicsManager {
|
2009-12-29 23:18:24 +00:00
|
|
|
public:
|
|
|
|
RivenGraphics(MohawkEngine_Riven *vm);
|
|
|
|
~RivenGraphics();
|
2010-01-25 01:39:44 +00:00
|
|
|
|
2009-12-29 23:18:24 +00:00
|
|
|
void copyImageToScreen(uint16, uint32, uint32, uint32, uint32);
|
2011-01-11 19:23:24 +00:00
|
|
|
void updateScreen(Common::Rect updateRect = Common::Rect(0, 0, 608, 392));
|
2009-12-29 23:18:24 +00:00
|
|
|
bool _updatesEnabled;
|
|
|
|
Common::Array<uint16> _activatedPLSTs;
|
|
|
|
void drawPLST(uint16 x);
|
|
|
|
void drawRect(Common::Rect rect, bool active);
|
2010-08-19 17:33:10 +00:00
|
|
|
void drawImageRect(uint16 id, Common::Rect srcRect, Common::Rect dstRect);
|
2010-09-09 17:27:02 +00:00
|
|
|
void drawExtrasImage(uint16 id, Common::Rect dstRect);
|
2009-12-29 23:18:24 +00:00
|
|
|
|
|
|
|
// Water Effect
|
|
|
|
void scheduleWaterEffect(uint16);
|
|
|
|
void clearWaterEffects();
|
|
|
|
bool runScheduledWaterEffects();
|
2010-01-25 01:39:44 +00:00
|
|
|
|
2009-12-29 23:18:24 +00:00
|
|
|
// Transitions
|
|
|
|
void scheduleTransition(uint16 id, Common::Rect rect = Common::Rect(0, 0, 608, 392));
|
|
|
|
void runScheduledTransition();
|
2010-01-25 01:39:44 +00:00
|
|
|
|
2009-12-29 23:18:24 +00:00
|
|
|
// Inventory
|
|
|
|
void showInventory();
|
|
|
|
void hideInventory();
|
|
|
|
|
2010-11-19 21:25:36 +00:00
|
|
|
protected:
|
2010-11-25 02:59:56 +00:00
|
|
|
MohawkSurface *decodeImage(uint16 id);
|
2010-12-02 21:25:15 +00:00
|
|
|
MohawkEngine *getVM() { return (MohawkEngine *)_vm; }
|
2010-11-19 21:25:36 +00:00
|
|
|
|
2009-12-29 23:18:24 +00:00
|
|
|
private:
|
|
|
|
MohawkEngine_Riven *_vm;
|
|
|
|
MohawkBitmap *_bitmapDecoder;
|
|
|
|
|
|
|
|
// Water Effects
|
|
|
|
Common::Array<SFXERecord> _waterEffects;
|
2010-01-25 01:39:44 +00:00
|
|
|
|
2009-12-29 23:18:24 +00:00
|
|
|
// Transitions
|
|
|
|
int16 _scheduledTransition;
|
|
|
|
Common::Rect _transitionRect;
|
2010-01-25 01:39:44 +00:00
|
|
|
|
2009-12-29 23:18:24 +00:00
|
|
|
// Inventory
|
|
|
|
void clearInventoryArea();
|
2010-04-19 20:28:36 +00:00
|
|
|
void drawInventoryImage(uint16 id, const Common::Rect *rect);
|
2009-12-29 23:18:24 +00:00
|
|
|
bool _inventoryDrawn;
|
2010-01-25 01:39:44 +00:00
|
|
|
|
2009-12-29 23:18:24 +00:00
|
|
|
// Screen Related
|
|
|
|
Graphics::Surface *_mainScreen;
|
|
|
|
bool _dirtyScreen;
|
|
|
|
Graphics::PixelFormat _pixelFormat;
|
|
|
|
};
|
|
|
|
|
2010-11-19 21:25:36 +00:00
|
|
|
class LBGraphics : public GraphicsManager {
|
2009-12-29 23:18:24 +00:00
|
|
|
public:
|
2010-11-28 22:55:15 +00:00
|
|
|
LBGraphics(MohawkEngine_LivingBooks *vm, uint16 width, uint16 height);
|
2009-12-29 23:18:24 +00:00
|
|
|
~LBGraphics();
|
|
|
|
|
|
|
|
void setPalette(uint16 id);
|
2010-12-02 21:25:15 +00:00
|
|
|
void copyOffsetAnimImageToScreen(uint16 image, int left = 0, int top = 0);
|
2010-11-28 22:55:15 +00:00
|
|
|
bool imageIsTransparentAt(uint16 image, bool useOffsets, int x, int y);
|
2009-12-29 23:18:24 +00:00
|
|
|
|
2010-11-19 21:25:36 +00:00
|
|
|
protected:
|
2010-11-25 02:59:56 +00:00
|
|
|
MohawkSurface *decodeImage(uint16 id);
|
2010-12-02 21:25:15 +00:00
|
|
|
MohawkEngine *getVM() { return (MohawkEngine *)_vm; }
|
2010-11-19 21:25:36 +00:00
|
|
|
|
2009-12-29 23:18:24 +00:00
|
|
|
private:
|
|
|
|
MohawkBitmap *_bmpDecoder;
|
|
|
|
MohawkEngine_LivingBooks *_vm;
|
|
|
|
};
|
|
|
|
|
2011-01-20 21:35:00 +00:00
|
|
|
class CSTimeGraphics : public GraphicsManager {
|
|
|
|
public:
|
|
|
|
CSTimeGraphics(MohawkEngine_CSTime *vm);
|
|
|
|
~CSTimeGraphics();
|
|
|
|
|
|
|
|
void drawRect(Common::Rect rect, byte color);
|
|
|
|
|
|
|
|
protected:
|
|
|
|
MohawkSurface *decodeImage(uint16 id);
|
|
|
|
Common::Array<MohawkSurface *> decodeImages(uint16 id);
|
|
|
|
MohawkEngine *getVM() { return (MohawkEngine *)_vm; }
|
|
|
|
|
|
|
|
private:
|
|
|
|
MohawkBitmap *_bmpDecoder;
|
|
|
|
MohawkEngine_CSTime *_vm;
|
|
|
|
};
|
|
|
|
|
2009-12-29 23:18:24 +00:00
|
|
|
} // End of namespace Mohawk
|
|
|
|
|
|
|
|
#endif
|