X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fmaterial.cpp;h=b0f62bbc5fbef9f1d07b7bcfd4b688135394c32e;hb=4af69ec90120a0be828a1ae475a38674087110b5;hp=25c21ff21988b3aed6a00419cb4dcc9ec2450a9f;hpb=4c89817d6e060323ec1ddd275f3265cea688c650;p=libs%2Fgl.git diff --git a/source/material.cpp b/source/material.cpp index 25c21ff2..b0f62bbc 100644 --- a/source/material.cpp +++ b/source/material.cpp @@ -1,55 +1,57 @@ -/* $Id$ +#include "basicmaterial.h" +#include "gl.h" +#include "resources.h" +#include "texturing.h" +#include "uniform.h" -This file is part of libmspgl -Copyright © 2007 Mikko Rasa, Mikkosoft Productions -Distributed under the LGPL -*/ - -#include "material.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) +void Material::attach_texture_to(const Texture *tex, Texturing &texturing, ProgramData &tex_shdata, const string &name) const { - ambient=a; -} + if(!tex) + return; -void Material::set_diffuse(const Color &d) -{ - diffuse=d; -} + int unit = -1; -void Material::set_specular(const Color &s) -{ - specular=s; + 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"); + + texturing.attach(unit, *tex); + tex_shdata.uniform(name, unit); } -void Material::set_emission(const Color &e) +Material::MaterialRegistry &Material::get_material_registry() { - emission=e; + static MaterialRegistry registry; + static bool initialized = false; + if(!initialized) + { + registry.register_type("basic"); + } + return registry; } -void Material::set_shininess(float s) + +DataFile::Loader::ActionMap Material::GenericLoader::shared_actions; + +Material::GenericLoader::GenericLoader(DataFile::Collection *c): + coll(c) { - shininess=s; + set_actions(shared_actions); } -void Material::apply() +void Material::GenericLoader::init_actions() { - 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); + get_material_registry().add_all(*this); } } // namespace GL