VCAI.cpp 108 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990
  1. #include "StdInc.h"
  2. #include "VCAI.h"
  3. #include "../../lib/UnlockGuard.h"
  4. #include "../../lib/CObjectHandler.h"
  5. #include "../../lib/CConfigHandler.h"
  6. #include "../../lib/CHeroHandler.h"
  7. #define I_AM_ELEMENTAR return CGoal(*this).setisElementar(true)
  8. CLogger &aiLogger = tlog6;
  9. extern FuzzyHelper *fh;
  10. class CGVisitableOPW;
  11. const int ACTUAL_RESOURCE_COUNT = 7;
  12. const double SAFE_ATTACK_CONSTANT = 1.5;
  13. using namespace vstd;
  14. //one thread may be turn of AI and another will be handling a side effect for AI2
  15. boost::thread_specific_ptr<CCallback> cb;
  16. boost::thread_specific_ptr<VCAI> ai;
  17. //std::map<int, std::map<int, int> > HeroView::infosCount;
  18. // CCallback *cb;
  19. // VCAI *ai;
  20. //helper RAII to manage global ai/cb ptrs
  21. struct SetGlobalState
  22. {
  23. SetGlobalState(VCAI * AI)
  24. {
  25. assert(!ai.get());
  26. assert(!cb.get());
  27. ai.reset(AI);
  28. cb.reset(AI->myCb);
  29. }
  30. ~SetGlobalState()
  31. {
  32. ai.release();
  33. cb.release();
  34. }
  35. };
  36. template <typename Container>
  37. typename Container::value_type backOrNull(const Container &c) //returns last element of container or NULL if it is empty (to be used with containers of pointers)
  38. {
  39. if(c.size())
  40. return c.back();
  41. else
  42. return NULL;
  43. }
  44. template <typename Container>
  45. typename Container::value_type frontOrNull(const Container &c) //returns first element of container or NULL if it is empty (to be used with containers of pointers)
  46. {
  47. if(c.size())
  48. return c.front();
  49. else
  50. return NULL;
  51. }
  52. #define SET_GLOBAL_STATE(ai) SetGlobalState _hlpSetState(ai);
  53. #define NET_EVENT_HANDLER SET_GLOBAL_STATE(this)
  54. #define MAKING_TURN SET_GLOBAL_STATE(this)
  55. const int GOLD_RESERVE = 10000; //when buying creatures we want to keep at least this much gold (10000 so at least we'll be able to reach capitol)
  56. const int HERO_GOLD_COST = 2500;
  57. const int ALLOWED_ROAMING_HEROES = 8;
  58. const int GOLD_MINE_PRODUCTION = 1000, WOOD_ORE_MINE_PRODUCTION = 2, RESOURCE_MINE_PRODUCTION = 1;
  59. std::string CGoal::name() const
  60. {
  61. switch (goalType)
  62. {
  63. case INVALID:
  64. return "INVALID";
  65. case WIN:
  66. return "WIN";
  67. case DO_NOT_LOSE:
  68. return "DO NOT LOOSE";
  69. case CONQUER:
  70. return "CONQUER";
  71. case BUILD:
  72. return "BUILD";
  73. case EXPLORE:
  74. return "EXPLORE";
  75. case GATHER_ARMY:
  76. return "GATHER ARMY";
  77. case BOOST_HERO:
  78. return "BOOST_HERO (unsupported)";
  79. case RECRUIT_HERO:
  80. return "RECRUIT HERO";
  81. case BUILD_STRUCTURE:
  82. return "BUILD STRUCTURE";
  83. case COLLECT_RES:
  84. return "COLLECT RESOURCE";
  85. case GATHER_TROOPS:
  86. return "GATHER TROOPS";
  87. case GET_OBJ:
  88. return "GET OBJECT " + boost::lexical_cast<std::string>(objid);
  89. case FIND_OBJ:
  90. return "FIND OBJECT " + boost::lexical_cast<std::string>(objid);
  91. case VISIT_HERO:
  92. return "VISIT HERO " + boost::lexical_cast<std::string>(objid);
  93. case GET_ART_TYPE:
  94. return "GET ARTIFACT OF TYPE " + VLC->arth->artifacts[aid]->Name();
  95. case ISSUE_COMMAND:
  96. return "ISSUE COMMAND (unsupported)";
  97. case VISIT_TILE:
  98. return "VISIT TILE " + tile();
  99. case CLEAR_WAY_TO:
  100. return "CLEAR WAY TO " + tile();
  101. case DIG_AT_TILE:
  102. return "DIG AT TILE " + tile();
  103. default:
  104. return boost::lexical_cast<std::string>(goalType);
  105. }
  106. }
  107. bool compareHeroStrength(HeroPtr h1, HeroPtr h2)
  108. {
  109. return h1->getTotalStrength() < h2->getTotalStrength();
  110. }
  111. bool compareArmyStrength(const CArmedInstance *a1, const CArmedInstance *a2)
  112. {
  113. return a1->getArmyStrength() < a2->getArmyStrength();
  114. }
  115. static const int3 dirs[] = { int3(0,1,0),int3(0,-1,0),int3(-1,0,0),int3(+1,0,0),
  116. int3(1,1,0),int3(-1,1,0),int3(1,-1,0),int3(-1,-1,0) };
  117. struct AILogger
  118. {
  119. AILogger()
  120. {
  121. lvl = 0;
  122. }
  123. int lvl;
  124. struct Tab
  125. {
  126. Tab();
  127. ~Tab();
  128. };
  129. } logger;
  130. AILogger::Tab::Tab()
  131. {
  132. logger.lvl++;
  133. }
  134. AILogger::Tab::~Tab()
  135. {
  136. logger.lvl--;
  137. }
  138. struct TimeCheck
  139. {
  140. CStopWatch time;
  141. std::string txt;
  142. TimeCheck(crstring TXT) : txt(TXT)
  143. {
  144. }
  145. ~TimeCheck()
  146. {
  147. BNLOG("Time of %s was %d ms.", txt % time.getDiff());
  148. }
  149. };
  150. template<typename T>
  151. void removeDuplicates(std::vector<T> &vec)
  152. {
  153. boost::sort(vec);
  154. vec.erase(std::unique(vec.begin(), vec.end()), vec.end());
  155. }
  156. struct AtScopeExit
  157. {
  158. boost::function<void()> foo;
  159. AtScopeExit(const boost::function<void()> &FOO) : foo(FOO)
  160. {}
  161. ~AtScopeExit()
  162. {
  163. foo();
  164. }
  165. };
  166. void foreach_tile_pos(boost::function<void(const int3& pos)> foo)
  167. {
  168. for(int i = 0; i < cb->getMapSize().x; i++)
  169. for(int j = 0; j < cb->getMapSize().y; j++)
  170. for(int k = 0; k < cb->getMapSize().z; k++)
  171. foo(int3(i,j,k));
  172. }
  173. void foreach_neighbour(const int3 &pos, boost::function<void(const int3& pos)> foo)
  174. {
  175. BOOST_FOREACH(const int3 &dir, dirs)
  176. {
  177. const int3 n = pos + dir;
  178. if(cb->isInTheMap(n))
  179. foo(pos+dir);
  180. }
  181. }
  182. unsigned char &retreiveTileN(std::vector< std::vector< std::vector<unsigned char> > > &vectors, const int3 &pos)
  183. {
  184. return vectors[pos.x][pos.y][pos.z];
  185. }
  186. const unsigned char &retreiveTileN(const std::vector< std::vector< std::vector<unsigned char> > > &vectors, const int3 &pos)
  187. {
  188. return vectors[pos.x][pos.y][pos.z];
  189. }
  190. void foreach_tile(std::vector< std::vector< std::vector<unsigned char> > > &vectors, boost::function<void(unsigned char &in)> foo)
  191. {
  192. for(auto i = vectors.begin(); i != vectors.end(); i++)
  193. for(auto j = i->begin(); j != i->end(); j++)
  194. for(auto z = j->begin(); z != j->end(); z++)
  195. foo(*z);
  196. }
  197. struct ObjInfo
  198. {
  199. int3 pos;
  200. std::string name;
  201. ObjInfo(){}
  202. ObjInfo(const CGObjectInstance *obj)
  203. {
  204. pos = obj->pos;
  205. name = obj->getHoverText();
  206. }
  207. };
  208. std::map<const CGObjectInstance *, ObjInfo> helperObjInfo;
  209. template <typename Container, typename Item>
  210. bool remove_if_present(Container &c, const Item &item)
  211. {
  212. auto i = std::find(c.begin(), c.end(), item);
  213. if (i != c.end())
  214. {
  215. c.erase(i);
  216. return true;
  217. }
  218. return false;
  219. }
  220. template <typename V, typename Item, typename Item2>
  221. bool remove_if_present(std::map<Item,V> & c, const Item2 &item)
  222. {
  223. auto i = c.find(item);
  224. if (i != c.end())
  225. {
  226. c.erase(i);
  227. return true;
  228. }
  229. return false;
  230. }
  231. template <typename Container, typename Pred>
  232. void erase(Container &c, Pred pred)
  233. {
  234. c.erase(boost::remove_if(c, pred), c.end());
  235. }
  236. bool isReachable(const CGObjectInstance *obj)
  237. {
  238. return cb->getPathInfo(obj->visitablePos())->turns < 255;
  239. }
  240. ui64 howManyReinforcementsCanGet(HeroPtr h, const CGTownInstance *t)
  241. {
  242. ui64 ret = 0;
  243. int freeHeroSlots = GameConstants::ARMY_SIZE - h->stacksCount();
  244. std::vector<const CStackInstance *> toMove;
  245. BOOST_FOREACH(auto const slot, t->Slots())
  246. {
  247. //can be merged woth another stack?
  248. TSlot dst = h->getSlotFor(slot.second->getCreatureID());
  249. if(h->hasStackAtSlot(dst))
  250. ret += t->getPower(slot.first);
  251. else
  252. toMove.push_back(slot.second);
  253. }
  254. boost::sort(toMove, [](const CStackInstance *lhs, const CStackInstance *rhs)
  255. {
  256. return lhs->getPower() < rhs->getPower();
  257. });
  258. BOOST_REVERSE_FOREACH(const CStackInstance *stack, toMove)
  259. {
  260. if(freeHeroSlots)
  261. {
  262. ret += stack->getPower();
  263. freeHeroSlots--;
  264. }
  265. else
  266. break;
  267. }
  268. return ret;
  269. }
  270. std::string strFromInt3(int3 pos)
  271. {
  272. std::ostringstream oss;
  273. oss << pos;
  274. return oss.str();
  275. }
  276. bool isCloser(const CGObjectInstance *lhs, const CGObjectInstance *rhs)
  277. {
  278. const CGPathNode *ln = cb->getPathInfo(lhs->visitablePos()), *rn = cb->getPathInfo(rhs->visitablePos());
  279. if(ln->turns != rn->turns)
  280. return ln->turns < rn->turns;
  281. return (ln->moveRemains > rn->moveRemains);
  282. }
  283. bool compareMovement(HeroPtr lhs, HeroPtr rhs)
  284. {
  285. return lhs->movement > rhs->movement;
  286. }
  287. ui64 evaluateDanger(const CGObjectInstance *obj);
  288. ui64 evaluateDanger(crint3 tile)
  289. {
  290. const TerrainTile *t = cb->getTile(tile, false);
  291. if(!t) //we can know about guard but can't check its tile (the edge of fow)
  292. return 190000000; //MUCH
  293. ui64 objectDanger = 0, guardDanger = 0;
  294. auto visObjs = cb->getVisitableObjs(tile);
  295. if(visObjs.size())
  296. objectDanger = evaluateDanger(visObjs.back());
  297. int3 guardPos = cb->guardingCreaturePosition(tile);
  298. if(guardPos.x >= 0 && guardPos != tile)
  299. guardDanger = evaluateDanger(guardPos);
  300. //TODO mozna odwiedzic blockvis nie ruszajac straznika
  301. return std::max(objectDanger, guardDanger);
  302. return 0;
  303. }
  304. ui64 evaluateDanger(crint3 tile, const CGHeroInstance *visitor)
  305. {
  306. const TerrainTile *t = cb->getTile(tile, false);
  307. if(!t) //we can know about guard but can't check its tile (the edge of fow)
  308. return 190000000; //MUCH
  309. ui64 objectDanger = 0, guardDanger = 0;
  310. auto visitableObjects = cb->getVisitableObjs(tile);
  311. // in some scenarios hero happens to be "under" the object (eg town). Then we consider ONLY the hero.
  312. if(vstd::contains_if(visitableObjects, objWithID<Obj::HERO>))
  313. erase_if(visitableObjects, ! boost::bind(objWithID<Obj::HERO>, _1));
  314. if(const CGObjectInstance * dangerousObject = backOrNull(visitableObjects))
  315. {
  316. objectDanger = evaluateDanger(dangerousObject); //unguarded objects can also be dangerous or unhandled
  317. if (objectDanger)
  318. {
  319. //TODO: don't downcast objects AI shouldnt know about!
  320. auto armedObj = dynamic_cast<const CArmedInstance*>(dangerousObject);
  321. if(armedObj)
  322. objectDanger *= fh->getTacticalAdvantage(visitor, armedObj); //this line tends to go infinite for allied towns (?)
  323. }
  324. }
  325. auto guards = cb->getGuardingCreatures(tile);
  326. BOOST_FOREACH (auto cre, guards)
  327. {
  328. amax (guardDanger, evaluateDanger(cre) * fh->getTacticalAdvantage(visitor, dynamic_cast<const CArmedInstance*>(cre))); //we are interested in strongest monster around
  329. }
  330. //TODO mozna odwiedzic blockvis nie ruszajac straznika
  331. return std::max(objectDanger, guardDanger);
  332. }
  333. ui64 evaluateDanger(const CGObjectInstance *obj)
  334. {
  335. if(obj->tempOwner < GameConstants::PLAYER_LIMIT && cb->getPlayerRelations(obj->tempOwner, ai->playerID) != PlayerRelations::ENEMIES) //owned or allied objects don't pose any threat
  336. return 0;
  337. switch(obj->ID)
  338. {
  339. case Obj::HERO:
  340. {
  341. InfoAboutHero iah;
  342. cb->getHeroInfo(obj, iah);
  343. return iah.army.getStrength();
  344. }
  345. case Obj::TOWN:
  346. case Obj::GARRISON: case Obj::GARRISON2: //garrison
  347. {
  348. InfoAboutTown iat;
  349. cb->getTownInfo(obj, iat);
  350. return iat.army.getStrength();
  351. }
  352. case Obj::MONSTER:
  353. {
  354. //TODO!!!!!!!!
  355. const CGCreature *cre = dynamic_cast<const CGCreature*>(obj);
  356. return cre->getArmyStrength();
  357. }
  358. case Obj::CREATURE_GENERATOR1:
  359. {
  360. const CGDwelling *d = dynamic_cast<const CGDwelling*>(obj);
  361. return d->getArmyStrength();
  362. }
  363. case Obj::MINE:
  364. case Obj::ABANDONED_MINE:
  365. {
  366. const CArmedInstance * a = dynamic_cast<const CArmedInstance*>(obj);
  367. return a->getArmyStrength();
  368. }
  369. case Obj::CRYPT: //crypt
  370. case Obj::CREATURE_BANK: //crebank
  371. case Obj::DRAGON_UTOPIA:
  372. case Obj::SHIPWRECK: //shipwreck
  373. case Obj::DERELICT_SHIP: //derelict ship
  374. // case Obj::PYRAMID:
  375. return fh->estimateBankDanger (VLC->objh->bankObjToIndex(obj));
  376. case Obj::PYRAMID:
  377. {
  378. if(obj->subID == 0)
  379. return fh->estimateBankDanger (VLC->objh->bankObjToIndex(obj));
  380. else
  381. return 0;
  382. }
  383. default:
  384. return 0;
  385. }
  386. }
  387. bool compareDanger(const CGObjectInstance *lhs, const CGObjectInstance *rhs)
  388. {
  389. return evaluateDanger(lhs) < evaluateDanger(rhs);
  390. }
  391. VCAI::VCAI(void)
  392. {
  393. LOG_ENTRY;
  394. myCb = NULL;
  395. makingTurn = NULL;
  396. }
  397. VCAI::~VCAI(void)
  398. {
  399. LOG_ENTRY;
  400. }
  401. void VCAI::availableCreaturesChanged(const CGDwelling *town)
  402. {
  403. NET_EVENT_HANDLER;
  404. LOG_ENTRY;
  405. }
  406. void VCAI::heroMoved(const TryMoveHero & details)
  407. {
  408. NET_EVENT_HANDLER;
  409. LOG_ENTRY;
  410. if(details.result == TryMoveHero::TELEPORTATION)
  411. {
  412. const int3 from = CGHeroInstance::convertPosition(details.start, false),
  413. to = CGHeroInstance::convertPosition(details.end, false);
  414. const CGObjectInstance *o1 = frontOrNull(cb->getVisitableObjs(from)),
  415. *o2 = frontOrNull(cb->getVisitableObjs(to));
  416. if(o1 && o2 && o1->ID == Obj::SUBTERRANEAN_GATE && o2->ID == Obj::SUBTERRANEAN_GATE)
  417. {
  418. knownSubterraneanGates[o1] = o2;
  419. knownSubterraneanGates[o2] = o1;
  420. BNLOG("Found a pair of subterranean gates between %s and %s!", from % to);
  421. }
  422. }
  423. }
  424. void VCAI::stackChagedCount(const StackLocation &location, const TQuantity &change, bool isAbsolute)
  425. {
  426. NET_EVENT_HANDLER;
  427. LOG_ENTRY;
  428. }
  429. void VCAI::heroInGarrisonChange(const CGTownInstance *town)
  430. {
  431. NET_EVENT_HANDLER;
  432. LOG_ENTRY;
  433. }
  434. void VCAI::centerView(int3 pos, int focusTime)
  435. {
  436. NET_EVENT_HANDLER;
  437. LOG_ENTRY;
  438. }
  439. void VCAI::artifactMoved(const ArtifactLocation &src, const ArtifactLocation &dst)
  440. {
  441. NET_EVENT_HANDLER;
  442. LOG_ENTRY;
  443. }
  444. void VCAI::artifactAssembled(const ArtifactLocation &al)
  445. {
  446. NET_EVENT_HANDLER;
  447. LOG_ENTRY;
  448. }
  449. void VCAI::showTavernWindow(const CGObjectInstance *townOrTavern)
  450. {
  451. NET_EVENT_HANDLER;
  452. LOG_ENTRY;
  453. }
  454. void VCAI::showThievesGuildWindow (const CGObjectInstance * obj)
  455. {
  456. NET_EVENT_HANDLER;
  457. LOG_ENTRY;
  458. }
  459. void VCAI::playerBlocked(int reason)
  460. {
  461. NET_EVENT_HANDLER;
  462. LOG_ENTRY;
  463. if (reason == PlayerBlocked::UPCOMING_BATTLE)
  464. status.setBattle(UPCOMING_BATTLE);
  465. }
  466. void VCAI::showPuzzleMap()
  467. {
  468. NET_EVENT_HANDLER;
  469. LOG_ENTRY;
  470. }
  471. void VCAI::showShipyardDialog(const IShipyard *obj)
  472. {
  473. NET_EVENT_HANDLER;
  474. LOG_ENTRY;
  475. }
  476. void VCAI::gameOver(ui8 player, bool victory)
  477. {
  478. NET_EVENT_HANDLER;
  479. LOG_ENTRY;
  480. BNLOG("Player %d: I heard that player %d %s.", playerID % (int)player % (victory ? "won" : "lost"));
  481. if(player == playerID)
  482. {
  483. if(victory)
  484. {
  485. tlog0 << "VCAI: I won! Incredible!\n";
  486. tlog0 << "Turn nr " << myCb->getDate() << std::endl;
  487. }
  488. else
  489. {
  490. tlog0 << "VCAI: Player " << (int)player << " lost. It's me. What a disappointment! :(\n";
  491. }
  492. // //let's make Impossible difficulty finally standing to its name :>
  493. // if(myCb->getStartInfo()->difficulty == 4 && !victory)
  494. // {
  495. // //play dirty: crash the whole engine to avoid lose
  496. // //that way AI is unbeatable!
  497. // *(int*)NULL = 666;
  498. // }
  499. // TODO - at least write some insults on stdout
  500. finish();
  501. }
  502. }
  503. void VCAI::artifactPut(const ArtifactLocation &al)
  504. {
  505. NET_EVENT_HANDLER;
  506. LOG_ENTRY;
  507. }
  508. void VCAI::artifactRemoved(const ArtifactLocation &al)
  509. {
  510. NET_EVENT_HANDLER;
  511. LOG_ENTRY;
  512. }
  513. void VCAI::stacksErased(const StackLocation &location)
  514. {
  515. NET_EVENT_HANDLER;
  516. LOG_ENTRY;
  517. }
  518. void VCAI::artifactDisassembled(const ArtifactLocation &al)
  519. {
  520. NET_EVENT_HANDLER;
  521. LOG_ENTRY;
  522. }
  523. void VCAI::heroVisit(const CGHeroInstance *visitor, const CGObjectInstance *visitedObj, bool start)
  524. {
  525. NET_EVENT_HANDLER;
  526. LOG_ENTRY;
  527. if (start)
  528. {
  529. visitedObject = const_cast<CGObjectInstance *>(visitedObj); // remember the object and wait for return
  530. markObjectVisited (visitedObj);
  531. remove_if_present(reservedObjs, visitedObj); //unreserve objects
  532. remove_if_present(reservedHeroesMap[visitor], visitedObj);
  533. completeGoal (CGoal(GET_OBJ).sethero(visitor)); //we don't need to visit in anymore
  534. }
  535. }
  536. void VCAI::availableArtifactsChanged(const CGBlackMarket *bm /*= NULL*/)
  537. {
  538. NET_EVENT_HANDLER;
  539. LOG_ENTRY;
  540. }
  541. void VCAI::heroVisitsTown(const CGHeroInstance* hero, const CGTownInstance * town)
  542. {
  543. NET_EVENT_HANDLER;
  544. LOG_ENTRY;
  545. //buildArmyIn(town);
  546. //moveCreaturesToHero(town);
  547. }
  548. void VCAI::tileHidden(const boost::unordered_set<int3, ShashInt3> &pos)
  549. {
  550. NET_EVENT_HANDLER;
  551. LOG_ENTRY;
  552. // BOOST_FOREACH(int3 tile, pos)
  553. // BOOST_FOREACH(const CGObjectInstance *obj, cb->getVisitableObjs(tile))
  554. // remove_if_present(visitableObjs, obj);
  555. visitableObjs.erase(boost::remove_if(visitableObjs, [&](const CGObjectInstance *obj){return !myCb->getObj(obj->id);}), visitableObjs.end());
  556. }
  557. void VCAI::tileRevealed(const boost::unordered_set<int3, ShashInt3> &pos)
  558. {
  559. NET_EVENT_HANDLER;
  560. LOG_ENTRY;
  561. BOOST_FOREACH(int3 tile, pos)
  562. BOOST_FOREACH(const CGObjectInstance *obj, myCb->getVisitableObjs(tile))
  563. addVisitableObj(obj);
  564. }
  565. void VCAI::heroExchangeStarted(si32 hero1, si32 hero2)
  566. {
  567. NET_EVENT_HANDLER;
  568. LOG_ENTRY;
  569. auto firstHero = cb->getHero(hero1);
  570. auto secondHero = cb->getHero(hero2);
  571. requestActionASAP([=]()
  572. {
  573. if (firstHero->getHeroStrength() > secondHero->getHeroStrength() && canGetArmy (firstHero, secondHero))
  574. pickBestCreatures (firstHero, secondHero);
  575. else if (canGetArmy (secondHero, firstHero))
  576. pickBestCreatures (secondHero, firstHero);
  577. completeGoal(CGoal(VISIT_HERO).sethero(firstHero)); //TODO: what if we were visited by other hero in the meantime?
  578. completeGoal(CGoal(VISIT_HERO).sethero(secondHero));
  579. //TODO: exchange artifacts
  580. });
  581. }
  582. void VCAI::heroPrimarySkillChanged(const CGHeroInstance * hero, int which, si64 val)
  583. {
  584. NET_EVENT_HANDLER;
  585. LOG_ENTRY;
  586. }
  587. void VCAI::showRecruitmentDialog(const CGDwelling *dwelling, const CArmedInstance *dst, int level)
  588. {
  589. NET_EVENT_HANDLER;
  590. LOG_ENTRY;
  591. }
  592. void VCAI::heroMovePointsChanged(const CGHeroInstance * hero)
  593. {
  594. NET_EVENT_HANDLER;
  595. LOG_ENTRY;
  596. }
  597. void VCAI::stackChangedType(const StackLocation &location, const CCreature &newType)
  598. {
  599. NET_EVENT_HANDLER;
  600. LOG_ENTRY;
  601. }
  602. void VCAI::stacksRebalanced(const StackLocation &src, const StackLocation &dst, TQuantity count)
  603. {
  604. NET_EVENT_HANDLER;
  605. LOG_ENTRY;
  606. }
  607. void VCAI::newObject(const CGObjectInstance * obj)
  608. {
  609. NET_EVENT_HANDLER;
  610. LOG_ENTRY;
  611. if(obj->isVisitable())
  612. addVisitableObj(obj);
  613. }
  614. void VCAI::objectRemoved(const CGObjectInstance *obj)
  615. {
  616. NET_EVENT_HANDLER;
  617. LOG_ENTRY;
  618. if(remove_if_present(visitableObjs, obj))
  619. assert(obj->isVisitable());
  620. BOOST_FOREACH(auto &p, reservedHeroesMap)
  621. remove_if_present(p.second, obj);
  622. //TODO
  623. //there are other places where CGObjectinstance ptrs are stored...
  624. //
  625. if(obj->ID == Obj::HERO && obj->tempOwner == playerID)
  626. {
  627. lostHero(cb->getHero(obj->id)); //we can promote, since objectRemoved is killed just before actual deletion
  628. }
  629. }
  630. void VCAI::showHillFortWindow(const CGObjectInstance *object, const CGHeroInstance *visitor)
  631. {
  632. NET_EVENT_HANDLER;
  633. LOG_ENTRY;
  634. requestActionASAP([=]()
  635. {
  636. makePossibleUpgrades(visitor);
  637. });
  638. }
  639. void VCAI::playerBonusChanged(const Bonus &bonus, bool gain)
  640. {
  641. NET_EVENT_HANDLER;
  642. LOG_ENTRY;
  643. }
  644. void VCAI::newStackInserted(const StackLocation &location, const CStackInstance &stack)
  645. {
  646. NET_EVENT_HANDLER;
  647. LOG_ENTRY;
  648. }
  649. void VCAI::heroCreated(const CGHeroInstance*)
  650. {
  651. NET_EVENT_HANDLER;
  652. LOG_ENTRY;
  653. }
  654. void VCAI::advmapSpellCast(const CGHeroInstance * caster, int spellID)
  655. {
  656. NET_EVENT_HANDLER;
  657. LOG_ENTRY;
  658. }
  659. void VCAI::showInfoDialog(const std::string &text, const std::vector<Component*> &components, int soundID)
  660. {
  661. NET_EVENT_HANDLER;
  662. LOG_ENTRY;
  663. }
  664. void VCAI::requestRealized(PackageApplied *pa)
  665. {
  666. NET_EVENT_HANDLER;
  667. LOG_ENTRY;
  668. if(status.haveTurn())
  669. {
  670. if(pa->packType == typeList.getTypeID<EndTurn>())
  671. if(pa->result)
  672. status.madeTurn();
  673. }
  674. if(pa->packType == typeList.getTypeID<QueryReply>())
  675. {
  676. status.receivedAnswerConfirmation(pa->requestID, pa->result);
  677. }
  678. }
  679. void VCAI::receivedResource(int type, int val)
  680. {
  681. NET_EVENT_HANDLER;
  682. LOG_ENTRY;
  683. }
  684. void VCAI::stacksSwapped(const StackLocation &loc1, const StackLocation &loc2)
  685. {
  686. NET_EVENT_HANDLER;
  687. LOG_ENTRY;
  688. }
  689. void VCAI::showUniversityWindow(const IMarket *market, const CGHeroInstance *visitor)
  690. {
  691. NET_EVENT_HANDLER;
  692. LOG_ENTRY;
  693. }
  694. void VCAI::heroManaPointsChanged(const CGHeroInstance * hero)
  695. {
  696. NET_EVENT_HANDLER;
  697. LOG_ENTRY;
  698. }
  699. void VCAI::heroSecondarySkillChanged(const CGHeroInstance * hero, int which, int val)
  700. {
  701. NET_EVENT_HANDLER;
  702. LOG_ENTRY;
  703. }
  704. void VCAI::battleResultsApplied()
  705. {
  706. NET_EVENT_HANDLER;
  707. LOG_ENTRY;
  708. assert(status.getBattle() == ENDING_BATTLE);
  709. status.setBattle(NO_BATTLE);
  710. }
  711. void VCAI::objectPropertyChanged(const SetObjectProperty * sop)
  712. {
  713. NET_EVENT_HANDLER;
  714. LOG_ENTRY;
  715. if(sop->what == ObjProperty::OWNER)
  716. {
  717. if(sop->val == playerID)
  718. remove_if_present(visitableObjs, myCb->getObj(sop->id));
  719. //TODO restore lost obj
  720. }
  721. }
  722. void VCAI::buildChanged(const CGTownInstance *town, int buildingID, int what)
  723. {
  724. NET_EVENT_HANDLER;
  725. LOG_ENTRY;
  726. }
  727. void VCAI::heroBonusChanged(const CGHeroInstance *hero, const Bonus &bonus, bool gain)
  728. {
  729. NET_EVENT_HANDLER;
  730. LOG_ENTRY;
  731. }
  732. void VCAI::showMarketWindow(const IMarket *market, const CGHeroInstance *visitor)
  733. {
  734. NET_EVENT_HANDLER;
  735. LOG_ENTRY;
  736. }
  737. void VCAI::init(CCallback * CB)
  738. {
  739. myCb = CB;
  740. cbc = CB;
  741. NET_EVENT_HANDLER;
  742. LOG_ENTRY;
  743. playerID = *myCb->getMyColor();
  744. myCb->waitTillRealize = true;
  745. myCb->unlockGsWhenWaiting = true;
  746. if(!fh)
  747. fh = new FuzzyHelper();
  748. retreiveVisitableObjs(visitableObjs);
  749. }
  750. void VCAI::yourTurn()
  751. {
  752. NET_EVENT_HANDLER;
  753. LOG_ENTRY;
  754. status.startedTurn();
  755. makingTurn = new boost::thread(&VCAI::makeTurn, this);
  756. }
  757. void VCAI::heroGotLevel(const CGHeroInstance *hero, PrimarySkill::PrimarySkill pskill, std::vector<SecondarySkill::SecondarySkill> &skills, int queryID)
  758. {
  759. NET_EVENT_HANDLER;
  760. LOG_ENTRY;
  761. status.addQuery(queryID, boost::str(boost::format("Hero %s got level %d") % hero->name % hero->level));
  762. requestActionASAP([=]{ answerQuery(queryID, 0); });
  763. }
  764. void VCAI::commanderGotLevel (const CCommanderInstance * commander, std::vector<ui32> skills, int queryID)
  765. {
  766. NET_EVENT_HANDLER;
  767. LOG_ENTRY;
  768. status.addQuery(queryID, boost::str(boost::format("Commander %s of %s got level %d") % commander->name % commander->armyObj->nodeName() % (int)commander->level));
  769. requestActionASAP([=]{ answerQuery(queryID, 0); });
  770. }
  771. void VCAI::showBlockingDialog(const std::string &text, const std::vector<Component> &components, ui32 askID, const int soundID, bool selection, bool cancel)
  772. {
  773. NET_EVENT_HANDLER;
  774. LOG_ENTRY;
  775. int sel = 0;
  776. status.addQuery(askID, boost::str(boost::format("Blocking dialog query with %d components - %s")
  777. % components.size() % text));
  778. if(selection) //select from multiple components -> take the last one (they're indexed [1-size])
  779. sel = components.size();
  780. if(!selection && cancel) //yes&no -> always answer yes, we are a brave AI :)
  781. sel = 1;
  782. requestActionASAP([=]()
  783. {
  784. answerQuery(askID, sel);
  785. });
  786. }
  787. void VCAI::showGarrisonDialog(const CArmedInstance *up, const CGHeroInstance *down, bool removableUnits, int queryID)
  788. {
  789. NET_EVENT_HANDLER;
  790. LOG_ENTRY;
  791. std::string s1 = up ? up->nodeName() : "NONE";
  792. std::string s2 = down ? down->nodeName() : "NONE";
  793. status.addQuery(queryID, boost::str(boost::format("Garrison dialog with %s and %s") % s1 % s2));
  794. //you can't request action from action-response thread
  795. requestActionASAP([=]()
  796. {
  797. pickBestCreatures (down, up);
  798. answerQuery(queryID, 0);
  799. });
  800. }
  801. void VCAI::serialize(COSer<CSaveFile> &h, const int version)
  802. {
  803. NET_EVENT_HANDLER;
  804. LOG_ENTRY;
  805. }
  806. void VCAI::serialize(CISer<CLoadFile> &h, const int version)
  807. {
  808. NET_EVENT_HANDLER;
  809. LOG_ENTRY;
  810. }
  811. void makePossibleUpgrades(const CArmedInstance *obj)
  812. {
  813. if(!obj)
  814. return;
  815. for(int i = 0; i < GameConstants::ARMY_SIZE; i++)
  816. {
  817. if(const CStackInstance *s = obj->getStackPtr(i))
  818. {
  819. UpgradeInfo ui;
  820. cb->getUpgradeInfo(obj, i, ui);
  821. if(ui.oldID >= 0 && cb->getResourceAmount().canAfford(ui.cost[0] * s->count))
  822. {
  823. cb->upgradeCreature(obj, i, ui.newID[0]);
  824. }
  825. }
  826. }
  827. }
  828. void VCAI::makeTurn()
  829. {
  830. MAKING_TURN;
  831. boost::shared_lock<boost::shared_mutex> gsLock(cb->getGsMutex());
  832. setThreadName("VCAI::makeTurn");
  833. BNLOG("Player %d starting turn", playerID);
  834. INDENT;
  835. switch(cb->getDate(Date::DAY_OF_WEEK))
  836. {
  837. case 1:
  838. {
  839. townVisitsThisWeek.clear();
  840. std::vector<const CGObjectInstance *> objs;
  841. retreiveVisitableObjs(objs, true);
  842. BOOST_FOREACH(const CGObjectInstance *obj, objs)
  843. {
  844. if (isWeeklyRevisitable(obj))
  845. {
  846. if (!vstd::contains(visitableObjs, obj))
  847. visitableObjs.push_back(obj);
  848. auto o = std::find (alreadyVisited.begin(), alreadyVisited.end(), obj);
  849. if (o != alreadyVisited.end())
  850. alreadyVisited.erase(o);
  851. }
  852. }
  853. }
  854. break;
  855. case 7: //reconsider strategy
  856. {
  857. if(auto h = primaryHero()) //check if our primary hero can handle danger
  858. {
  859. ui64 totalDanger = 0;
  860. int dangerousObjects = 0;
  861. std::vector<const CGObjectInstance *> objs;
  862. retreiveVisitableObjs(objs, false);
  863. BOOST_FOREACH (auto obj, objs)
  864. {
  865. if (evaluateDanger(obj)) //potentilaly dnagerous
  866. {
  867. totalDanger += evaluateDanger(obj->visitablePos(), *h);
  868. ++dangerousObjects;
  869. }
  870. }
  871. ui64 averageDanger = totalDanger / std::max(dangerousObjects, 1);
  872. if (dangerousObjects && averageDanger > h->getHeroStrength())
  873. {
  874. setGoal (h, CGoal(GATHER_ARMY).sethero(h).setvalue(averageDanger * SAFE_ATTACK_CONSTANT).setisAbstract(true));
  875. }
  876. }
  877. }
  878. break;
  879. }
  880. if(cb->getSelectedHero())
  881. cb->recalculatePaths();
  882. makeTurnInternal();
  883. vstd::clear_pointer(makingTurn);
  884. return;
  885. }
  886. void VCAI::makeTurnInternal()
  887. {
  888. saving = 0;
  889. //it looks messy here, but it's better to have armed heroes before attempting realizing goals
  890. BOOST_FOREACH(const CGTownInstance *t, cb->getTownsInfo())
  891. moveCreaturesToHero(t);
  892. try
  893. {
  894. //Pick objects reserved in previous turn - we expect only nerby objects there
  895. auto reservedHeroesCopy = reservedHeroesMap; //work on copy => the map may be changed while iterating (eg because hero died when attempting a goal)
  896. BOOST_FOREACH (auto hero, reservedHeroesCopy)
  897. {
  898. cb->setSelection(hero.first.get());
  899. boost::sort (hero.second, isCloser);
  900. BOOST_FOREACH (auto obj, hero.second)
  901. {
  902. striveToGoal (CGoal(VISIT_TILE).sethero(hero.first).settile(obj->visitablePos()));
  903. }
  904. }
  905. //now try to win
  906. striveToGoal(CGoal(WIN));
  907. //finally, continue our abstract long-term goals
  908. //heroes tend to die in the process and loose their goals, unsafe to iterate it
  909. std::vector<std::pair<HeroPtr, CGoal> > safeCopy;
  910. boost::copy(lockedHeroes, std::back_inserter(safeCopy));
  911. typedef std::pair<HeroPtr, CGoal> TItrType;
  912. auto lockedHeroesSorter = [](TItrType h1, TItrType h2) -> bool
  913. {
  914. return compareMovement (h1.first, h2.first);
  915. };
  916. boost::sort(safeCopy, lockedHeroesSorter);
  917. while (safeCopy.size()) //continue our goals
  918. {
  919. auto it = safeCopy.begin();
  920. if (it->first && it->first->tempOwner == playerID && vstd::contains(lockedHeroes, it->first)) //make sure hero still has his goal
  921. {
  922. cb->setSelection(*it->first);
  923. striveToGoal (it->second);
  924. }
  925. safeCopy.erase(it);
  926. }
  927. auto quests = myCb->getMyQuests();
  928. BOOST_FOREACH (auto quest, quests)
  929. {
  930. striveToQuest (quest);
  931. }
  932. striveToGoal(CGoal(BUILD)); //TODO: smarter building management
  933. }
  934. catch(boost::thread_interrupted &e)
  935. {
  936. tlog0 << "Making turn thread has been interrupted. We'll end without calling endTurn.\n";
  937. return;
  938. }
  939. catch(std::exception &e)
  940. {
  941. tlog0 << "Making turn thread has caught an exception: " << e.what() << "\n";
  942. }
  943. endTurn();
  944. }
  945. bool VCAI::goVisitObj(const CGObjectInstance * obj, HeroPtr h)
  946. {
  947. int3 dst = obj->visitablePos();
  948. BNLOG("%s will try to visit %s at (%s)", h->name % obj->getHoverText() % strFromInt3(dst));
  949. return moveHeroToTile(dst, h);
  950. }
  951. void VCAI::performObjectInteraction(const CGObjectInstance * obj, HeroPtr h)
  952. {
  953. switch (obj->ID)
  954. {
  955. case Obj::CREATURE_GENERATOR1:
  956. recruitCreatures (dynamic_cast<const CGDwelling *>(obj));
  957. checkHeroArmy (h);
  958. break;
  959. case Obj::TOWN:
  960. moveCreaturesToHero (dynamic_cast<const CGTownInstance *>(obj));
  961. if (h->visitedTown) //we are inside, not just attacking
  962. {
  963. townVisitsThisWeek[h].push_back(h->visitedTown);
  964. if (!h->hasSpellbook() && cb->getResourceAmount(Res::GOLD) >= GameConstants::SPELLBOOK_GOLD_COST + saving[Res::GOLD] &&
  965. h->visitedTown->hasBuilt (BuildingID::MAGES_GUILD_1))
  966. cb->buyArtifact(h.get(), ArtifactID::SPELLBOOK);
  967. }
  968. break;
  969. }
  970. }
  971. void VCAI::moveCreaturesToHero(const CGTownInstance * t)
  972. {
  973. if(t->visitingHero && t->armedGarrison())
  974. {
  975. pickBestCreatures (t->visitingHero, t);
  976. }
  977. }
  978. bool VCAI::canGetArmy (const CGHeroInstance * army, const CGHeroInstance * source)
  979. { //TODO: merge with pickBestCreatures
  980. const CArmedInstance *armies[] = {army, source};
  981. int armySize = 0;
  982. //we calculate total strength for each creature type available in armies
  983. std::map<const CCreature*, int> creToPower;
  984. BOOST_FOREACH(auto armyPtr, armies)
  985. BOOST_FOREACH(auto &i, armyPtr->Slots())
  986. {
  987. ++armySize;//TODO: allow splitting stacks?
  988. creToPower[i.second->type] += i.second->getPower();
  989. }
  990. //TODO - consider more than just power (ie morale penalty, hero specialty in certain stacks, etc)
  991. armySize = std::min ((source->needsLastStack() ? armySize - 1 : armySize), GameConstants::ARMY_SIZE); //can't move away last stack
  992. std::vector<const CCreature *> bestArmy; //types that'll be in final dst army
  993. for (int i = 0; i < armySize; i++) //pick the creatures from which we can get most power, as many as dest can fit
  994. {
  995. typedef const std::pair<const CCreature*, int> &CrePowerPair;
  996. auto creIt = boost::max_element(creToPower, [](CrePowerPair lhs, CrePowerPair rhs)
  997. {
  998. return lhs.second < rhs.second;
  999. });
  1000. bestArmy.push_back(creIt->first);
  1001. creToPower.erase(creIt);
  1002. if(creToPower.empty())
  1003. break;
  1004. }
  1005. //foreach best type -> iterate over slots in both armies and if it's the appropriate type, send it to the slot where it belongs
  1006. for (int i = 0; i < bestArmy.size(); i++) //i-th strongest creature type will go to i-th slot
  1007. {
  1008. BOOST_FOREACH(auto armyPtr, armies)
  1009. for (int j = 0; j < GameConstants::ARMY_SIZE; j++)
  1010. {
  1011. if(armyPtr->getCreature(j) == bestArmy[i] && (i != j || armyPtr != army)) //it's a searched creature not in dst slot
  1012. if (!(armyPtr->needsLastStack() && armyPtr->Slots().size() == 1 && armyPtr != army)) //can't take away last creature
  1013. return true; //at least one exchange will be performed
  1014. }
  1015. }
  1016. return false;
  1017. }
  1018. void VCAI::pickBestCreatures(const CArmedInstance * army, const CArmedInstance * source)
  1019. {
  1020. //TODO - what if source is a hero (the last stack problem) -> it'd good to create a single stack of weakest cre
  1021. const CArmedInstance *armies[] = {army, source};
  1022. int armySize = 0;
  1023. //we calculate total strength for each creature type available in armies
  1024. std::map<const CCreature*, int> creToPower;
  1025. BOOST_FOREACH(auto armyPtr, armies)
  1026. BOOST_FOREACH(auto &i, armyPtr->Slots())
  1027. {
  1028. ++armySize;//TODO: allow splitting stacks?
  1029. creToPower[i.second->type] += i.second->getPower();
  1030. }
  1031. //TODO - consider more than just power (ie morale penalty, hero specialty in certain stacks, etc)
  1032. armySize = std::min ((source->needsLastStack() ? armySize - 1 : armySize), GameConstants::ARMY_SIZE); //can't move away last stack
  1033. std::vector<const CCreature *> bestArmy; //types that'll be in final dst army
  1034. for (int i = 0; i < armySize; i++) //pick the creatures from which we can get most power, as many as dest can fit
  1035. {
  1036. typedef const std::pair<const CCreature*, int> &CrePowerPair;
  1037. auto creIt = boost::max_element(creToPower, [](CrePowerPair lhs, CrePowerPair rhs)
  1038. {
  1039. return lhs.second < rhs.second;
  1040. });
  1041. bestArmy.push_back(creIt->first);
  1042. creToPower.erase(creIt);
  1043. if(creToPower.empty())
  1044. break;
  1045. }
  1046. //foreach best type -> iterate over slots in both armies and if it's the appropriate type, send it to the slot where it belongs
  1047. for (int i = 0; i < bestArmy.size(); i++) //i-th strongest creature type will go to i-th slot
  1048. {
  1049. BOOST_FOREACH(auto armyPtr, armies)
  1050. for (int j = 0; j < GameConstants::ARMY_SIZE; j++)
  1051. {
  1052. if(armyPtr->getCreature(j) == bestArmy[i] && (i != j || armyPtr != army)) //it's a searched creature not in dst slot
  1053. if (!(armyPtr->needsLastStack() && armyPtr->Slots().size() == 1 && armyPtr != army))
  1054. cb->mergeOrSwapStacks(armyPtr, army, j, i);
  1055. }
  1056. }
  1057. //TODO - having now strongest possible army, we may want to think about arranging stacks
  1058. auto hero = dynamic_cast<const CGHeroInstance *>(army);
  1059. if (hero)
  1060. {
  1061. checkHeroArmy (hero);
  1062. }
  1063. }
  1064. void VCAI::recruitCreatures(const CGDwelling * d)
  1065. {
  1066. for(int i = 0; i < d->creatures.size(); i++)
  1067. {
  1068. if(!d->creatures[i].second.size())
  1069. continue;
  1070. int count = d->creatures[i].first;
  1071. CreatureID creID = d->creatures[i].second.back();
  1072. // const CCreature *c = VLC->creh->creatures[creID];
  1073. // if(containsSavedRes(c->cost))
  1074. // continue;
  1075. TResources myRes = cb->getResourceAmount();
  1076. myRes[Res::GOLD] -= GOLD_RESERVE;
  1077. amin(count, myRes / VLC->creh->creatures[creID]->cost);
  1078. if(count > 0)
  1079. cb->recruitCreatures(d, creID, count, i);
  1080. }
  1081. }
  1082. bool VCAI::tryBuildStructure(const CGTownInstance * t, int building, unsigned int maxDays)
  1083. {
  1084. if (!vstd::contains(t->town->buildings, building))
  1085. return false; // no such building in town
  1086. if (t->hasBuilt(building)) //Already built? Shouldn't happen in general
  1087. return true;
  1088. std::set<int> toBuild = cb->getBuildingRequiments(t, building);
  1089. //erase all already built buildings
  1090. for (auto buildIter = toBuild.begin(); buildIter != toBuild.end();)
  1091. {
  1092. if (t->hasBuilt(*buildIter))
  1093. toBuild.erase(buildIter++);
  1094. else
  1095. buildIter++;
  1096. }
  1097. toBuild.insert(building);
  1098. BOOST_FOREACH(int buildID, toBuild)
  1099. {
  1100. EBuildingState::EBuildingState canBuild = cb->canBuildStructure(t, buildID);
  1101. if (canBuild == EBuildingState::HAVE_CAPITAL
  1102. || canBuild == EBuildingState::FORBIDDEN
  1103. || canBuild == EBuildingState::NO_WATER)
  1104. return false; //we won't be able to build this
  1105. }
  1106. if (maxDays && toBuild.size() > maxDays)
  1107. return false;
  1108. TResources currentRes = cb->getResourceAmount();
  1109. TResources income = estimateIncome();
  1110. //TODO: calculate if we have enough resources to build it in maxDays
  1111. BOOST_FOREACH(int buildID, toBuild)
  1112. {
  1113. const CBuilding *b = t->town->buildings[buildID];
  1114. EBuildingState::EBuildingState canBuild = cb->canBuildStructure(t, buildID);
  1115. if(canBuild == EBuildingState::ALLOWED)
  1116. {
  1117. if(!containsSavedRes(b->resources))
  1118. {
  1119. BNLOG("Player %d will build %s in town of %s at %s", playerID % b->Name() % t->name % t->pos);
  1120. cb->buildBuilding(t, buildID);
  1121. return true;
  1122. }
  1123. continue;
  1124. }
  1125. else if(canBuild == EBuildingState::NO_RESOURCES)
  1126. {
  1127. TResources cost = t->town->buildings[buildID]->resources;
  1128. for (int i = 0; i < GameConstants::RESOURCE_QUANTITY; i++)
  1129. {
  1130. int diff = currentRes[i] - cost[i] + income[i];
  1131. if(diff < 0)
  1132. saving[i] = 1;
  1133. }
  1134. continue;
  1135. }
  1136. }
  1137. return false;
  1138. }
  1139. bool VCAI::tryBuildAnyStructure(const CGTownInstance * t, std::vector<int> buildList, unsigned int maxDays)
  1140. {
  1141. BOOST_FOREACH(int building, buildList)
  1142. {
  1143. if(t->hasBuilt(building))
  1144. continue;
  1145. if (tryBuildStructure(t, building, maxDays))
  1146. return true;
  1147. }
  1148. return false; //Can't build anything
  1149. }
  1150. bool VCAI::tryBuildNextStructure(const CGTownInstance * t, std::vector<int> buildList, unsigned int maxDays)
  1151. {
  1152. BOOST_FOREACH(int building, buildList)
  1153. {
  1154. if(t->hasBuilt(building))
  1155. continue;
  1156. return tryBuildStructure(t, building, maxDays);
  1157. }
  1158. return false;//Nothing to build
  1159. }
  1160. void VCAI::buildStructure(const CGTownInstance * t)
  1161. {
  1162. //TODO make *real* town development system
  1163. //TODO: faction-specific development: use special buildings, build dwellings in better order, etc
  1164. //TODO: build resource silo, defences when needed
  1165. //Possible - allow "locking" on specific building (build prerequisites and then building itself)
  1166. //Set of buildings for different goals. Does not include any prerequisites.
  1167. const int essential[] = {BuildingID::TAVERN, BuildingID::TOWN_HALL};
  1168. const int goldSource[] = {BuildingID::TOWN_HALL, BuildingID::CITY_HALL, BuildingID::CAPITOL};
  1169. const int unitsSource[] = { 30, 31, 32, 33, 34, 35, 36};
  1170. const int unitsUpgrade[] = { 37, 38, 39, 40, 41, 42, 43};
  1171. const int unitGrowth[] = { BuildingID::FORT, BuildingID::CITADEL, BuildingID::CASTLE, BuildingID::HORDE_1,
  1172. BuildingID::HORDE_1_UPGR, BuildingID::HORDE_2, BuildingID::HORDE_2_UPGR};
  1173. const int spells[] = {BuildingID::MAGES_GUILD_1, BuildingID::MAGES_GUILD_2, BuildingID::MAGES_GUILD_3,
  1174. BuildingID::MAGES_GUILD_4, BuildingID::MAGES_GUILD_5};
  1175. const int extra[] = {BuildingID::RESOURCE_SILO, BuildingID::SPECIAL_1, BuildingID::SPECIAL_2, BuildingID::SPECIAL_3,
  1176. BuildingID::SPECIAL_4, BuildingID::SHIPYARD}; // all remaining buildings
  1177. TResources currentRes = cb->getResourceAmount();
  1178. TResources income = estimateIncome();
  1179. if (tryBuildAnyStructure(t, std::vector<int>(essential, essential + ARRAY_COUNT(essential))))
  1180. return;
  1181. //we're running out of gold - try to build something gold-producing. Multiplier can be tweaked, 6 is minimum due to buildings costs
  1182. if (currentRes[Res::GOLD] < income[Res::GOLD] * 6)
  1183. if (tryBuildNextStructure(t, std::vector<int>(goldSource, goldSource + ARRAY_COUNT(goldSource))))
  1184. return;
  1185. if (cb->getDate(Date::DAY_OF_WEEK) > 6)// last 2 days of week - try to focus on growth
  1186. {
  1187. if (tryBuildNextStructure(t, std::vector<int>(unitGrowth, unitGrowth + ARRAY_COUNT(unitGrowth)), 2))
  1188. return;
  1189. }
  1190. // first in-game week or second half of any week: try build dwellings
  1191. if (cb->getDate(Date::DAY) < 7 || cb->getDate(Date::DAY_OF_WEEK) > 3)
  1192. if (tryBuildAnyStructure(t, std::vector<int>(unitsSource, unitsSource + ARRAY_COUNT(unitsSource)), 8 - cb->getDate(Date::DAY_OF_WEEK)))
  1193. return;
  1194. //try to upgrade dwelling
  1195. for(int i = 0; i < ARRAY_COUNT(unitsUpgrade); i++)
  1196. {
  1197. if (t->hasBuilt(unitsSource[i]) && !t->hasBuilt(unitsUpgrade[i]))
  1198. {
  1199. if (tryBuildStructure(t, unitsUpgrade[i]))
  1200. return;
  1201. }
  1202. }
  1203. //remaining tasks
  1204. if (tryBuildNextStructure(t, std::vector<int>(goldSource, goldSource + ARRAY_COUNT(goldSource))))
  1205. return;
  1206. if (tryBuildNextStructure(t, std::vector<int>(spells, spells + ARRAY_COUNT(spells))))
  1207. return;
  1208. if (tryBuildAnyStructure(t, std::vector<int>(extra, extra + ARRAY_COUNT(extra))))
  1209. return;
  1210. }
  1211. bool isSafeToVisit(HeroPtr h, crint3 tile)
  1212. {
  1213. const ui64 heroStrength = h->getTotalStrength(),
  1214. dangerStrength = evaluateDanger(tile, *h);
  1215. if(dangerStrength)
  1216. {
  1217. if(heroStrength / SAFE_ATTACK_CONSTANT > dangerStrength)
  1218. {
  1219. BNLOG("It's, safe for %s to visit tile %s", h->name % tile);
  1220. return true;
  1221. }
  1222. else
  1223. return false;
  1224. }
  1225. return true; //there's no danger
  1226. }
  1227. std::vector<const CGObjectInstance *> VCAI::getPossibleDestinations(HeroPtr h)
  1228. {
  1229. validateVisitableObjs();
  1230. std::vector<const CGObjectInstance *> possibleDestinations;
  1231. BOOST_FOREACH(const CGObjectInstance *obj, visitableObjs)
  1232. {
  1233. if(cb->getPathInfo(obj->visitablePos())->reachable() && !obj->wasVisited(playerID) &&
  1234. (obj->tempOwner != playerID || isWeeklyRevisitable(obj))) //flag or get weekly resources / creatures
  1235. possibleDestinations.push_back(obj);
  1236. }
  1237. boost::sort(possibleDestinations, isCloser);
  1238. possibleDestinations.erase(boost::remove_if(possibleDestinations, [&](const CGObjectInstance *obj) -> bool
  1239. {
  1240. const int3 pos = obj->visitablePos();
  1241. if(vstd::contains(alreadyVisited, obj))
  1242. return true;
  1243. if(!isSafeToVisit(h, pos))
  1244. return true;
  1245. if (!shouldVisit(h, obj))
  1246. return true;
  1247. if (vstd::contains(reservedObjs, obj)) //does checking for our own reserved objects make sense? here?
  1248. return true;
  1249. const CGObjectInstance *topObj = cb->getVisitableObjs(pos).back(); //it may be hero visiting this obj
  1250. //we don't try visiting object on which allied or owned hero stands
  1251. // -> it will just trigger exchange windows and AI will be confused that obj behind doesn't get visited
  1252. if(topObj->ID == Obj::HERO && cb->getPlayerRelations(h->tempOwner, topObj->tempOwner) != PlayerRelations::ENEMIES)
  1253. return true;
  1254. return false;
  1255. }),possibleDestinations.end());
  1256. return possibleDestinations;
  1257. }
  1258. void VCAI::wander(HeroPtr h)
  1259. {
  1260. while(1)
  1261. {
  1262. std::vector <ObjectIdRef> dests;
  1263. range::copy(reservedHeroesMap[h], std::back_inserter(dests));
  1264. if (!dests.size())
  1265. range::copy(getPossibleDestinations(h), std::back_inserter(dests));
  1266. if(!dests.size())
  1267. {
  1268. auto compareReinforcements = [h](const CGTownInstance *lhs, const CGTownInstance *rhs) -> bool
  1269. {
  1270. return howManyReinforcementsCanGet(h, lhs) < howManyReinforcementsCanGet(h, rhs);
  1271. };
  1272. std::vector<const CGTownInstance *> townsReachable;
  1273. std::vector<const CGTownInstance *> townsNotReachable;
  1274. BOOST_FOREACH(const CGTownInstance *t, cb->getTownsInfo())
  1275. {
  1276. if(!t->visitingHero && howManyReinforcementsCanGet(h,t) && !vstd::contains(townVisitsThisWeek[h], t))
  1277. {
  1278. if(isReachable(t))
  1279. townsReachable.push_back(t);
  1280. else
  1281. townsNotReachable.push_back(t);
  1282. }
  1283. }
  1284. if(townsReachable.size())
  1285. {
  1286. boost::sort(townsReachable, compareReinforcements);
  1287. dests.emplace_back(townsReachable.back());
  1288. }
  1289. else if(townsNotReachable.size())
  1290. {
  1291. boost::sort(townsNotReachable, compareReinforcements);
  1292. //TODO pick the truly best
  1293. const CGTownInstance *t = townsNotReachable.back();
  1294. BNLOG("%s can't reach any town, we'll try to make our way to %s at %s", h->name % t->name % t->visitablePos());
  1295. int3 pos1 = h->pos;
  1296. striveToGoal(CGoal(CLEAR_WAY_TO).settile(t->visitablePos()).sethero(h));
  1297. if (pos1 == h->pos && h == primaryHero()) //hero can't move
  1298. {
  1299. if(cb->getResourceAmount(Res::GOLD) >= HERO_GOLD_COST && cb->getHeroesInfo().size() < ALLOWED_ROAMING_HEROES && cb->getAvailableHeroes(t).size())
  1300. recruitHero(t);
  1301. }
  1302. break;
  1303. }
  1304. else if(cb->getResourceAmount(Res::GOLD) >= HERO_GOLD_COST)
  1305. {
  1306. std::vector<const CGTownInstance *> towns = cb->getTownsInfo();
  1307. erase_if(towns, [](const CGTownInstance *t) -> bool
  1308. {
  1309. BOOST_FOREACH(const CGHeroInstance *h, cb->getHeroesInfo())
  1310. if(!t->getArmyStrength() || howManyReinforcementsCanGet(h, t))
  1311. return true;
  1312. return false;
  1313. });
  1314. boost::sort(towns, compareArmyStrength);
  1315. if(towns.size())
  1316. recruitHero(towns.back());
  1317. break;
  1318. }
  1319. else
  1320. {
  1321. PNLOG("Nowhere more to go...\n");
  1322. break;
  1323. }
  1324. }
  1325. const ObjectIdRef&dest = dests.front();
  1326. if(!goVisitObj(dest, h))
  1327. {
  1328. if(!dest)
  1329. {
  1330. BNLOG("Visit attempt made the object (id=%d) gone...", dest.id);
  1331. }
  1332. else
  1333. {
  1334. BNLOG("Hero %s apparently used all MPs (%d left)\n", h->name % h->movement);
  1335. reserveObject(h, dest); //reserve that object - we predict it will be reached soon
  1336. //removed - do not forget abstract goal so easily
  1337. //setGoal(h, CGoal(VISIT_TILE).sethero(h).settile(dest->visitablePos()));
  1338. }
  1339. break;
  1340. }
  1341. if(h->visitedTown)
  1342. {
  1343. townVisitsThisWeek[h].push_back(h->visitedTown);
  1344. buildArmyIn(h->visitedTown);
  1345. break;
  1346. }
  1347. }
  1348. }
  1349. void VCAI::setGoal(HeroPtr h, const CGoal goal)
  1350. { //TODO: check for presence?
  1351. if (goal.goalType == EGoals::INVALID)
  1352. remove_if_present(lockedHeroes, h);
  1353. else
  1354. lockedHeroes[h] = CGoal(goal).setisElementar(false); //always evaluate goals before realizing
  1355. }
  1356. void VCAI::setGoal(HeroPtr h, EGoals goalType)
  1357. {
  1358. if (goalType == EGoals::INVALID)
  1359. remove_if_present(lockedHeroes, h);
  1360. else
  1361. lockedHeroes[h] = CGoal(goalType).setisElementar(false); //always evaluate goals before realizing;
  1362. }
  1363. void VCAI::completeGoal (const CGoal goal)
  1364. {
  1365. if (const CGHeroInstance * h = goal.hero.get(true))
  1366. {
  1367. auto it = lockedHeroes.find(h);
  1368. if (it != lockedHeroes.end())
  1369. if (it->second.goalType == goal.goalType)
  1370. lockedHeroes.erase(it); //goal fulfilled, free hero
  1371. }
  1372. }
  1373. void VCAI::battleStart(const CCreatureSet *army1, const CCreatureSet *army2, int3 tile, const CGHeroInstance *hero1, const CGHeroInstance *hero2, bool side)
  1374. {
  1375. NET_EVENT_HANDLER;
  1376. assert(playerID > GameConstants::PLAYER_LIMIT || status.getBattle() == UPCOMING_BATTLE);
  1377. status.setBattle(ONGOING_BATTLE);
  1378. const CGObjectInstance *presumedEnemy = backOrNull(cb->getVisitableObjs(tile)); //may be NULL in some very are cases -> eg. visited monolith and fighting with an enemy at the FoW covered exit
  1379. battlename = boost::str(boost::format("Starting battle of %s attacking %s at %s") % (hero1 ? hero1->name : "a army") % (presumedEnemy ? presumedEnemy->hoverName : "unknown enemy") % tile);
  1380. CAdventureAI::battleStart(army1, army2, tile, hero1, hero2, side);
  1381. }
  1382. void VCAI::battleEnd(const BattleResult *br)
  1383. {
  1384. NET_EVENT_HANDLER;
  1385. assert(status.getBattle() == ONGOING_BATTLE);
  1386. status.setBattle(ENDING_BATTLE);
  1387. bool won = br->winner == myCb->battleGetMySide();
  1388. BNLOG("Player %d: I %s the %s!", playerID % (won ? "won" : "lost") % battlename);
  1389. battlename.clear();
  1390. CAdventureAI::battleEnd(br);
  1391. }
  1392. void VCAI::waitTillFree()
  1393. {
  1394. auto unlock = vstd::makeUnlockSharedGuard(cb->getGsMutex());
  1395. status.waitTillFree();
  1396. }
  1397. void VCAI::markObjectVisited (const CGObjectInstance *obj)
  1398. {
  1399. if(dynamic_cast<const CGVisitableOPH *>(obj) || //we may want to wisit it with another hero
  1400. dynamic_cast<const CGBonusingObject *>(obj) || //or another time
  1401. (obj->ID == Obj::MONSTER))
  1402. return;
  1403. alreadyVisited.push_back(obj);
  1404. }
  1405. void VCAI::reserveObject(HeroPtr h, const CGObjectInstance *obj)
  1406. {
  1407. reservedObjs.push_back(obj);
  1408. reservedHeroesMap[h].push_back(obj);
  1409. }
  1410. void VCAI::validateVisitableObjs()
  1411. {
  1412. std::vector<const CGObjectInstance *> hlp;
  1413. retreiveVisitableObjs(hlp, true);
  1414. start:
  1415. BOOST_FOREACH(const CGObjectInstance *obj, visitableObjs)
  1416. if(!vstd::contains(hlp, obj))
  1417. {
  1418. tlog1 << helperObjInfo[obj].name << " at " << helperObjInfo[obj].pos << " shouldn't be on list!\n";
  1419. remove_if_present(visitableObjs, obj);
  1420. goto start;
  1421. }
  1422. }
  1423. void VCAI::retreiveVisitableObjs(std::vector<const CGObjectInstance *> &out, bool includeOwned /*= false*/) const
  1424. {
  1425. foreach_tile_pos([&](const int3 &pos)
  1426. {
  1427. BOOST_FOREACH(const CGObjectInstance *obj, myCb->getVisitableObjs(pos, false))
  1428. {
  1429. if(includeOwned || obj->tempOwner != playerID)
  1430. out.push_back(obj);
  1431. }
  1432. });
  1433. }
  1434. std::vector<const CGObjectInstance *> VCAI::getFlaggedObjects() const
  1435. {
  1436. std::vector<const CGObjectInstance *> ret;
  1437. retreiveVisitableObjs(ret, true);
  1438. erase_if(ret, [](const CGObjectInstance *obj)
  1439. {
  1440. return obj->tempOwner != ai->playerID;
  1441. });
  1442. return ret;
  1443. }
  1444. void VCAI::addVisitableObj(const CGObjectInstance *obj)
  1445. {
  1446. visitableObjs.push_back(obj);
  1447. helperObjInfo[obj] = ObjInfo(obj);
  1448. }
  1449. const CGObjectInstance * VCAI::lookForArt(int aid) const
  1450. {
  1451. BOOST_FOREACH(const CGObjectInstance *obj, ai->visitableObjs)
  1452. {
  1453. if(obj->ID == 5 && obj->subID == aid)
  1454. return obj;
  1455. }
  1456. return NULL;
  1457. //TODO what if more than one artifact is available? return them all or some slection criteria
  1458. }
  1459. bool VCAI::isAccessible(const int3 &pos)
  1460. {
  1461. //TODO precalculate for speed
  1462. BOOST_FOREACH(const CGHeroInstance *h, cb->getHeroesInfo())
  1463. {
  1464. if(isAccessibleForHero(pos, h))
  1465. return true;
  1466. }
  1467. return false;
  1468. }
  1469. HeroPtr VCAI::getHeroWithGrail() const
  1470. {
  1471. BOOST_FOREACH(const CGHeroInstance *h, cb->getHeroesInfo())
  1472. if(h->hasArt(2)) //grail
  1473. return h;
  1474. return NULL;
  1475. }
  1476. const CGObjectInstance * VCAI::getUnvisitedObj(const boost::function<bool(const CGObjectInstance *)> &predicate)
  1477. {
  1478. //TODO smarter definition of unvisited
  1479. BOOST_FOREACH(const CGObjectInstance *obj, visitableObjs)
  1480. if(predicate(obj) && !vstd::contains(alreadyVisited, obj))
  1481. return obj;
  1482. return NULL;
  1483. }
  1484. bool VCAI::isAccessibleForHero(const int3 & pos, HeroPtr h, bool includeAllies /*= false*/) const
  1485. {
  1486. cb->setSelection(*h);
  1487. if (!includeAllies)
  1488. { //don't visit tile occupied by allied hero
  1489. BOOST_FOREACH (auto obj, cb->getVisitableObjs(pos))
  1490. {
  1491. if (obj->ID == Obj::HERO && obj->tempOwner == h->tempOwner && obj != h)
  1492. return false;
  1493. }
  1494. }
  1495. return cb->getPathInfo(pos)->reachable();
  1496. }
  1497. bool VCAI::moveHeroToTile(int3 dst, HeroPtr h)
  1498. {
  1499. visitedObject = NULL;
  1500. int3 startHpos = h->visitablePos();
  1501. bool ret = false;
  1502. if(startHpos == dst)
  1503. {
  1504. assert(cb->getVisitableObjs(dst).size() > 1); //there's no point in revisiting tile where there is no visitable object
  1505. cb->moveHero(*h, CGHeroInstance::convertPosition(dst, true));
  1506. waitTillFree(); //movement may cause battle or blocking dialog
  1507. ret = true;
  1508. }
  1509. else
  1510. {
  1511. CGPath path;
  1512. cb->getPath2(dst, path);
  1513. if(path.nodes.empty())
  1514. {
  1515. tlog1 << "Hero " << h->name << " cannot reach " << dst << std::endl;
  1516. //setGoal(h, INVALID);
  1517. completeGoal (CGoal(VISIT_TILE).sethero(h));
  1518. cb->recalculatePaths();
  1519. throw std::runtime_error("Wrong move order!");
  1520. }
  1521. int i=path.nodes.size()-1;
  1522. for(; i>0; i--)
  1523. {
  1524. //stop sending move requests if the next node can't be reached at the current turn (hero exhausted his move points)
  1525. if(path.nodes[i-1].turns)
  1526. {
  1527. //blockedHeroes.insert(h); //to avoid attempts of moving heroes with very little MPs
  1528. break;
  1529. }
  1530. int3 endpos = path.nodes[i-1].coord;
  1531. if(endpos == h->visitablePos())
  1532. //if (endpos == h->pos)
  1533. continue;
  1534. // if(i > 1)
  1535. // {
  1536. // int3 afterEndPos = path.nodes[i-2].coord;
  1537. // if(afterEndPos.z != endpos.z)
  1538. //
  1539. // }
  1540. //tlog0 << "Moving " << h->name << " from " << h->getPosition() << " to " << endpos << std::endl;
  1541. cb->moveHero(*h, CGHeroInstance::convertPosition(endpos, true));
  1542. waitTillFree(); //movement may cause battle or blocking dialog
  1543. boost::this_thread::interruption_point();
  1544. if(!h) //we lost hero - remove all tasks assigned to him/her
  1545. {
  1546. lostHero(h);
  1547. //we need to throw, otherwise hero will be assigned to sth again
  1548. throw std::runtime_error("Hero was lost!");
  1549. break;
  1550. }
  1551. }
  1552. ret = !i;
  1553. }
  1554. if (visitedObject) //we step into something interesting
  1555. {
  1556. performObjectInteraction (visitedObject, h);
  1557. //BNLOG("Hero %s moved from %s to %s at %s", h->name % startHpos % visitedObject->hoverName % h->visitablePos());
  1558. //throw goalFulfilledException (CGoal(GET_OBJ).setobjid(visitedObject->id));
  1559. }
  1560. if(h) //we could have lost hero after last move
  1561. {
  1562. cb->recalculatePaths();
  1563. if (startHpos == h->visitablePos() && !ret) //we didn't move and didn't reach the target
  1564. {
  1565. throw cannotFulfillGoalException("Invalid path found!");
  1566. }
  1567. }
  1568. BNLOG("Hero %s moved from %s to %s", h->name % startHpos % h->visitablePos());
  1569. return ret;
  1570. }
  1571. int howManyTilesWillBeDiscovered(const int3 &pos, int radious)
  1572. { //TODO: do not explore dead-end boundaries
  1573. int ret = 0;
  1574. for(int x = pos.x - radious; x <= pos.x + radious; x++)
  1575. {
  1576. for(int y = pos.y - radious; y <= pos.y + radious; y++)
  1577. {
  1578. int3 npos = int3(x,y,pos.z);
  1579. if(cb->isInTheMap(npos) && pos.dist2d(npos) - 0.5 < radious && !cb->isVisible(npos))
  1580. {
  1581. if (!boundaryBetweenTwoPoints (pos, npos))
  1582. ret++;
  1583. }
  1584. }
  1585. }
  1586. return ret;
  1587. }
  1588. bool boundaryBetweenTwoPoints (int3 pos1, int3 pos2) //determines if two points are separated by known barrier
  1589. {
  1590. int xMin = std::min (pos1.x, pos2.x);
  1591. int xMax = std::max (pos1.x, pos2.x);
  1592. int yMin = std::min (pos1.y, pos2.y);
  1593. int yMax = std::max (pos1.y, pos2.y);
  1594. for (int x = xMin; x <= xMax; ++x)
  1595. {
  1596. for (int y = yMin; y <= yMax; ++y)
  1597. {
  1598. int3 tile = int3(x, y, pos1.z); //use only on same level, ofc
  1599. if (abs(pos1.dist2d(tile) - pos2.dist2d(tile)) < 1.5)
  1600. {
  1601. if (!(cb->isVisible(tile) && cb->getTile(tile)->blocked)) //if there's invisible or unblocked tile inbetween, it's good
  1602. return false;
  1603. }
  1604. }
  1605. }
  1606. return true; //if all are visible and blocked, we're at dead end
  1607. }
  1608. int howManyTilesWillBeDiscovered(int radious, int3 pos, crint3 dir)
  1609. {
  1610. return howManyTilesWillBeDiscovered(pos + dir, radious);
  1611. }
  1612. void getVisibleNeighbours(const std::vector<int3> &tiles, std::vector<int3> &out)
  1613. {
  1614. BOOST_FOREACH(const int3 &tile, tiles)
  1615. {
  1616. foreach_neighbour(tile, [&](int3 neighbour)
  1617. {
  1618. if(cb->isVisible(neighbour))
  1619. out.push_back(neighbour);
  1620. });
  1621. }
  1622. }
  1623. void VCAI::tryRealize(CGoal g)
  1624. {
  1625. BNLOG("Attempting realizing goal with code %s", g.name());
  1626. switch(g.goalType)
  1627. {
  1628. case EXPLORE:
  1629. {
  1630. throw cannotFulfillGoalException("EXPLORE is not a elementar goal!");
  1631. }
  1632. break;
  1633. case RECRUIT_HERO:
  1634. {
  1635. if(const CGTownInstance *t = findTownWithTavern())
  1636. {
  1637. recruitHero(t, true);
  1638. //TODO jezeli miasto jest zablokowane, sprobowac oczyscic wejscie
  1639. }
  1640. //TODO karkolomna alternatywa - tawerna na mapie przygod lub wiezienie (nie wiem, czy warto?)
  1641. }
  1642. break;
  1643. case VISIT_TILE:
  1644. {
  1645. //cb->recalculatePaths();
  1646. if(!g.hero->movement)
  1647. throw cannotFulfillGoalException("Cannot visit tile: hero is out of MPs!");
  1648. //if(!g.isBlockedBorderGate(g.tile))
  1649. //{
  1650. if (ai->moveHeroToTile(g.tile, g.hero.get()))
  1651. {
  1652. throw goalFulfilledException (g);
  1653. }
  1654. //}
  1655. //else
  1656. // throw cannotFulfillGoalException("There's a blocked gate!, we should never be here"); //CLEAR_WAY_TO should get keymaster tent
  1657. }
  1658. break;
  1659. case VISIT_HERO:
  1660. {
  1661. if(!g.hero->movement)
  1662. throw cannotFulfillGoalException("Cannot visit tile: hero is out of MPs!");
  1663. if (ai->moveHeroToTile(g.tile, g.hero.get()))
  1664. {
  1665. throw goalFulfilledException (g);
  1666. }
  1667. }
  1668. break;
  1669. case BUILD_STRUCTURE:
  1670. {
  1671. const CGTownInstance *t = g.town;
  1672. if(!t && g.hero)
  1673. t = g.hero->visitedTown;
  1674. if(!t)
  1675. {
  1676. BOOST_FOREACH(const CGTownInstance *t, cb->getTownsInfo())
  1677. {
  1678. switch(cb->canBuildStructure(t, g.bid))
  1679. {
  1680. case EBuildingState::ALLOWED:
  1681. cb->buildBuilding(t, g.bid);
  1682. return;
  1683. default:
  1684. break;
  1685. }
  1686. }
  1687. }
  1688. else if(cb->canBuildStructure(t, g.bid) == EBuildingState::ALLOWED)
  1689. {
  1690. cb->buildBuilding(t, g.bid);
  1691. return;
  1692. }
  1693. throw cannotFulfillGoalException("Cannot build a given structure!");
  1694. }
  1695. break;
  1696. case DIG_AT_TILE:
  1697. {
  1698. assert(g.hero->visitablePos() == g.tile);
  1699. if (g.hero->diggingStatus() == CGHeroInstance::CAN_DIG)
  1700. {
  1701. cb->dig(g.hero.get());
  1702. setGoal(g.hero, INVALID); // finished digging
  1703. }
  1704. else
  1705. {
  1706. ai->lockedHeroes[g.hero] = g; //hero who tries to dig shouldn't do anything else
  1707. throw cannotFulfillGoalException("A hero can't dig!\n");
  1708. }
  1709. }
  1710. break;
  1711. case COLLECT_RES: //TODO: use piles and mines?
  1712. if(cb->getResourceAmount(static_cast<Res::ERes>(g.resID)) >= g.value)
  1713. throw cannotFulfillGoalException("Goal is already fulfilled!");
  1714. if(const CGObjectInstance *obj = cb->getObj(g.objid, false))
  1715. {
  1716. if(const IMarket *m = IMarket::castFrom(obj, false))
  1717. {
  1718. for (Res::ERes i = Res::WOOD; i <= Res::GOLD; vstd::advance(i, 1))
  1719. {
  1720. if(i == g.resID) continue;
  1721. int toGive, toGet;
  1722. m->getOffer(i, g.resID, toGive, toGet, EMarketMode::RESOURCE_RESOURCE);
  1723. toGive = toGive * (cb->getResourceAmount(i) / toGive);
  1724. //TODO trade only as much as needed
  1725. cb->trade(obj, EMarketMode::RESOURCE_RESOURCE, i, g.resID, toGive);
  1726. if(cb->getResourceAmount(static_cast<Res::ERes>(g.resID)) >= g.value)
  1727. return;
  1728. }
  1729. throw cannotFulfillGoalException("I cannot get needed resources by trade!");
  1730. }
  1731. else
  1732. {
  1733. throw cannotFulfillGoalException("I don't know how to use this object to raise resources!");
  1734. }
  1735. }
  1736. else
  1737. {
  1738. saving[g.resID] = 1;
  1739. throw cannotFulfillGoalException("No object that could be used to raise resources!");
  1740. }
  1741. case CONQUER:
  1742. case GATHER_ARMY:
  1743. case BOOST_HERO:
  1744. // TODO: conquer??
  1745. throw cannotFulfillGoalException("I don't know how to fulfill this!");
  1746. case BUILD:
  1747. performTypicalActions(); //TODO: separate build and wander
  1748. throw cannotFulfillGoalException("BUILD has been realized as much as possible.");
  1749. case INVALID:
  1750. throw cannotFulfillGoalException("I don't know how to fulfill this!");
  1751. default:
  1752. throw cannotFulfillGoalException("Unknown type of goal !");
  1753. }
  1754. }
  1755. const CGTownInstance * VCAI::findTownWithTavern() const
  1756. {
  1757. BOOST_FOREACH(const CGTownInstance *t, cb->getTownsInfo())
  1758. if(t->hasBuilt(BuildingID::TAVERN) && !t->visitingHero)
  1759. return t;
  1760. return NULL;
  1761. }
  1762. std::vector<HeroPtr> VCAI::getUnblockedHeroes() const
  1763. {
  1764. std::vector<HeroPtr> ret;
  1765. boost::copy(cb->getHeroesInfo(), std::back_inserter(ret));
  1766. BOOST_FOREACH(auto h, lockedHeroes)
  1767. {
  1768. //if (!h.second.invalid()) //we can use heroes without valid goal
  1769. if (h.second.goalType == DIG_AT_TILE || !h.first->movement) //experiment: use all heroes that have movement left, TODO: unlock heroes that couldn't realize their goals
  1770. remove_if_present(ret, h.first);
  1771. }
  1772. return ret;
  1773. }
  1774. HeroPtr VCAI::primaryHero() const
  1775. {
  1776. auto hs = cb->getHeroesInfo();
  1777. boost::sort(hs, compareHeroStrength);
  1778. if(hs.empty())
  1779. return NULL;
  1780. return hs.back();
  1781. }
  1782. void VCAI::endTurn()
  1783. {
  1784. tlog4 << "Player " << playerID << " ends turn\n";
  1785. if(!status.haveTurn())
  1786. {
  1787. tlog1 << "Not having turn at the end of turn???\n";
  1788. }
  1789. do
  1790. {
  1791. cb->endTurn();
  1792. } 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
  1793. tlog4 << "Player " << playerID << " ended turn\n";
  1794. }
  1795. bool VCAI::fulfillsGoal (CGoal &goal, CGoal &mainGoal)
  1796. {
  1797. if (mainGoal.goalType == GET_OBJ && goal.goalType == VISIT_TILE) //deduce that GET_OBJ was completed by visiting object's tile
  1798. { //TODO: more universal mechanism
  1799. if (cb->getObj(mainGoal.objid)->visitablePos() == goal.tile)
  1800. return true;
  1801. }
  1802. return false;
  1803. }
  1804. bool VCAI::fulfillsGoal (CGoal &goal, const CGoal &mainGoal)
  1805. {
  1806. if (mainGoal.goalType == GET_OBJ && goal.goalType == VISIT_TILE) //deduce that GET_OBJ was completed by visiting object's tile
  1807. { //TODO: more universal mechanism
  1808. if (cb->getObj(mainGoal.objid)->visitablePos() == goal.tile)
  1809. return true;
  1810. }
  1811. return false;
  1812. }
  1813. void VCAI::striveToGoal(const CGoal &ultimateGoal)
  1814. {
  1815. if (ultimateGoal.invalid())
  1816. return;
  1817. CGoal abstractGoal;
  1818. while(1)
  1819. {
  1820. CGoal goal = ultimateGoal;
  1821. BNLOG("Striving to goal of type %s", ultimateGoal.name());
  1822. int maxGoals = 100; //preventing deadlock for mutually dependent goals
  1823. while(!goal.isElementar && !goal.isAbstract && maxGoals)
  1824. {
  1825. INDENT;
  1826. BNLOG("Considering goal %s", goal.name());
  1827. try
  1828. {
  1829. boost::this_thread::interruption_point();
  1830. goal = goal.whatToDoToAchieve();
  1831. --maxGoals;
  1832. }
  1833. catch(std::exception &e)
  1834. {
  1835. BNLOG("Goal %s decomposition failed: %s", goal.name() % e.what());
  1836. //setGoal (goal.hero, INVALID); //test: if we don't know how to realize goal, we should abandon it for now
  1837. return;
  1838. }
  1839. }
  1840. try
  1841. {
  1842. boost::this_thread::interruption_point();
  1843. if (goal.hero) //lock this hero to fulfill ultimate goal
  1844. {
  1845. if (maxGoals)
  1846. {
  1847. setGoal(goal.hero, goal);
  1848. }
  1849. else
  1850. {
  1851. setGoal(goal.hero, INVALID); // we seemingly don't know what to do with hero
  1852. }
  1853. }
  1854. if (goal.isAbstract)
  1855. {
  1856. abstractGoal = goal; //allow only one abstract goal per call
  1857. BNLOG("Choosing abstract goal %s", goal.name());
  1858. break;
  1859. }
  1860. else
  1861. tryRealize(goal);
  1862. boost::this_thread::interruption_point();
  1863. }
  1864. catch(boost::thread_interrupted &e)
  1865. {
  1866. BNLOG("Player %d: Making turn thread received an interruption!", playerID);
  1867. throw; //rethrow, we want to truly end this thread
  1868. }
  1869. catch(goalFulfilledException &e)
  1870. {
  1871. completeGoal (goal);
  1872. if (fulfillsGoal (goal, ultimateGoal) || maxGoals > 98) //completed goal was main goal //TODO: find better condition
  1873. return;
  1874. }
  1875. catch(std::exception &e)
  1876. {
  1877. BNLOG("Failed to realize subgoal of type %s (greater goal type was %s), I will stop.", goal.name() % ultimateGoal.name());
  1878. BNLOG("The error message was: %s", e.what());
  1879. break;
  1880. }
  1881. }
  1882. //TODO: save abstract goals not related to hero
  1883. if (!abstractGoal.invalid()) //try to realize our one goal
  1884. {
  1885. while (1)
  1886. {
  1887. CGoal goal = CGoal(abstractGoal).setisAbstract(false);
  1888. int maxGoals = 50;
  1889. while (!goal.isElementar && maxGoals) //find elementar goal and fulfill it
  1890. {
  1891. try
  1892. {
  1893. boost::this_thread::interruption_point();
  1894. goal = goal.whatToDoToAchieve();
  1895. --maxGoals;
  1896. }
  1897. catch(std::exception &e)
  1898. {
  1899. BNLOG("Goal %s decomposition failed: %s", goal.name() % e.what());
  1900. //setGoal (goal.hero, INVALID);
  1901. return;
  1902. }
  1903. }
  1904. try
  1905. {
  1906. boost::this_thread::interruption_point();
  1907. tryRealize(goal);
  1908. boost::this_thread::interruption_point();
  1909. }
  1910. catch(boost::thread_interrupted &e)
  1911. {
  1912. BNLOG("Player %d: Making turn thread received an interruption!", playerID);
  1913. throw; //rethrow, we want to truly end this thread
  1914. }
  1915. catch(goalFulfilledException &e)
  1916. {
  1917. completeGoal (goal); //FIXME: deduce that we have realized GET_OBJ goal
  1918. if (fulfillsGoal (goal, abstractGoal) || maxGoals > 98) //completed goal was main goal
  1919. return;
  1920. }
  1921. catch(std::exception &e)
  1922. {
  1923. BNLOG("Failed to realize subgoal of type %s (greater goal type was %s), I will stop.", goal.name() % ultimateGoal.name());
  1924. BNLOG("The error message was: %s", e.what());
  1925. break;
  1926. }
  1927. }
  1928. }
  1929. }
  1930. void VCAI::striveToQuest (const QuestInfo &q)
  1931. {
  1932. if (q.quest->missionType && q.quest->progress != CQuest::COMPLETE) //FIXME: quests are never synchronized. Pointer handling needed
  1933. {
  1934. MetaString ms;
  1935. q.quest->getRolloverText(ms, false);
  1936. BNLOG ("Trying to realize quest: %s", ms.toString());
  1937. auto heroes = cb->getHeroesInfo();
  1938. switch (q.quest->missionType)
  1939. {
  1940. case CQuest::MISSION_ART:
  1941. {
  1942. BOOST_FOREACH (auto hero, heroes) //TODO: remove duplicated code?
  1943. {
  1944. if (q.quest->checkQuest(hero))
  1945. {
  1946. striveToGoal (CGoal(GET_OBJ).setobjid(q.obj->id).sethero(hero));
  1947. return;
  1948. }
  1949. }
  1950. BOOST_FOREACH (auto art, q.quest->m5arts)
  1951. {
  1952. striveToGoal (CGoal(GET_ART_TYPE).setaid(art)); //TODO: transport?
  1953. }
  1954. break;
  1955. }
  1956. case CQuest::MISSION_HERO:
  1957. {
  1958. //striveToGoal (CGoal(RECRUIT_HERO));
  1959. BOOST_FOREACH (auto hero, heroes)
  1960. {
  1961. if (q.quest->checkQuest(hero))
  1962. {
  1963. striveToGoal (CGoal(GET_OBJ).setobjid(q.obj->id).sethero(hero));
  1964. return;
  1965. }
  1966. }
  1967. striveToGoal (CGoal(FIND_OBJ).setobjid(Obj::PRISON)); //rule of a thumb - quest heroes usually are locked in prisons
  1968. //BNLOG ("Don't know how to recruit hero with id %d\n", q.quest->m13489val);
  1969. break;
  1970. }
  1971. case CQuest::MISSION_ARMY:
  1972. {
  1973. BOOST_FOREACH (auto hero, heroes)
  1974. {
  1975. if (q.quest->checkQuest(hero)) //veyr bad info - stacks can be split between multiple heroes :(
  1976. {
  1977. striveToGoal (CGoal(GET_OBJ).setobjid(q.obj->id).sethero(hero));
  1978. return;
  1979. }
  1980. }
  1981. BOOST_FOREACH (auto creature, q.quest->m6creatures)
  1982. {
  1983. striveToGoal (CGoal(GATHER_TROOPS).setobjid(creature.type->idNumber).setvalue(creature.count));
  1984. }
  1985. //TODO: exchange armies... oh my
  1986. //BNLOG ("Don't know how to recruit %d of %s\n", (int)(creature.count) % creature.type->namePl);
  1987. break;
  1988. }
  1989. case CQuest::MISSION_RESOURCES:
  1990. {
  1991. if (heroes.size())
  1992. {
  1993. if (q.quest->checkQuest(heroes.front())) //it doesn't matter which hero it is
  1994. {
  1995. striveToGoal (CGoal(VISIT_TILE).settile(q.tile));
  1996. }
  1997. else
  1998. {
  1999. for (int i = 0; i < q.quest->m7resources.size(); ++i)
  2000. {
  2001. if (q.quest->m7resources[i])
  2002. striveToGoal (CGoal(COLLECT_RES).setresID(i).setvalue(q.quest->m7resources[i]));
  2003. }
  2004. }
  2005. }
  2006. else
  2007. striveToGoal (CGoal(RECRUIT_HERO)); //FIXME: checkQuest requires any hero belonging to player :(
  2008. break;
  2009. }
  2010. case CQuest::MISSION_KILL_HERO:
  2011. case CQuest::MISSION_KILL_CREATURE:
  2012. {
  2013. auto obj = cb->getObjByQuestIdentifier(q.quest->m13489val);
  2014. if (obj)
  2015. striveToGoal (CGoal(GET_OBJ).setobjid(obj->id));
  2016. else
  2017. striveToGoal (CGoal(VISIT_TILE).settile(q.tile)); //visit seer hut
  2018. break;
  2019. }
  2020. case CQuest::MISSION_PRIMARY_STAT:
  2021. {
  2022. auto heroes = cb->getHeroesInfo();
  2023. BOOST_FOREACH (auto hero, heroes)
  2024. {
  2025. if (q.quest->checkQuest(hero))
  2026. {
  2027. striveToGoal (CGoal(GET_OBJ).setobjid(q.obj->id).sethero(hero));
  2028. return;
  2029. }
  2030. }
  2031. for (int i = 0; i < q.quest->m2stats.size(); ++i)
  2032. {
  2033. BNLOG ("Don't know how to increase primary stat %d\n", i);
  2034. }
  2035. break;
  2036. }
  2037. case CQuest::MISSION_LEVEL:
  2038. {
  2039. auto heroes = cb->getHeroesInfo();
  2040. BOOST_FOREACH (auto hero, heroes)
  2041. {
  2042. if (q.quest->checkQuest(hero))
  2043. {
  2044. striveToGoal (CGoal(VISIT_TILE).settile(q.tile).sethero(hero)); //TODO: causes infinite loop :/
  2045. return;
  2046. }
  2047. }
  2048. BNLOG ("Don't know how to reach hero level %d\n", q.quest->m13489val);
  2049. break;
  2050. }
  2051. case CQuest::MISSION_PLAYER:
  2052. {
  2053. if (playerID != q.quest->m13489val)
  2054. BNLOG ("Can't be player of color %d\n", q.quest->m13489val);
  2055. break;
  2056. }
  2057. case CQuest::MISSION_KEYMASTER:
  2058. {
  2059. striveToGoal (CGoal(FIND_OBJ).setobjid(Obj::KEYMASTER).setresID(q.obj->subID));
  2060. break;
  2061. }
  2062. }
  2063. }
  2064. }
  2065. void VCAI::performTypicalActions()
  2066. {
  2067. BOOST_FOREACH(const CGTownInstance *t, cb->getTownsInfo())
  2068. {
  2069. BNLOG("Looking into %s", t->name);
  2070. buildStructure(t);
  2071. buildArmyIn(t);
  2072. if(!ai->primaryHero() ||
  2073. (t->getArmyStrength() > ai->primaryHero()->getArmyStrength() * 2 && !isAccessibleForHero(t->visitablePos(), ai->primaryHero())))
  2074. {
  2075. recruitHero(t);
  2076. buildArmyIn(t);
  2077. }
  2078. }
  2079. BOOST_FOREACH(auto h, getUnblockedHeroes())
  2080. {
  2081. BNLOG("Looking into %s, MP=%d", h->name.c_str() % h->movement);
  2082. INDENT;
  2083. makePossibleUpgrades(*h);
  2084. cb->setSelection(*h);
  2085. try
  2086. {
  2087. wander(h);
  2088. }
  2089. catch(std::exception &e)
  2090. {
  2091. BNLOG("Cannot use this hero anymore, received exception: %s", e.what());
  2092. continue;
  2093. }
  2094. }
  2095. }
  2096. void VCAI::buildArmyIn(const CGTownInstance * t)
  2097. {
  2098. makePossibleUpgrades(t->visitingHero);
  2099. makePossibleUpgrades(t);
  2100. recruitCreatures(t);
  2101. moveCreaturesToHero(t);
  2102. }
  2103. int3 VCAI::explorationBestNeighbour(int3 hpos, int radius, HeroPtr h)
  2104. {
  2105. TimeCheck tc("looking for best exploration neighbour");
  2106. std::map<int3, int> dstToRevealedTiles;
  2107. BOOST_FOREACH(crint3 dir, dirs)
  2108. if(cb->isInTheMap(hpos+dir))
  2109. dstToRevealedTiles[hpos + dir] = howManyTilesWillBeDiscovered(radius, hpos, dir) * isSafeToVisit(h, hpos + dir);
  2110. auto best = dstToRevealedTiles.begin();
  2111. best->second *= cb->getPathInfo(best->first)->reachable();
  2112. best->second *= cb->getPathInfo(best->first)->accessible == CGPathNode::ACCESSIBLE;
  2113. for(auto i = dstToRevealedTiles.begin(); i != dstToRevealedTiles.end(); i++)
  2114. {
  2115. const CGPathNode *pn = cb->getPathInfo(i->first);
  2116. //const TerrainTile *t = cb->getTile(i->first);
  2117. if(best->second < i->second && i->second && pn->reachable() && pn->accessible == CGPathNode::ACCESSIBLE)
  2118. best = i;
  2119. }
  2120. if(best->second)
  2121. return best->first;
  2122. throw cannotFulfillGoalException("No neighbour will bring new discoveries!");
  2123. }
  2124. int3 VCAI::explorationNewPoint(int radius, HeroPtr h, std::vector<std::vector<int3> > &tiles)
  2125. {
  2126. TimeCheck tc("looking for new exploration point");
  2127. PNLOG("Looking for an another place for exploration...");
  2128. tiles.resize(radius);
  2129. foreach_tile_pos([&](const int3 &pos)
  2130. {
  2131. if(!cb->isVisible(pos))
  2132. tiles[0].push_back(pos);
  2133. });
  2134. for (int i = 1; i < radius; i++)
  2135. {
  2136. getVisibleNeighbours(tiles[i-1], tiles[i]);
  2137. removeDuplicates(tiles[i]);
  2138. BOOST_FOREACH(const int3 &tile, tiles[i])
  2139. {
  2140. if(cb->getPathInfo(tile)->reachable() && isSafeToVisit(h, tile) && howManyTilesWillBeDiscovered(tile, radius) && !isBlockedBorderGate(tile))
  2141. {
  2142. return tile;
  2143. }
  2144. }
  2145. }
  2146. throw cannotFulfillGoalException("No accessible tile will bring discoveries!");
  2147. }
  2148. TResources VCAI::estimateIncome() const
  2149. {
  2150. TResources ret;
  2151. BOOST_FOREACH(const CGTownInstance *t, cb->getTownsInfo())
  2152. {
  2153. ret[Res::GOLD] += t->dailyIncome();
  2154. //TODO duplikuje newturn
  2155. if(t->hasBuilt(BuildingID::RESOURCE_SILO)) //there is resource silo
  2156. {
  2157. if(t->town->primaryRes == 127) //we'll give wood and ore
  2158. {
  2159. ret[Res::WOOD] ++;
  2160. ret[Res::ORE] ++;
  2161. }
  2162. else
  2163. {
  2164. ret[t->town->primaryRes] ++;
  2165. }
  2166. }
  2167. }
  2168. BOOST_FOREACH(const CGObjectInstance *obj, getFlaggedObjects())
  2169. {
  2170. if(obj->ID == Obj::MINE)
  2171. {
  2172. switch(obj->subID)
  2173. {
  2174. case Res::WOOD:
  2175. case Res::ORE:
  2176. ret[obj->subID] += WOOD_ORE_MINE_PRODUCTION;
  2177. break;
  2178. case Res::GOLD:
  2179. case 7: //abandoned mine -> also gold
  2180. ret[Res::GOLD] += GOLD_MINE_PRODUCTION;
  2181. break;
  2182. default:
  2183. ret[obj->subID] += RESOURCE_MINE_PRODUCTION;
  2184. break;
  2185. }
  2186. }
  2187. }
  2188. return ret;
  2189. }
  2190. bool VCAI::containsSavedRes(const TResources &cost) const
  2191. {
  2192. for (int i = 0; i < GameConstants::RESOURCE_QUANTITY; i++)
  2193. {
  2194. if(saving[i] && cost[i])
  2195. return true;
  2196. }
  2197. return false;
  2198. }
  2199. void VCAI::checkHeroArmy (HeroPtr h)
  2200. {
  2201. auto it = lockedHeroes.find(h);
  2202. if (it != lockedHeroes.end())
  2203. {
  2204. if (it->second.goalType == GATHER_ARMY && it->second.value <= h->getArmyStrength())
  2205. completeGoal(CGoal (GATHER_ARMY).sethero(h));
  2206. }
  2207. }
  2208. void VCAI::recruitHero(const CGTownInstance * t, bool throwing)
  2209. {
  2210. BNLOG("Trying to recruit a hero in %s at %s", t->name % t->visitablePos())
  2211. if(auto availableHero = frontOrNull(cb->getAvailableHeroes(t)))
  2212. cb->recruitHero(t, availableHero);
  2213. else if(throwing)
  2214. throw cannotFulfillGoalException("No available heroes in tavern in " + t->nodeName());
  2215. }
  2216. void VCAI::finish()
  2217. {
  2218. if(makingTurn)
  2219. makingTurn->interrupt();
  2220. }
  2221. void VCAI::requestActionASAP(boost::function<void()> whatToDo)
  2222. {
  2223. // static boost::mutex m;
  2224. // boost::unique_lock<boost::mutex> mylock(m);
  2225. boost::barrier b(2);
  2226. boost::thread newThread([&b,this,whatToDo]()
  2227. {
  2228. setThreadName("VCAI::requestActionASAP::helper");
  2229. SET_GLOBAL_STATE(this);
  2230. boost::shared_lock<boost::shared_mutex> gsLock(cb->getGsMutex());
  2231. b.wait();
  2232. whatToDo();
  2233. });
  2234. b.wait();
  2235. }
  2236. void VCAI::lostHero(HeroPtr h)
  2237. {
  2238. BNLOG("I lost my hero %s. It's best to forget and move on.\n", h.name);
  2239. remove_if_present(lockedHeroes, h);
  2240. BOOST_FOREACH(auto obj, reservedHeroesMap[h])
  2241. {
  2242. remove_if_present(reservedObjs, obj); //unreserve all objects for that hero
  2243. }
  2244. remove_if_present(reservedHeroesMap, h);
  2245. }
  2246. void VCAI::answerQuery(int queryID, int selection)
  2247. {
  2248. BNLOG("I'll answer the query %d giving the choice %d", queryID % selection);
  2249. if(queryID != -1)
  2250. {
  2251. cb->selectionMade(selection, queryID);
  2252. }
  2253. else
  2254. {
  2255. BNLOG("Since the query ID is %d, the answer won't be sent. This is not a real query!", queryID);
  2256. //do nothing
  2257. }
  2258. }
  2259. void VCAI::requestSent(const CPackForServer *pack, int requestID)
  2260. {
  2261. //BNLOG("I have sent request of type %s", typeid(*pack).name());
  2262. if(auto reply = dynamic_cast<const QueryReply*>(pack))
  2263. {
  2264. status.attemptedAnsweringQuery(reply->qid, requestID);
  2265. }
  2266. }
  2267. std::string VCAI::getBattleAIName() const
  2268. {
  2269. if(settings["server"]["neutralAI"].getType() == JsonNode::DATA_STRING)
  2270. return settings["server"]["neutralAI"].String();
  2271. else
  2272. return "StupidAI";
  2273. }
  2274. AIStatus::AIStatus()
  2275. {
  2276. battle = NO_BATTLE;
  2277. havingTurn = false;
  2278. }
  2279. AIStatus::~AIStatus()
  2280. {
  2281. }
  2282. void AIStatus::setBattle(BattleState BS)
  2283. {
  2284. boost::unique_lock<boost::mutex> lock(mx);
  2285. battle = BS;
  2286. cv.notify_all();
  2287. }
  2288. BattleState AIStatus::getBattle()
  2289. {
  2290. boost::unique_lock<boost::mutex> lock(mx);
  2291. return battle;
  2292. }
  2293. void AIStatus::addQuery(int ID, std::string description)
  2294. {
  2295. boost::unique_lock<boost::mutex> lock(mx);
  2296. if(ID == -1)
  2297. {
  2298. BNLOG("The \"query\" has an id %d, it'll be ignored as non-query. Description: %s", ID % description);
  2299. return;
  2300. }
  2301. assert(!vstd::contains(remainingQueries, ID));
  2302. assert(ID >= 0);
  2303. remainingQueries[ID] = description;
  2304. cv.notify_all();
  2305. BNLOG("Adding query %d - %s. Total queries count: %d", ID % description % remainingQueries.size());
  2306. }
  2307. void AIStatus::removeQuery(int ID)
  2308. {
  2309. boost::unique_lock<boost::mutex> lock(mx);
  2310. assert(vstd::contains(remainingQueries, ID));
  2311. std::string description = remainingQueries[ID];
  2312. remainingQueries.erase(ID);
  2313. cv.notify_all();
  2314. BNLOG("Removing query %d - %s. Total queries count: %d", ID % description % remainingQueries.size());
  2315. }
  2316. int AIStatus::getQueriesCount()
  2317. {
  2318. boost::unique_lock<boost::mutex> lock(mx);
  2319. return remainingQueries.size();
  2320. }
  2321. void AIStatus::startedTurn()
  2322. {
  2323. boost::unique_lock<boost::mutex> lock(mx);
  2324. havingTurn = true;
  2325. cv.notify_all();
  2326. }
  2327. void AIStatus::madeTurn()
  2328. {
  2329. boost::unique_lock<boost::mutex> lock(mx);
  2330. havingTurn = false;
  2331. cv.notify_all();
  2332. }
  2333. void AIStatus::waitTillFree()
  2334. {
  2335. boost::unique_lock<boost::mutex> lock(mx);
  2336. while(battle != NO_BATTLE || remainingQueries.size())
  2337. cv.wait(lock);
  2338. }
  2339. bool AIStatus::haveTurn()
  2340. {
  2341. boost::unique_lock<boost::mutex> lock(mx);
  2342. return havingTurn;
  2343. }
  2344. void AIStatus::attemptedAnsweringQuery(int queryID, int answerRequestID)
  2345. {
  2346. boost::unique_lock<boost::mutex> lock(mx);
  2347. assert(vstd::contains(remainingQueries, queryID));
  2348. std::string description = remainingQueries[queryID];
  2349. BNLOG("Attempted answering query %d - %s. Request id=%d. Waiting for results...", queryID % description % answerRequestID);
  2350. requestToQueryID[answerRequestID] = queryID;
  2351. }
  2352. void AIStatus::receivedAnswerConfirmation(int answerRequestID, int result)
  2353. {
  2354. assert(vstd::contains(requestToQueryID, answerRequestID));
  2355. int query = requestToQueryID[answerRequestID];
  2356. assert(vstd::contains(remainingQueries, query));
  2357. requestToQueryID.erase(answerRequestID);
  2358. if(result)
  2359. {
  2360. removeQuery(query);
  2361. }
  2362. else
  2363. {
  2364. tlog1 << "Something went really wrong, failed to answer query " << query << ": " << remainingQueries[query];
  2365. //TODO safely retry
  2366. }
  2367. }
  2368. int3 whereToExplore(HeroPtr h)
  2369. {
  2370. //TODO it's stupid and ineffective, write sth better
  2371. cb->setSelection(*h);
  2372. int radius = h->getSightRadious();
  2373. int3 hpos = h->visitablePos();
  2374. //look for nearby objs -> visit them if they're close enouh
  2375. const int DIST_LIMIT = 3;
  2376. std::vector<const CGObjectInstance *> nearbyVisitableObjs;
  2377. BOOST_FOREACH(const CGObjectInstance *obj, ai->getPossibleDestinations(h))
  2378. {
  2379. int3 op = obj->visitablePos();
  2380. CGPath p;
  2381. cb->getPath2(op, p);
  2382. if(p.nodes.size() && p.endPos() == op && p.nodes.size() <= DIST_LIMIT)
  2383. nearbyVisitableObjs.push_back(obj);
  2384. }
  2385. boost::sort(nearbyVisitableObjs, isCloser);
  2386. if(nearbyVisitableObjs.size())
  2387. return nearbyVisitableObjs.back()->visitablePos();
  2388. try
  2389. {
  2390. return ai->explorationBestNeighbour(hpos, radius, h);
  2391. }
  2392. catch(cannotFulfillGoalException &e)
  2393. {
  2394. std::vector<std::vector<int3> > tiles; //tiles[distance_to_fow]
  2395. try
  2396. {
  2397. return ai->explorationNewPoint(radius, h, tiles);
  2398. }
  2399. catch(cannotFulfillGoalException &e)
  2400. {
  2401. std::map<int, std::vector<int3> > profits;
  2402. {
  2403. TimeCheck tc("Evaluating exploration possibilities");
  2404. tiles[0].clear(); //we can't reach FoW anyway
  2405. BOOST_FOREACH(auto &vt, tiles)
  2406. BOOST_FOREACH(auto &tile, vt)
  2407. profits[howManyTilesWillBeDiscovered(tile, radius)].push_back(tile);
  2408. }
  2409. if(profits.empty())
  2410. return int3 (-1,-1,-1);
  2411. auto bestDest = profits.end();
  2412. bestDest--;
  2413. return bestDest->second.front(); //TODO which is the real best tile?
  2414. }
  2415. }
  2416. }
  2417. TSubgoal CGoal::whatToDoToAchieve()
  2418. {
  2419. BNLOG("Decomposing goal of type %s", name());
  2420. INDENT;
  2421. switch(goalType)
  2422. {
  2423. case WIN:
  2424. {
  2425. const VictoryCondition &vc = cb->getMapHeader()->victoryCondition;
  2426. EVictoryConditionType::EVictoryConditionType cond = vc.condition;
  2427. if(!vc.appliesToAI)
  2428. {
  2429. //TODO deduce victory from human loss condition
  2430. cond = EVictoryConditionType::WINSTANDARD;
  2431. }
  2432. switch(cond)
  2433. {
  2434. case EVictoryConditionType::ARTIFACT:
  2435. return CGoal(GET_ART_TYPE).setaid(vc.objectId);
  2436. case EVictoryConditionType::BEATHERO:
  2437. return CGoal(GET_OBJ).setobjid(vc.obj->id);
  2438. case EVictoryConditionType::BEATMONSTER:
  2439. return CGoal(GET_OBJ).setobjid(vc.obj->id);
  2440. case EVictoryConditionType::BUILDCITY:
  2441. //TODO build castle/capitol
  2442. break;
  2443. case EVictoryConditionType::BUILDGRAIL:
  2444. {
  2445. if(auto h = ai->getHeroWithGrail())
  2446. {
  2447. //hero is in a town that can host Grail
  2448. if(h->visitedTown && !vstd::contains(h->visitedTown->forbiddenBuildings, BuildingID::GRAIL))
  2449. {
  2450. const CGTownInstance *t = h->visitedTown;
  2451. return CGoal(BUILD_STRUCTURE).setbid(BuildingID::GRAIL).settown(t);
  2452. }
  2453. else
  2454. {
  2455. auto towns = cb->getTownsInfo();
  2456. towns.erase(boost::remove_if(towns,
  2457. [](const CGTownInstance *t) -> bool
  2458. {
  2459. return vstd::contains(t->forbiddenBuildings, BuildingID::GRAIL);
  2460. }),
  2461. towns.end());
  2462. boost::sort(towns, isCloser);
  2463. if(towns.size())
  2464. {
  2465. return CGoal(VISIT_TILE).sethero(h).settile(towns.front()->visitablePos());
  2466. }
  2467. }
  2468. }
  2469. double ratio = 0;
  2470. int3 grailPos = cb->getGrailPos(ratio);
  2471. if(ratio > 0.99)
  2472. {
  2473. return CGoal(DIG_AT_TILE).settile(grailPos);
  2474. } //TODO: use FIND_OBJ
  2475. else if(const CGObjectInstance * obj = ai->getUnvisitedObj(objWithID<Obj::OBELISK>)) //there are unvisited Obelisks
  2476. {
  2477. return CGoal(GET_OBJ).setobjid(obj->id);
  2478. }
  2479. else
  2480. return CGoal(EXPLORE);
  2481. }
  2482. break;
  2483. case EVictoryConditionType::CAPTURECITY:
  2484. return CGoal(GET_OBJ).setobjid(vc.obj->id);
  2485. case EVictoryConditionType::GATHERRESOURCE:
  2486. return CGoal(COLLECT_RES).setresID(static_cast<Res::ERes>(vc.objectId)).setvalue(vc.count);
  2487. //TODO mines? piles? marketplace?
  2488. //save?
  2489. break;
  2490. case EVictoryConditionType::GATHERTROOP:
  2491. return CGoal(GATHER_TROOPS).setobjid(vc.objectId).setvalue(vc.count);
  2492. break;
  2493. case EVictoryConditionType::TAKEDWELLINGS:
  2494. break;
  2495. case EVictoryConditionType::TAKEMINES:
  2496. break;
  2497. case EVictoryConditionType::TRANSPORTITEM:
  2498. break;
  2499. case EVictoryConditionType::WINSTANDARD:
  2500. return CGoal(CONQUER);
  2501. default:
  2502. assert(0);
  2503. }
  2504. }
  2505. break;
  2506. case FIND_OBJ:
  2507. {
  2508. const CGObjectInstance * o = NULL;
  2509. if (resID > -1) //specified
  2510. {
  2511. BOOST_FOREACH(const CGObjectInstance *obj, ai->visitableObjs)
  2512. {
  2513. if(obj->ID == objid && obj->subID == resID)
  2514. {
  2515. o = obj;
  2516. break; //TODO: consider multiple objects and choose best
  2517. }
  2518. }
  2519. }
  2520. else
  2521. {
  2522. BOOST_FOREACH(const CGObjectInstance *obj, ai->visitableObjs)
  2523. {
  2524. if(obj->ID == objid)
  2525. {
  2526. o = obj;
  2527. break; //TODO: consider multiple objects and choose best
  2528. }
  2529. }
  2530. }
  2531. if (o && isReachable(o))
  2532. return CGoal(GET_OBJ).setobjid(o->id);
  2533. else
  2534. return CGoal(EXPLORE);
  2535. }
  2536. break;
  2537. case GET_OBJ:
  2538. {
  2539. const CGObjectInstance * obj = cb->getObj(objid);
  2540. if(!obj)
  2541. return CGoal(EXPLORE);
  2542. int3 pos = obj->visitablePos();
  2543. return CGoal(VISIT_TILE).settile(pos);
  2544. }
  2545. break;
  2546. case VISIT_HERO:
  2547. {
  2548. const CGObjectInstance * obj = cb->getObj(objid);
  2549. if(!obj)
  2550. return CGoal(EXPLORE);
  2551. int3 pos = obj->visitablePos();
  2552. if (hero && ai->isAccessibleForHero(pos, hero, true) && isSafeToVisit(hero, pos)) //enemy heroes can get reinforcements
  2553. return CGoal(*this).settile(pos).setisElementar(true);
  2554. }
  2555. break;
  2556. case GET_ART_TYPE:
  2557. {
  2558. TSubgoal alternativeWay = CGoal::lookForArtSmart(aid); //TODO: use
  2559. if(alternativeWay.invalid())
  2560. return CGoal(FIND_OBJ).setobjid(Obj::ARTIFACT).setresID(aid);
  2561. }
  2562. break;
  2563. case CLEAR_WAY_TO:
  2564. {
  2565. assert(tile.x >= 0); //set tile
  2566. if(!cb->isVisible(tile))
  2567. {
  2568. tlog1 << "Clear way should be used with visible tiles!\n";
  2569. return CGoal(EXPLORE);
  2570. }
  2571. HeroPtr h = hero ? hero : ai->primaryHero();
  2572. if(!h)
  2573. return CGoal(RECRUIT_HERO);
  2574. cb->setSelection(*h);
  2575. SectorMap sm;
  2576. bool dropToFile = false;
  2577. if(dropToFile) //for debug purposes
  2578. sm.write("test.txt");
  2579. int3 tileToHit = sm.firstTileToGet(h, tile);
  2580. //if(isSafeToVisit(h, tileToHit))
  2581. if(isBlockedBorderGate(tileToHit))
  2582. { //FIXME: this way we'll not visit gate and activate quest :?
  2583. return CGoal(FIND_OBJ).setobjid(Obj::KEYMASTER).setresID(cb->getTile(tileToHit)->visitableObjects.back()->subID);
  2584. }
  2585. //FIXME: this code shouldn't be necessary
  2586. if(tileToHit == tile)
  2587. {
  2588. tlog1 << boost::format("Very strange, tile to hit is %s and tile is also %s, while hero %s is at %s\n")
  2589. % tileToHit % tile % h->name % h->visitablePos();
  2590. throw cannotFulfillGoalException("Retrieving first tile to hit failed (probably)!");
  2591. }
  2592. auto topObj = backOrNull(cb->getVisitableObjs(tileToHit));
  2593. if(topObj && topObj->ID == Obj::HERO && cb->getPlayerRelations(h->tempOwner, topObj->tempOwner) != PlayerRelations::ENEMIES)
  2594. {
  2595. std::string problem = boost::str(boost::format("%s stands in the way of %s.\n") % topObj->getHoverText() % h->getHoverText());
  2596. throw cannotFulfillGoalException(problem);
  2597. }
  2598. return CGoal(VISIT_TILE).settile(tileToHit).sethero(h); //FIXME:: attempts to visit completely unreachable tile with hero results in stall
  2599. //TODO czy istnieje lepsza droga?
  2600. }
  2601. throw cannotFulfillGoalException("Cannot reach given tile!");
  2602. case EXPLORE:
  2603. {
  2604. auto objs = ai->visitableObjs; //try to use buildings that uncover map
  2605. erase_if(objs, [&](const CGObjectInstance *obj) -> bool
  2606. {
  2607. if (vstd::contains(ai->alreadyVisited, obj))
  2608. return true;
  2609. switch (obj->ID.num)
  2610. {
  2611. case Obj::REDWOOD_OBSERVATORY:
  2612. case Obj::PILLAR_OF_FIRE:
  2613. case Obj::CARTOGRAPHER:
  2614. case Obj::SUBTERRANEAN_GATE: //TODO: check ai->knownSubterraneanGates
  2615. //case Obj::MONOLITH1:
  2616. //case obj::MONOLITH2:
  2617. //case obj::MONOLITH3:
  2618. //case Obj::WHIRLPOOL:
  2619. return false; //do not erase
  2620. break;
  2621. default:
  2622. return true;
  2623. }
  2624. });
  2625. if (objs.size())
  2626. {
  2627. if (hero.get(true))
  2628. {
  2629. BOOST_FOREACH (auto obj, objs)
  2630. {
  2631. auto pos = obj->visitablePos();
  2632. //FIXME: this confition fails if everything but guarded subterranen gate was explored. in this case we should gather army for hero
  2633. if (isSafeToVisit(hero, pos) && ai->isAccessibleForHero(pos, hero))
  2634. return CGoal(VISIT_TILE).settile(pos).sethero(hero);
  2635. }
  2636. }
  2637. else
  2638. {
  2639. BOOST_FOREACH (auto obj, objs)
  2640. {
  2641. auto pos = obj->visitablePos();
  2642. if (ai->isAccessible (pos)) //TODO: check safety?
  2643. return CGoal(VISIT_TILE).settile(pos).sethero(hero);
  2644. }
  2645. }
  2646. }
  2647. if (hero)
  2648. {
  2649. int3 t = whereToExplore(hero);
  2650. if (t.z == -1) //no safe tile to explore - we need to break!
  2651. {
  2652. erase_if (objs, [&](const CGObjectInstance *obj) -> bool
  2653. {
  2654. switch (obj->ID.num)
  2655. {
  2656. case Obj::CARTOGRAPHER:
  2657. case Obj::SUBTERRANEAN_GATE:
  2658. //case Obj::MONOLITH1:
  2659. //case obj::MONOLITH2:
  2660. //case obj::MONOLITH3:
  2661. //case Obj::WHIRLPOOL:
  2662. return false; //do not erase
  2663. break;
  2664. default:
  2665. return true;
  2666. }
  2667. });
  2668. if (objs.size())
  2669. {
  2670. return CGoal (VISIT_TILE).settile(objs.front()->visitablePos()).sethero(hero).setisAbstract(true);
  2671. }
  2672. else
  2673. throw cannotFulfillGoalException("Cannot explore - no possible ways found!");
  2674. }
  2675. return CGoal(VISIT_TILE).settile(t).sethero(hero);
  2676. }
  2677. auto hs = cb->getHeroesInfo();
  2678. int howManyHeroes = hs.size();
  2679. erase(hs, [](const CGHeroInstance *h)
  2680. {
  2681. return contains(ai->lockedHeroes, h);
  2682. });
  2683. if(hs.empty()) //all heroes are busy. buy new one
  2684. {
  2685. if (howManyHeroes < 3 && ai->findTownWithTavern()) //we may want to recruit second hero. TODO: make it smart finally
  2686. return CGoal(RECRUIT_HERO);
  2687. else //find mobile hero with weakest army
  2688. {
  2689. hs = cb->getHeroesInfo();
  2690. erase_if(hs, [](const CGHeroInstance *h)
  2691. {
  2692. return !h->movement; //only hero with movement are of interest for us
  2693. });
  2694. if (hs.empty())
  2695. {
  2696. if (howManyHeroes < GameConstants::MAX_HEROES_PER_PLAYER)
  2697. return CGoal(RECRUIT_HERO);
  2698. else
  2699. throw cannotFulfillGoalException("No heroes with remaining MPs for exploring!\n");
  2700. }
  2701. boost::sort(hs, compareMovement); //closer to what?
  2702. }
  2703. }
  2704. const CGHeroInstance *h = hs.front();
  2705. return (*this).sethero(h).setisAbstract(true);
  2706. }
  2707. I_AM_ELEMENTAR;
  2708. case RECRUIT_HERO:
  2709. {
  2710. const CGTownInstance *t = ai->findTownWithTavern();
  2711. if(!t)
  2712. return CGoal(BUILD_STRUCTURE).setbid(BuildingID::TAVERN);
  2713. if(cb->getResourceAmount(Res::GOLD) < HERO_GOLD_COST)
  2714. return CGoal(COLLECT_RES).setresID(Res::GOLD).setvalue(HERO_GOLD_COST);
  2715. I_AM_ELEMENTAR;
  2716. }
  2717. break;
  2718. case VISIT_TILE:
  2719. {
  2720. if(!cb->isVisible(tile))
  2721. return CGoal(EXPLORE);
  2722. if(hero && !ai->isAccessibleForHero(tile, hero))
  2723. hero = NULL;
  2724. if(!hero)
  2725. {
  2726. if(cb->getHeroesInfo().empty())
  2727. {
  2728. return CGoal(RECRUIT_HERO);
  2729. }
  2730. BOOST_FOREACH(const CGHeroInstance *h, cb->getHeroesInfo())
  2731. {
  2732. if(ai->isAccessibleForHero(tile, h))
  2733. {
  2734. hero = h;
  2735. break;
  2736. }
  2737. }
  2738. }
  2739. if(hero)
  2740. {
  2741. if(isSafeToVisit(hero, tile))
  2742. return CGoal(*this).setisElementar(true);
  2743. else
  2744. {
  2745. return CGoal(GATHER_ARMY).sethero(hero).setvalue(evaluateDanger(tile, *hero) * SAFE_ATTACK_CONSTANT); //TODO: should it be abstract?
  2746. }
  2747. }
  2748. else //inaccessible for all heroes
  2749. {
  2750. return CGoal(CLEAR_WAY_TO).settile(tile);
  2751. }
  2752. }
  2753. break;
  2754. case DIG_AT_TILE:
  2755. {
  2756. const CGObjectInstance *firstObj = frontOrNull(cb->getVisitableObjs(tile));
  2757. if(firstObj && firstObj->ID == Obj::HERO && firstObj->tempOwner == ai->playerID) //we have hero at dest
  2758. {
  2759. const CGHeroInstance *h = dynamic_cast<const CGHeroInstance *>(firstObj);
  2760. return CGoal(*this).sethero(h).setisElementar(true);
  2761. }
  2762. return CGoal(VISIT_TILE).settile(tile);
  2763. }
  2764. break;
  2765. case BUILD_STRUCTURE:
  2766. //TODO check res
  2767. //look for town
  2768. //prerequisites?
  2769. I_AM_ELEMENTAR;
  2770. case COLLECT_RES:
  2771. {
  2772. std::vector<const IMarket*> markets;
  2773. std::vector<const CGObjectInstance*> visObjs;
  2774. ai->retreiveVisitableObjs(visObjs, true);
  2775. BOOST_FOREACH(const CGObjectInstance *obj, visObjs)
  2776. {
  2777. if(const IMarket *m = IMarket::castFrom(obj, false))
  2778. {
  2779. if(obj->ID == Obj::TOWN && obj->tempOwner == ai->playerID && m->allowsTrade(EMarketMode::RESOURCE_RESOURCE))
  2780. markets.push_back(m);
  2781. else if(obj->ID == Obj::TRADING_POST) //TODO a moze po prostu test na pozwalanie handlu?
  2782. markets.push_back(m);
  2783. }
  2784. }
  2785. boost::sort(markets, [](const IMarket *m1, const IMarket *m2) -> bool
  2786. {
  2787. return m1->getMarketEfficiency() < m2->getMarketEfficiency();
  2788. });
  2789. markets.erase(boost::remove_if(markets, [](const IMarket *market) -> bool
  2790. {
  2791. return !(market->o->ID == Obj::TOWN && market->o->tempOwner == ai->playerID)
  2792. && !ai->isAccessible(market->o->visitablePos());
  2793. }),markets.end());
  2794. if(!markets.size())
  2795. {
  2796. BOOST_FOREACH(const CGTownInstance *t, cb->getTownsInfo())
  2797. {
  2798. if(cb->canBuildStructure(t, BuildingID::MARKETPLACE) == EBuildingState::ALLOWED)
  2799. return CGoal(BUILD_STRUCTURE).settown(t).setbid(BuildingID::MARKETPLACE);
  2800. }
  2801. }
  2802. else
  2803. {
  2804. const IMarket *m = markets.back();
  2805. //attempt trade at back (best prices)
  2806. int howManyCanWeBuy = 0;
  2807. for(Res::ERes i = Res::WOOD; i <= Res::GOLD; vstd::advance(i, 1))
  2808. {
  2809. if(i == resID) continue;
  2810. int toGive = -1, toReceive = -1;
  2811. m->getOffer(i, resID, toGive, toReceive, EMarketMode::RESOURCE_RESOURCE);
  2812. assert(toGive > 0 && toReceive > 0);
  2813. howManyCanWeBuy += toReceive * (cb->getResourceAmount(i) / toGive);
  2814. }
  2815. if(howManyCanWeBuy + cb->getResourceAmount(static_cast<Res::ERes>(resID)) >= value)
  2816. {
  2817. auto backObj = backOrNull(cb->getVisitableObjs(m->o->visitablePos())); //it'll be a hero if we have one there; otherwise marketplace
  2818. assert(backObj);
  2819. if(backObj->tempOwner != ai->playerID)
  2820. return CGoal(GET_OBJ).setobjid(m->o->id);
  2821. return setobjid(m->o->id).setisElementar(true);
  2822. }
  2823. }
  2824. }
  2825. return CGoal(INVALID);
  2826. case GATHER_TROOPS:
  2827. {
  2828. std::vector<const CGDwelling *> dwellings;
  2829. BOOST_FOREACH(const CGTownInstance *t, cb->getTownsInfo())
  2830. {
  2831. auto creature = VLC->creh->creatures[objid];
  2832. if (t->subID == creature->faction) //TODO: how to force AI to build unupgraded creatures? :O
  2833. {
  2834. auto creatures = t->town->creatures[creature->level];
  2835. int upgradeNumber = std::find(creatures.begin(), creatures.end(), creature->idNumber) - creatures.begin();
  2836. int bid = BuildingID::DWELL_FIRST + creature->level + upgradeNumber * GameConstants::CREATURES_PER_TOWN;
  2837. if (t->hasBuilt(bid)) //this assumes only creatures with dwellings are assigned to faction
  2838. {
  2839. dwellings.push_back(t);
  2840. }
  2841. else
  2842. {
  2843. return CGoal (BUILD_STRUCTURE).settown(t).setbid(bid);
  2844. }
  2845. }
  2846. }
  2847. BOOST_FOREACH (auto obj, ai->visitableObjs)
  2848. {
  2849. if (obj->ID != Obj::CREATURE_GENERATOR1) //TODO: what with other creature generators?
  2850. continue;
  2851. auto d = dynamic_cast<const CGDwelling *>(obj);
  2852. BOOST_FOREACH (auto creature, d->creatures)
  2853. {
  2854. if (creature.first) //there are more than 0 creatures avaliabe
  2855. {
  2856. BOOST_FOREACH (auto type, creature.second)
  2857. {
  2858. if (type == objid)
  2859. dwellings.push_back(d);
  2860. }
  2861. }
  2862. }
  2863. }
  2864. if (dwellings.size())
  2865. {
  2866. boost::sort(dwellings, isCloser);
  2867. return CGoal(GET_OBJ).setobjid (dwellings.front()->id); //TODO: consider needed resources
  2868. }
  2869. else
  2870. return CGoal(EXPLORE);
  2871. //TODO: exchange troops between heroes
  2872. }
  2873. break;
  2874. case CONQUER: //TODO: put it into a function?
  2875. {
  2876. auto hs = cb->getHeroesInfo();
  2877. int howManyHeroes = hs.size();
  2878. erase(hs, [](const CGHeroInstance *h)
  2879. {
  2880. return contains(ai->lockedHeroes, h);
  2881. });
  2882. if(hs.empty()) //all heroes are busy. buy new one
  2883. {
  2884. if (howManyHeroes < 3 && ai->findTownWithTavern()) //we may want to recruit second hero. TODO: make it smart finally
  2885. return CGoal(RECRUIT_HERO);
  2886. else //find mobile hero with weakest army
  2887. {
  2888. hs = cb->getHeroesInfo();
  2889. erase_if(hs, [](const CGHeroInstance *h)
  2890. {
  2891. return !h->movement; //only hero with movement are of interest for us
  2892. });
  2893. if (hs.empty())
  2894. {
  2895. if (howManyHeroes < GameConstants::MAX_HEROES_PER_PLAYER)
  2896. return CGoal(RECRUIT_HERO);
  2897. else
  2898. throw cannotFulfillGoalException("No heroes with remaining MPs for exploring!\n");
  2899. }
  2900. boost::sort(hs, compareHeroStrength);
  2901. }
  2902. }
  2903. const CGHeroInstance *h = hs.back();
  2904. cb->setSelection(h);
  2905. std::vector<const CGObjectInstance *> objs; //here we'll gather enemy towns and heroes
  2906. ai->retreiveVisitableObjs(objs);
  2907. erase_if(objs, [&](const CGObjectInstance *obj)
  2908. {
  2909. return (obj->ID != Obj::TOWN && obj->ID != Obj::HERO) //not town/hero
  2910. || cb->getPlayerRelations(ai->playerID, obj->tempOwner) != PlayerRelations::ENEMIES;
  2911. });
  2912. if (objs.empty()) //experiment - try to conquer dwellings and mines, it should pay off
  2913. {
  2914. ai->retreiveVisitableObjs(objs);
  2915. erase_if(objs, [&](const CGObjectInstance *obj)
  2916. {
  2917. return (obj->ID != Obj::CREATURE_GENERATOR1 && obj->ID != Obj::MINE) //not dwelling or mine
  2918. || cb->getPlayerRelations(ai->playerID, obj->tempOwner) != PlayerRelations::ENEMIES;
  2919. });
  2920. }
  2921. if(objs.empty())
  2922. return CGoal(EXPLORE); //we need to find an enemy
  2923. erase_if(objs, [&](const CGObjectInstance *obj)
  2924. {
  2925. return !isSafeToVisit(h, obj->visitablePos()) || vstd::contains (ai->reservedObjs, obj); //no need to capture same object twice
  2926. });
  2927. if(objs.empty())
  2928. I_AM_ELEMENTAR;
  2929. boost::sort(objs, isCloser);
  2930. BOOST_FOREACH(const CGObjectInstance *obj, objs)
  2931. {
  2932. if (ai->isAccessibleForHero(obj->visitablePos(), h))
  2933. {
  2934. ai->reserveObject(h, obj); //no one else will capture same object until we fail
  2935. if (obj->ID == Obj::HERO)
  2936. return CGoal(VISIT_HERO).sethero(h).setobjid(obj->id).setisAbstract(true); //track enemy hero
  2937. else
  2938. return CGoal(VISIT_TILE).sethero(h).settile(obj->visitablePos());
  2939. }
  2940. }
  2941. return CGoal(EXPLORE); //enemy is inaccessible
  2942. }
  2943. break;
  2944. case BUILD:
  2945. I_AM_ELEMENTAR;
  2946. case INVALID:
  2947. I_AM_ELEMENTAR;
  2948. case GATHER_ARMY:
  2949. {
  2950. //TODO: find hero if none set
  2951. assert(hero);
  2952. cb->setSelection(*hero);
  2953. auto compareReinforcements = [this](const CGTownInstance *lhs, const CGTownInstance *rhs) -> bool
  2954. {
  2955. return howManyReinforcementsCanGet(hero, lhs) < howManyReinforcementsCanGet(hero, rhs);
  2956. };
  2957. std::vector<const CGTownInstance *> townsReachable;
  2958. BOOST_FOREACH(const CGTownInstance *t, cb->getTownsInfo())
  2959. {
  2960. if(!t->visitingHero && howManyReinforcementsCanGet(hero,t))
  2961. {
  2962. if(isReachable(t) && !vstd::contains (ai->townVisitsThisWeek[hero], t))
  2963. townsReachable.push_back(t);
  2964. }
  2965. }
  2966. if(townsReachable.size()) //try towns first
  2967. {
  2968. boost::sort(townsReachable, compareReinforcements);
  2969. return CGoal(VISIT_TILE).sethero(hero).settile(townsReachable.back()->visitablePos());
  2970. }
  2971. else
  2972. {
  2973. if (hero == ai->primaryHero()) //we can get army from other heroes
  2974. {
  2975. auto otherHeroes = cb->getHeroesInfo();
  2976. auto heroDummy = hero;
  2977. erase_if(otherHeroes, [heroDummy](const CGHeroInstance * h)
  2978. {
  2979. return (h == heroDummy.h || !ai->isAccessibleForHero(heroDummy->visitablePos(), h, true) || !ai->canGetArmy(heroDummy.h, h));
  2980. });
  2981. if (otherHeroes.size())
  2982. {
  2983. boost::sort(otherHeroes, compareArmyStrength); //TODO: check if hero has at least one stack more powerful than ours? not likely to fail
  2984. int primaryPath, secondaryPath;
  2985. auto h = otherHeroes.back();
  2986. cb->setSelection(hero.h);
  2987. primaryPath = cb->getPathInfo(h->visitablePos())->turns;
  2988. cb->setSelection(h);
  2989. secondaryPath = cb->getPathInfo(hero->visitablePos())->turns;
  2990. if (primaryPath < secondaryPath)
  2991. return CGoal(VISIT_HERO).setisAbstract(true).setobjid(h->id).sethero(hero); //go to the other hero if we are faster
  2992. else
  2993. return CGoal(VISIT_HERO).setisAbstract(true).setobjid(hero->id).sethero(h); //let the other hero come to us
  2994. }
  2995. }
  2996. std::vector<const CGObjectInstance *> objs; //here we'll gather all dwellings
  2997. ai->retreiveVisitableObjs(objs);
  2998. erase_if(objs, [&](const CGObjectInstance *obj)
  2999. {
  3000. return (obj->ID != Obj::CREATURE_GENERATOR1);
  3001. });
  3002. if(objs.empty()) //no possible objects, we did eveyrthing already
  3003. return CGoal(EXPLORE).sethero(hero);
  3004. //TODO: check if we can recruit any creatures there, evaluate army
  3005. else
  3006. {
  3007. boost::sort(objs, isCloser);
  3008. HeroPtr h = NULL;
  3009. BOOST_FOREACH(const CGObjectInstance *obj, objs)
  3010. { //find safe dwelling
  3011. auto pos = obj->visitablePos();
  3012. if (shouldVisit (hero, obj)) //creatures fit in army
  3013. h = hero;
  3014. else
  3015. {
  3016. BOOST_FOREACH(auto ourHero, cb->getHeroesInfo()) //make use of multiple heroes
  3017. {
  3018. if (shouldVisit(ourHero, obj))
  3019. h = ourHero;
  3020. }
  3021. }
  3022. if (h && isSafeToVisit(h, pos) && ai->isAccessibleForHero(pos, h))
  3023. return CGoal(VISIT_TILE).sethero(h).settile(pos);
  3024. }
  3025. }
  3026. }
  3027. return CGoal(EXPLORE).sethero(hero); //find dwelling. use current hero to prevent him from doing nothing.
  3028. }
  3029. break;
  3030. default:
  3031. assert(0);
  3032. }
  3033. return CGoal(EXPLORE);
  3034. }
  3035. TSubgoal CGoal::goVisitOrLookFor(const CGObjectInstance *obj)
  3036. {
  3037. if(obj)
  3038. return CGoal(GET_OBJ).setobjid(obj->id);
  3039. else
  3040. return CGoal(EXPLORE);
  3041. }
  3042. TSubgoal CGoal::lookForArtSmart(int aid)
  3043. {
  3044. return CGoal(INVALID);
  3045. }
  3046. bool CGoal::invalid() const
  3047. {
  3048. return goalType == INVALID;
  3049. }
  3050. bool isBlockedBorderGate(int3 tileToHit)
  3051. {
  3052. return cb->getTile(tileToHit)->topVisitableId() == Obj::BORDER_GATE
  3053. && cb->getPathInfo(tileToHit)->accessible != CGPathNode::ACCESSIBLE;
  3054. }
  3055. SectorMap::SectorMap()
  3056. {
  3057. // int3 sizes = cb->getMapSize();
  3058. // sector.resize(sizes.x);
  3059. // BOOST_FOREACH(auto &i, sector)
  3060. // i.resize(sizes.y);
  3061. //
  3062. // BOOST_FOREACH(auto &i, sector)
  3063. // BOOST_FOREACH(auto &j, i)
  3064. // j.resize(sizes.z, 0);
  3065. update();
  3066. }
  3067. bool markIfBlocked(ui8 &sec, crint3 pos, const TerrainTile *t)
  3068. {
  3069. if(t->blocked && !t->visitable)
  3070. {
  3071. sec = NOT_AVAILABLE;
  3072. return true;
  3073. }
  3074. return false;
  3075. }
  3076. bool markIfBlocked(ui8 &sec, crint3 pos)
  3077. {
  3078. return markIfBlocked(sec, pos, cb->getTile(pos));
  3079. }
  3080. void SectorMap::update()
  3081. {
  3082. clear();
  3083. int curSector = 3; //0 is invisible, 1 is not explored
  3084. foreach_tile_pos([&](crint3 pos)
  3085. {
  3086. if(retreiveTile(pos) == NOT_CHECKED)
  3087. {
  3088. if(!markIfBlocked(retreiveTile(pos), pos))
  3089. exploreNewSector(pos, curSector++);
  3090. }
  3091. });
  3092. valid = true;
  3093. }
  3094. void SectorMap::clear()
  3095. {
  3096. sector = cb->getVisibilityMap();
  3097. valid = false;
  3098. }
  3099. bool canBeEmbarkmentPoint(const TerrainTile *t)
  3100. {
  3101. //tile must be free of with unoccupied boat
  3102. return !t->blocked
  3103. || (t->visitableObjects.size() == 1 && t->topVisitableId() == Obj::BOAT);
  3104. }
  3105. void SectorMap::exploreNewSector(crint3 pos, int num)
  3106. {
  3107. Sector &s = infoOnSectors[num];
  3108. s.id = num;
  3109. s.water = cb->getTile(pos)->isWater();
  3110. std::queue<int3> toVisit;
  3111. toVisit.push(pos);
  3112. while(toVisit.size())
  3113. {
  3114. int3 curPos = toVisit.front();
  3115. toVisit.pop();
  3116. ui8 &sec = retreiveTile(curPos);
  3117. if(sec == NOT_CHECKED)
  3118. {
  3119. const TerrainTile *t = cb->getTile(curPos);
  3120. if(!markIfBlocked(sec, curPos, t))
  3121. {
  3122. if(t->isWater() == s.water) //sector is only-water or only-land
  3123. {
  3124. sec = num;
  3125. s.tiles.push_back(curPos);
  3126. foreach_neighbour(curPos, [&](crint3 neighPos)
  3127. {
  3128. if(retreiveTile(neighPos) == NOT_CHECKED)
  3129. {
  3130. toVisit.push(neighPos);
  3131. //parent[neighPos] = curPos;
  3132. }
  3133. const TerrainTile *nt = cb->getTile(neighPos, false);
  3134. if(nt && nt->isWater() != s.water && canBeEmbarkmentPoint(nt))
  3135. {
  3136. s.embarkmentPoints.push_back(neighPos);
  3137. }
  3138. });
  3139. if(t->visitable && vstd::contains(ai->knownSubterraneanGates, t->visitableObjects.front()))
  3140. toVisit.push(ai->knownSubterraneanGates[t->visitableObjects.front()]->visitablePos());
  3141. }
  3142. }
  3143. }
  3144. }
  3145. removeDuplicates(s.embarkmentPoints);
  3146. }
  3147. void SectorMap::write(crstring fname)
  3148. {
  3149. std::ofstream out(fname);
  3150. for(int k = 0; k < cb->getMapSize().z; k++)
  3151. {
  3152. for(int j = 0; j < cb->getMapSize().y; j++)
  3153. {
  3154. for(int i = 0; i < cb->getMapSize().x; i++)
  3155. {
  3156. out << (int)sector[i][j][k] << '\t';
  3157. }
  3158. out << std::endl;
  3159. }
  3160. out << std::endl;
  3161. }
  3162. }
  3163. bool isWeeklyRevisitable (const CGObjectInstance * obj)
  3164. { //TODO: allow polling of remaining creatures in dwelling
  3165. if (dynamic_cast<const CGVisitableOPW *>(obj) || //ensures future compatibility, unlike IDs
  3166. dynamic_cast<const CGDwelling *>(obj) ||
  3167. dynamic_cast<const CBank *>(obj)) //banks tend to respawn often in mods
  3168. return true;
  3169. switch (obj->ID)
  3170. {
  3171. case Obj::STABLES:
  3172. case Obj::MAGIC_WELL:
  3173. case Obj::HILL_FORT:
  3174. return true;
  3175. break;
  3176. case Obj::BORDER_GATE:
  3177. case Obj::BORDERGUARD:
  3178. return (dynamic_cast <const CGKeys *>(obj))->wasMyColorVisited (ai->playerID); //FIXME: they could be revisited sooner than in a week
  3179. break;
  3180. }
  3181. return false;
  3182. }
  3183. bool shouldVisit(HeroPtr h, const CGObjectInstance * obj)
  3184. {
  3185. switch (obj->ID)
  3186. {
  3187. case Obj::BORDERGUARD:
  3188. case Obj::BORDER_GATE:
  3189. {
  3190. BOOST_FOREACH (auto q, ai->myCb->getMyQuests())
  3191. {
  3192. if (q.obj == obj)
  3193. {
  3194. return false; // do not visit guards or gates when wandering
  3195. }
  3196. }
  3197. return true; //we don't have this quest yet
  3198. break;
  3199. }
  3200. case Obj::SEER_HUT:
  3201. case Obj::QUEST_GUARD:
  3202. {
  3203. BOOST_FOREACH (auto q, ai->myCb->getMyQuests())
  3204. {
  3205. if (q.obj == obj)
  3206. {
  3207. if (q.quest->checkQuest(*h))
  3208. return true; //we completed the quest
  3209. else
  3210. return false; //we can't complete this quest
  3211. }
  3212. }
  3213. return true; //we don't have this quest yet
  3214. break;
  3215. }
  3216. case Obj::CREATURE_GENERATOR1:
  3217. {
  3218. if (obj->tempOwner != h->tempOwner)
  3219. return true; //flag just in case
  3220. bool canRecruitCreatures = false;
  3221. const CGDwelling * d = dynamic_cast<const CGDwelling *>(obj);
  3222. BOOST_FOREACH(auto level, d->creatures)
  3223. {
  3224. BOOST_FOREACH(auto c, level.second)
  3225. {
  3226. if (h->getSlotFor(c) != -1)
  3227. canRecruitCreatures = true;
  3228. }
  3229. }
  3230. return canRecruitCreatures;
  3231. break;
  3232. }
  3233. case Obj::HILL_FORT:
  3234. {
  3235. BOOST_FOREACH (auto slot, h->Slots())
  3236. {
  3237. if (slot.second->type->upgrades.size())
  3238. return true; //TODO: check price?
  3239. }
  3240. return false;
  3241. break;
  3242. }
  3243. case Obj::MONOLITH1:
  3244. case Obj::MONOLITH2:
  3245. case Obj::MONOLITH3:
  3246. case Obj::WHIRLPOOL:
  3247. //TODO: mechanism for handling monoliths
  3248. return false;
  3249. break;
  3250. case Obj::SCHOOL_OF_MAGIC:
  3251. case Obj::SCHOOL_OF_WAR:
  3252. {
  3253. TResources myRes = ai->myCb->getResourceAmount();
  3254. if (myRes[Res::GOLD] - GOLD_RESERVE < 1000)
  3255. return false;
  3256. }
  3257. break;
  3258. case Obj::LIBRARY_OF_ENLIGHTENMENT:
  3259. if (h->level < 12)
  3260. return false;
  3261. break;
  3262. case Obj::TREE_OF_KNOWLEDGE:
  3263. {
  3264. TResources myRes = ai->myCb->getResourceAmount();
  3265. if (myRes[Res::GOLD] - GOLD_RESERVE < 2000 || myRes[Res::GEMS] < 10)
  3266. return false;
  3267. }
  3268. break;
  3269. case Obj::MAGIC_WELL:
  3270. return h->mana < h->manaLimit();
  3271. break;
  3272. case Obj::PRISON:
  3273. return ai->myCb->getHeroesInfo().size() < GameConstants::MAX_HEROES_PER_PLAYER;
  3274. break;
  3275. case Obj::BOAT:
  3276. return false;
  3277. //Boats are handled by pathfinder
  3278. }
  3279. if (obj->wasVisited(*h)) //it must pointer to hero instance, heroPtr calls function wasVisited(ui8 player);
  3280. return false;
  3281. return true;
  3282. }
  3283. int3 SectorMap::firstTileToGet(HeroPtr h, crint3 dst)
  3284. {
  3285. int sourceSector = retreiveTile(h->visitablePos()),
  3286. destinationSector = retreiveTile(dst);
  3287. if(sourceSector != destinationSector)
  3288. {
  3289. const Sector *src = &infoOnSectors[sourceSector],
  3290. *dst = &infoOnSectors[destinationSector];
  3291. std::map<const Sector*, const Sector*> preds;
  3292. std::queue<const Sector *> sq;
  3293. sq.push(src);
  3294. while(!sq.empty())
  3295. {
  3296. const Sector *s = sq.front();
  3297. sq.pop();
  3298. BOOST_FOREACH(int3 ep, s->embarkmentPoints)
  3299. {
  3300. Sector *neigh = &infoOnSectors[retreiveTile(ep)];
  3301. //preds[s].push_back(neigh);
  3302. if(!preds[neigh])
  3303. {
  3304. preds[neigh] = s;
  3305. sq.push(neigh);
  3306. }
  3307. }
  3308. //TODO consider other types of connections between sectors?
  3309. }
  3310. if(!preds[dst])
  3311. {
  3312. write("test.txt");
  3313. ai->completeGoal (CGoal(EXPLORE).sethero(h)); //if we can't find the way, seemingly all tiles were explored
  3314. //TODO: more organized way?
  3315. throw cannotFulfillGoalException(str(format("Cannot find connection between sectors %d and %d") % src->id % dst->id));
  3316. }
  3317. std::vector<const Sector*> toTraverse;
  3318. toTraverse.push_back(dst);
  3319. while(toTraverse.back() != src)
  3320. {
  3321. toTraverse.push_back(preds[toTraverse.back()]);
  3322. }
  3323. if(preds[dst])
  3324. {
  3325. const Sector *sectorToReach = toTraverse.at(toTraverse.size() - 2);
  3326. if(!src->water && sectorToReach->water) //embark
  3327. {
  3328. //embark on ship -> look for an EP with a boat
  3329. auto firstEP = boost::find_if(src->embarkmentPoints, [=](crint3 pos) -> bool
  3330. {
  3331. const TerrainTile *t = cb->getTile(pos);
  3332. return t && t->visitableObjects.size() == 1 && t->topVisitableId() == Obj::BOAT
  3333. && retreiveTile(pos) == sectorToReach->id;
  3334. });
  3335. if(firstEP != src->embarkmentPoints.end())
  3336. {
  3337. return *firstEP;
  3338. }
  3339. else
  3340. {
  3341. //we need to find a shipyard with an access to the desired sector's EP
  3342. //TODO what about Summon Boat spell?
  3343. std::vector<const IShipyard *> shipyards;
  3344. BOOST_FOREACH(const CGTownInstance *t, cb->getTownsInfo())
  3345. {
  3346. if(t->hasBuilt(BuildingID::SHIPYARD))
  3347. shipyards.push_back(t);
  3348. }
  3349. std::vector<const CGObjectInstance*> visObjs;
  3350. ai->retreiveVisitableObjs(visObjs, true);
  3351. BOOST_FOREACH(const CGObjectInstance *obj, visObjs)
  3352. {
  3353. if(obj->ID != Obj::TOWN) //towns were handled in the previous loop
  3354. if(const IShipyard *shipyard = IShipyard::castFrom(obj))
  3355. shipyards.push_back(shipyard);
  3356. }
  3357. shipyards.erase(boost::remove_if(shipyards, [=](const IShipyard *shipyard) -> bool
  3358. {
  3359. return shipyard->state() != 0 || retreiveTile(shipyard->bestLocation()) != sectorToReach->id;
  3360. }),shipyards.end());
  3361. if(!shipyards.size())
  3362. {
  3363. //TODO consider possibility of building shipyard in a town
  3364. throw cannotFulfillGoalException("There is no known shipyard!");
  3365. }
  3366. //we have only shipyards that possibly can build ships onto the appropriate EP
  3367. auto ownedGoodShipyard = boost::find_if(shipyards, [](const IShipyard *s) -> bool
  3368. {
  3369. return s->o->tempOwner == ai->playerID;
  3370. });
  3371. if(ownedGoodShipyard != shipyards.end())
  3372. {
  3373. const IShipyard *s = *ownedGoodShipyard;
  3374. TResources shipCost;
  3375. s->getBoatCost(shipCost);
  3376. if(cb->getResourceAmount().canAfford(shipCost))
  3377. {
  3378. int3 ret = s->bestLocation();
  3379. cb->buildBoat(s);
  3380. return ret;
  3381. }
  3382. else
  3383. {
  3384. //TODO gather res
  3385. throw cannotFulfillGoalException("Not enough resources to build a boat");
  3386. }
  3387. }
  3388. else
  3389. {
  3390. //TODO pick best shipyard to take over
  3391. return shipyards.front()->o->visitablePos();
  3392. }
  3393. }
  3394. }
  3395. else if(src->water && !sectorToReach->water)
  3396. {
  3397. //TODO
  3398. //disembark
  3399. }
  3400. else
  3401. {
  3402. //TODO
  3403. //transition between two land/water sectors. Monolith? Whirlpool? ...
  3404. throw cannotFulfillGoalException("Land-land and water-water inter-sector transitions are not implemented!");
  3405. }
  3406. }
  3407. else
  3408. {
  3409. throw cannotFulfillGoalException("Inter-sector route detection failed: not connected sectors?");
  3410. }
  3411. }
  3412. else
  3413. {
  3414. makeParentBFS(h->visitablePos());
  3415. int3 curtile = dst;
  3416. while(curtile != h->visitablePos())
  3417. {
  3418. if(cb->getPathInfo(curtile)->reachable())
  3419. {
  3420. return curtile;
  3421. }
  3422. else
  3423. {
  3424. auto i = parent.find(curtile);
  3425. if(i != parent.end())
  3426. {
  3427. assert(curtile != i->second);
  3428. curtile = i->second;
  3429. }
  3430. else
  3431. throw cannotFulfillGoalException("Unreachable tile in sector? Should not happen!");
  3432. }
  3433. }
  3434. }
  3435. throw cannotFulfillGoalException("Impossible happened.");
  3436. }
  3437. void SectorMap::makeParentBFS(crint3 source)
  3438. {
  3439. parent.clear();
  3440. int mySector = retreiveTile(source);
  3441. std::queue<int3> toVisit;
  3442. toVisit.push(source);
  3443. while(toVisit.size())
  3444. {
  3445. int3 curPos = toVisit.front();
  3446. toVisit.pop();
  3447. ui8 &sec = retreiveTile(curPos);
  3448. assert(sec == mySector); //consider only tiles from the same sector
  3449. //const TerrainTile *t = cb->getTile(curPos);
  3450. foreach_neighbour(curPos, [&](crint3 neighPos)
  3451. {
  3452. if(retreiveTile(neighPos) == mySector && !vstd::contains(parent, neighPos))
  3453. {
  3454. toVisit.push(neighPos);
  3455. parent[neighPos] = curPos;
  3456. }
  3457. });
  3458. }
  3459. }
  3460. unsigned char & SectorMap::retreiveTile(crint3 pos)
  3461. {
  3462. return retreiveTileN(sector, pos);
  3463. }
  3464. const CGObjectInstance * ObjectIdRef::operator->() const
  3465. {
  3466. return cb->getObj(id, false);
  3467. }
  3468. ObjectIdRef::operator const CGObjectInstance*() const
  3469. {
  3470. return cb->getObj(id, false);
  3471. }
  3472. ObjectIdRef::ObjectIdRef(int _id) : id(_id)
  3473. {
  3474. }
  3475. ObjectIdRef::ObjectIdRef(const CGObjectInstance *obj) : id(obj->id)
  3476. {
  3477. }
  3478. bool ObjectIdRef::operator<(const ObjectIdRef &rhs) const
  3479. {
  3480. return id < rhs.id;
  3481. }
  3482. HeroPtr::HeroPtr(const CGHeroInstance *H)
  3483. {
  3484. if(!H)
  3485. {
  3486. //init from nullptr should equal to default init
  3487. *this = HeroPtr();
  3488. return;
  3489. }
  3490. h = H;
  3491. name = h->name;
  3492. hid = H->id;
  3493. // infosCount[ai->playerID][hid]++;
  3494. }
  3495. HeroPtr::HeroPtr()
  3496. {
  3497. h = nullptr;
  3498. hid = -1;
  3499. }
  3500. HeroPtr::~HeroPtr()
  3501. {
  3502. // if(hid >= 0)
  3503. // infosCount[ai->playerID][hid]--;
  3504. }
  3505. bool HeroPtr::operator<(const HeroPtr &rhs) const
  3506. {
  3507. return hid < rhs.hid;
  3508. }
  3509. const CGHeroInstance * HeroPtr::get(bool doWeExpectNull /*= false*/) const
  3510. {
  3511. //TODO? check if these all assertions every time we get info about hero affect efficiency
  3512. //
  3513. //behave terribly when attempting unauthorized access to hero that is not ours (or was lost)
  3514. assert(doWeExpectNull || h);
  3515. if(h)
  3516. {
  3517. auto obj = cb->getObj(hid);
  3518. const bool owned = obj && obj->tempOwner == ai->playerID;
  3519. if(doWeExpectNull && !owned)
  3520. {
  3521. return nullptr;
  3522. }
  3523. else
  3524. {
  3525. assert(obj);
  3526. assert(owned);
  3527. }
  3528. }
  3529. return h;
  3530. }
  3531. const CGHeroInstance * HeroPtr::operator->() const
  3532. {
  3533. return get();
  3534. }
  3535. bool HeroPtr::validAndSet() const
  3536. {
  3537. return get(true);
  3538. }
  3539. const CGHeroInstance * HeroPtr::operator*() const
  3540. {
  3541. return get();
  3542. }