scummvm/engines/gob/video.h
Sven Hesse 3823ae285f Giving Font its own real class
svn-id: r42277
2009-07-09 02:54:10 +00:00

290 lines
8.1 KiB
C++

/* 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 GOB_VIDEO_H
#define GOB_VIDEO_H
#include "common/list.h"
#include "common/rect.h"
#include "common/ptr.h"
#include "gob/gob.h"
namespace Graphics {
class PaletteLUT;
}
namespace Gob {
class Font {
public:
uint8 getCharWidth (uint8 c) const;
uint8 getCharWidth () const;
uint8 getCharHeight() const;
uint16 getCharCount () const;
uint8 getFirstChar () const;
uint8 getLastChar () const;
uint8 getCharSize () const;
bool isMonospaced() const;
const byte *getCharData(uint8 c) const;
Font(const byte *data);
~Font();
private:
const byte *_dataPtr;
const byte *_data;
const uint8 *_charWidths;
int8 _itemWidth;
int8 _itemHeight;
uint8 _startItem;
uint8 _endItem;
int8 _itemSize;
int8 _bitWidth;
};
// Some Surfaces are simultaneous in Draw::spritesArray and discrete
// variables, so if in doubt you should use a SurfaceDescPtr shared
// pointer object to refer to any SurfaceDesc.
class SurfaceDesc {
public:
int16 _vidMode;
int16 getWidth() const { return _width; }
int16 getHeight() const { return _height; }
byte *getVidMem() { return _vidMem; }
const byte *getVidMem() const { return _vidMem; }
bool hasOwnVidMem() const { return _ownVidMem; }
void setVidMem(byte *vidMem);
void resize(int16 width, int16 height);
void swap(SurfaceDesc &surf);
SurfaceDesc(int16 vidMode, int16 width, int16 height, byte *vidMem = 0);
~SurfaceDesc() { if (_ownVidMem) delete[] _vidMem; }
private:
int16 _width;
int16 _height;
byte *_vidMem;
bool _ownVidMem;
};
typedef Common::SharedPtr<SurfaceDesc> SurfaceDescPtr;
class Video {
public:
#define GDR_VERSION 4
#define PRIMARY_SURFACE 0x80
#define RETURN_PRIMARY 0x01
#define DISABLE_SPR_ALLOC 0x20
#define SCUMMVM_CURSOR 0x100
#include "common/pack-start.h" // START STRUCT PACKING
struct Color {
byte red;
byte green;
byte blue;
} PACKED_STRUCT;
#include "common/pack-end.h" // END STRUCT PACKING
struct PalDesc {
Color *vgaPal;
int16 *unused1;
int16 *unused2;
PalDesc() : vgaPal(0), unused1(0), unused2(0) {}
};
bool _doRangeClamp;
int16 _surfWidth;
int16 _surfHeight;
int16 _scrollOffsetX;
int16 _scrollOffsetY;
SurfaceDescPtr _splitSurf;
int16 _splitHeight1;
int16 _splitHeight2;
int16 _splitStart;
int16 _screenDeltaX;
int16 _screenDeltaY;
Graphics::PaletteLUT *_palLUT;
void freeDriver();
void initPrimary(int16 mode);
SurfaceDescPtr initSurfDesc(int16 vidMode, int16 width,
int16 height, int16 flags);
void setSize(bool defaultTo1XScaler);
void clearScreen();
void retrace(bool mouse = true);
void waitRetrace(bool mouse = true);
void sparseRetrace(int max);
void putPixel(int16 x, int16 y, int16 color, SurfaceDesc &dest);
virtual void fillRect(SurfaceDesc &dest, int16 left, int16 top,
int16 right, int16 bottom, int16 color);
void drawLine(SurfaceDesc &dest, int16 x0, int16 y0, int16 x1, int16 y1,
int16 color);
void drawCircle(SurfaceDesc &dest, int16 x0, int16 y0,
int16 radius, int16 color);
void clearSurf(SurfaceDesc &dest);
void drawSprite(SurfaceDesc &source, SurfaceDesc &dest,
int16 left, int16 top, int16 right, int16 bottom,
int16 x, int16 y, int16 transp);
void drawSpriteDouble(SurfaceDesc &source, SurfaceDesc &dest,
int16 left, int16 top, int16 right, int16 bottom, int16 x, int16 y, int16 transp);
void drawLetter(int16 item, int16 x, int16 y, const Font &font,
int16 color1, int16 color2, int16 transp, SurfaceDesc &dest);
void drawPackedSprite(byte *sprBuf, int16 width, int16 height,
int16 x, int16 y, int16 transp, SurfaceDesc &dest);
void drawPackedSprite(const char *path, SurfaceDesc &dest,
int width = 320);
void setPalColor(byte *pal, byte red, byte green, byte blue) {
pal[0] = red << 2;
pal[1] = green << 2;
pal[2] = blue << 2;
pal[3] = 0;
}
void setPalColor(byte *pal, Color &color) {
setPalColor(pal, color.red, color.green, color.blue);
}
void setPalElem(int16 index, char red, char green, char blue,
int16 unused, int16 vidMode);
void setPalette(PalDesc *palDesc);
void setFullPalette(PalDesc *palDesc);
void setPalette(Color *palette);
void dirtyRectsClear();
void dirtyRectsAll();
void dirtyRectsAdd(int16 left, int16 top, int16 right, int16 bottom);
void dirtyRectsApply(int left, int top, int width, int height, int x, int y);
virtual char spriteUncompressor(byte *sprBuf, int16 srcWidth,
int16 srcHeight, int16 x, int16 y, int16 transp,
SurfaceDesc &destDesc) = 0;
virtual void init() {}
virtual void setPrePalette() { }
Video(class GobEngine *vm);
virtual ~Video();
protected:
class VideoDriver *_videoDriver;
bool _dirtyAll;
Common::List<Common::Rect> _dirtyRects;
int _curSparse;
uint32 _lastSparse;
GobEngine *_vm;
char initDriver(int16 vidMode);
void initOSD();
void drawOSDText(const char *text);
};
class Video_v1 : public Video {
public:
virtual char spriteUncompressor(byte *sprBuf, int16 srcWidth, int16 srcHeight,
int16 x, int16 y, int16 transp, SurfaceDesc &destDesc);
Video_v1(GobEngine *vm);
virtual ~Video_v1() {}
};
class Video_v2 : public Video_v1 {
public:
virtual char spriteUncompressor(byte *sprBuf, int16 srcWidth, int16 srcHeight,
int16 x, int16 y, int16 transp, SurfaceDesc &destDesc);
Video_v2(GobEngine *vm);
virtual ~Video_v2() {}
};
class Video_v6 : public Video_v2 {
public:
virtual char spriteUncompressor(byte *sprBuf, int16 srcWidth, int16 srcHeight,
int16 x, int16 y, int16 transp, SurfaceDesc &destDesc);
virtual void fillRect(SurfaceDesc &dest, int16 left, int16 top,
int16 right, int16 bottom, int16 color);
virtual void init();
virtual void setPrePalette();
Video_v6(GobEngine *vm);
virtual ~Video_v6() {}
private:
static const byte _ditherPalette[768];
void buildPalLUT();
void shadeRect(SurfaceDesc &dest,
int16 left, int16 top, int16 right, int16 bottom, byte color, byte strength);
void drawPacked(const byte *sprBuf, int16 x, int16 y, SurfaceDesc &surfDesc);
void drawYUVData(const byte *srcData, SurfaceDesc &destDesc,
int16 width, int16 height, int16 x, int16 y);
void drawYUV(SurfaceDesc &destDesc, int16 x, int16 y,
int16 dataWidth, int16 dataHeight, int16 width, int16 height,
const byte *dataY, const byte *dataU, const byte *dataV);
};
class VideoDriver {
public:
VideoDriver() {}
virtual ~VideoDriver() {}
virtual void drawSprite(SurfaceDesc &source, SurfaceDesc &dest, int16 left, int16 top, int16 right, int16 bottom, int16 x, int16 y, int16 transp) = 0;
virtual void drawSpriteDouble(SurfaceDesc &source, SurfaceDesc &dest, int16 left, int16 top, int16 right, int16 bottom, int16 x, int16 y, int16 transp) = 0;
virtual void fillRect(SurfaceDesc &dest, int16 left, int16 top, int16 right, int16 bottom, byte color) = 0;
virtual void putPixel(int16 x, int16 y, byte color, SurfaceDesc &dest) = 0;
virtual void drawLetter(unsigned char item, int16 x, int16 y, const Font &font, byte color1, byte color2, byte transp, SurfaceDesc &dest) = 0;
virtual void drawLine(SurfaceDesc &dest, int16 x0, int16 y0, int16 x1, int16 y1, byte color) = 0;
virtual void drawPackedSprite(byte *sprBuf, int16 width, int16 height, int16 x, int16 y, byte transp, SurfaceDesc &dest) = 0;
};
} // End of namespace Gob
#endif // GOB_VIDEO_H