2012-08-10 18:16:42 +03:00
|
|
|
#pragma once
|
|
|
|
|
2013-04-07 13:48:07 +03:00
|
|
|
#include "filesystem/CResourceLoader.h"
|
2012-08-10 16:07:53 +03:00
|
|
|
|
|
|
|
#include "VCMI_Lib.h"
|
2013-04-21 15:49:26 +03:00
|
|
|
#include "JsonNode.h"
|
2012-08-10 16:07:53 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* CModHandler.h, part of VCMI engine
|
|
|
|
*
|
|
|
|
* Authors: listed in file AUTHORS in main folder
|
|
|
|
*
|
|
|
|
* License: GNU General Public License v2.0 or later
|
|
|
|
* Full text of license available in license.txt file, in main folder
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
class CModHandler;
|
|
|
|
class CModIndentifier;
|
|
|
|
class CModInfo;
|
2012-11-13 14:52:23 +03:00
|
|
|
class JsonNode;
|
2013-04-21 15:49:26 +03:00
|
|
|
class IHandlerBase;
|
2012-08-10 16:07:53 +03:00
|
|
|
|
2012-12-03 19:00:17 +03:00
|
|
|
/// class that stores all object identifiers strings and maps them to numeric ID's
|
|
|
|
/// if possible, objects ID's should be in format <type>.<name>, camelCase e.g. "creature.grandElf"
|
|
|
|
class CIdentifierStorage
|
|
|
|
{
|
2013-04-25 17:03:35 +03:00
|
|
|
struct ObjectCallback // entry created on ID request
|
|
|
|
{
|
|
|
|
std::string localScope; /// scope from which this ID was requested
|
|
|
|
std::string remoteScope; /// scope in which this object must be found
|
|
|
|
std::string type; /// type, e.g. creature, faction, hero, etc
|
|
|
|
std::string name; /// string ID
|
2013-06-26 14:18:27 +03:00
|
|
|
std::function<void(si32)> callback;
|
2013-04-25 17:03:35 +03:00
|
|
|
|
2013-06-26 14:18:27 +03:00
|
|
|
ObjectCallback(std::string localScope, std::string remoteScope, std::string type, std::string name, const std::function<void(si32)> & callback);
|
2013-04-25 17:03:35 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
struct ObjectData // entry created on ID registration
|
|
|
|
{
|
|
|
|
si32 id;
|
|
|
|
std::string scope; /// scope in which this ID located
|
|
|
|
};
|
|
|
|
|
|
|
|
std::multimap<std::string, ObjectData > registeredObjects;
|
|
|
|
std::vector<ObjectCallback> scheduledRequests;
|
2012-12-03 19:00:17 +03:00
|
|
|
|
2013-04-21 15:49:26 +03:00
|
|
|
/// Check if identifier can be valid (camelCase, point as separator)
|
2012-12-22 19:47:12 +03:00
|
|
|
void checkIdentifier(std::string & ID);
|
2013-04-25 17:03:35 +03:00
|
|
|
|
|
|
|
void requestIdentifier(ObjectCallback callback);
|
|
|
|
bool resolveIdentifier(const ObjectCallback & callback);
|
2012-12-03 19:00:17 +03:00
|
|
|
public:
|
|
|
|
/// request identifier for specific object name. If ID is not yet resolved callback will be queued
|
|
|
|
/// and will be called later
|
2013-06-26 14:18:27 +03:00
|
|
|
void requestIdentifier(std::string scope, std::string type, std::string name, const std::function<void(si32)> & callback);
|
|
|
|
void requestIdentifier(std::string type, const JsonNode & name, const std::function<void(si32)> & callback);
|
|
|
|
void requestIdentifier(const JsonNode & name, const std::function<void(si32)> & callback);
|
2013-04-25 17:03:35 +03:00
|
|
|
|
2012-12-03 19:00:17 +03:00
|
|
|
/// registers new object, calls all associated callbacks
|
2013-04-21 15:49:26 +03:00
|
|
|
void registerObject(std::string scope, std::string type, std::string name, si32 identifier);
|
2012-12-03 19:00:17 +03:00
|
|
|
|
|
|
|
/// called at the very end of loading to check for any missing ID's
|
2013-04-21 15:49:26 +03:00
|
|
|
void finalize();
|
|
|
|
};
|
|
|
|
|
|
|
|
/// class used to load all game data into handlers. Used only during loading
|
|
|
|
class CContentHandler
|
|
|
|
{
|
|
|
|
/// internal type to handle loading of one data type (e.g. artifacts, creatures)
|
|
|
|
class ContentTypeHandler
|
|
|
|
{
|
|
|
|
struct ModInfo
|
|
|
|
{
|
|
|
|
/// mod data from this mod and for this mod
|
|
|
|
JsonNode modData;
|
|
|
|
/// mod data for this mod from other mods (patches)
|
|
|
|
JsonNode patches;
|
|
|
|
};
|
|
|
|
|
|
|
|
/// handler to which all data will be loaded
|
|
|
|
IHandlerBase * handler;
|
|
|
|
|
|
|
|
std::string objectName;
|
|
|
|
|
|
|
|
/// contains all loaded H3 data
|
|
|
|
std::vector<JsonNode> originalData;
|
|
|
|
std::map<std::string, ModInfo> modData;
|
|
|
|
|
|
|
|
public:
|
2013-04-26 00:50:55 +03:00
|
|
|
ContentTypeHandler(IHandlerBase * handler, std::string objectName);
|
2013-04-21 15:49:26 +03:00
|
|
|
|
|
|
|
/// local version of methods in ContentHandler
|
|
|
|
void preloadModData(std::string modName, std::vector<std::string> fileList);
|
|
|
|
void loadMod(std::string modName);
|
|
|
|
};
|
|
|
|
|
|
|
|
std::map<std::string, ContentTypeHandler> handlers;
|
|
|
|
public:
|
|
|
|
/// fully initialize object. Will cause reading of H3 config files
|
|
|
|
CContentHandler();
|
|
|
|
|
|
|
|
/// preloads all data from fileList as data from modName
|
|
|
|
void preloadModData(std::string modName, JsonNode modConfig);
|
|
|
|
|
|
|
|
/// actually loads data in mod
|
|
|
|
void loadMod(std::string modName);
|
2012-12-03 19:00:17 +03:00
|
|
|
};
|
|
|
|
|
2012-12-12 14:13:57 +03:00
|
|
|
typedef std::string TModID;
|
2012-08-10 16:07:53 +03:00
|
|
|
|
|
|
|
class DLL_LINKAGE CModInfo
|
|
|
|
{
|
|
|
|
public:
|
2012-12-12 14:13:57 +03:00
|
|
|
/// identifier, identical to name of folder with mod
|
|
|
|
std::string identifier;
|
|
|
|
|
|
|
|
/// human-readable strings
|
|
|
|
std::string name;
|
|
|
|
std::string description;
|
|
|
|
|
2013-01-10 21:53:49 +03:00
|
|
|
/// list of mods that should be loaded before this one
|
|
|
|
std::set <TModID> dependencies;
|
2012-12-12 14:13:57 +03:00
|
|
|
|
2013-01-10 21:53:49 +03:00
|
|
|
/// list of mods that can't be used in the same time as this one
|
|
|
|
std::set <TModID> conflicts;
|
2012-08-10 16:07:53 +03:00
|
|
|
|
2012-12-12 14:13:57 +03:00
|
|
|
// mod configuration (mod.json). (no need to store it right now)
|
|
|
|
// std::shared_ptr<JsonNode> config; //TODO: unique_ptr can't be serialized
|
2012-08-10 16:07:53 +03:00
|
|
|
|
|
|
|
template <typename Handler> void serialize(Handler &h, const int version)
|
|
|
|
{
|
2013-01-10 21:53:49 +03:00
|
|
|
h & identifier & description & name & dependencies & conflicts;
|
2012-08-10 16:07:53 +03:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
class DLL_LINKAGE CModHandler
|
|
|
|
{
|
2012-11-13 14:52:23 +03:00
|
|
|
std::map <TModID, CModInfo> allMods;
|
2012-12-12 14:13:57 +03:00
|
|
|
std::vector <TModID> activeMods;//active mods, in order in which they were loaded
|
2012-08-10 16:07:53 +03:00
|
|
|
|
2012-12-12 14:13:57 +03:00
|
|
|
void loadConfigFromFile (std::string name);
|
2013-01-10 21:53:49 +03:00
|
|
|
|
|
|
|
bool hasCircularDependency(TModID mod, std::set <TModID> currentList = std::set <TModID>()) const;
|
|
|
|
|
2013-04-02 20:06:43 +03:00
|
|
|
//returns false if mod list is incorrect and prints error to console. Possible errors are:
|
2013-01-10 21:53:49 +03:00
|
|
|
// - missing dependency mod
|
|
|
|
// - conflicting mod in load order
|
|
|
|
// - circular dependencies
|
|
|
|
bool checkDependencies(const std::vector <TModID> & input) const;
|
|
|
|
|
|
|
|
// returns load order in which all dependencies are resolved, e.g. loaded after required mods
|
|
|
|
// function assumes that input list is valid (checkDependencies returned true)
|
|
|
|
std::vector <TModID> resolveDependencies(std::vector<TModID> input) const;
|
2013-04-02 20:06:43 +03:00
|
|
|
|
|
|
|
// helper for loadActiveMods. Loads content from list of files
|
|
|
|
template<typename Handler>
|
|
|
|
void handleData(Handler handler, const JsonNode & source, std::string listName, std::string schemaName);
|
2012-12-03 19:00:17 +03:00
|
|
|
public:
|
2013-04-02 20:06:43 +03:00
|
|
|
|
2012-12-03 19:00:17 +03:00
|
|
|
CIdentifierStorage identifiers;
|
|
|
|
|
2012-12-12 14:13:57 +03:00
|
|
|
/// receives list of available mods and trying to load mod.json from all of them
|
|
|
|
void initialize(std::vector<std::string> availableMods);
|
2012-11-13 14:52:23 +03:00
|
|
|
|
2012-12-12 14:13:57 +03:00
|
|
|
/// returns list of mods that should be active with order in which they shoud be loaded
|
|
|
|
std::vector<std::string> getActiveMods();
|
2012-11-13 14:52:23 +03:00
|
|
|
|
2013-04-25 17:03:35 +03:00
|
|
|
CModInfo & getModData(TModID modId);
|
|
|
|
|
2012-11-13 14:52:23 +03:00
|
|
|
/// load content from all available mods
|
2013-04-28 18:06:14 +03:00
|
|
|
void beforeLoad();
|
2013-04-21 15:49:26 +03:00
|
|
|
void loadGameContent();
|
2012-11-13 14:52:23 +03:00
|
|
|
|
|
|
|
/// actions that should be triggered on map restart
|
|
|
|
/// TODO: merge into appropriate handlers?
|
|
|
|
void reload();
|
2012-08-10 16:07:53 +03:00
|
|
|
|
2012-08-11 12:06:23 +03:00
|
|
|
struct DLL_LINKAGE hardcodedFeatures
|
|
|
|
{
|
2013-04-26 00:50:55 +03:00
|
|
|
JsonNode data;
|
|
|
|
|
2012-08-11 12:06:23 +03:00
|
|
|
int CREEP_SIZE; // neutral stacks won't grow beyond this number
|
|
|
|
int WEEKLY_GROWTH; //percent
|
|
|
|
int NEUTRAL_STACK_EXP;
|
2012-09-05 15:49:23 +03:00
|
|
|
int MAX_BUILDING_PER_TURN;
|
2012-08-11 12:06:23 +03:00
|
|
|
bool DWELLINGS_ACCUMULATE_CREATURES;
|
|
|
|
bool ALL_CREATURES_GET_DOUBLE_MONTHS;
|
|
|
|
|
|
|
|
template <typename Handler> void serialize(Handler &h, const int version)
|
|
|
|
{
|
2013-05-27 17:20:46 +03:00
|
|
|
h & data & CREEP_SIZE & WEEKLY_GROWTH & NEUTRAL_STACK_EXP & MAX_BUILDING_PER_TURN;
|
2012-08-11 12:06:23 +03:00
|
|
|
h & DWELLINGS_ACCUMULATE_CREATURES & ALL_CREATURES_GET_DOUBLE_MONTHS;
|
|
|
|
}
|
|
|
|
} settings;
|
|
|
|
|
2012-08-24 12:37:52 +03:00
|
|
|
struct DLL_LINKAGE gameModules
|
|
|
|
{
|
|
|
|
bool STACK_EXP;
|
|
|
|
bool STACK_ARTIFACT;
|
|
|
|
bool COMMANDERS;
|
|
|
|
bool MITHRIL;
|
|
|
|
|
|
|
|
template <typename Handler> void serialize(Handler &h, const int version)
|
|
|
|
{
|
|
|
|
h & STACK_EXP & STACK_ARTIFACT & COMMANDERS & MITHRIL;
|
|
|
|
}
|
|
|
|
} modules;
|
|
|
|
|
2012-08-10 16:07:53 +03:00
|
|
|
CModHandler();
|
|
|
|
|
|
|
|
template <typename Handler> void serialize(Handler &h, const int version)
|
|
|
|
{
|
2012-08-24 12:37:52 +03:00
|
|
|
h & allMods & activeMods & settings & modules;
|
2012-08-10 16:07:53 +03:00
|
|
|
}
|
2012-08-10 18:16:42 +03:00
|
|
|
};
|