NetPacksLib.cpp 43 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640
  1. #include "StdInc.h"
  2. #include "NetPacks.h"
  3. #include "CGeneralTextHandler.h"
  4. #include "mapObjects/CObjectClassesHandler.h"
  5. #include "CArtHandler.h"
  6. #include "CHeroHandler.h"
  7. #include "mapObjects/CObjectHandler.h"
  8. #include "CModHandler.h"
  9. #include "VCMI_Lib.h"
  10. #include "mapping/CMap.h"
  11. #include "spells/CSpellHandler.h"
  12. #include "CCreatureHandler.h"
  13. #include "CGameState.h"
  14. #include "BattleState.h"
  15. #include "CTownHandler.h"
  16. #include "mapping/CMapInfo.h"
  17. #include "StartInfo.h"
  18. /*
  19. * NetPacksLib.cpp, part of VCMI engine
  20. *
  21. * Authors: listed in file AUTHORS in main folder
  22. *
  23. * License: GNU General Public License v2.0 or later
  24. * Full text of license available in license.txt file, in main folder
  25. *
  26. */
  27. #undef min
  28. #undef max
  29. std::ostream & operator<<(std::ostream & out, const CPack * pack)
  30. {
  31. return out << pack->toString();
  32. }
  33. DLL_LINKAGE void SetResource::applyGs( CGameState *gs )
  34. {
  35. assert(player < PlayerColor::PLAYER_LIMIT);
  36. vstd::amax(val, 0); //new value must be >= 0
  37. gs->getPlayer(player)->resources[resid] = val;
  38. }
  39. DLL_LINKAGE void SetResources::applyGs( CGameState *gs )
  40. {
  41. assert(player < PlayerColor::PLAYER_LIMIT);
  42. gs->getPlayer(player)->resources = res;
  43. }
  44. DLL_LINKAGE void SetPrimSkill::applyGs( CGameState *gs )
  45. {
  46. CGHeroInstance * hero = gs->getHero(id);
  47. assert(hero);
  48. hero->setPrimarySkill(which, val, abs);
  49. }
  50. DLL_LINKAGE void SetSecSkill::applyGs( CGameState *gs )
  51. {
  52. CGHeroInstance *hero = gs->getHero(id);
  53. hero->setSecSkillLevel(which, val, abs);
  54. }
  55. DLL_LINKAGE SelectMap::SelectMap(const CMapInfo &src)
  56. {
  57. mapInfo = &src;
  58. free = false;
  59. }
  60. DLL_LINKAGE SelectMap::SelectMap()
  61. {
  62. mapInfo = nullptr;
  63. free = true;
  64. }
  65. DLL_LINKAGE SelectMap::~SelectMap()
  66. {
  67. if(free)
  68. delete mapInfo;
  69. }
  70. DLL_LINKAGE UpdateStartOptions::UpdateStartOptions(StartInfo &src)
  71. {
  72. options = &src;
  73. free = false;
  74. }
  75. DLL_LINKAGE UpdateStartOptions::UpdateStartOptions()
  76. {
  77. options = nullptr;
  78. free = true;
  79. }
  80. DLL_LINKAGE UpdateStartOptions::~UpdateStartOptions()
  81. {
  82. if(free)
  83. delete options;
  84. }
  85. DLL_LINKAGE void SetCommanderProperty::applyGs(CGameState *gs)
  86. {
  87. CCommanderInstance * commander = gs->getHero(heroid)->commander;
  88. assert (commander);
  89. switch (which)
  90. {
  91. case BONUS:
  92. commander->accumulateBonus (accumulatedBonus);
  93. break;
  94. case SPECIAL_SKILL:
  95. commander->accumulateBonus (accumulatedBonus);
  96. commander->specialSKills.insert (additionalInfo);
  97. break;
  98. case SECONDARY_SKILL:
  99. commander->secondarySkills[additionalInfo] = amount;
  100. break;
  101. case ALIVE:
  102. if (amount)
  103. commander->setAlive(true);
  104. else
  105. commander->setAlive(false);
  106. break;
  107. case EXPERIENCE:
  108. commander->giveStackExp (amount); //TODO: allow setting exp for stacks via netpacks
  109. break;
  110. }
  111. }
  112. DLL_LINKAGE void AddQuest::applyGs(CGameState *gs)
  113. {
  114. assert (vstd::contains(gs->players, player));
  115. auto vec = &gs->players[player].quests;
  116. if (!vstd::contains(*vec, quest))
  117. vec->push_back (quest);
  118. else
  119. logNetwork->warnStream() << "Warning! Attempt to add duplicated quest";
  120. }
  121. DLL_LINKAGE void UpdateArtHandlerLists::applyGs(CGameState *gs)
  122. {
  123. VLC->arth->minors = minors;
  124. VLC->arth->majors = majors;
  125. VLC->arth->treasures = treasures;
  126. VLC->arth->relics = relics;
  127. }
  128. DLL_LINKAGE void UpdateMapEvents::applyGs(CGameState *gs)
  129. {
  130. gs->map->events = events;
  131. }
  132. DLL_LINKAGE void UpdateCastleEvents::applyGs(CGameState *gs)
  133. {
  134. auto t = gs->getTown(town);
  135. t->events = events;
  136. }
  137. DLL_LINKAGE void HeroVisitCastle::applyGs( CGameState *gs )
  138. {
  139. CGHeroInstance *h = gs->getHero(hid);
  140. CGTownInstance *t = gs->getTown(tid);
  141. assert(h);
  142. assert(t);
  143. if(start())
  144. t->setVisitingHero(h);
  145. else
  146. t->setVisitingHero(nullptr);
  147. }
  148. DLL_LINKAGE void ChangeSpells::applyGs( CGameState *gs )
  149. {
  150. CGHeroInstance *hero = gs->getHero(hid);
  151. if(learn)
  152. for(auto sid : spells)
  153. hero->spells.insert(sid);
  154. else
  155. for(auto sid : spells)
  156. hero->spells.erase(sid);
  157. }
  158. DLL_LINKAGE void SetMana::applyGs( CGameState *gs )
  159. {
  160. CGHeroInstance * hero = gs->getHero(hid);
  161. assert(hero);
  162. if(absolute)
  163. hero->mana = val;
  164. else
  165. hero->mana += val;
  166. vstd::amax(hero->mana, 0); //not less than 0
  167. }
  168. DLL_LINKAGE void SetMovePoints::applyGs( CGameState *gs )
  169. {
  170. CGHeroInstance *hero = gs->getHero(hid);
  171. hero->movement = val;
  172. }
  173. DLL_LINKAGE void FoWChange::applyGs( CGameState *gs )
  174. {
  175. TeamState * team = gs->getPlayerTeam(player);
  176. for(int3 t : tiles)
  177. team->fogOfWarMap[t.x][t.y][t.z] = mode;
  178. if (mode == 0) //do not hide too much
  179. {
  180. std::unordered_set<int3, ShashInt3> tilesRevealed;
  181. for (auto & elem : gs->map->objects)
  182. {
  183. const CGObjectInstance *o = elem;
  184. if (o)
  185. {
  186. switch(o->ID)
  187. {
  188. case Obj::HERO:
  189. case Obj::MINE:
  190. case Obj::TOWN:
  191. case Obj::ABANDONED_MINE:
  192. if(vstd::contains(team->players, o->tempOwner)) //check owned observators
  193. gs->getTilesInRange(tiles, o->getSightCenter(), o->getSightRadious(), o->tempOwner, 1);
  194. break;
  195. }
  196. }
  197. }
  198. for(int3 t : tilesRevealed) //probably not the most optimal solution ever
  199. team->fogOfWarMap[t.x][t.y][t.z] = 1;
  200. }
  201. }
  202. DLL_LINKAGE void SetAvailableHeroes::applyGs( CGameState *gs )
  203. {
  204. PlayerState *p = gs->getPlayer(player);
  205. p->availableHeroes.clear();
  206. for (int i = 0; i < GameConstants::AVAILABLE_HEROES_PER_PLAYER; i++)
  207. {
  208. CGHeroInstance *h = (hid[i]>=0 ? gs->hpool.heroesPool[hid[i]].get() : nullptr);
  209. if(h && army[i])
  210. h->setToArmy(army[i]);
  211. p->availableHeroes.push_back(h);
  212. }
  213. }
  214. DLL_LINKAGE void GiveBonus::applyGs( CGameState *gs )
  215. {
  216. CBonusSystemNode *cbsn = nullptr;
  217. switch(who)
  218. {
  219. case HERO:
  220. cbsn = gs->getHero(ObjectInstanceID(id));
  221. break;
  222. case PLAYER:
  223. cbsn = gs->getPlayer(PlayerColor(id));
  224. break;
  225. case TOWN:
  226. cbsn = gs->getTown(ObjectInstanceID(id));
  227. break;
  228. }
  229. assert(cbsn);
  230. auto b = new Bonus(bonus);
  231. cbsn->addNewBonus(b);
  232. std::string &descr = b->description;
  233. if(!bdescr.message.size()
  234. && bonus.source == Bonus::OBJECT
  235. && (bonus.type == Bonus::LUCK || bonus.type == Bonus::MORALE))
  236. {
  237. descr = VLC->generaltexth->arraytxt[bonus.val > 0 ? 110 : 109]; //+/-%d Temporary until next battle"
  238. }
  239. else
  240. {
  241. bdescr.toString(descr);
  242. }
  243. // Some of(?) versions of H3 use %s here instead of %d. Try to replace both of them
  244. boost::replace_first(descr,"%d",boost::lexical_cast<std::string>(std::abs(bonus.val)));
  245. boost::replace_first(descr,"%s",boost::lexical_cast<std::string>(std::abs(bonus.val)));
  246. }
  247. DLL_LINKAGE void ChangeObjPos::applyGs( CGameState *gs )
  248. {
  249. CGObjectInstance *obj = gs->getObjInstance(objid);
  250. if(!obj)
  251. {
  252. logNetwork->errorStream() << "Wrong ChangeObjPos: object " << objid.getNum() << " doesn't exist!";
  253. return;
  254. }
  255. gs->map->removeBlockVisTiles(obj);
  256. obj->pos = nPos;
  257. gs->map->addBlockVisTiles(obj);
  258. }
  259. DLL_LINKAGE void ChangeObjectVisitors::applyGs( CGameState *gs )
  260. {
  261. switch (mode) {
  262. case VISITOR_ADD:
  263. gs->getHero(hero)->visitedObjects.insert(object);
  264. gs->getPlayer(gs->getHero(hero)->tempOwner)->visitedObjects.insert(object);
  265. break;
  266. case VISITOR_CLEAR:
  267. for (CGHeroInstance * hero : gs->map->allHeroes)
  268. hero->visitedObjects.erase(object); // remove visit info from all heroes, including those that are not present on map
  269. break;
  270. case VISITOR_REMOVE:
  271. gs->getHero(hero)->visitedObjects.erase(object);
  272. break;
  273. }
  274. }
  275. DLL_LINKAGE void PlayerEndsGame::applyGs( CGameState *gs )
  276. {
  277. PlayerState *p = gs->getPlayer(player);
  278. if(victoryLossCheckResult.victory()) p->status = EPlayerStatus::WINNER;
  279. else p->status = EPlayerStatus::LOSER;
  280. }
  281. DLL_LINKAGE void RemoveBonus::applyGs( CGameState *gs )
  282. {
  283. CBonusSystemNode *node;
  284. if (who == HERO)
  285. node = gs->getHero(ObjectInstanceID(whoID));
  286. else
  287. node = gs->getPlayer(PlayerColor(whoID));
  288. BonusList &bonuses = node->getExportedBonusList();
  289. for (int i = 0; i < bonuses.size(); i++)
  290. {
  291. Bonus *b = bonuses[i];
  292. if(b->source == source && b->sid == id)
  293. {
  294. bonus = *b; //backup bonus (to show to interfaces later)
  295. node->removeBonus(b);
  296. break;
  297. }
  298. }
  299. }
  300. DLL_LINKAGE void RemoveObject::applyGs( CGameState *gs )
  301. {
  302. CGObjectInstance *obj = gs->getObjInstance(id);
  303. logGlobal->debugStream() << "removing object id=" << id << "; address=" << (intptr_t)obj << "; name=" << obj->getObjectName();
  304. //unblock tiles
  305. gs->map->removeBlockVisTiles(obj);
  306. if(obj->ID==Obj::HERO)
  307. {
  308. CGHeroInstance *h = static_cast<CGHeroInstance*>(obj);
  309. PlayerState *p = gs->getPlayer(h->tempOwner);
  310. gs->map->heroesOnMap -= h;
  311. p->heroes -= h;
  312. h->detachFrom(h->whereShouldBeAttached(gs));
  313. h->tempOwner = PlayerColor::NEUTRAL; //no one owns beaten hero
  314. if(h->visitedTown)
  315. {
  316. if(h->inTownGarrison)
  317. h->visitedTown->garrisonHero = nullptr;
  318. else
  319. h->visitedTown->visitingHero = nullptr;
  320. h->visitedTown = nullptr;
  321. }
  322. //return hero to the pool, so he may reappear in tavern
  323. gs->hpool.heroesPool[h->subID] = h;
  324. if(!vstd::contains(gs->hpool.pavailable, h->subID))
  325. gs->hpool.pavailable[h->subID] = 0xff;
  326. gs->map->objects[id.getNum()] = nullptr;
  327. //If hero on Boat is removed, the Boat disappears
  328. if(h->boat)
  329. {
  330. gs->map->objects[h->boat->id.getNum()].dellNull();
  331. h->boat = nullptr;
  332. }
  333. return;
  334. }
  335. auto quest = dynamic_cast<const IQuestObject *>(obj);
  336. if (quest)
  337. {
  338. gs->map->quests[quest->quest->qid] = nullptr;
  339. for (auto &player : gs->players)
  340. {
  341. for (auto &q : player.second.quests)
  342. {
  343. if (q.obj == obj)
  344. {
  345. q.obj = nullptr;
  346. }
  347. }
  348. }
  349. }
  350. for (TriggeredEvent & event : gs->map->triggeredEvents)
  351. {
  352. auto patcher = [&](EventCondition cond) -> EventExpression::Variant
  353. {
  354. if (cond.object == obj)
  355. {
  356. if (cond.condition == EventCondition::DESTROY)
  357. {
  358. cond.condition = EventCondition::CONST_VALUE;
  359. cond.value = 1; // destroyed object, from now on always fulfilled
  360. }
  361. if (cond.condition == EventCondition::CONTROL)
  362. {
  363. cond.condition = EventCondition::CONST_VALUE;
  364. cond.value = 0; // destroyed object, from now on can not be fulfilled
  365. }
  366. }
  367. return cond;
  368. };
  369. event.trigger = event.trigger.morph(patcher);
  370. }
  371. gs->map->objects[id.getNum()].dellNull();
  372. gs->map->calculateGuardingGreaturePositions();
  373. }
  374. static int getDir(int3 src, int3 dst)
  375. {
  376. int ret = -1;
  377. if(dst.x+1 == src.x && dst.y+1 == src.y) //tl
  378. {
  379. ret = 1;
  380. }
  381. else if(dst.x == src.x && dst.y+1 == src.y) //t
  382. {
  383. ret = 2;
  384. }
  385. else if(dst.x-1 == src.x && dst.y+1 == src.y) //tr
  386. {
  387. ret = 3;
  388. }
  389. else if(dst.x-1 == src.x && dst.y == src.y) //r
  390. {
  391. ret = 4;
  392. }
  393. else if(dst.x-1 == src.x && dst.y-1 == src.y) //br
  394. {
  395. ret = 5;
  396. }
  397. else if(dst.x == src.x && dst.y-1 == src.y) //b
  398. {
  399. ret = 6;
  400. }
  401. else if(dst.x+1 == src.x && dst.y-1 == src.y) //bl
  402. {
  403. ret = 7;
  404. }
  405. else if(dst.x+1 == src.x && dst.y == src.y) //l
  406. {
  407. ret = 8;
  408. }
  409. return ret;
  410. }
  411. void TryMoveHero::applyGs( CGameState *gs )
  412. {
  413. CGHeroInstance *h = gs->getHero(id);
  414. h->movement = movePoints;
  415. if((result == SUCCESS || result == BLOCKING_VISIT || result == EMBARK || result == DISEMBARK) && start != end)
  416. {
  417. auto dir = getDir(start,end);
  418. if(dir > 0 && dir <= 8)
  419. h->moveDir = dir;
  420. //else don`t change move direction - hero might have traversed the subterranean gate, direction should be kept
  421. }
  422. if(result == EMBARK) //hero enters boat at destination tile
  423. {
  424. const TerrainTile &tt = gs->map->getTile(CGHeroInstance::convertPosition(end, false));
  425. assert(tt.visitableObjects.size() >= 1 && tt.visitableObjects.back()->ID == Obj::BOAT); //the only visitable object at destination is Boat
  426. CGBoat *boat = static_cast<CGBoat*>(tt.visitableObjects.back());
  427. gs->map->removeBlockVisTiles(boat); //hero blockvis mask will be used, we don't need to duplicate it with boat
  428. h->boat = boat;
  429. boat->hero = h;
  430. }
  431. else if(result == DISEMBARK) //hero leaves boat to destination tile
  432. {
  433. CGBoat *b = const_cast<CGBoat *>(h->boat);
  434. b->direction = h->moveDir;
  435. b->pos = start;
  436. b->hero = nullptr;
  437. gs->map->addBlockVisTiles(b);
  438. h->boat = nullptr;
  439. }
  440. if(start!=end && (result == SUCCESS || result == TELEPORTATION || result == EMBARK || result == DISEMBARK))
  441. {
  442. gs->map->removeBlockVisTiles(h);
  443. h->pos = end;
  444. if(CGBoat *b = const_cast<CGBoat *>(h->boat))
  445. b->pos = end;
  446. gs->map->addBlockVisTiles(h);
  447. }
  448. for(int3 t : fowRevealed)
  449. gs->getPlayerTeam(h->getOwner())->fogOfWarMap[t.x][t.y][t.z] = 1;
  450. }
  451. DLL_LINKAGE void NewStructures::applyGs( CGameState *gs )
  452. {
  453. CGTownInstance *t = gs->getTown(tid);
  454. for(const auto & id : bid)
  455. {
  456. assert(t->town->buildings.at(id) != nullptr);
  457. t->builtBuildings.insert(id);
  458. }
  459. t->builded = builded;
  460. t->recreateBuildingsBonuses();
  461. }
  462. DLL_LINKAGE void RazeStructures::applyGs( CGameState *gs )
  463. {
  464. CGTownInstance *t = gs->getTown(tid);
  465. for(const auto & id : bid)
  466. {
  467. t->builtBuildings.erase(id);
  468. }
  469. t->destroyed = destroyed; //yeaha
  470. t->recreateBuildingsBonuses();
  471. }
  472. DLL_LINKAGE void SetAvailableCreatures::applyGs( CGameState *gs )
  473. {
  474. CGDwelling *dw = dynamic_cast<CGDwelling*>(gs->getObjInstance(tid));
  475. assert(dw);
  476. dw->creatures = creatures;
  477. }
  478. DLL_LINKAGE void SetHeroesInTown::applyGs( CGameState *gs )
  479. {
  480. CGTownInstance *t = gs->getTown(tid);
  481. CGHeroInstance *v = gs->getHero(visiting),
  482. *g = gs->getHero(garrison);
  483. bool newVisitorComesFromGarrison = v && v == t->garrisonHero;
  484. bool newGarrisonComesFromVisiting = g && g == t->visitingHero;
  485. if(newVisitorComesFromGarrison)
  486. t->setGarrisonedHero(nullptr);
  487. if(newGarrisonComesFromVisiting)
  488. t->setVisitingHero(nullptr);
  489. if(!newGarrisonComesFromVisiting || v)
  490. t->setVisitingHero(v);
  491. if(!newVisitorComesFromGarrison || g)
  492. t->setGarrisonedHero(g);
  493. if(v)
  494. {
  495. gs->map->addBlockVisTiles(v);
  496. }
  497. if(g)
  498. {
  499. gs->map->removeBlockVisTiles(g);
  500. }
  501. }
  502. DLL_LINKAGE void HeroRecruited::applyGs( CGameState *gs )
  503. {
  504. assert(vstd::contains(gs->hpool.heroesPool, hid));
  505. CGHeroInstance *h = gs->hpool.heroesPool[hid];
  506. CGTownInstance *t = gs->getTown(tid);
  507. PlayerState *p = gs->getPlayer(player);
  508. assert(!h->boat);
  509. h->setOwner(player);
  510. h->pos = tile;
  511. h->movement = h->maxMovePoints(true);
  512. gs->hpool.heroesPool.erase(hid);
  513. if(h->id == ObjectInstanceID())
  514. {
  515. h->id = ObjectInstanceID(gs->map->objects.size());
  516. gs->map->objects.push_back(h);
  517. }
  518. else
  519. gs->map->objects[h->id.getNum()] = h;
  520. gs->map->heroesOnMap.push_back(h);
  521. p->heroes.push_back(h);
  522. h->attachTo(p);
  523. h->initObj();
  524. gs->map->addBlockVisTiles(h);
  525. if(t)
  526. {
  527. t->setVisitingHero(h);
  528. }
  529. }
  530. DLL_LINKAGE void GiveHero::applyGs( CGameState *gs )
  531. {
  532. CGHeroInstance *h = gs->getHero(id);
  533. //bonus system
  534. h->detachFrom(&gs->globalEffects);
  535. h->attachTo(gs->getPlayer(player));
  536. h->appearance = VLC->objtypeh->getHandlerFor(Obj::HERO, h->type->heroClass->id)->getTemplates().front();
  537. gs->map->removeBlockVisTiles(h,true);
  538. h->setOwner(player);
  539. h->movement = h->maxMovePoints(true);
  540. gs->map->heroesOnMap.push_back(h);
  541. gs->getPlayer(h->getOwner())->heroes.push_back(h);
  542. gs->map->addBlockVisTiles(h);
  543. h->inTownGarrison = false;
  544. }
  545. DLL_LINKAGE void NewObject::applyGs( CGameState *gs )
  546. {
  547. const TerrainTile &t = gs->map->getTile(pos);
  548. ETerrainType terrainType = t.terType;
  549. CGObjectInstance *o = nullptr;
  550. switch(ID)
  551. {
  552. case Obj::BOAT:
  553. o = new CGBoat();
  554. terrainType = ETerrainType::WATER; //TODO: either boat should only spawn on water, or all water objects should be handled this way
  555. break;
  556. case Obj::MONSTER: //probably more options will be needed
  557. o = new CGCreature();
  558. {
  559. //CStackInstance hlp;
  560. CGCreature *cre = static_cast<CGCreature*>(o);
  561. //cre->slots[0] = hlp;
  562. cre->notGrowingTeam = cre->neverFlees = 0;
  563. cre->character = 2;
  564. cre->gainedArtifact = ArtifactID::NONE;
  565. cre->identifier = -1;
  566. cre->addToSlot(SlotID(0), new CStackInstance(CreatureID(subID), -1)); //add placeholder stack
  567. }
  568. break;
  569. default:
  570. o = new CGObjectInstance();
  571. break;
  572. }
  573. o->ID = ID;
  574. o->subID = subID;
  575. o->pos = pos;
  576. o->appearance = VLC->objtypeh->getHandlerFor(o->ID, o->subID)->getTemplates(terrainType).front();
  577. id = o->id = ObjectInstanceID(gs->map->objects.size());
  578. gs->map->objects.push_back(o);
  579. gs->map->addBlockVisTiles(o);
  580. o->initObj();
  581. gs->map->calculateGuardingGreaturePositions();
  582. logGlobal->debugStream() << "added object id=" << id << "; address=" << (intptr_t)o << "; name=" << o->getObjectName();
  583. }
  584. DLL_LINKAGE void NewArtifact::applyGs( CGameState *gs )
  585. {
  586. assert(!vstd::contains(gs->map->artInstances, art));
  587. gs->map->addNewArtifactInstance(art);
  588. assert(!art->getParentNodes().size());
  589. art->setType(art->artType);
  590. if (CCombinedArtifactInstance* cart = dynamic_cast<CCombinedArtifactInstance*>(art.get()))
  591. cart->createConstituents();
  592. }
  593. DLL_LINKAGE const CStackInstance * StackLocation::getStack()
  594. {
  595. if(!army->hasStackAtSlot(slot))
  596. {
  597. logNetwork->warnStream() << "Warning: " << army->nodeName() << " don't have a stack at slot " << slot;
  598. return nullptr;
  599. }
  600. return &army->getStack(slot);
  601. }
  602. struct ObjectRetriever : boost::static_visitor<const CArmedInstance *>
  603. {
  604. const CArmedInstance * operator()(const ConstTransitivePtr<CGHeroInstance> &h) const
  605. {
  606. return h;
  607. }
  608. const CArmedInstance * operator()(const ConstTransitivePtr<CStackInstance> &s) const
  609. {
  610. return s->armyObj;
  611. }
  612. };
  613. template <typename T>
  614. struct GetBase : boost::static_visitor<T*>
  615. {
  616. template <typename TArg>
  617. T * operator()(TArg &arg) const
  618. {
  619. return arg;
  620. }
  621. };
  622. DLL_LINKAGE void ArtifactLocation::removeArtifact()
  623. {
  624. CArtifactInstance *a = getArt();
  625. assert(a);
  626. a->removeFrom(*this);
  627. }
  628. DLL_LINKAGE const CArmedInstance * ArtifactLocation::relatedObj() const
  629. {
  630. return boost::apply_visitor(ObjectRetriever(), artHolder);
  631. }
  632. DLL_LINKAGE PlayerColor ArtifactLocation::owningPlayer() const
  633. {
  634. auto obj = relatedObj();
  635. return obj ? obj->tempOwner : PlayerColor::NEUTRAL;
  636. }
  637. DLL_LINKAGE CArtifactSet *ArtifactLocation::getHolderArtSet()
  638. {
  639. return boost::apply_visitor(GetBase<CArtifactSet>(), artHolder);
  640. }
  641. DLL_LINKAGE CBonusSystemNode *ArtifactLocation::getHolderNode()
  642. {
  643. return boost::apply_visitor(GetBase<CBonusSystemNode>(), artHolder);
  644. }
  645. DLL_LINKAGE const CArtifactInstance *ArtifactLocation::getArt() const
  646. {
  647. const ArtSlotInfo *s = getSlot();
  648. if(s && s->artifact)
  649. {
  650. if(!s->locked)
  651. return s->artifact;
  652. else
  653. {
  654. logNetwork->warnStream() << "ArtifactLocation::getArt: That location is locked!";
  655. return nullptr;
  656. }
  657. }
  658. return nullptr;
  659. }
  660. DLL_LINKAGE const CArtifactSet * ArtifactLocation::getHolderArtSet() const
  661. {
  662. ArtifactLocation *t = const_cast<ArtifactLocation*>(this);
  663. return t->getHolderArtSet();
  664. }
  665. DLL_LINKAGE const CBonusSystemNode * ArtifactLocation::getHolderNode() const
  666. {
  667. ArtifactLocation *t = const_cast<ArtifactLocation*>(this);
  668. return t->getHolderNode();
  669. }
  670. DLL_LINKAGE CArtifactInstance *ArtifactLocation::getArt()
  671. {
  672. const ArtifactLocation *t = this;
  673. return const_cast<CArtifactInstance*>(t->getArt());
  674. }
  675. DLL_LINKAGE const ArtSlotInfo *ArtifactLocation::getSlot() const
  676. {
  677. return getHolderArtSet()->getSlot(slot);
  678. }
  679. DLL_LINKAGE void ChangeStackCount::applyGs( CGameState *gs )
  680. {
  681. if(absoluteValue)
  682. sl.army->setStackCount(sl.slot, count);
  683. else
  684. sl.army->changeStackCount(sl.slot, count);
  685. }
  686. DLL_LINKAGE void SetStackType::applyGs( CGameState *gs )
  687. {
  688. sl.army->setStackType(sl.slot, type);
  689. }
  690. DLL_LINKAGE void EraseStack::applyGs( CGameState *gs )
  691. {
  692. sl.army->eraseStack(sl.slot);
  693. }
  694. DLL_LINKAGE void SwapStacks::applyGs( CGameState *gs )
  695. {
  696. CStackInstance *s1 = sl1.army->detachStack(sl1.slot),
  697. *s2 = sl2.army->detachStack(sl2.slot);
  698. sl2.army->putStack(sl2.slot, s1);
  699. sl1.army->putStack(sl1.slot, s2);
  700. }
  701. DLL_LINKAGE void InsertNewStack::applyGs( CGameState *gs )
  702. {
  703. auto s = new CStackInstance(stack.type, stack.count);
  704. sl.army->putStack(sl.slot, s);
  705. }
  706. DLL_LINKAGE void RebalanceStacks::applyGs( CGameState *gs )
  707. {
  708. const CCreature *srcType = src.army->getCreature(src.slot);
  709. TQuantity srcCount = src.army->getStackCount(src.slot);
  710. bool stackExp = VLC->modh->modules.STACK_EXP;
  711. if(srcCount == count) //moving whole stack
  712. {
  713. if(const CCreature *c = dst.army->getCreature(dst.slot)) //stack at dest -> merge
  714. {
  715. assert(c == srcType);
  716. UNUSED(c);
  717. auto alHere = ArtifactLocation (src.getStack(), ArtifactPosition::CREATURE_SLOT);
  718. auto alDest = ArtifactLocation (dst.getStack(), ArtifactPosition::CREATURE_SLOT);
  719. auto artHere = alHere.getArt();
  720. auto artDest = alDest.getArt();
  721. if (artHere)
  722. {
  723. if (alDest.getArt())
  724. {
  725. auto hero = dynamic_cast <CGHeroInstance *>(src.army.get());
  726. if (hero)
  727. {
  728. artDest->move (alDest, ArtifactLocation (hero, alDest.getArt()->firstBackpackSlot (hero)));
  729. }
  730. //else - artifact cna be lost :/
  731. else
  732. {
  733. logNetwork->warnStream() << "Artifact is present at destination slot!";
  734. }
  735. artHere->move (alHere, alDest);
  736. //TODO: choose from dialog
  737. }
  738. else //just move to the other slot before stack gets erased
  739. {
  740. artHere->move (alHere, alDest);
  741. }
  742. }
  743. if (stackExp)
  744. {
  745. ui64 totalExp = srcCount * src.army->getStackExperience(src.slot) + dst.army->getStackCount(dst.slot) * dst.army->getStackExperience(dst.slot);
  746. src.army->eraseStack(src.slot);
  747. dst.army->changeStackCount(dst.slot, count);
  748. dst.army->setStackExp(dst.slot, totalExp /(dst.army->getStackCount(dst.slot))); //mean
  749. }
  750. else
  751. {
  752. src.army->eraseStack(src.slot);
  753. dst.army->changeStackCount(dst.slot, count);
  754. }
  755. }
  756. else //move stack to an empty slot, no exp change needed
  757. {
  758. CStackInstance *stackDetached = src.army->detachStack(src.slot);
  759. dst.army->putStack(dst.slot, stackDetached);
  760. }
  761. }
  762. else
  763. {
  764. if(const CCreature *c = dst.army->getCreature(dst.slot)) //stack at dest -> rebalance
  765. {
  766. assert(c == srcType);
  767. UNUSED(c);
  768. if (stackExp)
  769. {
  770. ui64 totalExp = srcCount * src.army->getStackExperience(src.slot) + dst.army->getStackCount(dst.slot) * dst.army->getStackExperience(dst.slot);
  771. src.army->changeStackCount(src.slot, -count);
  772. dst.army->changeStackCount(dst.slot, count);
  773. dst.army->setStackExp(dst.slot, totalExp /(src.army->getStackCount(src.slot) + dst.army->getStackCount(dst.slot))); //mean
  774. }
  775. else
  776. {
  777. src.army->changeStackCount(src.slot, -count);
  778. dst.army->changeStackCount(dst.slot, count);
  779. }
  780. }
  781. else //split stack to an empty slot
  782. {
  783. src.army->changeStackCount(src.slot, -count);
  784. dst.army->addToSlot(dst.slot, srcType->idNumber, count, false);
  785. if (stackExp)
  786. dst.army->setStackExp(dst.slot, src.army->getStackExperience(src.slot));
  787. }
  788. }
  789. CBonusSystemNode::treeHasChanged();
  790. }
  791. DLL_LINKAGE void PutArtifact::applyGs( CGameState *gs )
  792. {
  793. assert(art->canBePutAt(al));
  794. art->putAt(al);
  795. //al.hero->putArtifact(al.slot, art);
  796. }
  797. DLL_LINKAGE void EraseArtifact::applyGs( CGameState *gs )
  798. {
  799. al.removeArtifact();
  800. }
  801. DLL_LINKAGE void MoveArtifact::applyGs( CGameState *gs )
  802. {
  803. CArtifactInstance *a = src.getArt();
  804. if(dst.slot < GameConstants::BACKPACK_START)
  805. assert(!dst.getArt());
  806. a->move(src, dst);
  807. //TODO what'll happen if Titan's thunder is equipped by pickin git up or the start of game?
  808. if (a->artType->id == ArtifactID::TITANS_THUNDER && dst.slot == ArtifactPosition::RIGHT_HAND) //Titan's Thunder creates new spellbook on equip
  809. {
  810. auto hPtr = boost::get<ConstTransitivePtr<CGHeroInstance> >(&dst.artHolder);
  811. if(hPtr)
  812. {
  813. CGHeroInstance *h = *hPtr;
  814. if(h && !h->hasSpellbook())
  815. gs->giveHeroArtifact(h, ArtifactID::SPELLBOOK);
  816. }
  817. }
  818. }
  819. DLL_LINKAGE void AssembledArtifact::applyGs( CGameState *gs )
  820. {
  821. CArtifactSet *artSet = al.getHolderArtSet();
  822. const CArtifactInstance *transformedArt = al.getArt();
  823. assert(transformedArt);
  824. assert(vstd::contains(transformedArt->assemblyPossibilities(artSet), builtArt));
  825. UNUSED(transformedArt);
  826. auto combinedArt = new CCombinedArtifactInstance(builtArt);
  827. gs->map->addNewArtifactInstance(combinedArt);
  828. //retrieve all constituents
  829. for(const CArtifact * constituent : *builtArt->constituents)
  830. {
  831. ArtifactPosition pos = artSet->getArtPos(constituent->id);
  832. assert(pos >= 0);
  833. CArtifactInstance *constituentInstance = artSet->getArt(pos);
  834. //move constituent from hero to be part of new, combined artifact
  835. constituentInstance->removeFrom(ArtifactLocation(al.artHolder, pos));
  836. combinedArt->addAsConstituent(constituentInstance, pos);
  837. if(!vstd::contains(combinedArt->artType->possibleSlots[artSet->bearerType()], al.slot) && vstd::contains(combinedArt->artType->possibleSlots[artSet->bearerType()], pos))
  838. al.slot = pos;
  839. }
  840. //put new combined artifacts
  841. combinedArt->putAt(al);
  842. }
  843. DLL_LINKAGE void DisassembledArtifact::applyGs( CGameState *gs )
  844. {
  845. CCombinedArtifactInstance *disassembled = dynamic_cast<CCombinedArtifactInstance*>(al.getArt());
  846. assert(disassembled);
  847. std::vector<CCombinedArtifactInstance::ConstituentInfo> constituents = disassembled->constituentsInfo;
  848. disassembled->removeFrom(al);
  849. for(CCombinedArtifactInstance::ConstituentInfo &ci : constituents)
  850. {
  851. ArtifactLocation constituentLoc = al;
  852. constituentLoc.slot = (ci.slot >= 0 ? ci.slot : al.slot); //-1 is slot of main constituent -> it'll replace combined artifact in its pos
  853. disassembled->detachFrom(ci.art);
  854. ci.art->putAt(constituentLoc);
  855. }
  856. gs->map->eraseArtifactInstance(disassembled);
  857. }
  858. DLL_LINKAGE void HeroVisit::applyGs( CGameState *gs )
  859. {
  860. }
  861. DLL_LINKAGE void SetAvailableArtifacts::applyGs( CGameState *gs )
  862. {
  863. if(id >= 0)
  864. {
  865. if(CGBlackMarket *bm = dynamic_cast<CGBlackMarket*>(gs->map->objects[id].get()))
  866. {
  867. bm->artifacts = arts;
  868. }
  869. else
  870. {
  871. logNetwork->errorStream() << "Wrong black market id!";
  872. }
  873. }
  874. else
  875. {
  876. CGTownInstance::merchantArtifacts = arts;
  877. }
  878. }
  879. DLL_LINKAGE void NewTurn::applyGs( CGameState *gs )
  880. {
  881. gs->day = day;
  882. for(NewTurn::Hero h : heroes) //give mana/movement point
  883. {
  884. CGHeroInstance *hero = gs->getHero(h.id);
  885. hero->movement = h.move;
  886. hero->mana = h.mana;
  887. }
  888. for(auto i = res.cbegin(); i != res.cend(); i++)
  889. {
  890. assert(i->first < PlayerColor::PLAYER_LIMIT);
  891. gs->getPlayer(i->first)->resources = i->second;
  892. }
  893. for(auto creatureSet : cres) //set available creatures in towns
  894. creatureSet.second.applyGs(gs);
  895. gs->globalEffects.popBonuses(Bonus::OneDay); //works for children -> all game objs
  896. if(gs->getDate(Date::DAY_OF_WEEK) == 1) //new week
  897. gs->globalEffects.popBonuses(Bonus::OneWeek); //works for children -> all game objs
  898. //TODO not really a single root hierarchy, what about bonuses placed elsewhere? [not an issue with H3 mechanics but in the future...]
  899. for(CGTownInstance* t : gs->map->towns)
  900. t->builded = 0;
  901. }
  902. DLL_LINKAGE void SetObjectProperty::applyGs( CGameState *gs )
  903. {
  904. CGObjectInstance *obj = gs->getObjInstance(id);
  905. if(!obj)
  906. {
  907. logNetwork->errorStream() << "Wrong object ID - property cannot be set!";
  908. return;
  909. }
  910. CArmedInstance *cai = dynamic_cast<CArmedInstance *>(obj);
  911. if(what == ObjProperty::OWNER && cai)
  912. {
  913. if(obj->ID == Obj::TOWN)
  914. {
  915. CGTownInstance *t = static_cast<CGTownInstance*>(obj);
  916. if(t->tempOwner < PlayerColor::PLAYER_LIMIT)
  917. gs->getPlayer(t->tempOwner)->towns -= t;
  918. if(val < PlayerColor::PLAYER_LIMIT_I)
  919. gs->getPlayer(PlayerColor(val))->towns.push_back(t);
  920. }
  921. CBonusSystemNode *nodeToMove = cai->whatShouldBeAttached();
  922. nodeToMove->detachFrom(cai->whereShouldBeAttached(gs));
  923. obj->setProperty(what,val);
  924. nodeToMove->attachTo(cai->whereShouldBeAttached(gs));
  925. }
  926. else //not an armed instance
  927. {
  928. obj->setProperty(what,val);
  929. }
  930. }
  931. DLL_LINKAGE void HeroLevelUp::applyGs( CGameState *gs )
  932. {
  933. CGHeroInstance * h = gs->getHero(hero->id);
  934. h->levelUp(skills);
  935. }
  936. DLL_LINKAGE void CommanderLevelUp::applyGs (CGameState *gs)
  937. {
  938. CCommanderInstance * commander = gs->getHero(hero->id)->commander;
  939. assert (commander);
  940. commander->levelUp();
  941. }
  942. DLL_LINKAGE void BattleStart::applyGs( CGameState *gs )
  943. {
  944. gs->curB = info;
  945. gs->curB->localInit();
  946. }
  947. DLL_LINKAGE void BattleNextRound::applyGs( CGameState *gs )
  948. {
  949. for (int i = 0; i < 2; ++i)
  950. {
  951. gs->curB->sides[i].castSpellsCount = 0;
  952. vstd::amax(--gs->curB->sides[i].enchanterCounter, 0);
  953. }
  954. gs->curB->round = round;
  955. for(CStack *s : gs->curB->stacks)
  956. {
  957. s->state -= EBattleStackState::DEFENDING;
  958. s->state -= EBattleStackState::WAITING;
  959. s->state -= EBattleStackState::MOVED;
  960. s->state -= EBattleStackState::HAD_MORALE;
  961. s->state -= EBattleStackState::FEAR;
  962. s->state -= EBattleStackState::DRAINED_MANA;
  963. s->counterAttacks = 1 + s->valOfBonuses(Bonus::ADDITIONAL_RETALIATION);
  964. // new turn effects
  965. s->battleTurnPassed();
  966. }
  967. for(auto &obst : gs->curB->obstacles)
  968. obst->battleTurnPassed();
  969. }
  970. DLL_LINKAGE void BattleSetActiveStack::applyGs( CGameState *gs )
  971. {
  972. gs->curB->activeStack = stack;
  973. CStack *st = gs->curB->getStack(stack);
  974. //remove bonuses that last until when stack gets new turn
  975. st->getBonusList().remove_if(Bonus::UntilGetsTurn);
  976. if(vstd::contains(st->state,EBattleStackState::MOVED)) //if stack is moving second time this turn it must had a high morale bonus
  977. st->state.insert(EBattleStackState::HAD_MORALE);
  978. }
  979. DLL_LINKAGE void BattleTriggerEffect::applyGs( CGameState *gs )
  980. {
  981. CStack *st = gs->curB->getStack(stackID);
  982. switch (effect)
  983. {
  984. case Bonus::HP_REGENERATION:
  985. st->firstHPleft += val;
  986. vstd::amin (st->firstHPleft, (ui32)st->MaxHealth());
  987. break;
  988. case Bonus::MANA_DRAIN:
  989. {
  990. CGHeroInstance * h = gs->getHero(ObjectInstanceID(additionalInfo));
  991. st->state.insert (EBattleStackState::DRAINED_MANA);
  992. h->mana -= val;
  993. vstd::amax(h->mana, 0);
  994. break;
  995. }
  996. case Bonus::POISON:
  997. {
  998. Bonus * b = st->getBonusLocalFirst(Selector::source(Bonus::SPELL_EFFECT, 71)
  999. .And(Selector::type(Bonus::STACK_HEALTH)));
  1000. if (b)
  1001. b->val = val;
  1002. break;
  1003. }
  1004. case Bonus::ENCHANTER:
  1005. break;
  1006. case Bonus::FEAR:
  1007. st->state.insert(EBattleStackState::FEAR);
  1008. break;
  1009. default:
  1010. logNetwork->warnStream() << "Unrecognized trigger effect type "<< type;
  1011. }
  1012. }
  1013. DLL_LINKAGE void BattleObstaclePlaced::applyGs( CGameState *gs )
  1014. {
  1015. gs->curB->obstacles.push_back(obstacle);
  1016. }
  1017. void BattleResult::applyGs( CGameState *gs )
  1018. {
  1019. for (CStack *s : gs->curB->stacks)
  1020. {
  1021. if (s->base && s->base->armyObj && vstd::contains(s->state, EBattleStackState::SUMMONED))
  1022. {
  1023. //stack with SUMMONED flag but coming from garrison -> most likely resurrected, needs to be removed
  1024. assert(&s->base->armyObj->getStack(s->slot) == s->base);
  1025. const_cast<CArmedInstance*>(s->base->armyObj)->eraseStack(s->slot);
  1026. }
  1027. }
  1028. for (auto & elem : gs->curB->stacks)
  1029. delete elem;
  1030. for(int i = 0; i < 2; ++i)
  1031. {
  1032. if(auto h = gs->curB->battleGetFightingHero(i))
  1033. {
  1034. h->popBonuses(Bonus::OneBattle); //remove any "until next battle" bonuses
  1035. if (h->commander && h->commander->alive)
  1036. {
  1037. for (auto art : h->commander->artifactsWorn) //increment bonuses for commander artifacts
  1038. {
  1039. art.second.artifact->artType->levelUpArtifact (art.second.artifact);
  1040. }
  1041. }
  1042. }
  1043. }
  1044. if(VLC->modh->modules.STACK_EXP)
  1045. {
  1046. for(int i = 0; i < 2; i++)
  1047. if(exp[i])
  1048. gs->curB->battleGetArmyObject(i)->giveStackExp(exp[i]);
  1049. CBonusSystemNode::treeHasChanged();
  1050. }
  1051. for(int i = 0; i < 2; i++)
  1052. gs->curB->battleGetArmyObject(i)->battle = nullptr;
  1053. gs->curB.dellNull();
  1054. }
  1055. void BattleStackMoved::applyGs( CGameState *gs )
  1056. {
  1057. CStack *s = gs->curB->getStack(stack);
  1058. assert(s);
  1059. BattleHex dest = tilesToMove.back();
  1060. //if unit ended movement on quicksands that were created by enemy, that quicksand patch becomes visible for owner
  1061. for(auto &oi : gs->curB->obstacles)
  1062. {
  1063. if(oi->obstacleType == CObstacleInstance::QUICKSAND
  1064. && vstd::contains(oi->getAffectedTiles(), tilesToMove.back()))
  1065. {
  1066. SpellCreatedObstacle *sands = dynamic_cast<SpellCreatedObstacle*>(oi.get());
  1067. assert(sands);
  1068. if(sands->casterSide != !s->attackerOwned)
  1069. sands->visibleForAnotherSide = true;
  1070. }
  1071. }
  1072. s->position = dest;
  1073. }
  1074. DLL_LINKAGE void BattleStackAttacked::applyGs( CGameState *gs )
  1075. {
  1076. CStack * at = gs->curB->getStack(stackAttacked);
  1077. assert(at);
  1078. at->count = newAmount;
  1079. at->firstHPleft = newHP;
  1080. if(killed())
  1081. {
  1082. at->state -= EBattleStackState::ALIVE;
  1083. }
  1084. //life drain handling
  1085. for (auto & elem : healedStacks)
  1086. {
  1087. elem.applyGs(gs);
  1088. }
  1089. if (willRebirth())
  1090. {
  1091. at->casts--;
  1092. at->state.insert(EBattleStackState::ALIVE); //hmm?
  1093. }
  1094. if (cloneKilled())
  1095. {
  1096. //"hide" killed creatures instead so we keep info about it
  1097. at->state.insert(EBattleStackState::DEAD_CLONE);
  1098. }
  1099. }
  1100. DLL_LINKAGE void BattleAttack::applyGs( CGameState *gs )
  1101. {
  1102. CStack *attacker = gs->curB->getStack(stackAttacking);
  1103. if(counter())
  1104. attacker->counterAttacks--;
  1105. if(shot())
  1106. {
  1107. //don't remove ammo if we have a working ammo cart
  1108. bool hasAmmoCart = false;
  1109. for(const CStack * st : gs->curB->stacks)
  1110. {
  1111. if(st->owner == attacker->owner && st->getCreature()->idNumber == CreatureID::AMMO_CART && st->alive())
  1112. {
  1113. hasAmmoCart = true;
  1114. break;
  1115. }
  1116. }
  1117. if (!hasAmmoCart)
  1118. {
  1119. attacker->shots--;
  1120. }
  1121. }
  1122. for(BattleStackAttacked stackAttacked : bsa)
  1123. stackAttacked.applyGs(gs);
  1124. attacker->getBonusList().remove_if(Bonus::UntilAttack);
  1125. for(auto & elem : bsa)
  1126. {
  1127. CStack * stack = gs->curB->getStack(elem.stackAttacked, false);
  1128. if (stack) //cloned stack is already gone
  1129. stack->getBonusList().remove_if(Bonus::UntilBeingAttacked);
  1130. }
  1131. }
  1132. DLL_LINKAGE void StartAction::applyGs( CGameState *gs )
  1133. {
  1134. CStack *st = gs->curB->getStack(ba.stackNumber);
  1135. if(ba.actionType == Battle::END_TACTIC_PHASE)
  1136. {
  1137. gs->curB->tacticDistance = 0;
  1138. return;
  1139. }
  1140. if(gs->curB->tacticDistance)
  1141. {
  1142. // moves in tactics phase do not affect creature status
  1143. // (tactics stack queue is managed by client)
  1144. return;
  1145. }
  1146. if(ba.actionType != Battle::HERO_SPELL) //don't check for stack if it's custom action by hero
  1147. {
  1148. assert(st);
  1149. }
  1150. else
  1151. {
  1152. gs->curB->sides[ba.side].usedSpellsHistory.push_back(SpellID(ba.additionalInfo).toSpell());
  1153. }
  1154. switch(ba.actionType)
  1155. {
  1156. case Battle::DEFEND:
  1157. st->state.insert(EBattleStackState::DEFENDING);
  1158. break;
  1159. case Battle::WAIT:
  1160. st->state.insert(EBattleStackState::WAITING);
  1161. return;
  1162. case Battle::HERO_SPELL: //no change in current stack state
  1163. return;
  1164. default: //any active stack action - attack, catapult, heal, spell...
  1165. st->state.insert(EBattleStackState::MOVED);
  1166. break;
  1167. }
  1168. if(st)
  1169. st->state -= EBattleStackState::WAITING; //if stack was waiting it has made move, so it won't be "waiting" anymore (if the action was WAIT, then we have returned)
  1170. }
  1171. DLL_LINKAGE void BattleSpellCast::applyGs( CGameState *gs )
  1172. {
  1173. assert(gs->curB);
  1174. const CSpell * spell = SpellID(id).toSpell();
  1175. spell->applyBattle(gs->curB, this);
  1176. }
  1177. void actualizeEffect(CStack * s, const Bonus & ef)
  1178. {
  1179. for(Bonus *stackBonus : s->getBonusList()) //TODO: optimize
  1180. {
  1181. if(stackBonus->source == Bonus::SPELL_EFFECT && stackBonus->type == ef.type && stackBonus->subtype == ef.subtype)
  1182. {
  1183. stackBonus->turnsRemain = std::max(stackBonus->turnsRemain, ef.turnsRemain);
  1184. }
  1185. }
  1186. CBonusSystemNode::treeHasChanged();
  1187. }
  1188. void actualizeEffect(CStack * s, const std::vector<Bonus> & ef)
  1189. {
  1190. //actualizing features vector
  1191. for(const Bonus &fromEffect : ef)
  1192. {
  1193. actualizeEffect(s, fromEffect);
  1194. }
  1195. }
  1196. DLL_LINKAGE void SetStackEffect::applyGs( CGameState *gs )
  1197. {
  1198. if (effect.empty())
  1199. {
  1200. logGlobal->errorStream() << "Trying to apply SetStackEffect with no effects";
  1201. return;
  1202. }
  1203. int spellid = effect.begin()->sid; //effects' source ID
  1204. for(ui32 id : stacks)
  1205. {
  1206. CStack *s = gs->curB->getStack(id);
  1207. if(s)
  1208. {
  1209. if(spellid == SpellID::DISRUPTING_RAY || spellid == SpellID::ACID_BREATH_DEFENSE || !s->hasBonus(Selector::source(Bonus::SPELL_EFFECT, spellid)))//disrupting ray or acid breath or not on the list - just add
  1210. {
  1211. for(Bonus &fromEffect : effect)
  1212. {
  1213. logBonus->traceStream() << s->nodeName() << " receives a new bonus: " << fromEffect.Description();
  1214. s->addNewBonus( new Bonus(fromEffect));
  1215. }
  1216. }
  1217. else //just actualize
  1218. {
  1219. actualizeEffect(s, effect);
  1220. }
  1221. }
  1222. else
  1223. logNetwork->errorStream() << "Cannot find stack " << id;
  1224. }
  1225. typedef std::pair<ui32, Bonus> p;
  1226. for(p para : uniqueBonuses)
  1227. {
  1228. CStack *s = gs->curB->getStack(para.first);
  1229. if (s)
  1230. {
  1231. if (!s->hasBonus(Selector::source(Bonus::SPELL_EFFECT, spellid).And(Selector::typeSubtype(para.second.type, para.second.subtype))))
  1232. s->addNewBonus(new Bonus(para.second));
  1233. else
  1234. actualizeEffect(s, effect);
  1235. }
  1236. else
  1237. logNetwork->errorStream() << "Cannot find stack " << para.first;
  1238. }
  1239. }
  1240. DLL_LINKAGE void StacksInjured::applyGs( CGameState *gs )
  1241. {
  1242. for(BattleStackAttacked stackAttacked : stacks)
  1243. stackAttacked.applyGs(gs);
  1244. }
  1245. DLL_LINKAGE void StacksHealedOrResurrected::applyGs( CGameState *gs )
  1246. {
  1247. for(auto & elem : healedStacks)
  1248. {
  1249. CStack * changedStack = gs->curB->getStack(elem.stackID, false);
  1250. //checking if we resurrect a stack that is under a living stack
  1251. auto accessibility = gs->curB->getAccesibility();
  1252. if(!changedStack->alive() && !accessibility.accessible(changedStack->position, changedStack))
  1253. {
  1254. logNetwork->errorStream() << "Cannot resurrect " << changedStack->nodeName() << " because hex " << changedStack->position << " is occupied!";
  1255. return; //position is already occupied
  1256. }
  1257. //applying changes
  1258. bool resurrected = !changedStack->alive(); //indicates if stack is resurrected or just healed
  1259. if(resurrected)
  1260. {
  1261. changedStack->state.insert(EBattleStackState::ALIVE);
  1262. }
  1263. //int missingHPfirst = changedStack->MaxHealth() - changedStack->firstHPleft;
  1264. int res = std::min( elem.healedHP / changedStack->MaxHealth() , changedStack->baseAmount - changedStack->count );
  1265. changedStack->count += res;
  1266. if(elem.lowLevelResurrection)
  1267. changedStack->resurrected += res;
  1268. changedStack->firstHPleft += elem.healedHP - res * changedStack->MaxHealth();
  1269. if(changedStack->firstHPleft > changedStack->MaxHealth())
  1270. {
  1271. changedStack->firstHPleft -= changedStack->MaxHealth();
  1272. if(changedStack->baseAmount > changedStack->count)
  1273. {
  1274. changedStack->count += 1;
  1275. }
  1276. }
  1277. vstd::amin(changedStack->firstHPleft, changedStack->MaxHealth());
  1278. //removal of negative effects
  1279. if(resurrected)
  1280. {
  1281. // for (BonusList::iterator it = changedStack->bonuses.begin(); it != changedStack->bonuses.end(); it++)
  1282. // {
  1283. // if(VLC->spellh->spells[(*it)->sid]->positiveness < 0)
  1284. // {
  1285. // changedStack->bonuses.erase(it);
  1286. // }
  1287. // }
  1288. //removing all features from negative spells
  1289. const BonusList tmpFeatures = changedStack->getBonusList();
  1290. //changedStack->bonuses.clear();
  1291. for(Bonus *b : tmpFeatures)
  1292. {
  1293. const CSpell *s = b->sourceSpell();
  1294. if(s && s->isNegative())
  1295. {
  1296. changedStack->removeBonus(b);
  1297. }
  1298. }
  1299. }
  1300. }
  1301. }
  1302. DLL_LINKAGE void ObstaclesRemoved::applyGs( CGameState *gs )
  1303. {
  1304. if(gs->curB) //if there is a battle
  1305. {
  1306. for(const si32 rem_obst :obstacles)
  1307. {
  1308. for(int i=0; i<gs->curB->obstacles.size(); ++i)
  1309. {
  1310. if(gs->curB->obstacles[i]->uniqueID == rem_obst) //remove this obstacle
  1311. {
  1312. gs->curB->obstacles.erase(gs->curB->obstacles.begin() + i);
  1313. break;
  1314. }
  1315. }
  1316. }
  1317. }
  1318. }
  1319. DLL_LINKAGE CatapultAttack::CatapultAttack()
  1320. {
  1321. type = 3015;
  1322. }
  1323. DLL_LINKAGE CatapultAttack::~CatapultAttack()
  1324. {
  1325. }
  1326. DLL_LINKAGE void CatapultAttack::applyGs( CGameState *gs )
  1327. {
  1328. if(gs->curB && gs->curB->town && gs->curB->town->fortLevel() != CGTownInstance::NONE) //if there is a battle and it's a siege
  1329. {
  1330. for(const auto &it :attackedParts)
  1331. {
  1332. gs->curB->si.wallState[it.attackedPart] =
  1333. SiegeInfo::applyDamage(EWallState::EWallState(gs->curB->si.wallState[it.attackedPart]), it.damageDealt);
  1334. }
  1335. }
  1336. }
  1337. DLL_LINKAGE std::string CatapultAttack::AttackInfo::toString() const
  1338. {
  1339. return boost::str(boost::format("{AttackInfo: destinationTile '%d', attackedPart '%d', damageDealt '%d'}")
  1340. % destinationTile % static_cast<int>(attackedPart) % static_cast<int>(damageDealt));
  1341. }
  1342. DLL_LINKAGE std::ostream & operator<<(std::ostream & out, const CatapultAttack::AttackInfo & attackInfo)
  1343. {
  1344. return out << attackInfo.toString();
  1345. }
  1346. DLL_LINKAGE std::string CatapultAttack::toString() const
  1347. {
  1348. return boost::str(boost::format("{CatapultAttack: attackedParts '%s', attacker '%d'}") % attackedParts % attacker);
  1349. }
  1350. DLL_LINKAGE void BattleStacksRemoved::applyGs( CGameState *gs )
  1351. {
  1352. if(!gs->curB)
  1353. return;
  1354. for(ui32 rem_stack : stackIDs)
  1355. {
  1356. for(int b=0; b<gs->curB->stacks.size(); ++b) //find it in vector of stacks
  1357. {
  1358. if(gs->curB->stacks[b]->ID == rem_stack) //if found
  1359. {
  1360. CStack *toRemove = gs->curB->stacks[b];
  1361. gs->curB->stacks.erase(gs->curB->stacks.begin() + b); //remove
  1362. toRemove->detachFromAll();
  1363. delete toRemove;
  1364. break;
  1365. }
  1366. }
  1367. }
  1368. }
  1369. DLL_LINKAGE void BattleStackAdded::applyGs(CGameState *gs)
  1370. {
  1371. newStackID = 0;
  1372. if (!BattleHex(pos).isValid())
  1373. {
  1374. logNetwork->warnStream() << "No place found for new stack!";
  1375. return;
  1376. }
  1377. CStackBasicDescriptor csbd(creID, amount);
  1378. CStack * addedStack = gs->curB->generateNewStack(csbd, attacker, SlotID(255), pos); //TODO: netpacks?
  1379. if (summoned)
  1380. addedStack->state.insert(EBattleStackState::SUMMONED);
  1381. gs->curB->localInitStack(addedStack);
  1382. gs->curB->stacks.push_back(addedStack); //the stack is not "SUMMONED", it is permanent
  1383. newStackID = addedStack->ID;
  1384. }
  1385. DLL_LINKAGE void BattleSetStackProperty::applyGs(CGameState *gs)
  1386. {
  1387. CStack * stack = gs->curB->getStack(stackID);
  1388. switch (which)
  1389. {
  1390. case CASTS:
  1391. {
  1392. if (absolute)
  1393. stack->casts = val;
  1394. else
  1395. stack->casts += val;
  1396. vstd::amax(stack->casts, 0);
  1397. break;
  1398. }
  1399. case ENCHANTER_COUNTER:
  1400. {
  1401. auto & counter = gs->curB->sides[gs->curB->whatSide(stack->owner)].enchanterCounter;
  1402. if (absolute)
  1403. counter = val;
  1404. else
  1405. counter += val;
  1406. vstd::amax(counter, 0);
  1407. break;
  1408. }
  1409. case UNBIND:
  1410. {
  1411. stack->popBonuses(Selector::type(Bonus::BIND_EFFECT));
  1412. break;
  1413. }
  1414. case CLONED:
  1415. {
  1416. stack->state.insert(EBattleStackState::CLONED);
  1417. break;
  1418. }
  1419. }
  1420. }
  1421. DLL_LINKAGE void YourTurn::applyGs( CGameState *gs )
  1422. {
  1423. gs->currentPlayer = player;
  1424. //count days without town
  1425. auto & playerState = gs->players[player];
  1426. if(playerState.towns.empty())
  1427. {
  1428. if(playerState.daysWithoutCastle)
  1429. ++(*playerState.daysWithoutCastle);
  1430. else playerState.daysWithoutCastle = 0;
  1431. }
  1432. else
  1433. {
  1434. playerState.daysWithoutCastle = boost::none;
  1435. }
  1436. }
  1437. DLL_LINKAGE Component::Component(const CStackBasicDescriptor &stack)
  1438. : id(CREATURE), subtype(stack.type->idNumber), val(stack.count), when(0)
  1439. {
  1440. type = 2002;
  1441. }