VCAI.cpp 80 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916
  1. /*
  2. * VCAI.cpp, part of VCMI engine
  3. *
  4. * Authors: listed in file AUTHORS in main folder
  5. *
  6. * License: GNU General Public License v2.0 or later
  7. * Full text of license available in license.txt file, in main folder
  8. *
  9. */
  10. #include "StdInc.h"
  11. #include "VCAI.h"
  12. #include "FuzzyHelper.h"
  13. #include "ResourceManager.h"
  14. #include "BuildingManager.h"
  15. #include "Goals/Goals.h"
  16. #include "../../lib/UnlockGuard.h"
  17. #include "../../lib/mapObjects/MapObjects.h"
  18. #include "../../lib/CConfigHandler.h"
  19. #include "../../lib/CHeroHandler.h"
  20. #include "../../lib/CModHandler.h"
  21. #include "../../lib/CGameState.h"
  22. #include "../../lib/NetPacks.h"
  23. #include "../../lib/serializer/CTypeList.h"
  24. #include "../../lib/serializer/BinarySerializer.h"
  25. #include "../../lib/serializer/BinaryDeserializer.h"
  26. #include "AIhelper.h"
  27. #include "Engine/Nullkiller.h"
  28. extern FuzzyHelper * fh;
  29. class CGVisitableOPW;
  30. const float SAFE_ATTACK_CONSTANT = 1.5;
  31. //one thread may be turn of AI and another will be handling a side effect for AI2
  32. boost::thread_specific_ptr<CCallback> cb;
  33. boost::thread_specific_ptr<VCAI> ai;
  34. //std::map<int, std::map<int, int> > HeroView::infosCount;
  35. //helper RAII to manage global ai/cb ptrs
  36. struct SetGlobalState
  37. {
  38. SetGlobalState(VCAI * AI)
  39. {
  40. assert(!ai.get());
  41. assert(!cb.get());
  42. ai.reset(AI);
  43. cb.reset(AI->myCb.get());
  44. }
  45. ~SetGlobalState()
  46. {
  47. //TODO: how to handle rm? shouldn't be called after ai is destroyed, hopefully
  48. //TODO: to ensure that, make rm unique_ptr
  49. ai.release();
  50. cb.release();
  51. }
  52. };
  53. #define SET_GLOBAL_STATE(ai) SetGlobalState _hlpSetState(ai);
  54. #define NET_EVENT_HANDLER SET_GLOBAL_STATE(this)
  55. #define MAKING_TURN SET_GLOBAL_STATE(this)
  56. VCAI::VCAI()
  57. {
  58. LOG_TRACE(logAi);
  59. makingTurn = nullptr;
  60. destinationTeleport = ObjectInstanceID();
  61. destinationTeleportPos = int3(-1);
  62. ah = new AIhelper();
  63. ah->setAI(this);
  64. }
  65. VCAI::~VCAI()
  66. {
  67. delete ah;
  68. LOG_TRACE(logAi);
  69. finish();
  70. }
  71. void VCAI::availableCreaturesChanged(const CGDwelling * town)
  72. {
  73. LOG_TRACE(logAi);
  74. NET_EVENT_HANDLER;
  75. }
  76. void VCAI::heroMoved(const TryMoveHero & details)
  77. {
  78. LOG_TRACE(logAi);
  79. NET_EVENT_HANDLER;
  80. validateObject(details.id); //enemy hero may have left visible area
  81. auto hero = cb->getHero(details.id);
  82. const int3 from = CGHeroInstance::convertPosition(details.start, false);
  83. const int3 to = CGHeroInstance::convertPosition(details.end, false);
  84. const CGObjectInstance * o1 = vstd::frontOrNull(cb->getVisitableObjs(from));
  85. const CGObjectInstance * o2 = vstd::frontOrNull(cb->getVisitableObjs(to));
  86. if(details.result == TryMoveHero::TELEPORTATION)
  87. {
  88. auto t1 = dynamic_cast<const CGTeleport *>(o1);
  89. auto t2 = dynamic_cast<const CGTeleport *>(o2);
  90. if(t1 && t2)
  91. {
  92. if(cb->isTeleportChannelBidirectional(t1->channel))
  93. {
  94. if(o1->ID == Obj::SUBTERRANEAN_GATE && o1->ID == o2->ID) // We need to only add subterranean gates in knownSubterraneanGates. Used for features not yet ported to use teleport channels
  95. {
  96. knownSubterraneanGates[o1] = o2;
  97. knownSubterraneanGates[o2] = o1;
  98. logAi->debug("Found a pair of subterranean gates between %s and %s!", from.toString(), to.toString());
  99. }
  100. }
  101. }
  102. //FIXME: teleports are not correctly visited
  103. unreserveObject(hero, t1);
  104. unreserveObject(hero, t2);
  105. }
  106. else if(details.result == TryMoveHero::EMBARK && hero)
  107. {
  108. //make sure AI not attempt to visit used boat
  109. validateObject(hero->boat);
  110. }
  111. else if(details.result == TryMoveHero::DISEMBARK && o1)
  112. {
  113. auto boat = dynamic_cast<const CGBoat *>(o1);
  114. if(boat)
  115. addVisitableObj(boat);
  116. }
  117. }
  118. void VCAI::heroInGarrisonChange(const CGTownInstance * town)
  119. {
  120. LOG_TRACE(logAi);
  121. NET_EVENT_HANDLER;
  122. }
  123. void VCAI::centerView(int3 pos, int focusTime)
  124. {
  125. LOG_TRACE_PARAMS(logAi, "focusTime '%i'", focusTime);
  126. NET_EVENT_HANDLER;
  127. }
  128. void VCAI::artifactMoved(const ArtifactLocation & src, const ArtifactLocation & dst)
  129. {
  130. LOG_TRACE(logAi);
  131. NET_EVENT_HANDLER;
  132. }
  133. void VCAI::artifactAssembled(const ArtifactLocation & al)
  134. {
  135. LOG_TRACE(logAi);
  136. NET_EVENT_HANDLER;
  137. }
  138. void VCAI::showTavernWindow(const CGObjectInstance * townOrTavern)
  139. {
  140. LOG_TRACE(logAi);
  141. NET_EVENT_HANDLER;
  142. }
  143. void VCAI::showThievesGuildWindow(const CGObjectInstance * obj)
  144. {
  145. LOG_TRACE(logAi);
  146. NET_EVENT_HANDLER;
  147. }
  148. void VCAI::playerBlocked(int reason, bool start)
  149. {
  150. LOG_TRACE_PARAMS(logAi, "reason '%i', start '%i'", reason % start);
  151. NET_EVENT_HANDLER;
  152. if(start && reason == PlayerBlocked::UPCOMING_BATTLE)
  153. status.setBattle(UPCOMING_BATTLE);
  154. if(reason == PlayerBlocked::ONGOING_MOVEMENT)
  155. status.setMove(start);
  156. }
  157. void VCAI::showPuzzleMap()
  158. {
  159. LOG_TRACE(logAi);
  160. NET_EVENT_HANDLER;
  161. }
  162. void VCAI::showShipyardDialog(const IShipyard * obj)
  163. {
  164. LOG_TRACE(logAi);
  165. NET_EVENT_HANDLER;
  166. }
  167. void VCAI::gameOver(PlayerColor player, const EVictoryLossCheckResult & victoryLossCheckResult)
  168. {
  169. LOG_TRACE_PARAMS(logAi, "victoryLossCheckResult '%s'", victoryLossCheckResult.messageToSelf);
  170. NET_EVENT_HANDLER;
  171. logAi->debug("Player %d (%s): I heard that player %d (%s) %s.", playerID, playerID.getStr(), player, player.getStr(), (victoryLossCheckResult.victory() ? "won" : "lost"));
  172. if(player == playerID)
  173. {
  174. if(victoryLossCheckResult.victory())
  175. {
  176. logAi->debug("VCAI: I won! Incredible!");
  177. logAi->debug("Turn nr %d", myCb->getDate());
  178. }
  179. else
  180. {
  181. logAi->debug("VCAI: Player %d (%s) lost. It's me. What a disappointment! :(", player, player.getStr());
  182. }
  183. finish();
  184. }
  185. }
  186. void VCAI::artifactPut(const ArtifactLocation & al)
  187. {
  188. LOG_TRACE(logAi);
  189. NET_EVENT_HANDLER;
  190. }
  191. void VCAI::artifactRemoved(const ArtifactLocation & al)
  192. {
  193. LOG_TRACE(logAi);
  194. NET_EVENT_HANDLER;
  195. }
  196. void VCAI::artifactDisassembled(const ArtifactLocation & al)
  197. {
  198. LOG_TRACE(logAi);
  199. NET_EVENT_HANDLER;
  200. }
  201. void VCAI::heroVisit(const CGHeroInstance * visitor, const CGObjectInstance * visitedObj, bool start)
  202. {
  203. LOG_TRACE_PARAMS(logAi, "start '%i'; obj '%s'", start % (visitedObj ? visitedObj->getObjectName() : std::string("n/a")));
  204. NET_EVENT_HANDLER;
  205. if(start && visitedObj) //we can end visit with null object, anyway
  206. {
  207. markObjectVisited(visitedObj);
  208. unreserveObject(visitor, visitedObj);
  209. completeGoal(sptr(Goals::VisitObj(visitedObj->id.getNum()).sethero(visitor))); //we don't need to visit it anymore
  210. //TODO: what if we visited one-time visitable object that was reserved by another hero (shouldn't, but..)
  211. if (visitedObj->ID == Obj::HERO)
  212. {
  213. visitedHeroes[visitor].insert(HeroPtr(dynamic_cast<const CGHeroInstance *>(visitedObj)));
  214. }
  215. }
  216. status.heroVisit(visitedObj, start);
  217. }
  218. void VCAI::availableArtifactsChanged(const CGBlackMarket * bm)
  219. {
  220. LOG_TRACE(logAi);
  221. NET_EVENT_HANDLER;
  222. }
  223. void VCAI::heroVisitsTown(const CGHeroInstance * hero, const CGTownInstance * town)
  224. {
  225. LOG_TRACE(logAi);
  226. NET_EVENT_HANDLER;
  227. //buildArmyIn(town);
  228. //moveCreaturesToHero(town);
  229. }
  230. void VCAI::tileHidden(const std::unordered_set<int3, ShashInt3> & pos)
  231. {
  232. LOG_TRACE(logAi);
  233. NET_EVENT_HANDLER;
  234. validateVisitableObjs();
  235. clearPathsInfo();
  236. }
  237. void VCAI::tileRevealed(const std::unordered_set<int3, ShashInt3> & pos)
  238. {
  239. LOG_TRACE(logAi);
  240. NET_EVENT_HANDLER;
  241. for(int3 tile : pos)
  242. {
  243. for(const CGObjectInstance * obj : myCb->getVisitableObjs(tile))
  244. addVisitableObj(obj);
  245. }
  246. clearPathsInfo();
  247. }
  248. void VCAI::heroExchangeStarted(ObjectInstanceID hero1, ObjectInstanceID hero2, QueryID query)
  249. {
  250. LOG_TRACE(logAi);
  251. NET_EVENT_HANDLER;
  252. auto firstHero = cb->getHero(hero1);
  253. auto secondHero = cb->getHero(hero2);
  254. status.addQuery(query, boost::str(boost::format("Exchange between heroes %s (%d) and %s (%d)") % firstHero->name % firstHero->tempOwner % secondHero->name % secondHero->tempOwner));
  255. requestActionASAP([=]()
  256. {
  257. float goalpriority1 = 0, goalpriority2 = 0;
  258. auto firstGoal = getGoal(firstHero);
  259. if(firstGoal->goalType == Goals::GATHER_ARMY)
  260. goalpriority1 = firstGoal->priority;
  261. auto secondGoal = getGoal(secondHero);
  262. if(secondGoal->goalType == Goals::GATHER_ARMY)
  263. goalpriority2 = secondGoal->priority;
  264. auto transferFrom2to1 = [this](const CGHeroInstance * h1, const CGHeroInstance * h2) -> void
  265. {
  266. this->pickBestCreatures(h1, h2);
  267. this->pickBestArtifacts(h1, h2);
  268. };
  269. //Do not attempt army or artifacts exchange if we visited ally player
  270. //Visits can still be useful if hero have skills like Scholar
  271. if(firstHero->tempOwner != secondHero->tempOwner)
  272. {
  273. logAi->debug("Heroes owned by different players. Do not exchange army or artifacts.");
  274. }
  275. else if(nullkiller)
  276. {
  277. if(nullkiller->isActive(firstHero))
  278. transferFrom2to1(secondHero, firstHero);
  279. else
  280. transferFrom2to1(firstHero, secondHero);
  281. }
  282. else if(goalpriority1 > goalpriority2)
  283. {
  284. transferFrom2to1(firstHero, secondHero);
  285. }
  286. else if(goalpriority1 < goalpriority2)
  287. {
  288. transferFrom2to1(secondHero, firstHero);
  289. }
  290. else //regular criteria
  291. {
  292. if(firstHero->getFightingStrength() > secondHero->getFightingStrength() && ah->canGetArmy(firstHero, secondHero))
  293. transferFrom2to1(firstHero, secondHero);
  294. else if(ah->canGetArmy(secondHero, firstHero))
  295. transferFrom2to1(secondHero, firstHero);
  296. }
  297. completeGoal(sptr(Goals::VisitHero(firstHero->id.getNum()))); //TODO: what if we were visited by other hero in the meantime?
  298. completeGoal(sptr(Goals::VisitHero(secondHero->id.getNum())));
  299. answerQuery(query, 0);
  300. });
  301. }
  302. void VCAI::heroPrimarySkillChanged(const CGHeroInstance * hero, int which, si64 val)
  303. {
  304. LOG_TRACE_PARAMS(logAi, "which '%i', val '%i'", which % val);
  305. NET_EVENT_HANDLER;
  306. }
  307. void VCAI::showRecruitmentDialog(const CGDwelling * dwelling, const CArmedInstance * dst, int level)
  308. {
  309. LOG_TRACE_PARAMS(logAi, "level '%i'", level);
  310. NET_EVENT_HANDLER;
  311. }
  312. void VCAI::heroMovePointsChanged(const CGHeroInstance * hero)
  313. {
  314. LOG_TRACE(logAi);
  315. NET_EVENT_HANDLER;
  316. }
  317. void VCAI::garrisonsChanged(ObjectInstanceID id1, ObjectInstanceID id2)
  318. {
  319. LOG_TRACE(logAi);
  320. NET_EVENT_HANDLER;
  321. }
  322. void VCAI::newObject(const CGObjectInstance * obj)
  323. {
  324. LOG_TRACE(logAi);
  325. NET_EVENT_HANDLER;
  326. if(obj->isVisitable())
  327. addVisitableObj(obj);
  328. }
  329. //to prevent AI from accessing objects that got deleted while they became invisible (Cover of Darkness, enemy hero moved etc.) below code allows AI to know deletion of objects out of sight
  330. //see: RemoveObject::applyFirstCl, to keep AI "not cheating" do not use advantage of this and use this function just to prevent crashes
  331. void VCAI::objectRemoved(const CGObjectInstance * obj)
  332. {
  333. LOG_TRACE(logAi);
  334. NET_EVENT_HANDLER;
  335. vstd::erase_if_present(visitableObjs, obj);
  336. vstd::erase_if_present(alreadyVisited, obj);
  337. for(auto h : cb->getHeroesInfo())
  338. unreserveObject(h, obj);
  339. std::function<bool(const Goals::TSubgoal &)> checkRemovalValidity = [&](const Goals::TSubgoal & x) -> bool
  340. {
  341. if((x->goalType == Goals::VISIT_OBJ) && (x->objid == obj->id.getNum()))
  342. return true;
  343. else if(x->parent && checkRemovalValidity(x->parent)) //repeat this lambda check recursively on parent goal
  344. return true;
  345. else
  346. return false;
  347. };
  348. //clear VCAI / main loop caches
  349. vstd::erase_if(lockedHeroes, [&](const std::pair<HeroPtr, Goals::TSubgoal> & x) -> bool
  350. {
  351. return checkRemovalValidity(x.second);
  352. });
  353. vstd::erase_if(ultimateGoalsFromBasic, [&](const std::pair<Goals::TSubgoal, Goals::TGoalVec> & x) -> bool
  354. {
  355. return checkRemovalValidity(x.first);
  356. });
  357. vstd::erase_if(basicGoals, checkRemovalValidity);
  358. vstd::erase_if(goalsToAdd, checkRemovalValidity);
  359. vstd::erase_if(goalsToRemove, checkRemovalValidity);
  360. for(auto goal : ultimateGoalsFromBasic)
  361. vstd::erase_if(goal.second, checkRemovalValidity);
  362. //clear resource manager goal cache
  363. ah->removeOutdatedObjectives(checkRemovalValidity);
  364. //TODO: Find better way to handle hero boat removal
  365. if(auto hero = dynamic_cast<const CGHeroInstance *>(obj))
  366. {
  367. if(hero->boat)
  368. {
  369. vstd::erase_if_present(visitableObjs, hero->boat);
  370. vstd::erase_if_present(alreadyVisited, hero->boat);
  371. for(auto h : cb->getHeroesInfo())
  372. unreserveObject(h, hero->boat);
  373. }
  374. }
  375. //TODO
  376. //there are other places where CGObjectinstance ptrs are stored...
  377. //
  378. if(obj->ID == Obj::HERO && obj->tempOwner == playerID)
  379. {
  380. lostHero(cb->getHero(obj->id)); //we can promote, since objectRemoved is called just before actual deletion
  381. }
  382. }
  383. void VCAI::showHillFortWindow(const CGObjectInstance * object, const CGHeroInstance * visitor)
  384. {
  385. LOG_TRACE(logAi);
  386. NET_EVENT_HANDLER;
  387. requestActionASAP([=]()
  388. {
  389. makePossibleUpgrades(visitor);
  390. });
  391. }
  392. void VCAI::playerBonusChanged(const Bonus & bonus, bool gain)
  393. {
  394. LOG_TRACE_PARAMS(logAi, "gain '%i'", gain);
  395. NET_EVENT_HANDLER;
  396. }
  397. void VCAI::heroCreated(const CGHeroInstance * h)
  398. {
  399. LOG_TRACE(logAi);
  400. if(h->visitedTown)
  401. townVisitsThisWeek[HeroPtr(h)].insert(h->visitedTown);
  402. NET_EVENT_HANDLER;
  403. }
  404. void VCAI::advmapSpellCast(const CGHeroInstance * caster, int spellID)
  405. {
  406. LOG_TRACE_PARAMS(logAi, "spellID '%i", spellID);
  407. NET_EVENT_HANDLER;
  408. }
  409. void VCAI::showInfoDialog(const std::string & text, const std::vector<Component> & components, int soundID)
  410. {
  411. LOG_TRACE_PARAMS(logAi, "soundID '%i'", soundID);
  412. NET_EVENT_HANDLER;
  413. }
  414. void VCAI::requestRealized(PackageApplied * pa)
  415. {
  416. LOG_TRACE(logAi);
  417. NET_EVENT_HANDLER;
  418. if(status.haveTurn())
  419. {
  420. if(pa->packType == typeList.getTypeID<EndTurn>())
  421. {
  422. if(pa->result)
  423. status.madeTurn();
  424. }
  425. }
  426. if(pa->packType == typeList.getTypeID<QueryReply>())
  427. {
  428. status.receivedAnswerConfirmation(pa->requestID, pa->result);
  429. }
  430. }
  431. void VCAI::receivedResource()
  432. {
  433. LOG_TRACE(logAi);
  434. NET_EVENT_HANDLER;
  435. }
  436. void VCAI::showUniversityWindow(const IMarket * market, const CGHeroInstance * visitor)
  437. {
  438. LOG_TRACE(logAi);
  439. NET_EVENT_HANDLER;
  440. }
  441. void VCAI::heroManaPointsChanged(const CGHeroInstance * hero)
  442. {
  443. LOG_TRACE(logAi);
  444. NET_EVENT_HANDLER;
  445. }
  446. void VCAI::heroSecondarySkillChanged(const CGHeroInstance * hero, int which, int val)
  447. {
  448. LOG_TRACE_PARAMS(logAi, "which '%d', val '%d'", which % val);
  449. NET_EVENT_HANDLER;
  450. }
  451. void VCAI::battleResultsApplied()
  452. {
  453. LOG_TRACE(logAi);
  454. NET_EVENT_HANDLER;
  455. assert(status.getBattle() == ENDING_BATTLE);
  456. status.setBattle(NO_BATTLE);
  457. }
  458. void VCAI::objectPropertyChanged(const SetObjectProperty * sop)
  459. {
  460. LOG_TRACE(logAi);
  461. NET_EVENT_HANDLER;
  462. if(sop->what == ObjProperty::OWNER)
  463. {
  464. if(myCb->getPlayerRelations(playerID, (PlayerColor)sop->val) == PlayerRelations::ENEMIES)
  465. {
  466. //we want to visit objects owned by oppponents
  467. auto obj = myCb->getObj(sop->id, false);
  468. if(obj)
  469. {
  470. addVisitableObj(obj); // TODO: Remove once save compatability broken. In past owned objects were removed from this set
  471. vstd::erase_if_present(alreadyVisited, obj);
  472. }
  473. }
  474. }
  475. }
  476. void VCAI::buildChanged(const CGTownInstance * town, BuildingID buildingID, int what)
  477. {
  478. LOG_TRACE_PARAMS(logAi, "what '%i'", what);
  479. NET_EVENT_HANDLER;
  480. if(town->getOwner() == playerID && what == 1) //built
  481. completeGoal(sptr(Goals::BuildThis(buildingID, town)));
  482. }
  483. void VCAI::heroBonusChanged(const CGHeroInstance * hero, const Bonus & bonus, bool gain)
  484. {
  485. LOG_TRACE_PARAMS(logAi, "gain '%i'", gain);
  486. NET_EVENT_HANDLER;
  487. }
  488. void VCAI::showMarketWindow(const IMarket * market, const CGHeroInstance * visitor)
  489. {
  490. LOG_TRACE(logAi);
  491. NET_EVENT_HANDLER;
  492. }
  493. void VCAI::showWorldViewEx(const std::vector<ObjectPosInfo> & objectPositions)
  494. {
  495. //TODO: AI support for ViewXXX spell
  496. LOG_TRACE(logAi);
  497. NET_EVENT_HANDLER;
  498. }
  499. void VCAI::init(std::shared_ptr<CCallback> CB)
  500. {
  501. LOG_TRACE(logAi);
  502. myCb = CB;
  503. cbc = CB;
  504. ah->init(CB.get());
  505. NET_EVENT_HANDLER; //sets ah->rm->cb
  506. playerID = *myCb->getMyColor();
  507. myCb->waitTillRealize = true;
  508. myCb->unlockGsWhenWaiting = true;
  509. if(!fh)
  510. fh = new FuzzyHelper();
  511. //if(playerID.getStr(false) == "blue")
  512. {
  513. nullkiller.reset(new Nullkiller());
  514. }
  515. retrieveVisitableObjs();
  516. }
  517. void VCAI::yourTurn()
  518. {
  519. LOG_TRACE(logAi);
  520. NET_EVENT_HANDLER;
  521. status.startedTurn();
  522. makingTurn = make_unique<boost::thread>(&VCAI::makeTurn, this);
  523. }
  524. void VCAI::heroGotLevel(const CGHeroInstance * hero, PrimarySkill::PrimarySkill pskill, std::vector<SecondarySkill> & skills, QueryID queryID)
  525. {
  526. LOG_TRACE_PARAMS(logAi, "queryID '%i'", queryID);
  527. NET_EVENT_HANDLER;
  528. status.addQuery(queryID, boost::str(boost::format("Hero %s got level %d") % hero->name % hero->level));
  529. requestActionASAP([=](){ answerQuery(queryID, ah->selectBestSkill(hero, skills)); });
  530. }
  531. void VCAI::commanderGotLevel(const CCommanderInstance * commander, std::vector<ui32> skills, QueryID queryID)
  532. {
  533. LOG_TRACE_PARAMS(logAi, "queryID '%i'", queryID);
  534. NET_EVENT_HANDLER;
  535. status.addQuery(queryID, boost::str(boost::format("Commander %s of %s got level %d") % commander->name % commander->armyObj->nodeName() % (int)commander->level));
  536. requestActionASAP([=](){ answerQuery(queryID, 0); });
  537. }
  538. void VCAI::showBlockingDialog(const std::string & text, const std::vector<Component> & components, QueryID askID, const int soundID, bool selection, bool cancel)
  539. {
  540. LOG_TRACE_PARAMS(logAi, "text '%s', askID '%i', soundID '%i', selection '%i', cancel '%i'", text % askID % soundID % selection % cancel);
  541. NET_EVENT_HANDLER;
  542. int sel = 0;
  543. status.addQuery(askID, boost::str(boost::format("Blocking dialog query with %d components - %s")
  544. % components.size() % text));
  545. if(selection) //select from multiple components -> take the last one (they're indexed [1-size])
  546. sel = components.size();
  547. if(!selection && cancel) //yes&no -> always answer yes, we are a brave AI :)
  548. sel = 1;
  549. // TODO: Find better way to understand it is Chest of Treasures
  550. if(components.size() == 2 && components.front().id == Component::RESOURCE)
  551. {
  552. sel = 1; // for now lets pick gold from a chest.
  553. }
  554. requestActionASAP([=]()
  555. {
  556. answerQuery(askID, sel);
  557. });
  558. }
  559. void VCAI::showTeleportDialog(TeleportChannelID channel, TTeleportExitsList exits, bool impassable, QueryID askID)
  560. {
  561. // LOG_TRACE_PARAMS(logAi, "askID '%i', exits '%s'", askID % exits);
  562. NET_EVENT_HANDLER;
  563. status.addQuery(askID, boost::str(boost::format("Teleport dialog query with %d exits")
  564. % exits.size()));
  565. int choosenExit = -1;
  566. if(impassable)
  567. {
  568. knownTeleportChannels[channel]->passability = TeleportChannel::IMPASSABLE;
  569. }
  570. else if(destinationTeleport != ObjectInstanceID() && destinationTeleportPos.valid())
  571. {
  572. auto neededExit = std::make_pair(destinationTeleport, destinationTeleportPos);
  573. if(destinationTeleport != ObjectInstanceID() && vstd::contains(exits, neededExit))
  574. choosenExit = vstd::find_pos(exits, neededExit);
  575. }
  576. for(auto exit : exits)
  577. {
  578. if(status.channelProbing() && exit.first == destinationTeleport)
  579. {
  580. choosenExit = vstd::find_pos(exits, exit);
  581. break;
  582. }
  583. else
  584. {
  585. // TODO: Implement checking if visiting that teleport will uncovert any FoW
  586. // So far this is the best option to handle decision about probing
  587. auto obj = cb->getObj(exit.first, false);
  588. if(obj == nullptr && !vstd::contains(teleportChannelProbingList, exit.first))
  589. {
  590. if(exit.first != destinationTeleport)
  591. teleportChannelProbingList.push_back(exit.first);
  592. }
  593. }
  594. }
  595. requestActionASAP([=]()
  596. {
  597. answerQuery(askID, choosenExit);
  598. });
  599. }
  600. void VCAI::showGarrisonDialog(const CArmedInstance * up, const CGHeroInstance * down, bool removableUnits, QueryID queryID)
  601. {
  602. LOG_TRACE_PARAMS(logAi, "removableUnits '%i', queryID '%i'", removableUnits % queryID);
  603. NET_EVENT_HANDLER;
  604. std::string s1 = up ? up->nodeName() : "NONE";
  605. std::string s2 = down ? down->nodeName() : "NONE";
  606. status.addQuery(queryID, boost::str(boost::format("Garrison dialog with %s and %s") % s1 % s2));
  607. //you can't request action from action-response thread
  608. requestActionASAP([=]()
  609. {
  610. if(removableUnits)
  611. pickBestCreatures(down, up);
  612. answerQuery(queryID, 0);
  613. });
  614. }
  615. void VCAI::showMapObjectSelectDialog(QueryID askID, const Component & icon, const MetaString & title, const MetaString & description, const std::vector<ObjectInstanceID> & objects)
  616. {
  617. NET_EVENT_HANDLER;
  618. status.addQuery(askID, "Map object select query");
  619. requestActionASAP([=](){ answerQuery(askID, selectedObject.getNum()); });
  620. }
  621. void VCAI::saveGame(BinarySerializer & h, const int version)
  622. {
  623. LOG_TRACE_PARAMS(logAi, "version '%i'", version);
  624. NET_EVENT_HANDLER;
  625. validateVisitableObjs();
  626. #if 0
  627. //disabled due to issue 2890
  628. registerGoals(h);
  629. #endif // 0
  630. CAdventureAI::saveGame(h, version);
  631. serializeInternal(h, version);
  632. }
  633. void VCAI::loadGame(BinaryDeserializer & h, const int version)
  634. {
  635. LOG_TRACE_PARAMS(logAi, "version '%i'", version);
  636. //NET_EVENT_HANDLER;
  637. #if 0
  638. //disabled due to issue 2890
  639. registerGoals(h);
  640. #endif // 0
  641. CAdventureAI::loadGame(h, version);
  642. serializeInternal(h, version);
  643. }
  644. void makePossibleUpgrades(const CArmedInstance * obj)
  645. {
  646. if(!obj)
  647. return;
  648. for(int i = 0; i < GameConstants::ARMY_SIZE; i++)
  649. {
  650. if(const CStackInstance * s = obj->getStackPtr(SlotID(i)))
  651. {
  652. UpgradeInfo ui;
  653. cb->getUpgradeInfo(obj, SlotID(i), ui);
  654. if(ui.oldID >= 0 && cb->getResourceAmount().canAfford(ui.cost[0] * s->count))
  655. {
  656. cb->upgradeCreature(obj, SlotID(i), ui.newID[0]);
  657. }
  658. }
  659. }
  660. }
  661. void VCAI::makeTurn()
  662. {
  663. MAKING_TURN;
  664. auto day = cb->getDate(Date::EDateType::DAY);
  665. logAi->info("Player %d (%s) starting turn, day %d", playerID, playerID.getStr(), day);
  666. boost::shared_lock<boost::shared_mutex> gsLock(CGameState::mutex);
  667. setThreadName("VCAI::makeTurn");
  668. switch(cb->getDate(Date::DAY_OF_WEEK))
  669. {
  670. case 1:
  671. {
  672. townVisitsThisWeek.clear();
  673. std::vector<const CGObjectInstance *> objs;
  674. retrieveVisitableObjs(objs, true);
  675. for(const CGObjectInstance * obj : objs)
  676. {
  677. if(isWeeklyRevisitable(obj))
  678. {
  679. addVisitableObj(obj);
  680. vstd::erase_if_present(alreadyVisited, obj);
  681. }
  682. }
  683. break;
  684. }
  685. }
  686. markHeroAbleToExplore(primaryHero());
  687. visitedHeroes.clear();
  688. if(cb->getDate(Date::DAY) == 1)
  689. {
  690. retrieveVisitableObjs();
  691. }
  692. try
  693. {
  694. if(nullkiller)
  695. {
  696. nullkiller->makeTurn();
  697. }
  698. else
  699. {
  700. //it looks messy here, but it's better to have armed heroes before attempting realizing goals
  701. for(const CGTownInstance * t : cb->getTownsInfo())
  702. moveCreaturesToHero(t);
  703. mainLoop();
  704. /*Below function is also responsible for hero movement via internal wander function. By design it is separate logic for heroes that have nothing to do.
  705. Heroes that were not picked by striveToGoal(sptr(Goals::Win())); recently (so they do not have new goals and cannot continue/reevaluate previously locked goals) will do logic in wander().*/
  706. performTypicalActions();
  707. }
  708. //for debug purpose
  709. for (auto h : cb->getHeroesInfo())
  710. {
  711. if (h->movement)
  712. logAi->warn("Hero %s has %d MP left", h->name, h->movement);
  713. }
  714. }
  715. catch (boost::thread_interrupted & e)
  716. {
  717. logAi->debug("Making turn thread has been interrupted. We'll end without calling endTurn.");
  718. return;
  719. }
  720. catch (std::exception & e)
  721. {
  722. logAi->debug("Making turn thread has caught an exception: %s", e.what());
  723. }
  724. endTurn();
  725. }
  726. std::vector<HeroPtr> VCAI::getMyHeroes() const
  727. {
  728. std::vector<HeroPtr> ret;
  729. for(auto h : cb->getHeroesInfo())
  730. {
  731. ret.push_back(h);
  732. }
  733. return ret;
  734. }
  735. void VCAI::mainLoop()
  736. {
  737. std::vector<Goals::TSubgoal> elementarGoals; //no duplicates allowed (operator ==)
  738. basicGoals.clear();
  739. validateVisitableObjs();
  740. //get all potential and saved goals
  741. //TODO: not lose
  742. basicGoals.push_back(sptr(Goals::Win()));
  743. for (auto goalPair : lockedHeroes)
  744. {
  745. fh->setPriority(goalPair.second); //re-evaluate, as heroes moved in the meantime
  746. basicGoals.push_back(goalPair.second);
  747. }
  748. if (ah->hasTasksLeft())
  749. basicGoals.push_back(ah->whatToDo());
  750. for (auto quest : myCb->getMyQuests())
  751. {
  752. basicGoals.push_back(sptr(Goals::CompleteQuest(quest)));
  753. }
  754. basicGoals.push_back(sptr(Goals::Build()));
  755. invalidPathHeroes.clear();
  756. while (basicGoals.size())
  757. {
  758. vstd::removeDuplicates(basicGoals); //TODO: container which does this automagically without has would be nice
  759. goalsToAdd.clear();
  760. goalsToRemove.clear();
  761. elementarGoals.clear();
  762. ultimateGoalsFromBasic.clear();
  763. ah->updatePaths(getMyHeroes());
  764. logAi->debug("Main loop: decomposing %i basic goals", basicGoals.size());
  765. for (auto basicGoal : basicGoals)
  766. {
  767. logAi->debug("Main loop: decomposing basic goal %s", basicGoal->name());
  768. auto goalToDecompose = basicGoal;
  769. Goals::TSubgoal elementarGoal = sptr(Goals::Invalid());
  770. int maxAbstractGoals = 10;
  771. while (!elementarGoal->isElementar && maxAbstractGoals)
  772. {
  773. try
  774. {
  775. elementarGoal = decomposeGoal(goalToDecompose);
  776. }
  777. catch (goalFulfilledException & e)
  778. {
  779. //it is impossible to continue some goals (like exploration, for example)
  780. //complete abstract goal for now, but maybe main goal finds another path
  781. logAi->debug("Goal %s decomposition failed: goal was completed as much as possible", e.goal->name());
  782. completeGoal(e.goal); //put in goalsToRemove
  783. break;
  784. }
  785. catch(cannotFulfillGoalException & e)
  786. {
  787. //it is impossible to continue some goals (like exploration, for example)
  788. //complete abstract goal for now, but maybe main goal finds another path
  789. goalsToRemove.push_back(basicGoal);
  790. logAi->debug("Goal %s decomposition failed: %s", goalToDecompose->name(), e.what());
  791. break;
  792. }
  793. catch (std::exception & e) //decomposition failed, which means we can't decompose entire tree
  794. {
  795. goalsToRemove.push_back(basicGoal);
  796. logAi->debug("Goal %s decomposition failed: %s", basicGoal->name(), e.what());
  797. break;
  798. }
  799. if (elementarGoal->isAbstract) //we can decompose it further
  800. {
  801. goalsToAdd.push_back(elementarGoal);
  802. //decompose further now - this is necesssary if we can't add over 10 goals in the pool
  803. goalToDecompose = elementarGoal;
  804. //there is a risk of infinite abstract goal loop, though it indicates failed logic
  805. maxAbstractGoals--;
  806. }
  807. else if (elementarGoal->isElementar) //should be
  808. {
  809. logAi->debug("Found elementar goal %s", elementarGoal->name());
  810. elementarGoals.push_back(elementarGoal);
  811. ultimateGoalsFromBasic[elementarGoal].push_back(goalToDecompose); //TODO: how about indirect basicGoal?
  812. break;
  813. }
  814. else //should never be here
  815. throw cannotFulfillGoalException("Goal %s is neither abstract nor elementar!" + basicGoal->name());
  816. }
  817. }
  818. logAi->trace("Main loop: selecting best elementar goal");
  819. //now choose one elementar goal to realize
  820. Goals::TGoalVec possibleGoals(elementarGoals.begin(), elementarGoals.end()); //copy to vector
  821. Goals::TSubgoal goalToRealize = sptr(Goals::Invalid());
  822. while (possibleGoals.size())
  823. {
  824. //allow assign goals to heroes with 0 movement, but don't realize them
  825. //maybe there are beter ones left
  826. auto bestGoal = fh->chooseSolution(possibleGoals);
  827. if (bestGoal->hero) //lock this hero to fulfill goal
  828. {
  829. setGoal(bestGoal->hero, bestGoal);
  830. if (!bestGoal->hero->movement || vstd::contains(invalidPathHeroes, bestGoal->hero))
  831. {
  832. if (!vstd::erase_if_present(possibleGoals, bestGoal))
  833. {
  834. logAi->error("erase_if_preset failed? Something very wrong!");
  835. break;
  836. }
  837. continue; //chose next from the list
  838. }
  839. }
  840. goalToRealize = bestGoal; //we found our goal to execute
  841. break;
  842. }
  843. //realize best goal
  844. if (!goalToRealize->invalid())
  845. {
  846. logAi->debug("Trying to realize %s (value %2.3f)", goalToRealize->name(), goalToRealize->priority);
  847. try
  848. {
  849. boost::this_thread::interruption_point();
  850. goalToRealize->accept(this); //visitor pattern
  851. boost::this_thread::interruption_point();
  852. }
  853. catch (boost::thread_interrupted & e)
  854. {
  855. logAi->debug("Player %d: Making turn thread received an interruption!", playerID);
  856. throw; //rethrow, we want to truly end this thread
  857. }
  858. catch (goalFulfilledException & e)
  859. {
  860. //the sub-goal was completed successfully
  861. completeGoal(e.goal);
  862. //local goal was also completed?
  863. completeGoal(goalToRealize);
  864. // remove abstract visit tile if we completed the elementar one
  865. vstd::erase_if_present(goalsToAdd, goalToRealize);
  866. }
  867. catch (std::exception & e)
  868. {
  869. logAi->debug("Failed to realize subgoal of type %s, I will stop.", goalToRealize->name());
  870. logAi->debug("The error message was: %s", e.what());
  871. //erase base goal if we failed to execute decomposed goal
  872. for (auto basicGoal : ultimateGoalsFromBasic[goalToRealize])
  873. goalsToRemove.push_back(basicGoal);
  874. // sometimes resource manager contains an elementar goal which is not able to execute anymore and just fails each turn.
  875. ai->ah->notifyGoalCompleted(goalToRealize);
  876. //we failed to realize best goal, but maybe others are still possible?
  877. }
  878. //remove goals we couldn't decompose
  879. for (auto goal : goalsToRemove)
  880. vstd::erase_if_present(basicGoals, goal);
  881. //add abstract goals
  882. boost::sort(goalsToAdd, [](const Goals::TSubgoal & lhs, const Goals::TSubgoal & rhs) -> bool
  883. {
  884. return lhs->priority > rhs->priority; //highest priority at the beginning
  885. });
  886. //max number of goals = 10
  887. int i = 0;
  888. while (basicGoals.size() < 10 && goalsToAdd.size() > i)
  889. {
  890. if (!vstd::contains(basicGoals, goalsToAdd[i])) //don't add duplicates
  891. basicGoals.push_back(goalsToAdd[i]);
  892. i++;
  893. }
  894. }
  895. else //no elementar goals possible
  896. {
  897. logAi->debug("Goal decomposition exhausted");
  898. break;
  899. }
  900. }
  901. }
  902. void VCAI::performObjectInteraction(const CGObjectInstance * obj, HeroPtr h)
  903. {
  904. LOG_TRACE_PARAMS(logAi, "Hero %s and object %s at %s", h->name % obj->getObjectName() % obj->pos.toString());
  905. switch(obj->ID)
  906. {
  907. case Obj::CREATURE_GENERATOR1:
  908. recruitCreatures(dynamic_cast<const CGDwelling *>(obj), h.get());
  909. checkHeroArmy(h);
  910. break;
  911. case Obj::TOWN:
  912. if(h->visitedTown) //we are inside, not just attacking
  913. {
  914. makePossibleUpgrades(h.get());
  915. if(!h->visitedTown->garrisonHero)
  916. moveCreaturesToHero(h->visitedTown);
  917. townVisitsThisWeek[h].insert(h->visitedTown);
  918. ah->updateHeroRoles();
  919. if(ah->getHeroRole(h) == HeroRole::MAIN && !h->hasSpellbook() && ah->freeGold() >= GameConstants::SPELLBOOK_GOLD_COST)
  920. {
  921. if(h->visitedTown->hasBuilt(BuildingID::MAGES_GUILD_1))
  922. cb->buyArtifact(h.get(), ArtifactID::SPELLBOOK);
  923. }
  924. }
  925. break;
  926. }
  927. completeGoal(sptr(Goals::VisitObj(obj->id.getNum()).sethero(h)));
  928. }
  929. void VCAI::moveCreaturesToHero(const CGTownInstance * t)
  930. {
  931. if(t->visitingHero && t->armedGarrison() && t->visitingHero->tempOwner == t->tempOwner)
  932. {
  933. pickBestCreatures(t->visitingHero, t->getUpperArmy());
  934. }
  935. }
  936. void VCAI::pickBestCreatures(const CArmedInstance * destinationArmy, const CArmedInstance * source)
  937. {
  938. const CArmedInstance * armies[] = {destinationArmy, source};
  939. auto bestArmy = ah->getSortedSlots(destinationArmy, source);
  940. //foreach best type -> iterate over slots in both armies and if it's the appropriate type, send it to the slot where it belongs
  941. for(SlotID i = SlotID(0); i.getNum() < bestArmy.size() && i.validSlot(); i.advance(1)) //i-th strongest creature type will go to i-th slot
  942. {
  943. const CCreature * targetCreature = bestArmy[i.getNum()].creature;
  944. for(auto armyPtr : armies)
  945. {
  946. for(SlotID j = SlotID(0); j.validSlot(); j.advance(1))
  947. {
  948. if(armyPtr->getCreature(j) == targetCreature && (i != j || armyPtr != destinationArmy)) //it's a searched creature not in dst SLOT
  949. {
  950. //can't take away last creature without split. generate a new stack with 1 creature which is weak but fast
  951. if(armyPtr == source
  952. && source->needsLastStack()
  953. && source->stacksCount() == 1
  954. && (!destinationArmy->hasStackAtSlot(i) || destinationArmy->getCreature(i) == targetCreature))
  955. {
  956. auto weakest = ah->getWeakestCreature(bestArmy);
  957. if(weakest->creature == targetCreature)
  958. {
  959. if(1 == source->getStackCount(j))
  960. break;
  961. // move all except 1 of weakest creature from source to destination
  962. cb->splitStack(
  963. source,
  964. destinationArmy,
  965. j,
  966. destinationArmy->getSlotFor(targetCreature),
  967. destinationArmy->getStackCount(i) + source->getStackCount(j) - 1);
  968. break;
  969. }
  970. else
  971. {
  972. // Source last stack is not weakest. Move 1 of weakest creature from destination to source
  973. cb->splitStack(
  974. destinationArmy,
  975. source,
  976. destinationArmy->getSlotFor(weakest->creature),
  977. source->getFreeSlot(),
  978. 1);
  979. }
  980. }
  981. cb->mergeOrSwapStacks(armyPtr, destinationArmy, j, i);
  982. }
  983. }
  984. }
  985. }
  986. //TODO - having now strongest possible army, we may want to think about arranging stacks
  987. auto hero = dynamic_cast<const CGHeroInstance *>(destinationArmy);
  988. if(hero)
  989. checkHeroArmy(hero);
  990. }
  991. void VCAI::pickBestArtifacts(const CGHeroInstance * h, const CGHeroInstance * other)
  992. {
  993. auto equipBest = [](const CGHeroInstance * h, const CGHeroInstance * otherh, bool giveStuffToFirstHero) -> void
  994. {
  995. bool changeMade = false;
  996. do
  997. {
  998. changeMade = false;
  999. //we collect gear always in same order
  1000. std::vector<ArtifactLocation> allArtifacts;
  1001. if(giveStuffToFirstHero)
  1002. {
  1003. for(auto p : h->artifactsWorn)
  1004. {
  1005. if(p.second.artifact)
  1006. allArtifacts.push_back(ArtifactLocation(h, p.first));
  1007. }
  1008. }
  1009. for(auto slot : h->artifactsInBackpack)
  1010. allArtifacts.push_back(ArtifactLocation(h, h->getArtPos(slot.artifact)));
  1011. if(otherh)
  1012. {
  1013. for(auto p : otherh->artifactsWorn)
  1014. {
  1015. if(p.second.artifact)
  1016. allArtifacts.push_back(ArtifactLocation(otherh, p.first));
  1017. }
  1018. for(auto slot : otherh->artifactsInBackpack)
  1019. allArtifacts.push_back(ArtifactLocation(otherh, otherh->getArtPos(slot.artifact)));
  1020. }
  1021. //we give stuff to one hero or another, depending on giveStuffToFirstHero
  1022. const CGHeroInstance * target = nullptr;
  1023. if(giveStuffToFirstHero || !otherh)
  1024. target = h;
  1025. else
  1026. target = otherh;
  1027. for(auto location : allArtifacts)
  1028. {
  1029. if(location.relatedObj() == target && location.slot < ArtifactPosition::AFTER_LAST)
  1030. continue; //don't reequip artifact we already wear
  1031. if(location.slot == ArtifactPosition::MACH4) // don't attempt to move catapult
  1032. continue;
  1033. auto s = location.getSlot();
  1034. if(!s || s->locked) //we can't move locks
  1035. continue;
  1036. auto artifact = s->artifact;
  1037. if(!artifact)
  1038. continue;
  1039. //FIXME: why are the above possible to be null?
  1040. bool emptySlotFound = false;
  1041. for(auto slot : artifact->artType->possibleSlots.at(target->bearerType()))
  1042. {
  1043. ArtifactLocation destLocation(target, slot);
  1044. if(target->isPositionFree(slot) && artifact->canBePutAt(destLocation, true)) //combined artifacts are not always allowed to move
  1045. {
  1046. cb->swapArtifacts(location, destLocation); //just put into empty slot
  1047. emptySlotFound = true;
  1048. changeMade = true;
  1049. break;
  1050. }
  1051. }
  1052. if(!emptySlotFound) //try to put that atifact in already occupied slot
  1053. {
  1054. for(auto slot : artifact->artType->possibleSlots.at(target->bearerType()))
  1055. {
  1056. auto otherSlot = target->getSlot(slot);
  1057. if(otherSlot && otherSlot->artifact) //we need to exchange artifact for better one
  1058. {
  1059. ArtifactLocation destLocation(target, slot);
  1060. //if that artifact is better than what we have, pick it
  1061. if(compareArtifacts(artifact, otherSlot->artifact) && artifact->canBePutAt(destLocation, true)) //combined artifacts are not always allowed to move
  1062. {
  1063. cb->swapArtifacts(location, ArtifactLocation(target, target->getArtPos(otherSlot->artifact)));
  1064. changeMade = true;
  1065. break;
  1066. }
  1067. }
  1068. }
  1069. }
  1070. if(changeMade)
  1071. break; //start evaluating artifacts from scratch
  1072. }
  1073. }
  1074. while(changeMade);
  1075. };
  1076. equipBest(h, other, true);
  1077. if(other)
  1078. equipBest(h, other, false);
  1079. }
  1080. void VCAI::recruitCreatures(const CGDwelling * d, const CArmedInstance * recruiter)
  1081. {
  1082. //now used only for visited dwellings / towns, not BuyArmy goal
  1083. for(int i = 0; i < d->creatures.size(); i++)
  1084. {
  1085. if(!d->creatures[i].second.size())
  1086. continue;
  1087. int count = d->creatures[i].first;
  1088. CreatureID creID = d->creatures[i].second.back();
  1089. vstd::amin(count, ah->freeResources() / VLC->creh->creatures[creID]->cost);
  1090. if(count > 0)
  1091. cb->recruitCreatures(d, recruiter, creID, count, i);
  1092. }
  1093. }
  1094. bool VCAI::isGoodForVisit(const CGObjectInstance * obj, HeroPtr h, boost::optional<float> movementCostLimit)
  1095. {
  1096. int3 op = obj->visitablePos();
  1097. auto paths = ah->getPathsToTile(h, op);
  1098. for(const auto & path : paths)
  1099. {
  1100. if(movementCostLimit && movementCostLimit.get() < path.movementCost())
  1101. return false;
  1102. if(isGoodForVisit(obj, h, path))
  1103. return true;
  1104. }
  1105. return false;
  1106. }
  1107. bool VCAI::isGoodForVisit(const CGObjectInstance * obj, HeroPtr h, const AIPath & path) const
  1108. {
  1109. const int3 pos = obj->visitablePos();
  1110. const int3 targetPos = path.firstTileToGet();
  1111. if (!targetPos.valid())
  1112. return false;
  1113. if (!isTileNotReserved(h.get(), targetPos))
  1114. return false;
  1115. if (obj->wasVisited(playerID))
  1116. return false;
  1117. if (cb->getPlayerRelations(playerID, obj->tempOwner) != PlayerRelations::ENEMIES && !isWeeklyRevisitable(obj))
  1118. return false; // Otherwise we flag or get weekly resources / creatures
  1119. if (!isSafeToVisit(h, pos))
  1120. return false;
  1121. if (!shouldVisit(h, obj))
  1122. return false;
  1123. if (vstd::contains(alreadyVisited, obj))
  1124. return false;
  1125. if (vstd::contains(reservedObjs, obj))
  1126. return false;
  1127. // TODO: looks extra if we already have AIPath
  1128. //if (!isAccessibleForHero(targetPos, h))
  1129. // return false;
  1130. const CGObjectInstance * topObj = cb->getVisitableObjs(obj->visitablePos()).back(); //it may be hero visiting this obj
  1131. //we don't try visiting object on which allied or owned hero stands
  1132. // -> it will just trigger exchange windows and AI will be confused that obj behind doesn't get visited
  1133. return !(topObj->ID == Obj::HERO && cb->getPlayerRelations(h->tempOwner, topObj->tempOwner) != PlayerRelations::ENEMIES); //all of the following is met
  1134. }
  1135. bool VCAI::isTileNotReserved(const CGHeroInstance * h, int3 t) const
  1136. {
  1137. if(t.valid())
  1138. {
  1139. auto obj = cb->getTopObj(t);
  1140. if(obj && vstd::contains(ai->reservedObjs, obj)
  1141. && vstd::contains(reservedHeroesMap, h)
  1142. && !vstd::contains(reservedHeroesMap.at(h), obj))
  1143. return false; //do not capture object reserved by another hero
  1144. else
  1145. return true;
  1146. }
  1147. else
  1148. {
  1149. return false;
  1150. }
  1151. }
  1152. bool VCAI::canRecruitAnyHero(const CGTownInstance * t) const
  1153. {
  1154. //TODO: make gathering gold, building tavern or conquering town (?) possible subgoals
  1155. if(!t)
  1156. t = findTownWithTavern();
  1157. if(!t)
  1158. return false;
  1159. if(cb->getResourceAmount(Res::GOLD) < GameConstants::HERO_GOLD_COST) //TODO: use ResourceManager
  1160. return false;
  1161. if(cb->getHeroesInfo().size() >= ALLOWED_ROAMING_HEROES)
  1162. return false;
  1163. if(!cb->getAvailableHeroes(t).size())
  1164. return false;
  1165. return true;
  1166. }
  1167. void VCAI::wander(HeroPtr h)
  1168. {
  1169. auto visitTownIfAny = [this](HeroPtr h) -> bool
  1170. {
  1171. if (h->visitedTown)
  1172. {
  1173. townVisitsThisWeek[h].insert(h->visitedTown);
  1174. buildArmyIn(h->visitedTown);
  1175. return true;
  1176. }
  1177. return false;
  1178. };
  1179. //unclaim objects that are now dangerous for us
  1180. auto reservedObjsSetCopy = reservedHeroesMap[h];
  1181. for(auto obj : reservedObjsSetCopy)
  1182. {
  1183. if(!isSafeToVisit(h, obj->visitablePos()))
  1184. unreserveObject(h, obj);
  1185. }
  1186. TimeCheck tc("looking for wander destination");
  1187. while(h->movement)
  1188. {
  1189. validateVisitableObjs();
  1190. ah->updatePaths(getMyHeroes());
  1191. std::vector<ObjectIdRef> dests;
  1192. //also visit our reserved objects - but they are not prioritized to avoid running back and forth
  1193. vstd::copy_if(reservedHeroesMap[h], std::back_inserter(dests), [&](ObjectIdRef obj) -> bool
  1194. {
  1195. return ah->isTileAccessible(h, obj->visitablePos());
  1196. });
  1197. int pass = 0;
  1198. std::vector<boost::optional<float>> distanceLimits =
  1199. {
  1200. 1.0,
  1201. 2.0,
  1202. boost::none
  1203. };
  1204. while(!dests.size() && pass < distanceLimits.size())
  1205. {
  1206. auto & distanceLimit = distanceLimits[pass];
  1207. logAi->debug("Looking for wander destination pass=%i, cost limit=%f", pass, distanceLimit.get_value_or(-1.0));
  1208. vstd::copy_if(visitableObjs, std::back_inserter(dests), [&](ObjectIdRef obj) -> bool
  1209. {
  1210. return isGoodForVisit(obj, h, distanceLimit);
  1211. });
  1212. pass++;
  1213. }
  1214. if(!dests.size())
  1215. {
  1216. logAi->debug("Looking for town destination");
  1217. if(cb->getVisitableObjs(h->visitablePos()).size() > 1)
  1218. moveHeroToTile(h->visitablePos(), h); //just in case we're standing on blocked subterranean gate
  1219. auto compareReinforcements = [&](const CGTownInstance * lhs, const CGTownInstance * rhs) -> bool
  1220. {
  1221. const CGHeroInstance * hptr = h.get();
  1222. auto r1 = ah->howManyReinforcementsCanGet(hptr, lhs),
  1223. r2 = ah->howManyReinforcementsCanGet(hptr, rhs);
  1224. if (r1 != r2)
  1225. return r1 < r2;
  1226. else
  1227. return ah->howManyReinforcementsCanBuy(hptr, lhs) < ah->howManyReinforcementsCanBuy(hptr, rhs);
  1228. };
  1229. std::vector<const CGTownInstance *> townsReachable;
  1230. std::vector<const CGTownInstance *> townsNotReachable;
  1231. for(const CGTownInstance * t : cb->getTownsInfo())
  1232. {
  1233. if(!t->visitingHero && !vstd::contains(townVisitsThisWeek[h], t))
  1234. {
  1235. if(isAccessibleForHero(t->visitablePos(), h))
  1236. townsReachable.push_back(t);
  1237. else
  1238. townsNotReachable.push_back(t);
  1239. }
  1240. }
  1241. if(townsReachable.size()) //travel to town with largest garrison, or empty - better than nothing
  1242. {
  1243. dests.push_back(*boost::max_element(townsReachable, compareReinforcements));
  1244. }
  1245. else if(townsNotReachable.size())
  1246. {
  1247. //TODO pick the truly best
  1248. const CGTownInstance * t = *boost::max_element(townsNotReachable, compareReinforcements);
  1249. logAi->debug("%s can't reach any town, we'll try to make our way to %s at %s", h->name, t->name, t->visitablePos().toString());
  1250. int3 pos1 = h->pos;
  1251. striveToGoal(sptr(Goals::ClearWayTo(t->visitablePos()).sethero(h))); //TODO: drop "strive", add to mainLoop
  1252. //if out hero is stuck, we may need to request another hero to clear the way we see
  1253. if(pos1 == h->pos && h == primaryHero()) //hero can't move
  1254. {
  1255. if(canRecruitAnyHero(t))
  1256. recruitHero(t);
  1257. }
  1258. break;
  1259. }
  1260. else if(cb->getResourceAmount(Res::GOLD) >= GameConstants::HERO_GOLD_COST)
  1261. {
  1262. std::vector<const CGTownInstance *> towns = cb->getTownsInfo();
  1263. vstd::erase_if(towns, [&](const CGTownInstance * t) -> bool
  1264. {
  1265. for(const CGHeroInstance * h : cb->getHeroesInfo())
  1266. {
  1267. if(!t->getArmyStrength() || ah->howManyReinforcementsCanGet(h, t))
  1268. return true;
  1269. }
  1270. return false;
  1271. });
  1272. if (towns.size())
  1273. {
  1274. recruitHero(*boost::max_element(towns, compareArmyStrength));
  1275. }
  1276. break;
  1277. }
  1278. else
  1279. {
  1280. logAi->debug("Nowhere more to go...");
  1281. break;
  1282. }
  1283. }
  1284. //end of objs empty
  1285. if(dests.size()) //performance improvement
  1286. {
  1287. Goals::TGoalVec targetObjectGoals;
  1288. for(auto destination : dests)
  1289. {
  1290. vstd::concatenate(targetObjectGoals, ah->howToVisitObj(h, destination, false));
  1291. }
  1292. if(targetObjectGoals.size())
  1293. {
  1294. auto bestObjectGoal = fh->chooseSolution(targetObjectGoals);
  1295. //wander should not cause heroes to be reserved - they are always considered free
  1296. if(bestObjectGoal->goalType == Goals::VISIT_OBJ)
  1297. {
  1298. auto chosenObject = cb->getObjInstance(ObjectInstanceID(bestObjectGoal->objid));
  1299. if(chosenObject != nullptr)
  1300. logAi->debug("Of all %d destinations, object %s at pos=%s seems nice", dests.size(), chosenObject->getObjectName(), chosenObject->pos.toString());
  1301. }
  1302. else
  1303. logAi->debug("Trying to realize goal of type %s as part of wandering.", bestObjectGoal->name());
  1304. try
  1305. {
  1306. decomposeGoal(bestObjectGoal)->accept(this);
  1307. }
  1308. catch(const goalFulfilledException & e)
  1309. {
  1310. if(e.goal->goalType == Goals::EGoals::VISIT_TILE || e.goal->goalType == Goals::EGoals::VISIT_OBJ)
  1311. continue;
  1312. throw e;
  1313. }
  1314. }
  1315. else
  1316. {
  1317. logAi->debug("Nowhere more to go...");
  1318. break;
  1319. }
  1320. visitTownIfAny(h);
  1321. }
  1322. }
  1323. visitTownIfAny(h); //in case hero is just sitting in town
  1324. }
  1325. void VCAI::setGoal(HeroPtr h, Goals::TSubgoal goal)
  1326. {
  1327. if(goal->invalid())
  1328. {
  1329. vstd::erase_if_present(lockedHeroes, h);
  1330. }
  1331. else
  1332. {
  1333. lockedHeroes[h] = goal;
  1334. goal->setisElementar(false); //Force always evaluate goals before realizing
  1335. }
  1336. }
  1337. void VCAI::evaluateGoal(HeroPtr h)
  1338. {
  1339. if(vstd::contains(lockedHeroes, h))
  1340. fh->setPriority(lockedHeroes[h]);
  1341. }
  1342. void VCAI::completeGoal(Goals::TSubgoal goal)
  1343. {
  1344. if (goal->goalType == Goals::WIN) //we can never complete this goal - unless we already won
  1345. return;
  1346. logAi->debug("Completing goal: %s", goal->name());
  1347. //notify Managers
  1348. ah->notifyGoalCompleted(goal);
  1349. //notify mainLoop()
  1350. goalsToRemove.push_back(goal); //will be removed from mainLoop() goals
  1351. for (auto basicGoal : basicGoals) //we could luckily fulfill any of our goals
  1352. {
  1353. if (basicGoal->fulfillsMe(goal))
  1354. goalsToRemove.push_back(basicGoal);
  1355. }
  1356. //unreserve heroes
  1357. if(const CGHeroInstance * h = goal->hero.get(true))
  1358. {
  1359. auto it = lockedHeroes.find(h);
  1360. if(it != lockedHeroes.end())
  1361. {
  1362. if(it->second == goal || it->second->fulfillsMe(goal)) //FIXME this is overspecified, fulfillsMe shoudl be complete
  1363. {
  1364. logAi->debug(goal->completeMessage());
  1365. lockedHeroes.erase(it); //goal fulfilled, free hero
  1366. }
  1367. }
  1368. }
  1369. else //complete goal for all heroes maybe?
  1370. {
  1371. vstd::erase_if(lockedHeroes, [goal](std::pair<HeroPtr, Goals::TSubgoal> p)
  1372. {
  1373. if(p.second == goal || p.second->fulfillsMe(goal)) //we could have fulfilled goals of other heroes by chance
  1374. {
  1375. logAi->debug(p.second->completeMessage());
  1376. return true;
  1377. }
  1378. return false;
  1379. });
  1380. }
  1381. }
  1382. void VCAI::battleStart(const CCreatureSet * army1, const CCreatureSet * army2, int3 tile, const CGHeroInstance * hero1, const CGHeroInstance * hero2, bool side)
  1383. {
  1384. NET_EVENT_HANDLER;
  1385. assert(playerID > PlayerColor::PLAYER_LIMIT || status.getBattle() == UPCOMING_BATTLE);
  1386. status.setBattle(ONGOING_BATTLE);
  1387. const CGObjectInstance * presumedEnemy = vstd::backOrNull(cb->getVisitableObjs(tile)); //may be nullptr in some very are cases -> eg. visited monolith and fighting with an enemy at the FoW covered exit
  1388. battlename = boost::str(boost::format("Starting battle of %s attacking %s at %s") % (hero1 ? hero1->name : "a army") % (presumedEnemy ? presumedEnemy->getObjectName() : "unknown enemy") % tile.toString());
  1389. CAdventureAI::battleStart(army1, army2, tile, hero1, hero2, side);
  1390. }
  1391. void VCAI::battleEnd(const BattleResult * br)
  1392. {
  1393. NET_EVENT_HANDLER;
  1394. assert(status.getBattle() == ONGOING_BATTLE);
  1395. status.setBattle(ENDING_BATTLE);
  1396. bool won = br->winner == myCb->battleGetMySide();
  1397. logAi->debug("Player %d (%s): I %s the %s!", playerID, playerID.getStr(), (won ? "won" : "lost"), battlename);
  1398. battlename.clear();
  1399. CAdventureAI::battleEnd(br);
  1400. }
  1401. void VCAI::waitTillFree()
  1402. {
  1403. auto unlock = vstd::makeUnlockSharedGuard(CGameState::mutex);
  1404. status.waitTillFree();
  1405. }
  1406. void VCAI::markObjectVisited(const CGObjectInstance * obj)
  1407. {
  1408. if(!obj)
  1409. return;
  1410. if(dynamic_cast<const CGVisitableOPH *>(obj)) //we may want to visit it with another hero
  1411. return;
  1412. if(dynamic_cast<const CGBonusingObject *>(obj)) //or another time
  1413. return;
  1414. if(obj->ID == Obj::MONSTER)
  1415. return;
  1416. alreadyVisited.insert(obj);
  1417. }
  1418. void VCAI::reserveObject(HeroPtr h, const CGObjectInstance * obj)
  1419. {
  1420. reservedObjs.insert(obj);
  1421. reservedHeroesMap[h].insert(obj);
  1422. logAi->debug("reserved object id=%d; address=%p; name=%s", obj->id, obj, obj->getObjectName());
  1423. }
  1424. void VCAI::unreserveObject(HeroPtr h, const CGObjectInstance * obj)
  1425. {
  1426. vstd::erase_if_present(reservedObjs, obj); //unreserve objects
  1427. vstd::erase_if_present(reservedHeroesMap[h], obj);
  1428. }
  1429. void VCAI::markHeroUnableToExplore(HeroPtr h)
  1430. {
  1431. heroesUnableToExplore.insert(h);
  1432. }
  1433. void VCAI::markHeroAbleToExplore(HeroPtr h)
  1434. {
  1435. vstd::erase_if_present(heroesUnableToExplore, h);
  1436. }
  1437. bool VCAI::isAbleToExplore(HeroPtr h)
  1438. {
  1439. return !vstd::contains(heroesUnableToExplore, h);
  1440. }
  1441. void VCAI::clearPathsInfo()
  1442. {
  1443. heroesUnableToExplore.clear();
  1444. }
  1445. void VCAI::validateVisitableObjs()
  1446. {
  1447. std::string errorMsg;
  1448. auto shouldBeErased = [&](const CGObjectInstance * obj) -> bool
  1449. {
  1450. if(obj)
  1451. return !cb->getObj(obj->id, false); // no verbose output needed as we check object visibility
  1452. else
  1453. return true;
  1454. };
  1455. //errorMsg is captured by ref so lambda will take the new text
  1456. errorMsg = " shouldn't be on the visitable objects list!";
  1457. vstd::erase_if(visitableObjs, shouldBeErased);
  1458. //FIXME: how comes our own heroes become inaccessible?
  1459. vstd::erase_if(reservedHeroesMap, [](std::pair<HeroPtr, std::set<const CGObjectInstance *>> hp) -> bool
  1460. {
  1461. return !hp.first.get(true);
  1462. });
  1463. for(auto & p : reservedHeroesMap)
  1464. {
  1465. errorMsg = " shouldn't be on list for hero " + p.first->name + "!";
  1466. vstd::erase_if(p.second, shouldBeErased);
  1467. }
  1468. errorMsg = " shouldn't be on the reserved objs list!";
  1469. vstd::erase_if(reservedObjs, shouldBeErased);
  1470. //TODO overkill, hidden object should not be removed. However, we can't know if hidden object is erased from game.
  1471. errorMsg = " shouldn't be on the already visited objs list!";
  1472. vstd::erase_if(alreadyVisited, shouldBeErased);
  1473. }
  1474. void VCAI::retrieveVisitableObjs(std::vector<const CGObjectInstance *> & out, bool includeOwned) const
  1475. {
  1476. foreach_tile_pos([&](const int3 & pos)
  1477. {
  1478. for(const CGObjectInstance * obj : myCb->getVisitableObjs(pos, false))
  1479. {
  1480. if(includeOwned || obj->tempOwner != playerID)
  1481. out.push_back(obj);
  1482. }
  1483. });
  1484. }
  1485. void VCAI::retrieveVisitableObjs()
  1486. {
  1487. foreach_tile_pos([&](const int3 & pos)
  1488. {
  1489. for(const CGObjectInstance * obj : myCb->getVisitableObjs(pos, false))
  1490. {
  1491. if(obj->tempOwner != playerID)
  1492. addVisitableObj(obj);
  1493. }
  1494. });
  1495. }
  1496. std::vector<const CGObjectInstance *> VCAI::getFlaggedObjects() const
  1497. {
  1498. std::vector<const CGObjectInstance *> ret;
  1499. for(const CGObjectInstance * obj : visitableObjs)
  1500. {
  1501. if(obj->tempOwner == playerID)
  1502. ret.push_back(obj);
  1503. }
  1504. return ret;
  1505. }
  1506. void VCAI::addVisitableObj(const CGObjectInstance * obj)
  1507. {
  1508. if(obj->ID == Obj::EVENT)
  1509. return;
  1510. visitableObjs.insert(obj);
  1511. // All teleport objects seen automatically assigned to appropriate channels
  1512. auto teleportObj = dynamic_cast<const CGTeleport *>(obj);
  1513. if(teleportObj)
  1514. CGTeleport::addToChannel(knownTeleportChannels, teleportObj);
  1515. if(obj->ID == Obj::HERO && cb->getPlayerRelations(obj->tempOwner, playerID) == PlayerRelations::ENEMIES)
  1516. {
  1517. if(nullkiller) nullkiller->dangerHitMap->reset();
  1518. }
  1519. }
  1520. const CGObjectInstance * VCAI::lookForArt(int aid) const
  1521. {
  1522. for(const CGObjectInstance * obj : ai->visitableObjs)
  1523. {
  1524. if(obj->ID == Obj::ARTIFACT && obj->subID == aid)
  1525. return obj;
  1526. }
  1527. return nullptr;
  1528. //TODO what if more than one artifact is available? return them all or some slection criteria
  1529. }
  1530. bool VCAI::isAccessible(const int3 & pos) const
  1531. {
  1532. //TODO precalculate for speed
  1533. for(const CGHeroInstance * h : cb->getHeroesInfo())
  1534. {
  1535. if(isAccessibleForHero(pos, h))
  1536. return true;
  1537. }
  1538. return false;
  1539. }
  1540. HeroPtr VCAI::getHeroWithGrail() const
  1541. {
  1542. for(const CGHeroInstance * h : cb->getHeroesInfo())
  1543. {
  1544. if(h->hasArt(2)) //grail
  1545. return h;
  1546. }
  1547. return nullptr;
  1548. }
  1549. const CGObjectInstance * VCAI::getUnvisitedObj(const std::function<bool(const CGObjectInstance *)> & predicate)
  1550. {
  1551. //TODO smarter definition of unvisited
  1552. for(const CGObjectInstance * obj : visitableObjs)
  1553. {
  1554. if(predicate(obj) && !vstd::contains(alreadyVisited, obj))
  1555. return obj;
  1556. }
  1557. return nullptr;
  1558. }
  1559. bool VCAI::isAccessibleForHero(const int3 & pos, HeroPtr h, bool includeAllies) const
  1560. {
  1561. // Don't visit tile occupied by allied hero
  1562. if(!includeAllies)
  1563. {
  1564. for(auto obj : cb->getVisitableObjs(pos))
  1565. {
  1566. if(obj->ID == Obj::HERO && cb->getPlayerRelations(ai->playerID, obj->tempOwner) != PlayerRelations::ENEMIES)
  1567. {
  1568. if(obj != h.get())
  1569. return false;
  1570. }
  1571. }
  1572. }
  1573. return cb->getPathsInfo(h.get())->getPathInfo(pos)->reachable();
  1574. }
  1575. bool VCAI::moveHeroToTile(int3 dst, HeroPtr h)
  1576. {
  1577. if(h->inTownGarrison && h->visitedTown)
  1578. cb->swapGarrisonHero(h->visitedTown);
  1579. //TODO: consider if blockVisit objects change something in our checks: AIUtility::isBlockVisitObj()
  1580. auto afterMovementCheck = [&]() -> void
  1581. {
  1582. waitTillFree(); //movement may cause battle or blocking dialog
  1583. if(!h)
  1584. {
  1585. lostHero(h);
  1586. teleportChannelProbingList.clear();
  1587. if(status.channelProbing()) // if hero lost during channel probing we need to switch this mode off
  1588. status.setChannelProbing(false);
  1589. throw cannotFulfillGoalException("Hero was lost!");
  1590. }
  1591. };
  1592. logAi->debug("Moving hero %s to tile %s", h->name, dst.toString());
  1593. int3 startHpos = h->visitablePos();
  1594. bool ret = false;
  1595. if(startHpos == dst)
  1596. {
  1597. //FIXME: this assertion fails also if AI moves onto defeated guarded object
  1598. assert(cb->getVisitableObjs(dst).size() > 1); //there's no point in revisiting tile where there is no visitable object
  1599. cb->moveHero(*h, CGHeroInstance::convertPosition(dst, true));
  1600. afterMovementCheck(); // TODO: is it feasible to hero get killed there if game work properly?
  1601. // not sure if AI can currently reconsider to attack bank while staying on it. Check issue 2084 on mantis for more information.
  1602. ret = true;
  1603. }
  1604. else
  1605. {
  1606. CGPath path;
  1607. cb->getPathsInfo(h.get())->getPath(path, dst);
  1608. if(path.nodes.empty())
  1609. {
  1610. logAi->error("Hero %s cannot reach %s.", h->name, dst.toString());
  1611. throw goalFulfilledException(sptr(Goals::VisitTile(dst).sethero(h)));
  1612. }
  1613. int i = path.nodes.size() - 1;
  1614. auto getObj = [&](int3 coord, bool ignoreHero)
  1615. {
  1616. auto tile = cb->getTile(coord, false);
  1617. assert(tile);
  1618. return tile->topVisitableObj(ignoreHero);
  1619. //return cb->getTile(coord,false)->topVisitableObj(ignoreHero);
  1620. };
  1621. auto isTeleportAction = [&](CGPathNode::ENodeAction action) -> bool
  1622. {
  1623. if(action != CGPathNode::TELEPORT_NORMAL && action != CGPathNode::TELEPORT_BLOCKING_VISIT)
  1624. {
  1625. if(action != CGPathNode::TELEPORT_BATTLE)
  1626. {
  1627. return false;
  1628. }
  1629. }
  1630. return true;
  1631. };
  1632. auto getDestTeleportObj = [&](const CGObjectInstance * currentObject, const CGObjectInstance * nextObjectTop, const CGObjectInstance * nextObject) -> const CGObjectInstance *
  1633. {
  1634. if(CGTeleport::isConnected(currentObject, nextObjectTop))
  1635. return nextObjectTop;
  1636. if(nextObjectTop && nextObjectTop->ID == Obj::HERO)
  1637. {
  1638. if(CGTeleport::isConnected(currentObject, nextObject))
  1639. return nextObject;
  1640. }
  1641. return nullptr;
  1642. };
  1643. auto doMovement = [&](int3 dst, bool transit)
  1644. {
  1645. cb->moveHero(*h, CGHeroInstance::convertPosition(dst, true), transit);
  1646. };
  1647. auto doTeleportMovement = [&](ObjectInstanceID exitId, int3 exitPos)
  1648. {
  1649. destinationTeleport = exitId;
  1650. if(exitPos.valid())
  1651. destinationTeleportPos = CGHeroInstance::convertPosition(exitPos, true);
  1652. cb->moveHero(*h, h->pos);
  1653. destinationTeleport = ObjectInstanceID();
  1654. destinationTeleportPos = int3(-1);
  1655. afterMovementCheck();
  1656. };
  1657. auto doChannelProbing = [&]() -> void
  1658. {
  1659. auto currentPos = CGHeroInstance::convertPosition(h->pos, false);
  1660. auto currentExit = getObj(currentPos, true)->id;
  1661. status.setChannelProbing(true);
  1662. for(auto exit : teleportChannelProbingList)
  1663. doTeleportMovement(exit, int3(-1));
  1664. teleportChannelProbingList.clear();
  1665. status.setChannelProbing(false);
  1666. doTeleportMovement(currentExit, currentPos);
  1667. };
  1668. for(; i > 0; i--)
  1669. {
  1670. int3 currentCoord = path.nodes[i].coord;
  1671. int3 nextCoord = path.nodes[i - 1].coord;
  1672. auto currentObject = getObj(currentCoord, currentCoord == CGHeroInstance::convertPosition(h->pos, false));
  1673. auto nextObjectTop = getObj(nextCoord, false);
  1674. auto nextObject = getObj(nextCoord, true);
  1675. auto destTeleportObj = getDestTeleportObj(currentObject, nextObjectTop, nextObject);
  1676. if(isTeleportAction(path.nodes[i - 1].action) && destTeleportObj != nullptr)
  1677. {
  1678. //we use special login if hero standing on teleporter it's mean we need
  1679. doTeleportMovement(destTeleportObj->id, nextCoord);
  1680. if(teleportChannelProbingList.size())
  1681. doChannelProbing();
  1682. markObjectVisited(destTeleportObj); //FIXME: Monoliths are not correctly visited
  1683. continue;
  1684. }
  1685. //stop sending move requests if the next node can't be reached at the current turn (hero exhausted his move points)
  1686. if(path.nodes[i - 1].turns)
  1687. {
  1688. //blockedHeroes.insert(h); //to avoid attempts of moving heroes with very little MPs
  1689. break;
  1690. }
  1691. int3 endpos = path.nodes[i - 1].coord;
  1692. if(endpos == h->visitablePos())
  1693. continue;
  1694. bool isConnected = false;
  1695. bool isNextObjectTeleport = false;
  1696. // Check there is node after next one; otherwise transit is pointless
  1697. if(i - 2 >= 0)
  1698. {
  1699. isConnected = CGTeleport::isConnected(nextObjectTop, getObj(path.nodes[i - 2].coord, false));
  1700. isNextObjectTeleport = CGTeleport::isTeleport(nextObjectTop);
  1701. }
  1702. if(isConnected || isNextObjectTeleport)
  1703. {
  1704. // Hero should be able to go through object if it's allow transit
  1705. doMovement(endpos, true);
  1706. }
  1707. else if(path.nodes[i - 1].layer == EPathfindingLayer::AIR)
  1708. {
  1709. doMovement(endpos, true);
  1710. }
  1711. else
  1712. {
  1713. doMovement(endpos, false);
  1714. }
  1715. afterMovementCheck();
  1716. if(teleportChannelProbingList.size())
  1717. doChannelProbing();
  1718. }
  1719. if(path.nodes[0].action == CGPathNode::BLOCKING_VISIT)
  1720. {
  1721. ret = h && i == 0; // when we take resource we do not reach its position. We even might not move
  1722. }
  1723. }
  1724. if(h)
  1725. {
  1726. if(auto visitedObject = vstd::frontOrNull(cb->getVisitableObjs(h->visitablePos()))) //we stand on something interesting
  1727. {
  1728. if(visitedObject != *h)
  1729. performObjectInteraction(visitedObject, h);
  1730. }
  1731. }
  1732. if(h) //we could have lost hero after last move
  1733. {
  1734. completeGoal(sptr(Goals::VisitTile(dst).sethero(h))); //we stepped on some tile, anyway
  1735. completeGoal(sptr(Goals::ClearWayTo(dst).sethero(h)));
  1736. ret = ret || (dst == h->visitablePos());
  1737. if(!ret) //reserve object we are heading towards
  1738. {
  1739. auto obj = vstd::frontOrNull(cb->getVisitableObjs(dst));
  1740. if(obj && obj != *h)
  1741. reserveObject(h, obj);
  1742. }
  1743. if(startHpos == h->visitablePos() && !ret) //we didn't move and didn't reach the target
  1744. {
  1745. vstd::erase_if_present(lockedHeroes, h); //hero seemingly is confused or has only 95mp which is not enough to move
  1746. invalidPathHeroes.insert(h);
  1747. throw cannotFulfillGoalException("Invalid path found!");
  1748. }
  1749. evaluateGoal(h); //new hero position means new game situation
  1750. logAi->debug("Hero %s moved from %s to %s. Returning %d.", h->name, startHpos.toString(), h->visitablePos().toString(), ret);
  1751. }
  1752. return ret;
  1753. }
  1754. void VCAI::buildStructure(const CGTownInstance * t, BuildingID building)
  1755. {
  1756. auto name = t->town->buildings.at(building)->Name();
  1757. logAi->debug("Player %d will build %s in town of %s at %s", ai->playerID, name, t->name, t->pos.toString());
  1758. cb->buildBuilding(t, building); //just do this;
  1759. }
  1760. void VCAI::tryRealize(Goals::Explore & g)
  1761. {
  1762. throw cannotFulfillGoalException("EXPLORE is not an elementar goal!");
  1763. }
  1764. void VCAI::tryRealize(Goals::RecruitHero & g)
  1765. {
  1766. const CGTownInstance * t = g.town;
  1767. if(!t) t = findTownWithTavern();
  1768. if(t)
  1769. {
  1770. recruitHero(t, true);
  1771. //TODO try to free way to blocked town
  1772. //TODO: adventure map tavern or prison?
  1773. }
  1774. else
  1775. {
  1776. throw cannotFulfillGoalException("No town to recruit hero!");
  1777. }
  1778. }
  1779. void VCAI::tryRealize(Goals::VisitTile & g)
  1780. {
  1781. if(!g.hero->movement)
  1782. throw cannotFulfillGoalException("Cannot visit tile: hero is out of MPs!");
  1783. if(g.tile == g.hero->visitablePos() && cb->getVisitableObjs(g.hero->visitablePos()).size() < 2)
  1784. {
  1785. logAi->warn("Why do I want to move hero %s to tile %s? Already standing on that tile! ", g.hero->name, g.tile.toString());
  1786. throw goalFulfilledException(sptr(g));
  1787. }
  1788. if(ai->moveHeroToTile(g.tile, g.hero.get()))
  1789. {
  1790. throw goalFulfilledException(sptr(g));
  1791. }
  1792. }
  1793. void VCAI::tryRealize(Goals::VisitObj & g)
  1794. {
  1795. auto position = g.tile;
  1796. if(!g.hero->movement)
  1797. throw cannotFulfillGoalException("Cannot visit object: hero is out of MPs!");
  1798. if(position == g.hero->visitablePos() && cb->getVisitableObjs(g.hero->visitablePos()).size() < 2)
  1799. {
  1800. logAi->warn("Why do I want to move hero %s to tile %s? Already standing on that tile! ", g.hero->name, g.tile.toString());
  1801. throw goalFulfilledException(sptr(g));
  1802. }
  1803. if(ai->moveHeroToTile(position, g.hero.get()))
  1804. {
  1805. throw goalFulfilledException(sptr(g));
  1806. }
  1807. }
  1808. void VCAI::tryRealize(Goals::VisitHero & g)
  1809. {
  1810. if(!g.hero->movement)
  1811. throw cannotFulfillGoalException("Cannot visit target hero: hero is out of MPs!");
  1812. const CGObjectInstance * obj = cb->getObj(ObjectInstanceID(g.objid));
  1813. if(obj)
  1814. {
  1815. if(ai->moveHeroToTile(obj->visitablePos(), g.hero.get()))
  1816. {
  1817. throw goalFulfilledException(sptr(g));
  1818. }
  1819. }
  1820. else
  1821. {
  1822. throw cannotFulfillGoalException("Cannot visit hero: object not found!");
  1823. }
  1824. }
  1825. void VCAI::tryRealize(Goals::BuildThis & g)
  1826. {
  1827. auto b = BuildingID(g.bid);
  1828. auto t = g.town;
  1829. if (t)
  1830. {
  1831. if (cb->canBuildStructure(t, b) == EBuildingState::ALLOWED)
  1832. {
  1833. logAi->debug("Player %d will build %s in town of %s at %s",
  1834. playerID, t->town->buildings.at(b)->Name(), t->name, t->pos.toString());
  1835. cb->buildBuilding(t, b);
  1836. throw goalFulfilledException(sptr(g));
  1837. }
  1838. }
  1839. throw cannotFulfillGoalException("Cannot build a given structure!");
  1840. }
  1841. void VCAI::tryRealize(Goals::DigAtTile & g)
  1842. {
  1843. assert(g.hero->visitablePos() == g.tile); //surely we want to crash here?
  1844. if(g.hero->diggingStatus() == EDiggingStatus::CAN_DIG)
  1845. {
  1846. cb->dig(g.hero.get());
  1847. completeGoal(sptr(g)); // finished digging
  1848. }
  1849. else
  1850. {
  1851. ai->lockedHeroes[g.hero] = sptr(g); //hero who tries to dig shouldn't do anything else
  1852. throw cannotFulfillGoalException("A hero can't dig!\n");
  1853. }
  1854. }
  1855. void VCAI::tryRealize(Goals::Trade & g) //trade
  1856. {
  1857. if(ah->freeResources()[g.resID] >= g.value) //goal is already fulfilled. Why we need this check, anyway?
  1858. throw goalFulfilledException(sptr(g));
  1859. int accquiredResources = 0;
  1860. if(const CGObjectInstance * obj = cb->getObj(ObjectInstanceID(g.objid), false))
  1861. {
  1862. if(const IMarket * m = IMarket::castFrom(obj, false))
  1863. {
  1864. auto freeRes = ah->freeResources(); //trade only resources which are not reserved
  1865. for(auto it = Res::ResourceSet::nziterator(freeRes); it.valid(); it++)
  1866. {
  1867. auto res = it->resType;
  1868. if(res == g.resID) //sell any other resource
  1869. continue;
  1870. int toGive, toGet;
  1871. m->getOffer(res, g.resID, toGive, toGet, EMarketMode::RESOURCE_RESOURCE);
  1872. toGive = toGive * (it->resVal / toGive); //round down
  1873. //TODO trade only as much as needed
  1874. if (toGive) //don't try to sell 0 resources
  1875. {
  1876. cb->trade(obj, EMarketMode::RESOURCE_RESOURCE, res, g.resID, toGive);
  1877. accquiredResources = toGet * (it->resVal / toGive);
  1878. logAi->debug("Traded %d of %s for %d of %s at %s", toGive, res, accquiredResources, g.resID, obj->getObjectName());
  1879. }
  1880. if (ah->freeResources()[g.resID] >= g.value)
  1881. throw goalFulfilledException(sptr(g)); //we traded all we needed
  1882. }
  1883. throw cannotFulfillGoalException("I cannot get needed resources by trade!");
  1884. }
  1885. else
  1886. {
  1887. throw cannotFulfillGoalException("I don't know how to use this object to raise resources!");
  1888. }
  1889. }
  1890. else
  1891. {
  1892. throw cannotFulfillGoalException("No object that could be used to raise resources!");
  1893. }
  1894. }
  1895. void VCAI::tryRealize(Goals::BuyArmy & g)
  1896. {
  1897. auto t = g.town;
  1898. ui64 valueBought = 0;
  1899. //buy the stacks with largest AI value
  1900. makePossibleUpgrades(t);
  1901. while (valueBought < g.value)
  1902. {
  1903. auto res = ah->allResources();
  1904. std::vector<creInfo> creaturesInDwellings;
  1905. for (int i = t->creatures.size() - 1; i >= 0; i--)
  1906. {
  1907. auto ci = infoFromDC(t->creatures[i]);
  1908. if(!ci.count
  1909. || ci.creID == -1
  1910. || (g.objid != -1 && ci.creID != g.objid)
  1911. || t->getUpperArmy()->getSlotFor(ci.creID) == SlotID())
  1912. continue;
  1913. vstd::amin(ci.count, res / ci.cre->cost); //max count we can afford
  1914. if(!ci.count)
  1915. continue;
  1916. ci.level = i; //this is important for Dungeon Summoning Portal
  1917. creaturesInDwellings.push_back(ci);
  1918. }
  1919. if (creaturesInDwellings.empty())
  1920. throw cannotFulfillGoalException("Can't buy any more creatures!");
  1921. creInfo ci =
  1922. *boost::max_element(creaturesInDwellings, [](const creInfo & lhs, const creInfo & rhs)
  1923. {
  1924. //max value of creatures we can buy with our res
  1925. int value1 = lhs.cre->AIValue * lhs.count,
  1926. value2 = rhs.cre->AIValue * rhs.count;
  1927. return value1 < value2;
  1928. });
  1929. cb->recruitCreatures(t, t->getUpperArmy(), ci.creID, ci.count, ci.level);
  1930. valueBought += ci.count * ci.cre->AIValue;
  1931. }
  1932. if(t->visitingHero)
  1933. {
  1934. moveHeroToTile(t->visitablePos(), t->visitingHero.get());
  1935. }
  1936. throw goalFulfilledException(sptr(g)); //we bought as many creatures as we wanted
  1937. }
  1938. void VCAI::tryRealize(Goals::Invalid & g)
  1939. {
  1940. throw cannotFulfillGoalException("I don't know how to fulfill this!");
  1941. }
  1942. void VCAI::tryRealize(Goals::AbstractGoal & g)
  1943. {
  1944. logAi->debug("Attempting realizing goal with code %s", g.name());
  1945. throw cannotFulfillGoalException("Unknown type of goal !");
  1946. }
  1947. const CGTownInstance * VCAI::findTownWithTavern() const
  1948. {
  1949. for(const CGTownInstance * t : cb->getTownsInfo())
  1950. if(t->hasBuilt(BuildingID::TAVERN) && !t->visitingHero)
  1951. return t;
  1952. return nullptr;
  1953. }
  1954. Goals::TSubgoal VCAI::getGoal(HeroPtr h) const
  1955. {
  1956. auto it = lockedHeroes.find(h);
  1957. if(it != lockedHeroes.end())
  1958. return it->second;
  1959. else
  1960. return sptr(Goals::Invalid());
  1961. }
  1962. std::vector<HeroPtr> VCAI::getUnblockedHeroes() const
  1963. {
  1964. std::vector<HeroPtr> ret;
  1965. for(auto h : cb->getHeroesInfo())
  1966. {
  1967. //&& !vstd::contains(lockedHeroes, h)
  1968. //at this point we assume heroes exhausted their locked goals
  1969. if(canAct(h))
  1970. ret.push_back(h);
  1971. }
  1972. return ret;
  1973. }
  1974. bool VCAI::canAct(HeroPtr h) const
  1975. {
  1976. auto mission = lockedHeroes.find(h);
  1977. if(mission != lockedHeroes.end())
  1978. {
  1979. //FIXME: I'm afraid there can be other conditions when heroes can act but not move :?
  1980. if(mission->second->goalType == Goals::DIG_AT_TILE && !mission->second->isElementar)
  1981. return false;
  1982. }
  1983. return h->movement;
  1984. }
  1985. HeroPtr VCAI::primaryHero() const
  1986. {
  1987. auto hs = cb->getHeroesInfo();
  1988. if (hs.empty())
  1989. return nullptr;
  1990. else
  1991. return *boost::max_element(hs, compareHeroStrength);
  1992. }
  1993. void VCAI::endTurn()
  1994. {
  1995. logAi->info("Player %d (%s) ends turn", playerID, playerID.getStr());
  1996. if(!status.haveTurn())
  1997. {
  1998. logAi->error("Not having turn at the end of turn???");
  1999. }
  2000. logAi->debug("Resources at the end of turn: %s", cb->getResourceAmount().toString());
  2001. do
  2002. {
  2003. cb->endTurn();
  2004. }
  2005. while(status.haveTurn()); //for some reasons, our request may fail -> stop requesting end of turn only after we've received a confirmation that it's over
  2006. logGlobal->info("Player %d (%s) ended turn", playerID, playerID.getStr());
  2007. }
  2008. void VCAI::striveToGoal(Goals::TSubgoal basicGoal)
  2009. {
  2010. //TODO: this function is deprecated and should be dropped altogether
  2011. auto goalToDecompose = basicGoal;
  2012. Goals::TSubgoal elementarGoal = sptr(Goals::Invalid());
  2013. int maxAbstractGoals = 10;
  2014. while (!elementarGoal->isElementar && maxAbstractGoals)
  2015. {
  2016. try
  2017. {
  2018. elementarGoal = decomposeGoal(goalToDecompose);
  2019. }
  2020. catch (goalFulfilledException & e)
  2021. {
  2022. //it is impossible to continue some goals (like exploration, for example)
  2023. completeGoal(e.goal); //put in goalsToRemove
  2024. logAi->debug("Goal %s decomposition failed: goal was completed as much as possible", e.goal->name());
  2025. return;
  2026. }
  2027. catch (std::exception & e)
  2028. {
  2029. goalsToRemove.push_back(basicGoal);
  2030. logAi->debug("Goal %s decomposition failed: %s", basicGoal->name(), e.what());
  2031. return;
  2032. }
  2033. if (elementarGoal->isAbstract) //we can decompose it further
  2034. {
  2035. goalsToAdd.push_back(elementarGoal);
  2036. //decompose further now - this is necesssary if we can't add over 10 goals in the pool
  2037. goalToDecompose = elementarGoal;
  2038. //there is a risk of infinite abstract goal loop, though it indicates failed logic
  2039. maxAbstractGoals--;
  2040. }
  2041. else if (elementarGoal->isElementar) //should be
  2042. {
  2043. logAi->debug("Found elementar goal %s", elementarGoal->name());
  2044. ultimateGoalsFromBasic[elementarGoal].push_back(goalToDecompose); //TODO: how about indirect basicGoal?
  2045. break;
  2046. }
  2047. else //should never be here
  2048. throw cannotFulfillGoalException("Goal %s is neither abstract nor elementar!" + basicGoal->name());
  2049. }
  2050. //realize best goal
  2051. if (!elementarGoal->invalid())
  2052. {
  2053. logAi->debug("Trying to realize %s (value %2.3f)", elementarGoal->name(), elementarGoal->priority);
  2054. try
  2055. {
  2056. boost::this_thread::interruption_point();
  2057. elementarGoal->accept(this); //visitor pattern
  2058. boost::this_thread::interruption_point();
  2059. }
  2060. catch (boost::thread_interrupted & e)
  2061. {
  2062. logAi->debug("Player %d: Making turn thread received an interruption!", playerID);
  2063. throw; //rethrow, we want to truly end this thread
  2064. }
  2065. catch (goalFulfilledException & e)
  2066. {
  2067. //the sub-goal was completed successfully
  2068. completeGoal(e.goal);
  2069. //local goal was also completed
  2070. completeGoal(elementarGoal);
  2071. }
  2072. catch (std::exception & e)
  2073. {
  2074. logAi->debug("Failed to realize subgoal of type %s, I will stop.", elementarGoal->name());
  2075. logAi->debug("The error message was: %s", e.what());
  2076. //erase base goal if we failed to execute decomposed goal
  2077. for (auto basicGoalToRemove : ultimateGoalsFromBasic[elementarGoal])
  2078. goalsToRemove.push_back(basicGoalToRemove);
  2079. }
  2080. }
  2081. }
  2082. Goals::TSubgoal VCAI::decomposeGoal(Goals::TSubgoal ultimateGoal)
  2083. {
  2084. if(ultimateGoal->isElementar)
  2085. {
  2086. logAi->warn("Trying to decompose elementar goal %s", ultimateGoal->name());
  2087. return ultimateGoal;
  2088. }
  2089. const int searchDepth = 30;
  2090. Goals::TSubgoal goal = ultimateGoal;
  2091. logAi->debug("Decomposing goal %s", ultimateGoal->name());
  2092. int maxGoals = searchDepth; //preventing deadlock for mutually dependent goals
  2093. while (maxGoals)
  2094. {
  2095. boost::this_thread::interruption_point();
  2096. goal = goal->whatToDoToAchieve(); //may throw if decomposition fails
  2097. --maxGoals;
  2098. if (goal == ultimateGoal) //compare objects by value
  2099. if (goal->isElementar == ultimateGoal->isElementar)
  2100. throw cannotFulfillGoalException((boost::format("Goal dependency loop detected for %s!")
  2101. % ultimateGoal->name()).str());
  2102. if (goal->isAbstract || goal->isElementar)
  2103. return goal;
  2104. else
  2105. logAi->debug("Considering: %s", goal->name());
  2106. }
  2107. throw cannotFulfillGoalException("Too many subgoals, don't know what to do");
  2108. }
  2109. void VCAI::performTypicalActions()
  2110. {
  2111. for(auto h : getUnblockedHeroes())
  2112. {
  2113. if(!h) //hero might be lost. getUnblockedHeroes() called once on start of turn
  2114. continue;
  2115. logAi->debug("Hero %s started wandering, MP=%d", h->name.c_str(), h->movement);
  2116. makePossibleUpgrades(*h);
  2117. pickBestArtifacts(*h);
  2118. try
  2119. {
  2120. wander(h);
  2121. }
  2122. catch(std::exception & e)
  2123. {
  2124. logAi->debug("Cannot use this hero anymore, received exception: %s", e.what());
  2125. continue;
  2126. }
  2127. }
  2128. }
  2129. void VCAI::buildArmyIn(const CGTownInstance * t)
  2130. {
  2131. makePossibleUpgrades(t->visitingHero);
  2132. makePossibleUpgrades(t);
  2133. recruitCreatures(t, t->getUpperArmy());
  2134. moveCreaturesToHero(t);
  2135. }
  2136. void VCAI::checkHeroArmy(HeroPtr h)
  2137. {
  2138. auto it = lockedHeroes.find(h);
  2139. if(it != lockedHeroes.end())
  2140. {
  2141. if(it->second->goalType == Goals::GATHER_ARMY && it->second->value <= h->getArmyStrength())
  2142. completeGoal(sptr(Goals::GatherArmy(it->second->value).sethero(h)));
  2143. }
  2144. }
  2145. void VCAI::recruitHero(const CGTownInstance * t, bool throwing)
  2146. {
  2147. logAi->debug("Trying to recruit a hero in %s at %s", t->name, t->visitablePos().toString());
  2148. auto heroes = cb->getAvailableHeroes(t);
  2149. if(heroes.size())
  2150. {
  2151. auto hero = heroes[0];
  2152. if(heroes.size() >= 2) //makes sense to recruit two heroes with starting amries in first week
  2153. {
  2154. if(heroes[1]->getTotalStrength() > hero->getTotalStrength())
  2155. hero = heroes[1];
  2156. }
  2157. cb->recruitHero(t, hero);
  2158. if(t->visitingHero)
  2159. moveHeroToTile(t->visitablePos(), t->visitingHero.get());
  2160. throw goalFulfilledException(sptr(Goals::RecruitHero().settown(t)));
  2161. }
  2162. else if(throwing)
  2163. {
  2164. throw cannotFulfillGoalException("No available heroes in tavern in " + t->nodeName());
  2165. }
  2166. }
  2167. void VCAI::finish()
  2168. {
  2169. if(makingTurn)
  2170. {
  2171. makingTurn->interrupt();
  2172. makingTurn->join();
  2173. makingTurn.reset();
  2174. }
  2175. }
  2176. void VCAI::requestActionASAP(std::function<void()> whatToDo)
  2177. {
  2178. boost::thread newThread([this, whatToDo]()
  2179. {
  2180. setThreadName("VCAI::requestActionASAP::whatToDo");
  2181. SET_GLOBAL_STATE(this);
  2182. boost::shared_lock<boost::shared_mutex> gsLock(CGameState::mutex);
  2183. whatToDo();
  2184. });
  2185. }
  2186. void VCAI::lostHero(HeroPtr h)
  2187. {
  2188. logAi->debug("I lost my hero %s. It's best to forget and move on.", h.name);
  2189. vstd::erase_if_present(lockedHeroes, h);
  2190. for(auto obj : reservedHeroesMap[h])
  2191. {
  2192. vstd::erase_if_present(reservedObjs, obj); //unreserve all objects for that hero
  2193. }
  2194. vstd::erase_if_present(reservedHeroesMap, h);
  2195. vstd::erase_if_present(visitedHeroes, h);
  2196. for (auto heroVec : visitedHeroes)
  2197. {
  2198. vstd::erase_if_present(heroVec.second, h);
  2199. }
  2200. //remove goals with removed hero assigned from main loop
  2201. vstd::erase_if(ultimateGoalsFromBasic, [&](const std::pair<Goals::TSubgoal, Goals::TGoalVec> & x) -> bool
  2202. {
  2203. if(x.first->hero == h)
  2204. return true;
  2205. else
  2206. return false;
  2207. });
  2208. auto removedHeroGoalPredicate = [&](const Goals::TSubgoal & x) ->bool
  2209. {
  2210. if(x->hero == h)
  2211. return true;
  2212. else
  2213. return false;
  2214. };
  2215. vstd::erase_if(basicGoals, removedHeroGoalPredicate);
  2216. vstd::erase_if(goalsToAdd, removedHeroGoalPredicate);
  2217. vstd::erase_if(goalsToRemove, removedHeroGoalPredicate);
  2218. for(auto goal : ultimateGoalsFromBasic)
  2219. vstd::erase_if(goal.second, removedHeroGoalPredicate);
  2220. }
  2221. void VCAI::answerQuery(QueryID queryID, int selection)
  2222. {
  2223. logAi->debug("I'll answer the query %d giving the choice %d", queryID, selection);
  2224. if(queryID != QueryID(-1))
  2225. {
  2226. cb->selectionMade(selection, queryID);
  2227. }
  2228. else
  2229. {
  2230. logAi->debug("Since the query ID is %d, the answer won't be sent. This is not a real query!", queryID);
  2231. //do nothing
  2232. }
  2233. }
  2234. void VCAI::requestSent(const CPackForServer * pack, int requestID)
  2235. {
  2236. //BNLOG("I have sent request of type %s", typeid(*pack).name());
  2237. if(auto reply = dynamic_cast<const QueryReply *>(pack))
  2238. {
  2239. status.attemptedAnsweringQuery(reply->qid, requestID);
  2240. }
  2241. }
  2242. std::string VCAI::getBattleAIName() const
  2243. {
  2244. if(settings["server"]["enemyAI"].getType() == JsonNode::JsonType::DATA_STRING)
  2245. return settings["server"]["enemyAI"].String();
  2246. else
  2247. return "BattleAI";
  2248. }
  2249. void VCAI::validateObject(const CGObjectInstance * obj)
  2250. {
  2251. validateObject(obj->id);
  2252. }
  2253. void VCAI::validateObject(ObjectIdRef obj)
  2254. {
  2255. auto matchesId = [&](const CGObjectInstance * hlpObj) -> bool
  2256. {
  2257. return hlpObj->id == obj.id;
  2258. };
  2259. if(!obj)
  2260. {
  2261. vstd::erase_if(visitableObjs, matchesId);
  2262. for(auto & p : reservedHeroesMap)
  2263. vstd::erase_if(p.second, matchesId);
  2264. vstd::erase_if(reservedObjs, matchesId);
  2265. }
  2266. }
  2267. AIStatus::AIStatus()
  2268. {
  2269. battle = NO_BATTLE;
  2270. havingTurn = false;
  2271. ongoingHeroMovement = false;
  2272. ongoingChannelProbing = false;
  2273. }
  2274. AIStatus::~AIStatus()
  2275. {
  2276. }
  2277. void AIStatus::setBattle(BattleState BS)
  2278. {
  2279. boost::unique_lock<boost::mutex> lock(mx);
  2280. LOG_TRACE_PARAMS(logAi, "battle state=%d", (int)BS);
  2281. battle = BS;
  2282. cv.notify_all();
  2283. }
  2284. BattleState AIStatus::getBattle()
  2285. {
  2286. boost::unique_lock<boost::mutex> lock(mx);
  2287. return battle;
  2288. }
  2289. void AIStatus::addQuery(QueryID ID, std::string description)
  2290. {
  2291. if(ID == QueryID(-1))
  2292. {
  2293. logAi->debug("The \"query\" has an id %d, it'll be ignored as non-query. Description: %s", ID, description);
  2294. return;
  2295. }
  2296. assert(ID.getNum() >= 0);
  2297. boost::unique_lock<boost::mutex> lock(mx);
  2298. assert(!vstd::contains(remainingQueries, ID));
  2299. remainingQueries[ID] = description;
  2300. cv.notify_all();
  2301. logAi->debug("Adding query %d - %s. Total queries count: %d", ID, description, remainingQueries.size());
  2302. }
  2303. void AIStatus::removeQuery(QueryID ID)
  2304. {
  2305. boost::unique_lock<boost::mutex> lock(mx);
  2306. assert(vstd::contains(remainingQueries, ID));
  2307. std::string description = remainingQueries[ID];
  2308. remainingQueries.erase(ID);
  2309. cv.notify_all();
  2310. logAi->debug("Removing query %d - %s. Total queries count: %d", ID, description, remainingQueries.size());
  2311. }
  2312. int AIStatus::getQueriesCount()
  2313. {
  2314. boost::unique_lock<boost::mutex> lock(mx);
  2315. return remainingQueries.size();
  2316. }
  2317. void AIStatus::startedTurn()
  2318. {
  2319. boost::unique_lock<boost::mutex> lock(mx);
  2320. havingTurn = true;
  2321. cv.notify_all();
  2322. }
  2323. void AIStatus::madeTurn()
  2324. {
  2325. boost::unique_lock<boost::mutex> lock(mx);
  2326. havingTurn = false;
  2327. cv.notify_all();
  2328. }
  2329. void AIStatus::waitTillFree()
  2330. {
  2331. boost::unique_lock<boost::mutex> lock(mx);
  2332. while(battle != NO_BATTLE || !remainingQueries.empty() || !objectsBeingVisited.empty() || ongoingHeroMovement)
  2333. cv.timed_wait(lock, boost::posix_time::milliseconds(100));
  2334. }
  2335. bool AIStatus::haveTurn()
  2336. {
  2337. boost::unique_lock<boost::mutex> lock(mx);
  2338. return havingTurn;
  2339. }
  2340. void AIStatus::attemptedAnsweringQuery(QueryID queryID, int answerRequestID)
  2341. {
  2342. boost::unique_lock<boost::mutex> lock(mx);
  2343. assert(vstd::contains(remainingQueries, queryID));
  2344. std::string description = remainingQueries[queryID];
  2345. logAi->debug("Attempted answering query %d - %s. Request id=%d. Waiting for results...", queryID, description, answerRequestID);
  2346. requestToQueryID[answerRequestID] = queryID;
  2347. }
  2348. void AIStatus::receivedAnswerConfirmation(int answerRequestID, int result)
  2349. {
  2350. assert(vstd::contains(requestToQueryID, answerRequestID));
  2351. QueryID query = requestToQueryID[answerRequestID];
  2352. assert(vstd::contains(remainingQueries, query));
  2353. requestToQueryID.erase(answerRequestID);
  2354. if(result)
  2355. {
  2356. removeQuery(query);
  2357. }
  2358. else
  2359. {
  2360. logAi->error("Something went really wrong, failed to answer query %d : %s", query.getNum(), remainingQueries[query]);
  2361. //TODO safely retry
  2362. }
  2363. }
  2364. void AIStatus::heroVisit(const CGObjectInstance * obj, bool started)
  2365. {
  2366. boost::unique_lock<boost::mutex> lock(mx);
  2367. if(started)
  2368. {
  2369. objectsBeingVisited.push_back(obj);
  2370. }
  2371. else
  2372. {
  2373. // There can be more than one object visited at the time (eg. hero visits Subterranean Gate
  2374. // causing visit to hero on the other side.
  2375. // However, we are guaranteed that start/end visit notification maintain stack order.
  2376. assert(!objectsBeingVisited.empty());
  2377. objectsBeingVisited.pop_back();
  2378. }
  2379. cv.notify_all();
  2380. }
  2381. void AIStatus::setMove(bool ongoing)
  2382. {
  2383. boost::unique_lock<boost::mutex> lock(mx);
  2384. ongoingHeroMovement = ongoing;
  2385. cv.notify_all();
  2386. }
  2387. void AIStatus::setChannelProbing(bool ongoing)
  2388. {
  2389. boost::unique_lock<boost::mutex> lock(mx);
  2390. ongoingChannelProbing = ongoing;
  2391. cv.notify_all();
  2392. }
  2393. bool AIStatus::channelProbing()
  2394. {
  2395. return ongoingChannelProbing;
  2396. }
  2397. bool isWeeklyRevisitable(const CGObjectInstance * obj)
  2398. {
  2399. //TODO: allow polling of remaining creatures in dwelling
  2400. if(dynamic_cast<const CGVisitableOPW *>(obj)) // ensures future compatibility, unlike IDs
  2401. return true;
  2402. if(dynamic_cast<const CGDwelling *>(obj))
  2403. return true;
  2404. if(dynamic_cast<const CBank *>(obj)) //banks tend to respawn often in mods
  2405. return true;
  2406. switch(obj->ID)
  2407. {
  2408. case Obj::STABLES:
  2409. case Obj::MAGIC_WELL:
  2410. case Obj::HILL_FORT:
  2411. return true;
  2412. case Obj::BORDER_GATE:
  2413. case Obj::BORDERGUARD:
  2414. return (dynamic_cast<const CGKeys *>(obj))->wasMyColorVisited(ai->playerID); //FIXME: they could be revisited sooner than in a week
  2415. }
  2416. return false;
  2417. }
  2418. bool shouldVisit(HeroPtr h, const CGObjectInstance * obj)
  2419. {
  2420. switch(obj->ID)
  2421. {
  2422. case Obj::TOWN:
  2423. case Obj::HERO: //never visit our heroes at random
  2424. return obj->tempOwner != h->tempOwner; //do not visit our towns at random
  2425. case Obj::BORDER_GATE:
  2426. {
  2427. for(auto q : ai->myCb->getMyQuests())
  2428. {
  2429. if(q.obj == obj)
  2430. {
  2431. return false; // do not visit guards or gates when wandering
  2432. }
  2433. }
  2434. return true; //we don't have this quest yet
  2435. }
  2436. case Obj::BORDERGUARD: //open borderguard if possible
  2437. return (dynamic_cast<const CGKeys *>(obj))->wasMyColorVisited(ai->playerID);
  2438. case Obj::SEER_HUT:
  2439. case Obj::QUEST_GUARD:
  2440. {
  2441. for(auto q : ai->myCb->getMyQuests())
  2442. {
  2443. if(q.obj == obj)
  2444. {
  2445. if(q.quest->checkQuest(h.h))
  2446. return true; //we completed the quest
  2447. else
  2448. return false; //we can't complete this quest
  2449. }
  2450. }
  2451. return true; //we don't have this quest yet
  2452. }
  2453. case Obj::CREATURE_GENERATOR1:
  2454. {
  2455. if(obj->tempOwner != h->tempOwner)
  2456. return true; //flag just in case
  2457. const CGDwelling * d = dynamic_cast<const CGDwelling *>(obj);
  2458. for(auto level : d->creatures)
  2459. {
  2460. for(auto c : level.second)
  2461. {
  2462. if(level.first
  2463. && h->getSlotFor(CreatureID(c)) != SlotID()
  2464. && cb->getResourceAmount().canAfford(c.toCreature()->cost))
  2465. {
  2466. return true;
  2467. }
  2468. }
  2469. }
  2470. return false;
  2471. }
  2472. case Obj::HILL_FORT:
  2473. {
  2474. for(auto slot : h->Slots())
  2475. {
  2476. if(slot.second->type->upgrades.size())
  2477. return true; //TODO: check price?
  2478. }
  2479. return false;
  2480. }
  2481. case Obj::MONOLITH_ONE_WAY_ENTRANCE:
  2482. case Obj::MONOLITH_ONE_WAY_EXIT:
  2483. case Obj::MONOLITH_TWO_WAY:
  2484. case Obj::WHIRLPOOL:
  2485. return false;
  2486. case Obj::SCHOOL_OF_MAGIC:
  2487. case Obj::SCHOOL_OF_WAR:
  2488. {
  2489. if (ai->ah->freeGold() < 1000)
  2490. return false;
  2491. break;
  2492. }
  2493. case Obj::LIBRARY_OF_ENLIGHTENMENT:
  2494. if(h->level < 12)
  2495. return false;
  2496. break;
  2497. case Obj::TREE_OF_KNOWLEDGE:
  2498. {
  2499. TResources myRes = ai->ah->freeResources();
  2500. if(myRes[Res::GOLD] < 2000 || myRes[Res::GEMS] < 10)
  2501. return false;
  2502. break;
  2503. }
  2504. case Obj::MAGIC_WELL:
  2505. return h->mana < h->manaLimit();
  2506. case Obj::PRISON:
  2507. return ai->myCb->getHeroesInfo().size() < VLC->modh->settings.MAX_HEROES_ON_MAP_PER_PLAYER;
  2508. case Obj::TAVERN:
  2509. {
  2510. //TODO: make AI actually recruit heroes
  2511. //TODO: only on request
  2512. if(ai->myCb->getHeroesInfo().size() >= VLC->modh->settings.MAX_HEROES_ON_MAP_PER_PLAYER)
  2513. return false;
  2514. else if(ai->ah->freeGold() < GameConstants::HERO_GOLD_COST)
  2515. return false;
  2516. break;
  2517. }
  2518. case Obj::BOAT:
  2519. return false;
  2520. //Boats are handled by pathfinder
  2521. case Obj::EYE_OF_MAGI:
  2522. return false; //this object is useless to visit, but could be visited indefinitely
  2523. }
  2524. if(obj->wasVisited(*h)) //it must pointer to hero instance, heroPtr calls function wasVisited(ui8 player);
  2525. return false;
  2526. return true;
  2527. }