CBonusTypeHandler.h 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. /*
  2. * CBonusTypeHandler.h, part of VCMI engine
  3. *
  4. * Authors: listed in file AUTHORS in main folder
  5. *
  6. * License: GNU General Public License v2.0 or later
  7. * Full text of license available in license.txt file, in main folder
  8. *
  9. */
  10. #pragma once
  11. #include "IBonusTypeHandler.h"
  12. #include "IHandlerBase.h"
  13. #include "bonuses/Bonus.h"
  14. VCMI_LIB_NAMESPACE_BEGIN
  15. class JsonNode;
  16. class DLL_LINKAGE CBonusType
  17. {
  18. public:
  19. CBonusType();
  20. std::string getNameTextID() const;
  21. std::string getDescriptionTextID() const;
  22. private:
  23. friend class CBonusTypeHandler;
  24. ImagePath icon;
  25. std::map<int, ImagePath> subtypeIcons;
  26. std::map<int, ImagePath> valueIcons;
  27. std::string identifier;
  28. bool hidden;
  29. };
  30. class DLL_LINKAGE CBonusTypeHandler : public IBonusTypeHandler
  31. {
  32. public:
  33. CBonusTypeHandler();
  34. virtual ~CBonusTypeHandler();
  35. std::string bonusToString(const std::shared_ptr<Bonus> & bonus, const IBonusBearer * bearer, bool description) const override;
  36. ImagePath bonusToGraphics(const std::shared_ptr<Bonus> & bonus) const override;
  37. std::vector<JsonNode> loadLegacyData() override;
  38. void loadObject(std::string scope, std::string name, const JsonNode & data) override;
  39. void loadObject(std::string scope, std::string name, const JsonNode & data, size_t index) override;
  40. private:
  41. void loadItem(const JsonNode & source, CBonusType & dest, const std::string & name) const;
  42. std::vector<CBonusType> bonusTypes; //index = BonusType
  43. };
  44. VCMI_LIB_NAMESPACE_END
  45. #ifndef INSTANTIATE_CBonusTypeHandler_HERE
  46. extern template class std::vector<VCMI_LIB_WRAP_NAMESPACE(CBonusType)>;
  47. #endif