X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fstyle.cpp;h=a339c0cb2bd913f2e336228cd0fb3fd2c63afb36;hb=81c4024fb6acf37df702a803dc4efdf82a81525a;hp=da772dc8d21051148ff1aa22f372e3a6590812cc;hpb=5e8285302c1d04b631682a82d56c5afc46d20ad5;p=libs%2Fgltk.git diff --git a/source/style.cpp b/source/style.cpp index da772dc..a339c0c 100644 --- a/source/style.cpp +++ b/source/style.cpp @@ -1,3 +1,4 @@ +#include #include "resources.h" #include "style.h" @@ -6,11 +7,6 @@ using namespace std; namespace Msp { namespace GLtk { -Style::Style(): - font(0), - font_size(0) -{ } - const GL::Font &Style::get_font() const { if(!font) @@ -18,13 +14,42 @@ const GL::Font &Style::get_font() const return *font; } +const GL::Color &Style::get_font_color(State s) const +{ + if(s>=N_STATES_) + throw invalid_argument("Style::get_font_color"); + + return font_color[s]; +} + +const GL::Sampler &Style::get_sampler() const +{ + if(!sampler) + throw logic_error("!sampler"); + return *sampler; +} + const Part *Style::get_part(const string &name) const { - for(PartSeq::const_iterator i=parts.begin(); i!=parts.end(); ++i) - if(i->get_name()==name) - return &*i; + auto i = find_if(parts, [&name](const Part &p){ return p.get_name()==name; }); + return (i!=parts.end() ? &*i : nullptr); +} + +bool Style::compare_states(State s1, State s2) const +{ + if(s1>=N_STATES_ || s2>=N_STATES_) + throw invalid_argument("Style::compare_states"); + + const GL::Color &c1 = font_color[s1]; + const GL::Color &c2 = font_color[s2]; + if(c1.r!=c2.r || c1.g!=c2.g || c1.b!=c2.b) + return true; - return 0; + for(const Part &p: parts) + if(p.get_graphic(s1)!=p.get_graphic(s2)) + return true; + + return false; } @@ -36,14 +61,16 @@ Style::Loader::Loader(Style &s, Resources &r): obj.font = &get_collection().get_default_font(); obj.font_size = obj.font->get_native_size(); } + if(!obj.sampler) + obj.sampler = &get_collection().get("linear_clamp.samp"); add("font", &Loader::font); + add("font_color", &Loader::font_color_normal); add("font_color", &Loader::font_color); add("font_size", &Style::font_size); - add("part", static_cast(&Loader::part)); - add("part", static_cast(&Loader::part)); - // Deprecated alias - add("special", static_cast(&Loader::part)); + add("part", &Loader::part); + add("part", &Loader::unnamed_part); + add("sampler", &Style::sampler); } void Style::Loader::font(const string &n) @@ -52,14 +79,16 @@ void Style::Loader::font(const string &n) obj.font_size = obj.font->get_native_size(); } -void Style::Loader::font_color(float r, float g, float b) +void Style::Loader::font_color_normal(float r, float g, float b) { - obj.font_color = GL::Color(r, g, b); + font_color(NORMAL, r, g, b); } -void Style::Loader::part() +void Style::Loader::font_color(State s, float r, float g, float b) { - part(string()); + for(unsigned i=0; i