// SPDX-License-Identifier: MIT // // ES-DE Frontend // ThemeData.h // // 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. // #ifndef ES_CORE_THEME_DATA_H #define ES_CORE_THEME_DATA_H #include "GuiComponent.h" #include "utils/FileSystemUtil.h" #include "utils/MathUtil.h" #include "utils/StringUtil.h" #include #include #include #include #include #include #include namespace ThemeFlags { // clang-format off // These are only the most common flags shared accross multiple components, in addition // to these there are many component-specific options. enum PropertyFlags : unsigned int { PATH = 0x00000001, POSITION = 0x00000002, SIZE = 0x00000004, ORIGIN = 0x00000008, COLOR = 0x00000010, FONT_PATH = 0x00000020, FONT_SIZE = 0x00000040, ALIGNMENT = 0x00000080, TEXT = 0x00000100, METADATA = 0x00000200, LETTER_CASE = 0x00000400, LINE_SPACING = 0x00000800, DELAY = 0x00001000, Z_INDEX = 0x00002000, ROTATION = 0x00004000, BRIGHTNESS = 0x00008000, OPACITY = 0x00010000, SATURATION = 0x00020000, VISIBLE = 0x00040000, ALL = 0xFFFFFFFF }; // clang-format on } // namespace ThemeFlags namespace ThemeTriggers { enum class TriggerType { NONE, NO_VIDEOS, NO_MEDIA }; } // namespace ThemeTriggers class ThemeException : public std::exception { public: std::string message; const char* what() const throw() { return message.c_str(); } template friend ThemeException& operator<<(ThemeException& e, T message) { std::stringstream ss; ss << e.message << message; e.message = ss.str(); return e; } void setFiles(const std::deque& deque) { // Add all paths to the error message, separated by -> so it's easy to read the log // output in case of theme loading errors. *this << "\"" << deque.front() << "\""; for (auto it = deque.cbegin() + 1; it != deque.cend(); ++it) *this << " -> \"" << (*it) << "\""; } }; class ThemeData { public: class ThemeElement { public: std::string type; struct Property { void operator=(const glm::vec4& value) { r = value; const glm::vec4 initVector {value}; v = glm::vec2 {initVector.x, initVector.y}; } void operator=(const glm::vec2& value) { v = value; } void operator=(const std::string& value) { s = value; } void operator=(const unsigned int& value) { i = value; } void operator=(const float& value) { f = value; } void operator=(const bool& value) { b = value; } glm::vec4 r; glm::vec2 v; std::string s; unsigned int i; float f; bool b; }; std::map properties; template const T get(const std::string& prop) const { if (std::is_same::value) return std::any_cast(properties.at(prop).v); else if (std::is_same::value) return std::any_cast(properties.at(prop).s); else if (std::is_same::value) return std::any_cast(properties.at(prop).i); else if (std::is_same::value) return std::any_cast(properties.at(prop).f); else if (std::is_same::value) return std::any_cast(properties.at(prop).b); else if (std::is_same::value) return std::any_cast(properties.at(prop).r); return T(); } bool has(const std::string& prop) const { return (properties.find(prop) != properties.cend()); } }; ThemeData(); class ThemeView { public: std::map elements; }; struct ThemeVariant { std::string name; std::vector> labels; bool selectable; std::map>> overrides; ThemeVariant() : selectable {false} { } }; struct ThemeColorScheme { std::string name; std::vector> labels; }; struct ThemeTransitions { std::string name; std::vector> labels; bool selectable; std::map animations; ThemeTransitions() : selectable {true} { } }; struct ThemeCapability { std::string themeName; std::vector variants; std::vector colorSchemes; std::vector fontSizes; std::vector aspectRatios; std::vector languages; std::vector transitions; std::vector suppressedTransitionProfiles; bool validTheme; }; struct Theme { std::string path; ThemeCapability capabilities; std::string getName() const { return Utils::FileSystem::getStem(path); } std::string getThemePath(const std::string& system) const { return path + "/" + system + "/theme.xml"; } }; struct StringComparator { bool operator()(const std::string& a, const std::string& b) const { return Utils::String::toUpper(a) < Utils::String::toUpper(b); } }; void loadFile(const std::map& sysDataMap, const std::string& path, const ThemeTriggers::TriggerType trigger, const bool customCollection); bool hasView(const std::string& view); ThemeView& getViewElements(std::string view) { return mViews[view]; } const ThemeElement* getElement(const std::string& view, const std::string& element, const std::string& expectedType) const; static void populateThemes(); const static std::map& getThemes() { return sThemes; } const static std::string getSystemThemeFile(const std::string& system); const static std::string getFontSizeLabel(const std::string& fontSize); const static std::string getAspectRatioLabel(const std::string& aspectRatio); const static std::string getLanguageLabel(const std::string& language); static void setThemeTransitions(); const std::map>> getCurrentThemeSelectedVariantOverrides(); const static void themeLoadedLogOutput(); enum ElementPropertyType { NORMALIZED_RECT, NORMALIZED_PAIR, PATH, STRING, COLOR, UNSIGNED_INTEGER, FLOAT, BOOLEAN }; std::map mVariables; private: unsigned int getHexColor(const std::string& str); std::string resolvePlaceholders(const std::string& in); static ThemeCapability parseThemeCapabilities(const std::string& path); void parseIncludes(const pugi::xml_node& root); void parseVariants(const pugi::xml_node& root); void parseColorSchemes(const pugi::xml_node& root); void parseFontSizes(const pugi::xml_node& root); void parseLanguages(const pugi::xml_node& root); void parseAspectRatios(const pugi::xml_node& root); void parseTransitions(const pugi::xml_node& root); void parseVariables(const pugi::xml_node& root); void parseViews(const pugi::xml_node& root); void parseView(const pugi::xml_node& root, ThemeView& view); void parseElement(const pugi::xml_node& root, const std::map& typeMap, ThemeElement& element); #if defined(GETTEXT_DUMMY_ENTRIES) // This is just to get gettext msgid entries added to the PO message catalog files. void gettextMessageCatalogEntries(); #endif static std::vector sSupportedViews; static std::vector sSupportedMediaTypes; static std::vector sSupportedTransitions; static std::vector sSupportedTransitionAnimations; static std::vector> sSupportedFontSizes; static std::vector> sSupportedAspectRatios; static std::vector> sSupportedLanguages; static std::map sAspectRatioMap; static std::map> sPropertyAttributeMap; static std::map> sElementMap; static inline std::map sThemes; static inline std::map::iterator sCurrentTheme {}; static inline std::string sVariantDefinedTransitions; std::map mViews; std::deque mPaths; std::vector mVariants; std::vector mColorSchemes; std::vector mFontSizes; std::vector mLanguages; std::string mSelectedVariant; std::string mOverrideVariant; std::string mSelectedColorScheme; std::string mSelectedFontSize; static inline std::string sSelectedAspectRatio; static inline bool sAspectRatioMatch {false}; static inline std::string sThemeLanguage; bool mCustomCollection; }; #endif // ES_CORE_THEME_DATA_H