Graphics.h 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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. class Graphics
  10. {
  11. public:
  12. //various graphics
  13. SDL_Surface * hInfo, *tInfo; //hero and town infobox bgs
  14. std::vector<std::pair<int, int> > slotsPos; //creature slot positions in infoboxes
  15. CDefEssential *luck22, *luck30, *luck42, *luck82,
  16. *morale22, *morale30, *morale42, *morale82,
  17. *halls, *forts, *bigTownPic;
  18. std::map<int,SDL_Surface*> heroWins; //hero_ID => infobox
  19. std::map<int,SDL_Surface*> townWins; //town_ID => infobox
  20. CDefHandler * artDefs; //artifacts
  21. std::vector<SDL_Surface *> portraitSmall; //48x32 px portraits of heroes
  22. std::vector<SDL_Surface *> portraitLarge; //58x64 px portraits of heroes
  23. std::vector<CDefHandler *> flags1, flags2, flags3, flags4; //flags blitted on heroes when ,
  24. CDefHandler * pskillsb, *resources; //82x93
  25. CDefHandler * un44; //many things
  26. CDefHandler * smallIcons, *resources32; //resources 32x32
  27. //creatures
  28. std::map<int,SDL_Surface*> smallImgs; //creature ID -> small 32x32 img of creature; //ID=-2 is for blank (black) img; -1 for the border
  29. std::map<int,SDL_Surface*> bigImgs; //creature ID -> big 58x64 img of creature; //ID=-2 is for blank (black) img; -1 for the border
  30. std::map<int,SDL_Surface*> backgrounds; //castle ID -> 100x130 background creature image // -1 is for neutral
  31. //functions
  32. Graphics();
  33. void loadHeroFlags();
  34. void loadHeroFlags(std::pair<std::vector<CDefHandler *> Graphics::*, std::vector<const char *> > &pr, bool mode);
  35. void loadHeroAnim(std::vector<CDefHandler **> & anims);
  36. void loadHeroPortraits();
  37. SDL_Surface * drawHeroInfoWin(const CGHeroInstance * curh);
  38. SDL_Surface * drawPrimarySkill(const CGHeroInstance *curh, SDL_Surface *ret, int from=0, int to=PRIMARY_SKILLS);
  39. SDL_Surface * drawTownInfoWin(const CGTownInstance * curh);
  40. SDL_Surface * getPic(int ID, bool fort=true, bool builded=false); //returns small picture of town: ID=-1 - blank; -2 - border; -3 - random
  41. };
  42. extern Graphics * graphics;