| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110 | 
							- #ifndef __CDEFHANDLER_H__
 
- #define __CDEFHANDLER_H__
 
- #include "../client/CBitmapHandler.h"
 
- #include <SDL_stdinc.h>
 
- struct SDL_Surface;
 
- class CDefEssential;
 
- class CLodHandler;
 
- /*
 
-  * 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
 
-  *
 
-  */
 
- struct Cimage
 
- {
 
- 	int groupNumber;
 
- 	std::string imName; //name without extension
 
- 	SDL_Surface * bitmap;
 
- };
 
- // Def entry in file. Integer fields are all little endian and will
 
- // need to be converted.
 
- struct SDefEntryBlock {
 
- 	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.
 
- struct SDefEntry {
 
- 	Uint32 DEFType;
 
- 	Uint32 width;
 
- 	Uint32 height;
 
- 	Uint32 totalBlocks;
 
- 	struct {
 
- 		unsigned char R;
 
- 		unsigned char G;
 
- 		unsigned char B;
 
- 	} palette[256];
 
- 	// SDefEntry is followed by a series of SDefEntryBlock
 
- 	// This is commented out because VC++ doesn't accept C99 syntax.
 
- 	//struct SDefEntryBlock blocks[];
 
- };
 
- // Def entry in file. Integer fields are all little endian and will
 
- // need to be converted.
 
- struct SSpriteDef {
 
- 	Uint32 prSize;
 
- 	Uint32 defType2;
 
- 	Uint32 FullWidth;
 
- 	Uint32 FullHeight;
 
- 	Uint32 SpriteWidth;
 
- 	Uint32 SpriteHeight;
 
- 	Uint32 LeftMargin;
 
- 	Uint32 TopMargin;
 
- };
 
- class CDefHandler
 
- {
 
- private:
 
- 	unsigned int DEFType;
 
- 	int length;
 
- 	//unsigned int * RWEntries;
 
- 	struct SEntry
 
- 	{
 
- 		std::string name;
 
- 		int offset;
 
- 		int group;
 
- 	} ;
 
- 	std::vector<SEntry> SEntries ;
 
- public:
 
- 	int width, height; //width and height
 
- 	std::string defName;
 
- 	std::vector<Cimage> ourImages;
 
- 	bool alphaTransformed;
 
- 	bool notFreeImgs;
 
- 	CDefHandler(); //c-tor
 
- 	~CDefHandler(); //d-tor
 
- 	static int readNormalNr (int pos, int bytCon, const unsigned char * str=NULL, bool cyclic=false);
 
- 	SDL_Surface * getSprite (int SIndex, const unsigned char * FDef, const BMPPalette * palette) const; //zapisuje klatke o zadanym numerze do "testtt.bmp"
 
- 	void openDef(std::string name);
 
- 	static void expand(unsigned char N,unsigned char & BL, unsigned char & BR);
 
- 	void openFromMemory(unsigned char * table, std::string name);
 
- 	CDefEssential * essentialize();
 
- 	static CDefHandler * giveDef(std::string defName);
 
- 	static CDefEssential * giveDefEss(std::string defName);
 
- };
 
- class CDefEssential //DefHandler with images only
 
- {
 
- public:
 
- 	std::vector<Cimage> ourImages;
 
- 	~CDefEssential(); //d-tor
 
- };
 
- #endif // __CDEFHANDLER_H__
 
 
  |