| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 | 
							- #pragma once
 
- #include "FontBase.h"
 
- #include "../lib/GameConstants.h"
 
- #include "UIFramework/Geometries.h"
 
- /*
 
-  * Graphics.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
 
-  *
 
-  */
 
- class CDefEssential;
 
- struct SDL_Surface;
 
- class CGHeroInstance;
 
- class CGTownInstance;
 
- class CDefHandler;
 
- class CHeroClass;
 
- struct SDL_Color;
 
- struct InfoAboutHero;
 
- struct InfoAboutTown;
 
- class CGObjectInstance;
 
- class CGDefInfo;
 
- typedef struct _TTF_Font TTF_Font; //from SDL_ttf.h
 
- /// Handles fonts, hero images, town images, various graphics
 
- class Graphics
 
- {
 
- public:
 
- 	//Fonts
 
- 	static const int FONTS_NUMBER = 9;
 
- 	Font *fonts[FONTS_NUMBER];
 
- 	TTF_Font * fontsTrueType[FONTS_NUMBER];//true type fonts, if some of the fonts not loaded - NULL
 
- 	//various graphics
 
- 	SDL_Color * playerColors; //array [8]
 
- 	SDL_Color * neutralColor;
 
- 	SDL_Color * playerColorPalette; //palette to make interface colors good - array of size [256]
 
- 	SDL_Color * neutralColorPalette; 
 
- 	CDefEssential * artDefs; //artifacts //TODO: move to CArtifact class
 
- 	std::vector<CDefEssential *> flags1, flags2, flags3, flags4; //flags blitted on heroes when ,
 
- 	CDefEssential * resources32; //resources 32x32
 
- 	CDefEssential * flags;
 
- 	CDefEssential * heroMoveArrows;
 
- 	std::vector<CDefEssential *> heroAnims; // [class id: 0 - 17]  //added group 10: up - left, 11 - left and 12 - left down // 13 - up-left standing; 14 - left standing; 15 - left down standing
 
- 	std::vector<CDefEssential *> boatAnims; // [boat type: 0 - 3]  //added group 10: up - left, 11 - left and 12 - left down // 13 - up-left standing; 14 - left standing; 15 - left down standing
 
- 	CDefHandler * FoWfullHide; //for Fog of War
 
- 	CDefHandler * FoWpartialHide; //for For of War
 
- 	std::map<std::string, CDefEssential *> advmapobjGraphics;
 
- 	CDefEssential * getDef(const CGObjectInstance * obj);
 
- 	CDefEssential * getDef(const CGDefInfo * info);
 
- 	//creatures
 
- 	std::map<int,SDL_Surface*> bigImgs; //creature ID -> big 58x64 img of creature; //ID=-2 is for blank (black) img; -1 for the border
 
- 	//towns
 
- 	std::map<int, std::string> ERMUtoPicture[GameConstants::F_NUMBER]; //maps building ID to it's picture's name for each town type
 
- 	//for battles
 
- 	std::vector< std::vector< std::string > > battleBacks; //battleBacks[terType] - vector of possible names for certain terrain type
 
- 	std::vector< std::string > battleHeroes; //battleHeroes[hero type] - name of def that has hero animation for battle
 
- 	std::map< int, std::vector < std::string > > battleACToDef; //maps AC format to vector of appropriate def names
 
- 	CDefEssential * spellEffectsPics; //bitmaps representing spells affecting a stack in battle
 
- 	//abilities
 
- 	CDefEssential * abils82;
 
- 	//spells
 
- 	CDefEssential *spellscr; //spell on the scroll 83x61
 
- 	//functions
 
- 	Graphics();	
 
- 	void initializeBattleGraphics();
 
- 	void loadPaletteAndColors();
 
- 	void loadHeroFlags();
 
- 	void loadHeroFlags(std::pair<std::vector<CDefEssential *> Graphics::*, std::vector<const char *> > &pr, bool mode);
 
- 	void loadHeroAnims();
 
- 	void loadHeroAnim(const std::string &name, const std::vector<std::pair<int,int> > &rotations, std::vector<CDefEssential *> Graphics::*dst);
 
- 	void loadErmuToPicture();
 
- 	void blueToPlayersAdv(SDL_Surface * sur, int player); //replaces blue interface colour with a color of player
 
- 	void loadTrueType();
 
- 	void loadFonts();
 
- 	Font *loadFont(const char * name);
 
- };
 
- extern Graphics * graphics;
 
 
  |