Graphics.h 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. #pragma once
  2. #include "gui/Fonts.h"
  3. #include "../lib/GameConstants.h"
  4. #include "gui/Geometries.h"
  5. /*
  6. * Graphics.h, part of VCMI engine
  7. *
  8. * Authors: listed in file AUTHORS in main folder
  9. *
  10. * License: GNU General Public License v2.0 or later
  11. * Full text of license available in license.txt file, in main folder
  12. *
  13. */
  14. class CDefEssential;
  15. struct SDL_Surface;
  16. class CGHeroInstance;
  17. class CGTownInstance;
  18. class CDefHandler;
  19. class CHeroClass;
  20. struct SDL_Color;
  21. struct InfoAboutHero;
  22. struct InfoAboutTown;
  23. class CGObjectInstance;
  24. class ObjectTemplate;
  25. enum EFonts
  26. {
  27. FONT_BIG, FONT_CALLI, FONT_CREDITS, FONT_HIGH_SCORE, FONT_MEDIUM, FONT_SMALL, FONT_TIMES, FONT_TINY, FONT_VERD
  28. };
  29. /// Handles fonts, hero images, town images, various graphics
  30. class Graphics
  31. {
  32. void addImageListEntry(size_t index, std::string listName, std::string imageName);
  33. public:
  34. //Fonts
  35. static const int FONTS_NUMBER = 9;
  36. IFont * fonts[FONTS_NUMBER];
  37. \
  38. //various graphics
  39. SDL_Color * playerColors; //array [8]
  40. SDL_Color * neutralColor;
  41. SDL_Color * playerColorPalette; //palette to make interface colors good - array of size [256]
  42. SDL_Color * neutralColorPalette;
  43. std::vector<CDefEssential *> flags1, flags2, flags3, flags4; //flags blitted on heroes when ,
  44. CDefEssential * resources32; //resources 32x32
  45. CDefEssential * heroMoveArrows;
  46. std::map<std::string, CDefEssential *> heroAnims; // [hero class def name] //added group 10: up - left, 11 - left and 12 - left down // 13 - up-left standing; 14 - left standing; 15 - left down standing
  47. 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
  48. CDefHandler * FoWfullHide; //for Fog of War
  49. CDefHandler * FoWpartialHide; //for For of War
  50. std::map<std::string, JsonNode> imageLists;
  51. std::map<std::string, CDefEssential *> advmapobjGraphics;
  52. CDefEssential * getDef(const CGObjectInstance * obj);
  53. CDefEssential * getDef(const ObjectTemplate & info);
  54. //towns
  55. std::map<int, std::string> ERMUtoPicture[GameConstants::F_NUMBER]; //maps building ID to it's picture's name for each town type
  56. //for battles
  57. std::vector< std::vector< std::string > > battleBacks; //battleBacks[terType] - vector of possible names for certain terrain type
  58. std::map< int, std::vector < std::string > > battleACToDef; //maps AC format to vector of appropriate def names
  59. CDefEssential * spellEffectsPics; //bitmaps representing spells affecting a stack in battle
  60. //spells
  61. CDefEssential *spellscr; //spell on the scroll 83x61
  62. //functions
  63. Graphics();
  64. void initializeBattleGraphics();
  65. void loadPaletteAndColors();
  66. void loadHeroFlags();
  67. void loadHeroFlagsDetail(std::pair<std::vector<CDefEssential *> Graphics::*, std::vector<const char *> > &pr, bool mode);
  68. void loadHeroAnims();
  69. CDefEssential * loadHeroAnim(const std::string &name, const std::vector<std::pair<int,int> > &rotations);
  70. void loadErmuToPicture();
  71. void blueToPlayersAdv(SDL_Surface * sur, PlayerColor player); //replaces blue interface colour with a color of player
  72. void loadFonts();
  73. void initializeImageLists();
  74. };
  75. extern Graphics * graphics;