2020-05-24 08:29:29 +00:00
|
|
|
//
|
|
|
|
// MetaData.cpp
|
|
|
|
//
|
|
|
|
// Static data for default metadata values as well as functions
|
|
|
|
// to read and write metadata from the gamelist files.
|
|
|
|
//
|
|
|
|
|
2014-06-25 16:29:58 +00:00
|
|
|
#include "MetaData.h"
|
2017-11-01 22:21:10 +00:00
|
|
|
|
2018-01-26 18:53:19 +00:00
|
|
|
#include "utils/FileSystemUtil.h"
|
2014-06-25 16:29:58 +00:00
|
|
|
#include "Log.h"
|
2017-11-10 19:16:42 +00:00
|
|
|
#include <pugixml/src/pugixml.hpp>
|
2014-06-25 16:29:58 +00:00
|
|
|
|
2017-06-12 16:38:59 +00:00
|
|
|
MetaDataDecl gameDecls[] = {
|
2020-06-06 11:10:33 +00:00
|
|
|
// key, type, default, statistic, name in GuiMetaDataEd, prompt in GuiMetaDataEd, shouldScrape
|
|
|
|
{"name", MD_STRING, "", false, "name", "enter game name", true},
|
|
|
|
{"sortname", MD_STRING, "", false, "sortname", "enter game sort name", false},
|
|
|
|
{"desc", MD_MULTILINE_STRING, "", false, "description", "enter description", true},
|
|
|
|
{"rating", MD_RATING, "0", false, "rating", "enter rating", true},
|
|
|
|
{"releasedate", MD_DATE, "not-a-date-time", false, "release date", "enter release date", true},
|
|
|
|
{"developer", MD_STRING, "unknown", false, "developer", "enter game developer", true},
|
|
|
|
{"publisher", MD_STRING, "unknown", false, "publisher", "enter game publisher", true},
|
|
|
|
{"genre", MD_STRING, "unknown", false, "genre", "enter game genre", true},
|
|
|
|
{"players", MD_INT, "unknown", false, "players", "enter number of players", true},
|
|
|
|
{"favorite", MD_BOOL, "false", false, "favorite", "enter favorite off/on", false},
|
|
|
|
{"completed", MD_BOOL, "false", false, "completed", "enter completed off/on", false},
|
|
|
|
{"broken", MD_BOOL, "false", false, "broken/not working", "enter broken off/on", false},
|
|
|
|
{"hidden", MD_BOOL, "false", false, "hidden", "enter hidden off/on", false},
|
|
|
|
{"kidgame", MD_BOOL, "false", false, "kidgame", "enter kidgame off/on", false},
|
|
|
|
{"launchstring", MD_LAUNCHSTRING, "", false, "launch string", "enter game launch string "
|
|
|
|
"(emulator override)", false},
|
|
|
|
{"playcount", MD_INT, "0", false, "play count", "enter number of times played", false},
|
|
|
|
{"lastplayed", MD_TIME, "0", true, "last played", "enter last played date", false}
|
2020-05-18 17:00:43 +00:00
|
|
|
|
2014-06-25 16:29:58 +00:00
|
|
|
};
|
2020-05-24 08:29:29 +00:00
|
|
|
const std::vector<MetaDataDecl> gameMDD(gameDecls, gameDecls +
|
|
|
|
sizeof(gameDecls) / sizeof(gameDecls[0]));
|
2014-06-25 16:29:58 +00:00
|
|
|
|
2017-06-12 16:38:59 +00:00
|
|
|
MetaDataDecl folderDecls[] = {
|
2020-06-06 11:10:33 +00:00
|
|
|
{"name", MD_STRING, "", false, "name", "enter game name", true},
|
|
|
|
{"desc", MD_MULTILINE_STRING, "", false, "description", "enter description", true},
|
|
|
|
{"developer", MD_STRING, "unknown", false, "developer", "enter game developer", true},
|
|
|
|
{"publisher", MD_STRING, "unknown", false, "publisher", "enter game publisher", true},
|
|
|
|
{"genre", MD_STRING, "unknown", false, "genre", "enter game genre", true},
|
|
|
|
{"players", MD_INT, "unknown", false, "players", "enter number of players", true}
|
2014-06-25 16:29:58 +00:00
|
|
|
};
|
2020-05-24 08:29:29 +00:00
|
|
|
const std::vector<MetaDataDecl> folderMDD(folderDecls, folderDecls +
|
|
|
|
sizeof(folderDecls) / sizeof(folderDecls[0]));
|
2014-06-25 16:29:58 +00:00
|
|
|
|
|
|
|
const std::vector<MetaDataDecl>& getMDDByType(MetaDataListType type)
|
|
|
|
{
|
2020-05-24 08:29:29 +00:00
|
|
|
switch(type) {
|
2014-06-25 16:29:58 +00:00
|
|
|
case GAME_METADATA:
|
|
|
|
return gameMDD;
|
|
|
|
case FOLDER_METADATA:
|
|
|
|
return folderMDD;
|
|
|
|
}
|
|
|
|
|
|
|
|
LOG(LogError) << "Invalid MDD type";
|
|
|
|
return gameMDD;
|
|
|
|
}
|
|
|
|
|
|
|
|
MetaDataList::MetaDataList(MetaDataListType type)
|
2020-05-24 08:29:29 +00:00
|
|
|
: mType(type), mWasChanged(false)
|
2014-06-25 16:29:58 +00:00
|
|
|
{
|
|
|
|
const std::vector<MetaDataDecl>& mdd = getMDD();
|
2020-05-24 08:29:29 +00:00
|
|
|
for (auto iter = mdd.cbegin(); iter != mdd.cend(); iter++)
|
2014-06-25 16:29:58 +00:00
|
|
|
set(iter->key, iter->defaultValue);
|
|
|
|
}
|
|
|
|
|
2020-05-24 08:29:29 +00:00
|
|
|
MetaDataList MetaDataList::createFromXML(MetaDataListType type,
|
|
|
|
pugi::xml_node& node, const std::string& relativeTo)
|
2014-06-25 16:29:58 +00:00
|
|
|
{
|
|
|
|
MetaDataList mdl(type);
|
|
|
|
|
|
|
|
const std::vector<MetaDataDecl>& mdd = mdl.getMDD();
|
|
|
|
|
2020-05-24 08:29:29 +00:00
|
|
|
for (auto iter = mdd.cbegin(); iter != mdd.cend(); iter++) {
|
2014-06-25 16:29:58 +00:00
|
|
|
pugi::xml_node md = node.child(iter->key.c_str());
|
2020-06-06 11:10:33 +00:00
|
|
|
if (md && !md.text().empty()) {
|
2020-05-24 08:29:29 +00:00
|
|
|
// If it's a path, resolve relative paths.
|
2014-06-25 16:29:58 +00:00
|
|
|
std::string value = md.text().get();
|
2016-12-04 23:47:34 +00:00
|
|
|
if (iter->type == MD_PATH)
|
2018-01-29 22:50:10 +00:00
|
|
|
value = Utils::FileSystem::resolveRelativePath(value, relativeTo, true);
|
2014-06-25 16:29:58 +00:00
|
|
|
mdl.set(iter->key, value);
|
2020-05-24 08:29:29 +00:00
|
|
|
}
|
|
|
|
else {
|
2014-06-25 16:29:58 +00:00
|
|
|
mdl.set(iter->key, iter->defaultValue);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return mdl;
|
|
|
|
}
|
|
|
|
|
2020-05-24 08:29:29 +00:00
|
|
|
void MetaDataList::appendToXML(pugi::xml_node& parent, bool ignoreDefaults,
|
|
|
|
const std::string& relativeTo) const
|
2014-06-25 16:29:58 +00:00
|
|
|
{
|
|
|
|
const std::vector<MetaDataDecl>& mdd = getMDD();
|
|
|
|
|
2020-05-24 08:29:29 +00:00
|
|
|
for (auto mddIter = mdd.cbegin(); mddIter != mdd.cend(); mddIter++) {
|
2014-06-25 16:29:58 +00:00
|
|
|
auto mapIter = mMap.find(mddIter->key);
|
2020-05-24 08:29:29 +00:00
|
|
|
if (mapIter != mMap.cend()) {
|
|
|
|
// We have this value!
|
|
|
|
// If it's just the default (and we ignore defaults), don't write it.
|
|
|
|
if (ignoreDefaults && mapIter->second == mddIter->defaultValue)
|
2014-06-25 16:29:58 +00:00
|
|
|
continue;
|
2019-08-25 15:23:02 +00:00
|
|
|
|
2020-05-24 08:29:29 +00:00
|
|
|
// Try and make paths relative if we can.
|
2014-06-25 16:29:58 +00:00
|
|
|
std::string value = mapIter->second;
|
2016-12-04 23:47:34 +00:00
|
|
|
if (mddIter->type == MD_PATH)
|
2018-01-29 22:50:10 +00:00
|
|
|
value = Utils::FileSystem::createRelativePath(value, relativeTo, true);
|
2014-06-25 16:29:58 +00:00
|
|
|
|
|
|
|
parent.append_child(mapIter->first.c_str()).text().set(value.c_str());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void MetaDataList::set(const std::string& key, const std::string& value)
|
|
|
|
{
|
|
|
|
mMap[key] = value;
|
2016-12-19 15:59:40 +00:00
|
|
|
mWasChanged = true;
|
2014-06-25 16:29:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
const std::string& MetaDataList::get(const std::string& key) const
|
|
|
|
{
|
2020-05-24 08:29:29 +00:00
|
|
|
// Check that the key actually exists, otherwise return empty string.
|
|
|
|
if (mMap.count(key) > 0)
|
|
|
|
return mMap.at(key);
|
|
|
|
else
|
|
|
|
|
|
|
|
return mNoResult;
|
2014-06-25 16:29:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int MetaDataList::getInt(const std::string& key) const
|
|
|
|
{
|
|
|
|
return atoi(get(key).c_str());
|
|
|
|
}
|
|
|
|
|
|
|
|
float MetaDataList::getFloat(const std::string& key) const
|
|
|
|
{
|
|
|
|
return (float)atof(get(key).c_str());
|
|
|
|
}
|
|
|
|
|
2016-12-19 15:59:40 +00:00
|
|
|
bool MetaDataList::wasChanged() const
|
|
|
|
{
|
|
|
|
return mWasChanged;
|
|
|
|
}
|
|
|
|
|
|
|
|
void MetaDataList::resetChangedFlag()
|
|
|
|
{
|
|
|
|
mWasChanged = false;
|
|
|
|
}
|