Goals.cpp 27 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973
  1. #include "StdInc.h"
  2. #include "Goals.h"
  3. #include "VCAI.h"
  4. #include "Fuzzy.h"
  5. #include "../../lib/mapping/CMap.h" //for victory conditions
  6. /*
  7. * Goals.cpp, part of VCMI engine
  8. *
  9. * Authors: listed in file AUTHORS in main folder
  10. *
  11. * License: GNU General Public License v2.0 or later
  12. * Full text of license available in license.txt file, in main folder
  13. *
  14. */
  15. extern boost::thread_specific_ptr<CCallback> cb;
  16. extern boost::thread_specific_ptr<VCAI> ai;
  17. extern FuzzyHelper * fh; //TODO: this logic should be moved inside VCAI
  18. using namespace vstd;
  19. using namespace Goals;
  20. TSubgoal Goals::sptr(const AbstractGoal & tmp)
  21. {
  22. shared_ptr<AbstractGoal> ptr;
  23. ptr.reset(tmp.clone());
  24. return ptr;
  25. }
  26. std::string Goals::AbstractGoal::name() const //TODO: virtualize
  27. {
  28. std::string desc;
  29. switch (goalType)
  30. {
  31. case INVALID:
  32. return "INVALID";
  33. case WIN:
  34. return "WIN";
  35. case DO_NOT_LOSE:
  36. return "DO NOT LOOSE";
  37. case CONQUER:
  38. return "CONQUER";
  39. case BUILD:
  40. return "BUILD";
  41. case EXPLORE:
  42. desc = "EXPLORE";
  43. break;
  44. case GATHER_ARMY:
  45. desc = "GATHER ARMY";
  46. break;
  47. case BOOST_HERO:
  48. desc = "BOOST_HERO (unsupported)";
  49. break;
  50. case RECRUIT_HERO:
  51. return "RECRUIT HERO";
  52. case BUILD_STRUCTURE:
  53. return "BUILD STRUCTURE";
  54. case COLLECT_RES:
  55. desc = "COLLECT RESOURCE";
  56. break;
  57. case GATHER_TROOPS:
  58. desc = "GATHER TROOPS";
  59. break;
  60. case GET_OBJ:
  61. {
  62. auto obj = cb->getObjInstance(ObjectInstanceID(objid));
  63. if (obj)
  64. desc = "GET OBJ " + obj->getHoverText();
  65. }
  66. case FIND_OBJ:
  67. desc = "FIND OBJ " + boost::lexical_cast<std::string>(objid);
  68. break;
  69. case VISIT_HERO:
  70. {
  71. auto obj = cb->getObjInstance(ObjectInstanceID(objid));
  72. if (obj)
  73. desc = "VISIT HERO " + obj->getHoverText();
  74. }
  75. break;
  76. case GET_ART_TYPE:
  77. desc = "GET ARTIFACT OF TYPE " + VLC->arth->artifacts[aid]->Name();
  78. break;
  79. case ISSUE_COMMAND:
  80. return "ISSUE COMMAND (unsupported)";
  81. case VISIT_TILE:
  82. desc = "VISIT TILE " + tile();
  83. break;
  84. case CLEAR_WAY_TO:
  85. desc = "CLEAR WAY TO " + tile();
  86. break;
  87. case DIG_AT_TILE:
  88. desc = "DIG AT TILE " + tile();
  89. break;
  90. default:
  91. return boost::lexical_cast<std::string>(goalType);
  92. }
  93. if (hero.get(true)) //FIXME: used to crash when we lost hero and failed goal
  94. desc += " (" + hero->name + ")";
  95. return desc;
  96. }
  97. //TODO: find out why the following are not generated automatically on MVS?
  98. namespace Goals
  99. {
  100. template <>
  101. void CGoal<Win>::accept (VCAI * ai)
  102. {
  103. ai->tryRealize(static_cast<Win&>(*this));
  104. }
  105. template <>
  106. void CGoal<Build>::accept (VCAI * ai)
  107. {
  108. ai->tryRealize(static_cast<Build&>(*this));
  109. }
  110. template <>
  111. float CGoal<Win>::accept (FuzzyHelper * f)
  112. {
  113. return f->evaluate(static_cast<Win&>(*this));
  114. }
  115. template <>
  116. float CGoal<Build>::accept (FuzzyHelper * f)
  117. {
  118. return f->evaluate(static_cast<Build&>(*this));
  119. }
  120. }
  121. //TSubgoal AbstractGoal::whatToDoToAchieve()
  122. //{
  123. // logAi->debugStream() << boost::format("Decomposing goal of type %s") % name();
  124. // return sptr (Goals::Explore());
  125. //}
  126. TSubgoal Win::whatToDoToAchieve()
  127. {
  128. auto toBool = [=](const EventCondition &)
  129. {
  130. // TODO: proper implementation
  131. // Right now even already fulfilled goals will be included into generated list
  132. // Proper check should test if event condition is already fulfilled
  133. // Easiest way to do this is to call CGameState::checkForVictory but this function should not be
  134. // used on client side or in AI code
  135. return false;
  136. };
  137. std::vector<EventCondition> goals;
  138. for (const TriggeredEvent & event : cb->getMapHeader()->triggeredEvents)
  139. {
  140. //TODO: try to eliminate human player(s) using loss conditions that have isHuman element
  141. if (event.effect.type == EventEffect::VICTORY)
  142. {
  143. boost::range::copy(event.trigger.getFulfillmentCandidates(toBool), std::back_inserter(goals));
  144. }
  145. }
  146. //TODO: instead of returning first encountered goal AI should generate list of possible subgoals
  147. for (const EventCondition & goal : goals)
  148. {
  149. switch(goal.condition)
  150. {
  151. case EventCondition::HAVE_ARTIFACT:
  152. return sptr (Goals::GetArtOfType(goal.objectType));
  153. case EventCondition::DESTROY:
  154. {
  155. if (goal.object)
  156. {
  157. return sptr (Goals::GetObj(goal.object->id.getNum()));
  158. }
  159. else
  160. {
  161. // TODO: destroy all objects of type goal.objectType
  162. // This situation represents "kill all creatures" condition from H3
  163. break;
  164. }
  165. }
  166. case EventCondition::HAVE_BUILDING:
  167. {
  168. // TODO build other buildings apart from Grail
  169. // goal.objectType = buidingID to build
  170. // goal.object = optional, town in which building should be built
  171. // Represents "Improve town" condition from H3 (but unlike H3 it consists from 2 separate conditions)
  172. if (goal.objectType == BuildingID::GRAIL)
  173. {
  174. if(auto h = ai->getHeroWithGrail())
  175. {
  176. //hero is in a town that can host Grail
  177. if(h->visitedTown && !vstd::contains(h->visitedTown->forbiddenBuildings, BuildingID::GRAIL))
  178. {
  179. const CGTownInstance *t = h->visitedTown;
  180. return sptr (Goals::BuildThis(BuildingID::GRAIL, t));
  181. }
  182. else
  183. {
  184. auto towns = cb->getTownsInfo();
  185. towns.erase(boost::remove_if(towns,
  186. [](const CGTownInstance *t) -> bool
  187. {
  188. return vstd::contains(t->forbiddenBuildings, BuildingID::GRAIL);
  189. }),
  190. towns.end());
  191. boost::sort(towns, isCloser);
  192. if(towns.size())
  193. {
  194. return sptr (Goals::VisitTile(towns.front()->visitablePos()).sethero(h));
  195. }
  196. }
  197. }
  198. double ratio = 0;
  199. // maybe make this check a bit more complex? For example:
  200. // 0.75 -> dig randomly withing 3 tiles radius
  201. // 0.85 -> radius now 2 tiles
  202. // 0.95 -> 1 tile radius, position is fully known
  203. // AFAIK H3 AI does something like this
  204. int3 grailPos = cb->getGrailPos(ratio);
  205. if(ratio > 0.99)
  206. {
  207. return sptr (Goals::DigAtTile(grailPos));
  208. } //TODO: use FIND_OBJ
  209. else if(const CGObjectInstance * obj = ai->getUnvisitedObj(objWithID<Obj::OBELISK>)) //there are unvisited Obelisks
  210. return sptr (Goals::GetObj(obj->id.getNum()));
  211. else
  212. return sptr (Goals::Explore());
  213. }
  214. break;
  215. }
  216. case EventCondition::CONTROL:
  217. {
  218. if (goal.object)
  219. {
  220. return sptr (Goals::GetObj(goal.object->id.getNum()));
  221. }
  222. else
  223. {
  224. //TODO: control all objects of type "goal.objectType"
  225. // Represents H3 condition "Flag all mines"
  226. break;
  227. }
  228. }
  229. case EventCondition::HAVE_RESOURCES:
  230. //TODO mines? piles? marketplace?
  231. //save?
  232. return sptr (Goals::CollectRes(static_cast<Res::ERes>(goal.objectType), goal.value));
  233. case EventCondition::HAVE_CREATURES:
  234. return sptr (Goals::GatherTroops(goal.objectType, goal.value));
  235. case EventCondition::TRANSPORT:
  236. {
  237. //TODO. merge with bring Grail to town? So AI will first dig grail, then transport it using this goal and builds it
  238. // Represents "transport artifact" condition:
  239. // goal.objectType = type of artifact
  240. // goal.object = destination-town where artifact should be transported
  241. break;
  242. }
  243. case EventCondition::STANDARD_WIN:
  244. return sptr (Goals::Conquer());
  245. // Conditions that likely don't need any implementation
  246. case EventCondition::DAYS_PASSED:
  247. break; // goal.value = number of days for condition to trigger
  248. case EventCondition::DAYS_WITHOUT_TOWN:
  249. break; // goal.value = number of days to trigger this
  250. case EventCondition::IS_HUMAN:
  251. break; // Should be only used in calculation of candidates (see toBool lambda)
  252. default:
  253. assert(0);
  254. }
  255. }
  256. return sptr (Goals::Invalid());
  257. }
  258. TSubgoal FindObj::whatToDoToAchieve()
  259. {
  260. const CGObjectInstance * o = nullptr;
  261. if (resID > -1) //specified
  262. {
  263. for(const CGObjectInstance *obj : ai->visitableObjs)
  264. {
  265. if(obj->ID == objid && obj->subID == resID)
  266. {
  267. o = obj;
  268. break; //TODO: consider multiple objects and choose best
  269. }
  270. }
  271. }
  272. else
  273. {
  274. for(const CGObjectInstance *obj : ai->visitableObjs)
  275. {
  276. if(obj->ID == objid)
  277. {
  278. o = obj;
  279. break; //TODO: consider multiple objects and choose best
  280. }
  281. }
  282. }
  283. if (o && isReachable(o)) //we don't use isAccessibleForHero as we don't know which hero it is
  284. return sptr (Goals::GetObj(o->id.getNum()));
  285. else
  286. return sptr (Goals::Explore());
  287. }
  288. std::string GetObj::completeMessage() const
  289. {
  290. return "hero " + hero.get()->name + " captured Object ID = " + boost::lexical_cast<std::string>(objid);
  291. }
  292. TSubgoal GetObj::whatToDoToAchieve()
  293. {
  294. const CGObjectInstance * obj = cb->getObj(ObjectInstanceID(objid));
  295. if(!obj)
  296. return sptr (Goals::Explore());
  297. int3 pos = obj->visitablePos();
  298. if (hero)
  299. {
  300. if (ai->isAccessibleForHero(pos, hero))
  301. return sptr (Goals::VisitTile(pos).sethero(hero));
  302. }
  303. else
  304. {
  305. if (isReachable(obj))
  306. return sptr (Goals::VisitTile(pos).sethero(hero)); //we must visit object with same hero, if any
  307. }
  308. return sptr (Goals::ClearWayTo(pos).sethero(hero));
  309. }
  310. bool GetObj::fulfillsMe (TSubgoal goal)
  311. {
  312. if (goal->goalType == Goals::VISIT_TILE)
  313. {
  314. auto obj = cb->getObj(ObjectInstanceID(objid));
  315. if (obj && obj->visitablePos() == goal->tile) //object could be removed
  316. return true;
  317. }
  318. return false;
  319. }
  320. std::string VisitHero::completeMessage() const
  321. {
  322. return "hero " + hero.get()->name + " visited hero " + boost::lexical_cast<std::string>(objid);
  323. }
  324. TSubgoal VisitHero::whatToDoToAchieve()
  325. {
  326. const CGObjectInstance * obj = cb->getObj(ObjectInstanceID(objid));
  327. if(!obj)
  328. return sptr (Goals::Explore());
  329. int3 pos = obj->visitablePos();
  330. if (hero && ai->isAccessibleForHero(pos, hero, true) && isSafeToVisit(hero, pos)) //enemy heroes can get reinforcements
  331. {
  332. if (hero->pos == pos)
  333. logAi->errorStream() << "Hero " << hero.name << " tries to visit himself.";
  334. else
  335. {
  336. //can't use VISIT_TILE here as tile appears blocked by target hero
  337. //FIXME: elementar goal should not be abstract
  338. return sptr (Goals::VisitHero(objid).sethero(hero).settile(pos).setisElementar(true));
  339. }
  340. }
  341. return sptr (Goals::Invalid());
  342. }
  343. bool VisitHero::fulfillsMe (TSubgoal goal)
  344. {
  345. if (goal->goalType == Goals::VISIT_TILE && cb->getObj(ObjectInstanceID(objid))->visitablePos() == goal->tile)
  346. return true;
  347. else
  348. return false;
  349. }
  350. TSubgoal GetArtOfType::whatToDoToAchieve()
  351. {
  352. TSubgoal alternativeWay = CGoal::lookForArtSmart(aid); //TODO: use
  353. if(alternativeWay->invalid())
  354. return sptr (Goals::FindObj(Obj::ARTIFACT, aid));
  355. return sptr (Goals::Invalid());
  356. }
  357. TSubgoal ClearWayTo::whatToDoToAchieve()
  358. {
  359. assert(cb->isInTheMap(tile)); //set tile
  360. if(!cb->isVisible(tile))
  361. {
  362. logAi->errorStream() << "Clear way should be used with visible tiles!";
  363. return sptr (Goals::Explore());
  364. }
  365. return (fh->chooseSolution(getAllPossibleSubgoals()));
  366. }
  367. TGoalVec ClearWayTo::getAllPossibleSubgoals()
  368. {
  369. TGoalVec ret;
  370. for (auto h : cb->getHeroesInfo())
  371. {
  372. if ((hero && hero->visitablePos() == tile && hero == *h) || //we can't free the way ourselves
  373. h->visitablePos() == tile) //we are already on that tile! what does it mean?
  374. continue;
  375. cb->setSelection(h);
  376. SectorMap sm;
  377. int3 tileToHit = sm.firstTileToGet(hero ? hero : h, tile);
  378. //if our hero is trapped, make sure we request clearing the way from OUR perspective
  379. if (isBlockedBorderGate(tileToHit))
  380. { //FIXME: this way we'll not visit gate and activate quest :?
  381. ret.push_back (sptr (Goals::FindObj (Obj::KEYMASTER, cb->getTile(tileToHit)->visitableObjects.back()->subID)));
  382. }
  383. auto topObj = backOrNull(cb->getVisitableObjs(tileToHit));
  384. if(topObj)
  385. {
  386. if (topObj->ID == Obj::HERO && cb->getPlayerRelations(h->tempOwner, topObj->tempOwner) != PlayerRelations::ENEMIES)
  387. if (topObj != hero.get(true)) //the hero we wnat to free
  388. logAi->errorStream() << boost::format("%s stands in the way of %s") % topObj->getHoverText() % h->getHoverText();
  389. if (topObj->ID == Obj::QUEST_GUARD || topObj->ID == Obj::BORDERGUARD)
  390. {
  391. if (shouldVisit(h, topObj))
  392. {
  393. //do NOT use VISIT_TILE, as tile with quets guard can't be visited
  394. ret.push_back (sptr (Goals::GetObj(topObj->id.getNum()).sethero(h)));
  395. }
  396. else
  397. {
  398. //TODO: we should be able to return apriopriate quest here (VCAI::striveToQuest)
  399. logAi->debugStream() << "Quest guard blocks the way to " + tile();
  400. }
  401. }
  402. }
  403. else
  404. ret.push_back (sptr (Goals::VisitTile(tileToHit).sethero(h)));
  405. }
  406. if (ai->canRecruitAnyHero())
  407. ret.push_back (sptr (Goals::RecruitHero()));
  408. if (ret.empty())
  409. {
  410. logAi->warnStream() << "There is no known way to clear the way to tile " + tile();
  411. throw goalFulfilledException (sptr(*this)); //make sure asigned hero gets unlocked
  412. }
  413. return ret;
  414. }
  415. std::string Explore::completeMessage() const
  416. {
  417. return "Hero " + hero.get()->name + " completed exploration";
  418. }
  419. TSubgoal Explore::whatToDoToAchieve()
  420. {
  421. auto ret = fh->chooseSolution(getAllPossibleSubgoals());
  422. if (hero) //use best step for this hero
  423. return ret;
  424. else
  425. {
  426. if (ret->hero.get(true))
  427. return sptr (sethero(ret->hero.h).setisAbstract(true)); //choose this hero and then continue with him
  428. else
  429. return ret; //other solutions, like buying hero from tavern
  430. }
  431. }
  432. TGoalVec Explore::getAllPossibleSubgoals()
  433. {
  434. TGoalVec ret;
  435. std::vector<const CGHeroInstance *> heroes;
  436. //std::vector<HeroPtr> heroes;
  437. if (hero)
  438. //heroes.push_back(hero);
  439. heroes.push_back(hero.h);
  440. else
  441. {
  442. //heroes = ai->getUnblockedHeroes();
  443. heroes = cb->getHeroesInfo();
  444. erase_if (heroes, [](const HeroPtr h)
  445. {
  446. return !h->movement; //saves time, immobile heroes are useless anyway
  447. });
  448. }
  449. //try to use buildings that uncover map
  450. std::vector<const CGObjectInstance *> objs;
  451. for (auto obj : ai->visitableObjs)
  452. {
  453. if (!vstd::contains(ai->alreadyVisited, obj))
  454. {
  455. switch (obj->ID.num)
  456. {
  457. case Obj::REDWOOD_OBSERVATORY:
  458. case Obj::PILLAR_OF_FIRE:
  459. case Obj::CARTOGRAPHER:
  460. case Obj::SUBTERRANEAN_GATE: //TODO: check ai->knownSubterraneanGates
  461. objs.push_back (obj);
  462. }
  463. }
  464. }
  465. for (auto h : heroes)
  466. {
  467. for (auto obj : objs) //double loop, performance risk?
  468. {
  469. if (ai->isAccessibleForHero(obj->visitablePos(), h) && isSafeToVisit(h, obj->visitablePos()))
  470. {
  471. ret.push_back (sptr (Goals::VisitTile(obj->visitablePos()).sethero(h)));
  472. }
  473. }
  474. int3 t = whereToExplore(h);
  475. if (cb->isInTheMap(t)) //valid tile was found - could be invalid (none)
  476. ret.push_back (sptr (Goals::VisitTile(t).sethero(h)));
  477. }
  478. //we either don't have hero yet or none of heroes can explore
  479. if ((!hero || ret.empty()) && ai->canRecruitAnyHero())
  480. ret.push_back (sptr(Goals::RecruitHero()));
  481. if (ret.empty())
  482. {
  483. HeroPtr h;
  484. if (hero) //there is some hero set and it's us
  485. {
  486. if (hero == ai->primaryHero())
  487. h = hero;
  488. }
  489. else //no hero is set, so we choose our main
  490. h = ai->primaryHero();
  491. //we may need to gather big army to break!
  492. if (h.h)
  493. {
  494. //FIXME: it never finds anything :?
  495. int3 t = ai->explorationNewPoint(h->getSightRadious(), h, true);
  496. if (cb->isInTheMap(t))
  497. ret.push_back (sptr(ClearWayTo(t).setisAbstract(true).sethero(h)));
  498. else //just in case above fails - gather army if no further exploration possible
  499. ret.push_back (sptr(GatherArmy(h->getArmyStrength() + 1).sethero(h)));
  500. //do not set abstract to keep our hero free once he gets reinforcements
  501. }
  502. }
  503. if (ret.empty())
  504. {
  505. throw goalFulfilledException (sptr(Goals::Explore().sethero(hero)));
  506. }
  507. //throw cannotFulfillGoalException("Cannot explore - no possible ways found!");
  508. return ret;
  509. }
  510. bool Explore::fulfillsMe (TSubgoal goal)
  511. {
  512. if (goal->goalType == Goals::EXPLORE)
  513. {
  514. if (goal->hero)
  515. return hero == goal->hero;
  516. else
  517. return true; //cancel ALL exploration
  518. }
  519. return false;
  520. }
  521. TSubgoal RecruitHero::whatToDoToAchieve()
  522. {
  523. const CGTownInstance *t = ai->findTownWithTavern();
  524. if(!t)
  525. return sptr (Goals::BuildThis(BuildingID::TAVERN));
  526. if(cb->getResourceAmount(Res::GOLD) < HERO_GOLD_COST)
  527. return sptr (Goals::CollectRes(Res::GOLD, HERO_GOLD_COST));
  528. return iAmElementar();
  529. }
  530. std::string VisitTile::completeMessage() const
  531. {
  532. return "Hero " + hero.get()->name + " visited tile " + tile();
  533. }
  534. TSubgoal VisitTile::whatToDoToAchieve()
  535. {
  536. auto ret = fh->chooseSolution(getAllPossibleSubgoals());
  537. if (ret->hero)
  538. {
  539. if (isSafeToVisit(ret->hero, tile) && ai->isAccessibleForHero(tile, ret->hero))
  540. {
  541. ret->setisElementar(true);
  542. return ret;
  543. }
  544. else
  545. {
  546. return sptr (Goals::GatherArmy(evaluateDanger(tile, *ret->hero) * SAFE_ATTACK_CONSTANT)
  547. .sethero(ret->hero).setisAbstract(true));
  548. }
  549. }
  550. return ret;
  551. }
  552. TGoalVec VisitTile::getAllPossibleSubgoals()
  553. {
  554. TGoalVec ret;
  555. if (!cb->isVisible(tile))
  556. ret.push_back (sptr(Goals::Explore())); //what sense does it make?
  557. else
  558. {
  559. std::vector<const CGHeroInstance *> heroes;
  560. if (hero)
  561. heroes.push_back(hero.h); //use assigned hero if any
  562. else
  563. heroes = cb->getHeroesInfo(); //use most convenient hero
  564. for (auto h : heroes)
  565. {
  566. if (ai->isAccessibleForHero(tile, h))
  567. ret.push_back (sptr(Goals::VisitTile(tile).sethero(h)));
  568. }
  569. if (ai->canRecruitAnyHero())
  570. ret.push_back (sptr(Goals::RecruitHero()));
  571. }
  572. if (ret.empty())
  573. {
  574. auto obj = frontOrNull(cb->getVisitableObjs(tile));
  575. if (obj && obj->ID == Obj::HERO && obj->tempOwner == ai->playerID) //our own hero stands on that tile
  576. ret.push_back (sptr(Goals::VisitTile(tile).sethero(dynamic_cast<const CGHeroInstance *>(obj)).setisElementar(true)));
  577. else
  578. ret.push_back (sptr(Goals::ClearWayTo(tile)));
  579. }
  580. //important - at least one sub-goal must handle case which is impossible to fulfill (unreachable tile)
  581. return ret;
  582. }
  583. TSubgoal DigAtTile::whatToDoToAchieve()
  584. {
  585. const CGObjectInstance *firstObj = frontOrNull(cb->getVisitableObjs(tile));
  586. if(firstObj && firstObj->ID == Obj::HERO && firstObj->tempOwner == ai->playerID) //we have hero at dest
  587. {
  588. const CGHeroInstance *h = dynamic_cast<const CGHeroInstance *>(firstObj);
  589. sethero(h).setisElementar(true);
  590. return sptr (*this);
  591. }
  592. return sptr (Goals::VisitTile(tile));
  593. }
  594. TSubgoal BuildThis::whatToDoToAchieve()
  595. {
  596. //TODO check res
  597. //look for town
  598. //prerequisites?
  599. return iAmElementar();
  600. }
  601. TSubgoal CollectRes::whatToDoToAchieve()
  602. {
  603. std::vector<const IMarket*> markets;
  604. std::vector<const CGObjectInstance*> visObjs;
  605. ai->retreiveVisitableObjs(visObjs, true);
  606. for(const CGObjectInstance *obj : visObjs)
  607. {
  608. if(const IMarket *m = IMarket::castFrom(obj, false))
  609. {
  610. if(obj->ID == Obj::TOWN && obj->tempOwner == ai->playerID && m->allowsTrade(EMarketMode::RESOURCE_RESOURCE))
  611. markets.push_back(m);
  612. else if(obj->ID == Obj::TRADING_POST) //TODO a moze po prostu test na pozwalanie handlu?
  613. markets.push_back(m);
  614. }
  615. }
  616. boost::sort(markets, [](const IMarket *m1, const IMarket *m2) -> bool
  617. {
  618. return m1->getMarketEfficiency() < m2->getMarketEfficiency();
  619. });
  620. markets.erase(boost::remove_if(markets, [](const IMarket *market) -> bool
  621. {
  622. return !(market->o->ID == Obj::TOWN && market->o->tempOwner == ai->playerID)
  623. && !ai->isAccessible(market->o->visitablePos());
  624. }),markets.end());
  625. if(!markets.size())
  626. {
  627. for(const CGTownInstance *t : cb->getTownsInfo())
  628. {
  629. if(cb->canBuildStructure(t, BuildingID::MARKETPLACE) == EBuildingState::ALLOWED)
  630. return sptr (Goals::BuildThis(BuildingID::MARKETPLACE, t));
  631. }
  632. }
  633. else
  634. {
  635. const IMarket *m = markets.back();
  636. //attempt trade at back (best prices)
  637. int howManyCanWeBuy = 0;
  638. for(Res::ERes i = Res::WOOD; i <= Res::GOLD; vstd::advance(i, 1))
  639. {
  640. if(i == resID) continue;
  641. int toGive = -1, toReceive = -1;
  642. m->getOffer(i, resID, toGive, toReceive, EMarketMode::RESOURCE_RESOURCE);
  643. assert(toGive > 0 && toReceive > 0);
  644. howManyCanWeBuy += toReceive * (cb->getResourceAmount(i) / toGive);
  645. }
  646. if(howManyCanWeBuy + cb->getResourceAmount(static_cast<Res::ERes>(resID)) >= value)
  647. {
  648. auto backObj = backOrNull(cb->getVisitableObjs(m->o->visitablePos())); //it'll be a hero if we have one there; otherwise marketplace
  649. assert(backObj);
  650. if (backObj->tempOwner != ai->playerID)
  651. {
  652. return sptr (Goals::GetObj(m->o->id.getNum()));
  653. }
  654. else
  655. {
  656. return sptr (Goals::GetObj(m->o->id.getNum()).setisElementar(true));
  657. }
  658. }
  659. }
  660. return sptr (setisElementar(true)); //all the conditions for trade are met
  661. }
  662. TSubgoal GatherTroops::whatToDoToAchieve()
  663. {
  664. std::vector<const CGDwelling *> dwellings;
  665. for(const CGTownInstance *t : cb->getTownsInfo())
  666. {
  667. auto creature = VLC->creh->creatures[objid];
  668. if (t->subID == creature->faction) //TODO: how to force AI to build unupgraded creatures? :O
  669. {
  670. auto creatures = vstd::tryAt(t->town->creatures, creature->level - 1);
  671. if(!creatures)
  672. continue;
  673. int upgradeNumber = vstd::find_pos(*creatures, creature->idNumber);
  674. if(upgradeNumber < 0)
  675. continue;
  676. BuildingID bid(BuildingID::DWELL_FIRST + creature->level - 1 + upgradeNumber * GameConstants::CREATURES_PER_TOWN);
  677. if (t->hasBuilt(bid)) //this assumes only creatures with dwellings are assigned to faction
  678. {
  679. dwellings.push_back(t);
  680. }
  681. else
  682. {
  683. return sptr (Goals::BuildThis(bid, t));
  684. }
  685. }
  686. }
  687. for (auto obj : ai->visitableObjs)
  688. {
  689. if (obj->ID != Obj::CREATURE_GENERATOR1) //TODO: what with other creature generators?
  690. continue;
  691. auto d = dynamic_cast<const CGDwelling *>(obj);
  692. for (auto creature : d->creatures)
  693. {
  694. if (creature.first) //there are more than 0 creatures avaliabe
  695. {
  696. for (auto type : creature.second)
  697. {
  698. if (type == objid && ai->freeResources().canAfford(VLC->creh->creatures[type]->cost))
  699. dwellings.push_back(d);
  700. }
  701. }
  702. }
  703. }
  704. if (dwellings.size())
  705. {
  706. boost::sort(dwellings, isCloser);
  707. return sptr (Goals::GetObj(dwellings.front()->id.getNum()));
  708. }
  709. else
  710. return sptr (Goals::Explore());
  711. //TODO: exchange troops between heroes
  712. }
  713. TSubgoal Conquer::whatToDoToAchieve()
  714. {
  715. return fh->chooseSolution (getAllPossibleSubgoals());
  716. }
  717. TGoalVec Conquer::getAllPossibleSubgoals()
  718. {
  719. TGoalVec ret;
  720. std::vector<const CGObjectInstance *> objs; //here we'll gather enemy towns and heroes
  721. ai->retreiveVisitableObjs(objs);
  722. erase_if(objs, [&](const CGObjectInstance *obj)
  723. {
  724. return (obj->ID != Obj::TOWN && obj->ID != Obj::HERO && //not town/hero
  725. obj->ID != Obj::CREATURE_GENERATOR1 && obj->ID != Obj::MINE) //not dwelling or mine
  726. || cb->getPlayerRelations(ai->playerID, obj->tempOwner) != PlayerRelations::ENEMIES; //only enemy objects are interesting
  727. });
  728. erase_if(objs, [&](const CGObjectInstance *obj)
  729. {
  730. return vstd::contains (ai->reservedObjs, obj);
  731. //no need to capture same object twice
  732. });
  733. for (auto h : cb->getHeroesInfo())
  734. {
  735. for (auto obj : objs) //double loop, performance risk?
  736. {
  737. if (ai->isAccessibleForHero(obj->visitablePos(), h) && isSafeToVisit(h, obj->visitablePos()))
  738. {
  739. if (obj->ID == Obj::HERO)
  740. ret.push_back (sptr (Goals::VisitHero(obj->id.getNum()).sethero(h).setisAbstract(true)));
  741. //track enemy hero
  742. else
  743. ret.push_back (sptr (Goals::VisitTile(obj->visitablePos()).sethero(h)));
  744. }
  745. }
  746. }
  747. if (!objs.empty() && ai->canRecruitAnyHero()) //probably no point to recruit hero if we see no objects to capture
  748. ret.push_back (sptr(Goals::RecruitHero()));
  749. if (ret.empty())
  750. ret.push_back (sptr(Goals::Explore())); //we need to find an enemy
  751. return ret;
  752. }
  753. TSubgoal Build::whatToDoToAchieve()
  754. {
  755. return iAmElementar();
  756. }
  757. TSubgoal Invalid::whatToDoToAchieve()
  758. {
  759. return iAmElementar();
  760. }
  761. std::string GatherArmy::completeMessage() const
  762. {
  763. return "Hero " + hero.get()->name + " gathered army of value " + boost::lexical_cast<std::string>(value);
  764. }
  765. TSubgoal GatherArmy::whatToDoToAchieve()
  766. {
  767. //TODO: find hero if none set
  768. assert(hero.h);
  769. return fh->chooseSolution (getAllPossibleSubgoals()); //find dwelling. use current hero to prevent him from doing nothing.
  770. }
  771. TGoalVec GatherArmy::getAllPossibleSubgoals()
  772. {
  773. //get all possible towns, heroes and dwellings we may use
  774. TGoalVec ret;
  775. //TODO: include evaluation of monsters gather in calculation
  776. for (auto t : cb->getTownsInfo())
  777. {
  778. auto pos = t->visitablePos();
  779. if (ai->isAccessibleForHero(pos, hero))
  780. {
  781. if(!t->visitingHero && howManyReinforcementsCanGet(hero,t))
  782. {
  783. if (!vstd::contains (ai->townVisitsThisWeek[hero], t))
  784. ret.push_back (sptr (Goals::VisitTile(pos).sethero(hero)));
  785. }
  786. auto bid = ai->canBuildAnyStructure(t, std::vector<BuildingID>
  787. (unitsSource, unitsSource + ARRAY_COUNT(unitsSource)), 8 - cb->getDate(Date::DAY_OF_WEEK));
  788. if (bid != BuildingID::NONE)
  789. ret.push_back (sptr(BuildThis(bid, t)));
  790. }
  791. }
  792. auto otherHeroes = cb->getHeroesInfo();
  793. auto heroDummy = hero;
  794. erase_if(otherHeroes, [heroDummy](const CGHeroInstance * h)
  795. {
  796. return (h == heroDummy.h || !ai->isAccessibleForHero(heroDummy->visitablePos(), h, true) || !ai->canGetArmy(heroDummy.h, h));
  797. });
  798. for (auto h : otherHeroes)
  799. {
  800. ret.push_back (sptr (Goals::VisitHero(h->id.getNum()).setisAbstract(true).sethero(hero)));
  801. //go to the other hero if we are faster
  802. ret.push_back (sptr (Goals::VisitHero(hero->id.getNum()).setisAbstract(true).sethero(h)));
  803. //let the other hero come to us
  804. }
  805. std::vector <const CGObjectInstance *> objs;
  806. for (auto obj : ai->visitableObjs)
  807. {
  808. if(obj->ID == Obj::CREATURE_GENERATOR1)
  809. {
  810. auto relationToOwner = cb->getPlayerRelations(obj->getOwner(), ai->playerID);
  811. //Use flagged dwellings only when there are available creatures that we can afford
  812. if(relationToOwner == PlayerRelations::SAME_PLAYER)
  813. {
  814. auto dwelling = dynamic_cast<const CGDwelling*>(obj);
  815. for(auto & creLevel : dwelling->creatures)
  816. {
  817. if(creLevel.first)
  818. {
  819. for(auto & creatureID : creLevel.second)
  820. {
  821. auto creature = VLC->creh->creatures[creatureID];
  822. if (ai->freeResources().canAfford(creature->cost))
  823. objs.push_back(obj);
  824. }
  825. }
  826. }
  827. }
  828. }
  829. }
  830. for(auto h : cb->getHeroesInfo())
  831. {
  832. for (auto obj : objs)
  833. { //find safe dwelling
  834. auto pos = obj->visitablePos();
  835. if (shouldVisit (h, obj) && isSafeToVisit(h, pos) && ai->isAccessibleForHero(pos, h))
  836. ret.push_back (sptr (Goals::VisitTile(pos).sethero(h)));
  837. }
  838. }
  839. if (ret.empty())
  840. ret.push_back (sptr(Goals::Explore()));
  841. return ret;
  842. }
  843. //TSubgoal AbstractGoal::whatToDoToAchieve()
  844. //{
  845. // logAi->debugStream() << boost::format("Decomposing goal of type %s") % name();
  846. // return sptr (Goals::Explore());
  847. //}
  848. TSubgoal AbstractGoal::goVisitOrLookFor(const CGObjectInstance *obj)
  849. {
  850. if(obj)
  851. return sptr (Goals::GetObj(obj->id.getNum()));
  852. else
  853. return sptr (Goals::Explore());
  854. }
  855. TSubgoal AbstractGoal::lookForArtSmart(int aid)
  856. {
  857. return sptr (Goals::Invalid());
  858. }
  859. bool AbstractGoal::invalid() const
  860. {
  861. return goalType == INVALID;
  862. }
  863. void AbstractGoal::accept (VCAI * ai)
  864. {
  865. ai->tryRealize(*this);
  866. }
  867. template<typename T>
  868. void CGoal<T>::accept (VCAI * ai)
  869. {
  870. ai->tryRealize(static_cast<T&>(*this)); //casting enforces template instantiation
  871. }
  872. float AbstractGoal::accept (FuzzyHelper * f)
  873. {
  874. return f->evaluate(*this);
  875. }
  876. template<typename T>
  877. float CGoal<T>::accept (FuzzyHelper * f)
  878. {
  879. return f->evaluate(static_cast<T&>(*this)); //casting enforces template instantiation
  880. }