2021-05-15 18:22:44 +02:00
|
|
|
/*
|
|
|
|
* CGoal.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 "AbstractGoal.h"
|
|
|
|
#include "../FuzzyHelper.h"
|
|
|
|
#include "../VCAI.h"
|
|
|
|
|
|
|
|
struct HeroPtr;
|
|
|
|
class VCAI;
|
|
|
|
|
|
|
|
namespace Goals
|
|
|
|
{
|
|
|
|
template<typename T> class DLL_EXPORT CGoal : public AbstractGoal
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
CGoal<T>(EGoals goal = INVALID) : AbstractGoal(goal)
|
|
|
|
{
|
2021-05-16 13:38:26 +02:00
|
|
|
isAbstract = true;
|
2021-05-15 18:22:44 +02:00
|
|
|
value = 0;
|
|
|
|
aid = -1;
|
|
|
|
objid = -1;
|
|
|
|
resID = -1;
|
|
|
|
tile = int3(-1, -1, -1);
|
|
|
|
town = nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
OSETTER(bool, isAbstract)
|
|
|
|
OSETTER(int, value)
|
|
|
|
OSETTER(int, resID)
|
|
|
|
OSETTER(int, objid)
|
|
|
|
OSETTER(int, aid)
|
|
|
|
OSETTER(int3, tile)
|
|
|
|
OSETTER(HeroPtr, hero)
|
|
|
|
OSETTER(CGTownInstance *, town)
|
|
|
|
OSETTER(int, bid)
|
|
|
|
|
|
|
|
CGoal<T> * clone() const override
|
|
|
|
{
|
|
|
|
return new T(static_cast<T const &>(*this)); //casting enforces template instantiation
|
|
|
|
}
|
|
|
|
template<typename Handler> void serialize(Handler & h, const int version)
|
|
|
|
{
|
|
|
|
h & static_cast<AbstractGoal &>(*this);
|
|
|
|
//h & goalType & isElementar & isAbstract & priority;
|
|
|
|
//h & value & resID & objid & aid & tile & hero & town & bid;
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual bool operator==(const AbstractGoal & g) const override
|
|
|
|
{
|
|
|
|
if(goalType != g.goalType)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
return (*this) == (static_cast<const T &>(g));
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual bool operator==(const T & other) const = 0;
|
2021-05-16 13:38:26 +02:00
|
|
|
|
|
|
|
virtual TGoalVec decompose() const override
|
|
|
|
{
|
2021-05-16 13:38:53 +02:00
|
|
|
TSubgoal single = decomposeSingle();
|
|
|
|
|
|
|
|
if(single->invalid())
|
|
|
|
return {};
|
|
|
|
|
|
|
|
return {single};
|
2021-05-16 13:38:26 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected:
|
|
|
|
virtual TSubgoal decomposeSingle() const
|
|
|
|
{
|
|
|
|
return sptr(Invalid());
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
template<typename T> class DLL_EXPORT ElementarGoal : public CGoal<T>, public ITask
|
|
|
|
{
|
|
|
|
public:
|
2021-05-16 13:38:53 +02:00
|
|
|
ElementarGoal<T>(EGoals goal = INVALID) : CGoal(goal), ITask()
|
2021-05-16 13:38:26 +02:00
|
|
|
{
|
|
|
|
isAbstract = false;
|
|
|
|
}
|
|
|
|
|
2021-05-16 13:38:53 +02:00
|
|
|
ElementarGoal<T>(const ElementarGoal<T> & other) : CGoal(other), ITask(other)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2021-05-16 13:38:26 +02:00
|
|
|
///Visitor pattern
|
|
|
|
//TODO: make accept work for std::shared_ptr... somehow
|
|
|
|
virtual void accept(VCAI * ai) override //unhandled goal will report standard error
|
|
|
|
{
|
2021-05-16 13:38:53 +02:00
|
|
|
ai->tryRealize(*((T *)this));
|
2021-05-16 13:38:26 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
T & setpriority(float p)
|
|
|
|
{
|
|
|
|
priority = p;
|
|
|
|
|
|
|
|
return *((T *)this);
|
|
|
|
}
|
2021-05-16 13:38:53 +02:00
|
|
|
|
|
|
|
virtual bool isElementar() const override
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
2021-05-16 13:38:26 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
class DLL_EXPORT Invalid : public ElementarGoal<Invalid>
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
Invalid()
|
|
|
|
: ElementarGoal(Goals::INVALID)
|
|
|
|
{
|
|
|
|
priority = -1;
|
|
|
|
}
|
|
|
|
TGoalVec decompose() const override
|
|
|
|
{
|
|
|
|
return TGoalVec();
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual bool operator==(const Invalid & other) const override
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual std::string toString() const override
|
|
|
|
{
|
|
|
|
return "Invalid";
|
|
|
|
}
|
2021-05-15 18:22:44 +02:00
|
|
|
};
|
|
|
|
}
|