CGCreature.h 3.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. /*
  2. * CGCreature.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 "CArmedInstance.h"
  12. #include "../ResourceSet.h"
  13. #include "../MetaString.h"
  14. VCMI_LIB_NAMESPACE_BEGIN
  15. class DLL_LINKAGE CGCreature : public CArmedInstance //creatures on map
  16. {
  17. public:
  18. enum Action {
  19. FIGHT = -2, FLEE = -1, JOIN_FOR_FREE = 0 //values > 0 mean gold price
  20. };
  21. enum Character {
  22. COMPLIANT = 0, FRIENDLY = 1, AGGRESSIVE = 2, HOSTILE = 3, SAVAGE = 4
  23. };
  24. ui32 identifier; //unique code for this monster (used in missions)
  25. si8 character; //character of this set of creatures (0 - the most friendly, 4 - the most hostile) => on init changed to -4 (compliant) ... 10 value (savage)
  26. MetaString message; //message printed for attacking hero
  27. TResources resources; // resources given to hero that has won with monsters
  28. ArtifactID gainedArtifact; //ID of artifact gained to hero, -1 if none
  29. bool neverFlees; //if true, the troops will never flee
  30. bool notGrowingTeam; //if true, number of units won't grow
  31. ui64 temppower; //used to handle fractional stack growth for tiny stacks
  32. bool refusedJoining;
  33. void onHeroVisit(const CGHeroInstance * h) const override;
  34. std::string getHoverText(PlayerColor player) const override;
  35. std::string getHoverText(const CGHeroInstance * hero) const override;
  36. void initObj(CRandomGenerator & rand) override;
  37. void pickRandomObject(CRandomGenerator & rand) override;
  38. void newTurn(CRandomGenerator & rand) const override;
  39. void battleFinished(const CGHeroInstance *hero, const BattleResult &result) const override;
  40. void blockingDialogAnswered(const CGHeroInstance *hero, ui32 answer) const override;
  41. CreatureID getCreature() const;
  42. //stack formation depends on position,
  43. bool containsUpgradedStack() const;
  44. int getNumberOfStacks(const CGHeroInstance *hero) const;
  45. struct DLL_LINKAGE formationInfo // info about merging stacks after battle back into one
  46. {
  47. si32 basicType;
  48. ui8 upgrade; //random seed used to determine number of stacks and is there's upgraded stack
  49. template <typename Handler> void serialize(Handler &h, const int version)
  50. {
  51. h & basicType;
  52. h & upgrade;
  53. }
  54. } formation;
  55. template <typename Handler> void serialize(Handler &h, const int version)
  56. {
  57. h & static_cast<CArmedInstance&>(*this);
  58. h & identifier;
  59. h & character;
  60. h & message;
  61. h & resources;
  62. h & gainedArtifact;
  63. h & neverFlees;
  64. h & notGrowingTeam;
  65. h & temppower;
  66. h & refusedJoining;
  67. h & formation;
  68. }
  69. protected:
  70. void setPropertyDer(ui8 what, ui32 val) override;
  71. void serializeJsonOptions(JsonSerializeFormat & handler) override;
  72. private:
  73. void fight(const CGHeroInstance *h) const;
  74. void flee( const CGHeroInstance * h ) const;
  75. void fleeDecision(const CGHeroInstance *h, ui32 pursue) const;
  76. void joinDecision(const CGHeroInstance *h, int cost, ui32 accept) const;
  77. int takenAction(const CGHeroInstance *h, bool allowJoin=true) const; //action on confrontation: -2 - fight, -1 - flee, >=0 - will join for given value of gold (may be 0)
  78. void giveReward(const CGHeroInstance * h) const;
  79. };
  80. VCMI_LIB_NAMESPACE_END