| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004 | 
							- #include "StdInc.h"
 
- #include "Goals.h"
 
- #include "VCAI.h"
 
- #include "Fuzzy.h"
 
- #include "../../lib/mapping/CMap.h" //for victory conditions
 
- /*
 
-  * Goals.cpp, 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
 
-  *
 
-  */
 
- extern boost::thread_specific_ptr<CCallback> cb;
 
- extern boost::thread_specific_ptr<VCAI> ai;
 
- extern FuzzyHelper * fh; //TODO: this logic should be moved inside VCAI
 
- using namespace vstd;
 
- using namespace Goals;
 
- TSubgoal Goals::sptr(const AbstractGoal & tmp)
 
- {
 
- 	shared_ptr<AbstractGoal> ptr;
 
- 	ptr.reset(tmp.clone());
 
- 	return ptr;
 
- }
 
- std::string Goals::AbstractGoal::name() const //TODO: virtualize
 
- {
 
- 	std::string desc;
 
- 	switch (goalType)
 
- 	{
 
- 		case INVALID:
 
- 			return "INVALID";
 
- 		case WIN:
 
- 			return "WIN";
 
- 		case DO_NOT_LOSE:
 
- 			return "DO NOT LOOSE";
 
- 		case CONQUER:
 
- 			return "CONQUER";
 
- 		case BUILD:
 
- 			return "BUILD";
 
- 		case EXPLORE:
 
- 			desc = "EXPLORE";
 
- 			break;
 
- 		case GATHER_ARMY:
 
- 			desc = "GATHER ARMY";
 
- 			break;
 
- 		case BOOST_HERO:
 
- 			desc = "BOOST_HERO (unsupported)";
 
- 			break;
 
- 		case RECRUIT_HERO:
 
- 			return "RECRUIT HERO";
 
- 		case BUILD_STRUCTURE:
 
- 			return "BUILD STRUCTURE";
 
- 		case COLLECT_RES:
 
- 			desc = "COLLECT RESOURCE";
 
- 			break;
 
- 		case GATHER_TROOPS:
 
- 			desc = "GATHER TROOPS";
 
- 			break;
 
- 		case GET_OBJ:
 
- 		{
 
- 			auto obj = cb->getObjInstance(ObjectInstanceID(objid));
 
- 			if (obj)
 
- 				desc = "GET OBJ " + obj->getHoverText();
 
- 		}
 
- 		case FIND_OBJ:
 
- 			desc = "FIND OBJ " + boost::lexical_cast<std::string>(objid);
 
- 			break;
 
- 		case VISIT_HERO:
 
- 		{
 
- 			auto obj = cb->getObjInstance(ObjectInstanceID(objid));
 
- 			if (obj)
 
- 				desc = "VISIT HERO " + obj->getHoverText();
 
- 		}
 
- 			break;
 
- 		case GET_ART_TYPE:
 
- 			desc = "GET ARTIFACT OF TYPE " + VLC->arth->artifacts[aid]->Name();
 
- 			break;
 
- 		case ISSUE_COMMAND:
 
- 			return "ISSUE COMMAND (unsupported)";
 
- 		case VISIT_TILE:
 
- 			desc = "VISIT TILE " + tile();
 
- 			break;
 
- 		case CLEAR_WAY_TO:
 
- 			desc = "CLEAR WAY TO " + tile();
 
- 			break;
 
- 		case DIG_AT_TILE:
 
- 			desc = "DIG AT TILE " + tile();
 
- 			break;
 
- 		default:
 
- 			return boost::lexical_cast<std::string>(goalType);
 
- 	}
 
- 	if (hero.get(true)) //FIXME: used to crash when we lost hero and failed goal
 
- 		desc += " (" + hero->name + ")";
 
- 	return desc;
 
- }
 
- //TODO: find out why the following are not generated automatically on MVS?
 
- namespace Goals 
 
- { 
 
- 	template <>
 
- 	void CGoal<Win>::accept (VCAI * ai)
 
- 	{
 
- 		ai->tryRealize(static_cast<Win&>(*this));
 
- 	}
 
- 	template <>
 
- 	void CGoal<Build>::accept (VCAI * ai)
 
- 	{
 
- 		ai->tryRealize(static_cast<Build&>(*this));
 
- 	}
 
- 	template <>
 
- 	float CGoal<Win>::accept (FuzzyHelper * f)
 
- 	{
 
- 		return f->evaluate(static_cast<Win&>(*this));
 
- 	}
 
- 	template <>
 
- 	float CGoal<Build>::accept (FuzzyHelper * f)
 
- 	{
 
- 		return f->evaluate(static_cast<Build&>(*this));
 
- 	}
 
- }
 
- //TSubgoal AbstractGoal::whatToDoToAchieve()
 
- //{
 
- //    logAi->debugStream() << boost::format("Decomposing goal of type %s") % name();
 
- //        return sptr (Goals::Explore());
 
- //}
 
- TSubgoal Win::whatToDoToAchieve()
 
