CSkillHandler.h 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. /*
  2. * CSkillHandler.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 <vcmi/Skill.h>
  12. #include <vcmi/SkillService.h>
  13. #include "../lib/bonuses/Bonus.h"
  14. #include "GameConstants.h"
  15. #include "IHandlerBase.h"
  16. VCMI_LIB_NAMESPACE_BEGIN
  17. class JsonSerializeFormat;
  18. class DLL_LINKAGE CSkill : public Skill
  19. {
  20. public:
  21. struct LevelInfo
  22. {
  23. std::string iconSmall;
  24. std::string iconMedium;
  25. std::string iconLarge;
  26. std::vector<std::shared_ptr<Bonus>> effects;
  27. };
  28. private:
  29. std::vector<LevelInfo> levels; // bonuses provided by basic, advanced and expert level
  30. void addNewBonus(const std::shared_ptr<Bonus> & b, int level);
  31. SecondarySkill id;
  32. std::string modScope;
  33. std::string identifier;
  34. public:
  35. CSkill(const SecondarySkill & id = SecondarySkill::NONE, std::string identifier = "default", bool obligatoryMajor = false, bool obligatoryMinor = false);
  36. ~CSkill() = default;
  37. enum class Obligatory : ui8
  38. {
  39. MAJOR = 0,
  40. MINOR = 1,
  41. };
  42. int32_t getIndex() const override;
  43. int32_t getIconIndex() const override;
  44. std::string getJsonKey() const override;
  45. void registerIcons(const IconRegistar & cb) const override;
  46. SecondarySkill getId() const override;
  47. std::string getNameTextID() const override;
  48. std::string getNameTranslated() const override;
  49. std::string getDescriptionTextID(int level) const override;
  50. std::string getDescriptionTranslated(int level) const override;
  51. const LevelInfo & at(int level) const;
  52. LevelInfo & at(int level);
  53. std::string toString() const;
  54. bool obligatory(Obligatory val) const { return val == Obligatory::MAJOR ? obligatoryMajor : obligatoryMinor; };
  55. std::array<si32, 2> gainChance; // gainChance[0/1] = default gain chance on level-up for might/magic heroes
  56. void updateFrom(const JsonNode & data);
  57. void serializeJson(JsonSerializeFormat & handler);
  58. bool onlyOnWaterMap;
  59. friend class CSkillHandler;
  60. friend DLL_LINKAGE std::ostream & operator<<(std::ostream & out, const CSkill & skill);
  61. friend DLL_LINKAGE std::ostream & operator<<(std::ostream & out, const CSkill::LevelInfo & info);
  62. private:
  63. bool obligatoryMajor;
  64. bool obligatoryMinor;
  65. };
  66. class DLL_LINKAGE CSkillHandler: public CHandlerBase<SecondarySkill, Skill, CSkill, SkillService>
  67. {
  68. public:
  69. ///IHandler base
  70. std::vector<JsonNode> loadLegacyData() override;
  71. void afterLoadFinalization() override;
  72. void beforeValidate(JsonNode & object) override;
  73. std::set<SecondarySkill> getDefaultAllowed() const;
  74. protected:
  75. const std::vector<std::string> & getTypeNames() const override;
  76. CSkill * loadFromJson(const std::string & scope, const JsonNode & json, const std::string & identifier, size_t index) override;
  77. };
  78. VCMI_LIB_NAMESPACE_END