2009-04-16 14:14:13 +03:00
|
|
|
#ifndef __CDEFHANDLER_H__
|
|
|
|
#define __CDEFHANDLER_H__
|
|
|
|
#include "../client/CBitmapHandler.h"
|
2009-10-11 21:26:36 +03:00
|
|
|
#include <SDL_stdinc.h>
|
2009-04-16 14:14:13 +03:00
|
|
|
struct SDL_Surface;
|
|
|
|
class CDefEssential;
|
|
|
|
class CLodHandler;
|
|
|
|
|
2009-04-15 17:03:31 +03:00
|
|
|
/*
|
|
|
|
* CDefHandler.h, part of VCMI engine
|
|
|
|
*
|
|
|
|
* Authors: listed in file AUTHORS in main folder
|
|
|
|
*
|
|
|
|
* License: GNU General Public License v2.0 or later
|
|
|
|
* Full text of license available in license.txt file, in main folder
|
|
|
|
*
|
2009-04-16 14:14:13 +03:00
|
|
|
*/
|
|
|
|
|
|
|
|
struct Cimage
|
|
|
|
{
|
|
|
|
int groupNumber;
|
|
|
|
std::string imName; //name without extension
|
|
|
|
SDL_Surface * bitmap;
|
|
|
|
};
|
|
|
|
|
2009-10-11 21:26:36 +03:00
|
|
|
// Def entry in file. Integer fields are all little endian and will
|
|
|
|
// need to be converted.
|
2009-10-14 15:44:44 +03:00
|
|
|
struct SDefEntryBlock {
|
2009-10-11 21:26:36 +03:00
|
|
|
Uint32 unknown1;
|
|
|
|
Uint32 totalInBlock;
|
|
|
|
Uint32 unknown2;
|
|
|
|
Uint32 unknown3;
|
|
|
|
unsigned char data[0];
|
|
|
|
};
|
|
|
|
|
|
|
|
// Def entry in file. Integer fields are all little endian and will
|
|
|
|
// need to be converted.
|
2009-10-14 15:44:44 +03:00
|
|
|
struct SDefEntry {
|
2009-10-11 21:26:36 +03:00
|
|
|
Uint32 DEFType;
|
|
|
|
Uint32 width;
|
|
|
|
Uint32 height;
|
|
|
|
Uint32 totalBlocks;
|
|
|
|
|
|
|
|
struct {
|
|
|
|
unsigned char R;
|
|
|
|
unsigned char G;
|
|
|
|
unsigned char B;
|
|
|
|
} palette[256];
|
|
|
|
|
2009-10-16 17:56:57 +03:00
|
|
|
// SDefEntry is followed by a series of SDefEntryBlock
|
|
|
|
// This is commented out because VC++ doesn't accept C99 syntax.
|
|
|
|
//struct SDefEntryBlock blocks[];
|
2009-10-11 21:26:36 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
// Def entry in file. Integer fields are all little endian and will
|
|
|
|
// need to be converted.
|
2009-10-14 15:44:44 +03:00
|
|
|
struct SSpriteDef {
|
2009-10-11 21:26:36 +03:00
|
|
|
Uint32 prSize;
|
|
|
|
Uint32 defType2;
|
|
|
|
Uint32 FullWidth;
|
|
|
|
Uint32 FullHeight;
|
|
|
|
Uint32 SpriteWidth;
|
|
|
|
Uint32 SpriteHeight;
|
|
|
|
Uint32 LeftMargin;
|
|
|
|
Uint32 TopMargin;
|
|
|
|
};
|
|
|
|
|
2009-04-16 14:14:13 +03:00
|
|
|
class CDefHandler
|
|
|
|
{
|
|
|
|
private:
|
2009-10-25 16:36:11 +02:00
|
|
|
unsigned int DEFType;
|
2009-04-16 14:14:13 +03:00
|
|
|
int length;
|
2009-09-18 15:50:00 +03:00
|
|
|
//unsigned int * RWEntries;
|
2009-04-16 14:14:13 +03:00
|
|
|
struct SEntry
|
|
|
|
{
|
|
|
|
std::string name;
|
|
|
|
int offset;
|
|
|
|
int group;
|
|
|
|
} ;
|
|
|
|
std::vector<SEntry> SEntries ;
|
|
|
|
|
|
|
|
public:
|
|
|
|
int width, height; //width and height
|
2009-10-25 16:36:11 +02:00
|
|
|
std::string defName;
|
2009-04-16 14:14:13 +03:00
|
|
|
std::vector<Cimage> ourImages;
|
|
|
|
bool alphaTransformed;
|
|
|
|
bool notFreeImgs;
|
|
|
|
|
2009-05-07 20:20:41 +03:00
|
|
|
CDefHandler(); //c-tor
|
|
|
|
~CDefHandler(); //d-tor
|
2010-02-21 20:07:24 +02:00
|
|
|
SDL_Surface * getSprite (int SIndex, const unsigned char * FDef, const BMPPalette * palette) const; //saves picture with given number to "testtt.bmp"
|
2009-10-25 16:36:11 +02:00
|
|
|
static void expand(unsigned char N,unsigned char & BL, unsigned char & BR);
|
2010-02-21 20:07:24 +02:00
|
|
|
void openFromMemory(unsigned char * table, const std::string & name);
|
2009-04-16 14:14:13 +03:00
|
|
|
CDefEssential * essentialize();
|
|
|
|
|
2010-02-21 20:07:24 +02:00
|
|
|
static CDefHandler * giveDef(const std::string & defName);
|
|
|
|
static CDefEssential * giveDefEss(const std::string & defName);
|
2009-04-16 14:14:13 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
class CDefEssential //DefHandler with images only
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
std::vector<Cimage> ourImages;
|
2009-05-07 20:20:41 +03:00
|
|
|
~CDefEssential(); //d-tor
|
2009-04-16 14:14:13 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif // __CDEFHANDLER_H__
|