2021-05-16 13:14:17 +02:00
|
|
|
/*
|
|
|
|
* BuildingBehavior.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 "../AIUtility.h"
|
2021-05-16 13:38:26 +02:00
|
|
|
#include "../Goals/CGoal.h"
|
2021-05-16 13:14:17 +02:00
|
|
|
|
2022-09-26 20:01:07 +02:00
|
|
|
namespace NKAI
|
|
|
|
{
|
2021-05-16 13:38:26 +02:00
|
|
|
namespace Goals
|
2021-05-16 13:14:17 +02:00
|
|
|
{
|
2021-05-16 13:38:26 +02:00
|
|
|
class BuildingBehavior : public CGoal<BuildingBehavior>
|
2021-05-16 13:14:17 +02:00
|
|
|
{
|
2021-05-16 13:38:26 +02:00
|
|
|
public:
|
|
|
|
BuildingBehavior()
|
2021-05-16 13:38:53 +02:00
|
|
|
:CGoal(Goals::BUILD)
|
2021-05-16 13:38:26 +02:00
|
|
|
{
|
|
|
|
}
|
2021-05-16 13:14:17 +02:00
|
|
|
|
2021-05-16 13:38:26 +02:00
|
|
|
virtual Goals::TGoalVec decompose() const override;
|
|
|
|
virtual std::string toString() const override;
|
|
|
|
virtual bool operator==(const BuildingBehavior & other) const override
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
2021-05-16 13:14:17 +02:00
|
|
|
|
2022-09-26 20:01:07 +02:00
|
|
|
}
|