- {
 
- 	auto toBool = [=](const EventCondition &)
 
- 	{
 
- 		// TODO: proper implementation
 
- 		// Right now even already fulfilled goals will be included into generated list
 
- 		// Proper check should test if event condition is already fulfilled
 
- 		// Easiest way to do this is to call CGameState::checkForVictory but this function should not be
 
- 		// used on client side or in AI code
 
- 		return false;
 
- 	};
 
- 	std::vector<EventCondition> goals;
 
- 	for (const TriggeredEvent & event : cb->getMapHeader()->triggeredEvents)
 
- 	{
 
- 		//TODO: try to eliminate human player(s) using loss conditions that have isHuman element
 
- 		if (event.effect.type == EventEffect::VICTORY)
 
- 		{
 
- 			boost::range::copy(event.trigger.getFulfillmentCandidates(toBool), std::back_inserter(goals));
 
- 		}
 
- 	}
 
- 	//TODO: instead of returning first encountered goal AI should generate list of possible subgoals
 
- 	for (const EventCondition & goal : goals)
 
- 	{
 
- 		switch(goal.condition)
 
- 		{
 
- 		case EventCondition::HAVE_ARTIFACT:
 
- 			return sptr (Goals::GetArtOfType(goal.objectType));
 
- 		case EventCondition::DESTROY:
 
- 			{
 
- 				if (goal.object)
 
- 				{
 
- 					return sptr (Goals::GetObj(goal.object->id.getNum()));
 
- 				}
 
- 				else
 
- 				{
 
- 					// TODO: destroy all objects of type goal.objectType
 
- 					// This situation represents "kill all creatures" condition from H3
 
- 					break;
 
- 				}
 
- 			}
 
- 		case EventCondition::HAVE_BUILDING:
 
- 			{
 
- 			// TODO build other buildings apart from Grail
 
- 			// goal.objectType = buidingID to build
 
- 			// goal.object = optional, town in which building should be built
 
- 			// Represents "Improve town" condition from H3 (but unlike H3 it consists from 2 separate conditions)
 
- 				if (goal.objectType == BuildingID::GRAIL)
 
- 				{
 
- 					if(auto h = ai->getHeroWithGrail())
 
- 					{
 
- 						//hero is in a town that can host Grail
 
- 						if(h->visitedTown && !vstd::contains(h->visitedTown->forbiddenBuildings, BuildingID::GRAIL))
 
- 						{
 
- 							const CGTownInstance *t = h->visitedTown;
 
- 							return sptr (Goals::BuildThis(BuildingID::GRAIL, t));
 
- 						}
 
- 						else
 
- 						{
 
- 							auto towns = cb->getTownsInfo();
 
- 							towns.erase(boost::remove_if(towns,
 
- 												[](const CGTownInstance *t) -> bool
 
- 												{
 
- 													return vstd::contains(t->forbiddenBuildings, BuildingID::GRAIL);
 
- 												}),
 
- 										towns.end());
 
- 							boost::sort(towns, isCloser);
 
- 							if(towns.size())
 
- 							{
 
- 								return sptr (Goals::VisitTile(towns.front()->visitablePos()).sethero(h));
 
- 							}
 
- 						}
 
- 					}
 
- 					double ratio = 0;
 
- 					// maybe make this check a bit more complex? For example:
 
- 					// 0.75 -> dig randomly withing 3 tiles radius
 
- 					// 0.85 -> radius now 2 tiles
 
- 					// 0.95 -> 1 tile radius, position is fully known
 
- 					// AFAIK H3 AI does something like this
 
- 					int3 grailPos = cb->getGrailPos(ratio);
 
- 					if(ratio > 0.99)
 
- 					{
 
- 						return sptr (Goals::DigAtTile(grailPos));
 
- 					} //TODO: use FIND_OBJ
 
- 					else if(const CGObjectInstance * obj = ai->getUnvisitedObj(objWithID<Obj::OBELISK>)) //there are unvisited Obelisks
 
- 						return sptr (Goals::GetObj(obj->id.getNum()));
 
- 					else
 
- 						return sptr (Goals::Explore());
 
- 				}
 
- 				break;
 
- 			}
 
- 		case EventCondition::CONTROL:
 
- 			{
 
- 				if (goal.object)
 
- 				{
 
- 					return sptr (Goals::GetObj(goal.object->id.getNum()));
 
- 				}
 
- 				else
 
- 				{
 
- 					//TODO: control all objects of type "goal.objectType"
 
- 					// Represents H3 condition "Flag all mines"
 
- 					break;
 
- 				}
 
- 			}
 
- 		case EventCondition::HAVE_RESOURCES:
 
- 			//TODO mines? piles? marketplace?
 
- 			//save?
 
- 			return sptr (Goals::CollectRes(static_cast<Res::ERes>(goal.objectType), goal.value));
 
- 		case EventCondition::HAVE_CREATURES:
 
- 			return sptr (Goals::GatherTroops(goal.objectType, goal.value));
 
- 		case EventCondition::TRANSPORT:
 
- 			{
 
- 				//TODO. merge with bring Grail to town? So AI will first dig grail, then transport it using this goal and builds it
 
- 				// Represents "transport artifact" condition:
 
- 				// goal.objectType = type of artifact
 
- 				// goal.object = destination-town where artifact should be transported
 
- 				break;
 
- 			}
 
- 		case EventCondition::STANDARD_WIN:
 
- 			return sptr (Goals::Conquer());
 
- 		// Conditions that likely don't need any implementation
 
- 		case EventCondition::DAYS_PASSED:
 
- 			break; // goal.value = number of days for condition to trigger
 
- 		case EventCondition::DAYS_WITHOUT_TOWN:
 
- 			break; // goal.value = number of days to trigger this
 
- 		case EventCondition::IS_HUMAN:
 
- 			break; // Should be only used in calculation of candidates (see toBool lambda)
 
- 		case EventCondition::CONST_VALUE:
 
- 			break;
 
- 		default:
 
- 			assert(0);
 
- 		}
 
- 	}
 
- 	return sptr (Goals::Invalid());
 
- }
 
