#pragma once #ifndef ES_CORE_THEME_DATA_H #define ES_CORE_THEME_DATA_H #include "math/Vector2f.h" #include #include #include #include #include #include namespace pugi { class xml_node; } template class TextListComponent; class GuiComponent; class ImageComponent; class NinePatchComponent; class Sound; class TextComponent; class Window; namespace ThemeFlags { enum PropertyFlags : unsigned int { PATH = 1, POSITION = 2, SIZE = 4, ORIGIN = 8, COLOR = 16, FONT_PATH = 32, FONT_SIZE = 64, SOUND = 128, ALIGNMENT = 256, TEXT = 512, FORCE_UPPERCASE = 1024, LINE_SPACING = 2048, DELAY = 4096, Z_INDEX = 8192, ROTATION = 16384, ALL = 0xFFFFFFFF }; } class ThemeException : public std::exception { public: std::string msg; virtual const char* what() const throw() { return msg.c_str(); } template friend ThemeException& operator<<(ThemeException& e, T msg); inline void setFiles(const std::deque& deque) { *this << "from theme \"" << deque.front().string() << "\"\n"; for(auto it = deque.cbegin() + 1; it != deque.cend(); it++) *this << " (from included file \"" << (*it).string() << "\")\n"; *this << " "; } }; template ThemeException& operator<<(ThemeException& e, T appendMsg) { std::stringstream ss; ss << e.msg << appendMsg; e.msg = ss.str(); return e; } struct ThemeSet { boost::filesystem::path path; inline std::string getName() const { return path.stem().string(); } inline boost::filesystem::path getThemePath(const std::string& system) const { return path/system/"theme.xml"; } }; class ThemeData { public: class ThemeElement { public: bool extra; std::string type; std::map< std::string, boost::variant > properties; template T get(const std::string& prop) const { return boost::get(properties.at(prop)); } inline bool has(const std::string& prop) const { return (properties.find(prop) != properties.cend()); } }; private: class ThemeView { public: std::map elements; std::vector orderedKeys; }; public: ThemeData(); // throws ThemeException void loadFile(std::map sysDataMap, const std::string& path); enum ElementPropertyType { NORMALIZED_PAIR, PATH, STRING, COLOR, FLOAT, BOOLEAN }; bool hasView(const std::string& view); // If expectedType is an empty string, will do no type checking. const ThemeElement* getElement(const std::string& view, const std::string& element, const std::string& expectedType) const; static std::vector makeExtras(const std::shared_ptr& theme, const std::string& view, Window* window); static const std::shared_ptr& getDefault(); static std::map getThemeSets(); static boost::filesystem::path getThemeFromCurrentSet(const std::string& system); private: static std::map< std::string, std::map > sElementMap; static std::vector sSupportedFeatures; static std::vector sSupportedViews; std::deque mPaths; float mVersion; void parseFeatures(const pugi::xml_node& themeRoot); void parseIncludes(const pugi::xml_node& themeRoot); void parseVariables(const pugi::xml_node& root); void parseViews(const pugi::xml_node& themeRoot); void parseView(const pugi::xml_node& viewNode, ThemeView& view); void parseElement(const pugi::xml_node& elementNode, const std::map& typeMap, ThemeElement& element); std::map mViews; }; #endif // ES_CORE_THEME_DATA_H