MiscObjects.cpp 49 KB

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