- TSubgoal FindObj::whatToDoToAchieve()
 
- {
 
- 	const CGObjectInstance * o = nullptr;
 
- 	if (resID > -1) //specified
 
- 	{
 
- 		for(const CGObjectInstance *obj : ai->visitableObjs)
 
- 		{
 
- 			if(obj->ID == objid && obj->subID == resID)
 
- 			{
 
- 				o = obj;
 
- 				break; //TODO: consider multiple objects and choose best
 
- 			}
 
- 		}
 
- 	}
 
- 	else
 
- 	{
 
- 		for(const CGObjectInstance *obj : ai->visitableObjs)
 
- 		{
 
- 			if(obj->ID == objid)
 
- 			{
 
- 				o = obj;
 
- 				break; //TODO: consider multiple objects and choose best
 
- 			}
 
- 		}
 
- 	}
 
- 	if (o && isReachable(o)) //we don't use isAccessibleForHero as we don't know which hero it is
 
- 		return sptr (Goals::GetObj(o->id.getNum()));
 
- 	else
 
- 		return sptr (Goals::Explore());
 
- }
 
- std::string GetObj::completeMessage() const
 
- {
 
- 	return "hero " + hero.get()->name + " captured Object ID = " + boost::lexical_cast<std::string>(objid); 
 
- }
 
- TSubgoal GetObj::whatToDoToAchieve()
 
- {
 
- 	const CGObjectInstance * obj = cb->getObj(ObjectInstanceID(objid));
 
- 	if(!obj)
 
- 		return sptr (Goals::Explore());
 
- 	int3 pos = obj->visitablePos();
 
- 	if (hero)
 
- 	{
 
- 		if (ai->isAccessibleForHero(pos, hero))
 
- 			return sptr (Goals::VisitTile(pos).sethero(hero));
 
- 	}
 
- 	else
 
- 	{
 
- 		if (isReachable(obj))
 
- 			return sptr (Goals::VisitTile(pos).sethero(hero)); //we must visit object with same hero, if any
 
- 	}
 
- 	return sptr (Goals::ClearWayTo(pos).sethero(hero));
 
- }
 
- bool GetObj::fulfillsMe (TSubgoal goal)
 
- {
 
- 	if (goal->goalType == Goals::VISIT_TILE)
 
- 	{
 
- 		auto obj = cb->getObj(ObjectInstanceID(objid));
 
- 		if (obj && obj->visitablePos() == goal->tile) //object could be removed
 
- 			return true;
 
- 	}
 
- 	return false;
 
- }
 
- std::string VisitHero::completeMessage() const
 
- {
 
- 	return "hero " + hero.get()->name + " visited hero " + boost::lexical_cast<std::string>(objid); 
 
- }
 
- TSubgoal VisitHero::whatToDoToAchieve()
 
- {
 
- 	const CGObjectInstance * obj = cb->getObj(ObjectInstanceID(objid));
 
- 	if(!obj)
 
- 		return sptr (Goals::Explore());
 
- 	int3 pos = obj->visitablePos();
 
- 	if (hero && ai->isAccessibleForHero(pos, hero, true) && isSafeToVisit(hero, pos)) //enemy heroes can get reinforcements
 
- 	{
 
- 		if (hero->pos == pos)
 
- 			logAi->errorStream() << "Hero " << hero.name << " tries to visit himself.";
 
- 		else
 
- 		{
 
- 			//can't use VISIT_TILE here as tile appears blocked by target hero
 
- 			//FIXME: elementar goal should not be abstract
 
- 			return sptr (Goals::VisitHero(objid).sethero(hero).settile(pos).setisElementar(true));
 
- 		}
 
- 	}
 
- 	return sptr (Goals::Invalid());
 
- }
 
- bool VisitHero::fulfillsMe (TSubgoal goal)
 
- {
 
- 	if (goal->goalType == Goals::VISIT_TILE && cb->getObj(ObjectInstanceID(objid))->visitablePos() == goal->tile)
 
- 		return true;
 
- 	else
 
- 		return false;
 
- }
 
- TSubgoal GetArtOfType::whatToDoToAchieve()
 
- {
 
- 	TSubgoal alternativeWay = CGoal::lookForArtSmart(aid); //TODO: use
 
- 	if(alternativeWay->invalid())
 
- 		return sptr (Goals::FindObj(Obj::ARTIFACT, aid));
 
- 	return sptr (Goals::Invalid());
 
- }
 
- TSubgoal ClearWayTo::whatToDoToAchieve()
 
