CArtHandler.cpp 28 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084
  1. /*
  2. * CArtHandler.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 "ArtifactUtils.h"
  12. #include "CGeneralTextHandler.h"
  13. #include "GameSettings.h"
  14. #include "mapObjects/MapObjects.h"
  15. #include "constants/StringConstants.h"
  16. #include "mapObjectConstructors/AObjectTypeHandler.h"
  17. #include "mapObjectConstructors/CObjectClassesHandler.h"
  18. #include "serializer/JsonSerializeFormat.h"
  19. // Note: list must match entries in ArtTraits.txt
  20. #define ART_POS_LIST \
  21. ART_POS(SPELLBOOK) \
  22. ART_POS(MACH4) \
  23. ART_POS(MACH3) \
  24. ART_POS(MACH2) \
  25. ART_POS(MACH1) \
  26. ART_POS(MISC5) \
  27. ART_POS(MISC4) \
  28. ART_POS(MISC3) \
  29. ART_POS(MISC2) \
  30. ART_POS(MISC1) \
  31. ART_POS(FEET) \
  32. ART_POS(LEFT_RING) \
  33. ART_POS(RIGHT_RING) \
  34. ART_POS(TORSO) \
  35. ART_POS(LEFT_HAND) \
  36. ART_POS(RIGHT_HAND) \
  37. ART_POS(NECK) \
  38. ART_POS(SHOULDERS) \
  39. ART_POS(HEAD)
  40. VCMI_LIB_NAMESPACE_BEGIN
  41. bool CCombinedArtifact::isCombined() const
  42. {
  43. return !(constituents.empty());
  44. }
  45. const std::vector<const CArtifact*> & CCombinedArtifact::getConstituents() const
  46. {
  47. return constituents;
  48. }
  49. const std::vector<const CArtifact*> & CCombinedArtifact::getPartOf() const
  50. {
  51. return partOf;
  52. }
  53. bool CScrollArtifact::isScroll() const
  54. {
  55. return static_cast<const CArtifact*>(this)->getId() == ArtifactID::SPELL_SCROLL;
  56. }
  57. bool CGrowingArtifact::isGrowing() const
  58. {
  59. return !bonusesPerLevel.empty() || !thresholdBonuses.empty();
  60. }
  61. std::vector <std::pair<ui16, Bonus>> & CGrowingArtifact::getBonusesPerLevel()
  62. {
  63. return bonusesPerLevel;
  64. }
  65. const std::vector <std::pair<ui16, Bonus>> & CGrowingArtifact::getBonusesPerLevel() const
  66. {
  67. return bonusesPerLevel;
  68. }
  69. std::vector <std::pair<ui16, Bonus>> & CGrowingArtifact::getThresholdBonuses()
  70. {
  71. return thresholdBonuses;
  72. }
  73. const std::vector <std::pair<ui16, Bonus>> & CGrowingArtifact::getThresholdBonuses() const
  74. {
  75. return thresholdBonuses;
  76. }
  77. int32_t CArtifact::getIndex() const
  78. {
  79. return id.toEnum();
  80. }
  81. int32_t CArtifact::getIconIndex() const
  82. {
  83. return iconIndex;
  84. }
  85. std::string CArtifact::getJsonKey() const
  86. {
  87. return modScope + ':' + identifier;
  88. }
  89. void CArtifact::registerIcons(const IconRegistar & cb) const
  90. {
  91. cb(getIconIndex(), 0, "ARTIFACT", image);
  92. cb(getIconIndex(), 0, "ARTIFACTLARGE", large);
  93. }
  94. ArtifactID CArtifact::getId() const
  95. {
  96. return id;
  97. }
  98. const IBonusBearer * CArtifact::getBonusBearer() const
  99. {
  100. return this;
  101. }
  102. std::string CArtifact::getDescriptionTranslated() const
  103. {
  104. return VLC->generaltexth->translate(getDescriptionTextID());
  105. }
  106. std::string CArtifact::getEventTranslated() const
  107. {
  108. return VLC->generaltexth->translate(getEventTextID());
  109. }
  110. std::string CArtifact::getNameTranslated() const
  111. {
  112. return VLC->generaltexth->translate(getNameTextID());
  113. }
  114. std::string CArtifact::getDescriptionTextID() const
  115. {
  116. return TextIdentifier("artifact", modScope, identifier, "description").get();
  117. }
  118. std::string CArtifact::getEventTextID() const
  119. {
  120. return TextIdentifier("artifact", modScope, identifier, "event").get();
  121. }
  122. std::string CArtifact::getNameTextID() const
  123. {
  124. return TextIdentifier("artifact", modScope, identifier, "name").get();
  125. }
  126. uint32_t CArtifact::getPrice() const
  127. {
  128. return price;
  129. }
  130. CreatureID CArtifact::getWarMachine() const
  131. {
  132. return warMachine;
  133. }
  134. bool CArtifact::isBig() const
  135. {
  136. return warMachine != CreatureID::NONE;
  137. }
  138. bool CArtifact::isTradable() const
  139. {
  140. switch(id.toEnum())
  141. {
  142. case ArtifactID::SPELLBOOK:
  143. case ArtifactID::GRAIL:
  144. return false;
  145. default:
  146. return !isBig();
  147. }
  148. }
  149. bool CArtifact::canBePutAt(const CArtifactSet * artSet, ArtifactPosition slot, bool assumeDestRemoved) const
  150. {
  151. auto simpleArtCanBePutAt = [this](const CArtifactSet * artSet, ArtifactPosition slot, bool assumeDestRemoved) -> bool
  152. {
  153. if(ArtifactUtils::isSlotBackpack(slot))
  154. {
  155. if(isBig() || (!assumeDestRemoved && !ArtifactUtils::isBackpackFreeSlots(artSet)))
  156. return false;
  157. return true;
  158. }
  159. if(!vstd::contains(possibleSlots.at(artSet->bearerType()), slot))
  160. return false;
  161. return artSet->isPositionFree(slot, assumeDestRemoved);
  162. };
  163. auto artCanBePutAt = [this, simpleArtCanBePutAt](const CArtifactSet * artSet, ArtifactPosition slot, bool assumeDestRemoved) -> bool
  164. {
  165. if(isCombined())
  166. {
  167. if(!simpleArtCanBePutAt(artSet, slot, assumeDestRemoved))
  168. return false;
  169. if(ArtifactUtils::isSlotBackpack(slot))
  170. return true;
  171. CArtifactFittingSet fittingSet(artSet->bearerType());
  172. fittingSet.artifactsWorn = artSet->artifactsWorn;
  173. if(assumeDestRemoved)
  174. fittingSet.removeArtifact(slot);
  175. for(const auto art : constituents)
  176. {
  177. auto possibleSlot = ArtifactUtils::getArtAnyPosition(&fittingSet, art->getId());
  178. if(ArtifactUtils::isSlotEquipment(possibleSlot))
  179. {
  180. fittingSet.setNewArtSlot(possibleSlot, nullptr, true);
  181. }
  182. else
  183. {
  184. return false;
  185. }
  186. }
  187. return true;
  188. }
  189. else
  190. {
  191. return simpleArtCanBePutAt(artSet, slot, assumeDestRemoved);
  192. }
  193. };
  194. if(slot == ArtifactPosition::TRANSITION_POS)
  195. return true;
  196. if(slot == ArtifactPosition::FIRST_AVAILABLE)
  197. {
  198. for(const auto & slot : possibleSlots.at(artSet->bearerType()))
  199. {
  200. if(artCanBePutAt(artSet, slot, assumeDestRemoved))
  201. return true;
  202. }
  203. return artCanBePutAt(artSet, ArtifactPosition::BACKPACK_START, assumeDestRemoved);
  204. }
  205. else if(ArtifactUtils::isSlotBackpack(slot))
  206. {
  207. return artCanBePutAt(artSet, ArtifactPosition::BACKPACK_START, assumeDestRemoved);
  208. }
  209. else
  210. {
  211. return artCanBePutAt(artSet, slot, assumeDestRemoved);
  212. }
  213. }
  214. CArtifact::CArtifact()
  215. : iconIndex(ArtifactID::NONE),
  216. price(0)
  217. {
  218. setNodeType(ARTIFACT);
  219. possibleSlots[ArtBearer::HERO]; //we want to generate map entry even if it will be empty
  220. possibleSlots[ArtBearer::CREATURE]; //we want to generate map entry even if it will be empty
  221. possibleSlots[ArtBearer::COMMANDER];
  222. }
  223. //This destructor should be placed here to avoid side effects
  224. CArtifact::~CArtifact() = default;
  225. int CArtifact::getArtClassSerial() const
  226. {
  227. if(id == ArtifactID::SPELL_SCROLL)
  228. return 4;
  229. switch(aClass)
  230. {
  231. case ART_TREASURE:
  232. return 0;
  233. case ART_MINOR:
  234. return 1;
  235. case ART_MAJOR:
  236. return 2;
  237. case ART_RELIC:
  238. return 3;
  239. case ART_SPECIAL:
  240. return 5;
  241. }
  242. return -1;
  243. }
  244. std::string CArtifact::nodeName() const
  245. {
  246. return "Artifact: " + getNameTranslated();
  247. }
  248. void CArtifact::addNewBonus(const std::shared_ptr<Bonus>& b)
  249. {
  250. b->source = BonusSource::ARTIFACT;
  251. b->duration = BonusDuration::PERMANENT;
  252. b->description = getNameTranslated();
  253. CBonusSystemNode::addNewBonus(b);
  254. }
  255. const std::map<ArtBearer::ArtBearer, std::vector<ArtifactPosition>> & CArtifact::getPossibleSlots() const
  256. {
  257. return possibleSlots;
  258. }
  259. void CArtifact::updateFrom(const JsonNode& data)
  260. {
  261. //TODO:CArtifact::updateFrom
  262. }
  263. void CArtifact::setImage(int32_t iconIndex, std::string image, std::string large)
  264. {
  265. this->iconIndex = iconIndex;
  266. this->image = image;
  267. this->large = large;
  268. }
  269. CArtHandler::~CArtHandler() = default;
  270. std::vector<JsonNode> CArtHandler::loadLegacyData()
  271. {
  272. size_t dataSize = VLC->settings()->getInteger(EGameSettings::TEXTS_ARTIFACT);
  273. objects.resize(dataSize);
  274. std::vector<JsonNode> h3Data;
  275. h3Data.reserve(dataSize);
  276. #define ART_POS(x) #x ,
  277. const std::vector<std::string> artSlots = { ART_POS_LIST };
  278. #undef ART_POS
  279. static const std::map<char, std::string> classes =
  280. {{'S',"SPECIAL"}, {'T',"TREASURE"},{'N',"MINOR"},{'J',"MAJOR"},{'R',"RELIC"},};
  281. CLegacyConfigParser parser(TextPath::builtin("DATA/ARTRAITS.TXT"));
  282. CLegacyConfigParser events(TextPath::builtin("DATA/ARTEVENT.TXT"));
  283. parser.endLine(); // header
  284. parser.endLine();
  285. for (size_t i = 0; i < dataSize; i++)
  286. {
  287. JsonNode artData;
  288. artData["text"]["name"].String() = parser.readString();
  289. artData["text"]["event"].String() = events.readString();
  290. artData["value"].Float() = parser.readNumber();
  291. for(const auto & artSlot : artSlots)
  292. {
  293. if(parser.readString() == "x")
  294. {
  295. artData["slot"].Vector().push_back(JsonNode());
  296. artData["slot"].Vector().back().String() = artSlot;
  297. }
  298. }
  299. artData["class"].String() = classes.at(parser.readString()[0]);
  300. artData["text"]["description"].String() = parser.readString();
  301. parser.endLine();
  302. events.endLine();
  303. h3Data.push_back(artData);
  304. }
  305. return h3Data;
  306. }
  307. void CArtHandler::loadObject(std::string scope, std::string name, const JsonNode & data)
  308. {
  309. auto * object = loadFromJson(scope, data, name, objects.size());
  310. object->iconIndex = object->getIndex() + 5;
  311. objects.emplace_back(object);
  312. registerObject(scope, "artifact", name, object->id.getNum());
  313. }
  314. void CArtHandler::loadObject(std::string scope, std::string name, const JsonNode & data, size_t index)
  315. {
  316. auto * object = loadFromJson(scope, data, name, index);
  317. object->iconIndex = object->getIndex();
  318. assert(objects[index] == nullptr); // ensure that this id was not loaded before
  319. objects[index] = object;
  320. registerObject(scope, "artifact", name, object->id.getNum());
  321. }
  322. const std::vector<std::string> & CArtHandler::getTypeNames() const
  323. {
  324. static const std::vector<std::string> typeNames = { "artifact" };
  325. return typeNames;
  326. }
  327. CArtifact * CArtHandler::loadFromJson(const std::string & scope, const JsonNode & node, const std::string & identifier, size_t index)
  328. {
  329. assert(identifier.find(':') == std::string::npos);
  330. assert(!scope.empty());
  331. CArtifact * art = new CArtifact();
  332. if(!node["growing"].isNull())
  333. {
  334. for(auto bonus : node["growing"]["bonusesPerLevel"].Vector())
  335. {
  336. art->bonusesPerLevel.emplace_back(static_cast<ui16>(bonus["level"].Float()), Bonus());
  337. JsonUtils::parseBonus(bonus["bonus"], &art->bonusesPerLevel.back().second);
  338. }
  339. for(auto bonus : node["growing"]["thresholdBonuses"].Vector())
  340. {
  341. art->thresholdBonuses.emplace_back(static_cast<ui16>(bonus["level"].Float()), Bonus());
  342. JsonUtils::parseBonus(bonus["bonus"], &art->thresholdBonuses.back().second);
  343. }
  344. }
  345. art->id = ArtifactID(index);
  346. art->identifier = identifier;
  347. art->modScope = scope;
  348. const JsonNode & text = node["text"];
  349. VLC->generaltexth->registerString(scope, art->getNameTextID(), text["name"].String());
  350. VLC->generaltexth->registerString(scope, art->getDescriptionTextID(), text["description"].String());
  351. VLC->generaltexth->registerString(scope, art->getEventTextID(), text["event"].String());
  352. const JsonNode & graphics = node["graphics"];
  353. art->image = graphics["image"].String();
  354. if(!graphics["large"].isNull())
  355. art->large = graphics["large"].String();
  356. else
  357. art->large = art->image;
  358. art->advMapDef = graphics["map"].String();
  359. art->price = static_cast<ui32>(node["value"].Float());
  360. art->onlyOnWaterMap = node["onlyOnWaterMap"].Bool();
  361. loadSlots(art, node);
  362. loadClass(art, node);
  363. loadType(art, node);
  364. loadComponents(art, node);
  365. for(const auto & b : node["bonuses"].Vector())
  366. {
  367. auto bonus = JsonUtils::parseBonus(b);
  368. art->addNewBonus(bonus);
  369. }
  370. const JsonNode & warMachine = node["warMachine"];
  371. if(warMachine.getType() == JsonNode::JsonType::DATA_STRING && !warMachine.String().empty())
  372. {
  373. VLC->identifiers()->requestIdentifier("creature", warMachine, [=](si32 id)
  374. {
  375. art->warMachine = CreatureID(id);
  376. //this assumes that creature object is stored before registration
  377. VLC->creh->objects.at(id)->warMachine = art->id;
  378. });
  379. }
  380. VLC->identifiers()->requestIdentifier(scope, "object", "artifact", [=](si32 index)
  381. {
  382. JsonNode conf;
  383. conf.setMeta(scope);
  384. VLC->objtypeh->loadSubObject(art->identifier, conf, Obj::ARTIFACT, art->getIndex());
  385. if(!art->advMapDef.empty())
  386. {
  387. JsonNode templ;
  388. templ["animation"].String() = art->advMapDef;
  389. templ.setMeta(scope);
  390. // add new template.
  391. // Necessary for objects added via mods that don't have any templates in H3
  392. VLC->objtypeh->getHandlerFor(Obj::ARTIFACT, art->getIndex())->addTemplate(templ);
  393. }
  394. });
  395. return art;
  396. }
  397. int32_t ArtifactPositionBase::decode(const std::string & slotName)
  398. {
  399. #define ART_POS(x) { #x, ArtifactPosition::x },
  400. static const std::map<std::string, ArtifactPosition> artifactPositionMap = { ART_POS_LIST };
  401. #undef ART_POS
  402. auto it = artifactPositionMap.find (slotName);
  403. if (it != artifactPositionMap.end())
  404. return it->second;
  405. else
  406. return PRE_FIRST;
  407. }
  408. void CArtHandler::addSlot(CArtifact * art, const std::string & slotID) const
  409. {
  410. static const std::vector<ArtifactPosition> miscSlots =
  411. {
  412. ArtifactPosition::MISC1, ArtifactPosition::MISC2, ArtifactPosition::MISC3, ArtifactPosition::MISC4, ArtifactPosition::MISC5
  413. };
  414. static const std::vector<ArtifactPosition> ringSlots =
  415. {
  416. ArtifactPosition::RIGHT_RING, ArtifactPosition::LEFT_RING
  417. };
  418. if (slotID == "MISC")
  419. {
  420. vstd::concatenate(art->possibleSlots[ArtBearer::HERO], miscSlots);
  421. }
  422. else if (slotID == "RING")
  423. {
  424. vstd::concatenate(art->possibleSlots[ArtBearer::HERO], ringSlots);
  425. }
  426. else
  427. {
  428. auto slot = ArtifactPosition::decode(slotID);
  429. if (slot != ArtifactPosition::PRE_FIRST)
  430. art->possibleSlots[ArtBearer::HERO].push_back(slot);
  431. }
  432. }
  433. void CArtHandler::loadSlots(CArtifact * art, const JsonNode & node) const
  434. {
  435. if (!node["slot"].isNull()) //we assume non-hero slots are irrelevant?
  436. {
  437. if (node["slot"].getType() == JsonNode::JsonType::DATA_STRING)
  438. addSlot(art, node["slot"].String());
  439. else
  440. {
  441. for (const JsonNode & slot : node["slot"].Vector())
  442. addSlot(art, slot.String());
  443. }
  444. std::sort(art->possibleSlots.at(ArtBearer::HERO).begin(), art->possibleSlots.at(ArtBearer::HERO).end());
  445. }
  446. }
  447. CArtifact::EartClass CArtHandler::stringToClass(const std::string & className)
  448. {
  449. static const std::map<std::string, CArtifact::EartClass> artifactClassMap =
  450. {
  451. {"TREASURE", CArtifact::ART_TREASURE},
  452. {"MINOR", CArtifact::ART_MINOR},
  453. {"MAJOR", CArtifact::ART_MAJOR},
  454. {"RELIC", CArtifact::ART_RELIC},
  455. {"SPECIAL", CArtifact::ART_SPECIAL}
  456. };
  457. auto it = artifactClassMap.find (className);
  458. if (it != artifactClassMap.end())
  459. return it->second;
  460. logMod->warn("Warning! Artifact rarity %s not recognized!", className);
  461. return CArtifact::ART_SPECIAL;
  462. }
  463. void CArtHandler::loadClass(CArtifact * art, const JsonNode & node) const
  464. {
  465. art->aClass = stringToClass(node["class"].String());
  466. }
  467. void CArtHandler::loadType(CArtifact * art, const JsonNode & node) const
  468. {
  469. #define ART_BEARER(x) { #x, ArtBearer::x },
  470. static const std::map<std::string, int> artifactBearerMap = { ART_BEARER_LIST };
  471. #undef ART_BEARER
  472. for (const JsonNode & b : node["type"].Vector())
  473. {
  474. auto it = artifactBearerMap.find (b.String());
  475. if (it != artifactBearerMap.end())
  476. {
  477. int bearerType = it->second;
  478. switch (bearerType)
  479. {
  480. case ArtBearer::HERO://TODO: allow arts having several possible bearers
  481. break;
  482. case ArtBearer::COMMANDER:
  483. makeItCommanderArt (art); //original artifacts should have only one bearer type
  484. break;
  485. case ArtBearer::CREATURE:
  486. makeItCreatureArt (art);
  487. break;
  488. }
  489. }
  490. else
  491. logMod->warn("Warning! Artifact type %s not recognized!", b.String());
  492. }
  493. }
  494. void CArtHandler::loadComponents(CArtifact * art, const JsonNode & node)
  495. {
  496. if (!node["components"].isNull())
  497. {
  498. for(const auto & component : node["components"].Vector())
  499. {
  500. VLC->identifiers()->requestIdentifier("artifact", component, [=](si32 id)
  501. {
  502. // when this code is called both combinational art as well as component are loaded
  503. // so it is safe to access any of them
  504. art->constituents.push_back(ArtifactID(id).toArtifact());
  505. objects[id]->partOf.push_back(art);
  506. });
  507. }
  508. }
  509. }
  510. void CArtHandler::makeItCreatureArt(CArtifact * a, bool onlyCreature)
  511. {
  512. if (onlyCreature)
  513. {
  514. a->possibleSlots[ArtBearer::HERO].clear();
  515. a->possibleSlots[ArtBearer::COMMANDER].clear();
  516. }
  517. a->possibleSlots[ArtBearer::CREATURE].push_back(ArtifactPosition::CREATURE_SLOT);
  518. }
  519. void CArtHandler::makeItCommanderArt(CArtifact * a, bool onlyCommander)
  520. {
  521. if (onlyCommander)
  522. {
  523. a->possibleSlots[ArtBearer::HERO].clear();
  524. a->possibleSlots[ArtBearer::CREATURE].clear();
  525. }
  526. for(const auto & slot : ArtifactUtils::commanderSlots())
  527. a->possibleSlots[ArtBearer::COMMANDER].push_back(ArtifactPosition(slot));
  528. }
  529. bool CArtHandler::legalArtifact(const ArtifactID & id) const
  530. {
  531. auto art = id.toArtifact();
  532. //assert ( (!art->constituents) || art->constituents->size() ); //artifacts is not combined or has some components
  533. if(art->isCombined())
  534. return false; //no combo artifacts spawning
  535. if(art->aClass < CArtifact::ART_TREASURE || art->aClass > CArtifact::ART_RELIC)
  536. return false; // invalid class
  537. if(art->possibleSlots.count(ArtBearer::HERO) && !art->possibleSlots.at(ArtBearer::HERO).empty())
  538. return true;
  539. if(art->possibleSlots.count(ArtBearer::CREATURE) && !art->possibleSlots.at(ArtBearer::CREATURE).empty() && VLC->settings()->getBoolean(EGameSettings::MODULE_STACK_ARTIFACT))
  540. return true;
  541. if(art->possibleSlots.count(ArtBearer::COMMANDER) && !art->possibleSlots.at(ArtBearer::COMMANDER).empty() && VLC->settings()->getBoolean(EGameSettings::MODULE_COMMANDERS))
  542. return true;
  543. return false;
  544. }
  545. std::set<ArtifactID> CArtHandler::getDefaultAllowed() const
  546. {
  547. std::set<ArtifactID> allowedArtifacts;
  548. for (auto artifact : objects)
  549. {
  550. if (!artifact->isCombined())
  551. allowedArtifacts.insert(artifact->getId());
  552. }
  553. return allowedArtifacts;
  554. }
  555. void CArtHandler::afterLoadFinalization()
  556. {
  557. //All artifacts have their id, so we can properly update their bonuses' source ids.
  558. for(auto &art : objects)
  559. {
  560. for(auto &bonus : art->getExportedBonusList())
  561. {
  562. assert(bonus->source == BonusSource::ARTIFACT);
  563. bonus->sid = BonusSourceID(art->id);
  564. }
  565. }
  566. CBonusSystemNode::treeHasChanged();
  567. }
  568. CArtifactSet::~CArtifactSet() = default;
  569. const CArtifactInstance * CArtifactSet::getArt(const ArtifactPosition & pos, bool excludeLocked) const
  570. {
  571. if(const ArtSlotInfo * si = getSlot(pos))
  572. {
  573. if(si->artifact && (!excludeLocked || !si->locked))
  574. return si->artifact;
  575. }
  576. return nullptr;
  577. }
  578. CArtifactInstance * CArtifactSet::getArt(const ArtifactPosition & pos, bool excludeLocked)
  579. {
  580. return const_cast<CArtifactInstance*>((const_cast<const CArtifactSet*>(this))->getArt(pos, excludeLocked));
  581. }
  582. ArtifactPosition CArtifactSet::getArtPos(const ArtifactID & aid, bool onlyWorn, bool allowLocked) const
  583. {
  584. const auto result = getAllArtPositions(aid, onlyWorn, allowLocked, false);
  585. return result.empty() ? ArtifactPosition{ArtifactPosition::PRE_FIRST} : result[0];
  586. }
  587. std::vector<ArtifactPosition> CArtifactSet::getAllArtPositions(const ArtifactID & aid, bool onlyWorn, bool allowLocked, bool getAll) const
  588. {
  589. std::vector<ArtifactPosition> result;
  590. for(const auto & slotInfo : artifactsWorn)
  591. if(slotInfo.second.artifact->getTypeId() == aid && (allowLocked || !slotInfo.second.locked))
  592. result.push_back(slotInfo.first);
  593. if(onlyWorn)
  594. return result;
  595. if(!getAll && !result.empty())
  596. return result;
  597. auto backpackPositions = getBackpackArtPositions(aid);
  598. result.insert(result.end(), backpackPositions.begin(), backpackPositions.end());
  599. return result;
  600. }
  601. std::vector<ArtifactPosition> CArtifactSet::getBackpackArtPositions(const ArtifactID & aid) const
  602. {
  603. std::vector<ArtifactPosition> result;
  604. si32 backpackPosition = ArtifactPosition::BACKPACK_START;
  605. for(const auto & artInfo : artifactsInBackpack)
  606. {
  607. const auto * art = artInfo.getArt();
  608. if(art && art->artType->getId() == aid)
  609. result.emplace_back(backpackPosition);
  610. backpackPosition++;
  611. }
  612. return result;
  613. }
  614. ArtifactPosition CArtifactSet::getArtPos(const CArtifactInstance *art) const
  615. {
  616. for(auto i : artifactsWorn)
  617. if(i.second.artifact == art)
  618. return i.first;
  619. for(int i = 0; i < artifactsInBackpack.size(); i++)
  620. if(artifactsInBackpack[i].artifact == art)
  621. return ArtifactPosition::BACKPACK_START + i;
  622. return ArtifactPosition::PRE_FIRST;
  623. }
  624. const CArtifactInstance * CArtifactSet::getArtByInstanceId(const ArtifactInstanceID & artInstId) const
  625. {
  626. for(auto i : artifactsWorn)
  627. if(i.second.artifact->getId() == artInstId)
  628. return i.second.artifact;
  629. for(auto i : artifactsInBackpack)
  630. if(i.artifact->getId() == artInstId)
  631. return i.artifact;
  632. return nullptr;
  633. }
  634. const ArtifactPosition CArtifactSet::getSlotByInstance(const CArtifactInstance * artInst) const
  635. {
  636. if(artInst)
  637. {
  638. for(const auto & slot : artInst->artType->getPossibleSlots().at(bearerType()))
  639. if(getArt(slot) == artInst)
  640. return slot;
  641. ArtifactPosition backpackSlot = ArtifactPosition::BACKPACK_START;
  642. for(auto & slotInfo : artifactsInBackpack)
  643. {
  644. if(slotInfo.getArt() == artInst)
  645. return backpackSlot;
  646. backpackSlot = ArtifactPosition(backpackSlot + 1);
  647. }
  648. }
  649. return ArtifactPosition::PRE_FIRST;
  650. }
  651. bool CArtifactSet::hasArt(const ArtifactID & aid, bool onlyWorn, bool searchBackpackAssemblies, bool allowLocked) const
  652. {
  653. return getArtPosCount(aid, onlyWorn, searchBackpackAssemblies, allowLocked) > 0;
  654. }
  655. bool CArtifactSet::hasArtBackpack(const ArtifactID & aid) const
  656. {
  657. return !getBackpackArtPositions(aid).empty();
  658. }
  659. unsigned CArtifactSet::getArtPosCount(const ArtifactID & aid, bool onlyWorn, bool searchBackpackAssemblies, bool allowLocked) const
  660. {
  661. const auto allPositions = getAllArtPositions(aid, onlyWorn, allowLocked, true);
  662. if(!allPositions.empty())
  663. return allPositions.size();
  664. if(searchBackpackAssemblies && getHiddenArt(aid))
  665. return 1;
  666. return 0;
  667. }
  668. CArtifactSet::ArtPlacementMap CArtifactSet::putArtifact(ArtifactPosition slot, CArtifactInstance * art)
  669. {
  670. ArtPlacementMap resArtPlacement;
  671. setNewArtSlot(slot, art, false);
  672. if(art->artType->isCombined() && ArtifactUtils::isSlotEquipment(slot))
  673. {
  674. const CArtifactInstance * mainPart = nullptr;
  675. for(const auto & part : art->getPartsInfo())
  676. if(vstd::contains(part.art->artType->getPossibleSlots().at(bearerType()), slot)
  677. && (part.slot == ArtifactPosition::PRE_FIRST))
  678. {
  679. mainPart = part.art;
  680. break;
  681. }
  682. for(const auto & part : art->getPartsInfo())
  683. {
  684. if(part.art != mainPart)
  685. {
  686. auto partSlot = part.slot;
  687. if(!part.art->artType->canBePutAt(this, partSlot))
  688. partSlot = ArtifactUtils::getArtAnyPosition(this, part.art->getTypeId());
  689. assert(ArtifactUtils::isSlotEquipment(partSlot));
  690. setNewArtSlot(partSlot, part.art, true);
  691. resArtPlacement.emplace(std::make_pair(part.art, partSlot));
  692. }
  693. else
  694. {
  695. resArtPlacement.emplace(std::make_pair(part.art, part.slot));
  696. }
  697. }
  698. }
  699. return resArtPlacement;
  700. }
  701. void CArtifactSet::removeArtifact(ArtifactPosition slot)
  702. {
  703. auto art = getArt(slot, false);
  704. if(art)
  705. {
  706. if(art->isCombined())
  707. {
  708. for(auto & part : art->getPartsInfo())
  709. {
  710. if(getArt(part.slot, false))
  711. eraseArtSlot(part.slot);
  712. }
  713. }
  714. eraseArtSlot(slot);
  715. }
  716. }
  717. std::pair<const CArtifactInstance *, const CArtifactInstance *> CArtifactSet::searchForConstituent(const ArtifactID & aid) const
  718. {
  719. for(const auto & slot : artifactsInBackpack)
  720. {
  721. auto art = slot.artifact;
  722. if(art->isCombined())
  723. {
  724. for(auto & ci : art->getPartsInfo())
  725. {
  726. if(ci.art->getTypeId() == aid)
  727. {
  728. return {art, ci.art};
  729. }
  730. }
  731. }
  732. }
  733. return {nullptr, nullptr};
  734. }
  735. const CArtifactInstance * CArtifactSet::getHiddenArt(const ArtifactID & aid) const
  736. {
  737. return searchForConstituent(aid).second;
  738. }
  739. const CArtifactInstance * CArtifactSet::getAssemblyByConstituent(const ArtifactID & aid) const
  740. {
  741. return searchForConstituent(aid).first;
  742. }
  743. const ArtSlotInfo * CArtifactSet::getSlot(const ArtifactPosition & pos) const
  744. {
  745. if(pos == ArtifactPosition::TRANSITION_POS)
  746. {
  747. // Always add to the end. Always take from the beginning.
  748. if(artifactsTransitionPos.empty())
  749. return nullptr;
  750. else
  751. return &(*artifactsTransitionPos.begin());
  752. }
  753. if(vstd::contains(artifactsWorn, pos))
  754. return &artifactsWorn.at(pos);
  755. if(ArtifactUtils::isSlotBackpack(pos))
  756. {
  757. auto backpackPos = pos - ArtifactPosition::BACKPACK_START;
  758. if(backpackPos < 0 || backpackPos >= artifactsInBackpack.size())
  759. return nullptr;
  760. else
  761. return &artifactsInBackpack[backpackPos];
  762. }
  763. return nullptr;
  764. }
  765. bool CArtifactSet::isPositionFree(const ArtifactPosition & pos, bool onlyLockCheck) const
  766. {
  767. if(const ArtSlotInfo *s = getSlot(pos))
  768. return (onlyLockCheck || !s->artifact) && !s->locked;
  769. return true; //no slot means not used
  770. }
  771. void CArtifactSet::setNewArtSlot(const ArtifactPosition & slot, ConstTransitivePtr<CArtifactInstance> art, bool locked)
  772. {
  773. assert(!vstd::contains(artifactsWorn, slot));
  774. ArtSlotInfo * slotInfo;
  775. if(slot == ArtifactPosition::TRANSITION_POS)
  776. {
  777. // Always add to the end. Always take from the beginning.
  778. artifactsTransitionPos.emplace_back();
  779. slotInfo = &artifactsTransitionPos.back();
  780. }
  781. else if(ArtifactUtils::isSlotEquipment(slot))
  782. {
  783. slotInfo = &artifactsWorn[slot];
  784. }
  785. else
  786. {
  787. auto position = artifactsInBackpack.begin() + slot - ArtifactPosition::BACKPACK_START;
  788. slotInfo = &(*artifactsInBackpack.emplace(position, ArtSlotInfo()));
  789. }
  790. slotInfo->artifact = art;
  791. slotInfo->locked = locked;
  792. }
  793. void CArtifactSet::eraseArtSlot(const ArtifactPosition & slot)
  794. {
  795. if(slot == ArtifactPosition::TRANSITION_POS)
  796. {
  797. assert(!artifactsTransitionPos.empty());
  798. artifactsTransitionPos.erase(artifactsTransitionPos.begin());
  799. }
  800. else if(ArtifactUtils::isSlotBackpack(slot))
  801. {
  802. auto backpackSlot = ArtifactPosition(slot - ArtifactPosition::BACKPACK_START);
  803. assert(artifactsInBackpack.begin() + backpackSlot < artifactsInBackpack.end());
  804. artifactsInBackpack.erase(artifactsInBackpack.begin() + backpackSlot);
  805. }
  806. else
  807. {
  808. artifactsWorn.erase(slot);
  809. }
  810. }
  811. void CArtifactSet::artDeserializationFix(CBonusSystemNode *node)
  812. {
  813. for(auto & elem : artifactsWorn)
  814. if(elem.second.artifact && !elem.second.locked)
  815. node->attachTo(*elem.second.artifact);
  816. }
  817. void CArtifactSet::serializeJsonArtifacts(JsonSerializeFormat & handler, const std::string & fieldName, CMap * map)
  818. {
  819. //todo: creature and commander artifacts
  820. if(handler.saving && artifactsInBackpack.empty() && artifactsWorn.empty())
  821. return;
  822. if(!handler.saving)
  823. {
  824. assert(map);
  825. artifactsInBackpack.clear();
  826. artifactsWorn.clear();
  827. }
  828. auto s = handler.enterStruct(fieldName);
  829. switch(bearerType())
  830. {
  831. case ArtBearer::HERO:
  832. serializeJsonHero(handler, map);
  833. break;
  834. case ArtBearer::CREATURE:
  835. serializeJsonCreature(handler, map);
  836. break;
  837. case ArtBearer::COMMANDER:
  838. serializeJsonCommander(handler, map);
  839. break;
  840. default:
  841. assert(false);
  842. break;
  843. }
  844. }
  845. void CArtifactSet::serializeJsonHero(JsonSerializeFormat & handler, CMap * map)
  846. {
  847. for(const auto & slot : ArtifactUtils::allWornSlots())
  848. {
  849. serializeJsonSlot(handler, slot, map);
  850. }
  851. std::vector<ArtifactID> backpackTemp;
  852. if(handler.saving)
  853. {
  854. backpackTemp.reserve(artifactsInBackpack.size());
  855. for(const ArtSlotInfo & info : artifactsInBackpack)
  856. backpackTemp.push_back(info.artifact->getTypeId());
  857. }
  858. handler.serializeIdArray(NArtifactPosition::backpack, backpackTemp);
  859. if(!handler.saving)
  860. {
  861. for(const ArtifactID & artifactID : backpackTemp)
  862. {
  863. auto * artifact = ArtifactUtils::createArtifact(map, artifactID);
  864. auto slot = ArtifactPosition::BACKPACK_START + artifactsInBackpack.size();
  865. if(artifact->artType->canBePutAt(this, slot))
  866. {
  867. auto artsMap = putArtifact(slot, artifact);
  868. artifact->addPlacementMap(artsMap);
  869. }
  870. }
  871. }
  872. }
  873. void CArtifactSet::serializeJsonCreature(JsonSerializeFormat & handler, CMap * map)
  874. {
  875. logGlobal->error("CArtifactSet::serializeJsonCreature not implemented");
  876. }
  877. void CArtifactSet::serializeJsonCommander(JsonSerializeFormat & handler, CMap * map)
  878. {
  879. logGlobal->error("CArtifactSet::serializeJsonCommander not implemented");
  880. }
  881. void CArtifactSet::serializeJsonSlot(JsonSerializeFormat & handler, const ArtifactPosition & slot, CMap * map)
  882. {
  883. ArtifactID artifactID;
  884. if(handler.saving)
  885. {
  886. const ArtSlotInfo * info = getSlot(slot);
  887. if(info != nullptr && !info->locked)
  888. {
  889. artifactID = info->artifact->getTypeId();
  890. handler.serializeId(NArtifactPosition::namesHero[slot.num], artifactID, ArtifactID::NONE);
  891. }
  892. }
  893. else
  894. {
  895. handler.serializeId(NArtifactPosition::namesHero[slot.num], artifactID, ArtifactID::NONE);
  896. if(artifactID != ArtifactID::NONE)
  897. {
  898. auto * artifact = ArtifactUtils::createArtifact(map, artifactID.toEnum());
  899. if(artifact->artType->canBePutAt(this, slot))
  900. {
  901. auto artsMap = putArtifact(slot, artifact);
  902. artifact->addPlacementMap(artsMap);
  903. }
  904. else
  905. {
  906. logGlobal->debug("Artifact can't be put at the specified location."); //TODO add more debugging information
  907. }
  908. }
  909. }
  910. }
  911. CArtifactFittingSet::CArtifactFittingSet(ArtBearer::ArtBearer Bearer):
  912. Bearer(Bearer)
  913. {
  914. }
  915. ArtBearer::ArtBearer CArtifactFittingSet::bearerType() const
  916. {
  917. return this->Bearer;
  918. }
  919. VCMI_LIB_NAMESPACE_END