mirror of
https://github.com/vcmi/vcmi.git
synced 2024-12-30 23:18:08 +02:00
678cacbd25
`grep -nr "virtual " | grep -v googletest | grep " override" | grep -v overriden > ../redundant_virtual.txt` ```python import os with open("../redundant_virtual.txt") as f: for line in f: print() line: str = line.strip() print(line) tmp = line.split(":",2) file = tmp[0].strip() code = tmp[-1].strip() print(file) print(code) new_code = code.replace("virtual ", "", 1) # https://superuser.com/a/802490/578501 command = f"export FIND='{code}' && export REPLACE='{new_code}' && ruby -p -i -e \"gsub(ENV['FIND'], ENV['REPLACE'])\" {file}" os.system(command) ```
102 lines
2.0 KiB
C++
102 lines
2.0 KiB
C++
/*
|
|
* 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"
|
|
|
|
namespace NKAI
|
|
{
|
|
|
|
struct HeroPtr;
|
|
class AIGateway;
|
|
|
|
namespace Goals
|
|
{
|
|
template<typename T> class DLL_EXPORT CGoal : public AbstractGoal
|
|
{
|
|
public:
|
|
CGoal<T>(EGoals goal = INVALID) : AbstractGoal(goal)
|
|
{
|
|
isAbstract = true;
|
|
value = 0;
|
|
aid = -1;
|
|
objid = -1;
|
|
resID = -1;
|
|
tile = int3(-1, -1, -1);
|
|
town = nullptr;
|
|
}
|
|
|
|
CGoal<T> * clone() const override
|
|
{
|
|
return new T(static_cast<T const &>(*this)); //casting enforces template instantiation
|
|
}
|
|
template<typename Handler> void serialize(Handler & h)
|
|
{
|
|
h & static_cast<AbstractGoal &>(*this);
|
|
//h & goalType & isElementar & isAbstract & priority;
|
|
//h & value & resID & objid & aid & tile & hero & town & bid;
|
|
}
|
|
|
|
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;
|
|
|
|
TGoalVec decompose() const override
|
|
{
|
|
TSubgoal single = decomposeSingle();
|
|
|
|
if(!single || single->invalid())
|
|
return {};
|
|
|
|
return {single};
|
|
}
|
|
|
|
protected:
|
|
virtual TSubgoal decomposeSingle() const
|
|
{
|
|
return TSubgoal();
|
|
}
|
|
};
|
|
|
|
template<typename T> class DLL_EXPORT ElementarGoal : public CGoal<T>, public ITask
|
|
{
|
|
public:
|
|
ElementarGoal<T>(EGoals goal = INVALID) : CGoal<T>(goal), ITask()
|
|
{
|
|
AbstractGoal::isAbstract = false;
|
|
}
|
|
|
|
ElementarGoal<T>(const ElementarGoal<T> & other) : CGoal<T>(other), ITask(other)
|
|
{
|
|
}
|
|
|
|
T & setpriority(float p)
|
|
{
|
|
ITask::priority = p;
|
|
|
|
return *((T *)this);
|
|
}
|
|
|
|
bool isElementar() const override { return true; }
|
|
|
|
HeroPtr getHero() const override { return AbstractGoal::hero; }
|
|
|
|
int getHeroExchangeCount() const override { return 0; }
|
|
};
|
|
}
|
|
|
|
}
|