- {
 
- 	assert(cb->isInTheMap(tile)); //set tile
 
- 	if(!cb->isVisible(tile))
 
- 	{
 
-         logAi->errorStream() << "Clear way should be used with visible tiles!";
 
- 		return sptr (Goals::Explore());
 
- 	}
 
- 	return (fh->chooseSolution(getAllPossibleSubgoals()));	
 
- }
 
- TGoalVec ClearWayTo::getAllPossibleSubgoals()
 
- {
 
- 	TGoalVec ret;
 
- 	for (auto h : cb->getHeroesInfo())
 
- 	{
 
- 		if ((hero && hero->visitablePos() == tile && hero == *h) || //we can't free the way ourselves
 
- 			h->visitablePos() == tile) //we are already on that tile! what does it mean?
 
- 			continue;
 
- 		SectorMap sm(h);
 
- 		int3 tileToHit = sm.firstTileToGet(hero ? hero : h, tile);
 
- 		//if our hero is trapped, make sure we request clearing the way from OUR perspective
 
- 		if (!tileToHit.valid())
 
- 			continue;
 
- 		if (isBlockedBorderGate(tileToHit))
 
- 		{	//FIXME: this way we'll not visit gate and activate quest :?
 
- 			ret.push_back  (sptr (Goals::FindObj (Obj::KEYMASTER, cb->getTile(tileToHit)->visitableObjects.back()->subID)));
 
- 		}
 
- 		auto topObj = cb->getTopObj(tileToHit);
 
- 		if(topObj)
 
- 		{
 
- 			if (topObj->ID == Obj::HERO && cb->getPlayerRelations(h->tempOwner, topObj->tempOwner) != PlayerRelations::ENEMIES)
 
- 				if (topObj != hero.get(true)) //the hero we wnat to free
 
- 					logAi->errorStream() << boost::format("%s stands in the way of %s") % topObj->getHoverText()  % h->getHoverText();
 
- 			if (topObj->ID == Obj::QUEST_GUARD || topObj->ID == Obj::BORDERGUARD)
 
- 			{
 
- 				if (shouldVisit(h, topObj))
 
- 				{
 
- 					//do NOT use VISIT_TILE, as tile with quets guard can't be visited
 
- 					ret.push_back (sptr (Goals::GetObj(topObj->id.getNum()).sethero(h)));
 
- 				}
 
- 				else
 
- 				{
 
- 					//TODO: we should be able to return apriopriate quest here (VCAI::striveToQuest)
 
- 					logAi->debugStream() << "Quest guard blocks the way to " + tile();
 
- 				}
 
- 			}
 
- 		}
 
- 		else
 
- 			ret.push_back (sptr (Goals::VisitTile(tileToHit).sethero(h)));
 
- 	}
 
- 	if (ai->canRecruitAnyHero())
 
- 		ret.push_back (sptr (Goals::RecruitHero()));
 
- 	if (ret.empty())
 
- 	{
 
- 		logAi->warnStream() << "There is no known way to clear the way to tile " + tile();
 
- 		throw goalFulfilledException (sptr(*this)); //make sure asigned hero gets unlocked
 
- 	}
 
- 	return ret;
 
- }
 
- std::string Explore::completeMessage() const
 
- {
 
- 	return "Hero " + hero.get()->name + " completed exploration";
 
- }
 
- TSubgoal Explore::whatToDoToAchieve()
 
- {
 
- 	auto ret = fh->chooseSolution(getAllPossibleSubgoals());
 
- 	if (hero) //use best step for this hero
 
- 		return ret;
 
- 	else
 
- 	{
 
- 		if (ret->hero.get(true))
 
- 			return sptr (sethero(ret->hero.h).setisAbstract(true)); //choose this hero and then continue with him
 
- 		else
 
- 			return ret; //other solutions, like buying hero from tavern
 
- 	}
 
- }
 
- TGoalVec Explore::getAllPossibleSubgoals()
 
