| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- /*
- * 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)
- {
- priority = 0;
- isElementar = false;
- isAbstract = false;
- value = 0;
- aid = -1;
- objid = -1;
- resID = -1;
- tile = int3(-1, -1, -1);
- town = nullptr;
- }
- OSETTER(bool, isElementar)
- OSETTER(bool, isAbstract)
- OSETTER(float, priority)
- OSETTER(int, value)
- OSETTER(int, resID)
- OSETTER(int, objid)
- OSETTER(int, aid)
- OSETTER(int3, tile)
- OSETTER(HeroPtr, hero)
- OSETTER(CGTownInstance *, town)
- OSETTER(int, bid)
- void accept(VCAI * ai) override
- {
- ai->tryRealize(static_cast<T &>(*this)); //casting enforces template instantiation
- }
- float accept(FuzzyHelper * f) override
- {
- return f->evaluate(static_cast<T &>(*this)); //casting enforces template instantiation
- }
- CGoal<T> * clone() const override
- {
- return new T(static_cast<T const &>(*this)); //casting enforces template instantiation
- }
- TSubgoal iAmElementar() const
- {
- TSubgoal ptr;
- ptr.reset(clone());
- ptr->setisElementar(true);
- return ptr;
- }
- 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;
- };
- }
|