2004-04-12 21:40:49 +00:00
|
|
|
/* ScummVM - Scumm Interpreter
|
2005-01-01 16:20:17 +00:00
|
|
|
* Copyright (C) 2004-2005 The ScummVM project
|
2004-04-12 21:40:49 +00:00
|
|
|
*
|
|
|
|
* The ReInherit Engine is (C)2000-2003 by Daniel Balsom.
|
|
|
|
*
|
|
|
|
* 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
*
|
|
|
|
* $Header$
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2004-05-01 13:04:31 +00:00
|
|
|
// Isometric level module - private header
|
2004-04-12 21:40:49 +00:00
|
|
|
|
|
|
|
#ifndef SAGA_ISOMAP_H_
|
|
|
|
#define SAGA_ISOMAP_H_
|
|
|
|
|
|
|
|
namespace Saga {
|
|
|
|
|
2005-01-28 19:25:41 +00:00
|
|
|
#define SAGA_ISOTILEDATA_LEN 8
|
2004-04-12 21:40:49 +00:00
|
|
|
#define SAGA_ISOTILE_WIDTH 32
|
|
|
|
#define SAGA_ISOTILE_BASEHEIGHT 15
|
2005-02-09 20:30:45 +00:00
|
|
|
#define SAGA_TILE_NOMINAL_H 16
|
|
|
|
#define SAGA_MAX_TILE_H 64
|
2004-04-12 21:40:49 +00:00
|
|
|
|
2005-01-28 19:25:41 +00:00
|
|
|
#define SAGA_TILEPLATFORMDATA_LEN 136
|
|
|
|
#define SAGA_PLATFORM_W 8
|
|
|
|
#define SAGA_MAX_PLATFORM_H 16
|
|
|
|
|
|
|
|
#define SAGA_TILEMAP_LEN 514
|
|
|
|
#define SAGA_TILEMAP_W 16
|
|
|
|
#define SAGA_TILEMAP_H 16
|
|
|
|
|
|
|
|
#define SAGA_METATILEDATA_LEN 36
|
|
|
|
|
2005-02-09 20:30:45 +00:00
|
|
|
#define SAGA_MULTI_TILE (1 << 15)
|
|
|
|
|
|
|
|
enum TileMapEdgeType {
|
|
|
|
kEdgeTypeBlack = 0,
|
|
|
|
kEdgeTypeFill0 = 1,
|
|
|
|
kEdgeTypeFill1 = 2,
|
|
|
|
kEdgeTypeRpt = 3,
|
|
|
|
kEdgeTypeWrap = 4
|
|
|
|
};
|
|
|
|
|
2005-01-28 19:25:41 +00:00
|
|
|
struct IsoTileData {
|
|
|
|
byte height;
|
|
|
|
int8 attributes;
|
|
|
|
size_t offset;
|
|
|
|
uint16 terrainMask;
|
|
|
|
byte FGBGAttr;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct TilePlatformData {
|
|
|
|
int16 metaTile;
|
|
|
|
int16 height;
|
|
|
|
int16 highestPixel;
|
|
|
|
byte vBits;
|
|
|
|
byte uBits;
|
|
|
|
int16 tiles[SAGA_PLATFORM_W][SAGA_PLATFORM_W];
|
|
|
|
};
|
|
|
|
|
|
|
|
struct TileMapData {
|
|
|
|
byte edgeType;
|
|
|
|
int16 tilePlatforms[SAGA_TILEMAP_W][SAGA_TILEMAP_H];
|
2004-04-25 14:42:14 +00:00
|
|
|
};
|
2004-04-12 21:40:49 +00:00
|
|
|
|
2005-01-28 19:25:41 +00:00
|
|
|
struct MetaTileData {
|
|
|
|
uint16 highestPlatform;
|
|
|
|
uint16 highestPixel;
|
|
|
|
int16 stack[SAGA_MAX_PLATFORM_H];
|
|
|
|
};
|
2004-04-12 21:40:49 +00:00
|
|
|
|
2005-01-28 19:25:41 +00:00
|
|
|
struct MultiTileEntryData {
|
|
|
|
int16 offset;
|
|
|
|
byte u;
|
|
|
|
byte v;
|
|
|
|
byte h;
|
|
|
|
byte uSize;
|
|
|
|
byte vSize;
|
|
|
|
byte numStates;
|
|
|
|
byte currentState;
|
|
|
|
};
|
2004-08-02 14:51:48 +00:00
|
|
|
|
|
|
|
class IsoMap {
|
|
|
|
public:
|
2005-01-28 19:25:41 +00:00
|
|
|
IsoMap(SagaEngine *vm);
|
|
|
|
~IsoMap() {
|
|
|
|
freeMem();
|
|
|
|
}
|
|
|
|
void loadImages(const byte * resourcePointer, size_t resourceLength);
|
|
|
|
void loadMap(const byte * resourcePointer, size_t resourceLength);
|
|
|
|
void loadPlatforms(const byte * resourcePointer, size_t resourceLength);
|
|
|
|
void loadMetaTiles(const byte * resourcePointer, size_t resourceLength);
|
|
|
|
void loadMulti(const byte * resourcePointer, size_t resourceLength);
|
|
|
|
void freeMem();
|
2005-02-09 20:30:45 +00:00
|
|
|
int draw(SURFACE *ds);
|
2004-08-02 14:51:48 +00:00
|
|
|
private:
|
2005-02-09 20:30:45 +00:00
|
|
|
void drawTiles(SURFACE *ds);
|
2005-02-11 20:43:48 +00:00
|
|
|
void drawMetaTile(SURFACE *ds, uint16 metaTileIndex, const Point &point, int16 absU, int16 absV);
|
|
|
|
void drawPlatform(SURFACE *ds, uint16 platformIndex, const Point &point, int16 absU, int16 absV, int16 absH);
|
2005-02-09 20:30:45 +00:00
|
|
|
void drawTile(SURFACE *ds, uint16 tileIndex, const Point &point);
|
|
|
|
|
|
|
|
|
2005-01-28 19:25:41 +00:00
|
|
|
byte *_tileData;
|
|
|
|
size_t _tileDataLength;
|
|
|
|
uint16 _tilesCount;
|
|
|
|
IsoTileData *_tilesTable;
|
|
|
|
|
|
|
|
uint16 _tilePlatformsCount;
|
|
|
|
TilePlatformData *_tilePlatformList;
|
|
|
|
uint16 _metaTilesCount;
|
|
|
|
MetaTileData *_metaTileList;
|
|
|
|
|
|
|
|
uint16 _multiCount;
|
|
|
|
MultiTileEntryData *_multiTable;
|
|
|
|
|
|
|
|
TileMapData _tileMap;
|
2005-02-09 20:30:45 +00:00
|
|
|
|
|
|
|
Point _tileScroll;
|
2005-02-11 20:43:48 +00:00
|
|
|
public:
|
|
|
|
int _viewDiff;
|
2005-02-09 20:30:45 +00:00
|
|
|
Point _viewScroll;
|
2005-02-11 20:43:48 +00:00
|
|
|
Rect _tileClip;
|
2005-01-28 19:25:41 +00:00
|
|
|
|
|
|
|
SagaEngine *_vm;
|
2004-04-25 14:42:14 +00:00
|
|
|
};
|
2004-04-12 21:40:49 +00:00
|
|
|
|
|
|
|
} // End of namespace Saga
|
|
|
|
|
2004-05-01 13:04:31 +00:00
|
|
|
#endif
|