- {
 
- 	TGoalVec ret;
 
- 	std::vector<const CGHeroInstance *> heroes;
 
- 	//std::vector<HeroPtr> heroes;
 
- 	if (hero)
 
- 		//heroes.push_back(hero);
 
- 		heroes.push_back(hero.h);
 
- 	else
 
- 	{
 
- 		//heroes = ai->getUnblockedHeroes();
 
- 		heroes = cb->getHeroesInfo();
 
- 		erase_if (heroes, [](const HeroPtr h)
 
- 		{
 
- 			if (vstd::contains(ai->lockedHeroes, h))
 
- 				if (ai->lockedHeroes[h]->goalType == Goals::EXPLORE) //do not reassign hero who is already explorer
 
- 					return true;
 
- 			return !h->movement; //saves time, immobile heroes are useless anyway
 
- 		});
 
- 	}
 
- 	//try to use buildings that uncover map
 
- 	std::vector<const CGObjectInstance *> objs;
 
- 	for (auto obj : ai->visitableObjs)
 
- 	{
 
- 		if (!vstd::contains(ai->alreadyVisited, obj))
 
- 		{
 
- 			switch (obj->ID.num)
 
- 			{
 
- 				case Obj::REDWOOD_OBSERVATORY:
 
- 				case Obj::PILLAR_OF_FIRE:
 
- 				case Obj::CARTOGRAPHER:
 
- 				case Obj::SUBTERRANEAN_GATE: //TODO: check ai->knownSubterraneanGates
 
- 					objs.push_back (obj);
 
- 			}
 
- 		}
 
- 	}
 
- 	for (auto h : heroes)
 
- 	{
 
- 		SectorMap sm(h);
 
- 		for (auto obj : objs) //double loop, performance risk?
 
- 		{
 
- 			auto t = sm.firstTileToGet(h, obj->visitablePos()); //we assume that no more than one tile on the way is guarded
 
- 			ai->whatToDoToReachTile(h, t, ret);
 
- 		}
 
- 		int3 t = whereToExplore(h);
 
- 		if (t.valid())
 
- 		{
 
- 			ret.push_back (sptr (Goals::VisitTile(t).sethero(h)));
 
- 		}
 
- 		else if (hero.h == h || (!hero && h == ai->primaryHero().h)) //check this only ONCE, high cost
 
- 		{
 
- 			t = ai->explorationDesperate(h);
 
- 			ai->whatToDoToReachTile(h, t, ret);
 
- 		}
 
- 	}
 
- 	//we either don't have hero yet or none of heroes can explore
 
- 	if ((!hero || ret.empty()) && ai->canRecruitAnyHero())
 
- 		ret.push_back (sptr(Goals::RecruitHero()));
 
- 	//if (ret.empty())
 
- 	//{
 
- 	//	for (auto h : heroes) //this is costly function, use only when there is no other way
 
- 	//	{
 
- 	//		auto t = ai->explorationDesperate (h); //we assume that no more than one tile on the way is guarded
 
- 	//		if (t.valid())
 
- 	//		{
 
- 	//			if (isSafeToVisit(h, t))
 
- 	//			{
 
- 	//				ret.push_back (sptr (Goals::VisitTile(t).sethero(h)));
 
- 	//			}
 
- 	//			else
 
- 	//			{
 
- 	//				ret.push_back (sptr (Goals::GatherArmy(evaluateDanger(t, h)*SAFE_ATTACK_CONSTANT).
 
- 	//					sethero(h).setisAbstract(true)));
 
- 	//			}
 
- 	//		}
 
- 	//	}
 
- 	//}
 
- 	if (ret.empty())
 
- 	{
 
- 		throw goalFulfilledException (sptr(Goals::Explore().sethero(hero)));
 
- 	}
 
- 	//throw cannotFulfillGoalException("Cannot explore - no possible ways found!");
 
- 	return ret;
 
- }
 
- bool Explore::fulfillsMe (TSubgoal goal)
 
- {
 
- 	if (goal->goalType == Goals::EXPLORE)
 
- 	{
 
- 		if (goal->hero)
 
- 			return hero == goal->hero;
 
- 		else
 
- 			return true; //cancel ALL exploration
 
- 	}
 
- 	return false;
 
- }
 
- TSubgoal RecruitHero::whatToDoToAchieve()
 
- {
 
- 	const CGTownInstance *t = ai->findTownWithTavern();
 
- 	if(!t)
 
- 		return sptr (Goals::BuildThis(BuildingID::TAVERN));
 
- 	if(cb->getResourceAmount(Res::GOLD) < HERO_GOLD_COST)
 
- 		return sptr (Goals::CollectRes(Res::GOLD, HERO_GOLD_COST));
 
- 	return iAmElementar();
 
- }
 
- std::string VisitTile::completeMessage() const
 
- {
 
- 	return "Hero " + hero.get()->name + " visited tile " + tile();
 
- }
 
- TSubgoal VisitTile::whatToDoToAchieve()
 
- {
 
- 	auto ret = fh->chooseSolution(getAllPossibleSubgoals());
 
- 	if (ret->hero)
 
- 	{
 
- 		if (isSafeToVisit(ret->hero, tile) && ai->isAccessibleForHero(tile, ret->hero))
 
- 		{
 
- 			ret->setisElementar(true);
 
- 			return ret;
 
- 		}
 
- 		else
 
- 		{
 
- 			return sptr (Goals::GatherArmy(evaluateDanger(tile, *ret->hero) * SAFE_ATTACK_CONSTANT)
 
- 						.sethero(ret->hero).setisAbstract(true));
 
- 		}
 
- 	}
 
- 	return ret;
 
- }
 
- TGoalVec VisitTile::getAllPossibleSubgoals()
 
- {
 
- 	assert(cb->isInTheMap(tile));
 
- 	TGoalVec ret;
 
- 	if (!cb->isVisible(tile))
 
- 		ret.push_back (sptr(Goals::Explore())); //what sense does it make?
 
- 	else
 
- 	{
 
- 		std::vector<const CGHeroInstance *> heroes;
 
- 		if (hero)
 
- 			heroes.push_back(hero.h); //use assigned hero if any
 
- 		else
 
- 			heroes = cb->getHeroesInfo(); //use most convenient hero
 
- 		for (auto h : heroes)
 
- 		{
 
- 			if (ai->isAccessibleForHero(tile, h))
 
- 				ret.push_back (sptr(Goals::VisitTile(tile).sethero(h)));
 
- 		}
 
- 		if (ai->canRecruitAnyHero())
 
- 			ret.push_back (sptr(Goals::RecruitHero()));
 
- 	}
 
- 	if (ret.empty())
 
- 	{
 
- 		auto obj = frontOrNull(cb->getVisitableObjs(tile));
 
- 		if (obj && obj->ID == Obj::HERO && obj->tempOwner == ai->playerID) //our own hero stands on that tile
 
- 			ret.push_back (sptr(Goals::VisitTile(tile).sethero(dynamic_cast<const CGHeroInstance *>(obj)).setisElementar(true)));
 
- 		else
 
- 			ret.push_back (sptr(Goals::ClearWayTo(tile)));
 
- 	}
 
- 	//important - at least one sub-goal must handle case which is impossible to fulfill (unreachable tile)
 
- 	return ret;
 
- }
 
