AINodeStorage.h 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. /*
  2. * AINodeStorage.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 "../../../lib/mapObjects/CGHeroInstance.h"
  12. #include "../../../lib/pathfinder/CGPathNode.h"
  13. #include "../../../lib/pathfinder/INodeStorage.h"
  14. #include "../AIUtility.h"
  15. #include "../FuzzyHelper.h"
  16. #include "../Goals/AbstractGoal.h"
  17. #include "Actions/ISpecialAction.h"
  18. class CCallback;
  19. struct AIPathNode : public CGPathNode
  20. {
  21. uint32_t chainMask;
  22. uint64_t danger;
  23. uint32_t manaCost;
  24. std::shared_ptr<const ISpecialAction> specialAction;
  25. };
  26. struct AIPathNodeInfo
  27. {
  28. float cost;
  29. int turns;
  30. int3 coord;
  31. uint64_t danger;
  32. };
  33. struct AIPath
  34. {
  35. std::vector<AIPathNodeInfo> nodes;
  36. std::shared_ptr<const ISpecialAction> specialAction;
  37. uint64_t targetObjectDanger;
  38. AIPath();
  39. /// Gets danger of path excluding danger of visiting the target object like creature bank
  40. uint64_t getPathDanger() const;
  41. /// Gets danger of path including danger of visiting the target object like creature bank
  42. uint64_t getTotalDanger(HeroPtr hero) const;
  43. int3 firstTileToGet() const;
  44. float movementCost() const;
  45. };
  46. class AINodeStorage : public INodeStorage
  47. {
  48. private:
  49. int3 sizes;
  50. // 1 - layer (air, water, land)
  51. // 2-4 - position on map[z][x][y]
  52. // 5 - chain (normal, battle, spellcast and combinations)
  53. boost::multi_array<AIPathNode, 5> nodes;
  54. const CPlayerSpecificInfoCallback * cb;
  55. const VCAI * ai;
  56. const CGHeroInstance * hero;
  57. std::unique_ptr<FuzzyHelper> dangerEvaluator;
  58. STRONG_INLINE
  59. void resetTile(const int3 & tile, EPathfindingLayer layer, EPathAccessibility accessibility);
  60. public:
  61. /// more than 1 chain layer allows us to have more than 1 path to each tile so we can chose more optimal one.
  62. static const int NUM_CHAINS = 3;
  63. // chain flags, can be combined
  64. static const int NORMAL_CHAIN = 1;
  65. static const int BATTLE_CHAIN = 2;
  66. static const int CAST_CHAIN = 4;
  67. static const int RESOURCE_CHAIN = 8;
  68. AINodeStorage(const int3 & sizes);
  69. ~AINodeStorage();
  70. void initialize(const PathfinderOptions & options, const CGameState * gs) override;
  71. virtual std::vector<CGPathNode *> getInitialNodes() override;
  72. virtual std::vector<CGPathNode *> calculateNeighbours(
  73. const PathNodeInfo & source,
  74. const PathfinderConfig * pathfinderConfig,
  75. const CPathfinderHelper * pathfinderHelper) override;
  76. virtual std::vector<CGPathNode *> calculateTeleportations(
  77. const PathNodeInfo & source,
  78. const PathfinderConfig * pathfinderConfig,
  79. const CPathfinderHelper * pathfinderHelper) override;
  80. virtual void commit(CDestinationNodeInfo & destination, const PathNodeInfo & source) override;
  81. const AIPathNode * getAINode(const CGPathNode * node) const;
  82. void updateAINode(CGPathNode * node, std::function<void (AIPathNode *)> updater);
  83. bool isBattleNode(const CGPathNode * node) const;
  84. bool hasBetterChain(const PathNodeInfo & source, CDestinationNodeInfo & destination) const;
  85. std::optional<AIPathNode *> getOrCreateNode(const int3 & coord, const EPathfindingLayer layer, int chainNumber);
  86. std::vector<AIPath> getChainInfo(const int3 & pos, bool isOnLand) const;
  87. bool isTileAccessible(const int3 & pos, const EPathfindingLayer layer) const;
  88. void setHero(HeroPtr heroPtr, const VCAI * ai);
  89. const CGHeroInstance * getHero() const { return hero; }
  90. uint64_t evaluateDanger(const int3 & tile) const
  91. {
  92. return dangerEvaluator->evaluateDanger(tile, hero, ai);
  93. }
  94. private:
  95. void calculateTownPortalTeleportations(const PathNodeInfo & source, std::vector<CGPathNode *> & neighbours);
  96. };