mirror of
https://github.com/vcmi/vcmi.git
synced 2025-06-15 00:05:02 +02:00
formatting
This commit is contained in:
@ -16,7 +16,7 @@ boost::thread_specific_ptr<AIhelper> ah;
|
|||||||
|
|
||||||
AIhelper::AIhelper()
|
AIhelper::AIhelper()
|
||||||
{
|
{
|
||||||
resourceManager.reset(new ResourceManager);
|
resourceManager.reset(new ResourceManager());
|
||||||
}
|
}
|
||||||
|
|
||||||
AIhelper::~AIhelper()
|
AIhelper::~AIhelper()
|
||||||
|
@ -220,7 +220,7 @@ namespace Goals
|
|||||||
}
|
}
|
||||||
std::string BuyArmy::completeMessage() const
|
std::string BuyArmy::completeMessage() const
|
||||||
{
|
{
|
||||||
return boost::format("Bought army of value %d in town of %s") % boost::lexical_cast<std::string>(value), town->name;
|
return boost::format("Bought army of value %d in town of %s") % value, town->name;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -537,8 +537,10 @@ TSubgoal ClearWayTo::whatToDoToAchieve()
|
|||||||
bool Goals::ClearWayTo::fulfillsMe(TSubgoal goal)
|
bool Goals::ClearWayTo::fulfillsMe(TSubgoal goal)
|
||||||
{
|
{
|
||||||
if (goal->goalType == Goals::VISIT_TILE)
|
if (goal->goalType == Goals::VISIT_TILE)
|
||||||
|
{
|
||||||
if (!hero || hero == goal->hero)
|
if (!hero || hero == goal->hero)
|
||||||
return tile == goal->tile;
|
return tile == goal->tile;
|
||||||
|
}
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -987,10 +989,8 @@ TGoalVec Goals::CollectRes::getAllPossibleSubgoals()
|
|||||||
if (dest != t) //there is something blocking our way
|
if (dest != t) //there is something blocking our way
|
||||||
ret.push_back(sptr(Goals::ClearWayTo(dest, h).setisAbstract(true)));
|
ret.push_back(sptr(Goals::ClearWayTo(dest, h).setisAbstract(true)));
|
||||||
else
|
else
|
||||||
{
|
|
||||||
ret.push_back(sptr(Goals::VisitTile(dest).sethero(h).setisAbstract(true)));
|
ret.push_back(sptr(Goals::VisitTile(dest).sethero(h).setisAbstract(true)));
|
||||||
}
|
}
|
||||||
}
|
|
||||||
else //we need to get army in order to pick that object
|
else //we need to get army in order to pick that object
|
||||||
ret.push_back(sptr(Goals::GatherArmy(evaluateDanger(dest, h) * SAFE_ATTACK_CONSTANT).sethero(h).setisAbstract(true)));
|
ret.push_back(sptr(Goals::GatherArmy(evaluateDanger(dest, h) * SAFE_ATTACK_CONSTANT).sethero(h).setisAbstract(true)));
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user