- TSubgoal DigAtTile::whatToDoToAchieve()
 
- {
 
- 	const CGObjectInstance *firstObj = frontOrNull(cb->getVisitableObjs(tile));
 
- 	if(firstObj && firstObj->ID == Obj::HERO && firstObj->tempOwner == ai->playerID) //we have hero at dest
 
- 	{
 
- 		const CGHeroInstance *h = dynamic_cast<const CGHeroInstance *>(firstObj);
 
- 		sethero(h).setisElementar(true);
 
- 		return sptr (*this);
 
- 	}
 
- 	return sptr (Goals::VisitTile(tile));
 
- }
 
- TSubgoal BuildThis::whatToDoToAchieve()
 
- {
 
- 	//TODO check res
 
- 	//look for town
 
- 	//prerequisites?
 
- 	return iAmElementar();
 
- }
 
- TSubgoal CollectRes::whatToDoToAchieve()
 
- {
 
- 	std::vector<const IMarket*> markets;
 
- 	std::vector<const CGObjectInstance*> visObjs;
 
- 	ai->retreiveVisitableObjs(visObjs, true);
 
- 	for(const CGObjectInstance *obj : visObjs)
 
- 	{
 
- 		if(const IMarket *m = IMarket::castFrom(obj, false))
 
- 		{
 
- 			if(obj->ID == Obj::TOWN && obj->tempOwner == ai->playerID && m->allowsTrade(EMarketMode::RESOURCE_RESOURCE))
 
- 				markets.push_back(m);
 
- 			else if(obj->ID == Obj::TRADING_POST) //TODO a moze po prostu test na pozwalanie handlu?
 
- 				markets.push_back(m);
 
- 		}
 
- 	}
 
- 	boost::sort(markets, [](const IMarket *m1, const IMarket *m2) -> bool
 
- 	{
 
- 		return m1->getMarketEfficiency() < m2->getMarketEfficiency();
 
- 	});
 
- 	markets.erase(boost::remove_if(markets, [](const IMarket *market) -> bool
 
- 	{
 
- 		return !(market->o->ID == Obj::TOWN && market->o->tempOwner == ai->playerID)
 
- 			&& !ai->isAccessible(market->o->visitablePos());
 
- 	}),markets.end());
 
- 	if(!markets.size())
 
- 	{
 
- 		for(const CGTownInstance *t : cb->getTownsInfo())
 
- 		{
 
- 			if(cb->canBuildStructure(t, BuildingID::MARKETPLACE) == EBuildingState::ALLOWED)
 
- 				return sptr (Goals::BuildThis(BuildingID::MARKETPLACE, t));
 
- 		}
 
- 	}
 
- 	else
 
- 	{
 
- 		const IMarket *m = markets.back();
 
- 		//attempt trade at back (best prices)
 
- 		int howManyCanWeBuy = 0;
 
- 		for(Res::ERes i = Res::WOOD; i <= Res::GOLD; vstd::advance(i, 1))
 
- 		{
 
- 			if(i == resID) continue;
 
- 			int toGive = -1, toReceive = -1;
 
- 			m->getOffer(i, resID, toGive, toReceive, EMarketMode::RESOURCE_RESOURCE);
 
- 			assert(toGive > 0 && toReceive > 0);
 
- 			howManyCanWeBuy += toReceive * (cb->getResourceAmount(i) / toGive);
 
- 		}
 
- 		if(howManyCanWeBuy + cb->getResourceAmount(static_cast<Res::ERes>(resID)) >= value)
 
- 		{
 
- 			auto backObj = cb->getTopObj(m->o->visitablePos()); //it'll be a hero if we have one there; otherwise marketplace
 
- 			assert(backObj);
 
- 			if (backObj->tempOwner != ai->playerID)
 
- 			{
 
- 				return sptr (Goals::GetObj(m->o->id.getNum()));
 
- 			}
 
- 			else
 
- 			{
 
- 				return sptr (Goals::GetObj(m->o->id.getNum()).setisElementar(true));
 
- 			}
 
- 		}
 
- 	}
 
- 	return sptr (setisElementar(true)); //all the conditions for trade are met
 
- }
 
- TSubgoal GatherTroops::whatToDoToAchieve()
 
