X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fmaterial.cpp;h=9109b786ecb4d414a3d455c57fe6421a06a7d314;hb=f7d6481be3511153ded018e119bcac852faa0766;hp=feb97bfa14b9d66023d52487803d7b15df2ccd2f;hpb=99ffd618b531395fe369b33fb029855d57547365;p=libs%2Fgl.git diff --git a/source/material.cpp b/source/material.cpp index feb97bfa..9109b786 100644 --- a/source/material.cpp +++ b/source/material.cpp @@ -1,148 +1,88 @@ +#include +#include +#include "basicmaterial.h" #include "gl.h" -#include "material.h" +#include "pbrmaterial.h" #include "resources.h" +#include "texturing.h" +#include "uniform.h" + +using namespace std; namespace Msp { namespace GL { -Material::Material() -{ - set_ambient(0.2); - set_diffuse(0.8); - set_specular(0); - set_emission(0); - set_shininess(0); - set_reflectivity(0); -} - -void Material::update_parameter(int mask) const -{ - 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); -} - -void Material::set_ambient(const Color &a) -{ - ambient = a; - shdata.uniform("material.ambient", ambient); - update_parameter(AMBIENT); -} - -void Material::set_diffuse(const Color &d) -{ - diffuse = d; - shdata.uniform("material.diffuse", diffuse); - update_parameter(DIFFUSE); -} - -void Material::set_specular(const Color &s) -{ - specular = s; - shdata.uniform("material.specular", specular); - update_parameter(SPECULAR); -} - -void Material::set_emission(const Color &e) +Program *Material::create_compatible_shader() const { - emission = e; - shdata.uniform("material.emission", emission); - update_parameter(EMISSION); + return new Program(create_program_source()); } -void Material::set_shininess(float s) +const Program *Material::create_compatible_shader(DataFile::Collection &coll) const { - shininess = s; - shdata.uniform("material.shininess", shininess); - update_parameter(SHININESS); -} + string source = create_program_source(); + string name = format("_material_%016x.glsl", hash64(source)); + Program *shprog = coll.find(name); + if(shprog) + return shprog; -void Material::set_reflectivity(float r) -{ - reflectivity = r; - shdata.uniform("reflectivity", reflectivity); -} + shprog = new Program(create_program_source()); + try + { + coll.add(name, shprog); + } + catch(...) + { + delete shprog; + throw; + } -void Material::bind() const -{ - if(set_current(this)) - update_parameter(-1); + return shprog; } - -Material::Loader::Loader(Material &m): - DataFile::CollectionObjectLoader(m, 0) +void Material::attach_texture_to(const Texture *tex, Texturing &texturing, ProgramData &tex_shdata, const string &name) const { - init(); -} + if(!tex) + return; -Material::Loader::Loader(Material &m, Collection &c): - DataFile::CollectionObjectLoader(m, &c) -{ - init(); -} + int unit = -1; -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", &Loader::shininess); - add("reflectivity", &Loader::reflectivity); -} + if(const Uniform *uni = tex_shdata.find_uniform(name)) + if(const Uniform1i *uni_int = dynamic_cast(uni)) + unit = uni_int->get(); -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; -} + if(unit<0) + unit = texturing.find_free_unit(name); + if(unit<0) + throw runtime_error("no free texunit"); -void Material::Loader::ambient(float r, float g, float b, float a) -{ - obj.set_ambient(make_color(r, g, b, a)); + texturing.attach(unit, *tex); + tex_shdata.uniform(name, unit); } -void Material::Loader::diffuse(float r, float g, float b, float a) +Material::MaterialRegistry &Material::get_material_registry() { - obj.set_diffuse(make_color(r, g, b, a)); + static MaterialRegistry registry; + static bool initialized = false; + if(!initialized) + { + registry.register_type("basic"); + registry.register_type("pbr"); + } + return registry; } -void Material::Loader::specular(float r, float g, float b, float a) -{ - obj.set_specular(make_color(r, g, b, a)); -} -void Material::Loader::emission(float r, float g, float b, float a) -{ - obj.set_emission(make_color(r, g, b, a)); -} +DataFile::Loader::ActionMap Material::GenericLoader::shared_actions; -void Material::Loader::shininess(float s) +Material::GenericLoader::GenericLoader(DataFile::Collection *c): + coll(c) { - obj.set_shininess(s); + set_actions(shared_actions); } -void Material::Loader::reflectivity(float r) +void Material::GenericLoader::init_actions() { - obj.set_reflectivity(r); + get_material_registry().add_all(*this); } } // namespace GL