X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fmaterial.cpp;h=ef3662e964d8be98421e6e187256b0f028daa232;hb=fd62e55d37716787fe909883a1b18e5b8128ec80;hp=989bb12e71b7ac51e5fd2223abbc591fa9a72006;hpb=42ace9ac1350d3ae009bdd2fb335ac1e57d1b36b;p=libs%2Fgl.git diff --git a/source/material.cpp b/source/material.cpp index 989bb12e..ef3662e9 100644 --- a/source/material.cpp +++ b/source/material.cpp @@ -1,95 +1,86 @@ -/* $Id$ - -This file is part of libmspgl -Copyright © 2007-2008 Mikko Rasa, Mikkosoft Productions -Distributed under the LGPL -*/ - +#include +#include +#include "basicmaterial.h" #include "gl.h" -#include "material.h" +#include "resources.h" +#include "texturing.h" +#include "uniform.h" + +using namespace std; namespace Msp { namespace GL { -Material::Material(): - ambient(0.2), - diffuse(0.8), - specular(0), - emission(0), - shininess(0) -{ } - -void Material::set_ambient(const Color &a) -{ - ambient = a; -} - -void Material::set_diffuse(const Color &d) +Program *Material::create_compatible_shader() const { - diffuse = d; + return new Program(create_program_source()); } -void Material::set_specular(const Color &s) +const Program *Material::create_compatible_shader(DataFile::Collection &coll) const { - specular = s; -} + string source = create_program_source(); + string name = format("_material_%016x.glsl", hash64(source)); + Program *shprog = coll.find(name); + if(shprog) + return shprog; + + shprog = new Program(create_program_source()); + try + { + coll.add(name, shprog); + } + catch(...) + { + delete shprog; + throw; + } -void Material::set_emission(const Color &e) -{ - emission = e; + return shprog; } -void Material::set_shininess(float s) +void Material::attach_texture_to(const Texture *tex, Texturing &texturing, ProgramData &tex_shdata, const string &name) const { - shininess = s; -} + if(!tex) + return; -void Material::bind() const -{ - if(set_current(this)) - { - glMaterialfv(GL_FRONT_AND_BACK, GL_AMBIENT, &ambient.r); - glMaterialfv(GL_FRONT_AND_BACK, GL_DIFFUSE, &diffuse.r); - glMaterialfv(GL_FRONT_AND_BACK, GL_SPECULAR, &specular.r); - glMaterialfv(GL_FRONT_AND_BACK, GL_EMISSION, &emission.r); - glMaterialf(GL_FRONT_AND_BACK, GL_SHININESS, shininess); - } -} + int unit = -1; -void Material::unbind() -{ - set_current(0); -} + if(const Uniform *uni = tex_shdata.find_uniform(name)) + if(const Uniform1i *uni_int = dynamic_cast(uni)) + unit = uni_int->get(); + if(unit<0) + unit = texturing.find_free_unit(name); + if(unit<0) + throw runtime_error("no free texunit"); -Material::Loader::Loader(Material &m): - DataFile::ObjectLoader(m) -{ - add("ambient", &Loader::ambient); - add("diffuse", &Loader::diffuse); - add("specular", &Loader::specular); - add("emission", &Loader::emission); - add("shininess", &Material::shininess); + texturing.attach(unit, *tex); + tex_shdata.uniform(name, unit); } -void Material::Loader::ambient(float r, float g, float b, float a) +Material::MaterialRegistry &Material::get_material_registry() { - obj.ambient = GL::Color(r, g, b, a); + static MaterialRegistry registry; + static bool initialized = false; + if(!initialized) + { + registry.register_type("basic"); + } + return registry; } -void Material::Loader::diffuse(float r, float g, float b, float a) -{ - obj.diffuse = GL::Color(r, g, b, a); -} -void Material::Loader::specular(float r, float g, float b, float a) +DataFile::Loader::ActionMap Material::GenericLoader::shared_actions; + +Material::GenericLoader::GenericLoader(DataFile::Collection *c): + coll(c) { - obj.specular = GL::Color(r, g, b, a); + set_actions(shared_actions); } -void Material::Loader::emission(float r, float g, float b, float a) +void Material::GenericLoader::init_actions() { - obj.emission = GL::Color(r, g, b, a); + get_material_registry().add_all(*this); } } // namespace GL