- {
 
- 	std::vector<const CGDwelling *> dwellings;
 
- 	for(const CGTownInstance *t : cb->getTownsInfo())
 
- 	{
 
- 		auto creature = VLC->creh->creatures[objid];
 
- 		if (t->subID == creature->faction) //TODO: how to force AI to build unupgraded creatures? :O
 
- 		{
 
- 			auto creatures = vstd::tryAt(t->town->creatures, creature->level - 1);
 
- 			if(!creatures)
 
- 				continue; 
 
- 			int upgradeNumber = vstd::find_pos(*creatures, creature->idNumber);
 
- 			if(upgradeNumber < 0)
 
- 				continue;
 
- 			BuildingID bid(BuildingID::DWELL_FIRST + creature->level - 1 + upgradeNumber * GameConstants::CREATURES_PER_TOWN);
 
- 			if (t->hasBuilt(bid)) //this assumes only creatures with dwellings are assigned to faction
 
- 			{
 
- 				dwellings.push_back(t);
 
- 			}
 
- 			else
 
- 			{
 
- 				return sptr (Goals::BuildThis(bid, t));
 
- 			}
 
- 		}
 
- 	}
 
- 	for (auto obj : ai->visitableObjs)
 
- 	{
 
- 		if (obj->ID != Obj::CREATURE_GENERATOR1) //TODO: what with other creature generators?
 
- 			continue;
 
- 		auto d = dynamic_cast<const CGDwelling *>(obj);
 
- 		for (auto creature : d->creatures)
 
- 		{
 
- 			if (creature.first) //there are more than 0 creatures avaliabe
 
- 			{
 
- 				for (auto type : creature.second)
 
- 				{
 
- 					if (type == objid  &&  ai->freeResources().canAfford(VLC->creh->creatures[type]->cost))
 
- 						dwellings.push_back(d);
 
- 				}
 
- 			}
 
- 		}
 
- 	}
 
- 	if (dwellings.size())
 
- 	{
 
- 		boost::sort(dwellings, isCloser);
 
- 		return sptr (Goals::GetObj(dwellings.front()->id.getNum()));
 
- 	}
 
- 	else
 
- 		return sptr (Goals::Explore());
 
- 	//TODO: exchange troops between heroes
 
- }
 
- TSubgoal Conquer::whatToDoToAchieve()
 
- {
 
- 	return fh->chooseSolution (getAllPossibleSubgoals());
 
- }
 
- TGoalVec Conquer::getAllPossibleSubgoals()
 
- {
 
- 	TGoalVec ret;
 
- 	auto conquerable = [](const CGObjectInstance * obj) -> bool
 
- 	{
 
- 		if (cb->getPlayerRelations(ai->playerID, obj->tempOwner) == PlayerRelations::ENEMIES)
 
- 		{
 
- 			switch (obj->ID.num)
 
- 			{
 
- 				case Obj::TOWN:
 
- 				case Obj::HERO:
 
- 				case Obj::CREATURE_GENERATOR1:
 
- 				case Obj::MINE: //TODO: check ai->knownSubterraneanGates
 
- 					return true;
 
- 			}
 
- 		}
 
- 		return false;
 
- 	};
 
- 	std::vector<const CGObjectInstance *> objs;
 
- 	for (auto obj : ai->visitableObjs)
 
- 	{
 
- 		if (conquerable(obj)) 
 
- 			objs.push_back (obj);
 
- 	}
 
- 	for (auto h : cb->getHeroesInfo())
 
- 	{
 
- 		SectorMap sm(h);
 
- 		std::vector<const CGObjectInstance *> ourObjs(objs); //copy common objects
 
- 		for (auto obj : ai->reservedHeroesMap[h]) //add objects reserved by this hero
 
- 		{
 
- 			if (conquerable(obj))
 
- 				ourObjs.push_back(obj);
 
- 		}
 
- 		for (auto obj : ourObjs) //double loop, performance risk?
 
- 		{
 
- 			auto t = sm.firstTileToGet(h, obj->visitablePos()); //we assume that no more than one tile on the way is guarded
 
- 			ai->whatToDoToReachTile (h, t, ret);
 
- 		}
 
- 	}
 
- 	if (!objs.empty() && ai->canRecruitAnyHero()) //probably no point to recruit hero if we see no objects to capture
 
- 		ret.push_back (sptr(Goals::RecruitHero()));
 
- 	if (ret.empty())
 
- 		ret.push_back (sptr(Goals::Explore())); //we need to find an enemy
 
- 	return ret;
 
- }
 
- TSubgoal Build::whatToDoToAchieve()
 
- {
 
- 	return iAmElementar();
 
- }
 
- TSubgoal Invalid::whatToDoToAchieve()
 
- {
 
- 	return iAmElementar();
 
- }
 
- std::string GatherArmy::completeMessage() const
 
- {
 
- 	return "Hero " + hero.get()->name + " gathered army of value " + boost::lexical_cast<std::string>(value);
 
- }
 
- TSubgoal GatherArmy::whatToDoToAchieve()
 
- {
 
- 	//TODO: find hero if none set
 
- 	assert(hero.h);
 
- 	return fh->chooseSolution (getAllPossibleSubgoals()); //find dwelling. use current hero to prevent him from doing nothing.
 
- }
 
- TGoalVec GatherArmy::getAllPossibleSubgoals()
 
