X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fmaterial.cpp;h=1d5a4087af2b3b8f6c9db232792c7eff45732a1c;hb=c1e297b01f07be122e9909a1ae9c04f0c51dfc21;hp=d6e21683d2a7f3b8fb08498b269419d386d7d9d7;hpb=126161d1d44ab9503bc747d24a07b7b9d15e527a;p=libs%2Fgl.git diff --git a/source/material.cpp b/source/material.cpp index d6e21683..1d5a4087 100644 --- a/source/material.cpp +++ b/source/material.cpp @@ -1,99 +1,120 @@ #include "gl.h" #include "material.h" +#include "resources.h" namespace Msp { namespace GL { -Material::Material(): - ambient(0.2), - diffuse(0.8), - specular(0), - emission(0), - shininess(0) -{ } - -void Material::update_parameter(int mask) const +Material::Material() { - if(cur_obj!=this) - return; - - if(mask&AMBIENT) - glMaterialfv(GL_FRONT_AND_BACK, GL_AMBIENT, &ambient.r); - if(mask&DIFFUSE) - glMaterialfv(GL_FRONT_AND_BACK, GL_DIFFUSE, &diffuse.r); - if(mask&SPECULAR) - glMaterialfv(GL_FRONT_AND_BACK, GL_SPECULAR, &specular.r); - if(mask&EMISSION) - glMaterialfv(GL_FRONT_AND_BACK, GL_EMISSION, &emission.r); - if(mask&SHININESS) - glMaterialf(GL_FRONT_AND_BACK, GL_SHININESS, shininess); + set_ambient(0.2); + set_diffuse(0.8); + set_specular(0); + set_emission(0); + set_shininess(0); + set_reflectivity(0); } void Material::set_ambient(const Color &a) { ambient = a; - update_parameter(AMBIENT); + shdata.uniform("material.ambient", ambient); } void Material::set_diffuse(const Color &d) { diffuse = d; - update_parameter(DIFFUSE); + shdata.uniform("material.diffuse", diffuse); } void Material::set_specular(const Color &s) { specular = s; - update_parameter(SPECULAR); + shdata.uniform("material.specular", specular); } void Material::set_emission(const Color &e) { emission = e; - update_parameter(EMISSION); + shdata.uniform("material.emission", emission); } void Material::set_shininess(float s) { shininess = s; - update_parameter(SHININESS); + shdata.uniform("material.shininess", shininess); } -void Material::bind() const +void Material::set_reflectivity(float r) { - if(set_current(this)) - update_parameter(-1); + reflectivity = r; + shdata.uniform("reflectivity", reflectivity); } Material::Loader::Loader(Material &m): - DataFile::ObjectLoader(m) + DataFile::CollectionObjectLoader(m, 0) +{ + init(); +} + +Material::Loader::Loader(Material &m, Collection &c): + DataFile::CollectionObjectLoader(m, &c) { + init(); +} + +void Material::Loader::init() +{ + if(Resources *res = dynamic_cast(coll)) + srgb = res->get_srgb_conversion(); + else + srgb = false; + add("ambient", &Loader::ambient); add("diffuse", &Loader::diffuse); add("specular", &Loader::specular); add("emission", &Loader::emission); - add("shininess", &Material::shininess); + add("shininess", &Loader::shininess); + add("reflectivity", &Loader::reflectivity); +} + +Color Material::Loader::make_color(float r, float g, float b, float a) +{ + Color c(r, g, b, a); + if(srgb) + c = c.to_linear(); + return c; } void Material::Loader::ambient(float r, float g, float b, float a) { - obj.ambient = GL::Color(r, g, b, a); + obj.set_ambient(make_color(r, g, b, a)); } void Material::Loader::diffuse(float r, float g, float b, float a) { - obj.diffuse = GL::Color(r, g, b, a); + obj.set_diffuse(make_color(r, g, b, a)); } void Material::Loader::specular(float r, float g, float b, float a) { - obj.specular = GL::Color(r, g, b, a); + obj.set_specular(make_color(r, g, b, a)); } void Material::Loader::emission(float r, float g, float b, float a) { - obj.emission = GL::Color(r, g, b, a); + obj.set_emission(make_color(r, g, b, a)); +} + +void Material::Loader::shininess(float s) +{ + obj.set_shininess(s); +} + +void Material::Loader::reflectivity(float r) +{ + obj.set_reflectivity(r); } } // namespace GL