1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-01-28 03:57:02 +02:00
vcmi/AI/Nullkiller/Behaviors/DefenceBehavior.h

43 lines
773 B
C
Raw Normal View History

2021-05-16 13:53:32 +03:00
/*
* BuyArmyBehavior.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/VCMI_Lib.h"
#include "../Goals/CGoal.h"
2021-05-16 13:53:32 +03:00
#include "../AIUtility.h"
2022-09-26 21:01:07 +03:00
namespace NKAI
{
namespace Goals
2021-05-16 13:53:32 +03:00
{
class DefenceBehavior : public CGoal<DefenceBehavior>
2021-05-16 13:53:32 +03:00
{
public:
DefenceBehavior()
2021-05-16 14:38:53 +03:00
:CGoal(DEFENCE)
{
}
2021-05-16 13:53:32 +03:00
virtual Goals::TGoalVec decompose() const override;
virtual std::string toString() const override;
2021-05-16 13:53:32 +03:00
virtual bool operator==(const DefenceBehavior & other) const override
{
return true;
}
private:
void evaluateDefence(Goals::TGoalVec & tasks, const CGTownInstance * town) const;
};
}
2021-05-16 13:53:32 +03:00
2022-09-26 21:01:07 +03:00
}