2
0

Interface.cpp 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430
  1. /*
  2. * Interface.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 "Interface.h"
  12. #include "../TerrainHandler.h"
  13. #include "../CPlayerState.h"
  14. #include "../CSoundBase.h"
  15. #include "../entities/hero/CHeroHandler.h"
  16. #include "../gameState/CGameState.h"
  17. #include "../spells/CSpellHandler.h"
  18. #include "../spells/ISpellMechanics.h"
  19. #include "../mapObjects/CGHeroInstance.h"
  20. #include "../mapObjects/MiscObjects.h"
  21. #include "../mapping/CMapDefines.h"
  22. #include "../networkPacks/StackLocation.h"
  23. #include "../networkPacks/PacksForClient.h"
  24. #include "../IGameCallback.h"
  25. #include <vstd/RNG.h>
  26. VCMI_LIB_NAMESPACE_BEGIN
  27. std::vector<ui32> Rewardable::Interface::getAvailableRewards(const CGHeroInstance * hero, Rewardable::EEventType event) const
  28. {
  29. std::vector<ui32> ret;
  30. for(size_t i = 0; i < configuration.info.size(); i++)
  31. {
  32. const Rewardable::VisitInfo & visit = configuration.info[i];
  33. if(event == visit.visitType && (!hero || visit.limiter.heroAllowed(hero)))
  34. ret.push_back(static_cast<ui32>(i));
  35. }
  36. return ret;
  37. }
  38. void Rewardable::Interface::grantRewardBeforeLevelup(const Rewardable::VisitInfo & info, const CGHeroInstance * hero) const
  39. {
  40. auto cb = getObject()->cb;
  41. assert(hero);
  42. assert(hero->tempOwner.isValidPlayer());
  43. assert(info.reward.creatures.size() <= GameConstants::ARMY_SIZE);
  44. cb->giveResources(hero->tempOwner, info.reward.resources);
  45. if (info.reward.revealTiles)
  46. {
  47. const auto & props = *info.reward.revealTiles;
  48. const auto functor = [&props](const TerrainTile * tile)
  49. {
  50. int score = 0;
  51. if (tile->getTerrain()->isSurface())
  52. score += props.scoreSurface;
  53. if (tile->getTerrain()->isUnderground())
  54. score += props.scoreSubterra;
  55. if (tile->getTerrain()->isWater())
  56. score += props.scoreWater;
  57. if (tile->getTerrain()->isRock())
  58. score += props.scoreRock;
  59. return score > 0;
  60. };
  61. std::unordered_set<int3> tiles;
  62. if (props.radius > 0)
  63. {
  64. cb->getTilesInRange(tiles, hero->getSightCenter(), props.radius, ETileVisibility::HIDDEN, hero->getOwner());
  65. if (props.hide)
  66. cb->getTilesInRange(tiles, hero->getSightCenter(), props.radius, ETileVisibility::REVEALED, hero->getOwner());
  67. vstd::erase_if(tiles, [&](const int3 & coord){
  68. return !functor(cb->getTile(coord));
  69. });
  70. }
  71. else
  72. {
  73. cb->getAllTiles(tiles, hero->tempOwner, -1, functor);
  74. }
  75. if (props.hide)
  76. {
  77. for (auto & player : cb->gameState().players)
  78. {
  79. if (cb->getPlayerStatus(player.first) == EPlayerStatus::INGAME && cb->getPlayerRelations(player.first, hero->getOwner()) == PlayerRelations::ENEMIES)
  80. cb->changeFogOfWar(tiles, player.first, ETileVisibility::HIDDEN);
  81. }
  82. }
  83. else
  84. {
  85. cb->changeFogOfWar(tiles, hero->getOwner(), ETileVisibility::REVEALED);
  86. }
  87. }
  88. for(const auto & entry : info.reward.secondary)
  89. {
  90. auto currentLevel = static_cast<MasteryLevel::Type>(hero->getSecSkillLevel(entry.first));
  91. if(currentLevel == MasteryLevel::EXPERT)
  92. continue;
  93. if(currentLevel != MasteryLevel::NONE || hero->canLearnSkill())
  94. cb->changeSecSkill(hero, entry.first, entry.second, false);
  95. }
  96. for(int i=0; i< info.reward.primary.size(); i++)
  97. if (info.reward.primary[i] != 0)
  98. cb->changePrimSkill(hero, static_cast<PrimarySkill>(i), info.reward.primary[i], false);
  99. TExpType expToGive = 0;
  100. if (info.reward.heroLevel > 0)
  101. expToGive += LIBRARY->heroh->reqExp(hero->level+info.reward.heroLevel) - LIBRARY->heroh->reqExp(hero->level);
  102. if (info.reward.heroExperience > 0)
  103. expToGive += hero->calculateXp(info.reward.heroExperience);
  104. if(expToGive)
  105. cb->giveExperience(hero, expToGive);
  106. }
  107. void Rewardable::Interface::grantRewardAfterLevelup(const Rewardable::VisitInfo & info, const CArmedInstance * army, const CGHeroInstance * hero) const
  108. {
  109. auto cb = getObject()->cb;
  110. if(info.reward.manaDiff || info.reward.manaPercentage >= 0)
  111. cb->setManaPoints(hero->id, info.reward.calculateManaPoints(hero));
  112. if(info.reward.movePoints || info.reward.movePercentage >= 0)
  113. {
  114. SetMovePoints smp;
  115. smp.hid = hero->id;
  116. smp.val = hero->movementPointsRemaining();
  117. if (info.reward.movePercentage >= 0) // percent from max
  118. smp.val = hero->movementPointsLimit(hero->inBoat() && hero->getBoat()->layer == EPathfindingLayer::SAIL) * info.reward.movePercentage / 100;
  119. smp.val = std::max<si32>(0, smp.val + info.reward.movePoints);
  120. cb->setMovePoints(&smp);
  121. }
  122. for(const Bonus & bonus : info.reward.heroBonuses)
  123. {
  124. GiveBonus gb(GiveBonus::ETarget::OBJECT, hero->id, bonus);
  125. cb->giveHeroBonus(&gb);
  126. }
  127. for(const Bonus & bonus : info.reward.playerBonuses)
  128. {
  129. GiveBonus gb(GiveBonus::ETarget::PLAYER, hero->getOwner(), bonus);
  130. cb->giveHeroBonus(&gb);
  131. }
  132. for(const ArtifactID & art : info.reward.grantedArtifacts)
  133. cb->giveHeroNewArtifact(hero, art, ArtifactPosition::FIRST_AVAILABLE);
  134. for(const ArtifactID & art : info.reward.takenArtifacts)
  135. {
  136. // hero does not have such artifact alone, but he might have it as part of assembled artifact
  137. if(!hero->hasArt(art))
  138. {
  139. const auto * assembly = hero->getCombinedArtWithPart(art);
  140. if (assembly)
  141. {
  142. DisassembledArtifact da;
  143. da.al = ArtifactLocation(hero->id, hero->getArtPos(assembly));
  144. cb->sendAndApply(da);
  145. }
  146. }
  147. if(hero->hasArt(art))
  148. cb->removeArtifact(ArtifactLocation(hero->id, hero->getArtPos(art, false)));
  149. }
  150. for(const ArtifactPosition & slot : info.reward.takenArtifactSlots)
  151. {
  152. const auto & slotContent = hero->getSlot(slot);
  153. if (!slotContent->locked && slotContent->artifactID.hasValue())
  154. cb->removeArtifact(ArtifactLocation(hero->id, slot));
  155. // TODO: handle locked slots?
  156. }
  157. for(const SpellID & spell : info.reward.grantedScrolls)
  158. cb->giveHeroNewScroll(hero, spell, ArtifactPosition::FIRST_AVAILABLE);
  159. for(const SpellID & spell : info.reward.takenScrolls)
  160. {
  161. if(hero->hasScroll(spell, false))
  162. cb->removeArtifact(ArtifactLocation(hero->id, hero->getScrollPos(spell, false)));
  163. }
  164. if(!info.reward.spells.empty())
  165. {
  166. std::set<SpellID> spellsToGive;
  167. for (auto const & spell : info.reward.spells)
  168. if (hero->canLearnSpell(spell.toEntity(LIBRARY), true))
  169. spellsToGive.insert(spell);
  170. if (!spellsToGive.empty())
  171. cb->changeSpells(hero, true, spellsToGive);
  172. }
  173. if (!info.reward.takenCreatures.empty())
  174. {
  175. cb->takeCreatures(hero->id, info.reward.takenCreatures, !info.reward.creatures.empty());
  176. }
  177. if(!info.reward.creaturesChange.empty())
  178. {
  179. for(const auto & slot : hero->Slots())
  180. {
  181. const auto & heroStack = slot.second;
  182. for(const auto & change : info.reward.creaturesChange)
  183. {
  184. if (heroStack->getId() == change.first)
  185. {
  186. StackLocation location(hero->id, slot.first);
  187. cb->changeStackType(location, change.second.toCreature());
  188. break;
  189. }
  190. }
  191. }
  192. }
  193. if(!info.reward.creatures.empty())
  194. {
  195. CCreatureSet creatures;
  196. for(const auto & crea : info.reward.creatures)
  197. creatures.addToSlot(creatures.getFreeSlot(), std::make_unique<CStackInstance>(cb, crea.getId(), crea.getCount()));
  198. if(auto * army = dynamic_cast<const CArmedInstance*>(this)) //TODO: to fix that, CArmedInstance must be split on map instance part and interface part
  199. cb->giveCreatures(army, hero, creatures, false);
  200. }
  201. if(info.reward.spellCast.first != SpellID::NONE)
  202. {
  203. caster.setActualCaster(hero);
  204. caster.setSpellSchoolLevel(info.reward.spellCast.second);
  205. cb->castSpell(&caster, info.reward.spellCast.first, int3{-1, -1, -1});
  206. }
  207. if(info.reward.removeObject)
  208. if(auto * instance = dynamic_cast<const CGObjectInstance*>(this))
  209. cb->removeAfterVisit(instance->id);
  210. }
  211. void Rewardable::Interface::serializeJson(JsonSerializeFormat & handler)
  212. {
  213. configuration.serializeJson(handler);
  214. }
  215. void Rewardable::Interface::grantRewardWithMessage(const CGHeroInstance * contextHero, int index, bool markAsVisit) const
  216. {
  217. auto vi = configuration.info.at(index);
  218. logGlobal->debug("Granting reward %d. Message says: %s", index, vi.message.toString());
  219. // show message only if it is not empty or in infobox
  220. if (configuration.infoWindowType != EInfoWindowMode::MODAL || !vi.message.toString().empty())
  221. {
  222. InfoWindow iw;
  223. iw.player = contextHero->tempOwner;
  224. iw.text = vi.message;
  225. vi.reward.loadComponents(iw.components, contextHero);
  226. iw.type = configuration.infoWindowType;
  227. if(!iw.components.empty() || !iw.text.toString().empty())
  228. getObject()->cb->showInfoDialog(&iw);
  229. }
  230. // grant reward afterwards. Note that it may remove object
  231. if(markAsVisit)
  232. markAsVisited(contextHero);
  233. grantReward(index, contextHero);
  234. }
  235. void Rewardable::Interface::selectRewardWithMessage(const CGHeroInstance * contextHero, const std::vector<ui32> & rewardIndices, const MetaString & dialog) const
  236. {
  237. BlockingDialog sd(configuration.canRefuse, rewardIndices.size() > 1);
  238. sd.player = contextHero->tempOwner;
  239. sd.text = dialog;
  240. sd.components = loadComponents(contextHero, rewardIndices);
  241. getObject()->cb->showBlockingDialog(getObject(), &sd);
  242. }
  243. std::vector<Component> Rewardable::Interface::loadComponents(const CGHeroInstance * contextHero, const std::vector<ui32> & rewardIndices) const
  244. {
  245. std::vector<Component> result;
  246. if (rewardIndices.empty())
  247. return result;
  248. if (configuration.selectMode != Rewardable::SELECT_FIRST && rewardIndices.size() > 1)
  249. {
  250. for (auto index : rewardIndices)
  251. result.push_back(configuration.info.at(index).reward.getDisplayedComponent(contextHero));
  252. }
  253. else
  254. {
  255. configuration.info.at(rewardIndices.front()).reward.loadComponents(result, contextHero);
  256. }
  257. return result;
  258. }
  259. void Rewardable::Interface::grantAllRewardsWithMessage(const CGHeroInstance * contextHero, const std::vector<ui32> & rewardIndices, bool markAsVisit) const
  260. {
  261. if (rewardIndices.empty())
  262. return;
  263. for (auto index : rewardIndices)
  264. {
  265. // TODO: Merge all rewards of same type, with single message?
  266. grantRewardWithMessage(contextHero, index, false);
  267. }
  268. // Mark visited only after all rewards were processed
  269. if(markAsVisit)
  270. markAsVisited(contextHero);
  271. }
  272. void Rewardable::Interface::doHeroVisit(const CGHeroInstance *h) const
  273. {
  274. if(!wasVisitedBefore(h))
  275. {
  276. auto rewards = getAvailableRewards(h, Rewardable::EEventType::EVENT_FIRST_VISIT);
  277. bool objectRemovalPossible = false;
  278. for(auto index : rewards)
  279. {
  280. if(configuration.info.at(index).reward.removeObject)
  281. objectRemovalPossible = true;
  282. }
  283. logGlobal->debug("Visiting object with %d possible rewards", rewards.size());
  284. switch (rewards.size())
  285. {
  286. case 0: // no available rewards, e.g. visiting School of War without gold
  287. {
  288. auto emptyRewards = getAvailableRewards(h, Rewardable::EEventType::EVENT_NOT_AVAILABLE);
  289. if (!emptyRewards.empty())
  290. grantRewardWithMessage(h, emptyRewards[0], false);
  291. else
  292. logMod->warn("No applicable message for visiting empty object!");
  293. break;
  294. }
  295. case 1: // one reward. Just give it with message
  296. {
  297. if (configuration.canRefuse)
  298. selectRewardWithMessage(h, rewards, configuration.info.at(rewards.front()).message);
  299. else
  300. grantRewardWithMessage(h, rewards.front(), true);
  301. break;
  302. }
  303. default: // multiple rewards. Act according to select mode
  304. {
  305. switch (configuration.selectMode) {
  306. case Rewardable::SELECT_PLAYER: // player must select
  307. selectRewardWithMessage(h, rewards, configuration.onSelect);
  308. break;
  309. case Rewardable::SELECT_FIRST: // give first available
  310. if (configuration.canRefuse)
  311. selectRewardWithMessage(h, { rewards.front() }, configuration.info.at(rewards.front()).message);
  312. else
  313. grantRewardWithMessage(h, rewards.front(), true);
  314. break;
  315. case Rewardable::SELECT_RANDOM: // give random
  316. {
  317. ui32 rewardIndex = *RandomGeneratorUtil::nextItem(rewards, getObject()->cb->getRandomGenerator());
  318. if (configuration.canRefuse)
  319. selectRewardWithMessage(h, { rewardIndex }, configuration.info.at(rewardIndex).message);
  320. else
  321. grantRewardWithMessage(h, rewardIndex, true);
  322. break;
  323. }
  324. case Rewardable::SELECT_ALL: // grant all possible
  325. grantAllRewardsWithMessage(h, rewards, true);
  326. break;
  327. }
  328. break;
  329. }
  330. }
  331. if(!objectRemovalPossible && getAvailableRewards(h, Rewardable::EEventType::EVENT_FIRST_VISIT).empty())
  332. markAsScouted(h);
  333. }
  334. else
  335. {
  336. logGlobal->debug("Revisiting already visited object");
  337. if (!wasVisited(h->getOwner()))
  338. markAsScouted(h);
  339. auto visitedRewards = getAvailableRewards(h, Rewardable::EEventType::EVENT_ALREADY_VISITED);
  340. if (!visitedRewards.empty())
  341. grantRewardWithMessage(h, visitedRewards[0], false);
  342. else
  343. logMod->warn("No applicable message for visiting already visited object!");
  344. }
  345. }
  346. void Rewardable::Interface::onBlockingDialogAnswered(const CGHeroInstance * hero, int32_t answer) const
  347. {
  348. if (answer == 0)
  349. return; //Player refused
  350. if(answer > 0 && answer - 1 < configuration.info.size())
  351. {
  352. auto list = getAvailableRewards(hero, Rewardable::EEventType::EVENT_FIRST_VISIT);
  353. markAsVisited(hero);
  354. grantReward(list[answer - 1], hero);
  355. }
  356. else
  357. {
  358. throw std::runtime_error("Unhandled choice");
  359. }
  360. }
  361. VCMI_LIB_NAMESPACE_END