scummvm/engines/fullpipe/gfx.h

235 lines
5.5 KiB
C
Raw Normal View History

/* 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 FULLPIPE_GFX_H
#define FULLPIPE_GFX_H
2016-12-26 18:13:07 +00:00
namespace Graphics {
struct Surface;
struct TransparentSurface;
}
namespace Fullpipe {
2013-07-25 21:14:47 +00:00
class DynamicPhase;
class Movement;
struct PicAniInfo;
2013-07-25 21:14:47 +00:00
typedef Common::Point Dims;
2013-07-11 05:09:11 +00:00
struct Bitmap {
int _x;
int _y;
int _width;
int _height;
int _type;
int _dataSize;
int _flags;
Graphics::TransparentSurface *_surface;
int _flipping;
bool _copied_surface;
2013-07-11 05:09:11 +00:00
Bitmap();
Bitmap(Bitmap *src);
~Bitmap();
2013-07-11 05:09:11 +00:00
void load(Common::ReadStream *s);
void decode(byte *pixels, int32 *palette);
2016-09-21 04:48:35 +00:00
void putDib(int x, int y, int32 *palette, byte alpha);
bool putDibRB(byte *pixels, int32 *palette);
void putDibCB(byte *pixels, int32 *palette);
void colorFill(uint32 *dest, int len, int32 color);
void paletteFill(uint32 *dest, byte *src, int len, int32 *palette);
void copierKeyColor(uint32 *dest, byte *src, int len, int keyColor, int32 *palette, bool cb05_format);
void copier(uint32 *dest, byte *src, int len, int32 *palette, bool cb05_format);
2014-06-17 12:24:42 +00:00
Bitmap *reverseImage(bool flip = true);
2013-08-15 08:14:44 +00:00
Bitmap *flipVertical();
2014-06-19 07:24:57 +00:00
void drawShaded(int type, int x, int y, byte *palette, int alpha);
void drawRotated(int x, int y, int angle, byte *palette, int alpha);
bool isPixelHitAtPos(int x, int y);
2013-07-11 05:09:11 +00:00
};
class Picture : public MemoryObject {
2013-09-02 08:15:17 +00:00
public:
Common::Rect _rect;
Bitmap *_convertedBitmap;
int _x;
int _y;
int _field_44;
int _width;
int _height;
2013-07-11 05:09:11 +00:00
Bitmap *_bitmap;
int _field_54;
2013-06-22 01:30:38 +00:00
MemoryObject2 *_memoryObject2;
int _alpha;
2013-06-22 01:30:38 +00:00
byte *_paletteData;
void displayPicture();
public:
Picture();
virtual ~Picture();
void freePicture();
void freePixelData();
virtual bool load(MfcArchive &file);
2013-06-22 01:30:38 +00:00
void setAOIDs();
2014-05-02 09:40:06 +00:00
virtual void init();
2013-07-11 05:09:11 +00:00
void getDibInfo();
2013-07-12 07:38:30 +00:00
Bitmap *getPixelData();
2013-12-21 23:44:08 +00:00
virtual void draw(int x, int y, int style, int angle);
2013-07-13 08:45:52 +00:00
void drawRotated(int x, int y, int angle);
2013-07-12 07:38:30 +00:00
byte getAlpha() { return (byte)_alpha; }
void setAlpha(byte alpha) { _alpha = alpha; }
Dims getDimensions() const { return Dims(_width, _height); }
bool isPointInside(int x, int y);
bool isPixelHitAtPos(int x, int y);
2013-08-28 07:50:03 +00:00
int getPixelAtPos(int x, int y);
int getPixelAtPosEx(int x, int y);
byte *getPaletteData() { return _paletteData; }
void setPaletteData(byte *pal);
void copyMemoryObject2(Picture *src);
};
class BigPicture : public Picture {
public:
BigPicture() {}
virtual ~BigPicture() {}
virtual bool load(MfcArchive &file);
2013-12-21 23:44:08 +00:00
virtual void draw(int x, int y, int style, int angle);
};
class GameObject : public CObject {
public:
2016-09-04 22:11:07 +00:00
int16 _odelay;
int _field_8;
int16 _flags;
int16 _id;
Common::String _objectName;
int _ox;
int _oy;
int _priority;
int _field_20;
public:
GameObject();
GameObject(GameObject *src);
~GameObject();
virtual bool load(MfcArchive &file);
void setOXY(int x, int y);
void renumPictures(Common::Array<StaticANIObject *> *lst);
void renumPictures(Common::Array<PictureObject *> *lst);
void setFlags(int16 flags) { _flags = flags; }
void clearFlags() { _flags = 0; }
Common::String getName() { return _objectName; }
bool getPicAniInfo(PicAniInfo *info);
bool setPicAniInfo(PicAniInfo *info);
};
class PictureObject : public GameObject {
2013-07-27 20:54:06 +00:00
public:
Picture *_picture;
Common::Array<GameObject *> *_pictureObject2List;
int _ox2;
int _oy2;
public:
PictureObject();
2014-01-08 16:48:34 +00:00
PictureObject(PictureObject *src);
2014-01-08 16:48:34 +00:00
virtual ~PictureObject();
virtual bool load(MfcArchive &file, bool bigPicture);
virtual bool load(MfcArchive &file) { assert(0); return false; } // Disable base class
Dims getDimensions() const { return _picture->getDimensions(); }
2013-07-25 13:42:44 +00:00
void draw();
void drawAt(int x, int y);
bool setPicAniInfo(PicAniInfo *picAniInfo);
bool isPointInside(int x, int y);
bool isPixelHitAtPos(int x, int y);
void setOXY2();
};
class Background : public CObject {
2013-07-06 19:45:11 +00:00
public:
Common::Array<PictureObject *> _picObjList;
2013-07-06 19:45:11 +00:00
Common::String _bgname;
int _x;
int _y;
int16 _messageQueueId;
2013-07-19 14:59:03 +00:00
MemoryObject *_palette;
int _bigPictureArray1Count;
int _bigPictureArray2Count;
2013-06-22 01:30:38 +00:00
BigPicture ***_bigPictureArray;
public:
Background();
virtual ~Background();
virtual bool load(MfcArchive &file);
void addPictureObject(PictureObject *pct);
BigPicture *getBigPicture(int x, int y) { return _bigPictureArray[x][y]; }
};
struct ShadowsItem {
int width;
int height;
DynamicPhase *dynPhase;
};
typedef Common::Array<ShadowsItem> ShadowsItemArray;
2013-06-24 12:28:07 +00:00
class Shadows : public CObject {
int _sceneId;
int _staticAniObjectId;
int _movementId;
ShadowsItemArray _items;
public:
Shadows();
virtual bool load(MfcArchive &file);
2013-07-25 21:14:47 +00:00
void init();
void initMovement(Movement *mov);
DynamicPhase *findSize(int width, int height);
};
} // End of namespace Fullpipe
#endif /* FULLPIPE_GFX_H */