X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Flighting.cpp;h=515733a6b253e13a69f2b8a117680a73f487e6cf;hb=47af19a447e6c13257ca2d0aef606ea45f8a0d98;hp=6b6af57cc1f84a337acc227a5165265f41b79bf8;hpb=efe80f5a696b4a3be2378dc6d635c89676afa12d;p=libs%2Fgl.git diff --git a/source/lighting.cpp b/source/lighting.cpp index 6b6af57c..515733a6 100644 --- a/source/lighting.cpp +++ b/source/lighting.cpp @@ -1,14 +1,11 @@ -/* $Id$ - -This file is part of libmspgl -Copyright © 2008 Mikko Rasa, Mikkosoft Productions -Distributed under the LGPL -*/ - +#include #include "light.h" #include "lighting.h" +#include "lightunit.h" #include "misc.h" +using namespace std; + namespace Msp { namespace GL { @@ -18,15 +15,20 @@ Lighting::Lighting(): void Lighting::set_ambient(const Color &a) { - ambient=a; + ambient = a; } void Lighting::attach(unsigned i, const Light &l) { + if(i>=LightUnit::get_n_units()) + throw out_of_range("Lighting::attach"); + if(i>=lights.size()) lights.resize(i+1); - lights[i]=&l; + lights[i] = &l; + if(current()==this) + l.bind_to(i); } void Lighting::detach(unsigned i) @@ -34,38 +36,43 @@ void Lighting::detach(unsigned i) if(i>=lights.size()) return; - lights[i]=0; + lights[i] = 0; + if(current()==this) + Light::unbind_from(i); +} + +void Lighting::update_shader_data(const Matrix &view_matrix) +{ + shdata.uniform("ambient_color", ambient); + for(unsigned i=0; iupdate_shader_data(shdata, view_matrix, i); } void Lighting::bind() const { - if(current!=this) - { - enable(LIGHTING); - glLightModelfv(GL_LIGHT_MODEL_AMBIENT, &ambient.r); - for(unsigned i=0; ibind_to(i); - current=this; - } + if(!set_current(this)) + return; + + enable(GL_LIGHTING); + glLightModelfv(GL_LIGHT_MODEL_AMBIENT, &ambient.r); + for(unsigned i=0; ibind_to(i); } void Lighting::unbind() { - if(current) - { - for(unsigned i=0; ilights.size(); ++i) - if(current->lights[i]) - { - Light::activate(i); - Light::unbind(); - } - disable(LIGHTING); - current=0; - } -} + const Lighting *old = current(); + if(!set_current(0)) + return; + + for(unsigned i=0; ilights.size(); ++i) + if(old->lights[i]) + Light::unbind_from(i); -const Lighting *Lighting::current=0; + disable(GL_LIGHTING); +} } // namespace GL } // namespace Msp