Graphics.h 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. #pragma once
  2. #include "../global.h"
  3. class CDefEssential;
  4. struct SDL_Surface;
  5. class CGHeroInstance;
  6. class CGTownInstance;
  7. class CDefHandler;
  8. class CHeroClass;
  9. struct SDL_Color;
  10. class Graphics
  11. {
  12. public:
  13. //various graphics
  14. SDL_Color * playerColors; //array [8]
  15. SDL_Color * neutralColor;
  16. SDL_Color * playerColorPalette; //palette to make interface colors good - array of size [256]
  17. SDL_Surface * hInfo, *tInfo; //hero and town infobox bgs
  18. SDL_Surface *heroInGarrison; //icon for town infobox
  19. std::vector<std::pair<int, int> > slotsPos; //creature slot positions in infoboxes
  20. CDefEssential *luck22, *luck30, *luck42, *luck82,
  21. *morale22, *morale30, *morale42, *morale82,
  22. *halls, *forts, *bigTownPic;
  23. std::map<int,SDL_Surface*> heroWins; //hero_ID => infobox
  24. std::map<int,SDL_Surface*> townWins; //town_ID => infobox
  25. CDefHandler * artDefs; //artifacts
  26. std::vector<SDL_Surface *> portraitSmall; //48x32 px portraits of heroes
  27. std::vector<SDL_Surface *> portraitLarge; //58x64 px portraits of heroes
  28. std::vector<CDefHandler *> flags1, flags2, flags3, flags4; //flags blitted on heroes when ,
  29. CDefHandler * pskillsb, *resources; //82x93
  30. CDefHandler * pskillsm; //42x42
  31. CDefHandler * un44; //many things
  32. CDefHandler * smallIcons, *resources32; //resources 32x32
  33. CDefHandler * flags;
  34. //creatures
  35. std::map<int,SDL_Surface*> smallImgs; //creature ID -> small 32x32 img of creature; //ID=-2 is for blank (black) img; -1 for the border
  36. std::map<int,SDL_Surface*> bigImgs; //creature ID -> big 58x64 img of creature; //ID=-2 is for blank (black) img; -1 for the border
  37. std::map<int,SDL_Surface*> backgrounds; //castle ID -> 100x130 background creature image // -1 is for neutral
  38. std::map<int,SDL_Surface*> backgroundsm; //castle ID -> 100x120 background creature image // -1 is for neutral
  39. //for battles
  40. std::vector< std::vector< std::string > > battleBacks; //battleBacks[terType] - vector of possible names for certain terrain type
  41. std::vector< std::string > battleHeroes; //battleHeroes[hero type] - name of def that has hero animation for battle
  42. std::map< int, std::vector < std::string > > battleACToDef; //maps AC format to vector of appropriate def names
  43. CDefHandler * spellEffectsPics; //bitmaps representing spells affecting a stack in battle
  44. std::vector<std::string> guildBgs;// name of bitmaps with imgs for mage guild screen
  45. //functions
  46. Graphics();
  47. void initializeBattleGraphics();
  48. void loadPaletteAndColors();
  49. void loadHeroFlags();
  50. void loadHeroFlags(std::pair<std::vector<CDefHandler *> Graphics::*, std::vector<const char *> > &pr, bool mode);
  51. void loadHeroAnim(std::vector<CDefHandler **> & anims);
  52. void loadHeroPortraits();
  53. SDL_Surface * drawHeroInfoWin(const CGHeroInstance * curh);
  54. SDL_Surface * drawPrimarySkill(const CGHeroInstance *curh, SDL_Surface *ret, int from=0, int to=PRIMARY_SKILLS);
  55. SDL_Surface * drawTownInfoWin(const CGTownInstance * curh);
  56. SDL_Surface * getPic(int ID, bool fort=true, bool builded=false); //returns small picture of town: ID=-1 - blank; -2 - border; -3 - random
  57. void blueToPlayersAdv(SDL_Surface * sur, int player); //replaces blue interface colour with a color of player
  58. };
  59. extern Graphics * graphics;