- {
 
- 	//get all possible towns, heroes and dwellings we may use
 
- 	TGoalVec ret;
 
- 	
 
- 	//TODO: include evaluation of monsters gather in calculation
 
- 	for (auto t : cb->getTownsInfo())
 
- 	{
 
- 		auto pos = t->visitablePos();
 
- 		if (ai->isAccessibleForHero(pos, hero))
 
- 		{
 
- 			if(!t->visitingHero && howManyReinforcementsCanGet(hero,t))
 
- 			{
 
- 				if (!vstd::contains (ai->townVisitsThisWeek[hero], t))
 
- 					ret.push_back (sptr (Goals::VisitTile(pos).sethero(hero)));
 
- 			}
 
- 			auto bid = ai->canBuildAnyStructure(t, std::vector<BuildingID>
 
- 							(unitsSource, unitsSource + ARRAY_COUNT(unitsSource)), 8 - cb->getDate(Date::DAY_OF_WEEK));
 
- 			if (bid != BuildingID::NONE)
 
- 				ret.push_back (sptr(BuildThis(bid, t)));
 
- 		}
 
- 	}
 
- 	auto otherHeroes = cb->getHeroesInfo();
 
- 	auto heroDummy = hero;
 
- 	erase_if(otherHeroes, [heroDummy](const CGHeroInstance * h)
 
- 	{
 
- 		return (h == heroDummy.h || !ai->isAccessibleForHero(heroDummy->visitablePos(), h, true)
 
- 			|| !ai->canGetArmy(heroDummy.h, h) || ai->getGoal(h)->goalType == Goals::GATHER_ARMY);
 
- 	});
 
- 	for (auto h : otherHeroes)
 
- 	{
 
- 		ret.push_back (sptr (Goals::VisitHero(h->id.getNum()).setisAbstract(true).sethero(hero)));
 
- 				//go to the other hero if we are faster
 
- 		ret.push_back (sptr (Goals::VisitHero(hero->id.getNum()).setisAbstract(true).sethero(h)));
 
- 				//let the other hero come to us
 
- 	}
 
- 	std::vector <const CGObjectInstance *> objs;
 
- 	for (auto obj : ai->visitableObjs)
 
- 	{
 
- 		if(obj->ID == Obj::CREATURE_GENERATOR1)
 
- 		{
 
- 			auto relationToOwner = cb->getPlayerRelations(obj->getOwner(), ai->playerID);
 
- 			//Use flagged dwellings only when there are available creatures that we can afford
 
- 			if(relationToOwner == PlayerRelations::SAME_PLAYER)
 
- 			{
 
- 				auto dwelling = dynamic_cast<const CGDwelling*>(obj);
 
- 				for(auto & creLevel : dwelling->creatures)
 
- 				{
 
- 					if(creLevel.first)
 
- 					{
 
- 						for(auto & creatureID : creLevel.second)
 
- 						{
 
- 							auto creature = VLC->creh->creatures[creatureID];
 
- 							if (ai->freeResources().canAfford(creature->cost))
 
- 								objs.push_back(obj);
 
- 						}
 
- 					}
 
- 				}
 
- 			}
 
- 		}
 
- 	}
 
- 	for(auto h : cb->getHeroesInfo())
 
- 	{
 
- 		for (auto obj : objs)
 
- 		{ //find safe dwelling
 
- 			auto pos = obj->visitablePos();
 
- 			if (ai->isGoodForVisit(obj, h))
 
- 				ret.push_back (sptr (Goals::VisitTile(pos).sethero(h)));
 
- 		}
 
- 	}
 
- 	if (ai->canRecruitAnyHero()) //this is not stupid in early phase of game
 
- 		ret.push_back (sptr(Goals::RecruitHero()));
 
- 	if (ret.empty())
 
- 	{
 
- 		if (hero == ai->primaryHero() || value >= 1.1f)
 
- 			ret.push_back (sptr(Goals::Explore()));
 
- 		else //workaround to break loop - seemingly there are no ways to explore left
 
- 			throw goalFulfilledException (sptr(Goals::GatherArmy(0).sethero(hero)));
 
- 	}
 
- 	return ret;
 
- }
 
- //TSubgoal AbstractGoal::whatToDoToAchieve()
 
- //{
 
- //    logAi->debugStream() << boost::format("Decomposing goal of type %s") % name();
 
- //	return sptr (Goals::Explore());
 
- //}
 
- TSubgoal AbstractGoal::goVisitOrLookFor(const CGObjectInstance *obj)
 
- {
 
- 	if(obj)
 
- 		return sptr (Goals::GetObj(obj->id.getNum()));
 
- 	else
 
- 		return sptr (Goals::Explore());
 
- }
 
- TSubgoal AbstractGoal::lookForArtSmart(int aid)
 
- {
 
- 	return sptr (Goals::Invalid());
 
- }
 
- bool AbstractGoal::invalid() const
 
- {
 
- 	return goalType == INVALID;
 
- }
 
- void AbstractGoal::accept (VCAI * ai)
 
- {
 
- 	ai->tryRealize(*this);
 
- }
 
- template<typename T>
 
- void CGoal<T>::accept (VCAI * ai)
 
- {
 
- 	ai->tryRealize(static_cast<T&>(*this)); //casting enforces template instantiation
 
- }
 
- float AbstractGoal::accept (FuzzyHelper * f)
 
- {
 
- 	return f->evaluate(*this);
 
- }
 
- template<typename T>
 
- float  CGoal<T>::accept (FuzzyHelper * f)
 
- {
 
- 	return f->evaluate(static_cast<T&>(*this)); //casting enforces template instantiation
 
- }
 
 
  |