Files
vcmi/AI/StupidAI/StupidAI.h
T

55 lines
2.7 KiB
C++
Raw Normal View History

/*
* StupidAI.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
*
*/
2010-12-22 20:14:40 +00:00
#pragma once
#include "../../lib/battle/BattleHex.h"
#include "../../lib/battle/ReachabilityInfo.h"
class EnemyInfo;
2010-12-22 20:14:40 +00:00
class CStupidAI : public CBattleGameInterface
{
2010-12-25 01:43:40 +00:00
int side;
std::shared_ptr<CBattleCallback> cb;
2018-03-17 17:58:30 +03:00
std::shared_ptr<Environment> env;
2010-12-25 01:43:40 +00:00
2023-07-24 23:01:18 +03:00
bool wasWaitingForRealize;
bool wasUnlockingGs;
2010-12-25 01:43:40 +00:00
void print(const std::string &text) const;
2010-12-22 20:14:40 +00:00
public:
CStupidAI();
~CStupidAI();
2010-12-22 20:14:40 +00:00
void initBattleInterface(std::shared_ptr<Environment> ENV, std::shared_ptr<CBattleCallback> CB) override;
2023-08-20 13:53:25 +02:00
void initBattleInterface(std::shared_ptr<Environment> ENV, std::shared_ptr<CBattleCallback> CB, AutocombatPreferences autocombatPreferences) override;
2013-06-26 11:18:27 +00: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 activeStack(const CStack * stack) override; //called when it's turn of that stack
2023-07-18 21:43:53 +03:00
void yourTacticPhase(int distance) override;
2010-12-25 01:43:40 +00:00
2013-06-26 11:18:27 +00:00
void battleAttack(const BattleAttack *ba) override; //called when stack is performing attack
void battleStacksAttacked(const std::vector<BattleStackAttacked> & bsa, bool ranged) override; //called when stack receives damage (after battleAttack())
2023-04-06 19:34:07 +04:00
void battleEnd(const BattleResult *br, QueryID queryID) override;
2013-06-26 11:18:27 +00: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
2022-12-18 18:26:43 +02:00
void battleStackMoved(const CStack * stack, std::vector<BattleHex> dest, int distance, bool teleport) override;
2013-06-26 11:18:27 +00:00
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;
2023-07-27 18:40:47 +03:00
void battleStart(const CCreatureSet *army1, const CCreatureSet *army2, int3 tile, const CGHeroInstance *hero1, const CGHeroInstance *hero2, bool side, bool replayAllowed) override; //called by engine when battle starts; side=0 - left, side=1 - right
2013-06-26 11:18:27 +00:00
void battleCatapultAttacked(const CatapultAttack & ca) override; //called when catapult makes an attack
2010-12-25 01:43:40 +00:00
private:
BattleAction goTowards(const CStack * stack, std::vector<BattleHex> hexes) const;
2010-12-22 20:14:40 +00:00
};