CModHandler.cpp 33 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078
  1. /*
  2. * CModHandler.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 "CModHandler.h"
  12. #include "mapObjects/CObjectClassesHandler.h"
  13. #include "filesystem/FileStream.h"
  14. #include "filesystem/AdapterLoaders.h"
  15. #include "filesystem/CFilesystemLoader.h"
  16. #include "CCreatureHandler.h"
  17. #include "CArtHandler.h"
  18. #include "CTownHandler.h"
  19. #include "CHeroHandler.h"
  20. #include "mapObjects/CObjectHandler.h"
  21. #include "StringConstants.h"
  22. #include "CStopWatch.h"
  23. #include "IHandlerBase.h"
  24. #include "spells/CSpellHandler.h"
  25. #include "CSkillHandler.h"
  26. CIdentifierStorage::CIdentifierStorage():
  27. state(LOADING)
  28. {
  29. }
  30. CIdentifierStorage::~CIdentifierStorage()
  31. {
  32. }
  33. void CIdentifierStorage::checkIdentifier(std::string & ID)
  34. {
  35. if (boost::algorithm::ends_with(ID, "."))
  36. logMod->warn("BIG WARNING: identifier %s seems to be broken!", ID);
  37. else
  38. {
  39. size_t pos = 0;
  40. do
  41. {
  42. if (std::tolower(ID[pos]) != ID[pos] ) //Not in camelCase
  43. {
  44. logMod->warn("Warning: identifier %s is not in camelCase!", ID);
  45. ID[pos] = std::tolower(ID[pos]);// Try to fix the ID
  46. }
  47. pos = ID.find('.', pos);
  48. }
  49. while(pos++ != std::string::npos);
  50. }
  51. }
  52. CIdentifierStorage::ObjectCallback::ObjectCallback(
  53. std::string localScope, std::string remoteScope, std::string type,
  54. std::string name, const std::function<void(si32)> & callback,
  55. bool optional):
  56. localScope(localScope),
  57. remoteScope(remoteScope),
  58. type(type),
  59. name(name),
  60. callback(callback),
  61. optional(optional)
  62. {}
  63. static std::pair<std::string, std::string> splitString(std::string input, char separator)
  64. {
  65. std::pair<std::string, std::string> ret;
  66. size_t splitPos = input.find(separator);
  67. if (splitPos == std::string::npos)
  68. {
  69. ret.first.clear();
  70. ret.second = input;
  71. }
  72. else
  73. {
  74. ret.first = input.substr(0, splitPos);
  75. ret.second = input.substr(splitPos + 1);
  76. }
  77. return ret;
  78. }
  79. void CIdentifierStorage::requestIdentifier(ObjectCallback callback)
  80. {
  81. checkIdentifier(callback.type);
  82. checkIdentifier(callback.name);
  83. assert(!callback.localScope.empty());
  84. if (state != FINISHED) // enqueue request if loading is still in progress
  85. scheduledRequests.push_back(callback);
  86. else // execute immediately for "late" requests
  87. resolveIdentifier(callback);
  88. }
  89. void CIdentifierStorage::requestIdentifier(std::string scope, std::string type, std::string name, const std::function<void(si32)> & callback)
  90. {
  91. auto pair = splitString(name, ':'); // remoteScope:name
  92. requestIdentifier(ObjectCallback(scope, pair.first, type, pair.second, callback, false));
  93. }
  94. void CIdentifierStorage::requestIdentifier(std::string scope, std::string fullName, const std::function<void(si32)>& callback)
  95. {
  96. auto scopeAndFullName = splitString(fullName, ':');
  97. auto typeAndName = splitString(scopeAndFullName.second, '.');
  98. requestIdentifier(ObjectCallback(scope, scopeAndFullName.first, typeAndName.first, typeAndName.second, callback, false));
  99. }
  100. void CIdentifierStorage::requestIdentifier(std::string type, const JsonNode & name, const std::function<void(si32)> & callback)
  101. {
  102. auto pair = splitString(name.String(), ':'); // remoteScope:name
  103. requestIdentifier(ObjectCallback(name.meta, pair.first, type, pair.second, callback, false));
  104. }
  105. void CIdentifierStorage::requestIdentifier(const JsonNode & name, const std::function<void(si32)> & callback)
  106. {
  107. auto pair = splitString(name.String(), ':'); // remoteScope:<type.name>
  108. auto pair2 = splitString(pair.second, '.'); // type.name
  109. requestIdentifier(ObjectCallback(name.meta, pair.first, pair2.first, pair2.second, callback, false));
  110. }
  111. void CIdentifierStorage::tryRequestIdentifier(std::string scope, std::string type, std::string name, const std::function<void(si32)> & callback)
  112. {
  113. auto pair = splitString(name, ':'); // remoteScope:name
  114. requestIdentifier(ObjectCallback(scope, pair.first, type, pair.second, callback, true));
  115. }
  116. void CIdentifierStorage::tryRequestIdentifier(std::string type, const JsonNode & name, const std::function<void(si32)> & callback)
  117. {
  118. auto pair = splitString(name.String(), ':'); // remoteScope:name
  119. requestIdentifier(ObjectCallback(name.meta, pair.first, type, pair.second, callback, true));
  120. }
  121. boost::optional<si32> CIdentifierStorage::getIdentifier(std::string scope, std::string type, std::string name, bool silent)
  122. {
  123. auto pair = splitString(name, ':'); // remoteScope:name
  124. auto idList = getPossibleIdentifiers(ObjectCallback(scope, pair.first, type, pair.second, std::function<void(si32)>(), silent));
  125. if (idList.size() == 1)
  126. return idList.front().id;
  127. if (!silent)
  128. logMod->error("Failed to resolve identifier %s of type %s from mod %s", name , type ,scope);
  129. return boost::optional<si32>();
  130. }
  131. boost::optional<si32> CIdentifierStorage::getIdentifier(std::string type, const JsonNode & name, bool silent)
  132. {
  133. auto pair = splitString(name.String(), ':'); // remoteScope:name
  134. auto idList = getPossibleIdentifiers(ObjectCallback(name.meta, pair.first, type, pair.second, std::function<void(si32)>(), silent));
  135. if (idList.size() == 1)
  136. return idList.front().id;
  137. if (!silent)
  138. logMod->error("Failed to resolve identifier %s of type %s from mod %s", name.String(), type, name.meta);
  139. return boost::optional<si32>();
  140. }
  141. boost::optional<si32> CIdentifierStorage::getIdentifier(const JsonNode & name, bool silent)
  142. {
  143. auto pair = splitString(name.String(), ':'); // remoteScope:<type.name>
  144. auto pair2 = splitString(pair.second, '.'); // type.name
  145. auto idList = getPossibleIdentifiers(ObjectCallback(name.meta, pair.first, pair2.first, pair2.second, std::function<void(si32)>(), silent));
  146. if (idList.size() == 1)
  147. return idList.front().id;
  148. if (!silent)
  149. logMod->error("Failed to resolve identifier %s of type %s from mod %s", name.String(), pair2.first, name.meta);
  150. return boost::optional<si32>();
  151. }
  152. boost::optional<si32> CIdentifierStorage::getIdentifier(std::string scope, std::string fullName, bool silent)
  153. {
  154. auto pair = splitString(fullName, ':'); // remoteScope:<type.name>
  155. auto pair2 = splitString(pair.second, '.'); // type.name
  156. auto idList = getPossibleIdentifiers(ObjectCallback(scope, pair.first, pair2.first, pair2.second, std::function<void(si32)>(), silent));
  157. if (idList.size() == 1)
  158. return idList.front().id;
  159. if (!silent)
  160. logMod->error("Failed to resolve identifier %s of type %s from mod %s", fullName, pair2.first, scope);
  161. return boost::optional<si32>();
  162. }
  163. void CIdentifierStorage::registerObject(std::string scope, std::string type, std::string name, si32 identifier)
  164. {
  165. ObjectData data;
  166. data.scope = scope;
  167. data.id = identifier;
  168. std::string fullID = type + '.' + name;
  169. checkIdentifier(fullID);
  170. std::pair<const std::string, ObjectData> mapping = std::make_pair(fullID, data);
  171. if(!vstd::containsMapping(registeredObjects, mapping))
  172. {
  173. logMod->trace("registered %s as %s:%s", fullID, scope, identifier);
  174. registeredObjects.insert(mapping);
  175. }
  176. }
  177. std::vector<CIdentifierStorage::ObjectData> CIdentifierStorage::getPossibleIdentifiers(const ObjectCallback & request)
  178. {
  179. std::set<std::string> allowedScopes;
  180. if (request.remoteScope.empty())
  181. {
  182. // normally ID's from all required mods, own mod and virtual "core" mod are allowed
  183. if (request.localScope != "core" && request.localScope != "")
  184. allowedScopes = VLC->modh->getModData(request.localScope).dependencies;
  185. allowedScopes.insert(request.localScope);
  186. allowedScopes.insert("core");
  187. }
  188. else
  189. {
  190. //...unless destination mod was specified explicitly
  191. //note: getModData does not work for "core" by design
  192. //for map format support core mod has access to any mod
  193. //TODO: better solution for access from map?
  194. if(request.localScope == "core" || request.localScope == "")
  195. {
  196. allowedScopes.insert(request.remoteScope);
  197. }
  198. else
  199. {
  200. // allow only available to all core mod or dependencies
  201. auto myDeps = VLC->modh->getModData(request.localScope).dependencies;
  202. if (request.remoteScope == "core" || myDeps.count(request.remoteScope))
  203. allowedScopes.insert(request.remoteScope);
  204. }
  205. }
  206. std::string fullID = request.type + '.' + request.name;
  207. auto entries = registeredObjects.equal_range(fullID);
  208. if (entries.first != entries.second)
  209. {
  210. std::vector<ObjectData> locatedIDs;
  211. for (auto it = entries.first; it != entries.second; it++)
  212. {
  213. if (vstd::contains(allowedScopes, it->second.scope))
  214. {
  215. locatedIDs.push_back(it->second);
  216. }
  217. }
  218. return locatedIDs;
  219. }
  220. return std::vector<ObjectData>();
  221. }
  222. bool CIdentifierStorage::resolveIdentifier(const ObjectCallback & request)
  223. {
  224. auto identifiers = getPossibleIdentifiers(request);
  225. if (identifiers.size() == 1) // normally resolved ID
  226. {
  227. request.callback(identifiers.front().id);
  228. return true;
  229. }
  230. if (request.optional && identifiers.empty()) // failed to resolve optinal ID
  231. {
  232. return true;
  233. }
  234. // error found. Try to generate some debug info
  235. if (identifiers.size() == 0)
  236. logMod->error("Unknown identifier!");
  237. else
  238. logMod->error("Ambiguous identifier request!");
  239. logMod->error("Request for %s.%s from mod %s", request.type, request.name, request.localScope);
  240. for (auto id : identifiers)
  241. {
  242. logMod->error("\tID is available in mod %s", id.scope);
  243. }
  244. return false;
  245. }
  246. void CIdentifierStorage::finalize()
  247. {
  248. state = FINALIZING;
  249. bool errorsFound = false;
  250. //Note: we may receive new requests during resolution phase -> end may change -> range for can't be used
  251. for(auto it = scheduledRequests.begin(); it != scheduledRequests.end(); it++)
  252. {
  253. errorsFound |= !resolveIdentifier(*it);
  254. }
  255. if (errorsFound)
  256. {
  257. for(auto object : registeredObjects)
  258. {
  259. logMod->trace("%s : %s -> %d", object.second.scope, object.first, object.second.id);
  260. }
  261. logMod->error("All known identifiers were dumped into log file");
  262. }
  263. assert(errorsFound == false);
  264. state = FINISHED;
  265. }
  266. ContentTypeHandler::ContentTypeHandler(IHandlerBase * handler, std::string objectName):
  267. handler(handler),
  268. objectName(objectName),
  269. originalData(handler->loadLegacyData(VLC->modh->settings.data["textData"][objectName].Float()))
  270. {
  271. for(auto & node : originalData)
  272. {
  273. node.setMeta("core");
  274. }
  275. }
  276. bool ContentTypeHandler::preloadModData(std::string modName, std::vector<std::string> fileList, bool validate)
  277. {
  278. bool result;
  279. JsonNode data = JsonUtils::assembleFromFiles(fileList, result);
  280. data.setMeta(modName);
  281. ModInfo & modInfo = modData[modName];
  282. for(auto entry : data.Struct())
  283. {
  284. size_t colon = entry.first.find(':');
  285. if (colon == std::string::npos)
  286. {
  287. // normal object, local to this mod
  288. modInfo.modData[entry.first].swap(entry.second);
  289. }
  290. else
  291. {
  292. std::string remoteName = entry.first.substr(0, colon);
  293. std::string objectName = entry.first.substr(colon + 1);
  294. // patching this mod? Send warning and continue - this situation can be handled normally
  295. if (remoteName == modName)
  296. logMod->warn("Redundant namespace definition for %s", objectName);
  297. logMod->trace("Patching object %s (%s) from %s", objectName, remoteName, modName);
  298. JsonNode & remoteConf = modData[remoteName].patches[objectName];
  299. JsonUtils::merge(remoteConf, entry.second);
  300. }
  301. }
  302. return result;
  303. }
  304. bool ContentTypeHandler::loadMod(std::string modName, bool validate)
  305. {
  306. ModInfo & modInfo = modData[modName];
  307. bool result = true;
  308. auto performValidate = [&,this](JsonNode & data, const std::string & name){
  309. handler->beforeValidate(data);
  310. if (validate)
  311. result &= JsonUtils::validate(data, "vcmi:" + objectName, name);
  312. };
  313. // apply patches
  314. if (!modInfo.patches.isNull())
  315. JsonUtils::merge(modInfo.modData, modInfo.patches);
  316. for(auto & entry : modInfo.modData.Struct())
  317. {
  318. const std::string & name = entry.first;
  319. JsonNode & data = entry.second;
  320. if (vstd::contains(data.Struct(), "index") && !data["index"].isNull())
  321. {
  322. // try to add H3 object data
  323. size_t index = data["index"].Float();
  324. if(originalData.size() > index)
  325. {
  326. logMod->trace("found original data in loadMod(%s) at index %d", name, index);
  327. JsonUtils::merge(originalData[index], data);
  328. std::swap(originalData[index], data);
  329. originalData[index].clear(); // do not use same data twice (same ID)
  330. }
  331. else
  332. {
  333. logMod->warn("no original data in loadMod(%s) at index %d", name, index);
  334. }
  335. performValidate(data, name);
  336. handler->loadObject(modName, name, data, index);
  337. }
  338. else
  339. {
  340. // normal new object
  341. logMod->trace("no index in loadMod(%s)", name);
  342. performValidate(data,name);
  343. handler->loadObject(modName, name, data);
  344. }
  345. }
  346. return result;
  347. }
  348. void ContentTypeHandler::loadCustom()
  349. {
  350. handler->loadCustom();
  351. }
  352. void ContentTypeHandler::afterLoadFinalization()
  353. {
  354. handler->afterLoadFinalization();
  355. }
  356. CContentHandler::CContentHandler()
  357. {
  358. }
  359. void CContentHandler::init()
  360. {
  361. handlers.insert(std::make_pair("heroClasses", ContentTypeHandler(&VLC->heroh->classes, "heroClass")));
  362. handlers.insert(std::make_pair("artifacts", ContentTypeHandler(VLC->arth, "artifact")));
  363. handlers.insert(std::make_pair("creatures", ContentTypeHandler(VLC->creh, "creature")));
  364. handlers.insert(std::make_pair("factions", ContentTypeHandler(VLC->townh, "faction")));
  365. handlers.insert(std::make_pair("objects", ContentTypeHandler(VLC->objtypeh, "object")));
  366. handlers.insert(std::make_pair("heroes", ContentTypeHandler(VLC->heroh, "hero")));
  367. handlers.insert(std::make_pair("spells", ContentTypeHandler(VLC->spellh, "spell")));
  368. handlers.insert(std::make_pair("skills", ContentTypeHandler(VLC->skillh, "skill")));
  369. handlers.insert(std::make_pair("templates", ContentTypeHandler((IHandlerBase *)VLC->tplh, "template")));
  370. //TODO: any other types of moddables?
  371. }
  372. bool CContentHandler::preloadModData(std::string modName, JsonNode modConfig, bool validate)
  373. {
  374. bool result = true;
  375. for(auto & handler : handlers)
  376. {
  377. result &= handler.second.preloadModData(modName, modConfig[handler.first].convertTo<std::vector<std::string> >(), validate);
  378. }
  379. return result;
  380. }
  381. bool CContentHandler::loadMod(std::string modName, bool validate)
  382. {
  383. bool result = true;
  384. for(auto & handler : handlers)
  385. {
  386. result &= handler.second.loadMod(modName, validate);
  387. }
  388. return result;
  389. }
  390. void CContentHandler::loadCustom()
  391. {
  392. for(auto & handler : handlers)
  393. {
  394. handler.second.loadCustom();
  395. }
  396. }
  397. void CContentHandler::afterLoadFinalization()
  398. {
  399. for(auto & handler : handlers)
  400. {
  401. handler.second.afterLoadFinalization();
  402. }
  403. }
  404. void CContentHandler::preloadData(CModInfo & mod)
  405. {
  406. bool validate = (mod.validation != CModInfo::PASSED);
  407. // print message in format [<8-symbols checksum>] <modname>
  408. logMod->info("\t\t[%08x]%s", mod.checksum, mod.name);
  409. if (validate && mod.identifier != "core")
  410. {
  411. if (!JsonUtils::validate(mod.config, "vcmi:mod", mod.identifier))
  412. mod.validation = CModInfo::FAILED;
  413. }
  414. if (!preloadModData(mod.identifier, mod.config, validate))
  415. mod.validation = CModInfo::FAILED;
  416. }
  417. void CContentHandler::load(CModInfo & mod)
  418. {
  419. bool validate = (mod.validation != CModInfo::PASSED);
  420. if (!loadMod(mod.identifier, validate))
  421. mod.validation = CModInfo::FAILED;
  422. if (validate)
  423. {
  424. if (mod.validation != CModInfo::FAILED)
  425. logMod->info("\t\t[DONE] %s", mod.name);
  426. else
  427. logMod->error("\t\t[FAIL] %s", mod.name);
  428. }
  429. else
  430. logMod->info("\t\t[SKIP] %s", mod.name);
  431. }
  432. const ContentTypeHandler & CContentHandler::operator[](const std::string & name) const
  433. {
  434. return handlers.at(name);
  435. }
  436. static JsonNode loadModSettings(std::string path)
  437. {
  438. if (CResourceHandler::get("local")->existsResource(ResourceID(path)))
  439. {
  440. return JsonNode(ResourceID(path, EResType::TEXT));
  441. }
  442. // Probably new install. Create initial configuration
  443. CResourceHandler::get("local")->createResource(path);
  444. return JsonNode();
  445. }
  446. JsonNode addMeta(JsonNode config, std::string meta)
  447. {
  448. config.setMeta(meta);
  449. return config;
  450. }
  451. CModInfo::CModInfo():
  452. checksum(0),
  453. enabled(false),
  454. validation(PENDING)
  455. {
  456. }
  457. CModInfo::CModInfo(std::string identifier,const JsonNode & local, const JsonNode & config):
  458. identifier(identifier),
  459. name(config["name"].String()),
  460. description(config["description"].String()),
  461. dependencies(config["depends"].convertTo<std::set<std::string> >()),
  462. conflicts(config["conflicts"].convertTo<std::set<std::string> >()),
  463. checksum(0),
  464. enabled(false),
  465. validation(PENDING),
  466. config(addMeta(config, identifier))
  467. {
  468. loadLocalData(local);
  469. }
  470. JsonNode CModInfo::saveLocalData() const
  471. {
  472. std::ostringstream stream;
  473. stream << std::noshowbase << std::hex << std::setw(8) << std::setfill('0') << checksum;
  474. JsonNode conf;
  475. conf["active"].Bool() = enabled;
  476. conf["validated"].Bool() = validation != FAILED;
  477. conf["checksum"].String() = stream.str();
  478. return conf;
  479. }
  480. std::string CModInfo::getModDir(std::string name)
  481. {
  482. return "MODS/" + boost::algorithm::replace_all_copy(name, ".", "/MODS/");
  483. }
  484. std::string CModInfo::getModFile(std::string name)
  485. {
  486. return getModDir(name) + "/mod.json";
  487. }
  488. void CModInfo::updateChecksum(ui32 newChecksum)
  489. {
  490. // comment-out next line to force validation of all mods ignoring checksum
  491. if (newChecksum != checksum)
  492. {
  493. checksum = newChecksum;
  494. validation = PENDING;
  495. }
  496. }
  497. void CModInfo::loadLocalData(const JsonNode & data)
  498. {
  499. bool validated = false;
  500. enabled = true;
  501. checksum = 0;
  502. if (data.getType() == JsonNode::JsonType::DATA_BOOL)
  503. {
  504. enabled = data.Bool();
  505. }
  506. if (data.getType() == JsonNode::JsonType::DATA_STRUCT)
  507. {
  508. enabled = data["active"].Bool();
  509. validated = data["validated"].Bool();
  510. checksum = strtol(data["checksum"].String().c_str(), nullptr, 16);
  511. }
  512. if (enabled)
  513. validation = validated ? PASSED : PENDING;
  514. else
  515. validation = validated ? PASSED : FAILED;
  516. }
  517. CModHandler::CModHandler()
  518. {
  519. modules.COMMANDERS = false;
  520. modules.STACK_ARTIFACT = false;
  521. modules.STACK_EXP = false;
  522. modules.MITHRIL = false;
  523. for (int i = 0; i < GameConstants::RESOURCE_QUANTITY; ++i)
  524. {
  525. identifiers.registerObject("core", "resource", GameConstants::RESOURCE_NAMES[i], i);
  526. }
  527. for(int i=0; i<GameConstants::PRIMARY_SKILLS; ++i)
  528. {
  529. identifiers.registerObject("core", "primSkill", PrimarySkill::names[i], i);
  530. identifiers.registerObject("core", "primarySkill", PrimarySkill::names[i], i);
  531. }
  532. }
  533. CModHandler::~CModHandler()
  534. {
  535. }
  536. void CModHandler::loadConfigFromFile (std::string name)
  537. {
  538. std::string paths;
  539. for(auto& p : CResourceHandler::get()->getResourceNames(ResourceID("config/" + name)))
  540. {
  541. paths += p.string() + ", ";
  542. }
  543. paths = paths.substr(0, paths.size() - 2);
  544. logMod->debug("Loading hardcoded features settings from [%s], result:", paths);
  545. settings.data = JsonUtils::assembleFromFiles("config/" + name);
  546. const JsonNode & hardcodedFeatures = settings.data["hardcodedFeatures"];
  547. settings.MAX_HEROES_AVAILABLE_PER_PLAYER = hardcodedFeatures["MAX_HEROES_AVAILABLE_PER_PLAYER"].Integer();
  548. logMod->debug("\tMAX_HEROES_AVAILABLE_PER_PLAYER\t%d", settings.MAX_HEROES_AVAILABLE_PER_PLAYER);
  549. settings.MAX_HEROES_ON_MAP_PER_PLAYER = hardcodedFeatures["MAX_HEROES_ON_MAP_PER_PLAYER"].Integer();
  550. logMod->debug("\tMAX_HEROES_ON_MAP_PER_PLAYER\t%d", settings.MAX_HEROES_ON_MAP_PER_PLAYER);
  551. settings.CREEP_SIZE = hardcodedFeatures["CREEP_SIZE"].Integer();
  552. logMod->debug("\tCREEP_SIZE\t%d", settings.CREEP_SIZE);
  553. settings.WEEKLY_GROWTH = hardcodedFeatures["WEEKLY_GROWTH_PERCENT"].Integer();
  554. logMod->debug("\tWEEKLY_GROWTH\t%d", settings.WEEKLY_GROWTH);
  555. settings.NEUTRAL_STACK_EXP = hardcodedFeatures["NEUTRAL_STACK_EXP_DAILY"].Integer();
  556. logMod->debug("\tNEUTRAL_STACK_EXP\t%d", settings.NEUTRAL_STACK_EXP);
  557. settings.MAX_BUILDING_PER_TURN = hardcodedFeatures["MAX_BUILDING_PER_TURN"].Integer();
  558. logMod->debug("\tMAX_BUILDING_PER_TURN\t%d", settings.MAX_BUILDING_PER_TURN);
  559. settings.DWELLINGS_ACCUMULATE_CREATURES = hardcodedFeatures["DWELLINGS_ACCUMULATE_CREATURES"].Bool();
  560. logMod->debug("\tDWELLINGS_ACCUMULATE_CREATURES\t%d", static_cast<int>(settings.DWELLINGS_ACCUMULATE_CREATURES));
  561. settings.ALL_CREATURES_GET_DOUBLE_MONTHS = hardcodedFeatures["ALL_CREATURES_GET_DOUBLE_MONTHS"].Bool();
  562. logMod->debug("\tALL_CREATURES_GET_DOUBLE_MONTHS\t%d", static_cast<int>(settings.ALL_CREATURES_GET_DOUBLE_MONTHS));
  563. settings.WINNING_HERO_WITH_NO_TROOPS_RETREATS = hardcodedFeatures["WINNING_HERO_WITH_NO_TROOPS_RETREATS"].Bool();
  564. logMod->debug("\tWINNING_HERO_WITH_NO_TROOPS_RETREATS\t%d", static_cast<int>(settings.WINNING_HERO_WITH_NO_TROOPS_RETREATS));
  565. settings.BLACK_MARKET_MONTHLY_ARTIFACTS_CHANGE = hardcodedFeatures["BLACK_MARKET_MONTHLY_ARTIFACTS_CHANGE"].Bool();
  566. logMod->debug("\tBLACK_MARKET_MONTHLY_ARTIFACTS_CHANGE\t%d", static_cast<int>(settings.BLACK_MARKET_MONTHLY_ARTIFACTS_CHANGE));
  567. const JsonNode & gameModules = settings.data["modules"];
  568. modules.STACK_EXP = gameModules["STACK_EXPERIENCE"].Bool();
  569. logMod->debug("\tSTACK_EXP\t%d", static_cast<int>(modules.STACK_EXP));
  570. modules.STACK_ARTIFACT = gameModules["STACK_ARTIFACTS"].Bool();
  571. logMod->debug("\tSTACK_ARTIFACT\t%d", static_cast<int>(modules.STACK_ARTIFACT));
  572. modules.COMMANDERS = gameModules["COMMANDERS"].Bool();
  573. logMod->debug("\tCOMMANDERS\t%d", static_cast<int>(modules.COMMANDERS));
  574. modules.MITHRIL = gameModules["MITHRIL"].Bool();
  575. logMod->debug("\tMITHRIL\t%d", static_cast<int>(modules.MITHRIL));
  576. }
  577. // currentList is passed by value to get current list of depending mods
  578. bool CModHandler::hasCircularDependency(TModID modID, std::set <TModID> currentList) const
  579. {
  580. const CModInfo & mod = allMods.at(modID);
  581. // Mod already present? We found a loop
  582. if (vstd::contains(currentList, modID))
  583. {
  584. logMod->error("Error: Circular dependency detected! Printing dependency list:");
  585. logMod->error("\t%s -> ", mod.name);
  586. return true;
  587. }
  588. currentList.insert(modID);
  589. // recursively check every dependency of this mod
  590. for(const TModID & dependency : mod.dependencies)
  591. {
  592. if (hasCircularDependency(dependency, currentList))
  593. {
  594. logMod->error("\t%s ->\n", mod.name); // conflict detected, print dependency list
  595. return true;
  596. }
  597. }
  598. return false;
  599. }
  600. bool CModHandler::checkDependencies(const std::vector <TModID> & input) const
  601. {
  602. for(const TModID & id : input)
  603. {
  604. const CModInfo & mod = allMods.at(id);
  605. for(const TModID & dep : mod.dependencies)
  606. {
  607. if (!vstd::contains(input, dep))
  608. {
  609. logMod->error("Error: Mod %s requires missing %s!", mod.name, dep);
  610. return false;
  611. }
  612. }
  613. for(const TModID & conflicting : mod.conflicts)
  614. {
  615. if (vstd::contains(input, conflicting))
  616. {
  617. logMod->error("Error: Mod %s conflicts with %s!", mod.name, allMods.at(conflicting).name);
  618. return false;
  619. }
  620. }
  621. if (hasCircularDependency(id))
  622. return false;
  623. }
  624. return true;
  625. }
  626. std::vector <TModID> CModHandler::resolveDependencies(std::vector <TModID> input) const
  627. {
  628. // Topological sort algorithm
  629. // May not be the fastest one but VCMI does not needs any speed here
  630. // Unless user have dozens of mods with complex dependencies this code should be fine
  631. // first - sort input to have input strictly based on name (and not on hashmap or anything else)
  632. boost::range::sort(input);
  633. std::vector <TModID> output;
  634. output.reserve(input.size());
  635. std::set <TModID> resolvedMods;
  636. // Check if all mod dependencies are resolved (moved to resolvedMods)
  637. auto isResolved = [&](const CModInfo & mod) -> bool
  638. {
  639. for(const TModID & dependency : mod.dependencies)
  640. {
  641. if (!vstd::contains(resolvedMods, dependency))
  642. return false;
  643. }
  644. return true;
  645. };
  646. while (!input.empty())
  647. {
  648. std::set <TModID> toResolve; // list of mods resolved on this iteration
  649. for (auto it = input.begin(); it != input.end();)
  650. {
  651. if (isResolved(allMods.at(*it)))
  652. {
  653. toResolve.insert(*it);
  654. output.push_back(*it);
  655. it = input.erase(it);
  656. continue;
  657. }
  658. it++;
  659. }
  660. resolvedMods.insert(toResolve.begin(), toResolve.end());
  661. }
  662. return output;
  663. }
  664. std::vector<std::string> CModHandler::getModList(std::string path)
  665. {
  666. std::string modDir = boost::to_upper_copy(path + "MODS/");
  667. size_t depth = boost::range::count(modDir, '/');
  668. auto list = CResourceHandler::get("initial")->getFilteredFiles([&](const ResourceID & id) -> bool
  669. {
  670. if (id.getType() != EResType::DIRECTORY)
  671. return false;
  672. if (!boost::algorithm::starts_with(id.getName(), modDir))
  673. return false;
  674. if (boost::range::count(id.getName(), '/') != depth )
  675. return false;
  676. return true;
  677. });
  678. //storage for found mods
  679. std::vector<std::string> foundMods;
  680. for (auto & entry : list)
  681. {
  682. std::string name = entry.getName();
  683. name.erase(0, modDir.size()); //Remove path prefix
  684. // check if wog is actually present. Hack-ish but better than crash
  685. // TODO: remove soon (hopefully - before 0.96)
  686. if (name == "WOG")
  687. {
  688. if (!CResourceHandler::get("initial")->existsResource(ResourceID("DATA/ZVS", EResType::DIRECTORY)) &&
  689. !CResourceHandler::get("initial")->existsResource(ResourceID("MODS/WOG/DATA/ZVS", EResType::DIRECTORY)))
  690. {
  691. continue;
  692. }
  693. }
  694. if (!name.empty())
  695. foundMods.push_back(name);
  696. }
  697. return foundMods;
  698. }
  699. void CModHandler::loadMods(std::string path, std::string parent, const JsonNode & modSettings, bool enableMods)
  700. {
  701. for(std::string modName : getModList(path))
  702. loadOneMod(modName, parent, modSettings, enableMods);
  703. }
  704. void CModHandler::loadOneMod(std::string modName, std::string parent, const JsonNode & modSettings, bool enableMods)
  705. {
  706. boost::to_lower(modName);
  707. std::string modFullName = parent.empty() ? modName : parent + '.' + modName;
  708. if(CResourceHandler::get("initial")->existsResource(ResourceID(CModInfo::getModFile(modFullName))))
  709. {
  710. CModInfo mod(modFullName, modSettings[modName], JsonNode(ResourceID(CModInfo::getModFile(modFullName))));
  711. if (!parent.empty()) // this is submod, add parent to dependencies
  712. mod.dependencies.insert(parent);
  713. allMods[modFullName] = mod;
  714. if (mod.enabled && enableMods)
  715. activeMods.push_back(modFullName);
  716. loadMods(CModInfo::getModDir(modFullName) + '/', modFullName, modSettings[modName]["mods"], enableMods && mod.enabled);
  717. }
  718. }
  719. void CModHandler::loadMods(bool onlyEssential)
  720. {
  721. JsonNode modConfig;
  722. if(onlyEssential)
  723. {
  724. loadOneMod("vcmi", "", modConfig, true);//only vcmi and submods
  725. }
  726. else
  727. {
  728. modConfig = loadModSettings("config/modSettings.json");
  729. loadMods("", "", modConfig["activeMods"], true);
  730. }
  731. coreMod = CModInfo("core", modConfig["core"], JsonNode(ResourceID("config/gameConfig.json")));
  732. coreMod.name = "Original game files";
  733. }
  734. std::vector<std::string> CModHandler::getAllMods()
  735. {
  736. std::vector<std::string> modlist;
  737. for (auto & entry : allMods)
  738. modlist.push_back(entry.first);
  739. return modlist;
  740. }
  741. std::vector<std::string> CModHandler::getActiveMods()
  742. {
  743. return activeMods;
  744. }
  745. static JsonNode genDefaultFS()
  746. {
  747. // default FS config for mods: directory "Content" that acts as H3 root directory
  748. JsonNode defaultFS;
  749. defaultFS[""].Vector().resize(2);
  750. defaultFS[""].Vector()[0]["type"].String() = "zip";
  751. defaultFS[""].Vector()[0]["path"].String() = "/Content.zip";
  752. defaultFS[""].Vector()[1]["type"].String() = "dir";
  753. defaultFS[""].Vector()[1]["path"].String() = "/Content";
  754. return defaultFS;
  755. }
  756. static ISimpleResourceLoader * genModFilesystem(const std::string & modName, const JsonNode & conf)
  757. {
  758. static const JsonNode defaultFS = genDefaultFS();
  759. if (!conf["filesystem"].isNull())
  760. return CResourceHandler::createFileSystem(CModInfo::getModDir(modName), conf["filesystem"]);
  761. else
  762. return CResourceHandler::createFileSystem(CModInfo::getModDir(modName), defaultFS);
  763. }
  764. static ui32 calculateModChecksum(const std::string modName, ISimpleResourceLoader * filesystem)
  765. {
  766. boost::crc_32_type modChecksum;
  767. // first - add current VCMI version into checksum to force re-validation on VCMI updates
  768. modChecksum.process_bytes(reinterpret_cast<const void*>(GameConstants::VCMI_VERSION.data()), GameConstants::VCMI_VERSION.size());
  769. // second - add mod.json into checksum because filesystem does not contains this file
  770. // FIXME: remove workaround for core mod
  771. if (modName != "core")
  772. {
  773. ResourceID modConfFile(CModInfo::getModFile(modName), EResType::TEXT);
  774. ui32 configChecksum = CResourceHandler::get("initial")->load(modConfFile)->calculateCRC32();
  775. modChecksum.process_bytes(reinterpret_cast<const void *>(&configChecksum), sizeof(configChecksum));
  776. }
  777. // third - add all detected text files from this mod into checksum
  778. auto files = filesystem->getFilteredFiles([](const ResourceID & resID)
  779. {
  780. return resID.getType() == EResType::TEXT &&
  781. ( boost::starts_with(resID.getName(), "DATA") ||
  782. boost::starts_with(resID.getName(), "CONFIG"));
  783. });
  784. for (const ResourceID & file : files)
  785. {
  786. ui32 fileChecksum = filesystem->load(file)->calculateCRC32();
  787. modChecksum.process_bytes(reinterpret_cast<const void *>(&fileChecksum), sizeof(fileChecksum));
  788. }
  789. return modChecksum.checksum();
  790. }
  791. void CModHandler::loadModFilesystems()
  792. {
  793. activeMods = resolveDependencies(activeMods);
  794. coreMod.updateChecksum(calculateModChecksum("core", CResourceHandler::get("core")));
  795. for(std::string & modName : activeMods)
  796. {
  797. CModInfo & mod = allMods[modName];
  798. CResourceHandler::addFilesystem("data", modName, genModFilesystem(modName, mod.config));
  799. }
  800. }
  801. CModInfo & CModHandler::getModData(TModID modId)
  802. {
  803. auto it = allMods.find(modId);
  804. if(it == allMods.end())
  805. {
  806. throw std::runtime_error("Mod not found '" + modId+"'");
  807. }
  808. else
  809. {
  810. return it->second;
  811. }
  812. }
  813. void CModHandler::initializeConfig()
  814. {
  815. loadConfigFromFile("defaultMods.json");
  816. }
  817. void CModHandler::load()
  818. {
  819. CStopWatch totalTime, timer;
  820. logMod->info("\tInitializing content handler: %d ms", timer.getDiff());
  821. content.init();
  822. for(const TModID & modName : activeMods)
  823. {
  824. logMod->trace("Generating checksum for %s", modName);
  825. allMods[modName].updateChecksum(calculateModChecksum(modName, CResourceHandler::get(modName)));
  826. }
  827. // first - load virtual "core" mod that contains all data
  828. // TODO? move all data into real mods? RoE, AB, SoD, WoG
  829. content.preloadData(coreMod);
  830. for(const TModID & modName : activeMods)
  831. content.preloadData(allMods[modName]);
  832. logMod->info("\tParsing mod data: %d ms", timer.getDiff());
  833. content.load(coreMod);
  834. for(const TModID & modName : activeMods)
  835. content.load(allMods[modName]);
  836. content.loadCustom();
  837. logMod->info("\tLoading mod data: %d ms", timer.getDiff());
  838. VLC->creh->loadCrExpBon();
  839. VLC->creh->buildBonusTreeForTiers(); //do that after all new creatures are loaded
  840. identifiers.finalize();
  841. logMod->info("\tResolving identifiers: %d ms", timer.getDiff());
  842. content.afterLoadFinalization();
  843. logMod->info("\tHandlers post-load finalization: %d ms ", timer.getDiff());
  844. logMod->info("\tAll game content loaded in %d ms", totalTime.getDiff());
  845. }
  846. void CModHandler::afterLoad(bool onlyEssential)
  847. {
  848. JsonNode modSettings;
  849. for (auto & modEntry : allMods)
  850. {
  851. std::string pointer = "/" + boost::algorithm::replace_all_copy(modEntry.first, ".", "/mods/");
  852. modSettings["activeMods"].resolvePointer(pointer) = modEntry.second.saveLocalData();
  853. }
  854. modSettings["core"] = coreMod.saveLocalData();
  855. if(!onlyEssential)
  856. {
  857. FileStream file(*CResourceHandler::get()->getResourceName(ResourceID("config/modSettings.json")), std::ofstream::out | std::ofstream::trunc);
  858. file << modSettings.toJson();
  859. }
  860. }
  861. std::string CModHandler::normalizeIdentifier(const std::string & scope, const std::string & remoteScope, const std::string & identifier)
  862. {
  863. auto p = splitString(identifier, ':');
  864. if(p.first.empty())
  865. p.first = scope;
  866. if(p.first == remoteScope)
  867. p.first.clear();
  868. return p.first.empty() ? p.second : p.first + ":" + p.second;
  869. }
  870. void CModHandler::parseIdentifier(const std::string & fullIdentifier, std::string & scope, std::string & type, std::string & identifier)
  871. {
  872. auto p = splitString(fullIdentifier, ':');
  873. scope = p.first;
  874. auto p2 = splitString(p.second, '.');
  875. if(p2.first != "")
  876. {
  877. type = p2.first;
  878. identifier = p2.second;
  879. }
  880. else
  881. {
  882. type = p.second;
  883. identifier = "";
  884. }
  885. }
  886. std::string CModHandler::makeFullIdentifier(const std::string & scope, const std::string & type, const std::string & identifier)
  887. {
  888. if(type == "")
  889. logGlobal->error("Full identifier (%s %s) requires type name", scope, identifier);
  890. std::string actualScope = scope;
  891. std::string actualName = identifier;
  892. //ignore scope if identifier is scoped
  893. auto scopeAndName = splitString(identifier, ':');
  894. if(scopeAndName.first != "")
  895. {
  896. actualScope = scopeAndName.first;
  897. actualName = scopeAndName.second;
  898. }
  899. if(actualScope == "")
  900. {
  901. return actualName == "" ? type : type + "." + actualName;
  902. }
  903. else
  904. {
  905. return actualName == "" ? actualScope+ ":" + type : actualScope + ":" + type + "." + actualName;
  906. }
  907. }