MiscObjects.cpp 56 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238
  1. /*
  2. * MiscObjects.cpp, part of VCMI engine
  3. *
  4. * Authors: listed in file AUTHORS in main folder
  5. *
  6. * License: GNU General Public License v2.0 or later
  7. * Full text of license available in license.txt file, in main folder
  8. *
  9. */
  10. #include "StdInc.h"
  11. #include "MiscObjects.h"
  12. #include "../StringConstants.h"
  13. #include "../NetPacks.h"
  14. #include "../CGeneralTextHandler.h"
  15. #include "../CSoundBase.h"
  16. #include "../CModHandler.h"
  17. #include "../CHeroHandler.h"
  18. #include "../CSkillHandler.h"
  19. #include "CObjectClassesHandler.h"
  20. #include "../spells/CSpellHandler.h"
  21. #include "../IGameCallback.h"
  22. #include "../CGameState.h"
  23. #include "../mapping/CMap.h"
  24. #include "../CPlayerState.h"
  25. #include "../serializer/JsonSerializeFormat.h"
  26. VCMI_LIB_NAMESPACE_BEGIN
  27. std::map <si32, std::vector<ObjectInstanceID> > CGMagi::eyelist;
  28. ui8 CGObelisk::obeliskCount = 0; //how many obelisks are on map
  29. std::map<TeamID, ui8> CGObelisk::visited; //map: team_id => how many obelisks has been visited
  30. ///helpers
  31. static void openWindow(const OpenWindow::EWindow type, const int id1, const int id2 = -1)
  32. {
  33. OpenWindow ow;
  34. ow.window = type;
  35. ow.id1 = id1;
  36. ow.id2 = id2;
  37. IObjectInterface::cb->sendAndApply(&ow);
  38. }
  39. static void showInfoDialog(const PlayerColor playerID, const ui32 txtID, const ui16 soundID = 0)
  40. {
  41. InfoWindow iw;
  42. if(soundID)
  43. iw.soundID = soundID;
  44. iw.player = playerID;
  45. iw.text.addTxt(MetaString::ADVOB_TXT,txtID);
  46. IObjectInterface::cb->sendAndApply(&iw);
  47. }
  48. static void showInfoDialog(const CGHeroInstance* h, const ui32 txtID, const ui16 soundID = 0)
  49. {
  50. const PlayerColor playerID = h->getOwner();
  51. showInfoDialog(playerID,txtID,soundID);
  52. }
  53. static std::string & visitedTxt(const bool visited)
  54. {
  55. int id = visited ? 352 : 353;
  56. return VLC->generaltexth->allTexts[id];
  57. }
  58. void CTeamVisited::setPropertyDer(ui8 what, ui32 val)
  59. {
  60. if(what == CTeamVisited::OBJPROP_VISITED)
  61. players.insert(PlayerColor(val));
  62. }
  63. bool CTeamVisited::wasVisited(PlayerColor player) const
  64. {
  65. return wasVisited(cb->getPlayerState(player)->team);
  66. }
  67. bool CTeamVisited::wasVisited(const CGHeroInstance * h) const
  68. {
  69. return wasVisited(h->tempOwner);
  70. }
  71. bool CTeamVisited::wasVisited(TeamID team) const
  72. {
  73. for(auto i : players)
  74. {
  75. if(cb->getPlayerState(i)->team == team)
  76. return true;
  77. }
  78. return false;
  79. }
  80. std::string CGCreature::getHoverText(PlayerColor player) const
  81. {
  82. if(stacks.empty())
  83. {
  84. //should not happen...
  85. logGlobal->error("Invalid stack at tile %s: subID=%d; id=%d", pos.toString(), subID, id.getNum());
  86. return "INVALID_STACK";
  87. }
  88. std::string hoverName;
  89. MetaString ms;
  90. int pom = stacks.begin()->second->getQuantityID();
  91. pom = 172 + 3*pom;
  92. ms.addTxt(MetaString::ARRAY_TXT,pom);
  93. ms << " " ;
  94. ms.addTxt(MetaString::CRE_PL_NAMES,subID);
  95. ms.toString(hoverName);
  96. return hoverName;
  97. }
  98. std::string CGCreature::getHoverText(const CGHeroInstance * hero) const
  99. {
  100. std::string hoverName;
  101. if(hero->hasVisions(this, 0))
  102. {
  103. MetaString ms;
  104. ms << stacks.begin()->second->count;
  105. ms << " " ;
  106. ms.addTxt(MetaString::CRE_PL_NAMES,subID);
  107. ms << "\n";
  108. int decision = takenAction(hero, true);
  109. switch (decision)
  110. {
  111. case FIGHT:
  112. ms.addTxt(MetaString::GENERAL_TXT,246);
  113. break;
  114. case FLEE:
  115. ms.addTxt(MetaString::GENERAL_TXT,245);
  116. break;
  117. case JOIN_FOR_FREE:
  118. ms.addTxt(MetaString::GENERAL_TXT,243);
  119. break;
  120. default: //decision = cost in gold
  121. ms << boost::to_string(boost::format(VLC->generaltexth->allTexts[244]) % decision);
  122. break;
  123. }
  124. ms.toString(hoverName);
  125. }
  126. else
  127. {
  128. hoverName = getHoverText(hero->tempOwner);
  129. }
  130. hoverName += VLC->generaltexth->translate("vcmi.adventureMap.monsterThreat.title");
  131. int choice;
  132. double ratio = ((double)getArmyStrength() / hero->getTotalStrength());
  133. if (ratio < 0.1) choice = 0;
  134. else if (ratio < 0.25) choice = 1;
  135. else if (ratio < 0.6) choice = 2;
  136. else if (ratio < 0.9) choice = 3;
  137. else if (ratio < 1.1) choice = 4;
  138. else if (ratio < 1.3) choice = 5;
  139. else if (ratio < 1.8) choice = 6;
  140. else if (ratio < 2.5) choice = 7;
  141. else if (ratio < 4) choice = 8;
  142. else if (ratio < 8) choice = 9;
  143. else if (ratio < 20) choice = 10;
  144. else choice = 11;
  145. hoverName += VLC->generaltexth->translate("vcmi.adventureMap.monsterThreat.levels." + std::to_string(choice));
  146. return hoverName;
  147. }
  148. void CGCreature::onHeroVisit( const CGHeroInstance * h ) const
  149. {
  150. int action = takenAction(h);
  151. switch( action ) //decide what we do...
  152. {
  153. case FIGHT:
  154. fight(h);
  155. break;
  156. case FLEE:
  157. {
  158. flee(h);
  159. break;
  160. }
  161. case JOIN_FOR_FREE: //join for free
  162. {
  163. BlockingDialog ynd(true,false);
  164. ynd.player = h->tempOwner;
  165. ynd.text.addTxt(MetaString::ADVOB_TXT, 86);
  166. ynd.text.addReplacement(MetaString::CRE_PL_NAMES, subID);
  167. cb->showBlockingDialog(&ynd);
  168. break;
  169. }
  170. default: //join for gold
  171. {
  172. assert(action > 0);
  173. //ask if player agrees to pay gold
  174. BlockingDialog ynd(true,false);
  175. ynd.player = h->tempOwner;
  176. std::string tmp = VLC->generaltexth->advobtxt[90];
  177. boost::algorithm::replace_first(tmp,"%d",boost::lexical_cast<std::string>(getStackCount(SlotID(0))));
  178. boost::algorithm::replace_first(tmp,"%d",boost::lexical_cast<std::string>(action));
  179. boost::algorithm::replace_first(tmp,"%s",VLC->creh->objects[subID]->namePl);
  180. ynd.text << tmp;
  181. cb->showBlockingDialog(&ynd);
  182. break;
  183. }
  184. }
  185. }
  186. void CGCreature::initObj(CRandomGenerator & rand)
  187. {
  188. blockVisit = true;
  189. switch(character)
  190. {
  191. case 0:
  192. character = -4;
  193. break;
  194. case 1:
  195. character = rand.nextInt(1, 7);
  196. break;
  197. case 2:
  198. character = rand.nextInt(1, 10);
  199. break;
  200. case 3:
  201. character = rand.nextInt(4, 10);
  202. break;
  203. case 4:
  204. character = 10;
  205. break;
  206. }
  207. stacks[SlotID(0)]->setType(CreatureID(subID));
  208. TQuantity &amount = stacks[SlotID(0)]->count;
  209. CCreature &c = *VLC->creh->objects[subID];
  210. if(amount == 0)
  211. {
  212. amount = rand.nextInt(c.ammMin, c.ammMax);
  213. if(amount == 0) //armies with 0 creatures are illegal
  214. {
  215. logGlobal->warn("Stack %s cannot have 0 creatures. Check properties of %s", nodeName(), c.nodeName());
  216. amount = 1;
  217. }
  218. }
  219. temppower = stacks[SlotID(0)]->count * (ui64)1000;
  220. refusedJoining = false;
  221. }
  222. void CGCreature::newTurn(CRandomGenerator & rand) const
  223. {//Works only for stacks of single type of size up to 2 millions
  224. if (!notGrowingTeam)
  225. {
  226. if (stacks.begin()->second->count < VLC->modh->settings.CREEP_SIZE && cb->getDate(Date::DAY_OF_WEEK) == 1 && cb->getDate(Date::DAY) > 1)
  227. {
  228. ui32 power = static_cast<ui32>(temppower * (100 + VLC->modh->settings.WEEKLY_GROWTH) / 100);
  229. cb->setObjProperty(id, ObjProperty::MONSTER_COUNT, std::min(power / 1000, (ui32)VLC->modh->settings.CREEP_SIZE)); //set new amount
  230. cb->setObjProperty(id, ObjProperty::MONSTER_POWER, power); //increase temppower
  231. }
  232. }
  233. if (VLC->modh->modules.STACK_EXP)
  234. cb->setObjProperty(id, ObjProperty::MONSTER_EXP, VLC->modh->settings.NEUTRAL_STACK_EXP); //for testing purpose
  235. }
  236. void CGCreature::setPropertyDer(ui8 what, ui32 val)
  237. {
  238. switch (what)
  239. {
  240. case ObjProperty::MONSTER_COUNT:
  241. stacks[SlotID(0)]->count = val;
  242. break;
  243. case ObjProperty::MONSTER_POWER:
  244. temppower = val;
  245. break;
  246. case ObjProperty::MONSTER_EXP:
  247. giveStackExp(val);
  248. break;
  249. case ObjProperty::MONSTER_RESTORE_TYPE:
  250. formation.basicType = val;
  251. break;
  252. case ObjProperty::MONSTER_REFUSED_JOIN:
  253. refusedJoining = val;
  254. break;
  255. }
  256. }
  257. int CGCreature::takenAction(const CGHeroInstance *h, bool allowJoin) const
  258. {
  259. //calculate relative strength of hero and creatures armies
  260. double relStrength = double(h->getTotalStrength()) / getArmyStrength();
  261. int powerFactor;
  262. if(relStrength >= 7)
  263. powerFactor = 11;
  264. else if(relStrength >= 1)
  265. powerFactor = (int)(2*(relStrength-1));
  266. else if(relStrength >= 0.5)
  267. powerFactor = -1;
  268. else if(relStrength >= 0.333)
  269. powerFactor = -2;
  270. else
  271. powerFactor = -3;
  272. std::set<CreatureID> myKindCres; //what creatures are the same kind as we
  273. const CCreature * myCreature = VLC->creh->objects[subID];
  274. myKindCres.insert(myCreature->idNumber); //we
  275. myKindCres.insert(myCreature->upgrades.begin(), myCreature->upgrades.end()); //our upgrades
  276. for(ConstTransitivePtr<CCreature> &crea : VLC->creh->objects)
  277. {
  278. if(vstd::contains(crea->upgrades, myCreature->idNumber)) //it's our base creatures
  279. myKindCres.insert(crea->idNumber);
  280. }
  281. int count = 0, //how many creatures of similar kind has hero
  282. totalCount = 0;
  283. for (auto & elem : h->Slots())
  284. {
  285. if(vstd::contains(myKindCres,elem.second->type->idNumber))
  286. count += elem.second->count;
  287. totalCount += elem.second->count;
  288. }
  289. int sympathy = 0; // 0 if hero have no similar creatures
  290. if(count)
  291. sympathy++; // 1 - if hero have at least 1 similar creature
  292. if(count*2 > totalCount)
  293. sympathy++; // 2 - hero have similar creatures more that 50%
  294. int diplomacy = h->valOfBonuses(Bonus::SECONDARY_SKILL_PREMY, SecondarySkill::DIPLOMACY);
  295. int charisma = powerFactor + diplomacy + sympathy;
  296. if(charisma < character)
  297. return FIGHT;
  298. if (allowJoin)
  299. {
  300. if(diplomacy + sympathy + 1 >= character)
  301. return JOIN_FOR_FREE;
  302. else if(diplomacy * 2 + sympathy + 1 >= character)
  303. return VLC->creh->objects[subID]->cost[6] * getStackCount(SlotID(0)); //join for gold
  304. }
  305. //we are still here - creatures have not joined hero, flee or fight
  306. if (charisma > character && !neverFlees)
  307. return FLEE;
  308. else
  309. return FIGHT;
  310. }
  311. void CGCreature::fleeDecision(const CGHeroInstance *h, ui32 pursue) const
  312. {
  313. if(refusedJoining)
  314. cb->setObjProperty(id, ObjProperty::MONSTER_REFUSED_JOIN, false);
  315. if(pursue)
  316. {
  317. fight(h);
  318. }
  319. else
  320. {
  321. cb->removeObject(this);
  322. }
  323. }
  324. void CGCreature::joinDecision(const CGHeroInstance *h, int cost, ui32 accept) const
  325. {
  326. if(!accept)
  327. {
  328. if(takenAction(h,false) == FLEE)
  329. {
  330. cb->setObjProperty(id, ObjProperty::MONSTER_REFUSED_JOIN, true);
  331. flee(h);
  332. }
  333. else //they fight
  334. {
  335. showInfoDialog(h,87,0);//Insulted by your refusal of their offer, the monsters attack!
  336. fight(h);
  337. }
  338. }
  339. else //accepted
  340. {
  341. if (cb->getResource(h->tempOwner, Res::GOLD) < cost) //player don't have enough gold!
  342. {
  343. InfoWindow iw;
  344. iw.player = h->tempOwner;
  345. iw.text << std::pair<ui8,ui32>(1,29); //You don't have enough gold
  346. cb->showInfoDialog(&iw);
  347. //act as if player refused
  348. joinDecision(h,cost,false);
  349. return;
  350. }
  351. //take gold
  352. if(cost)
  353. cb->giveResource(h->tempOwner,Res::GOLD,-cost);
  354. giveReward(h);
  355. cb->tryJoiningArmy(this, h, true, true);
  356. }
  357. }
  358. void CGCreature::fight( const CGHeroInstance *h ) const
  359. {
  360. //split stacks
  361. //TODO: multiple creature types in a stack?
  362. int basicType = stacks.begin()->second->type->idNumber;
  363. cb->setObjProperty(id, ObjProperty::MONSTER_RESTORE_TYPE, basicType); //store info about creature stack
  364. int stacksCount = getNumberOfStacks(h);
  365. //source: http://heroescommunity.com/viewthread.php3?TID=27539&PID=1266335#focus
  366. int amount = getStackCount(SlotID(0));
  367. int m = amount / stacksCount;
  368. int b = stacksCount * (m + 1) - amount;
  369. int a = stacksCount - b;
  370. SlotID sourceSlot = stacks.begin()->first;
  371. for (int slotID = 1; slotID < a; ++slotID)
  372. {
  373. int stackSize = m + 1;
  374. cb->moveStack(StackLocation(this, sourceSlot), StackLocation(this, SlotID(slotID)), stackSize);
  375. }
  376. for (int slotID = a; slotID < stacksCount; ++slotID)
  377. {
  378. int stackSize = m;
  379. if (slotID) //don't do this when a = 0 -> stack is single
  380. cb->moveStack(StackLocation(this, sourceSlot), StackLocation(this, SlotID(slotID)), stackSize);
  381. }
  382. if (stacksCount > 1)
  383. {
  384. if (containsUpgradedStack()) //upgrade
  385. {
  386. SlotID slotID = SlotID((si32)(std::floor((float)stacks.size() / 2.0f)));
  387. const auto & upgrades = getStack(slotID).type->upgrades;
  388. if(!upgrades.empty())
  389. {
  390. auto it = RandomGeneratorUtil::nextItem(upgrades, CRandomGenerator::getDefault());
  391. cb->changeStackType(StackLocation(this, slotID), VLC->creh->objects[*it]);
  392. }
  393. }
  394. }
  395. cb->startBattleI(h, this);
  396. }
  397. void CGCreature::flee( const CGHeroInstance * h ) const
  398. {
  399. BlockingDialog ynd(true,false);
  400. ynd.player = h->tempOwner;
  401. ynd.text.addTxt(MetaString::ADVOB_TXT,91);
  402. ynd.text.addReplacement(MetaString::CRE_PL_NAMES, subID);
  403. cb->showBlockingDialog(&ynd);
  404. }
  405. void CGCreature::battleFinished(const CGHeroInstance *hero, const BattleResult &result) const
  406. {
  407. if(result.winner == 0)
  408. {
  409. giveReward(hero);
  410. cb->removeObject(this);
  411. }
  412. else if(result.winner > 1) // draw
  413. {
  414. // guarded reward is lost forever on draw
  415. cb->removeObject(this);
  416. }
  417. else
  418. {
  419. //merge stacks into one
  420. TSlots::const_iterator i;
  421. CCreature * cre = VLC->creh->objects[formation.basicType];
  422. for(i = stacks.begin(); i != stacks.end(); i++)
  423. {
  424. if(cre->isMyUpgrade(i->second->type))
  425. {
  426. cb->changeStackType(StackLocation(this, i->first), cre); //un-upgrade creatures
  427. }
  428. }
  429. //first stack has to be at slot 0 -> if original one got killed, move there first remaining stack
  430. if(!hasStackAtSlot(SlotID(0)))
  431. cb->moveStack(StackLocation(this, stacks.begin()->first), StackLocation(this, SlotID(0)), stacks.begin()->second->count);
  432. while(stacks.size() > 1) //hopefully that's enough
  433. {
  434. // TODO it's either overcomplicated (if we assume there'll be only one stack) or buggy (if we allow multiple stacks... but that'll also cause troubles elsewhere)
  435. i = stacks.end();
  436. i--;
  437. SlotID slot = getSlotFor(i->second->type);
  438. if(slot == i->first) //no reason to move stack to its own slot
  439. break;
  440. else
  441. cb->moveStack(StackLocation(this, i->first), StackLocation(this, slot), i->second->count);
  442. }
  443. cb->setObjProperty(id, ObjProperty::MONSTER_POWER, stacks.begin()->second->count * 1000); //remember casualties
  444. }
  445. }
  446. void CGCreature::blockingDialogAnswered(const CGHeroInstance *hero, ui32 answer) const
  447. {
  448. auto action = takenAction(hero);
  449. if(!refusedJoining && action >= JOIN_FOR_FREE) //higher means price
  450. joinDecision(hero, action, answer);
  451. else if(action != FIGHT)
  452. fleeDecision(hero, answer);
  453. else
  454. assert(0);
  455. }
  456. bool CGCreature::containsUpgradedStack() const
  457. {
  458. //source http://heroescommunity.com/viewthread.php3?TID=27539&PID=830557#focus
  459. float a = 2992.911117f;
  460. float b = 14174.264968f;
  461. float c = 5325.181015f;
  462. float d = 32788.727920f;
  463. int val = (int)std::floor (a*pos.x + b*pos.y + c*pos.z + d);
  464. return ((val % 32768) % 100) < 50;
  465. }
  466. int CGCreature::getNumberOfStacks(const CGHeroInstance *hero) const
  467. {
  468. //source http://heroescommunity.com/viewthread.php3?TID=27539&PID=1266094#focus
  469. double strengthRatio = (double)hero->getArmyStrength() / getArmyStrength();
  470. int split = 1;
  471. if (strengthRatio < 0.5f)
  472. split = 7;
  473. else if (strengthRatio < 0.67f)
  474. split = 6;
  475. else if (strengthRatio < 1)
  476. split = 5;
  477. else if (strengthRatio < 1.5f)
  478. split = 4;
  479. else if (strengthRatio < 2)
  480. split = 3;
  481. else
  482. split = 2;
  483. ui32 a = 1550811371u;
  484. ui32 b = 3359066809u;
  485. ui32 c = 1943276003u;
  486. ui32 d = 3174620878u;
  487. ui32 R1 = a * ui32(pos.x) + b * ui32(pos.y) + c * ui32(pos.z) + d;
  488. ui32 R2 = (R1 >> 16) & 0x7fff;
  489. int R4 = R2 % 100 + 1;
  490. if (R4 <= 20)
  491. split -= 1;
  492. else if (R4 >= 80)
  493. split += 1;
  494. vstd::amin(split, getStack(SlotID(0)).count); //can't divide into more stacks than creatures total
  495. vstd::amin(split, 7); //can't have more than 7 stacks
  496. return split;
  497. }
  498. void CGCreature::giveReward(const CGHeroInstance * h) const
  499. {
  500. InfoWindow iw;
  501. iw.player = h->tempOwner;
  502. if(resources.size())
  503. {
  504. cb->giveResources(h->tempOwner, resources);
  505. for(int i = 0; i < resources.size(); i++)
  506. {
  507. if(resources[i] > 0)
  508. iw.components.push_back(Component(Component::RESOURCE, i, resources[i], 0));
  509. }
  510. }
  511. if(gainedArtifact != ArtifactID::NONE)
  512. {
  513. cb->giveHeroNewArtifact(h, VLC->arth->objects[gainedArtifact], ArtifactPosition::FIRST_AVAILABLE);
  514. iw.components.push_back(Component(Component::ARTIFACT, gainedArtifact, 0, 0));
  515. }
  516. if(iw.components.size())
  517. {
  518. iw.text.addTxt(MetaString::ADVOB_TXT, 183); // % has found treasure
  519. iw.text.addReplacement(h->name);
  520. cb->showInfoDialog(&iw);
  521. }
  522. }
  523. static const std::vector<std::string> CHARACTER_JSON =
  524. {
  525. "compliant", "friendly", "aggressive", "hostile", "savage"
  526. };
  527. void CGCreature::serializeJsonOptions(JsonSerializeFormat & handler)
  528. {
  529. handler.serializeEnum("character", character, CHARACTER_JSON);
  530. if(handler.saving)
  531. {
  532. if(hasStackAtSlot(SlotID(0)))
  533. {
  534. si32 amount = getStack(SlotID(0)).count;
  535. handler.serializeInt("amount", amount, 0);
  536. }
  537. }
  538. else
  539. {
  540. si32 amount = 0;
  541. handler.serializeInt("amount", amount);
  542. auto hlp = new CStackInstance();
  543. hlp->count = amount;
  544. //type will be set during initialization
  545. putStack(SlotID(0), hlp);
  546. }
  547. resources.serializeJson(handler, "rewardResources");
  548. handler.serializeId("rewardArtifact", gainedArtifact, ArtifactID(ArtifactID::NONE));
  549. handler.serializeBool("noGrowing", notGrowingTeam);
  550. handler.serializeBool("neverFlees", neverFlees);
  551. handler.serializeString("rewardMessage", message);
  552. }
  553. //CGMine
  554. void CGMine::onHeroVisit( const CGHeroInstance * h ) const
  555. {
  556. int relations = cb->gameState()->getPlayerRelations(h->tempOwner, tempOwner);
  557. if(relations == 2) //we're visiting our mine
  558. {
  559. cb->showGarrisonDialog(id,h->id,true);
  560. return;
  561. }
  562. else if (relations == 1)//ally
  563. return;
  564. if(stacksCount()) //Mine is guarded
  565. {
  566. BlockingDialog ynd(true,false);
  567. ynd.player = h->tempOwner;
  568. ynd.text.addTxt(MetaString::ADVOB_TXT, subID == 7 ? 84 : 187);
  569. cb->showBlockingDialog(&ynd);
  570. return;
  571. }
  572. flagMine(h->tempOwner);
  573. }
  574. void CGMine::newTurn(CRandomGenerator & rand) const
  575. {
  576. if(cb->getDate() == 1)
  577. return;
  578. if (tempOwner == PlayerColor::NEUTRAL)
  579. return;
  580. cb->giveResource(tempOwner, producedResource, producedQuantity);
  581. }
  582. void CGMine::initObj(CRandomGenerator & rand)
  583. {
  584. if(isAbandoned())
  585. {
  586. //set guardians
  587. int howManyTroglodytes = rand.nextInt(100, 199);
  588. auto troglodytes = new CStackInstance(CreatureID::TROGLODYTES, howManyTroglodytes);
  589. putStack(SlotID(0), troglodytes);
  590. //after map reading tempOwner placeholds bitmask for allowed resources
  591. std::vector<Res::ERes> possibleResources;
  592. for (int i = 0; i < PlayerColor::PLAYER_LIMIT_I; i++)
  593. if(tempOwner.getNum() & 1<<i) //NOTE: reuse of tempOwner
  594. possibleResources.push_back(static_cast<Res::ERes>(i));
  595. assert(!possibleResources.empty());
  596. producedResource = *RandomGeneratorUtil::nextItem(possibleResources, rand);
  597. tempOwner = PlayerColor::NEUTRAL;
  598. }
  599. else
  600. {
  601. producedResource = static_cast<Res::ERes>(subID);
  602. if(tempOwner >= PlayerColor::PLAYER_LIMIT)
  603. tempOwner = PlayerColor::NEUTRAL;
  604. }
  605. producedQuantity = defaultResProduction();
  606. }
  607. bool CGMine::isAbandoned() const
  608. {
  609. return (subID >= 7);
  610. }
  611. std::string CGMine::getObjectName() const
  612. {
  613. return VLC->generaltexth->translate("core.minename", subID);
  614. }
  615. std::string CGMine::getHoverText(PlayerColor player) const
  616. {
  617. std::string hoverName = getObjectName(); // Sawmill
  618. if (tempOwner != PlayerColor::NEUTRAL)
  619. {
  620. hoverName += "\n";
  621. hoverName += VLC->generaltexth->arraytxt[23 + tempOwner.getNum()]; // owned by Red Player
  622. hoverName += "\n(" + VLC->generaltexth->restypes[producedResource] + ")";
  623. }
  624. if(stacksCount())
  625. {
  626. hoverName += "\n";
  627. hoverName += VLC->generaltexth->allTexts[202]; //Guarded by
  628. hoverName += " ";
  629. hoverName += getArmyDescription();
  630. }
  631. return hoverName;
  632. }
  633. void CGMine::flagMine(PlayerColor player) const
  634. {
  635. assert(tempOwner != player);
  636. cb->setOwner(this, player); //not ours? flag it!
  637. InfoWindow iw;
  638. iw.soundID = soundBase::FLAGMINE;
  639. iw.text.addTxt(MetaString::MINE_EVNTS,producedResource); //not use subID, abandoned mines uses default mine texts
  640. iw.player = player;
  641. iw.components.push_back(Component(Component::RESOURCE,producedResource,producedQuantity,-1));
  642. cb->showInfoDialog(&iw);
  643. }
  644. ui32 CGMine::defaultResProduction()
  645. {
  646. switch(producedResource)
  647. {
  648. case Res::WOOD:
  649. case Res::ORE:
  650. return 2;
  651. case Res::GOLD:
  652. return 1000;
  653. default:
  654. return 1;
  655. }
  656. }
  657. void CGMine::battleFinished(const CGHeroInstance *hero, const BattleResult &result) const
  658. {
  659. if(result.winner == 0) //attacker won
  660. {
  661. if(isAbandoned())
  662. {
  663. showInfoDialog(hero->tempOwner, 85, 0);
  664. }
  665. flagMine(hero->tempOwner);
  666. }
  667. }
  668. void CGMine::blockingDialogAnswered(const CGHeroInstance *hero, ui32 answer) const
  669. {
  670. if(answer)
  671. cb->startBattleI(hero, this);
  672. }
  673. void CGMine::serializeJsonOptions(JsonSerializeFormat & handler)
  674. {
  675. CCreatureSet::serializeJson(handler, "army", 7);
  676. if(isAbandoned())
  677. {
  678. if(handler.saving)
  679. {
  680. JsonNode node(JsonNode::JsonType::DATA_VECTOR);
  681. for(int i = 0; i < PlayerColor::PLAYER_LIMIT_I; i++)
  682. {
  683. if(tempOwner.getNum() & 1<<i)
  684. {
  685. JsonNode one(JsonNode::JsonType::DATA_STRING);
  686. one.String() = GameConstants::RESOURCE_NAMES[i];
  687. node.Vector().push_back(one);
  688. }
  689. }
  690. handler.serializeRaw("possibleResources", node, boost::none);
  691. }
  692. else
  693. {
  694. auto guard = handler.enterArray("possibleResources");
  695. const JsonNode & node = handler.getCurrent();
  696. std::set<int> possibleResources;
  697. if(node.getType() != JsonNode::JsonType::DATA_VECTOR || node.Vector().size() == 0)
  698. {
  699. //assume all allowed
  700. for(int i = (int)Res::WOOD; i < (int) Res::GOLD; i++)
  701. possibleResources.insert(i);
  702. }
  703. else
  704. {
  705. auto names = node.convertTo<std::vector<std::string>>();
  706. for(const std::string & s : names)
  707. {
  708. int raw_res = vstd::find_pos(GameConstants::RESOURCE_NAMES, s);
  709. if(raw_res < 0)
  710. logGlobal->error("Invalid resource name: %s", s);
  711. else
  712. possibleResources.insert(raw_res);
  713. }
  714. int tmp = 0;
  715. for(int r : possibleResources)
  716. tmp |= (1<<r);
  717. tempOwner = PlayerColor(tmp);
  718. }
  719. }
  720. }
  721. else
  722. {
  723. serializeJsonOwner(handler);
  724. }
  725. }
  726. std::string CGResource::getHoverText(PlayerColor player) const
  727. {
  728. return VLC->generaltexth->restypes[subID];
  729. }
  730. CGResource::CGResource()
  731. {
  732. amount = CGResource::RANDOM_AMOUNT;
  733. }
  734. void CGResource::initObj(CRandomGenerator & rand)
  735. {
  736. blockVisit = true;
  737. if(amount == CGResource::RANDOM_AMOUNT)
  738. {
  739. switch(subID)
  740. {
  741. case Res::GOLD:
  742. amount = rand.nextInt(5, 10) * 100;
  743. break;
  744. case Res::WOOD: case Res::ORE:
  745. amount = rand.nextInt(6, 10);
  746. break;
  747. default:
  748. amount = rand.nextInt(3, 5);
  749. break;
  750. }
  751. }
  752. }
  753. void CGResource::onHeroVisit( const CGHeroInstance * h ) const
  754. {
  755. if(stacksCount())
  756. {
  757. if(message.size())
  758. {
  759. BlockingDialog ynd(true,false);
  760. ynd.player = h->getOwner();
  761. ynd.text << message;
  762. cb->showBlockingDialog(&ynd);
  763. }
  764. else
  765. {
  766. blockingDialogAnswered(h, true); //behave as if player accepted battle
  767. }
  768. }
  769. else
  770. {
  771. if(message.length())
  772. {
  773. InfoWindow iw;
  774. iw.player = h->tempOwner;
  775. iw.text << message;
  776. cb->showInfoDialog(&iw);
  777. }
  778. collectRes(h->getOwner());
  779. }
  780. }
  781. void CGResource::collectRes( PlayerColor player ) const
  782. {
  783. cb->giveResource(player, static_cast<Res::ERes>(subID), amount);
  784. ShowInInfobox sii;
  785. sii.player = player;
  786. sii.c = Component(Component::RESOURCE,subID,amount,0);
  787. sii.text.addTxt(MetaString::ADVOB_TXT,113);
  788. sii.text.addReplacement(MetaString::RES_NAMES, subID);
  789. cb->showCompInfo(&sii);
  790. cb->removeObject(this);
  791. }
  792. void CGResource::battleFinished(const CGHeroInstance *hero, const BattleResult &result) const
  793. {
  794. if(result.winner == 0) //attacker won
  795. collectRes(hero->getOwner());
  796. }
  797. void CGResource::blockingDialogAnswered(const CGHeroInstance *hero, ui32 answer) const
  798. {
  799. if(answer)
  800. cb->startBattleI(hero, this);
  801. }
  802. void CGResource::serializeJsonOptions(JsonSerializeFormat & handler)
  803. {
  804. CCreatureSet::serializeJson(handler, "guards", 7);
  805. handler.serializeInt("amount", amount, 0);
  806. handler.serializeString("guardMessage", message);
  807. }
  808. CGTeleport::CGTeleport() :
  809. type(UNKNOWN), channel(TeleportChannelID())
  810. {
  811. }
  812. bool CGTeleport::isEntrance() const
  813. {
  814. return type == BOTH || type == ENTRANCE;
  815. }
  816. bool CGTeleport::isExit() const
  817. {
  818. return type == BOTH || type == EXIT;
  819. }
  820. bool CGTeleport::isChannelEntrance(ObjectInstanceID id) const
  821. {
  822. return vstd::contains(getAllEntrances(), id);
  823. }
  824. bool CGTeleport::isChannelExit(ObjectInstanceID id) const
  825. {
  826. return vstd::contains(getAllExits(), id);
  827. }
  828. std::vector<ObjectInstanceID> CGTeleport::getAllEntrances(bool excludeCurrent) const
  829. {
  830. auto ret = cb->getTeleportChannelEntraces(channel);
  831. if(excludeCurrent)
  832. vstd::erase_if_present(ret, id);
  833. return ret;
  834. }
  835. std::vector<ObjectInstanceID> CGTeleport::getAllExits(bool excludeCurrent) const
  836. {
  837. auto ret = cb->getTeleportChannelExits(channel);
  838. if(excludeCurrent)
  839. vstd::erase_if_present(ret, id);
  840. return ret;
  841. }
  842. ObjectInstanceID CGTeleport::getRandomExit(const CGHeroInstance * h) const
  843. {
  844. auto passableExits = getPassableExits(cb->gameState(), h, getAllExits(true));
  845. if(passableExits.size())
  846. return *RandomGeneratorUtil::nextItem(passableExits, CRandomGenerator::getDefault());
  847. return ObjectInstanceID();
  848. }
  849. bool CGTeleport::isTeleport(const CGObjectInstance * obj)
  850. {
  851. return ((dynamic_cast<const CGTeleport *>(obj)));
  852. }
  853. bool CGTeleport::isConnected(const CGTeleport * src, const CGTeleport * dst)
  854. {
  855. return src && dst && src->isChannelExit(dst->id);
  856. }
  857. bool CGTeleport::isConnected(const CGObjectInstance * src, const CGObjectInstance * dst)
  858. {
  859. auto srcObj = dynamic_cast<const CGTeleport *>(src);
  860. auto dstObj = dynamic_cast<const CGTeleport *>(dst);
  861. return isConnected(srcObj, dstObj);
  862. }
  863. bool CGTeleport::isExitPassable(CGameState * gs, const CGHeroInstance * h, const CGObjectInstance * obj)
  864. {
  865. auto objTopVisObj = gs->map->getTile(obj->visitablePos()).topVisitableObj();
  866. if(objTopVisObj->ID == Obj::HERO)
  867. {
  868. if(h->id == objTopVisObj->id) // Just to be sure it's won't happen.
  869. return false;
  870. // Check if it's friendly hero or not
  871. if(gs->getPlayerRelations(h->tempOwner, objTopVisObj->tempOwner) != PlayerRelations::ENEMIES)
  872. {
  873. // Exchange between heroes only possible via subterranean gates
  874. if(!dynamic_cast<const CGSubterraneanGate *>(obj))
  875. return false;
  876. }
  877. }
  878. return true;
  879. }
  880. std::vector<ObjectInstanceID> CGTeleport::getPassableExits(CGameState * gs, const CGHeroInstance * h, std::vector<ObjectInstanceID> exits)
  881. {
  882. vstd::erase_if(exits, [&](ObjectInstanceID exit) -> bool
  883. {
  884. return !isExitPassable(gs, h, gs->getObj(exit));
  885. });
  886. return exits;
  887. }
  888. void CGTeleport::addToChannel(std::map<TeleportChannelID, std::shared_ptr<TeleportChannel> > &channelsList, const CGTeleport * obj)
  889. {
  890. std::shared_ptr<TeleportChannel> tc;
  891. if(channelsList.find(obj->channel) == channelsList.end())
  892. {
  893. tc = std::make_shared<TeleportChannel>();
  894. channelsList.insert(std::make_pair(obj->channel, tc));
  895. }
  896. else
  897. tc = channelsList[obj->channel];
  898. if(obj->isEntrance() && !vstd::contains(tc->entrances, obj->id))
  899. tc->entrances.push_back(obj->id);
  900. if(obj->isExit() && !vstd::contains(tc->exits, obj->id))
  901. tc->exits.push_back(obj->id);
  902. if(tc->entrances.size() && tc->exits.size()
  903. && (tc->entrances.size() != 1 || tc->entrances != tc->exits))
  904. {
  905. tc->passability = TeleportChannel::PASSABLE;
  906. }
  907. }
  908. TeleportChannelID CGMonolith::findMeChannel(std::vector<Obj> IDs, int SubID) const
  909. {
  910. for(auto obj : cb->gameState()->map->objects)
  911. {
  912. if(!obj)
  913. continue;
  914. auto teleportObj = dynamic_cast<const CGTeleport *>(cb->getObj(obj->id));
  915. if(teleportObj && vstd::contains(IDs, teleportObj->ID) && teleportObj->subID == SubID)
  916. return teleportObj->channel;
  917. }
  918. return TeleportChannelID();
  919. }
  920. void CGMonolith::onHeroVisit( const CGHeroInstance * h ) const
  921. {
  922. TeleportDialog td(h->tempOwner, channel);
  923. if(isEntrance())
  924. {
  925. if(cb->isTeleportChannelBidirectional(channel) && 1 < cb->getTeleportChannelExits(channel).size())
  926. {
  927. auto exits = cb->getTeleportChannelExits(channel);
  928. for(auto exit : exits)
  929. {
  930. td.exits.push_back(std::make_pair(exit, h->convertFromVisitablePos(cb->getObj(exit)->visitablePos())));
  931. }
  932. }
  933. if(cb->isTeleportChannelImpassable(channel))
  934. {
  935. logGlobal->debug("Cannot find corresponding exit monolith for %d at %s", id.getNum(), pos.toString());
  936. td.impassable = true;
  937. }
  938. else if(getRandomExit(h) == ObjectInstanceID())
  939. logGlobal->debug("All exits blocked for monolith %d at %s", id.getNum(), pos.toString());
  940. }
  941. else
  942. showInfoDialog(h, 70, 0);
  943. cb->showTeleportDialog(&td);
  944. }
  945. void CGMonolith::teleportDialogAnswered(const CGHeroInstance *hero, ui32 answer, TTeleportExitsList exits) const
  946. {
  947. int3 dPos;
  948. auto randomExit = getRandomExit(hero);
  949. auto realExits = getAllExits(true);
  950. if(!isEntrance() // Do nothing if hero visited exit only object
  951. || (!exits.size() && !realExits.size()) // Do nothing if there no exits on this channel
  952. || ObjectInstanceID() == randomExit) // Do nothing if all exits are blocked by friendly hero and it's not subterranean gate
  953. {
  954. return;
  955. }
  956. else if(vstd::isValidIndex(exits, answer))
  957. dPos = exits[answer].second;
  958. else
  959. dPos = hero->convertFromVisitablePos(cb->getObj(randomExit)->visitablePos());
  960. cb->moveHero(hero->id, dPos, true);
  961. }
  962. void CGMonolith::initObj(CRandomGenerator & rand)
  963. {
  964. std::vector<Obj> IDs;
  965. IDs.push_back(ID);
  966. switch(ID)
  967. {
  968. case Obj::MONOLITH_ONE_WAY_ENTRANCE:
  969. type = ENTRANCE;
  970. IDs.push_back(Obj::MONOLITH_ONE_WAY_EXIT);
  971. break;
  972. case Obj::MONOLITH_ONE_WAY_EXIT:
  973. type = EXIT;
  974. IDs.push_back(Obj::MONOLITH_ONE_WAY_ENTRANCE);
  975. break;
  976. case Obj::MONOLITH_TWO_WAY:
  977. default:
  978. type = BOTH;
  979. break;
  980. }
  981. channel = findMeChannel(IDs, subID);
  982. if(channel == TeleportChannelID())
  983. channel = TeleportChannelID((si32)cb->gameState()->map->teleportChannels.size());
  984. addToChannel(cb->gameState()->map->teleportChannels, this);
  985. }
  986. void CGSubterraneanGate::onHeroVisit( const CGHeroInstance * h ) const
  987. {
  988. TeleportDialog td(h->tempOwner, channel);
  989. if(cb->isTeleportChannelImpassable(channel))
  990. {
  991. showInfoDialog(h,153,0);//Just inside the entrance you find a large pile of rubble blocking the tunnel. You leave discouraged.
  992. logGlobal->debug("Cannot find exit subterranean gate for %d at %s", id.getNum(), pos.toString());
  993. td.impassable = true;
  994. }
  995. else
  996. {
  997. auto exit = getRandomExit(h);
  998. td.exits.push_back(std::make_pair(exit, h->convertFromVisitablePos(cb->getObj(exit)->visitablePos())));
  999. }
  1000. cb->showTeleportDialog(&td);
  1001. }
  1002. void CGSubterraneanGate::initObj(CRandomGenerator & rand)
  1003. {
  1004. type = BOTH;
  1005. }
  1006. void CGSubterraneanGate::postInit() //matches subterranean gates into pairs
  1007. {
  1008. //split on underground and surface gates
  1009. std::vector<CGSubterraneanGate *> gatesSplit[2]; //surface and underground gates
  1010. for(auto & obj : cb->gameState()->map->objects)
  1011. {
  1012. if(!obj) // FIXME: Find out why there are nullptr objects right after initialization
  1013. continue;
  1014. auto hlp = dynamic_cast<CGSubterraneanGate *>(cb->gameState()->getObjInstance(obj->id));
  1015. if(hlp)
  1016. gatesSplit[hlp->pos.z].push_back(hlp);
  1017. }
  1018. //sort by position
  1019. std::sort(gatesSplit[0].begin(), gatesSplit[0].end(), [](const CGObjectInstance * a, const CGObjectInstance * b)
  1020. {
  1021. return a->pos < b->pos;
  1022. });
  1023. auto assignToChannel = [&](CGSubterraneanGate * obj)
  1024. {
  1025. if(obj->channel == TeleportChannelID())
  1026. { // if object not linked to channel then create new channel
  1027. obj->channel = TeleportChannelID((si32)cb->gameState()->map->teleportChannels.size());
  1028. addToChannel(cb->gameState()->map->teleportChannels, obj);
  1029. }
  1030. };
  1031. for(size_t i = 0; i < gatesSplit[0].size(); i++)
  1032. {
  1033. CGSubterraneanGate * objCurrent = gatesSplit[0][i];
  1034. //find nearest underground exit
  1035. std::pair<int, si32> best(-1, std::numeric_limits<si32>::max()); //pair<pos_in_vector, distance^2>
  1036. for(int j = 0; j < gatesSplit[1].size(); j++)
  1037. {
  1038. CGSubterraneanGate *checked = gatesSplit[1][j];
  1039. if(checked->channel != TeleportChannelID())
  1040. continue;
  1041. si32 hlp = checked->pos.dist2dSQ(objCurrent->pos);
  1042. if(hlp < best.second)
  1043. {
  1044. best.first = j;
  1045. best.second = hlp;
  1046. }
  1047. }
  1048. assignToChannel(objCurrent);
  1049. if(best.first >= 0) //found pair
  1050. {
  1051. gatesSplit[1][best.first]->channel = objCurrent->channel;
  1052. addToChannel(cb->gameState()->map->teleportChannels, gatesSplit[1][best.first]);
  1053. }
  1054. }
  1055. // we should assign empty channels to underground gates if they don't have matching overground gates
  1056. for(size_t i = 0; i < gatesSplit[1].size(); i++)
  1057. assignToChannel(gatesSplit[1][i]);
  1058. }
  1059. void CGWhirlpool::onHeroVisit( const CGHeroInstance * h ) const
  1060. {
  1061. TeleportDialog td(h->tempOwner, channel);
  1062. if(cb->isTeleportChannelImpassable(channel))
  1063. {
  1064. logGlobal->debug("Cannot find exit whirlpool for %d at %s", id.getNum(), pos.toString());
  1065. td.impassable = true;
  1066. }
  1067. else if(getRandomExit(h) == ObjectInstanceID())
  1068. logGlobal->debug("All exits are blocked for whirlpool %d at %s", id.getNum(), pos.toString());
  1069. if(!isProtected(h))
  1070. {
  1071. SlotID targetstack = h->Slots().begin()->first; //slot numbers may vary
  1072. for(auto i = h->Slots().rbegin(); i != h->Slots().rend(); i++)
  1073. {
  1074. if(h->getPower(targetstack) > h->getPower(i->first))
  1075. targetstack = (i->first);
  1076. }
  1077. TQuantity countToTake = static_cast<TQuantity>(h->getStackCount(targetstack) * 0.5);
  1078. vstd::amax(countToTake, 1);
  1079. InfoWindow iw;
  1080. iw.player = h->tempOwner;
  1081. iw.text.addTxt(MetaString::ADVOB_TXT, 168);
  1082. iw.components.push_back(Component(CStackBasicDescriptor(h->getCreature(targetstack), countToTake)));
  1083. cb->showInfoDialog(&iw);
  1084. cb->changeStackCount(StackLocation(h, targetstack), -countToTake);
  1085. }
  1086. else
  1087. {
  1088. auto exits = getAllExits();
  1089. for(auto exit : exits)
  1090. {
  1091. auto blockedPosList = cb->getObj(exit)->getBlockedPos();
  1092. for(auto bPos : blockedPosList)
  1093. td.exits.push_back(std::make_pair(exit, h->convertFromVisitablePos(bPos)));
  1094. }
  1095. }
  1096. cb->showTeleportDialog(&td);
  1097. }
  1098. void CGWhirlpool::teleportDialogAnswered(const CGHeroInstance *hero, ui32 answer, TTeleportExitsList exits) const
  1099. {
  1100. int3 dPos;
  1101. auto realExits = getAllExits();
  1102. if(!exits.size() && !realExits.size())
  1103. return;
  1104. else if(vstd::isValidIndex(exits, answer))
  1105. dPos = exits[answer].second;
  1106. else
  1107. {
  1108. auto exit = getRandomExit(hero);
  1109. if(exit == ObjectInstanceID())
  1110. return;
  1111. auto obj = cb->getObj(exit);
  1112. std::set<int3> tiles = obj->getBlockedPos();
  1113. dPos = hero->convertFromVisitablePos(*RandomGeneratorUtil::nextItem(tiles, CRandomGenerator::getDefault()));
  1114. }
  1115. cb->moveHero(hero->id, dPos, true);
  1116. }
  1117. bool CGWhirlpool::isProtected(const CGHeroInstance * h)
  1118. {
  1119. return h->hasBonusOfType(Bonus::WHIRLPOOL_PROTECTION)
  1120. || (h->stacksCount() == 1 && h->Slots().begin()->second->count == 1);
  1121. }
  1122. void CGArtifact::initObj(CRandomGenerator & rand)
  1123. {
  1124. blockVisit = true;
  1125. if(ID == Obj::ARTIFACT)
  1126. {
  1127. if (!storedArtifact)
  1128. {
  1129. auto a = new CArtifactInstance();
  1130. cb->gameState()->map->addNewArtifactInstance(a);
  1131. storedArtifact = a;
  1132. }
  1133. if(!storedArtifact->artType)
  1134. storedArtifact->setType(VLC->arth->objects[subID]);
  1135. }
  1136. if(ID == Obj::SPELL_SCROLL)
  1137. subID = 1;
  1138. assert(storedArtifact->artType);
  1139. assert(storedArtifact->getParentNodes().size());
  1140. //assert(storedArtifact->artType->id == subID); //this does not stop desync
  1141. }
  1142. std::string CGArtifact::getObjectName() const
  1143. {
  1144. return VLC->artifacts()->getByIndex(subID)->getName();
  1145. }
  1146. void CGArtifact::onHeroVisit(const CGHeroInstance * h) const
  1147. {
  1148. if(!stacksCount())
  1149. {
  1150. InfoWindow iw;
  1151. iw.player = h->tempOwner;
  1152. switch(ID)
  1153. {
  1154. case Obj::ARTIFACT:
  1155. {
  1156. iw.components.push_back(Component(Component::ARTIFACT, subID, 0, 0));
  1157. if(message.length())
  1158. iw.text << message;
  1159. else
  1160. {
  1161. auto artifact = ArtifactID(subID).toArtifact(VLC->artifacts());
  1162. if((artifact != nullptr) && (!artifact->getEventText().empty()))
  1163. {
  1164. iw.text.addTxt(MetaString::ART_EVNTS, subID);
  1165. }
  1166. else //fix for mod artifacts with no event text
  1167. {
  1168. iw.text.addTxt(MetaString::ADVOB_TXT, 183); //% has found treasure
  1169. iw.text.addReplacement(h->name);
  1170. }
  1171. }
  1172. }
  1173. break;
  1174. case Obj::SPELL_SCROLL:
  1175. {
  1176. int spellID = storedArtifact->getGivenSpellID();
  1177. iw.components.push_back(Component(Component::SPELL, spellID, 0, 0));
  1178. if(message.length())
  1179. iw.text << message;
  1180. else
  1181. {
  1182. iw.text.addTxt(MetaString::ADVOB_TXT,135);
  1183. iw.text.addReplacement(MetaString::SPELL_NAME, spellID);
  1184. }
  1185. }
  1186. break;
  1187. }
  1188. cb->showInfoDialog(&iw);
  1189. pick(h);
  1190. }
  1191. else
  1192. {
  1193. switch(ID)
  1194. {
  1195. case Obj::ARTIFACT:
  1196. {
  1197. BlockingDialog ynd(true,false);
  1198. ynd.player = h->getOwner();
  1199. if(message.length())
  1200. ynd.text << message;
  1201. else
  1202. {
  1203. // TODO: Guard text is more complex in H3, see mantis issue 2325 for details
  1204. ynd.text.addTxt(MetaString::GENERAL_TXT, 420);
  1205. ynd.text.addReplacement("");
  1206. ynd.text.addReplacement(getArmyDescription());
  1207. ynd.text.addReplacement(MetaString::GENERAL_TXT, 43); // creatures
  1208. }
  1209. cb->showBlockingDialog(&ynd);
  1210. }
  1211. break;
  1212. case Obj::SPELL_SCROLL:
  1213. {
  1214. if(message.length())
  1215. {
  1216. BlockingDialog ynd(true,false);
  1217. ynd.player = h->getOwner();
  1218. ynd.text << message;
  1219. cb->showBlockingDialog(&ynd);
  1220. }
  1221. else
  1222. blockingDialogAnswered(h, true);
  1223. }
  1224. break;
  1225. }
  1226. }
  1227. }
  1228. void CGArtifact::pick(const CGHeroInstance * h) const
  1229. {
  1230. cb->giveHeroArtifact(h, storedArtifact, ArtifactPosition::FIRST_AVAILABLE);
  1231. cb->removeObject(this);
  1232. }
  1233. BattleField CGArtifact::getBattlefield() const
  1234. {
  1235. return BattleField::NONE;
  1236. }
  1237. void CGArtifact::battleFinished(const CGHeroInstance *hero, const BattleResult &result) const
  1238. {
  1239. if(result.winner == 0) //attacker won
  1240. pick(hero);
  1241. }
  1242. void CGArtifact::blockingDialogAnswered(const CGHeroInstance *hero, ui32 answer) const
  1243. {
  1244. if(answer)
  1245. cb->startBattleI(hero, this);
  1246. }
  1247. void CGArtifact::afterAddToMap(CMap * map)
  1248. {
  1249. //Artifacts from map objects are never removed
  1250. //FIXME: This should be revertible in map editor
  1251. if(ID == Obj::SPELL_SCROLL && storedArtifact && storedArtifact->id.getNum() < 0)
  1252. map->addNewArtifactInstance(storedArtifact);
  1253. }
  1254. void CGArtifact::serializeJsonOptions(JsonSerializeFormat& handler)
  1255. {
  1256. handler.serializeString("guardMessage", message);
  1257. CCreatureSet::serializeJson(handler, "guards" ,7);
  1258. if(handler.saving && ID == Obj::SPELL_SCROLL)
  1259. {
  1260. const std::shared_ptr<Bonus> b = storedArtifact->getBonusLocalFirst(Selector::type()(Bonus::SPELL));
  1261. SpellID spellId(b->subtype);
  1262. handler.serializeId("spell", spellId, SpellID::NONE);
  1263. }
  1264. }
  1265. void CGWitchHut::initObj(CRandomGenerator & rand)
  1266. {
  1267. if (allowedAbilities.empty()) //this can happen for RMG. regular maps load abilities from map file
  1268. {
  1269. // Necromancy can't be learned on random maps
  1270. for(int i = 0; i < VLC->skillh->size(); i++)
  1271. if(VLC->skillh->getByIndex(i)->getId() != SecondarySkill::NECROMANCY)
  1272. allowedAbilities.push_back(i);
  1273. }
  1274. ability = *RandomGeneratorUtil::nextItem(allowedAbilities, rand);
  1275. }
  1276. void CGWitchHut::onHeroVisit( const CGHeroInstance * h ) const
  1277. {
  1278. InfoWindow iw;
  1279. iw.player = h->getOwner();
  1280. if(!wasVisited(h->tempOwner))
  1281. cb->setObjProperty(id, CGWitchHut::OBJPROP_VISITED, h->tempOwner.getNum());
  1282. ui32 txt_id;
  1283. if(h->getSecSkillLevel(SecondarySkill(ability))) //you already know this skill
  1284. {
  1285. txt_id =172;
  1286. }
  1287. else if(!h->canLearnSkill()) //already all skills slots used
  1288. {
  1289. txt_id = 173;
  1290. }
  1291. else //give sec skill
  1292. {
  1293. iw.components.push_back(Component(Component::SEC_SKILL, ability, 1, 0));
  1294. txt_id = 171;
  1295. cb->changeSecSkill(h, SecondarySkill(ability), 1, true);
  1296. }
  1297. iw.text.addTxt(MetaString::ADVOB_TXT,txt_id);
  1298. iw.text.addReplacement(MetaString::SEC_SKILL_NAME, ability);
  1299. cb->showInfoDialog(&iw);
  1300. }
  1301. std::string CGWitchHut::getHoverText(PlayerColor player) const
  1302. {
  1303. std::string hoverName = getObjectName();
  1304. if(wasVisited(player))
  1305. {
  1306. hoverName += "\n" + VLC->generaltexth->allTexts[356]; // + (learn %s)
  1307. boost::algorithm::replace_first(hoverName, "%s", VLC->skillh->skillName(ability));
  1308. }
  1309. return hoverName;
  1310. }
  1311. std::string CGWitchHut::getHoverText(const CGHeroInstance * hero) const
  1312. {
  1313. std::string hoverName = getHoverText(hero->tempOwner);
  1314. if(wasVisited(hero->tempOwner) && hero->getSecSkillLevel(SecondarySkill(ability))) //hero knows that ability
  1315. hoverName += "\n\n" + VLC->generaltexth->allTexts[357]; // (Already learned)
  1316. return hoverName;
  1317. }
  1318. void CGWitchHut::serializeJsonOptions(JsonSerializeFormat & handler)
  1319. {
  1320. //TODO: unify allowed abilities with others - make them std::vector<bool>
  1321. std::vector<bool> temp;
  1322. size_t skillCount = VLC->skillh->size();
  1323. temp.resize(skillCount, false);
  1324. auto standard = VLC->skillh->getDefaultAllowed(); //todo: for WitchHut default is all except Leadership and Necromancy
  1325. if(handler.saving)
  1326. {
  1327. for(si32 i = 0; i < skillCount; ++i)
  1328. if(vstd::contains(allowedAbilities, i))
  1329. temp[i] = true;
  1330. }
  1331. handler.serializeLIC("allowedSkills", &CSkillHandler::decodeSkill, &CSkillHandler::encodeSkill, standard, temp);
  1332. if(!handler.saving)
  1333. {
  1334. allowedAbilities.clear();
  1335. for(si32 i = 0; i < skillCount; ++i)
  1336. if(temp[i])
  1337. allowedAbilities.push_back(i);
  1338. }
  1339. }
  1340. void CGMagicWell::onHeroVisit( const CGHeroInstance * h ) const
  1341. {
  1342. int message;
  1343. if(h->hasBonusFrom(Bonus::OBJECT,ID)) //has already visited Well today
  1344. {
  1345. message = 78;//"A second drink at the well in one day will not help you."
  1346. }
  1347. else if(h->mana < h->manaLimit())
  1348. {
  1349. giveDummyBonus(h->id);
  1350. cb->setManaPoints(h->id,h->manaLimit());
  1351. message = 77;
  1352. }
  1353. else
  1354. {
  1355. message = 79;
  1356. }
  1357. showInfoDialog(h, message);
  1358. }
  1359. std::string CGMagicWell::getHoverText(const CGHeroInstance * hero) const
  1360. {
  1361. return getObjectName() + " " + visitedTxt(hero->hasBonusFrom(Bonus::OBJECT,ID));
  1362. }
  1363. void CGObservatory::onHeroVisit( const CGHeroInstance * h ) const
  1364. {
  1365. InfoWindow iw;
  1366. iw.player = h->tempOwner;
  1367. switch (ID)
  1368. {
  1369. case Obj::REDWOOD_OBSERVATORY:
  1370. case Obj::PILLAR_OF_FIRE:
  1371. {
  1372. iw.text.addTxt(MetaString::ADVOB_TXT,98 + (ID==Obj::PILLAR_OF_FIRE));
  1373. FoWChange fw;
  1374. fw.player = h->tempOwner;
  1375. fw.mode = 1;
  1376. cb->getTilesInRange (fw.tiles, pos, 20, h->tempOwner, 1);
  1377. cb->sendAndApply (&fw);
  1378. break;
  1379. }
  1380. case Obj::COVER_OF_DARKNESS:
  1381. {
  1382. iw.text.addTxt (MetaString::ADVOB_TXT, 31);
  1383. for (auto & player : cb->gameState()->players)
  1384. {
  1385. if (cb->getPlayerStatus(player.first) == EPlayerStatus::INGAME &&
  1386. cb->getPlayerRelations(player.first, h->tempOwner) == PlayerRelations::ENEMIES)
  1387. cb->changeFogOfWar(visitablePos(), 20, player.first, true);
  1388. }
  1389. break;
  1390. }
  1391. }
  1392. cb->showInfoDialog(&iw);
  1393. }
  1394. void CGShrine::onHeroVisit( const CGHeroInstance * h ) const
  1395. {
  1396. if(spell == SpellID::NONE)
  1397. {
  1398. logGlobal->error("Not initialized shrine visited!");
  1399. return;
  1400. }
  1401. if(!wasVisited(h->tempOwner))
  1402. cb->setObjProperty(id, CGShrine::OBJPROP_VISITED, h->tempOwner.getNum());
  1403. InfoWindow iw;
  1404. iw.player = h->getOwner();
  1405. iw.text.addTxt(MetaString::ADVOB_TXT,127 + ID - 88);
  1406. iw.text.addTxt(MetaString::SPELL_NAME,spell);
  1407. iw.text << ".";
  1408. if(!h->getArt(ArtifactPosition::SPELLBOOK))
  1409. {
  1410. iw.text.addTxt(MetaString::ADVOB_TXT,131);
  1411. }
  1412. else if(h->spellbookContainsSpell(spell))//hero already knows the spell
  1413. {
  1414. iw.text.addTxt(MetaString::ADVOB_TXT,174);
  1415. }
  1416. else if(ID == Obj::SHRINE_OF_MAGIC_THOUGHT && h->maxSpellLevel() < 3) //it's third level spell and hero doesn't have wisdom
  1417. {
  1418. iw.text.addTxt(MetaString::ADVOB_TXT,130);
  1419. }
  1420. else //give spell
  1421. {
  1422. std::set<SpellID> spells;
  1423. spells.insert(spell);
  1424. cb->changeSpells(h, true, spells);
  1425. iw.components.push_back(Component(Component::SPELL,spell,0,0));
  1426. }
  1427. cb->showInfoDialog(&iw);
  1428. }
  1429. void CGShrine::initObj(CRandomGenerator & rand)
  1430. {
  1431. if(spell == SpellID::NONE) //spell not set
  1432. {
  1433. int level = ID-87;
  1434. std::vector<SpellID> possibilities;
  1435. cb->getAllowedSpells (possibilities, level);
  1436. if(possibilities.empty())
  1437. {
  1438. logGlobal->error("Error: cannot init shrine, no allowed spells!");
  1439. return;
  1440. }
  1441. spell = *RandomGeneratorUtil::nextItem(possibilities, rand);
  1442. }
  1443. }
  1444. std::string CGShrine::getHoverText(PlayerColor player) const
  1445. {
  1446. std::string hoverName = getObjectName();
  1447. if(wasVisited(player))
  1448. {
  1449. hoverName += "\n" + VLC->generaltexth->allTexts[355]; // + (learn %s)
  1450. boost::algorithm::replace_first(hoverName,"%s", spell.toSpell()->name);
  1451. }
  1452. return hoverName;
  1453. }
  1454. std::string CGShrine::getHoverText(const CGHeroInstance * hero) const
  1455. {
  1456. std::string hoverName = getHoverText(hero->tempOwner);
  1457. if(wasVisited(hero->tempOwner) && hero->spellbookContainsSpell(spell)) //know what spell there is and hero knows that spell
  1458. hoverName += "\n\n" + VLC->generaltexth->allTexts[354]; // (Already learned)
  1459. return hoverName;
  1460. }
  1461. void CGShrine::serializeJsonOptions(JsonSerializeFormat & handler)
  1462. {
  1463. handler.serializeId("spell", spell, SpellID::NONE);
  1464. }
  1465. void CGSignBottle::initObj(CRandomGenerator & rand)
  1466. {
  1467. //if no text is set than we pick random from the predefined ones
  1468. if(message.empty())
  1469. {
  1470. auto vector = VLC->generaltexth->findStringsWithPrefix("core.randsign");
  1471. message = *RandomGeneratorUtil::nextItem(vector, rand);
  1472. }
  1473. if(ID == Obj::OCEAN_BOTTLE)
  1474. {
  1475. blockVisit = true;
  1476. }
  1477. }
  1478. void CGSignBottle::onHeroVisit( const CGHeroInstance * h ) const
  1479. {
  1480. InfoWindow iw;
  1481. iw.player = h->getOwner();
  1482. iw.text << message;
  1483. cb->showInfoDialog(&iw);
  1484. if(ID == Obj::OCEAN_BOTTLE)
  1485. cb->removeObject(this);
  1486. }
  1487. void CGSignBottle::serializeJsonOptions(JsonSerializeFormat& handler)
  1488. {
  1489. handler.serializeString("text", message);
  1490. }
  1491. void CGScholar::onHeroVisit( const CGHeroInstance * h ) const
  1492. {
  1493. EBonusType type = bonusType;
  1494. int bid = bonusID;
  1495. //check if the bonus if applicable, if not - give primary skill (always possible)
  1496. int ssl = h->getSecSkillLevel(SecondarySkill(bid)); //current sec skill level, used if bonusType == 1
  1497. if((type == SECONDARY_SKILL && ((ssl == 3) || (!ssl && !h->canLearnSkill()))) ////hero already has expert level in the skill or (don't know skill and doesn't have free slot)
  1498. || (type == SPELL && !h->canLearnSpell(SpellID(bid).toSpell())))
  1499. {
  1500. type = PRIM_SKILL;
  1501. bid = CRandomGenerator::getDefault().nextInt(GameConstants::PRIMARY_SKILLS - 1);
  1502. }
  1503. InfoWindow iw;
  1504. iw.player = h->getOwner();
  1505. iw.text.addTxt(MetaString::ADVOB_TXT,115);
  1506. switch (type)
  1507. {
  1508. case PRIM_SKILL:
  1509. cb->changePrimSkill(h,static_cast<PrimarySkill::PrimarySkill>(bid),+1);
  1510. iw.components.push_back(Component(Component::PRIM_SKILL,bid,+1,0));
  1511. break;
  1512. case SECONDARY_SKILL:
  1513. cb->changeSecSkill(h,SecondarySkill(bid),+1);
  1514. iw.components.push_back(Component(Component::SEC_SKILL,bid,ssl+1,0));
  1515. break;
  1516. case SPELL:
  1517. {
  1518. std::set<SpellID> hlp;
  1519. hlp.insert(SpellID(bid));
  1520. cb->changeSpells(h,true,hlp);
  1521. iw.components.push_back(Component(Component::SPELL,bid,0,0));
  1522. }
  1523. break;
  1524. default:
  1525. logGlobal->error("Error: wrong bonus type (%d) for Scholar!\n", static_cast<int>(type));
  1526. return;
  1527. }
  1528. cb->showInfoDialog(&iw);
  1529. cb->removeObject(this);
  1530. }
  1531. void CGScholar::initObj(CRandomGenerator & rand)
  1532. {
  1533. blockVisit = true;
  1534. if(bonusType == RANDOM)
  1535. {
  1536. bonusType = static_cast<EBonusType>(rand.nextInt(2));
  1537. switch(bonusType)
  1538. {
  1539. case PRIM_SKILL:
  1540. bonusID = rand.nextInt(GameConstants::PRIMARY_SKILLS -1);
  1541. break;
  1542. case SECONDARY_SKILL:
  1543. bonusID = rand.nextInt((int)VLC->skillh->size() - 1);
  1544. break;
  1545. case SPELL:
  1546. std::vector<SpellID> possibilities;
  1547. for (int i = 1; i < 6; ++i)
  1548. cb->getAllowedSpells (possibilities, i);
  1549. bonusID = *RandomGeneratorUtil::nextItem(possibilities, rand);
  1550. break;
  1551. }
  1552. }
  1553. }
  1554. void CGScholar::serializeJsonOptions(JsonSerializeFormat & handler)
  1555. {
  1556. if(handler.saving)
  1557. {
  1558. std::string value;
  1559. switch(bonusType)
  1560. {
  1561. case PRIM_SKILL:
  1562. value = PrimarySkill::names[bonusID];
  1563. handler.serializeString("rewardPrimSkill", value);
  1564. break;
  1565. case SECONDARY_SKILL:
  1566. value = CSkillHandler::encodeSkill(bonusID);
  1567. handler.serializeString("rewardSkill", value);
  1568. break;
  1569. case SPELL:
  1570. value = SpellID::encode(bonusID);
  1571. handler.serializeString("rewardSpell", value);
  1572. break;
  1573. case RANDOM:
  1574. break;
  1575. }
  1576. }
  1577. else
  1578. {
  1579. //TODO: unify
  1580. const JsonNode & json = handler.getCurrent();
  1581. bonusType = RANDOM;
  1582. if(!json["rewardPrimSkill"].String().empty())
  1583. {
  1584. auto raw = VLC->modh->identifiers.getIdentifier(CModHandler::scopeBuiltin(), "primSkill", json["rewardPrimSkill"].String());
  1585. if(raw)
  1586. {
  1587. bonusType = PRIM_SKILL;
  1588. bonusID = raw.get();
  1589. }
  1590. }
  1591. else if(!json["rewardSkill"].String().empty())
  1592. {
  1593. auto raw = VLC->modh->identifiers.getIdentifier(CModHandler::scopeBuiltin(), "skill", json["rewardSkill"].String());
  1594. if(raw)
  1595. {
  1596. bonusType = SECONDARY_SKILL;
  1597. bonusID = raw.get();
  1598. }
  1599. }
  1600. else if(!json["rewardSpell"].String().empty())
  1601. {
  1602. auto raw = VLC->modh->identifiers.getIdentifier(CModHandler::scopeBuiltin(), "spell", json["rewardSpell"].String());
  1603. if(raw)
  1604. {
  1605. bonusType = SPELL;
  1606. bonusID = raw.get();
  1607. }
  1608. }
  1609. }
  1610. }
  1611. void CGGarrison::onHeroVisit (const CGHeroInstance *h) const
  1612. {
  1613. int ally = cb->gameState()->getPlayerRelations(h->tempOwner, tempOwner);
  1614. if (!ally && stacksCount() > 0) {
  1615. //TODO: Find a way to apply magic garrison effects in battle.
  1616. cb->startBattleI(h, this);
  1617. return;
  1618. }
  1619. //New owner.
  1620. if (!ally)
  1621. cb->setOwner(this, h->tempOwner);
  1622. cb->showGarrisonDialog(id, h->id, removableUnits);
  1623. }
  1624. bool CGGarrison::passableFor(PlayerColor player) const
  1625. {
  1626. //FIXME: identical to same method in CGTownInstance
  1627. if ( !stacksCount() )//empty - anyone can visit
  1628. return true;
  1629. if ( tempOwner == PlayerColor::NEUTRAL )//neutral guarded - no one can visit
  1630. return false;
  1631. if (cb->getPlayerRelations(tempOwner, player) != PlayerRelations::ENEMIES)
  1632. return true;
  1633. return false;
  1634. }
  1635. void CGGarrison::battleFinished(const CGHeroInstance *hero, const BattleResult &result) const
  1636. {
  1637. if (result.winner == 0)
  1638. onHeroVisit(hero);
  1639. }
  1640. void CGGarrison::serializeJsonOptions(JsonSerializeFormat& handler)
  1641. {
  1642. handler.serializeBool("removableUnits", removableUnits);
  1643. serializeJsonOwner(handler);
  1644. CCreatureSet::serializeJson(handler, "army", 7);
  1645. }
  1646. void CGMagi::reset()
  1647. {
  1648. eyelist.clear();
  1649. }
  1650. void CGMagi::initObj(CRandomGenerator & rand)
  1651. {
  1652. if (ID == Obj::EYE_OF_MAGI)
  1653. {
  1654. blockVisit = true;
  1655. eyelist[subID].push_back(id);
  1656. }
  1657. }
  1658. void CGMagi::onHeroVisit(const CGHeroInstance * h) const
  1659. {
  1660. if (ID == Obj::HUT_OF_MAGI)
  1661. {
  1662. showInfoDialog(h, 61);
  1663. if (!eyelist[subID].empty())
  1664. {
  1665. CenterView cv;
  1666. cv.player = h->tempOwner;
  1667. cv.focusTime = 2000;
  1668. FoWChange fw;
  1669. fw.player = h->tempOwner;
  1670. fw.mode = 1;
  1671. fw.waitForDialogs = true;
  1672. for(auto it : eyelist[subID])
  1673. {
  1674. const CGObjectInstance *eye = cb->getObj(it);
  1675. cb->getTilesInRange (fw.tiles, eye->pos, 10, h->tempOwner, 1);
  1676. cb->sendAndApply(&fw);
  1677. cv.pos = eye->pos;
  1678. cb->sendAndApply(&cv);
  1679. }
  1680. cv.pos = h->visitablePos();
  1681. cv.focusTime = 0;
  1682. cb->sendAndApply(&cv);
  1683. }
  1684. }
  1685. else if (ID == Obj::EYE_OF_MAGI)
  1686. {
  1687. showInfoDialog(h, 48);
  1688. }
  1689. }
  1690. void CGBoat::initObj(CRandomGenerator & rand)
  1691. {
  1692. hero = nullptr;
  1693. }
  1694. void CGSirens::initObj(CRandomGenerator & rand)
  1695. {
  1696. blockVisit = true;
  1697. }
  1698. std::string CGSirens::getHoverText(const CGHeroInstance * hero) const
  1699. {
  1700. return getObjectName() + " " + visitedTxt(hero->hasBonusFrom(Bonus::OBJECT,ID));
  1701. }
  1702. void CGSirens::onHeroVisit( const CGHeroInstance * h ) const
  1703. {
  1704. InfoWindow iw;
  1705. iw.player = h->tempOwner;
  1706. if(h->hasBonusFrom(Bonus::OBJECT,ID)) //has already visited Sirens
  1707. {
  1708. iw.text.addTxt(MetaString::ADVOB_TXT,133);
  1709. }
  1710. else
  1711. {
  1712. giveDummyBonus(h->id, Bonus::ONE_BATTLE);
  1713. TExpType xp = 0;
  1714. for (auto i = h->Slots().begin(); i != h->Slots().end(); i++)
  1715. {
  1716. TQuantity drown = static_cast<TQuantity>(i->second->count * 0.3);
  1717. if(drown)
  1718. {
  1719. cb->changeStackCount(StackLocation(h, i->first), -drown);
  1720. xp += drown * i->second->type->MaxHealth();
  1721. }
  1722. }
  1723. if(xp)
  1724. {
  1725. xp = h->calculateXp((int)xp);
  1726. iw.text.addTxt(MetaString::ADVOB_TXT,132);
  1727. iw.text.addReplacement((int)xp);
  1728. cb->changePrimSkill(h, PrimarySkill::EXPERIENCE, xp, false);
  1729. }
  1730. else
  1731. {
  1732. iw.text.addTxt(MetaString::ADVOB_TXT,134);
  1733. }
  1734. }
  1735. cb->showInfoDialog(&iw);
  1736. }
  1737. CGShipyard::CGShipyard()
  1738. :IShipyard(this)
  1739. {
  1740. }
  1741. void CGShipyard::getOutOffsets( std::vector<int3> &offsets ) const
  1742. {
  1743. // H J L K I
  1744. // A x S x B
  1745. // C E G F D
  1746. offsets = {
  1747. int3(-3,0,0), int3(1,0,0), //AB
  1748. int3(-3,1,0), int3(1,1,0), int3(-2,1,0), int3(0,1,0), int3(-1,1,0), //CDEFG
  1749. int3(-3,-1,0), int3(1,-1,0), int3(-2,-1,0), int3(0,-1,0), int3(-1,-1,0) //HIJKL
  1750. };
  1751. }
  1752. void CGShipyard::onHeroVisit( const CGHeroInstance * h ) const
  1753. {
  1754. if(!cb->gameState()->getPlayerRelations(tempOwner, h->tempOwner))
  1755. cb->setOwner(this, h->tempOwner);
  1756. auto s = shipyardStatus();
  1757. if(s != IBoatGenerator::GOOD)
  1758. {
  1759. InfoWindow iw;
  1760. iw.player = tempOwner;
  1761. getProblemText(iw.text, h);
  1762. cb->showInfoDialog(&iw);
  1763. }
  1764. else
  1765. {
  1766. openWindow(OpenWindow::SHIPYARD_WINDOW,id.getNum(),h->id.getNum());
  1767. }
  1768. }
  1769. void CGShipyard::serializeJsonOptions(JsonSerializeFormat& handler)
  1770. {
  1771. serializeJsonOwner(handler);
  1772. }
  1773. void CCartographer::onHeroVisit( const CGHeroInstance * h ) const
  1774. {
  1775. //if player has not bought map of this subtype yet and underground exist for stalagmite cartographer
  1776. if (!wasVisited(h->getOwner()) && (subID != 2 || cb->gameState()->map->twoLevel))
  1777. {
  1778. if (cb->getResource(h->tempOwner, Res::GOLD) >= 1000) //if he can afford a map
  1779. {
  1780. //ask if he wants to buy one
  1781. int text=0;
  1782. switch (subID)
  1783. {
  1784. case 0:
  1785. text = 25;
  1786. break;
  1787. case 1:
  1788. text = 26;
  1789. break;
  1790. case 2:
  1791. text = 27;
  1792. break;
  1793. default:
  1794. logGlobal->warn("Unrecognized subtype of cartographer");
  1795. }
  1796. assert(text);
  1797. BlockingDialog bd (true, false);
  1798. bd.player = h->getOwner();
  1799. bd.text.addTxt (MetaString::ADVOB_TXT, text);
  1800. cb->showBlockingDialog (&bd);
  1801. }
  1802. else //if he cannot afford
  1803. {
  1804. showInfoDialog(h, 28);
  1805. }
  1806. }
  1807. else //if he already visited carographer
  1808. {
  1809. showInfoDialog(h, 24);
  1810. }
  1811. }
  1812. void CCartographer::blockingDialogAnswered(const CGHeroInstance *hero, ui32 answer) const
  1813. {
  1814. if(answer) //if hero wants to buy map
  1815. {
  1816. cb->giveResource(hero->tempOwner, Res::GOLD, -1000);
  1817. FoWChange fw;
  1818. fw.mode = 1;
  1819. fw.player = hero->tempOwner;
  1820. //subIDs of different types of cartographers:
  1821. //water = 0; land = 1; underground = 2;
  1822. IGameCallback::MapTerrainFilterMode tileFilterMode = IGameCallback::MapTerrainFilterMode::NONE;
  1823. switch(subID)
  1824. {
  1825. case 0:
  1826. tileFilterMode = CPrivilegedInfoCallback::MapTerrainFilterMode::WATER;
  1827. break;
  1828. case 1:
  1829. tileFilterMode = CPrivilegedInfoCallback::MapTerrainFilterMode::LAND_CARTOGRAPHER;
  1830. break;
  1831. case 2:
  1832. tileFilterMode = CPrivilegedInfoCallback::MapTerrainFilterMode::UNDERGROUND_CARTOGRAPHER;
  1833. break;
  1834. }
  1835. cb->getAllTiles(fw.tiles, hero->tempOwner, -1, tileFilterMode); //reveal appropriate tiles
  1836. cb->sendAndApply(&fw);
  1837. cb->setObjProperty(id, CCartographer::OBJPROP_VISITED, hero->tempOwner.getNum());
  1838. }
  1839. }
  1840. void CGDenOfthieves::onHeroVisit (const CGHeroInstance * h) const
  1841. {
  1842. cb->showThievesGuildWindow(h->tempOwner, id);
  1843. }
  1844. void CGObelisk::onHeroVisit( const CGHeroInstance * h ) const
  1845. {
  1846. InfoWindow iw;
  1847. iw.player = h->tempOwner;
  1848. TeamState *ts = cb->gameState()->getPlayerTeam(h->tempOwner);
  1849. assert(ts);
  1850. TeamID team = ts->id;
  1851. if(!wasVisited(team))
  1852. {
  1853. iw.text.addTxt(MetaString::ADVOB_TXT, 96);
  1854. cb->sendAndApply(&iw);
  1855. // increment general visited obelisks counter
  1856. cb->setObjProperty(id, CGObelisk::OBJPROP_INC, team.getNum());
  1857. openWindow(OpenWindow::PUZZLE_MAP, h->tempOwner.getNum());
  1858. // mark that particular obelisk as visited for all players in the team
  1859. for (auto & color : ts->players)
  1860. {
  1861. cb->setObjProperty(id, CGObelisk::OBJPROP_VISITED, color.getNum());
  1862. }
  1863. }
  1864. else
  1865. {
  1866. iw.text.addTxt(MetaString::ADVOB_TXT, 97);
  1867. cb->sendAndApply(&iw);
  1868. }
  1869. }
  1870. void CGObelisk::initObj(CRandomGenerator & rand)
  1871. {
  1872. obeliskCount++;
  1873. }
  1874. void CGObelisk::reset()
  1875. {
  1876. obeliskCount = 0;
  1877. visited.clear();
  1878. }
  1879. std::string CGObelisk::getHoverText(PlayerColor player) const
  1880. {
  1881. return getObjectName() + " " + visitedTxt(wasVisited(player));
  1882. }
  1883. void CGObelisk::setPropertyDer( ui8 what, ui32 val )
  1884. {
  1885. switch(what)
  1886. {
  1887. case CGObelisk::OBJPROP_INC:
  1888. {
  1889. auto progress = ++visited[TeamID(val)];
  1890. logGlobal->debug("Player %d: obelisk progress %d / %d", val, static_cast<int>(progress) , static_cast<int>(obeliskCount));
  1891. if(progress > obeliskCount)
  1892. {
  1893. logGlobal->error("Visited %d of %d", static_cast<int>(progress), obeliskCount);
  1894. throw std::runtime_error("internal error");
  1895. }
  1896. break;
  1897. }
  1898. default:
  1899. CTeamVisited::setPropertyDer(what, val);
  1900. break;
  1901. }
  1902. }
  1903. void CGLighthouse::onHeroVisit( const CGHeroInstance * h ) const
  1904. {
  1905. if(h->tempOwner != tempOwner)
  1906. {
  1907. PlayerColor oldOwner = tempOwner;
  1908. cb->setOwner(this,h->tempOwner); //not ours? flag it!
  1909. showInfoDialog(h, 69);
  1910. giveBonusTo(h->tempOwner);
  1911. if(oldOwner < PlayerColor::PLAYER_LIMIT) //remove bonus from old owner
  1912. {
  1913. RemoveBonus rb(RemoveBonus::PLAYER);
  1914. rb.whoID = oldOwner.getNum();
  1915. rb.source = Bonus::OBJECT;
  1916. rb.id = id.getNum();
  1917. cb->sendAndApply(&rb);
  1918. }
  1919. }
  1920. }
  1921. void CGLighthouse::initObj(CRandomGenerator & rand)
  1922. {
  1923. if(tempOwner < PlayerColor::PLAYER_LIMIT)
  1924. {
  1925. // FIXME: This is dirty hack
  1926. giveBonusTo(tempOwner, true);
  1927. }
  1928. }
  1929. std::string CGLighthouse::getHoverText(PlayerColor player) const
  1930. {
  1931. //TODO: owned by %s player
  1932. return getObjectName();
  1933. }
  1934. void CGLighthouse::giveBonusTo(PlayerColor player, bool onInit) const
  1935. {
  1936. GiveBonus gb(GiveBonus::PLAYER);
  1937. gb.bonus.type = Bonus::SEA_MOVEMENT;
  1938. gb.bonus.val = 500;
  1939. gb.id = player.getNum();
  1940. gb.bonus.duration = Bonus::PERMANENT;
  1941. gb.bonus.source = Bonus::OBJECT;
  1942. gb.bonus.sid = id.getNum();
  1943. // FIXME: This is really dirty hack
  1944. // Proper fix would be to make CGLighthouse into bonus system node
  1945. // Unfortunately this will cause saves breakage
  1946. if(onInit)
  1947. gb.applyGs(cb->gameState());
  1948. else
  1949. cb->sendAndApply(&gb);
  1950. }
  1951. void CGLighthouse::serializeJsonOptions(JsonSerializeFormat& handler)
  1952. {
  1953. serializeJsonOwner(handler);
  1954. }
  1955. VCMI_LIB_NAMESPACE_END