2019-03-15 20:03:12 +01:00
|
|
|
/*
|
|
|
|
Minetest
|
|
|
|
Copyright (C) 2019 rubenwardy
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU Lesser General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2.1 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU Lesser General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Lesser General Public License along
|
|
|
|
with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*/
|
|
|
|
|
2019-12-09 21:06:51 +01:00
|
|
|
#include "client/tile.h" // ITextureSource
|
2019-03-15 20:03:12 +01:00
|
|
|
#include "irrlichttypes_extrabloated.h"
|
2019-12-09 21:06:51 +01:00
|
|
|
#include "util/string.h"
|
2019-03-16 22:38:36 +01:00
|
|
|
#include <array>
|
2019-03-15 20:03:12 +01:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
class StyleSpec
|
|
|
|
{
|
|
|
|
public:
|
2019-03-16 22:38:36 +01:00
|
|
|
enum Property
|
|
|
|
{
|
2019-03-15 20:03:12 +01:00
|
|
|
TEXTCOLOR,
|
|
|
|
BGCOLOR,
|
2019-10-12 18:44:23 +02:00
|
|
|
BGCOLOR_HOVERED,
|
|
|
|
BGCOLOR_PRESSED,
|
2019-03-16 22:38:36 +01:00
|
|
|
NOCLIP,
|
|
|
|
BORDER,
|
|
|
|
BGIMG,
|
2019-10-12 18:44:23 +02:00
|
|
|
BGIMG_HOVERED,
|
2019-03-16 22:38:36 +01:00
|
|
|
BGIMG_PRESSED,
|
2019-12-09 21:06:51 +01:00
|
|
|
FGIMG,
|
|
|
|
FGIMG_HOVERED,
|
|
|
|
FGIMG_PRESSED,
|
2019-03-16 22:38:36 +01:00
|
|
|
ALPHA,
|
|
|
|
NUM_PROPERTIES,
|
|
|
|
NONE
|
2019-03-15 20:03:12 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
private:
|
2019-12-15 00:03:33 +01:00
|
|
|
std::array<bool, NUM_PROPERTIES> property_set{};
|
2019-03-16 22:38:36 +01:00
|
|
|
std::array<std::string, NUM_PROPERTIES> properties;
|
2019-03-15 20:03:12 +01:00
|
|
|
|
|
|
|
public:
|
2019-03-16 22:38:36 +01:00
|
|
|
static Property GetPropertyByName(const std::string &name)
|
|
|
|
{
|
2019-03-15 20:03:12 +01:00
|
|
|
if (name == "textcolor") {
|
|
|
|
return TEXTCOLOR;
|
|
|
|
} else if (name == "bgcolor") {
|
|
|
|
return BGCOLOR;
|
2019-10-12 18:44:23 +02:00
|
|
|
} else if (name == "bgcolor_hovered") {
|
|
|
|
return BGCOLOR_HOVERED;
|
|
|
|
} else if (name == "bgcolor_pressed") {
|
|
|
|
return BGCOLOR_PRESSED;
|
2019-03-16 22:38:36 +01:00
|
|
|
} else if (name == "noclip") {
|
|
|
|
return NOCLIP;
|
|
|
|
} else if (name == "border") {
|
|
|
|
return BORDER;
|
|
|
|
} else if (name == "bgimg") {
|
|
|
|
return BGIMG;
|
2019-10-12 18:44:23 +02:00
|
|
|
} else if (name == "bgimg_hovered") {
|
|
|
|
return BGIMG_HOVERED;
|
2019-03-16 22:38:36 +01:00
|
|
|
} else if (name == "bgimg_pressed") {
|
|
|
|
return BGIMG_PRESSED;
|
2019-12-09 21:06:51 +01:00
|
|
|
} else if (name == "fgimg") {
|
|
|
|
return FGIMG;
|
|
|
|
} else if (name == "fgimg_hovered") {
|
|
|
|
return FGIMG_HOVERED;
|
|
|
|
} else if (name == "fgimg_pressed") {
|
|
|
|
return FGIMG_PRESSED;
|
2019-03-16 22:38:36 +01:00
|
|
|
} else if (name == "alpha") {
|
|
|
|
return ALPHA;
|
2019-03-15 20:03:12 +01:00
|
|
|
} else {
|
|
|
|
return NONE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-16 22:38:36 +01:00
|
|
|
std::string get(Property prop, std::string def) const
|
|
|
|
{
|
|
|
|
const auto &val = properties[prop];
|
|
|
|
return val.empty() ? def : val;
|
2019-03-15 20:03:12 +01:00
|
|
|
}
|
|
|
|
|
2019-03-16 22:38:36 +01:00
|
|
|
void set(Property prop, const std::string &value)
|
|
|
|
{
|
|
|
|
properties[prop] = value;
|
|
|
|
property_set[prop] = true;
|
2019-03-15 20:03:12 +01:00
|
|
|
}
|
|
|
|
|
2019-03-16 22:38:36 +01:00
|
|
|
video::SColor getColor(Property prop, video::SColor def) const
|
|
|
|
{
|
|
|
|
const auto &val = properties[prop];
|
|
|
|
if (val.empty()) {
|
2019-03-15 20:03:12 +01:00
|
|
|
return def;
|
|
|
|
}
|
|
|
|
|
2019-03-16 22:38:36 +01:00
|
|
|
parseColorString(val, def, false, 0xFF);
|
2019-03-15 20:03:12 +01:00
|
|
|
return def;
|
|
|
|
}
|
|
|
|
|
2019-03-16 22:38:36 +01:00
|
|
|
video::SColor getColor(Property prop) const
|
|
|
|
{
|
|
|
|
const auto &val = properties[prop];
|
|
|
|
FATAL_ERROR_IF(val.empty(), "Unexpected missing property");
|
2019-03-15 20:03:12 +01:00
|
|
|
|
|
|
|
video::SColor color;
|
2019-03-16 22:38:36 +01:00
|
|
|
parseColorString(val, color, false, 0xFF);
|
2019-03-15 20:03:12 +01:00
|
|
|
return color;
|
|
|
|
}
|
|
|
|
|
2019-12-09 21:06:51 +01:00
|
|
|
video::ITexture *getTexture(Property prop, ISimpleTextureSource *tsrc,
|
|
|
|
video::ITexture *def) const
|
|
|
|
{
|
|
|
|
const auto &val = properties[prop];
|
|
|
|
if (val.empty()) {
|
|
|
|
return def;
|
|
|
|
}
|
|
|
|
|
|
|
|
video::ITexture *texture = tsrc->getTexture(val);
|
|
|
|
|
|
|
|
return texture;
|
|
|
|
}
|
|
|
|
|
|
|
|
video::ITexture *getTexture(Property prop, ISimpleTextureSource *tsrc) const
|
|
|
|
{
|
|
|
|
const auto &val = properties[prop];
|
|
|
|
FATAL_ERROR_IF(val.empty(), "Unexpected missing property");
|
|
|
|
|
|
|
|
video::ITexture *texture = tsrc->getTexture(val);
|
|
|
|
|
|
|
|
return texture;
|
|
|
|
}
|
|
|
|
|
2019-03-16 22:38:36 +01:00
|
|
|
bool getBool(Property prop, bool def) const
|
|
|
|
{
|
|
|
|
const auto &val = properties[prop];
|
|
|
|
if (val.empty()) {
|
|
|
|
return def;
|
|
|
|
}
|
|
|
|
|
|
|
|
return is_yes(val);
|
|
|
|
}
|
|
|
|
|
|
|
|
inline bool isNotDefault(Property prop) const
|
|
|
|
{
|
|
|
|
return !properties[prop].empty();
|
2019-03-15 20:03:12 +01:00
|
|
|
}
|
|
|
|
|
2019-03-16 22:38:36 +01:00
|
|
|
inline bool hasProperty(Property prop) const { return property_set[prop]; }
|
|
|
|
|
|
|
|
StyleSpec &operator|=(const StyleSpec &other)
|
|
|
|
{
|
|
|
|
for (size_t i = 0; i < NUM_PROPERTIES; i++) {
|
2019-03-15 20:03:12 +01:00
|
|
|
auto prop = (Property)i;
|
|
|
|
if (other.hasProperty(prop)) {
|
2019-03-16 22:38:36 +01:00
|
|
|
set(prop, other.get(prop, ""));
|
2019-03-15 20:03:12 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
2019-03-16 22:38:36 +01:00
|
|
|
StyleSpec operator|(const StyleSpec &other) const
|
|
|
|
{
|
2019-03-15 20:03:12 +01:00
|
|
|
StyleSpec newspec = *this;
|
|
|
|
newspec |= other;
|
|
|
|
return newspec;
|
|
|
|
}
|
|
|
|
};
|