CModHandler.cpp 35 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087
  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. #include "ScriptHandler.h"
  27. #include "BattleFieldHandler.h"
  28. #include "ObstacleHandler.h"
  29. #include <vstd/StringUtils.h>
  30. CIdentifierStorage::CIdentifierStorage():
  31. state(LOADING)
  32. {
  33. }
  34. CIdentifierStorage::~CIdentifierStorage()
  35. {
  36. }
  37. void CIdentifierStorage::checkIdentifier(std::string & ID)
  38. {
  39. if (boost::algorithm::ends_with(ID, "."))
  40. logMod->warn("BIG WARNING: identifier %s seems to be broken!", ID);
  41. else
  42. {
  43. size_t pos = 0;
  44. do
  45. {
  46. if (std::tolower(ID[pos]) != ID[pos] ) //Not in camelCase
  47. {
  48. logMod->warn("Warning: identifier %s is not in camelCase!", ID);
  49. ID[pos] = std::tolower(ID[pos]);// Try to fix the ID
  50. }
  51. pos = ID.find('.', pos);
  52. }
  53. while(pos++ != std::string::npos);
  54. }
  55. }
  56. CIdentifierStorage::ObjectCallback::ObjectCallback(
  57. std::string localScope, std::string remoteScope, std::string type,
  58. std::string name, const std::function<void(si32)> & callback,
  59. bool optional):
  60. localScope(localScope),
  61. remoteScope(remoteScope),
  62. type(type),
  63. name(name),
  64. callback(callback),
  65. optional(optional)
  66. {}
  67. void CIdentifierStorage::requestIdentifier(ObjectCallback callback)
  68. {
  69. checkIdentifier(callback.type);
  70. checkIdentifier(callback.name);
  71. assert(!callback.localScope.empty());
  72. if (state != FINISHED) // enqueue request if loading is still in progress
  73. scheduledRequests.push_back(callback);
  74. else // execute immediately for "late" requests
  75. resolveIdentifier(callback);
  76. }
  77. void CIdentifierStorage::requestIdentifier(std::string scope, std::string type, std::string name, const std::function<void(si32)> & callback)
  78. {
  79. auto pair = vstd::splitStringToPair(name, ':'); // remoteScope:name
  80. requestIdentifier(ObjectCallback(scope, pair.first, type, pair.second, callback, false));
  81. }
  82. void CIdentifierStorage::requestIdentifier(std::string scope, std::string fullName, const std::function<void(si32)>& callback)
  83. {
  84. auto scopeAndFullName = vstd::splitStringToPair(fullName, ':');
  85. auto typeAndName = vstd::splitStringToPair(scopeAndFullName.second, '.');
  86. requestIdentifier(ObjectCallback(scope, scopeAndFullName.first, typeAndName.first, typeAndName.second, callback, false));
  87. }
  88. void CIdentifierStorage::requestIdentifier(std::string type, const JsonNode & name, const std::function<void(si32)> & callback)
  89. {
  90. auto pair = vstd::splitStringToPair(name.String(), ':'); // remoteScope:name
  91. requestIdentifier(ObjectCallback(name.meta, pair.first, type, pair.second, callback, false));
  92. }
  93. void CIdentifierStorage::requestIdentifier(const JsonNode & name, const std::function<void(si32)> & callback)
  94. {
  95. auto pair = vstd::splitStringToPair(name.String(), ':'); // remoteScope:<type.name>
  96. auto pair2 = vstd::splitStringToPair(pair.second, '.'); // type.name
  97. requestIdentifier(ObjectCallback(name.meta, pair.first, pair2.first, pair2.second, callback, false));
  98. }
  99. void CIdentifierStorage::tryRequestIdentifier(std::string scope, std::string type, std::string name, const std::function<void(si32)> & callback)
  100. {
  101. auto pair = vstd::splitStringToPair(name, ':'); // remoteScope:name
  102. requestIdentifier(ObjectCallback(scope, pair.first, type, pair.second, callback, true));
  103. }
  104. void CIdentifierStorage::tryRequestIdentifier(std::string type, const JsonNode & name, const std::function<void(si32)> & callback)
  105. {
  106. auto pair = vstd::splitStringToPair(name.String(), ':'); // remoteScope:name
  107. requestIdentifier(ObjectCallback(name.meta, pair.first, type, pair.second, callback, true));
  108. }
  109. boost::optional<si32> CIdentifierStorage::getIdentifier(std::string scope, std::string type, std::string name, bool silent)
  110. {
  111. auto pair = vstd::splitStringToPair(name, ':'); // remoteScope:name
  112. auto idList = getPossibleIdentifiers(ObjectCallback(scope, pair.first, type, pair.second, std::function<void(si32)>(), silent));
  113. if (idList.size() == 1)
  114. return idList.front().id;
  115. if (!silent)
  116. logMod->error("Failed to resolve identifier %s of type %s from mod %s", name , type ,scope);
  117. return boost::optional<si32>();
  118. }
  119. boost::optional<si32> CIdentifierStorage::getIdentifier(std::string type, const JsonNode & name, bool silent)
  120. {
  121. auto pair = vstd::splitStringToPair(name.String(), ':'); // remoteScope:name
  122. auto idList = getPossibleIdentifiers(ObjectCallback(name.meta, pair.first, type, pair.second, std::function<void(si32)>(), silent));
  123. if (idList.size() == 1)
  124. return idList.front().id;
  125. if (!silent)
  126. logMod->error("Failed to resolve identifier %s of type %s from mod %s", name.String(), type, name.meta);
  127. return boost::optional<si32>();
  128. }
  129. boost::optional<si32> CIdentifierStorage::getIdentifier(const JsonNode & name, bool silent)
  130. {
  131. auto pair = vstd::splitStringToPair(name.String(), ':'); // remoteScope:<type.name>
  132. auto pair2 = vstd::splitStringToPair(pair.second, '.'); // type.name
  133. auto idList = getPossibleIdentifiers(ObjectCallback(name.meta, pair.first, pair2.first, pair2.second, std::function<void(si32)>(), silent));
  134. if (idList.size() == 1)
  135. return idList.front().id;
  136. if (!silent)
  137. logMod->error("Failed to resolve identifier %s of type %s from mod %s", name.String(), pair2.first, name.meta);
  138. return boost::optional<si32>();
  139. }
  140. boost::optional<si32> CIdentifierStorage::getIdentifier(std::string scope, std::string fullName, bool silent)
  141. {
  142. auto pair = vstd::splitStringToPair(fullName, ':'); // remoteScope:<type.name>
  143. auto pair2 = vstd::splitStringToPair(pair.second, '.'); // type.name
  144. auto idList = getPossibleIdentifiers(ObjectCallback(scope, pair.first, pair2.first, pair2.second, std::function<void(si32)>(), silent));
  145. if (idList.size() == 1)
  146. return idList.front().id;
  147. if (!silent)
  148. logMod->error("Failed to resolve identifier %s of type %s from mod %s", fullName, pair2.first, scope);
  149. return boost::optional<si32>();
  150. }
  151. void CIdentifierStorage::registerObject(std::string scope, std::string type, std::string name, si32 identifier)
  152. {
  153. ObjectData data;
  154. data.scope = scope;
  155. data.id = identifier;
  156. std::string fullID = type + '.' + name;
  157. checkIdentifier(fullID);
  158. std::pair<const std::string, ObjectData> mapping = std::make_pair(fullID, data);
  159. if(!vstd::containsMapping(registeredObjects, mapping))
  160. {
  161. logMod->trace("registered %s as %s:%s", fullID, scope, identifier);
  162. registeredObjects.insert(mapping);
  163. }
  164. }
  165. std::vector<CIdentifierStorage::ObjectData> CIdentifierStorage::getPossibleIdentifiers(const ObjectCallback & request)
  166. {
  167. std::set<std::string> allowedScopes;
  168. bool isValidScope = true;
  169. if (request.remoteScope.empty())
  170. {
  171. // normally ID's from all required mods, own mod and virtual "core" mod are allowed
  172. if(request.localScope != "core" && !request.localScope.empty())
  173. {
  174. allowedScopes = VLC->modh->getModDependencies(request.localScope, isValidScope);
  175. if(!isValidScope)
  176. return std::vector<ObjectData>();
  177. }
  178. allowedScopes.insert(request.localScope);
  179. allowedScopes.insert("core");
  180. }
  181. else
  182. {
  183. //...unless destination mod was specified explicitly
  184. //note: getModDependencies does not work for "core" by design
  185. //for map format support core mod has access to any mod
  186. //TODO: better solution for access from map?
  187. if(request.localScope == "core" || request.localScope == "")
  188. {
  189. allowedScopes.insert(request.remoteScope);
  190. }
  191. else
  192. {
  193. // allow only available to all core mod or dependencies
  194. auto myDeps = VLC->modh->getModDependencies(request.localScope, isValidScope);
  195. if(!isValidScope)
  196. return std::vector<ObjectData>();
  197. if(request.remoteScope == "core" || request.remoteScope == request.localScope || myDeps.count(request.remoteScope))
  198. allowedScopes.insert(request.remoteScope);
  199. }
  200. }
  201. std::string fullID = request.type + '.' + request.name;
  202. auto entries = registeredObjects.equal_range(fullID);
  203. if (entries.first != entries.second)
  204. {
  205. std::vector<ObjectData> locatedIDs;
  206. for (auto it = entries.first; it != entries.second; it++)
  207. {
  208. if (vstd::contains(allowedScopes, it->second.scope))
  209. {
  210. locatedIDs.push_back(it->second);
  211. }
  212. }
  213. return locatedIDs;
  214. }
  215. return std::vector<ObjectData>();
  216. }
  217. bool CIdentifierStorage::resolveIdentifier(const ObjectCallback & request)
  218. {
  219. auto identifiers = getPossibleIdentifiers(request);
  220. if (identifiers.size() == 1) // normally resolved ID
  221. {
  222. request.callback(identifiers.front().id);
  223. return true;
  224. }
  225. if (request.optional && identifiers.empty()) // failed to resolve optinal ID
  226. {
  227. return true;
  228. }
  229. // error found. Try to generate some debug info
  230. if (identifiers.size() == 0)
  231. logMod->error("Unknown identifier!");
  232. else
  233. logMod->error("Ambiguous identifier request!");
  234. logMod->error("Request for %s.%s from mod %s", request.type, request.name, request.localScope);
  235. for (auto id : identifiers)
  236. {
  237. logMod->error("\tID is available in mod %s", id.scope);
  238. }
  239. return false;
  240. }
  241. void CIdentifierStorage::finalize()
  242. {
  243. state = FINALIZING;
  244. bool errorsFound = false;
  245. //Note: we may receive new requests during resolution phase -> end may change -> range for can't be used
  246. for(auto it = scheduledRequests.begin(); it != scheduledRequests.end(); it++)
  247. {
  248. errorsFound |= !resolveIdentifier(*it);
  249. }
  250. if (errorsFound)
  251. {
  252. for(auto object : registeredObjects)
  253. {
  254. logMod->trace("%s : %s -> %d", object.second.scope, object.first, object.second.id);
  255. }
  256. logMod->error("All known identifiers were dumped into log file");
  257. }
  258. assert(errorsFound == false);
  259. state = FINISHED;
  260. }
  261. ContentTypeHandler::ContentTypeHandler(IHandlerBase * handler, std::string objectName):
  262. handler(handler),
  263. objectName(objectName),
  264. originalData(handler->loadLegacyData((size_t)VLC->modh->settings.data["textData"][objectName].Float()))
  265. {
  266. for(auto & node : originalData)
  267. {
  268. node.setMeta("core");
  269. }
  270. }
  271. bool ContentTypeHandler::preloadModData(std::string modName, std::vector<std::string> fileList, bool validate)
  272. {
  273. bool result;
  274. JsonNode data = JsonUtils::assembleFromFiles(fileList, result);
  275. data.setMeta(modName);
  276. ModInfo & modInfo = modData[modName];
  277. for(auto entry : data.Struct())
  278. {
  279. size_t colon = entry.first.find(':');
  280. if (colon == std::string::npos)
  281. {
  282. // normal object, local to this mod
  283. modInfo.modData[entry.first].swap(entry.second);
  284. }
  285. else
  286. {
  287. std::string remoteName = entry.first.substr(0, colon);
  288. std::string objectName = entry.first.substr(colon + 1);
  289. // patching this mod? Send warning and continue - this situation can be handled normally
  290. if (remoteName == modName)
  291. logMod->warn("Redundant namespace definition for %s", objectName);
  292. logMod->trace("Patching object %s (%s) from %s", objectName, remoteName, modName);
  293. JsonNode & remoteConf = modData[remoteName].patches[objectName];
  294. JsonUtils::merge(remoteConf, entry.second);
  295. }
  296. }
  297. return result;
  298. }
  299. bool ContentTypeHandler::loadMod(std::string modName, bool validate)
  300. {
  301. ModInfo & modInfo = modData[modName];
  302. bool result = true;
  303. auto performValidate = [&,this](JsonNode & data, const std::string & name){
  304. handler->beforeValidate(data);
  305. if (validate)
  306. result &= JsonUtils::validate(data, "vcmi:" + objectName, name);
  307. };
  308. // apply patches
  309. if (!modInfo.patches.isNull())
  310. JsonUtils::merge(modInfo.modData, modInfo.patches);
  311. for(auto & entry : modInfo.modData.Struct())
  312. {
  313. const std::string & name = entry.first;
  314. JsonNode & data = entry.second;
  315. if (vstd::contains(data.Struct(), "index") && !data["index"].isNull())
  316. {
  317. // try to add H3 object data
  318. size_t index = static_cast<size_t>(data["index"].Float());
  319. if(originalData.size() > index)
  320. {
  321. logMod->trace("found original data in loadMod(%s) at index %d", name, index);
  322. JsonUtils::merge(originalData[index], data);
  323. std::swap(originalData[index], data);
  324. originalData[index].clear(); // do not use same data twice (same ID)
  325. }
  326. else
  327. {
  328. logMod->warn("no original data in loadMod(%s) at index %d", name, index);
  329. }
  330. performValidate(data, name);
  331. handler->loadObject(modName, name, data, index);
  332. }
  333. else
  334. {
  335. // normal new object
  336. logMod->trace("no index in loadMod(%s)", name);
  337. performValidate(data,name);
  338. handler->loadObject(modName, name, data);
  339. }
  340. }
  341. return result;
  342. }
  343. void ContentTypeHandler::loadCustom()
  344. {
  345. handler->loadCustom();
  346. }
  347. void ContentTypeHandler::afterLoadFinalization()
  348. {
  349. handler->afterLoadFinalization();
  350. }
  351. CContentHandler::CContentHandler()
  352. {
  353. }
  354. void CContentHandler::init()
  355. {
  356. handlers.insert(std::make_pair("heroClasses", ContentTypeHandler(&VLC->heroh->classes, "heroClass")));
  357. handlers.insert(std::make_pair("artifacts", ContentTypeHandler(VLC->arth, "artifact")));
  358. handlers.insert(std::make_pair("creatures", ContentTypeHandler(VLC->creh, "creature")));
  359. handlers.insert(std::make_pair("factions", ContentTypeHandler(VLC->townh, "faction")));
  360. handlers.insert(std::make_pair("objects", ContentTypeHandler(VLC->objtypeh, "object")));
  361. handlers.insert(std::make_pair("heroes", ContentTypeHandler(VLC->heroh, "hero")));
  362. handlers.insert(std::make_pair("spells", ContentTypeHandler(VLC->spellh, "spell")));
  363. handlers.insert(std::make_pair("skills", ContentTypeHandler(VLC->skillh, "skill")));
  364. handlers.insert(std::make_pair("templates", ContentTypeHandler((IHandlerBase *)VLC->tplh, "template")));
  365. #if SCRIPTING_ENABLED
  366. handlers.insert(std::make_pair("scripts", ContentTypeHandler(VLC->scriptHandler, "script")));
  367. #endif
  368. handlers.insert(std::make_pair("battlefields", ContentTypeHandler(VLC->battlefieldsHandler, "battlefield")));
  369. handlers.insert(std::make_pair("obstacles", ContentTypeHandler(VLC->obstacleHandler, "obstacle")));
  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() : content(std::make_shared<CContentHandler>())
  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 = static_cast<int>(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 = static_cast<int>(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 = static_cast<int>(hardcodedFeatures["CREEP_SIZE"].Integer());
  552. logMod->debug("\tCREEP_SIZE\t%d", settings.CREEP_SIZE);
  553. settings.WEEKLY_GROWTH = static_cast<int>(hardcodedFeatures["WEEKLY_GROWTH_PERCENT"].Integer());
  554. logMod->debug("\tWEEKLY_GROWTH\t%d", settings.WEEKLY_GROWTH);
  555. settings.NEUTRAL_STACK_EXP = static_cast<int>(hardcodedFeatures["NEUTRAL_STACK_EXP_DAILY"].Integer());
  556. logMod->debug("\tNEUTRAL_STACK_EXP\t%d", settings.NEUTRAL_STACK_EXP);
  557. settings.MAX_BUILDING_PER_TURN = static_cast<int>(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. settings.NO_RANDOM_SPECIAL_WEEKS_AND_MONTHS = hardcodedFeatures["NO_RANDOM_SPECIAL_WEEKS_AND_MONTHS"].Bool();
  568. logMod->debug("\tNO_RANDOM_SPECIAL_WEEKS_AND_MONTHS\t%d", static_cast<int>(settings.NO_RANDOM_SPECIAL_WEEKS_AND_MONTHS));
  569. const JsonNode & gameModules = settings.data["modules"];
  570. modules.STACK_EXP = gameModules["STACK_EXPERIENCE"].Bool();
  571. logMod->debug("\tSTACK_EXP\t%d", static_cast<int>(modules.STACK_EXP));
  572. modules.STACK_ARTIFACT = gameModules["STACK_ARTIFACTS"].Bool();
  573. logMod->debug("\tSTACK_ARTIFACT\t%d", static_cast<int>(modules.STACK_ARTIFACT));
  574. modules.COMMANDERS = gameModules["COMMANDERS"].Bool();
  575. logMod->debug("\tCOMMANDERS\t%d", static_cast<int>(modules.COMMANDERS));
  576. modules.MITHRIL = gameModules["MITHRIL"].Bool();
  577. logMod->debug("\tMITHRIL\t%d", static_cast<int>(modules.MITHRIL));
  578. }
  579. // currentList is passed by value to get current list of depending mods
  580. bool CModHandler::hasCircularDependency(TModID modID, std::set <TModID> currentList) const
  581. {
  582. const CModInfo & mod = allMods.at(modID);
  583. // Mod already present? We found a loop
  584. if (vstd::contains(currentList, modID))
  585. {
  586. logMod->error("Error: Circular dependency detected! Printing dependency list:");
  587. logMod->error("\t%s -> ", mod.name);
  588. return true;
  589. }
  590. currentList.insert(modID);
  591. // recursively check every dependency of this mod
  592. for(const TModID & dependency : mod.dependencies)
  593. {
  594. if (hasCircularDependency(dependency, currentList))
  595. {
  596. logMod->error("\t%s ->\n", mod.name); // conflict detected, print dependency list
  597. return true;
  598. }
  599. }
  600. return false;
  601. }
  602. bool CModHandler::checkDependencies(const std::vector <TModID> & input) const
  603. {
  604. for(const TModID & id : input)
  605. {
  606. const CModInfo & mod = allMods.at(id);
  607. for(const TModID & dep : mod.dependencies)
  608. {
  609. if(!vstd::contains(input, dep))
  610. {
  611. logMod->error("Error: Mod %s requires missing %s!", mod.name, dep);
  612. return false;
  613. }
  614. }
  615. for(const TModID & conflicting : mod.conflicts)
  616. {
  617. if(vstd::contains(input, conflicting))
  618. {
  619. logMod->error("Error: Mod %s conflicts with %s!", mod.name, allMods.at(conflicting).name);
  620. return false;
  621. }
  622. }
  623. if(hasCircularDependency(id))
  624. return false;
  625. }
  626. return true;
  627. }
  628. // Returned vector affects the resource loaders call order (see CFilesystemList::load).
  629. // The loaders call order matters when dependent mod overrides resources in its dependencies.
  630. std::vector <TModID> CModHandler::validateAndSortDependencies(std::vector <TModID> modsToResolve) const
  631. {
  632. // Topological sort algorithm.
  633. // TODO: Investigate possible ways to improve performance.
  634. boost::range::sort(modsToResolve); // Sort mods per name
  635. std::vector <TModID> sortedValidMods; // Vector keeps order of elements (LIFO)
  636. sortedValidMods.reserve(modsToResolve.size()); // push_back calls won't cause memory reallocation
  637. std::set <TModID> resolvedModIDs; // Use a set for validation for performance reason, but set does not keep order of elements
  638. // Mod is resolved if it has not dependencies or all its dependencies are already resolved
  639. auto isResolved = [&](const CModInfo & mod) -> CModInfo::EValidationStatus
  640. {
  641. if(mod.dependencies.size() > resolvedModIDs.size())
  642. return CModInfo::PENDING;
  643. for(const TModID & dependency : mod.dependencies)
  644. {
  645. if(!vstd::contains(resolvedModIDs, dependency))
  646. return CModInfo::PENDING;
  647. }
  648. return CModInfo::PASSED;
  649. };
  650. while(true)
  651. {
  652. std::set <TModID> resolvedOnCurrentTreeLevel;
  653. for(auto it = modsToResolve.begin(); it != modsToResolve.end();) // One iteration - one level of mods tree
  654. {
  655. if(isResolved(allMods.at(*it)) == CModInfo::PASSED)
  656. {
  657. resolvedOnCurrentTreeLevel.insert(*it); // Not to the resolvedModIDs, so current node childs will be resolved on the next iteration
  658. sortedValidMods.push_back(*it);
  659. it = modsToResolve.erase(it);
  660. continue;
  661. }
  662. it++;
  663. }
  664. if(resolvedOnCurrentTreeLevel.size())
  665. {
  666. resolvedModIDs.insert(resolvedOnCurrentTreeLevel.begin(), resolvedOnCurrentTreeLevel.end());
  667. continue;
  668. }
  669. // If there're no valid mods on the current mods tree level, no more mod can be resolved, should be end.
  670. break;
  671. }
  672. // Left mods have unresolved dependencies, output all to log.
  673. for(const auto & brokenModID : modsToResolve)
  674. {
  675. const CModInfo & brokenMod = allMods.at(brokenModID);
  676. for(const TModID & dependency : brokenMod.dependencies)
  677. {
  678. if(!vstd::contains(resolvedModIDs, dependency))
  679. logMod->error("Mod '%s' will not work: it depends on mod '%s', which is not installed.", brokenMod.name, dependency);
  680. }
  681. }
  682. return sortedValidMods;
  683. }
  684. std::vector<std::string> CModHandler::getModList(std::string path)
  685. {
  686. std::string modDir = boost::to_upper_copy(path + "MODS/");
  687. size_t depth = boost::range::count(modDir, '/');
  688. auto list = CResourceHandler::get("initial")->getFilteredFiles([&](const ResourceID & id) -> bool
  689. {
  690. if (id.getType() != EResType::DIRECTORY)
  691. return false;
  692. if (!boost::algorithm::starts_with(id.getName(), modDir))
  693. return false;
  694. if (boost::range::count(id.getName(), '/') != depth )
  695. return false;
  696. return true;
  697. });
  698. //storage for found mods
  699. std::vector<std::string> foundMods;
  700. for (auto & entry : list)
  701. {
  702. std::string name = entry.getName();
  703. name.erase(0, modDir.size()); //Remove path prefix
  704. if (!name.empty())
  705. foundMods.push_back(name);
  706. }
  707. return foundMods;
  708. }
  709. void CModHandler::loadMods(std::string path, std::string parent, const JsonNode & modSettings, bool enableMods)
  710. {
  711. for(std::string modName : getModList(path))
  712. loadOneMod(modName, parent, modSettings, enableMods);
  713. }
  714. void CModHandler::loadOneMod(std::string modName, std::string parent, const JsonNode & modSettings, bool enableMods)
  715. {
  716. boost::to_lower(modName);
  717. std::string modFullName = parent.empty() ? modName : parent + '.' + modName;
  718. if(CResourceHandler::get("initial")->existsResource(ResourceID(CModInfo::getModFile(modFullName))))
  719. {
  720. CModInfo mod(modFullName, modSettings[modName], JsonNode(ResourceID(CModInfo::getModFile(modFullName))));
  721. if (!parent.empty()) // this is submod, add parent to dependencies
  722. mod.dependencies.insert(parent);
  723. allMods[modFullName] = mod;
  724. if (mod.enabled && enableMods)
  725. activeMods.push_back(modFullName);
  726. loadMods(CModInfo::getModDir(modFullName) + '/', modFullName, modSettings[modName]["mods"], enableMods && mod.enabled);
  727. }
  728. }
  729. void CModHandler::loadMods(bool onlyEssential)
  730. {
  731. JsonNode modConfig;
  732. if(onlyEssential)
  733. {
  734. loadOneMod("vcmi", "", modConfig, true);//only vcmi and submods
  735. }
  736. else
  737. {
  738. modConfig = loadModSettings("config/modSettings.json");
  739. loadMods("", "", modConfig["activeMods"], true);
  740. }
  741. coreMod = CModInfo("core", modConfig["core"], JsonNode(ResourceID("config/gameConfig.json")));
  742. coreMod.name = "Original game files";
  743. }
  744. std::vector<std::string> CModHandler::getAllMods()
  745. {
  746. std::vector<std::string> modlist;
  747. for (auto & entry : allMods)
  748. modlist.push_back(entry.first);
  749. return modlist;
  750. }
  751. std::vector<std::string> CModHandler::getActiveMods()
  752. {
  753. return activeMods;
  754. }
  755. static JsonNode genDefaultFS()
  756. {
  757. // default FS config for mods: directory "Content" that acts as H3 root directory
  758. JsonNode defaultFS;
  759. defaultFS[""].Vector().resize(2);
  760. defaultFS[""].Vector()[0]["type"].String() = "zip";
  761. defaultFS[""].Vector()[0]["path"].String() = "/Content.zip";
  762. defaultFS[""].Vector()[1]["type"].String() = "dir";
  763. defaultFS[""].Vector()[1]["path"].String() = "/Content";
  764. return defaultFS;
  765. }
  766. static ISimpleResourceLoader * genModFilesystem(const std::string & modName, const JsonNode & conf)
  767. {
  768. static const JsonNode defaultFS = genDefaultFS();
  769. if (!conf["filesystem"].isNull())
  770. return CResourceHandler::createFileSystem(CModInfo::getModDir(modName), conf["filesystem"]);
  771. else
  772. return CResourceHandler::createFileSystem(CModInfo::getModDir(modName), defaultFS);
  773. }
  774. static ui32 calculateModChecksum(const std::string modName, ISimpleResourceLoader * filesystem)
  775. {
  776. boost::crc_32_type modChecksum;
  777. // first - add current VCMI version into checksum to force re-validation on VCMI updates
  778. modChecksum.process_bytes(reinterpret_cast<const void*>(GameConstants::VCMI_VERSION.data()), GameConstants::VCMI_VERSION.size());
  779. // second - add mod.json into checksum because filesystem does not contains this file
  780. // FIXME: remove workaround for core mod
  781. if (modName != "core")
  782. {
  783. ResourceID modConfFile(CModInfo::getModFile(modName), EResType::TEXT);
  784. ui32 configChecksum = CResourceHandler::get("initial")->load(modConfFile)->calculateCRC32();
  785. modChecksum.process_bytes(reinterpret_cast<const void *>(&configChecksum), sizeof(configChecksum));
  786. }
  787. // third - add all detected text files from this mod into checksum
  788. auto files = filesystem->getFilteredFiles([](const ResourceID & resID)
  789. {
  790. return resID.getType() == EResType::TEXT &&
  791. ( boost::starts_with(resID.getName(), "DATA") ||
  792. boost::starts_with(resID.getName(), "CONFIG"));
  793. });
  794. for (const ResourceID & file : files)
  795. {
  796. ui32 fileChecksum = filesystem->load(file)->calculateCRC32();
  797. modChecksum.process_bytes(reinterpret_cast<const void *>(&fileChecksum), sizeof(fileChecksum));
  798. }
  799. return modChecksum.checksum();
  800. }
  801. void CModHandler::loadModFilesystems()
  802. {
  803. activeMods = validateAndSortDependencies(activeMods);
  804. coreMod.updateChecksum(calculateModChecksum("core", CResourceHandler::get("core")));
  805. for(std::string & modName : activeMods)
  806. {
  807. CModInfo & mod = allMods[modName];
  808. CResourceHandler::addFilesystem("data", modName, genModFilesystem(modName, mod.config));
  809. }
  810. }
  811. std::set<TModID> CModHandler::getModDependencies(TModID modId, bool & isModFound)
  812. {
  813. auto it = allMods.find(modId);
  814. isModFound = (it != allMods.end());
  815. if(isModFound)
  816. return it->second.dependencies;
  817. logMod->error("Mod not found: '%s'", modId);
  818. return std::set<TModID>();
  819. }
  820. void CModHandler::initializeConfig()
  821. {
  822. loadConfigFromFile("defaultMods.json");
  823. }
  824. void CModHandler::load()
  825. {
  826. CStopWatch totalTime, timer;
  827. logMod->info("\tInitializing content handler: %d ms", timer.getDiff());
  828. content->init();
  829. for(const TModID & modName : activeMods)
  830. {
  831. logMod->trace("Generating checksum for %s", modName);
  832. allMods[modName].updateChecksum(calculateModChecksum(modName, CResourceHandler::get(modName)));
  833. }
  834. // first - load virtual "core" mod that contains all data
  835. // TODO? move all data into real mods? RoE, AB, SoD, WoG
  836. content->preloadData(coreMod);
  837. for(const TModID & modName : activeMods)
  838. content->preloadData(allMods[modName]);
  839. logMod->info("\tParsing mod data: %d ms", timer.getDiff());
  840. content->load(coreMod);
  841. for(const TModID & modName : activeMods)
  842. content->load(allMods[modName]);
  843. #if SCRIPTING_ENABLED
  844. VLC->scriptHandler->performRegistration(VLC);//todo: this should be done before any other handlers load
  845. #endif
  846. content->loadCustom();
  847. logMod->info("\tLoading mod data: %d ms", timer.getDiff());
  848. VLC->creh->loadCrExpBon();
  849. VLC->creh->buildBonusTreeForTiers(); //do that after all new creatures are loaded
  850. identifiers.finalize();
  851. logMod->info("\tResolving identifiers: %d ms", timer.getDiff());
  852. content->afterLoadFinalization();
  853. logMod->info("\tHandlers post-load finalization: %d ms ", timer.getDiff());
  854. logMod->info("\tAll game content loaded in %d ms", totalTime.getDiff());
  855. }
  856. void CModHandler::afterLoad(bool onlyEssential)
  857. {
  858. JsonNode modSettings;
  859. for (auto & modEntry : allMods)
  860. {
  861. std::string pointer = "/" + boost::algorithm::replace_all_copy(modEntry.first, ".", "/mods/");
  862. modSettings["activeMods"].resolvePointer(pointer) = modEntry.second.saveLocalData();
  863. }
  864. modSettings["core"] = coreMod.saveLocalData();
  865. if(!onlyEssential)
  866. {
  867. FileStream file(*CResourceHandler::get()->getResourceName(ResourceID("config/modSettings.json")), std::ofstream::out | std::ofstream::trunc);
  868. file << modSettings.toJson();
  869. }
  870. }
  871. std::string CModHandler::normalizeIdentifier(const std::string & scope, const std::string & remoteScope, const std::string & identifier)
  872. {
  873. auto p = vstd::splitStringToPair(identifier, ':');
  874. if(p.first.empty())
  875. p.first = scope;
  876. if(p.first == remoteScope)
  877. p.first.clear();
  878. return p.first.empty() ? p.second : p.first + ":" + p.second;
  879. }
  880. void CModHandler::parseIdentifier(const std::string & fullIdentifier, std::string & scope, std::string & type, std::string & identifier)
  881. {
  882. auto p = vstd::splitStringToPair(fullIdentifier, ':');
  883. scope = p.first;
  884. auto p2 = vstd::splitStringToPair(p.second, '.');
  885. if(p2.first != "")
  886. {
  887. type = p2.first;
  888. identifier = p2.second;
  889. }
  890. else
  891. {
  892. type = p.second;
  893. identifier = "";
  894. }
  895. }
  896. std::string CModHandler::makeFullIdentifier(const std::string & scope, const std::string & type, const std::string & identifier)
  897. {
  898. if(type == "")
  899. logGlobal->error("Full identifier (%s %s) requires type name", scope, identifier);
  900. std::string actualScope = scope;
  901. std::string actualName = identifier;
  902. //ignore scope if identifier is scoped
  903. auto scopeAndName = vstd::splitStringToPair(identifier, ':');
  904. if(scopeAndName.first != "")
  905. {
  906. actualScope = scopeAndName.first;
  907. actualName = scopeAndName.second;
  908. }
  909. if(actualScope == "")
  910. {
  911. return actualName == "" ? type : type + "." + actualName;
  912. }
  913. else
  914. {
  915. return actualName == "" ? actualScope+ ":" + type : actualScope + ":" + type + "." + actualName;
  916. }
  917. }