2017-02-17 11:16:17 +02:00
|
|
|
/*
|
|
|
|
* BattleAI.h, part of VCMI engine
|
|
|
|
*
|
|
|
|
* Authors: listed in file AUTHORS in main folder
|
|
|
|
*
|
|
|
|
* License: GNU General Public License v2.0 or later
|
|
|
|
* Full text of license available in license.txt file, in main folder
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "../../lib/AI_Base.h"
|
2020-11-23 08:40:36 +02:00
|
|
|
#include "../../lib/battle/ReachabilityInfo.h"
|
2019-05-04 05:42:55 +02:00
|
|
|
#include "PossibleSpellcast.h"
|
2017-02-17 11:16:17 +02:00
|
|
|
#include "PotentialTargets.h"
|
|
|
|
|
2022-07-26 15:07:42 +02:00
|
|
|
VCMI_LIB_NAMESPACE_BEGIN
|
|
|
|
|
2017-02-17 11:16:17 +02:00
|
|
|
class CSpell;
|
2022-07-26 15:07:42 +02:00
|
|
|
|
|
|
|
VCMI_LIB_NAMESPACE_END
|
|
|
|
|
2017-02-17 11:16:17 +02:00
|
|
|
class EnemyInfo;
|
|
|
|
|
|
|
|
/*
|
|
|
|
struct CurrentOffensivePotential
|
|
|
|
{
|
|
|
|
std::map<const CStack *, PotentialTargets> ourAttacks;
|
|
|
|
std::map<const CStack *, PotentialTargets> enemyAttacks;
|
|
|
|
|
|
|
|
CurrentOffensivePotential(ui8 side)
|
|
|
|
{
|
|
|
|
for(auto stack : cbc->battleGetStacks())
|
|
|
|
{
|
2023-04-27 19:43:20 +02:00
|
|
|
if(stack->unitSide() == side)
|
2017-02-17 11:16:17 +02:00
|
|
|
ourAttacks[stack] = PotentialTargets(stack);
|
|
|
|
else
|
|
|
|
enemyAttacks[stack] = PotentialTargets(stack);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int potentialValue()
|
|
|
|
{
|
|
|
|
int ourPotential = 0, enemyPotential = 0;
|
|
|
|
for(auto &p : ourAttacks)
|
|
|
|
ourPotential += p.second.bestAction().attackValue();
|
|
|
|
|
|
|
|
for(auto &p : enemyAttacks)
|
|
|
|
enemyPotential += p.second.bestAction().attackValue();
|
|
|
|
|
|
|
|
return ourPotential - enemyPotential;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
*/ // These lines may be usefull but they are't used in the code.
|
|
|
|
|
|
|
|
class CBattleAI : public CBattleGameInterface
|
|
|
|
{
|
|
|
|
int side;
|
|
|
|
std::shared_ptr<CBattleCallback> cb;
|
Entities redesign and a few ERM features
* Made most Handlers derived from CHandlerBase and moved service API there.
* Declared existing Entity APIs.
* Added basic script context caching
* Started Lua script module
* Started Lua spell effect API
* Started script state persistence
* Started battle info callback binding
* CommitPackage removed
* Extracted spells::Caster to own header; Expanded Spell API.
* implemented !!MC:S, !!FU:E, !!FU:P, !!MA, !!VR:H, !!VR:C
* !!BU:C, !!BU:E, !!BU:G, !!BU:M implemented
* Allow use of "MC:S@varName@" to declare normal variable (technically v-variable with string key)
* Re-enabled VERM macros.
* !?GM0 added
* !?TM implemented
* Added !!MF:N
* Started !?OB, !!BM, !!HE, !!OW, !!UN
* Added basic support of w-variables
* Added support for ERM indirect variables
* Made !?FU regular trigger
* !!re (ERA loop receiver) implemented
* Fixed ERM receivers with zero args.
2018-03-17 16:58:30 +02:00
|
|
|
std::shared_ptr<Environment> env;
|
2017-02-17 11:16:17 +02:00
|
|
|
|
|
|
|
//Previous setting of cb
|
2023-07-24 22:01:18 +02:00
|
|
|
bool wasWaitingForRealize;
|
|
|
|
bool wasUnlockingGs;
|
2023-04-08 13:05:47 +02:00
|
|
|
int movesSkippedByDefense;
|
2023-08-19 09:22:34 +02:00
|
|
|
bool skipCastUntilNextBattle;
|
2017-02-17 11:16:17 +02:00
|
|
|
|
|
|
|
public:
|
2018-01-13 10:43:26 +02:00
|
|
|
CBattleAI();
|
|
|
|
~CBattleAI();
|
2017-02-17 11:16:17 +02:00
|
|
|
|
2022-12-07 21:50:45 +02:00
|
|
|
void initBattleInterface(std::shared_ptr<Environment> ENV, std::shared_ptr<CBattleCallback> CB) override;
|
2023-08-19 17:23:55 +02:00
|
|
|
void initBattleInterface(std::shared_ptr<Environment> ENV, std::shared_ptr<CBattleCallback> CB, AutocombatPreferences autocombatPreferences) override;
|
2019-05-04 05:42:55 +02:00
|
|
|
|
2023-08-28 17:59:12 +02:00
|
|
|
void activeStack(const BattleID & battleID, const CStack * stack) override; //called when it's turn of that stack
|
|
|
|
void yourTacticPhase(const BattleID & battleID, int distance) override;
|
2017-02-17 11:16:17 +02:00
|
|
|
|
2023-08-28 17:59:12 +02:00
|
|
|
std::optional<BattleAction> considerFleeingOrSurrendering(const BattleID & battleID);
|
2017-02-17 11:16:17 +02:00
|
|
|
|
|
|
|
void print(const std::string &text) const;
|
2023-08-28 17:59:12 +02:00
|
|
|
BattleAction useCatapult(const BattleID & battleID, const CStack *stack);
|
|
|
|
BattleAction useHealingTent(const BattleID & battleID, const CStack *stack);
|
2023-07-18 15:29:02 +02:00
|
|
|
|
2023-08-28 17:59:12 +02:00
|
|
|
void battleStart(const BattleID & battleID, const CCreatureSet * army1, const CCreatureSet * army2, int3 tile, const CGHeroInstance * hero1, const CGHeroInstance * hero2, bool Side, bool replayAllowed) override;
|
2017-02-17 11:16:17 +02:00
|
|
|
//void actionFinished(const BattleAction &action) override;//occurs AFTER every action taken by any stack or by the hero
|
|
|
|
//void actionStarted(const BattleAction &action) override;//occurs BEFORE every action taken by any stack or by the hero
|
|
|
|
//void battleAttack(const BattleAttack *ba) override; //called when stack is performing attack
|
2022-12-09 13:10:35 +02:00
|
|
|
//void battleStacksAttacked(const std::vector<BattleStackAttacked> & bsa, bool ranged) override; //called when stack receives damage (after battleAttack())
|
2023-04-06 17:34:07 +02:00
|
|
|
//void battleEnd(const BattleResult *br, QueryID queryID) override;
|
2017-02-17 11:16:17 +02:00
|
|
|
//void battleResultsApplied() override; //called when all effects of last battle are applied
|
|
|
|
//void battleNewRoundFirst(int round) override; //called at the beginning of each turn before changes are applied;
|
|
|
|
//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
|
|
|
|
//void battleStackMoved(const CStack * stack, std::vector<BattleHex> dest, int distance) override;
|
|
|
|
//void battleSpellCast(const BattleSpellCast *sc) override;
|
|
|
|
//void battleStacksEffectsSet(const SetStackEffect & sse) override;//called when a specific effect is set to stacks
|
|
|
|
//void battleTriggerEffect(const BattleTriggerEffect & bte) override;
|
|
|
|
//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
|
|
|
|
//void battleCatapultAttacked(const CatapultAttack & ca) override; //called when catapult makes an attack
|
2023-08-19 17:23:55 +02:00
|
|
|
AutocombatPreferences autobattlePreferences = AutocombatPreferences();
|
2017-02-17 11:16:17 +02:00
|
|
|
};
|