2020-09-21 17:17:34 +00:00
|
|
|
// SPDX-License-Identifier: MIT
|
2020-06-21 12:25:28 +00:00
|
|
|
//
|
2020-09-21 17:17:34 +00:00
|
|
|
// EmulationStation Desktop Edition
|
2020-06-21 12:25:28 +00:00
|
|
|
// ThemeData.cpp
|
|
|
|
//
|
2022-01-29 17:41:22 +00:00
|
|
|
// Finds available themes on the file system and loads and parses these.
|
|
|
|
// Basic error checking for valid elements and data types is done here,
|
|
|
|
// with additional validation handled by the individual components.
|
2020-06-21 12:25:28 +00:00
|
|
|
//
|
|
|
|
|
2013-11-12 23:28:15 +00:00
|
|
|
#include "ThemeData.h"
|
|
|
|
|
2021-07-07 18:31:46 +00:00
|
|
|
#include "Log.h"
|
|
|
|
#include "Settings.h"
|
2014-01-03 14:26:39 +00:00
|
|
|
#include "components/ImageComponent.h"
|
2022-01-09 12:43:42 +00:00
|
|
|
#include "components/LottieComponent.h"
|
2014-01-03 14:26:39 +00:00
|
|
|
#include "components/TextComponent.h"
|
2018-01-09 22:55:09 +00:00
|
|
|
#include "utils/FileSystemUtil.h"
|
2019-07-06 14:50:50 +00:00
|
|
|
#include "utils/StringUtil.h"
|
2020-09-21 17:17:34 +00:00
|
|
|
|
2018-01-29 22:50:10 +00:00
|
|
|
#include <algorithm>
|
2020-09-21 17:17:34 +00:00
|
|
|
#include <pugixml.hpp>
|
2014-01-26 22:20:21 +00:00
|
|
|
|
2022-01-29 17:41:22 +00:00
|
|
|
#define MINIMUM_LEGACY_THEME_FORMAT_VERSION 3
|
|
|
|
|
|
|
|
// clang-format off
|
|
|
|
std::vector<std::string> ThemeData::sSupportedViews {
|
|
|
|
{"all"},
|
|
|
|
{"system"},
|
|
|
|
{"gamelist"}};
|
|
|
|
|
|
|
|
std::vector<std::string> ThemeData::sLegacySupportedViews {
|
|
|
|
{"all"},
|
|
|
|
{"system"},
|
|
|
|
{"basic"},
|
|
|
|
{"detailed"},
|
|
|
|
{"grid"},
|
|
|
|
{"video"}};
|
|
|
|
|
|
|
|
std::vector<std::string> ThemeData::sLegacySupportedFeatures {
|
|
|
|
{"navigationsounds"},
|
|
|
|
{"video"},
|
|
|
|
{"carousel"},
|
|
|
|
{"z-index"},
|
|
|
|
{"visible"}};
|
|
|
|
|
2022-01-31 22:22:42 +00:00
|
|
|
std::vector<std::pair<std::string, std::string>> ThemeData::sSupportedAspectRatios {
|
|
|
|
{"16:9", "16:9"},
|
|
|
|
{"16:9_vertical", "16:9 vertical"},
|
|
|
|
{"16:10", "16:10"},
|
|
|
|
{"16:10_vertical", "16:10 vertical"},
|
|
|
|
{"3:2", "3:2"},
|
|
|
|
{"3:2_vertical", "3:2 vertical"},
|
|
|
|
{"4:3", "4:3"},
|
|
|
|
{"4:3_vertical", "4:3 vertical"},
|
|
|
|
{"5:4", "5:4"},
|
|
|
|
{"5:4_vertical", "5:4 vertical"},
|
|
|
|
{"21:9", "21:9"},
|
|
|
|
{"21:9_vertical", "21:9 vertical"},
|
|
|
|
{"32:9", "32:0"},
|
|
|
|
{"32:9_vertical", "32:9 vertical"}};
|
2022-01-29 17:41:22 +00:00
|
|
|
|
|
|
|
std::map<std::string, std::map<std::string, std::string>> ThemeData::sPropertyAttributeMap
|
|
|
|
// The data type is defined by the parent property.
|
|
|
|
{
|
|
|
|
{"badges",
|
|
|
|
{{"customBadgeIcon", "badge"},
|
|
|
|
{"customControllerIcon", "controller"}}},
|
|
|
|
{"helpsystem",
|
|
|
|
{{"customButtonIcon", "button"}}},
|
|
|
|
};
|
2021-08-17 16:41:45 +00:00
|
|
|
|
2022-01-16 11:09:55 +00:00
|
|
|
std::map<std::string, std::map<std::string, ThemeData::ElementPropertyType>>
|
2022-01-29 17:41:22 +00:00
|
|
|
ThemeData::sElementMap {
|
|
|
|
{"image",
|
2022-01-16 11:09:55 +00:00
|
|
|
{{"pos", NORMALIZED_PAIR},
|
|
|
|
{"size", NORMALIZED_PAIR},
|
|
|
|
{"maxSize", NORMALIZED_PAIR},
|
|
|
|
{"origin", NORMALIZED_PAIR},
|
|
|
|
{"rotation", FLOAT},
|
|
|
|
{"rotationOrigin", NORMALIZED_PAIR},
|
|
|
|
{"path", PATH},
|
|
|
|
{"default", PATH},
|
|
|
|
{"tile", BOOLEAN},
|
2022-01-29 17:41:22 +00:00
|
|
|
{"metadata", STRING},
|
2022-01-16 11:09:55 +00:00
|
|
|
{"color", COLOR},
|
|
|
|
{"colorEnd", COLOR},
|
|
|
|
{"gradientType", STRING},
|
2022-01-30 18:30:38 +00:00
|
|
|
{"scrollFadeIn", BOOLEAN},
|
2022-01-16 11:09:55 +00:00
|
|
|
{"visible", BOOLEAN},
|
|
|
|
{"zIndex", FLOAT}}},
|
2022-01-29 17:41:22 +00:00
|
|
|
{"video",
|
2022-01-16 11:09:55 +00:00
|
|
|
{{"pos", NORMALIZED_PAIR},
|
|
|
|
{"size", NORMALIZED_PAIR},
|
2022-01-29 17:41:22 +00:00
|
|
|
{"maxSize", NORMALIZED_PAIR},
|
|
|
|
{"origin", NORMALIZED_PAIR},
|
|
|
|
{"rotation", FLOAT},
|
|
|
|
{"rotationOrigin", NORMALIZED_PAIR},
|
|
|
|
{"path", PATH},
|
|
|
|
{"default", PATH},
|
2022-01-30 18:30:38 +00:00
|
|
|
{"defaultImage", PATH},
|
2022-01-29 17:41:22 +00:00
|
|
|
{"imageMetadata", STRING},
|
|
|
|
{"delay", FLOAT},
|
2022-01-30 18:30:38 +00:00
|
|
|
{"scrollFadeIn", BOOLEAN},
|
2022-01-29 17:41:22 +00:00
|
|
|
{"visible", BOOLEAN},
|
|
|
|
{"zIndex", FLOAT},
|
|
|
|
{"showSnapshotNoVideo", BOOLEAN}, // For backward compatibility with legacy themes.
|
|
|
|
{"showSnapshotDelay", BOOLEAN}}}, // For backward compatibility with legacy themes.
|
|
|
|
{"animation",
|
2022-01-16 11:09:55 +00:00
|
|
|
{{"pos", NORMALIZED_PAIR},
|
|
|
|
{"size", NORMALIZED_PAIR},
|
|
|
|
{"origin", NORMALIZED_PAIR},
|
|
|
|
{"rotation", FLOAT},
|
|
|
|
{"rotationOrigin", NORMALIZED_PAIR},
|
2022-01-29 17:41:22 +00:00
|
|
|
{"path", PATH},
|
|
|
|
{"speed", FLOAT},
|
|
|
|
{"direction", STRING},
|
|
|
|
{"keepAspectRatio", BOOLEAN},
|
2022-01-16 11:09:55 +00:00
|
|
|
{"visible", BOOLEAN},
|
|
|
|
{"zIndex", FLOAT}}},
|
2022-01-29 17:41:22 +00:00
|
|
|
{"badges",
|
2022-01-16 11:09:55 +00:00
|
|
|
{{"pos", NORMALIZED_PAIR},
|
|
|
|
{"size", NORMALIZED_PAIR},
|
|
|
|
{"origin", NORMALIZED_PAIR},
|
2022-01-29 17:41:22 +00:00
|
|
|
{"rotation", FLOAT},
|
|
|
|
{"rotationOrigin", NORMALIZED_PAIR},
|
2022-01-16 11:09:55 +00:00
|
|
|
{"alignment", STRING},
|
2022-01-29 17:41:22 +00:00
|
|
|
{"direction", STRING},
|
|
|
|
{"lines", FLOAT},
|
|
|
|
{"itemsPerLine", FLOAT},
|
|
|
|
{"itemMargin", NORMALIZED_PAIR},
|
|
|
|
{"slots", STRING},
|
|
|
|
{"controllerPos", NORMALIZED_PAIR},
|
|
|
|
{"controllerSize", FLOAT},
|
|
|
|
{"customBadgeIcon", PATH},
|
|
|
|
{"customControllerIcon", PATH},
|
|
|
|
{"visible", BOOLEAN},
|
2022-01-16 11:09:55 +00:00
|
|
|
{"zIndex", FLOAT}}},
|
2022-01-29 17:41:22 +00:00
|
|
|
{"text",
|
2022-01-16 11:09:55 +00:00
|
|
|
{{"pos", NORMALIZED_PAIR},
|
|
|
|
{"size", NORMALIZED_PAIR},
|
|
|
|
{"origin", NORMALIZED_PAIR},
|
2022-01-29 17:41:22 +00:00
|
|
|
{"rotation", FLOAT},
|
|
|
|
{"rotationOrigin", NORMALIZED_PAIR},
|
2022-01-22 20:21:13 +00:00
|
|
|
{"text", STRING},
|
|
|
|
{"metadata", STRING},
|
2022-01-29 17:41:22 +00:00
|
|
|
{"container", BOOLEAN},
|
|
|
|
{"fontPath", PATH},
|
|
|
|
{"fontSize", FLOAT},
|
|
|
|
{"alignment", STRING},
|
|
|
|
{"color", COLOR},
|
|
|
|
{"backgroundColor", COLOR},
|
|
|
|
{"forceUppercase", BOOLEAN},
|
|
|
|
{"lineSpacing", FLOAT},
|
2022-01-16 11:09:55 +00:00
|
|
|
{"visible", BOOLEAN},
|
|
|
|
{"zIndex", FLOAT}}},
|
|
|
|
{"datetime",
|
|
|
|
{{"pos", NORMALIZED_PAIR},
|
|
|
|
{"size", NORMALIZED_PAIR},
|
|
|
|
{"origin", NORMALIZED_PAIR},
|
|
|
|
{"rotation", FLOAT},
|
|
|
|
{"rotationOrigin", NORMALIZED_PAIR},
|
2022-01-22 20:21:13 +00:00
|
|
|
{"metadata", STRING},
|
2022-01-16 11:09:55 +00:00
|
|
|
{"fontPath", PATH},
|
|
|
|
{"fontSize", FLOAT},
|
|
|
|
{"alignment", STRING},
|
2022-01-29 17:41:22 +00:00
|
|
|
{"color", COLOR},
|
|
|
|
{"backgroundColor", COLOR},
|
2022-01-16 11:09:55 +00:00
|
|
|
{"forceUppercase", BOOLEAN},
|
|
|
|
{"lineSpacing", FLOAT},
|
|
|
|
{"format", STRING},
|
|
|
|
{"displayRelative", BOOLEAN},
|
|
|
|
{"visible", BOOLEAN},
|
|
|
|
{"zIndex", FLOAT}}},
|
2022-01-29 17:41:22 +00:00
|
|
|
{"gamelistinfo",
|
2022-01-16 11:09:55 +00:00
|
|
|
{{"pos", NORMALIZED_PAIR},
|
|
|
|
{"size", NORMALIZED_PAIR},
|
|
|
|
{"origin", NORMALIZED_PAIR},
|
|
|
|
{"rotation", FLOAT},
|
|
|
|
{"rotationOrigin", NORMALIZED_PAIR},
|
2022-01-29 17:41:22 +00:00
|
|
|
{"fontPath", PATH},
|
|
|
|
{"fontSize", FLOAT},
|
2022-01-16 11:09:55 +00:00
|
|
|
{"color", COLOR},
|
2022-01-29 17:41:22 +00:00
|
|
|
{"backgroundColor", COLOR},
|
|
|
|
{"alignment", STRING},
|
2022-01-16 11:09:55 +00:00
|
|
|
{"visible", BOOLEAN},
|
|
|
|
{"zIndex", FLOAT}}},
|
2022-01-29 17:41:22 +00:00
|
|
|
{"rating",
|
2022-01-16 11:09:55 +00:00
|
|
|
{{"pos", NORMALIZED_PAIR},
|
|
|
|
{"size", NORMALIZED_PAIR},
|
|
|
|
{"origin", NORMALIZED_PAIR},
|
|
|
|
{"rotation", FLOAT},
|
|
|
|
{"rotationOrigin", NORMALIZED_PAIR},
|
2022-01-29 17:41:22 +00:00
|
|
|
{"color", COLOR},
|
|
|
|
{"filledPath", PATH},
|
|
|
|
{"unfilledPath", PATH},
|
2022-01-16 11:09:55 +00:00
|
|
|
{"zIndex", FLOAT}}},
|
2022-01-29 17:41:22 +00:00
|
|
|
{"carousel",
|
|
|
|
{{"type", STRING},
|
|
|
|
{"size", NORMALIZED_PAIR},
|
|
|
|
{"pos", NORMALIZED_PAIR},
|
|
|
|
{"origin", NORMALIZED_PAIR},
|
|
|
|
{"color", COLOR},
|
|
|
|
{"colorEnd", COLOR},
|
|
|
|
{"gradientType", STRING},
|
2022-02-07 20:05:56 +00:00
|
|
|
{"logo", PATH},
|
|
|
|
{"defaultLogo", PATH},
|
|
|
|
{"logoSize", NORMALIZED_PAIR},
|
2022-01-29 17:41:22 +00:00
|
|
|
{"logoScale", FLOAT},
|
|
|
|
{"logoRotation", FLOAT},
|
|
|
|
{"logoRotationOrigin", NORMALIZED_PAIR},
|
|
|
|
{"logoAlignment", STRING},
|
|
|
|
{"maxLogoCount", FLOAT},
|
2022-02-07 20:05:56 +00:00
|
|
|
{"text", STRING},
|
|
|
|
{"textColor", COLOR},
|
|
|
|
{"textBackgroundColor", COLOR},
|
|
|
|
{"textStyle", STRING},
|
|
|
|
{"fontPath", PATH},
|
|
|
|
{"fontSize", FLOAT},
|
|
|
|
{"lineSpacing", FLOAT},
|
2022-01-29 17:41:22 +00:00
|
|
|
{"zIndex", FLOAT},
|
|
|
|
{"legacyZIndexMode", STRING}}},
|
|
|
|
{"textlist",
|
2022-01-16 11:09:55 +00:00
|
|
|
{{"pos", NORMALIZED_PAIR},
|
|
|
|
{"size", NORMALIZED_PAIR},
|
|
|
|
{"origin", NORMALIZED_PAIR},
|
2022-01-29 17:41:22 +00:00
|
|
|
{"selectorHeight", FLOAT},
|
|
|
|
{"selectorOffsetY", FLOAT},
|
|
|
|
{"selectorColor", COLOR},
|
|
|
|
{"selectorColorEnd", COLOR},
|
|
|
|
{"selectorGradientType", STRING},
|
|
|
|
{"selectorImagePath", PATH},
|
|
|
|
{"selectorImageTile", BOOLEAN},
|
|
|
|
{"selectedColor", COLOR},
|
|
|
|
{"primaryColor", COLOR},
|
|
|
|
{"secondaryColor", COLOR},
|
|
|
|
{"fontPath", PATH},
|
|
|
|
{"fontSize", FLOAT},
|
|
|
|
{"scrollHide", BOOLEAN},
|
|
|
|
{"scrollSound", PATH}, // For backward compatibility with legacy themes.
|
2022-01-16 11:09:55 +00:00
|
|
|
{"alignment", STRING},
|
2022-01-29 17:41:22 +00:00
|
|
|
{"horizontalMargin", FLOAT},
|
|
|
|
{"forceUppercase", BOOLEAN},
|
|
|
|
{"lineSpacing", FLOAT},
|
2022-01-16 11:09:55 +00:00
|
|
|
{"zIndex", FLOAT}}},
|
|
|
|
{"helpsystem",
|
|
|
|
{{"pos", NORMALIZED_PAIR},
|
|
|
|
{"origin", NORMALIZED_PAIR},
|
|
|
|
{"textColor", COLOR},
|
|
|
|
{"textColorDimmed", COLOR},
|
|
|
|
{"iconColor", COLOR},
|
|
|
|
{"iconColorDimmed", COLOR},
|
|
|
|
{"fontPath", PATH},
|
|
|
|
{"fontSize", FLOAT},
|
|
|
|
{"entrySpacing", FLOAT},
|
|
|
|
{"iconTextSpacing", FLOAT},
|
|
|
|
{"textStyle", STRING},
|
|
|
|
{"customButtonIcon", PATH}}},
|
2022-01-29 17:41:22 +00:00
|
|
|
{"sound",
|
|
|
|
{{"path", PATH}}},
|
2022-01-16 11:09:55 +00:00
|
|
|
{"navigationsounds",
|
|
|
|
{{"systembrowseSound", PATH},
|
|
|
|
{"quicksysselectSound", PATH},
|
|
|
|
{"selectSound", PATH},
|
|
|
|
{"backSound", PATH},
|
|
|
|
{"scrollSound", PATH},
|
|
|
|
{"favoriteSound", PATH},
|
|
|
|
{"launchSound", PATH}}},
|
2022-01-29 17:41:22 +00:00
|
|
|
// Legacy components below, not in use any longer but needed for backward compatibility.
|
|
|
|
{"imagegrid",
|
2022-01-16 11:09:55 +00:00
|
|
|
{{"pos", NORMALIZED_PAIR},
|
|
|
|
{"size", NORMALIZED_PAIR},
|
2022-01-29 17:41:22 +00:00
|
|
|
{"margin", NORMALIZED_PAIR},
|
|
|
|
{"padding", NORMALIZED_RECT},
|
|
|
|
{"autoLayout", NORMALIZED_PAIR},
|
|
|
|
{"autoLayoutSelectedZoom", FLOAT},
|
|
|
|
{"gameImage", PATH},
|
|
|
|
{"folderImage", PATH},
|
|
|
|
{"imageSource", STRING},
|
|
|
|
{"scrollDirection", STRING},
|
|
|
|
{"centerSelection", BOOLEAN},
|
|
|
|
{"scrollLoop", BOOLEAN},
|
|
|
|
{"animate", BOOLEAN},
|
|
|
|
{"zIndex", FLOAT}}},
|
|
|
|
{"gridtile",
|
|
|
|
{{"size", NORMALIZED_PAIR},
|
|
|
|
{"padding", NORMALIZED_PAIR},
|
|
|
|
{"imageColor", COLOR},
|
|
|
|
{"backgroundImage", PATH},
|
|
|
|
{"backgroundCornerSize", NORMALIZED_PAIR},
|
|
|
|
{"backgroundColor", COLOR},
|
|
|
|
{"backgroundCenterColor", COLOR},
|
|
|
|
{"backgroundEdgeColor", COLOR}}},
|
|
|
|
{"ninepatch",
|
|
|
|
{{"pos", NORMALIZED_PAIR},
|
2022-01-16 11:09:55 +00:00
|
|
|
{"size", NORMALIZED_PAIR},
|
2022-01-29 17:41:22 +00:00
|
|
|
{"path", PATH},
|
|
|
|
{"visible", BOOLEAN},
|
|
|
|
{"zIndex", FLOAT}}}};
|
|
|
|
// clang-format on
|
2021-07-07 18:31:46 +00:00
|
|
|
|
2013-12-30 23:23:34 +00:00
|
|
|
ThemeData::ThemeData()
|
2022-01-29 17:41:22 +00:00
|
|
|
: mCurrentThemeSet {}
|
|
|
|
, mLegacyTheme {false}
|
2013-11-12 23:28:15 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2022-01-23 16:50:51 +00:00
|
|
|
void ThemeData::loadFile(const std::map<std::string, std::string>& sysDataMap,
|
|
|
|
const std::string& path)
|
2013-11-12 23:28:15 +00:00
|
|
|
{
|
2020-06-21 12:25:28 +00:00
|
|
|
mPaths.push_back(path);
|
2013-12-30 23:23:34 +00:00
|
|
|
|
2020-06-21 12:25:28 +00:00
|
|
|
ThemeException error;
|
2022-01-23 16:50:51 +00:00
|
|
|
error << "ThemeData::loadFile(): ";
|
2020-06-21 12:25:28 +00:00
|
|
|
error.setFiles(mPaths);
|
2013-12-30 23:23:34 +00:00
|
|
|
|
2020-06-21 12:25:28 +00:00
|
|
|
if (!Utils::FileSystem::exists(path))
|
2021-01-17 21:33:02 +00:00
|
|
|
throw error << "File does not exist";
|
2013-12-30 23:23:34 +00:00
|
|
|
|
2020-06-21 12:25:28 +00:00
|
|
|
mViews.clear();
|
|
|
|
mVariables.clear();
|
2017-05-14 04:07:28 +00:00
|
|
|
|
2020-06-21 12:25:28 +00:00
|
|
|
mVariables.insert(sysDataMap.cbegin(), sysDataMap.cend());
|
2013-12-30 23:23:34 +00:00
|
|
|
|
2020-06-21 12:25:28 +00:00
|
|
|
pugi::xml_document doc;
|
2021-07-07 18:31:46 +00:00
|
|
|
#if defined(_WIN64)
|
2022-01-23 16:50:51 +00:00
|
|
|
pugi::xml_parse_result res {doc.load_file(Utils::String::stringToWideString(path).c_str())};
|
2021-07-07 18:31:46 +00:00
|
|
|
#else
|
2022-01-23 16:50:51 +00:00
|
|
|
pugi::xml_parse_result res {doc.load_file(path.c_str())};
|
2021-07-07 18:31:46 +00:00
|
|
|
#endif
|
2020-06-21 12:25:28 +00:00
|
|
|
if (!res)
|
2022-01-23 16:50:51 +00:00
|
|
|
throw error << ": XML parsing error: " << res.description();
|
2013-12-30 23:23:34 +00:00
|
|
|
|
2022-01-23 16:50:51 +00:00
|
|
|
pugi::xml_node root {doc.child("theme")};
|
2020-06-21 12:25:28 +00:00
|
|
|
if (!root)
|
2022-01-23 16:50:51 +00:00
|
|
|
throw error << ": Missing <theme> tag";
|
2013-12-30 23:23:34 +00:00
|
|
|
|
2022-01-29 17:41:22 +00:00
|
|
|
mCurrentThemeSet = mThemeSets.find(Settings::getInstance()->getString("ThemeSet"));
|
|
|
|
if (mCurrentThemeSet != mThemeSets.cend())
|
|
|
|
mLegacyTheme = mCurrentThemeSet->second.capabilities.legacyTheme;
|
|
|
|
|
|
|
|
// Check for legacy theme version.
|
|
|
|
int legacyVersion {root.child("formatVersion").text().as_int(-1)};
|
|
|
|
|
|
|
|
if (mLegacyTheme) {
|
|
|
|
if (legacyVersion == -1)
|
|
|
|
throw error << ": <formatVersion> tag missing for legacy theme set";
|
|
|
|
|
|
|
|
if (legacyVersion < MINIMUM_LEGACY_THEME_FORMAT_VERSION)
|
|
|
|
throw error << ": Defined legacy format version " << legacyVersion
|
|
|
|
<< " is less than the minimum supported version "
|
|
|
|
<< MINIMUM_LEGACY_THEME_FORMAT_VERSION;
|
|
|
|
}
|
|
|
|
else if (legacyVersion != -1) {
|
|
|
|
throw error << ": Legacy <formatVersion> tag found for non-legacy theme set";
|
|
|
|
}
|
2013-12-30 23:23:34 +00:00
|
|
|
|
2022-01-29 17:41:22 +00:00
|
|
|
if (!mLegacyTheme) {
|
|
|
|
if (mCurrentThemeSet->second.capabilities.variants.size() > 0) {
|
|
|
|
for (auto& variant : mCurrentThemeSet->second.capabilities.variants)
|
|
|
|
mVariants.emplace_back(variant.name);
|
|
|
|
|
|
|
|
if (std::find(mVariants.cbegin(), mVariants.cend(),
|
|
|
|
Settings::getInstance()->getString("ThemeVariant")) != mVariants.cend())
|
|
|
|
mSelectedVariant = Settings::getInstance()->getString("ThemeVariant");
|
|
|
|
else
|
|
|
|
mSelectedVariant = mVariants.front();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (mCurrentThemeSet->second.capabilities.aspectRatios.size() > 0) {
|
2022-01-31 22:22:42 +00:00
|
|
|
if (std::find(mCurrentThemeSet->second.capabilities.aspectRatios.cbegin(),
|
|
|
|
mCurrentThemeSet->second.capabilities.aspectRatios.cend(),
|
2022-01-29 17:41:22 +00:00
|
|
|
Settings::getInstance()->getString("ThemeAspectRatio")) !=
|
2022-01-31 22:22:42 +00:00
|
|
|
mCurrentThemeSet->second.capabilities.aspectRatios.cend())
|
2022-01-29 17:41:22 +00:00
|
|
|
mSelectedAspectRatio = Settings::getInstance()->getString("ThemeAspectRatio");
|
|
|
|
else
|
2022-01-31 22:22:42 +00:00
|
|
|
mSelectedAspectRatio = mCurrentThemeSet->second.capabilities.aspectRatios.front();
|
2022-01-29 17:41:22 +00:00
|
|
|
}
|
|
|
|
}
|
2013-12-30 23:23:34 +00:00
|
|
|
|
2020-06-21 12:25:28 +00:00
|
|
|
parseVariables(root);
|
|
|
|
parseIncludes(root);
|
|
|
|
parseViews(root);
|
2022-01-29 17:41:22 +00:00
|
|
|
// For non-legacy themes this will simply check for the presence of a feature tag and throw
|
|
|
|
// an error if it's found.
|
2020-06-21 12:25:28 +00:00
|
|
|
parseFeatures(root);
|
2022-01-29 17:41:22 +00:00
|
|
|
|
|
|
|
if (!mLegacyTheme) {
|
|
|
|
parseVariants(root);
|
|
|
|
parseAspectRatios(root);
|
|
|
|
}
|
2013-11-12 23:28:15 +00:00
|
|
|
}
|
|
|
|
|
2022-01-23 19:03:50 +00:00
|
|
|
bool ThemeData::hasView(const std::string& view)
|
|
|
|
{
|
|
|
|
auto viewIt = mViews.find(view);
|
|
|
|
return (viewIt != mViews.cend());
|
|
|
|
}
|
|
|
|
|
|
|
|
std::vector<GuiComponent*> ThemeData::makeExtras(const std::shared_ptr<ThemeData>& theme,
|
|
|
|
const std::string& view)
|
|
|
|
{
|
|
|
|
std::vector<GuiComponent*> comps;
|
|
|
|
|
|
|
|
auto viewIt = theme->mViews.find(view);
|
|
|
|
if (viewIt == theme->mViews.cend())
|
|
|
|
return comps;
|
|
|
|
|
2022-01-29 17:41:22 +00:00
|
|
|
for (auto it = viewIt->second.legacyOrderedKeys.cbegin(); // Line break.
|
|
|
|
it != viewIt->second.legacyOrderedKeys.cend(); ++it) {
|
2022-01-23 19:03:50 +00:00
|
|
|
ThemeElement& elem {viewIt->second.elements.at(*it)};
|
|
|
|
if (elem.extra) {
|
|
|
|
GuiComponent* comp {nullptr};
|
|
|
|
const std::string& t {elem.type};
|
|
|
|
if (t == "image")
|
|
|
|
comp = new ImageComponent;
|
|
|
|
else if (t == "text")
|
|
|
|
comp = new TextComponent;
|
|
|
|
else if (t == "animation")
|
|
|
|
comp = new LottieComponent;
|
|
|
|
|
|
|
|
if (comp) {
|
|
|
|
comp->setDefaultZIndex(10.0f);
|
|
|
|
comp->applyTheme(theme, view, *it, ThemeFlags::ALL);
|
|
|
|
comps.push_back(comp);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return comps;
|
|
|
|
}
|
|
|
|
|
|
|
|
const ThemeData::ThemeElement* ThemeData::getElement(const std::string& view,
|
|
|
|
const std::string& element,
|
|
|
|
const std::string& expectedType) const
|
|
|
|
{
|
|
|
|
auto viewIt = mViews.find(view);
|
|
|
|
if (viewIt == mViews.cend())
|
|
|
|
return nullptr; // Not found.
|
|
|
|
|
|
|
|
auto elemIt = viewIt->second.elements.find(element);
|
|
|
|
if (elemIt == viewIt->second.elements.cend())
|
|
|
|
return nullptr;
|
|
|
|
|
2022-01-29 17:41:22 +00:00
|
|
|
// If expectedType is an empty string, then skip type checking.
|
2022-01-23 19:03:50 +00:00
|
|
|
if (elemIt->second.type != expectedType && !expectedType.empty()) {
|
|
|
|
LOG(LogWarning) << " requested mismatched theme type for [" << view << "." << element
|
|
|
|
<< "] - expected \"" << expectedType << "\", got \"" << elemIt->second.type
|
|
|
|
<< "\"";
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
return &elemIt->second;
|
|
|
|
}
|
|
|
|
|
2022-01-31 22:22:42 +00:00
|
|
|
const std::map<std::string, ThemeData::ThemeSet>& ThemeData::getThemeSets()
|
2022-01-23 19:03:50 +00:00
|
|
|
{
|
2022-01-29 17:41:22 +00:00
|
|
|
if (!mThemeSets.empty())
|
|
|
|
return mThemeSets;
|
|
|
|
|
|
|
|
LOG(LogInfo) << "Checking for available theme sets...";
|
2022-01-23 19:03:50 +00:00
|
|
|
|
|
|
|
// Check for themes first under the home directory, then under the data installation
|
|
|
|
// directory (Unix only) and last under the ES-DE binary directory.
|
|
|
|
|
|
|
|
#if defined(__unix__) || defined(__APPLE__)
|
|
|
|
static const size_t pathCount = 3;
|
|
|
|
#else
|
|
|
|
static const size_t pathCount = 2;
|
|
|
|
#endif
|
|
|
|
std::string paths[pathCount] = {
|
|
|
|
Utils::FileSystem::getExePath() + "/themes",
|
|
|
|
#if defined(__APPLE__)
|
|
|
|
Utils::FileSystem::getExePath() + "/../Resources/themes",
|
|
|
|
#elif defined(__unix__)
|
|
|
|
Utils::FileSystem::getProgramDataPath() + "/themes",
|
|
|
|
#endif
|
|
|
|
Utils::FileSystem::getHomePath() + "/.emulationstation/themes"
|
|
|
|
};
|
|
|
|
|
|
|
|
for (size_t i = 0; i < pathCount; ++i) {
|
|
|
|
if (!Utils::FileSystem::isDirectory(paths[i]))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
Utils::FileSystem::StringList dirContent {Utils::FileSystem::getDirContent(paths[i])};
|
|
|
|
|
|
|
|
for (Utils::FileSystem::StringList::const_iterator it = dirContent.cbegin();
|
|
|
|
it != dirContent.cend(); ++it) {
|
|
|
|
if (Utils::FileSystem::isDirectory(*it)) {
|
2022-01-29 17:41:22 +00:00
|
|
|
LOG(LogDebug) << "Loading theme set capabilities for \"" << *it << "\"...";
|
|
|
|
ThemeCapability capabilities {parseThemeCapabilities(*it)};
|
|
|
|
|
|
|
|
LOG(LogInfo) << "Added" << (capabilities.legacyTheme ? " legacy" : "")
|
|
|
|
<< " theme set \"" << *it << "\"";
|
|
|
|
if (!capabilities.legacyTheme) {
|
|
|
|
LOG(LogDebug) << "Theme set includes support for "
|
|
|
|
<< capabilities.variants.size() << " variant"
|
|
|
|
<< (capabilities.variants.size() != 1 ? "s" : "") << " and "
|
|
|
|
<< capabilities.aspectRatios.size() << " aspect ratio"
|
|
|
|
<< (capabilities.aspectRatios.size() != 1 ? "s" : "");
|
|
|
|
}
|
|
|
|
ThemeSet set {*it, capabilities};
|
|
|
|
mThemeSets[set.getName()] = set;
|
2022-01-23 19:03:50 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-01-29 17:41:22 +00:00
|
|
|
return mThemeSets;
|
2022-01-23 19:03:50 +00:00
|
|
|
}
|
|
|
|
|
2022-01-31 22:22:42 +00:00
|
|
|
const std::string ThemeData::getThemeFromCurrentSet(const std::string& system)
|
2022-01-23 19:03:50 +00:00
|
|
|
{
|
2022-01-29 17:41:22 +00:00
|
|
|
if (mThemeSets.empty())
|
|
|
|
getThemeSets();
|
|
|
|
|
|
|
|
if (mThemeSets.empty())
|
2022-01-23 19:03:50 +00:00
|
|
|
// No theme sets available.
|
|
|
|
return "";
|
|
|
|
|
2022-01-29 17:41:22 +00:00
|
|
|
std::map<std::string, ThemeSet>::const_iterator set {
|
|
|
|
mThemeSets.find(Settings::getInstance()->getString("ThemeSet"))};
|
|
|
|
if (set == mThemeSets.cend()) {
|
2022-01-23 19:03:50 +00:00
|
|
|
// Currently configured theme set is missing, attempt to load the default theme set
|
|
|
|
// rbsimple-DE instead, and if that's also missing then pick the first available set.
|
|
|
|
bool defaultSetFound {true};
|
|
|
|
|
2022-01-29 17:41:22 +00:00
|
|
|
set = mThemeSets.find("rbsimple-DE");
|
2022-01-23 19:03:50 +00:00
|
|
|
|
2022-01-29 17:41:22 +00:00
|
|
|
if (set == mThemeSets.cend()) {
|
|
|
|
set = mThemeSets.cbegin();
|
2022-01-23 19:03:50 +00:00
|
|
|
defaultSetFound = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
LOG(LogWarning) << "Configured theme set \""
|
|
|
|
<< Settings::getInstance()->getString("ThemeSet")
|
|
|
|
<< "\" does not exist, loading" << (defaultSetFound ? " default " : " ")
|
|
|
|
<< "theme set \"" << set->first << "\" instead";
|
|
|
|
|
|
|
|
Settings::getInstance()->setString("ThemeSet", set->first);
|
|
|
|
}
|
|
|
|
|
|
|
|
return set->second.getThemePath(system);
|
|
|
|
}
|
|
|
|
|
2022-01-31 22:22:42 +00:00
|
|
|
const std::string ThemeData::getAspectRatioLabel(const std::string& aspectRatio)
|
|
|
|
{
|
|
|
|
auto it = std::find_if(sSupportedAspectRatios.cbegin(), sSupportedAspectRatios.cend(),
|
|
|
|
[&aspectRatio](const std::pair<std::string, std::string>& entry) {
|
|
|
|
return entry.first == aspectRatio;
|
|
|
|
});
|
|
|
|
if (it != sSupportedAspectRatios.cend())
|
|
|
|
return it->second;
|
|
|
|
else
|
|
|
|
return "invalid ratio";
|
|
|
|
}
|
|
|
|
|
2022-01-23 19:03:50 +00:00
|
|
|
unsigned int ThemeData::getHexColor(const std::string& str)
|
|
|
|
{
|
|
|
|
ThemeException error;
|
|
|
|
|
|
|
|
if (str == "")
|
|
|
|
throw error << "Empty color property";
|
|
|
|
|
|
|
|
size_t len {str.size()};
|
|
|
|
if (len != 6 && len != 8)
|
|
|
|
throw error << "Invalid color property \"" << str
|
|
|
|
<< "\" (must be 6 or 8 characters in length)";
|
|
|
|
|
|
|
|
unsigned int val;
|
|
|
|
std::stringstream ss;
|
|
|
|
ss << str;
|
|
|
|
ss >> std::hex >> val;
|
|
|
|
|
|
|
|
if (len == 6)
|
|
|
|
val = (val << 8) | 0xFF;
|
|
|
|
|
|
|
|
return val;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string ThemeData::resolvePlaceholders(const std::string& in)
|
|
|
|
{
|
|
|
|
if (in.empty())
|
|
|
|
return in;
|
|
|
|
|
|
|
|
const size_t variableBegin {in.find("${")};
|
|
|
|
const size_t variableEnd {in.find("}", variableBegin)};
|
|
|
|
|
|
|
|
if ((variableBegin == std::string::npos) || (variableEnd == std::string::npos))
|
|
|
|
return in;
|
|
|
|
|
|
|
|
std::string prefix {in.substr(0, variableBegin)};
|
|
|
|
std::string replace {in.substr(variableBegin + 2, variableEnd - (variableBegin + 2))};
|
|
|
|
std::string suffix {resolvePlaceholders(in.substr(variableEnd + 1).c_str())};
|
|
|
|
|
|
|
|
return prefix + mVariables[replace] + suffix;
|
|
|
|
}
|
|
|
|
|
2022-01-29 17:41:22 +00:00
|
|
|
ThemeData::ThemeCapability ThemeData::parseThemeCapabilities(const std::string& path)
|
|
|
|
{
|
|
|
|
ThemeCapability capabilities;
|
2022-01-31 22:22:42 +00:00
|
|
|
std::vector<std::string> aspectRatiosTemp;
|
2022-01-29 17:41:22 +00:00
|
|
|
|
|
|
|
std::string capFile {path + "/capabilities.xml"};
|
|
|
|
|
|
|
|
if (Utils::FileSystem::isRegularFile(capFile) || Utils::FileSystem::isSymlink(capFile)) {
|
|
|
|
capabilities.legacyTheme = false;
|
|
|
|
|
|
|
|
pugi::xml_document doc;
|
|
|
|
#if defined(_WIN64)
|
|
|
|
pugi::xml_parse_result res =
|
|
|
|
doc.load_file(Utils::String::stringToWideString(capFile).c_str());
|
|
|
|
#else
|
|
|
|
pugi::xml_parse_result res = doc.load_file(capFile.c_str());
|
|
|
|
#endif
|
|
|
|
if (res.status == pugi::status_no_document_element) {
|
|
|
|
LOG(LogDebug) << "Found a capabilities.xml file with no configuration";
|
|
|
|
}
|
|
|
|
else if (!res) {
|
|
|
|
LOG(LogError) << "Couldn't parse capabilities.xml: " << res.description();
|
|
|
|
return capabilities;
|
|
|
|
}
|
|
|
|
pugi::xml_node themeCapabilities {doc.child("themeCapabilities")};
|
|
|
|
if (!themeCapabilities) {
|
|
|
|
LOG(LogError) << "Missing <themeCapabilities> tag in capabilities.xml";
|
|
|
|
return capabilities;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (pugi::xml_node aspectRatio = themeCapabilities.child("aspectRatio"); aspectRatio;
|
|
|
|
aspectRatio = aspectRatio.next_sibling("aspectRatio")) {
|
|
|
|
std::string value = aspectRatio.text().get();
|
2022-01-31 22:22:42 +00:00
|
|
|
if (std::find_if(sSupportedAspectRatios.cbegin(), sSupportedAspectRatios.cend(),
|
|
|
|
[&value](const std::pair<std::string, std::string>& entry) {
|
|
|
|
return entry.first == value;
|
|
|
|
}) == sSupportedAspectRatios.cend()) {
|
2022-01-29 17:41:22 +00:00
|
|
|
LOG(LogWarning) << "Declared aspect ratio \"" << value
|
|
|
|
<< "\" is not supported, ignoring entry in \"" << capFile << "\"";
|
|
|
|
}
|
|
|
|
else {
|
2022-01-31 22:22:42 +00:00
|
|
|
if (std::find(aspectRatiosTemp.cbegin(), aspectRatiosTemp.cend(), value) !=
|
|
|
|
aspectRatiosTemp.cend()) {
|
2022-01-29 17:41:22 +00:00
|
|
|
LOG(LogWarning)
|
|
|
|
<< "Aspect ratio \"" << value
|
|
|
|
<< "\" is declared multiple times, ignoring entry in \"" << capFile << "\"";
|
|
|
|
}
|
|
|
|
else {
|
2022-01-31 22:22:42 +00:00
|
|
|
aspectRatiosTemp.emplace_back(value);
|
2022-01-29 17:41:22 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-01-31 22:22:42 +00:00
|
|
|
|
2022-01-29 17:41:22 +00:00
|
|
|
for (pugi::xml_node variant = themeCapabilities.child("variant"); variant;
|
|
|
|
variant = variant.next_sibling("variant")) {
|
|
|
|
ThemeVariant readVariant;
|
|
|
|
std::string name {variant.attribute("name").as_string()};
|
|
|
|
if (name.empty()) {
|
|
|
|
LOG(LogWarning)
|
2022-01-30 20:35:39 +00:00
|
|
|
<< "Found <variant> tag without name attribute, ignoring entry in \"" << capFile
|
2022-01-29 17:41:22 +00:00
|
|
|
<< "\"";
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
readVariant.name = name;
|
|
|
|
}
|
|
|
|
|
|
|
|
pugi::xml_node labelTag {variant.child("label")};
|
|
|
|
if (labelTag == nullptr) {
|
|
|
|
LOG(LogDebug)
|
|
|
|
<< "No variant <label> tag found, setting label value to the variant name \""
|
|
|
|
<< name << "\" for \"" << capFile << "\"";
|
|
|
|
readVariant.label = name;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
std::string labelValue {labelTag.text().as_string()};
|
|
|
|
if (labelValue == "") {
|
|
|
|
LOG(LogWarning) << "No variant <label> value defined, setting value to "
|
|
|
|
"the variant name \""
|
|
|
|
<< name << "\" for \"" << capFile << "\"";
|
|
|
|
readVariant.label = name;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
readVariant.label = labelValue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pugi::xml_node selectableTag {variant.child("selectable")};
|
|
|
|
if (selectableTag != nullptr) {
|
|
|
|
std::string value {selectableTag.text().as_string()};
|
|
|
|
if (value.front() == '0' || value.front() == 'f' || value.front() == 'F' ||
|
|
|
|
value.front() == 'n' || value.front() == 'N')
|
|
|
|
readVariant.selectable = false;
|
|
|
|
else
|
|
|
|
readVariant.selectable = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
pugi::xml_node overrideTag {variant.child("override")};
|
|
|
|
if (overrideTag != nullptr) {
|
|
|
|
pugi::xml_node triggerTag {overrideTag.child("trigger")};
|
|
|
|
if (triggerTag != nullptr) {
|
|
|
|
std::string triggerValue {triggerTag.text().as_string()};
|
|
|
|
if (triggerValue == "") {
|
|
|
|
LOG(LogWarning)
|
|
|
|
<< "No <trigger> tag value defined for variant \"" << readVariant.name
|
2022-01-30 20:35:39 +00:00
|
|
|
<< "\", ignoring entry in \"" << capFile << "\"";
|
2022-01-29 17:41:22 +00:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
pugi::xml_node useVariantTag {overrideTag.child("useVariant")};
|
|
|
|
if (useVariantTag != nullptr) {
|
|
|
|
std::string useVariantValue {useVariantTag.text().as_string()};
|
|
|
|
if (useVariantValue == "") {
|
|
|
|
LOG(LogWarning)
|
|
|
|
<< "No <useVariant> tag value defined for variant \""
|
2022-01-30 20:35:39 +00:00
|
|
|
<< readVariant.name << "\", ignoring entry in \"" << capFile
|
2022-01-29 17:41:22 +00:00
|
|
|
<< "\"";
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
readVariant.override = true;
|
|
|
|
readVariant.overrideTrigger = triggerValue;
|
|
|
|
readVariant.overrideVariant = useVariantValue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
LOG(LogWarning) << "Found an <override> tag without a corresponding "
|
|
|
|
"<useVariant> tag, "
|
2022-01-30 20:35:39 +00:00
|
|
|
<< "ignoring entry for variant \"" << readVariant.name
|
2022-01-29 17:41:22 +00:00
|
|
|
<< "\" in \"" << capFile << "\"";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
LOG(LogWarning)
|
|
|
|
<< "Found an <override> tag without a corresponding <trigger> tag, "
|
2022-01-30 20:35:39 +00:00
|
|
|
<< "ignoring entry for variant \"" << readVariant.name << "\" in \""
|
2022-01-29 17:41:22 +00:00
|
|
|
<< capFile << "\"";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (readVariant.name != "") {
|
|
|
|
bool duplicate {false};
|
|
|
|
for (auto& variant : capabilities.variants) {
|
|
|
|
if (variant.name == readVariant.name) {
|
|
|
|
LOG(LogWarning) << "Variant \"" << readVariant.name
|
|
|
|
<< "\" is declared multiple times, ignoring entry in \""
|
|
|
|
<< capFile << "\"";
|
|
|
|
duplicate = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!duplicate)
|
|
|
|
capabilities.variants.emplace_back(readVariant);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
LOG(LogDebug) << "No capabilities.xml file found, flagging as legacy theme set";
|
|
|
|
capabilities.legacyTheme = true;
|
|
|
|
}
|
|
|
|
|
2022-01-31 22:22:42 +00:00
|
|
|
// Add the aspect ratios in the order they are defined in sSupportedAspectRatios so they
|
|
|
|
// always show up in the same order in the UI Settings menu.
|
|
|
|
if (!aspectRatiosTemp.empty()) {
|
|
|
|
for (auto& aspectRatio : sSupportedAspectRatios) {
|
|
|
|
if (std::find(aspectRatiosTemp.cbegin(), aspectRatiosTemp.cend(), aspectRatio.first) !=
|
|
|
|
aspectRatiosTemp.cend()) {
|
|
|
|
capabilities.aspectRatios.emplace_back(aspectRatio.first);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-01-29 17:41:22 +00:00
|
|
|
return capabilities;
|
|
|
|
}
|
|
|
|
|
2013-12-31 03:48:28 +00:00
|
|
|
void ThemeData::parseIncludes(const pugi::xml_node& root)
|
2013-11-12 23:28:15 +00:00
|
|
|
{
|
2020-06-21 12:25:28 +00:00
|
|
|
ThemeException error;
|
2022-01-23 16:50:51 +00:00
|
|
|
error << "ThemeData::parseIncludes(): ";
|
2020-06-21 12:25:28 +00:00
|
|
|
error.setFiles(mPaths);
|
2013-12-30 23:23:34 +00:00
|
|
|
|
2022-01-29 17:41:22 +00:00
|
|
|
if (!mLegacyTheme) {
|
|
|
|
if (root.child("formatVersion").text().as_int(-1) != -1)
|
|
|
|
throw error << ": Legacy <formatVersion> tag found for non-legacy theme set";
|
|
|
|
}
|
|
|
|
|
2020-06-21 12:25:28 +00:00
|
|
|
for (pugi::xml_node node = root.child("include"); node; node = node.next_sibling("include")) {
|
2022-01-23 16:50:51 +00:00
|
|
|
std::string relPath {resolvePlaceholders(node.text().as_string())};
|
|
|
|
std::string path {Utils::FileSystem::resolveRelativePath(relPath, mPaths.back(), true)};
|
2022-01-04 20:21:26 +00:00
|
|
|
if (!ResourceManager::getInstance().fileExists(path))
|
2021-07-07 18:31:46 +00:00
|
|
|
throw error << " -> \"" << relPath << "\" not found (resolved to \"" << path << "\")";
|
2021-02-08 19:53:39 +00:00
|
|
|
error << " -> \"" << relPath << "\"";
|
2013-12-30 23:23:34 +00:00
|
|
|
|
2020-06-21 12:25:28 +00:00
|
|
|
mPaths.push_back(path);
|
2013-12-30 23:23:34 +00:00
|
|
|
|
2020-06-21 12:25:28 +00:00
|
|
|
pugi::xml_document includeDoc;
|
2021-07-07 18:31:46 +00:00
|
|
|
#if defined(_WIN64)
|
2022-01-23 16:50:51 +00:00
|
|
|
pugi::xml_parse_result result {
|
|
|
|
includeDoc.load_file(Utils::String::stringToWideString(path).c_str())};
|
2021-07-07 18:31:46 +00:00
|
|
|
#else
|
2022-01-23 16:50:51 +00:00
|
|
|
pugi::xml_parse_result result {includeDoc.load_file(path.c_str())};
|
2021-07-07 18:31:46 +00:00
|
|
|
#endif
|
2020-06-21 12:25:28 +00:00
|
|
|
if (!result)
|
2021-02-08 19:53:39 +00:00
|
|
|
throw error << ": Error parsing file: " << result.description();
|
2013-12-31 03:48:28 +00:00
|
|
|
|
2022-01-23 16:50:51 +00:00
|
|
|
pugi::xml_node theme {includeDoc.child("theme")};
|
2020-06-21 12:25:28 +00:00
|
|
|
if (!theme)
|
2022-01-23 16:50:51 +00:00
|
|
|
throw error << ": Missing <theme> tag";
|
2013-12-30 23:23:34 +00:00
|
|
|
|
2020-06-21 12:25:28 +00:00
|
|
|
parseVariables(theme);
|
|
|
|
parseIncludes(theme);
|
|
|
|
parseViews(theme);
|
2022-01-29 17:41:22 +00:00
|
|
|
// For non-legacy themes this will simply check for the presence of a feature tag and throw
|
|
|
|
// an error if it's found.
|
2020-06-21 12:25:28 +00:00
|
|
|
parseFeatures(theme);
|
2013-12-31 03:48:28 +00:00
|
|
|
|
2022-01-29 17:41:22 +00:00
|
|
|
if (!mLegacyTheme) {
|
|
|
|
parseVariants(theme);
|
|
|
|
parseAspectRatios(theme);
|
|
|
|
}
|
|
|
|
|
2020-06-21 12:25:28 +00:00
|
|
|
mPaths.pop_back();
|
|
|
|
}
|
2013-11-12 23:28:15 +00:00
|
|
|
}
|
|
|
|
|
2017-03-10 18:49:15 +00:00
|
|
|
void ThemeData::parseFeatures(const pugi::xml_node& root)
|
|
|
|
{
|
2020-06-21 12:25:28 +00:00
|
|
|
ThemeException error;
|
2022-01-23 16:50:51 +00:00
|
|
|
error << "ThemeData::parseFeatures(): ";
|
2020-06-21 12:25:28 +00:00
|
|
|
error.setFiles(mPaths);
|
2017-03-10 18:49:15 +00:00
|
|
|
|
2022-01-29 17:41:22 +00:00
|
|
|
if (!mLegacyTheme && root.child("feature") != nullptr)
|
|
|
|
throw error << ": Legacy <feature> tag found for non-legacy theme set";
|
|
|
|
|
2020-06-21 12:25:28 +00:00
|
|
|
for (pugi::xml_node node = root.child("feature"); node; node = node.next_sibling("feature")) {
|
|
|
|
if (!node.attribute("supported"))
|
2022-01-23 16:50:51 +00:00
|
|
|
throw error << ": Feature missing \"supported\" attribute";
|
2017-03-10 18:49:15 +00:00
|
|
|
|
2022-01-23 16:50:51 +00:00
|
|
|
const std::string supportedAttr {node.attribute("supported").as_string()};
|
2017-03-10 18:49:15 +00:00
|
|
|
|
2022-01-29 17:41:22 +00:00
|
|
|
if (std::find(sLegacySupportedFeatures.cbegin(), sLegacySupportedFeatures.cend(),
|
|
|
|
supportedAttr) != sLegacySupportedFeatures.cend()) {
|
2020-06-21 12:25:28 +00:00
|
|
|
parseViews(node);
|
2021-07-07 18:31:46 +00:00
|
|
|
}
|
2020-06-21 12:25:28 +00:00
|
|
|
}
|
2017-03-10 18:49:15 +00:00
|
|
|
}
|
|
|
|
|
2022-01-29 17:41:22 +00:00
|
|
|
void ThemeData::parseVariants(const pugi::xml_node& root)
|
|
|
|
{
|
|
|
|
if (mCurrentThemeSet == mThemeSets.end())
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (mSelectedVariant == "")
|
|
|
|
return;
|
|
|
|
|
|
|
|
ThemeException error;
|
|
|
|
error << "ThemeData::parseVariants(): ";
|
|
|
|
error.setFiles(mPaths);
|
|
|
|
|
|
|
|
for (pugi::xml_node node = root.child("variant"); node; node = node.next_sibling("variant")) {
|
|
|
|
if (!node.attribute("name"))
|
|
|
|
throw error << ": <variant> tag missing \"name\" attribute";
|
|
|
|
|
|
|
|
const std::string delim {" \t\r\n,"};
|
|
|
|
const std::string nameAttr {node.attribute("name").as_string()};
|
|
|
|
size_t prevOff {nameAttr.find_first_not_of(delim, 0)};
|
|
|
|
size_t off {nameAttr.find_first_of(delim, prevOff)};
|
|
|
|
std::string viewKey;
|
|
|
|
while (off != std::string::npos || prevOff != std::string::npos) {
|
|
|
|
viewKey = nameAttr.substr(prevOff, off - prevOff);
|
|
|
|
prevOff = nameAttr.find_first_not_of(delim, off);
|
|
|
|
off = nameAttr.find_first_of(delim, prevOff);
|
|
|
|
|
|
|
|
if (std::find(mVariants.cbegin(), mVariants.cend(), viewKey) == mVariants.cend()) {
|
|
|
|
throw error << ": <variant> value \"" << viewKey
|
|
|
|
<< "\" is not defined in capabilities.xml";
|
|
|
|
}
|
|
|
|
|
|
|
|
if (mSelectedVariant == viewKey) {
|
|
|
|
parseIncludes(node);
|
|
|
|
parseViews(node);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void ThemeData::parseAspectRatios(const pugi::xml_node& root)
|
|
|
|
{
|
|
|
|
if (mCurrentThemeSet == mThemeSets.end())
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (mSelectedAspectRatio == "")
|
|
|
|
return;
|
|
|
|
|
|
|
|
ThemeException error;
|
|
|
|
error << "ThemeData::parseAspectRatios(): ";
|
|
|
|
error.setFiles(mPaths);
|
|
|
|
|
|
|
|
for (pugi::xml_node node = root.child("aspectRatio"); node;
|
|
|
|
node = node.next_sibling("aspectRatio")) {
|
|
|
|
if (!node.attribute("name"))
|
|
|
|
throw error << ": <aspectRatio> tag missing \"name\" attribute";
|
|
|
|
|
|
|
|
const std::string delim {" \t\r\n,"};
|
|
|
|
const std::string nameAttr {node.attribute("name").as_string()};
|
|
|
|
size_t prevOff {nameAttr.find_first_not_of(delim, 0)};
|
|
|
|
size_t off {nameAttr.find_first_of(delim, prevOff)};
|
|
|
|
std::string viewKey;
|
|
|
|
while (off != std::string::npos || prevOff != std::string::npos) {
|
|
|
|
viewKey = nameAttr.substr(prevOff, off - prevOff);
|
|
|
|
prevOff = nameAttr.find_first_not_of(delim, off);
|
|
|
|
off = nameAttr.find_first_of(delim, prevOff);
|
|
|
|
|
2022-01-31 22:22:42 +00:00
|
|
|
if (std::find(mCurrentThemeSet->second.capabilities.aspectRatios.cbegin(),
|
|
|
|
mCurrentThemeSet->second.capabilities.aspectRatios.cend(),
|
|
|
|
viewKey) == mCurrentThemeSet->second.capabilities.aspectRatios.cend()) {
|
2022-01-29 17:41:22 +00:00
|
|
|
throw error << ": aspectRatio value \"" << viewKey
|
|
|
|
<< "\" is not defined in capabilities.xml";
|
|
|
|
}
|
|
|
|
|
|
|
|
if (mSelectedAspectRatio == viewKey) {
|
|
|
|
parseIncludes(node);
|
|
|
|
parseViews(node);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-05-14 04:07:28 +00:00
|
|
|
void ThemeData::parseVariables(const pugi::xml_node& root)
|
|
|
|
{
|
2020-06-21 12:25:28 +00:00
|
|
|
ThemeException error;
|
|
|
|
error.setFiles(mPaths);
|
2019-08-25 15:23:02 +00:00
|
|
|
|
2022-01-23 16:50:51 +00:00
|
|
|
pugi::xml_node variables {root.child("variables")};
|
2017-05-14 04:07:28 +00:00
|
|
|
|
2020-06-21 12:25:28 +00:00
|
|
|
if (!variables)
|
|
|
|
return;
|
2019-08-25 15:23:02 +00:00
|
|
|
|
2021-11-17 16:48:49 +00:00
|
|
|
for (pugi::xml_node_iterator it = variables.begin(); it != variables.end(); ++it) {
|
2022-01-23 16:50:51 +00:00
|
|
|
std::string key {it->name()};
|
|
|
|
std::string val {it->text().as_string()};
|
2017-05-14 04:07:28 +00:00
|
|
|
|
2020-06-21 12:25:28 +00:00
|
|
|
if (!val.empty())
|
|
|
|
mVariables.insert(std::pair<std::string, std::string>(key, val));
|
|
|
|
}
|
2017-05-14 04:07:28 +00:00
|
|
|
}
|
|
|
|
|
2013-12-31 03:48:28 +00:00
|
|
|
void ThemeData::parseViews(const pugi::xml_node& root)
|
2013-11-12 23:28:15 +00:00
|
|
|
{
|
2020-06-21 12:25:28 +00:00
|
|
|
ThemeException error;
|
2022-01-23 16:50:51 +00:00
|
|
|
error << "ThemeData::parseViews(): ";
|
2020-06-21 12:25:28 +00:00
|
|
|
error.setFiles(mPaths);
|
|
|
|
|
|
|
|
// Parse views.
|
|
|
|
for (pugi::xml_node node = root.child("view"); node; node = node.next_sibling("view")) {
|
|
|
|
if (!node.attribute("name"))
|
2022-01-23 16:50:51 +00:00
|
|
|
throw error << ": View missing \"name\" attribute";
|
2020-06-21 12:25:28 +00:00
|
|
|
|
2022-01-23 16:50:51 +00:00
|
|
|
const std::string delim {" \t\r\n,"};
|
|
|
|
const std::string nameAttr {node.attribute("name").as_string()};
|
|
|
|
size_t prevOff {nameAttr.find_first_not_of(delim, 0)};
|
|
|
|
size_t off {nameAttr.find_first_of(delim, prevOff)};
|
2020-06-21 12:25:28 +00:00
|
|
|
std::string viewKey;
|
2020-07-13 18:58:25 +00:00
|
|
|
while (off != std::string::npos || prevOff != std::string::npos) {
|
2020-06-21 12:25:28 +00:00
|
|
|
viewKey = nameAttr.substr(prevOff, off - prevOff);
|
|
|
|
prevOff = nameAttr.find_first_not_of(delim, off);
|
|
|
|
off = nameAttr.find_first_of(delim, prevOff);
|
|
|
|
|
2022-01-29 17:41:22 +00:00
|
|
|
if (mLegacyTheme) {
|
|
|
|
if (std::find(sLegacySupportedViews.cbegin(), sLegacySupportedViews.cend(),
|
|
|
|
viewKey) != sLegacySupportedViews.cend()) {
|
|
|
|
ThemeView& view {
|
|
|
|
mViews.insert(std::pair<std::string, ThemeView>(viewKey, ThemeView()))
|
|
|
|
.first->second};
|
|
|
|
parseView(node, view);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
throw error << ": Unsupported \"" << viewKey << "\" view style defined";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
if (std::find(sSupportedViews.cbegin(), sSupportedViews.cend(), viewKey) !=
|
|
|
|
sSupportedViews.cend()) {
|
|
|
|
ThemeView& view {
|
|
|
|
mViews.insert(std::pair<std::string, ThemeView>(viewKey, ThemeView()))
|
|
|
|
.first->second};
|
|
|
|
parseView(node, view);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
throw error << ": Unsupported \"" << viewKey << "\" view style defined";
|
|
|
|
}
|
2020-06-21 12:25:28 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2013-11-12 23:28:15 +00:00
|
|
|
}
|
|
|
|
|
2013-12-31 03:48:28 +00:00
|
|
|
void ThemeData::parseView(const pugi::xml_node& root, ThemeView& view)
|
2013-11-12 23:28:15 +00:00
|
|
|
{
|
2020-06-21 12:25:28 +00:00
|
|
|
ThemeException error;
|
2022-01-23 16:50:51 +00:00
|
|
|
error << "ThemeData::parseView(): ";
|
2020-06-21 12:25:28 +00:00
|
|
|
error.setFiles(mPaths);
|
|
|
|
|
|
|
|
for (pugi::xml_node node = root.first_child(); node; node = node.next_sibling()) {
|
|
|
|
if (!node.attribute("name"))
|
2022-01-23 16:50:51 +00:00
|
|
|
throw error << ": Element of type \"" << node.name() << "\" missing \"name\" attribute";
|
2020-06-21 12:25:28 +00:00
|
|
|
|
|
|
|
auto elemTypeIt = sElementMap.find(node.name());
|
|
|
|
if (elemTypeIt == sElementMap.cend())
|
2022-01-23 16:50:51 +00:00
|
|
|
throw error << ": Unknown element type \"" << node.name() << "\"";
|
2020-06-21 12:25:28 +00:00
|
|
|
|
2022-01-23 16:50:51 +00:00
|
|
|
const std::string delim {" \t\r\n,"};
|
|
|
|
const std::string nameAttr {node.attribute("name").as_string()};
|
|
|
|
size_t prevOff {nameAttr.find_first_not_of(delim, 0)};
|
|
|
|
size_t off {nameAttr.find_first_of(delim, prevOff)};
|
2020-06-21 12:25:28 +00:00
|
|
|
while (off != std::string::npos || prevOff != std::string::npos) {
|
2022-01-23 16:50:51 +00:00
|
|
|
std::string elemKey {nameAttr.substr(prevOff, off - prevOff)};
|
2020-06-21 12:25:28 +00:00
|
|
|
prevOff = nameAttr.find_first_not_of(delim, off);
|
|
|
|
off = nameAttr.find_first_of(delim, prevOff);
|
|
|
|
|
2022-01-29 17:41:22 +00:00
|
|
|
// Add the element type as a prefix to avoid name collisions between different
|
|
|
|
// component types.
|
|
|
|
const std::string elementType {node.name()};
|
|
|
|
elemKey = std::string(node.name()) + "_" + elemKey;
|
|
|
|
|
2021-07-07 18:31:46 +00:00
|
|
|
parseElement(
|
|
|
|
node, elemTypeIt->second,
|
|
|
|
view.elements.insert(std::pair<std::string, ThemeElement>(elemKey, ThemeElement()))
|
|
|
|
.first->second);
|
2020-06-21 12:25:28 +00:00
|
|
|
|
2022-01-30 20:13:49 +00:00
|
|
|
if (mLegacyTheme &&
|
|
|
|
std::find(view.legacyOrderedKeys.cbegin(), view.legacyOrderedKeys.cend(),
|
2022-01-29 17:41:22 +00:00
|
|
|
elemKey) == view.legacyOrderedKeys.cend())
|
|
|
|
view.legacyOrderedKeys.push_back(elemKey);
|
2020-06-21 12:25:28 +00:00
|
|
|
}
|
|
|
|
}
|
2013-11-12 23:28:15 +00:00
|
|
|
}
|
|
|
|
|
2020-06-21 12:25:28 +00:00
|
|
|
void ThemeData::parseElement(const pugi::xml_node& root,
|
2021-07-07 18:31:46 +00:00
|
|
|
const std::map<std::string, ElementPropertyType>& typeMap,
|
|
|
|
ThemeElement& element)
|
2013-12-30 23:23:34 +00:00
|
|
|
{
|
2020-06-21 12:25:28 +00:00
|
|
|
ThemeException error;
|
2022-01-23 16:50:51 +00:00
|
|
|
error << "ThemeData::parseElement(): ";
|
2020-06-21 12:25:28 +00:00
|
|
|
error.setFiles(mPaths);
|
|
|
|
|
|
|
|
element.type = root.name();
|
2022-01-29 17:41:22 +00:00
|
|
|
|
2020-06-21 12:25:28 +00:00
|
|
|
element.extra = root.attribute("extra").as_bool(false);
|
2022-01-30 20:13:49 +00:00
|
|
|
if (mLegacyTheme)
|
|
|
|
element.extra = root.attribute("extra").as_bool(false);
|
|
|
|
else if (!mLegacyTheme && std::string(root.attribute("extra").as_string("")) != "")
|
|
|
|
throw error << ": Legacy \"extra\" attribute found for non-legacy theme set";
|
2020-06-21 12:25:28 +00:00
|
|
|
|
|
|
|
for (pugi::xml_node node = root.first_child(); node; node = node.next_sibling()) {
|
|
|
|
auto typeIt = typeMap.find(node.name());
|
|
|
|
if (typeIt == typeMap.cend())
|
2022-01-23 16:50:51 +00:00
|
|
|
throw error << ": Unknown property type \"" << node.name()
|
|
|
|
<< "\" for element of type \"" << root.name() << "\"";
|
2020-06-21 12:25:28 +00:00
|
|
|
|
2022-01-23 16:50:51 +00:00
|
|
|
std::string str {resolvePlaceholders(node.text().as_string())};
|
2020-06-21 12:25:28 +00:00
|
|
|
|
2022-01-29 17:41:22 +00:00
|
|
|
// Skip this check for legacy themes to not break backward compatibility with some
|
|
|
|
// themes sets that include empty property values.
|
|
|
|
if (!mLegacyTheme && str == "")
|
|
|
|
throw error << ": Property \"" << typeIt->first << "\" for element \"" << element.type
|
|
|
|
<< "\" has no value defined";
|
|
|
|
|
|
|
|
std::string nodeName = node.name();
|
|
|
|
|
|
|
|
if (!mLegacyTheme && element.type == "video") {
|
|
|
|
if (nodeName == "showSnapshotNoVideo" || nodeName == "showSnapshotDelay")
|
|
|
|
throw error << ": Legacy <" << nodeName
|
|
|
|
<< "> property found for non-legacy theme set";
|
|
|
|
}
|
|
|
|
|
|
|
|
// If an attribute exists, then replace nodeName with its name.
|
|
|
|
auto attributeEntry = sPropertyAttributeMap.find(element.type);
|
|
|
|
if (attributeEntry != sPropertyAttributeMap.end()) {
|
|
|
|
auto attribute = attributeEntry->second.find(typeIt->first);
|
|
|
|
if (attribute != attributeEntry->second.end()) {
|
|
|
|
if (node.attribute(attribute->second.c_str()) == nullptr) {
|
|
|
|
throw error << ": Unknown attribute \"" << node.first_attribute().name()
|
|
|
|
<< "\" for property \"" << typeIt->first << "\" (element \""
|
|
|
|
<< attributeEntry->first << "\")";
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
// Add the attribute name as a prefix to avoid potential name collisions.
|
|
|
|
nodeName = attribute->second + "_" +
|
|
|
|
node.attribute(attribute->second.c_str()).as_string("");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-21 12:25:28 +00:00
|
|
|
switch (typeIt->second) {
|
2021-07-07 18:31:46 +00:00
|
|
|
case NORMALIZED_RECT: {
|
2021-08-15 20:03:17 +00:00
|
|
|
glm::vec4 val;
|
2021-07-07 18:31:46 +00:00
|
|
|
|
|
|
|
auto splits = Utils::String::delimitedStringToVector(str, " ");
|
|
|
|
if (splits.size() == 2) {
|
2022-01-16 11:09:55 +00:00
|
|
|
val = glm::vec4 {static_cast<float>(atof(splits.at(0).c_str())),
|
|
|
|
static_cast<float>(atof(splits.at(1).c_str())),
|
|
|
|
static_cast<float>(atof(splits.at(0).c_str())),
|
|
|
|
static_cast<float>(atof(splits.at(1).c_str()))};
|
2021-07-07 18:31:46 +00:00
|
|
|
}
|
|
|
|
else if (splits.size() == 4) {
|
2022-01-16 11:09:55 +00:00
|
|
|
val = glm::vec4 {static_cast<float>(atof(splits.at(0).c_str())),
|
|
|
|
static_cast<float>(atof(splits.at(1).c_str())),
|
|
|
|
static_cast<float>(atof(splits.at(2).c_str())),
|
|
|
|
static_cast<float>(atof(splits.at(3).c_str()))};
|
2021-07-07 18:31:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
element.properties[node.name()] = val;
|
|
|
|
break;
|
2020-06-21 12:25:28 +00:00
|
|
|
}
|
2021-07-07 18:31:46 +00:00
|
|
|
case NORMALIZED_PAIR: {
|
|
|
|
size_t divider = str.find(' ');
|
|
|
|
if (divider == std::string::npos)
|
2022-01-23 16:50:51 +00:00
|
|
|
throw error << ": Invalid normalized pair value \"" << str.c_str()
|
|
|
|
<< "\" for property \"" << node.name() << "\"";
|
2020-06-21 12:25:28 +00:00
|
|
|
|
2022-01-16 11:09:55 +00:00
|
|
|
std::string first {str.substr(0, divider)};
|
|
|
|
std::string second {str.substr(divider, std::string::npos)};
|
2020-06-21 12:25:28 +00:00
|
|
|
|
2022-01-16 11:09:55 +00:00
|
|
|
glm::vec2 val {static_cast<float>(atof(first.c_str())),
|
|
|
|
static_cast<float>(atof(second.c_str()))};
|
2020-06-21 12:25:28 +00:00
|
|
|
|
2021-07-07 18:31:46 +00:00
|
|
|
element.properties[node.name()] = val;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case STRING: {
|
|
|
|
element.properties[node.name()] = str;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case PATH: {
|
2022-01-29 17:41:22 +00:00
|
|
|
std::string path;
|
|
|
|
|
|
|
|
if (!str.empty() && str.front() == ':')
|
|
|
|
path = ResourceManager::getInstance().getResourcePath(str);
|
|
|
|
else
|
|
|
|
path = Utils::FileSystem::resolveRelativePath(str, mPaths.back(), true);
|
|
|
|
|
2022-01-04 20:21:26 +00:00
|
|
|
if (!ResourceManager::getInstance().fileExists(path)) {
|
2021-07-07 18:31:46 +00:00
|
|
|
std::stringstream ss;
|
2022-02-09 17:45:03 +00:00
|
|
|
// For explicits paths, print a warning if the file couldn't be found, but
|
|
|
|
// only print a debug message if it was set using a variable.
|
|
|
|
if (str == node.text().as_string()) {
|
|
|
|
LOG(LogWarning)
|
|
|
|
<< error.message << ": Couldn't find file \"" << node.text().get()
|
|
|
|
<< "\" "
|
|
|
|
<< ((node.text().get() != path) ? "which resolves to \"" + path + "\"" :
|
|
|
|
"");
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
LOG(LogDebug)
|
|
|
|
<< error.message << ": Couldn't find file \"" << node.text().get()
|
|
|
|
<< "\" "
|
|
|
|
<< ((node.text().get() != path) ? "which resolves to \"" + path + "\"" :
|
|
|
|
"");
|
|
|
|
}
|
2021-07-07 18:31:46 +00:00
|
|
|
}
|
2022-01-29 17:41:22 +00:00
|
|
|
element.properties[nodeName] = path;
|
2021-07-07 18:31:46 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case COLOR: {
|
2022-01-23 16:50:51 +00:00
|
|
|
try {
|
|
|
|
element.properties[node.name()] = getHexColor(str);
|
|
|
|
}
|
|
|
|
catch (ThemeException& e) {
|
|
|
|
throw error << ": " << e.what();
|
|
|
|
}
|
2021-07-07 18:31:46 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case FLOAT: {
|
2022-01-23 16:50:51 +00:00
|
|
|
float floatVal {static_cast<float>(strtod(str.c_str(), 0))};
|
2021-07-07 18:31:46 +00:00
|
|
|
element.properties[node.name()] = floatVal;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case BOOLEAN: {
|
2022-01-29 17:41:22 +00:00
|
|
|
bool boolVal = false;
|
|
|
|
// Only look at the first character.
|
|
|
|
if (str.front() == '1' || str.front() == 't' || str.front() == 'T' ||
|
|
|
|
str.front() == 'y' || str.front() == 'Y')
|
|
|
|
boolVal = true;
|
2021-07-07 18:31:46 +00:00
|
|
|
|
|
|
|
element.properties[node.name()] = boolVal;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
default: {
|
2022-01-23 16:50:51 +00:00
|
|
|
throw error << ": Unknown ElementPropertyType for \""
|
2021-07-07 18:31:46 +00:00
|
|
|
<< root.attribute("name").as_string() << "\", property " << node.name();
|
2020-06-21 12:25:28 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2013-11-12 23:28:15 +00:00
|
|
|
}
|