Graphics.h 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. #ifndef __GRAPHICS_H__
  2. #define __GRAPHICS_H__
  3. #include "../global.h"
  4. #include "FontBase.h"
  5. #include "GUIBase.h"
  6. /*
  7. * Graphics.h, part of VCMI engine
  8. *
  9. * Authors: listed in file AUTHORS in main folder
  10. *
  11. * License: GNU General Public License v2.0 or later
  12. * Full text of license available in license.txt file, in main folder
  13. *
  14. */
  15. class CDefEssential;
  16. struct SDL_Surface;
  17. class CGHeroInstance;
  18. class CGTownInstance;
  19. class CDefHandler;
  20. class CHeroClass;
  21. struct SDL_Color;
  22. struct InfoAboutHero;
  23. struct InfoAboutTown;
  24. typedef struct _TTF_Font TTF_Font; //from SDL_ttf.h
  25. class Graphics
  26. {
  27. public:
  28. //Fonts
  29. static const int FONTS_NUMBER = 9;
  30. Font *fonts[FONTS_NUMBER];
  31. TTF_Font * fontsTrueType[FONTS_NUMBER];//true type fonts, if some of the fonts not loaded - NULL
  32. //various graphics
  33. SDL_Color * playerColors; //array [8]
  34. SDL_Color * neutralColor;
  35. SDL_Color * playerColorPalette; //palette to make interface colors good - array of size [256]
  36. SDL_Color * neutralColorPalette;
  37. SDL_Surface * hInfo, *tInfo; //hero and town infobox bgs
  38. SDL_Surface *heroInGarrison; //icon for town infobox
  39. std::vector<std::pair<int, int> > slotsPos; //creature slot positions in infoboxes
  40. CDefEssential *luck22, *luck30, *luck42, *luck82,
  41. *morale22, *morale30, *morale42, *morale82,
  42. *halls, *forts, *bigTownPic;
  43. CDefEssential * artDefs; //artifacts
  44. std::vector<SDL_Surface *> portraitSmall; //48x32 px portraits of heroes
  45. std::vector<SDL_Surface *> portraitLarge; //58x64 px portraits of heroes
  46. std::vector<CDefEssential *> flags1, flags2, flags3, flags4; //flags blitted on heroes when ,
  47. CDefEssential * pskillsb, *resources; //82x93
  48. CDefEssential * pskillsm; //42x42 primary skills
  49. CDefEssential * pskillst; //32x32
  50. CDefEssential * un32; //many small things
  51. CDefEssential * un44; //many things
  52. CDefEssential * smallIcons, *resources32; //resources 32x32
  53. CDefEssential * flags;
  54. 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
  55. 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
  56. std::map<std::string, CDefEssential*> mapObjectDefs; //pointers to loaded defs (key is filename, uppercase)
  57. CDefHandler * FoWfullHide; //for Fog of War
  58. CDefHandler * FoWpartialHide; //for For of War
  59. //creatures
  60. std::map<int,SDL_Surface*> smallImgs; //creature ID -> small 32x32 img of creature; //ID=-2 is for blank (black) img; -1 for the border
  61. std::map<int,SDL_Surface*> bigImgs; //creature ID -> big 58x64 img of creature; //ID=-2 is for blank (black) img; -1 for the border
  62. std::map<int,SDL_Surface*> backgrounds; //castle ID -> 100x130 background creature image // -1 is for neutral
  63. std::map<int,SDL_Surface*> backgroundsm; //castle ID -> 100x120 background creature image // -1 is for neutral
  64. //towns
  65. std::vector< std::string > buildingPics;//filenames of def with building images (used rarely, too big to keep them loaded)
  66. std::vector< std::string > townBgs;//backgrounds of town
  67. std::vector< std::string > guildBgs;// name of bitmaps with imgs for mage guild screen
  68. //for battles
  69. std::vector< std::vector< std::string > > battleBacks; //battleBacks[terType] - vector of possible names for certain terrain type
  70. std::vector< std::string > battleHeroes; //battleHeroes[hero type] - name of def that has hero animation for battle
  71. std::map< int, std::vector < std::string > > battleACToDef; //maps AC format to vector of appropriate def names
  72. CDefEssential * spellEffectsPics; //bitmaps representing spells affecting a stack in battle
  73. std::vector< Point > wallPositions[F_NUMBER]; //positions of different pieces of wall <x, y>
  74. //abilities
  75. CDefEssential * abils32, * abils44, * abils82;
  76. //spells
  77. CDefEssential *spellscr; //spell on the scroll 83x61
  78. //functions
  79. Graphics();
  80. void initializeBattleGraphics();
  81. void loadPaletteAndColors();
  82. void loadHeroFlags();
  83. void loadHeroFlags(std::pair<std::vector<CDefEssential *> Graphics::*, std::vector<const char *> > &pr, bool mode);
  84. void loadHeroAnims();
  85. void loadHeroAnim(const std::string &name, const std::vector<std::pair<int,int> > &rotations, std::vector<CDefEssential *> Graphics::*dst);
  86. void loadHeroPortraits();
  87. void loadWallPositions();
  88. SDL_Surface * drawHeroInfoWin(const InfoAboutHero &curh);
  89. SDL_Surface * drawHeroInfoWin(const CGHeroInstance * curh);
  90. SDL_Surface * drawTownInfoWin(const InfoAboutTown & curh);
  91. SDL_Surface * drawTownInfoWin(const CGTownInstance * curh);
  92. SDL_Surface * getPic(int ID, bool fort=true, bool builded=false); //returns small picture of town: ID=-1 - blank; -2 - border; -3 - random
  93. void blueToPlayersAdv(SDL_Surface * sur, int player); //replaces blue interface colour with a color of player
  94. void loadTrueType();
  95. void loadFonts();
  96. Font *loadFont(const char * name);
  97. };
  98. extern Graphics * graphics;
  99. #endif // __GRAPHICS_H__