BattleAI.h 3.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. /*
  2. * BattleAI.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/AI_Base.h"
  12. #include "PotentialTargets.h"
  13. class CSpell;
  14. class EnemyInfo;
  15. /*
  16. struct CurrentOffensivePotential
  17. {
  18. std::map<const CStack *, PotentialTargets> ourAttacks;
  19. std::map<const CStack *, PotentialTargets> enemyAttacks;
  20. CurrentOffensivePotential(ui8 side)
  21. {
  22. for(auto stack : cbc->battleGetStacks())
  23. {
  24. if(stack->side == side)
  25. ourAttacks[stack] = PotentialTargets(stack);
  26. else
  27. enemyAttacks[stack] = PotentialTargets(stack);
  28. }
  29. }
  30. int potentialValue()
  31. {
  32. int ourPotential = 0, enemyPotential = 0;
  33. for(auto &p : ourAttacks)
  34. ourPotential += p.second.bestAction().attackValue();
  35. for(auto &p : enemyAttacks)
  36. enemyPotential += p.second.bestAction().attackValue();
  37. return ourPotential - enemyPotential;
  38. }
  39. };
  40. */ // These lines may be usefull but they are't used in the code.
  41. class CBattleAI : public CBattleGameInterface
  42. {
  43. int side;
  44. std::shared_ptr<CBattleCallback> cb;
  45. //Previous setting of cb
  46. bool wasWaitingForRealize, wasUnlockingGs;
  47. public:
  48. CBattleAI();
  49. ~CBattleAI();
  50. void init(std::shared_ptr<CBattleCallback> CB) override;
  51. void attemptCastingSpell();
  52. BattleAction activeStack(const CStack * stack) override; //called when it's turn of that stack
  53. BattleAction goTowards(const CStack * stack, BattleHex hex );
  54. boost::optional<BattleAction> considerFleeingOrSurrendering();
  55. static int distToNearestNeighbour(BattleHex hex, const ReachabilityInfo::TDistances& dists, BattleHex *chosenHex = nullptr);
  56. static bool isCloser(const EnemyInfo & ei1, const EnemyInfo & ei2, const ReachabilityInfo::TDistances & dists);
  57. void print(const std::string &text) const;
  58. BattleAction useCatapult(const CStack *stack);
  59. void battleStart(const CCreatureSet * army1, const CCreatureSet * army2, int3 tile, const CGHeroInstance * hero1, const CGHeroInstance * hero2, bool Side) override;
  60. //void actionFinished(const BattleAction &action) override;//occurs AFTER every action taken by any stack or by the hero
  61. //void actionStarted(const BattleAction &action) override;//occurs BEFORE every action taken by any stack or by the hero
  62. //void battleAttack(const BattleAttack *ba) override; //called when stack is performing attack
  63. //void battleStacksAttacked(const std::vector<BattleStackAttacked> & bsa, const std::vector<MetaString> & battleLog) override; //called when stack receives damage (after battleAttack())
  64. //void battleEnd(const BattleResult *br) override;
  65. //void battleResultsApplied() override; //called when all effects of last battle are applied
  66. //void battleNewRoundFirst(int round) override; //called at the beginning of each turn before changes are applied;
  67. //void battleNewRound(int round) override; //called at the beginning of each turn, round=-1 is the tactic phase, round=0 is the first "normal" turn
  68. //void battleStackMoved(const CStack * stack, std::vector<BattleHex> dest, int distance) override;
  69. //void battleSpellCast(const BattleSpellCast *sc) override;
  70. //void battleStacksEffectsSet(const SetStackEffect & sse) override;//called when a specific effect is set to stacks
  71. //void battleTriggerEffect(const BattleTriggerEffect & bte) override;
  72. //void battleStart(const CCreatureSet *army1, const CCreatureSet *army2, int3 tile, const CGHeroInstance *hero1, const CGHeroInstance *hero2, bool side) override; //called by engine when battle starts; side=0 - left, side=1 - right
  73. //void battleCatapultAttacked(const CatapultAttack & ca) override; //called when catapult makes an attack
  74. };