1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245
|
/* 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
#include "common/ptr.h"
namespace Graphics {
struct Surface;
struct TransparentSurface;
}
namespace Fullpipe {
class DynamicPhase;
class Movement;
struct PicAniInfo;
typedef Common::Array<int32> Palette;
typedef Common::Point Dims;
typedef Common::SharedPtr<Graphics::TransparentSurface> TransSurfacePtr;
struct Bitmap {
int _x;
int _y;
int _width;
int _height;
int _type;
int _dataSize;
int _flags;
int _flipping;
TransSurfacePtr _surface;
Bitmap();
Bitmap(const Bitmap &src);
~Bitmap();
void load(Common::ReadStream *s);
void decode(byte *pixels, const Palette &palette);
void putDib(int x, int y, const Palette &palette, byte alpha);
bool putDibRB(byte *pixels, const Palette &palette);
void putDibCB(byte *pixels, const Palette &palette);
void colorFill(uint32 *dest, int len, int32 color);
void paletteFill(uint32 *dest, byte *src, int len, const Palette &palette);
void copierKeyColor(uint32 *dest, byte *src, int len, int keyColor, const Palette &palette, bool cb05_format);
void copier(uint32 *dest, byte *src, int len, const Palette &palette, bool cb05_format);
/** ownership of returned object is transferred to caller */
Bitmap *reverseImage(bool flip = true) const;
/** ownership of returned object is transferred to caller */
Bitmap *flipVertical() const;
void drawShaded(int type, int x, int y, const Palette &palette, int alpha);
void drawRotated(int x, int y, int angle, const Palette &palette, int alpha);
bool isPixelHitAtPos(int x, int y);
private:
Bitmap operator=(const Bitmap &);
};
class Picture : public MemoryObject {
public:
Picture();
virtual ~Picture();
void freePicture();
void freePixelData();
virtual bool load(MfcArchive &file);
void setAOIDs();
virtual void init();
void getDibInfo();
const Bitmap *getPixelData();
virtual void draw(int x, int y, int style, int angle);
void drawRotated(int x, int y, int angle);
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);
int getPixelAtPos(int x, int y);
int getPixelAtPosEx(int x, int y);
const Bitmap *getConvertedBitmap() const { return _convertedBitmap.get(); }
const Palette &getPaletteData() const { return _paletteData; }
void setPaletteData(const Palette &pal);
void copyMemoryObject2(Picture &src);
int _x, _y;
protected:
Common::Rect _rect;
Common::ScopedPtr<Bitmap> _convertedBitmap;
int _field_44;
int _width;
int _height;
Common::ScopedPtr<Bitmap> _bitmap;
int _field_54;
Common::ScopedPtr<MemoryObject2> _memoryObject2;
int _alpha;
Palette _paletteData;
void displayPicture();
};
class BigPicture : public Picture {
public:
BigPicture() {}
virtual ~BigPicture() {}
virtual bool load(MfcArchive &file);
virtual void draw(int x, int y, int style, int angle);
};
class GameObject : public CObject {
public:
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);
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(const PicAniInfo &info);
};
class PictureObject : public GameObject {
public:
PictureObject();
PictureObject(PictureObject *src);
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(); }
void draw();
void drawAt(int x, int y);
bool setPicAniInfo(const PicAniInfo &picAniInfo);
bool isPointInside(int x, int y);
bool isPixelHitAtPos(int x, int y);
void setOXY2();
Common::SharedPtr<Picture> _picture;
private:
Common::Array<GameObject> _pictureObject2List;
int _ox2;
int _oy2;
};
class Background : public CObject {
public:
/** list items are owned */
Common::Array<PictureObject *> _picObjList;
Common::String _bgname;
int _x;
int _y;
int16 _messageQueueId;
Palette _palette;
/** list items are owned */
Common::Array<BigPicture *> _bigPictureArray;
uint _bigPictureXDim;
uint _bigPictureYDim;
public:
Background();
virtual ~Background();
virtual bool load(MfcArchive &file);
void addPictureObject(PictureObject *pct);
BigPicture *getBigPicture(int x, int y) { return _bigPictureArray[y * _bigPictureXDim + x]; }
};
struct ShadowsItem {
int width;
int height;
DynamicPhase *dynPhase;
};
typedef Common::Array<ShadowsItem> ShadowsItemArray;
class Shadows : public CObject {
int _sceneId;
int _staticAniObjectId;
int _movementId;
ShadowsItemArray _items;
public:
Shadows();
virtual bool load(MfcArchive &file);
void init();
void initMovement(Movement *mov);
DynamicPhase *findSize(int width, int height);
};
} // End of namespace Fullpipe
#endif /* FULLPIPE_GFX_H */
|