2013-06-20 19:34:29 +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.
|
2014-02-18 01:34:20 +00:00
|
|
|
*
|
2013-06-20 19:34:29 +00:00
|
|
|
* 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.
|
2014-02-18 01:34:20 +00:00
|
|
|
*
|
2013-06-20 19:34:29 +00:00
|
|
|
* 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
|
|
|
|
|
2017-11-12 19:47:51 +00:00
|
|
|
#include "common/ptr.h"
|
|
|
|
|
2016-12-26 18:13:07 +00:00
|
|
|
namespace Graphics {
|
|
|
|
struct Surface;
|
|
|
|
struct TransparentSurface;
|
|
|
|
}
|
|
|
|
|
2013-06-20 19:34:29 +00:00
|
|
|
namespace Fullpipe {
|
|
|
|
|
2013-07-25 21:14:47 +00:00
|
|
|
class DynamicPhase;
|
|
|
|
class Movement;
|
2013-08-05 22:50:16 +00:00
|
|
|
struct PicAniInfo;
|
2013-07-25 21:14:47 +00:00
|
|
|
|
2017-11-12 19:47:51 +00:00
|
|
|
typedef Common::Array<int32> Palette;
|
2017-11-12 19:43:42 +00:00
|
|
|
typedef Common::Point Dims;
|
|
|
|
|
2017-11-12 19:47:51 +00:00
|
|
|
typedef Common::SharedPtr<Graphics::TransparentSurface> TransSurfacePtr;
|
|
|
|
|
2013-07-11 05:09:11 +00:00
|
|
|
struct Bitmap {
|
2013-07-16 20:54:18 +00:00
|
|
|
int _x;
|
|
|
|
int _y;
|
|
|
|
int _width;
|
|
|
|
int _height;
|
|
|
|
int _type;
|
2013-08-17 17:08:00 +00:00
|
|
|
int _dataSize;
|
2013-07-16 20:54:18 +00:00
|
|
|
int _flags;
|
2014-06-17 12:05:10 +00:00
|
|
|
int _flipping;
|
2017-11-12 19:47:51 +00:00
|
|
|
TransSurfacePtr _surface;
|
2013-07-11 05:09:11 +00:00
|
|
|
|
2013-08-17 17:08:00 +00:00
|
|
|
Bitmap();
|
2017-11-12 19:47:51 +00:00
|
|
|
Bitmap(const Bitmap &src);
|
2013-09-04 19:13:44 +00:00
|
|
|
~Bitmap();
|
2013-08-17 17:08:00 +00:00
|
|
|
|
2013-07-11 05:09:11 +00:00
|
|
|
void load(Common::ReadStream *s);
|
2017-11-12 19:47:51 +00:00
|
|
|
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);
|
2013-07-16 20:54:18 +00:00
|
|
|
|
2014-06-17 11:55:26 +00:00
|
|
|
void colorFill(uint32 *dest, int len, int32 color);
|
2017-11-12 19:47:51 +00:00
|
|
|
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);
|
2013-07-26 12:39:17 +00:00
|
|
|
|
2017-11-12 19:47:51 +00:00
|
|
|
/** 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;
|
2013-08-15 08:14:44 +00:00
|
|
|
|
2017-11-12 19:47:51 +00:00
|
|
|
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);
|
2013-08-27 21:11:17 +00:00
|
|
|
|
|
|
|
bool isPixelHitAtPos(int x, int y);
|
2013-07-11 05:09:11 +00:00
|
|
|
|
2017-11-12 19:47:51 +00:00
|
|
|
private:
|
|
|
|
Bitmap operator=(const Bitmap &);
|
|
|
|
};
|
2013-06-21 01:49:28 +00:00
|
|
|
|
2017-11-12 19:47:51 +00:00
|
|
|
class Picture : public MemoryObject {
|
|
|
|
public:
|
2013-06-21 01:49:28 +00:00
|
|
|
Picture();
|
2013-07-26 12:39:17 +00:00
|
|
|
virtual ~Picture();
|
|
|
|
|
|
|
|
void freePicture();
|
2014-01-12 08:59:14 +00:00
|
|
|
void freePixelData();
|
2013-07-26 12:39:17 +00:00
|
|
|
|
2013-06-21 01:49:28 +00:00
|
|
|
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();
|
2017-11-12 19:47:51 +00:00
|
|
|
const 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; }
|
2013-07-20 13:08:05 +00:00
|
|
|
|
2017-11-12 19:43:42 +00:00
|
|
|
Dims getDimensions() const { return Dims(_width, _height); }
|
2013-08-18 20:20:21 +00:00
|
|
|
bool isPointInside(int x, int y);
|
2013-08-27 21:11:17 +00:00
|
|
|
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);
|
2013-07-26 12:39:17 +00:00
|
|
|
|
2017-11-12 19:47:51 +00:00
|
|
|
const Bitmap *getConvertedBitmap() const { return _convertedBitmap.get(); }
|
|
|
|
const Palette &getPaletteData() const { return _paletteData; }
|
|
|
|
void setPaletteData(const Palette &pal);
|
2013-07-26 12:39:17 +00:00
|
|
|
|
2017-11-14 19:03:15 +00:00
|
|
|
void copyMemoryObject2(Picture &src);
|
2017-11-12 19:47:51 +00:00
|
|
|
|
|
|
|
int _x, _y;
|
|
|
|
|
|
|
|
protected:
|
|
|
|
Common::Rect _rect;
|
|
|
|
Common::ScopedPtr<Bitmap> _convertedBitmap;
|
|
|
|
int _field_44;
|
|
|
|
int _width;
|
|
|
|
int _height;
|
2017-11-14 22:09:21 +00:00
|
|
|
Common::ScopedPtr<Bitmap> _bitmap;
|
2017-11-12 19:47:51 +00:00
|
|
|
int _field_54;
|
|
|
|
Common::ScopedPtr<MemoryObject2> _memoryObject2;
|
|
|
|
int _alpha;
|
|
|
|
Palette _paletteData;
|
|
|
|
|
|
|
|
void displayPicture();
|
2013-06-20 22:13:18 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class BigPicture : public Picture {
|
2013-06-21 01:49:28 +00:00
|
|
|
public:
|
2013-07-26 12:39:17 +00:00
|
|
|
BigPicture() {}
|
2014-01-08 16:37:39 +00:00
|
|
|
virtual ~BigPicture() {}
|
|
|
|
|
2013-06-21 01:49:28 +00:00
|
|
|
virtual bool load(MfcArchive &file);
|
2013-12-21 23:44:08 +00:00
|
|
|
virtual void draw(int x, int y, int style, int angle);
|
2013-06-20 22:13:18 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class GameObject : public CObject {
|
2013-07-13 08:51:22 +00:00
|
|
|
public:
|
2016-09-04 22:11:07 +00:00
|
|
|
int16 _odelay;
|
2013-06-20 22:13:18 +00:00
|
|
|
int _field_8;
|
|
|
|
int16 _flags;
|
|
|
|
int16 _id;
|
2017-03-22 02:11:49 +00:00
|
|
|
Common::String _objectName;
|
2013-06-20 22:13:18 +00:00
|
|
|
int _ox;
|
|
|
|
int _oy;
|
|
|
|
int _priority;
|
|
|
|
int _field_20;
|
|
|
|
|
|
|
|
public:
|
|
|
|
GameObject();
|
2013-08-05 22:50:16 +00:00
|
|
|
GameObject(GameObject *src);
|
|
|
|
|
2013-06-20 22:13:18 +00:00
|
|
|
virtual bool load(MfcArchive &file);
|
2013-07-13 08:51:22 +00:00
|
|
|
void setOXY(int x, int y);
|
2014-05-02 09:09:21 +00:00
|
|
|
void renumPictures(Common::Array<StaticANIObject *> *lst);
|
|
|
|
void renumPictures(Common::Array<PictureObject *> *lst);
|
2013-07-22 19:46:08 +00:00
|
|
|
void setFlags(int16 flags) { _flags = flags; }
|
2013-07-24 21:34:15 +00:00
|
|
|
void clearFlags() { _flags = 0; }
|
2017-03-22 02:11:49 +00:00
|
|
|
Common::String getName() { return _objectName; }
|
2013-08-26 19:17:20 +00:00
|
|
|
|
2017-11-15 22:24:37 +00:00
|
|
|
bool getPicAniInfo(PicAniInfo &info);
|
|
|
|
bool setPicAniInfo(const PicAniInfo &info);
|
2013-06-20 22:13:18 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class PictureObject : public GameObject {
|
2017-11-16 18:05:14 +00:00
|
|
|
public:
|
2013-06-20 22:13:18 +00:00
|
|
|
PictureObject();
|
2014-01-08 16:48:34 +00:00
|
|
|
|
2013-08-05 22:50:16 +00:00
|
|
|
PictureObject(PictureObject *src);
|
|
|
|
|
2013-09-30 21:12:04 +00:00
|
|
|
virtual bool load(MfcArchive &file, bool bigPicture);
|
2013-09-30 22:04:25 +00:00
|
|
|
virtual bool load(MfcArchive &file) { assert(0); return false; } // Disable base class
|
2013-09-30 21:12:04 +00:00
|
|
|
|
2017-11-12 19:43:42 +00:00
|
|
|
Dims getDimensions() const { return _picture->getDimensions(); }
|
2013-07-25 13:42:44 +00:00
|
|
|
void draw();
|
2013-08-24 14:57:58 +00:00
|
|
|
void drawAt(int x, int y);
|
2013-08-05 22:50:16 +00:00
|
|
|
|
2017-11-15 22:24:37 +00:00
|
|
|
bool setPicAniInfo(const PicAniInfo &picAniInfo);
|
2013-08-19 06:24:36 +00:00
|
|
|
bool isPointInside(int x, int y);
|
2013-08-27 21:11:17 +00:00
|
|
|
bool isPixelHitAtPos(int x, int y);
|
2014-01-08 16:37:39 +00:00
|
|
|
void setOXY2();
|
2017-11-16 18:05:14 +00:00
|
|
|
|
|
|
|
Common::SharedPtr<Picture> _picture;
|
|
|
|
|
|
|
|
private:
|
|
|
|
Common::Array<GameObject> _pictureObject2List;
|
|
|
|
int _ox2;
|
|
|
|
int _oy2;
|
2013-06-20 22:13:18 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class Background : public CObject {
|
2017-11-16 18:05:14 +00:00
|
|
|
public:
|
|
|
|
/** list items are owned */
|
2014-05-02 09:09:21 +00:00
|
|
|
Common::Array<PictureObject *> _picObjList;
|
2013-07-06 19:45:11 +00:00
|
|
|
|
2017-03-22 02:11:49 +00:00
|
|
|
Common::String _bgname;
|
2013-06-20 22:13:18 +00:00
|
|
|
int _x;
|
|
|
|
int _y;
|
|
|
|
int16 _messageQueueId;
|
2017-11-12 19:47:51 +00:00
|
|
|
Palette _palette;
|
2017-11-16 18:05:14 +00:00
|
|
|
/** list items are owned */
|
|
|
|
Common::Array<BigPicture *> _bigPictureArray;
|
|
|
|
uint _bigPictureXDim;
|
|
|
|
uint _bigPictureYDim;
|
2013-06-20 22:13:18 +00:00
|
|
|
|
2017-11-16 18:05:14 +00:00
|
|
|
public:
|
2013-06-20 22:13:18 +00:00
|
|
|
Background();
|
2014-01-08 16:37:39 +00:00
|
|
|
virtual ~Background();
|
|
|
|
|
2013-06-20 22:13:18 +00:00
|
|
|
virtual bool load(MfcArchive &file);
|
|
|
|
void addPictureObject(PictureObject *pct);
|
2013-08-24 13:27:09 +00:00
|
|
|
|
2017-11-21 18:40:26 +00:00
|
|
|
BigPicture *getBigPicture(int x, int y) { return _bigPictureArray[y * _bigPictureXDim + x]; }
|
2013-06-20 19:34:29 +00:00
|
|
|
};
|
|
|
|
|
2013-07-29 11:28:47 +00:00
|
|
|
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);
|
2013-07-29 11:28:47 +00:00
|
|
|
DynamicPhase *findSize(int width, int height);
|
2013-06-20 19:34:29 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // End of namespace Fullpipe
|
|
|
|
|
|
|
|
#endif /* FULLPIPE_GFX_H */
|