X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Flighting.cpp;h=c6207a7673f574d73a01b51dbbb2ec506d383b16;hb=a40fc85277dba5c34402a0e703d038efd30cc57b;hp=108edf16b9ac848d6a2b34323abc60f8b60b9ea5;hpb=2fa1bb084e54af7134b44d3ee7512056e28de67e;p=libs%2Fgl.git diff --git a/source/lighting.cpp b/source/lighting.cpp index 108edf16..c6207a76 100644 --- a/source/lighting.cpp +++ b/source/lighting.cpp @@ -1,10 +1,8 @@ #include #include -#include #include "error.h" #include "light.h" #include "lighting.h" -#include "lightunit.h" #include "matrix.h" #include "misc.h" @@ -71,8 +69,6 @@ void Lighting::attach(unsigned i, const Light &l) lights.resize(i+1); lights[i] = &l; - if(current()==this) - l.bind_to(i); } void Lighting::detach(unsigned i) @@ -81,8 +77,6 @@ void Lighting::detach(unsigned i) return; lights[i] = 0; - if(current()==this) - Light::unbind_from(i); } const Light *Lighting::get_attached_light(unsigned i) const @@ -107,56 +101,6 @@ void Lighting::update_shader_data(ProgramData &shdata, const Matrix &view_matrix lights[i]->update_shader_data(shdata, view_matrix, i); } -void Lighting::bind() const -{ - static Require _req(MSP_legacy_features); - if(lights.size()>LightUnit::get_n_units()) - throw invalid_operation("Lighting::bind"); - - const Lighting *old = current(); - if(!set_current(this)) - return; - - enable(GL_LIGHTING); - glLightModelfv(GL_LIGHT_MODEL_AMBIENT, &ambient.r); - for(unsigned i=0; ibind_to(i); - else - Light::unbind_from(i); - } - - if(old) - { - for(unsigned i=lights.size(); ilights.size(); ++i) - Light::unbind_from(i); - } - - if(fog_density) - { - enable(GL_FOG); - glFogi(GL_FOG_MODE, GL_EXP); - glFogf(GL_FOG_DENSITY, fog_density); - glFogfv(GL_FOG_COLOR, &fog_color.r); - } -} - -void Lighting::unbind() -{ - const Lighting *old = current(); - if(!set_current(0)) - return; - - for(unsigned i=0; ilights.size(); ++i) - if(old->lights[i]) - Light::unbind_from(i); - - disable(GL_LIGHTING); - if(old->fog_density) - disable(GL_FOG); -} - Lighting::Loader::Loader(Lighting &l): DataFile::ObjectLoader(l)