X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Frenderpass.cpp;h=b0289284033f4935066db0aafdcb07638dc9c2f2;hb=9846a5c6e73b3a146084894a11550dbbf184a22a;hp=06726086bffd9067c6c88332ca8db52c01efa12f;hpb=745b3030d7fa32c1f6be29548f978af640eb4021;p=libs%2Fgl.git diff --git a/source/renderpass.cpp b/source/renderpass.cpp index 06726086..b0289284 100644 --- a/source/renderpass.cpp +++ b/source/renderpass.cpp @@ -1,113 +1,61 @@ -/* $Id$ - -This file is part of libmspgl -Copyright © 2007 Mikko Rasa, Mikkosoft Productions -Distributed under the LGPL -*/ - -#include #include -#include +#include +#include "error.h" #include "material.h" #include "renderpass.h" #include "program.h" #include "programdata.h" +#include "texenv.h" #include "texture.h" +#include "texture2d.h" +#include "texturing.h" using namespace std; namespace Msp { namespace GL { -const RenderPass *RenderPass::current=0; - RenderPass::RenderPass(): shprog(0), shdata(0), - own_material(false), - material(0) + material(0), + texturing(0) { } RenderPass::RenderPass(const RenderPass &other): shprog(other.shprog), shdata(other.shdata ? new ProgramData(*other.shdata) : 0), - own_material(other.own_material), - material(own_material ? new Material(*other.material) : other.material), - textures(other.textures) + material(other.material), + texturing(other.texturing ? new Texturing(*other.texturing) : 0), + tex_names(other.tex_names) { } RenderPass::~RenderPass() { delete shdata; - if(own_material) - delete material; + delete texturing; } void RenderPass::set_material(const Material *mat) { - material=mat; -} - -unsigned RenderPass::get_texture_index(const string &slot) const -{ - for(unsigned i=0; ibind(); - shdata->apply(); - } - else if(old && !old->shprog) - GL::Program::unbind(); - - if(material) - material->bind(); - else if(old && !old->material) - GL::Material::unbind(); - - for(unsigned i=0; ibind_to(i); - if(old) - { - for(unsigned i=textures.size(); itextures.size(); ++i) - GL::Texture::unbind_from(i); - } + texturing->attach(index, *tex); } -void RenderPass::unbind() +int RenderPass::get_texture_index(const string &n) const { - if(current) - { - if(current->shprog) - GL::Program::unbind(); - - if(current->material) - GL::Material::unbind(); - - for(unsigned i=current->textures.size(); i--; ) - GL::Texture::unbind_from(i); - - current=0; - } + map::const_iterator i = tex_names.find(n); + if(i==tex_names.end()) + return -1; + return i->second; } @@ -125,69 +73,89 @@ RenderPass::Loader::Loader(RenderPass &p, Collection &c): void RenderPass::Loader::init() { - allow_pointer_reload=false; - add("shader", &RenderPass::shprog); + add("material", &Loader::material_inline); add("material", &Loader::material); - add("material", &RenderPass::material); - add("texture", &Loader::texture); + add("texunit", &Loader::texunit); + add("texunit", &Loader::texunit_named); add("uniforms", &Loader::uniforms); } -void RenderPass::Loader::finish() +void RenderPass::Loader::material_inline() { - if(obj.shprog) - { - if(!obj.shdata) - obj.shdata=new ProgramData; - - for(unsigned i=0; iget_uniform_location(obj.textures[i].name); - obj.shdata->uniform(loc, static_cast(i)); - } - } + RefPtr mat = new Material; + load_sub(*mat); + obj.material = mat; } -void RenderPass::Loader::material() +void RenderPass::Loader::material(const string &name) { - if(obj.material) - throw InvalidState("A material is already loaded"); + obj.material = &get_collection().get(name); + obj.material.keep(); +} - RefPtr mat=new Material; - load_sub(*mat); - obj.material=mat.release(); - obj.own_material=true; +void RenderPass::Loader::texunit(unsigned i) +{ + if(!obj.texturing) + obj.texturing = new Texturing; + TextureLoader ldr(*obj.texturing, i, coll); + load_sub_with(ldr); } -void RenderPass::Loader::texture(const string &n) +void RenderPass::Loader::texunit_named(unsigned i, const string &n) { - const Texture *tex=(n.empty() ? 0 : get_collection().get(n)); - TextureSlot slot(tex); - slot.name=(obj.textures.empty() ? "texture" : format("texture%d", obj.textures.size())); - load_sub(slot); - obj.textures.push_back(slot); + texunit(i); + obj.tex_names[n] = i; } void RenderPass::Loader::uniforms() { if(!obj.shprog) - throw InvalidState("Can't load uniforms without a shader program"); + throw invalid_operation("RenderPass::Loader::uniforms"); if(!obj.shdata) - obj.shdata=new ProgramData; - load_sub(*obj.shdata, *obj.shprog); + obj.shdata = new ProgramData; + load_sub(*obj.shdata); } -RenderPass::TextureSlot::TextureSlot(const Texture *t): - texture(t) -{ } +RenderPass::TextureLoader::TextureLoader(Texturing &t, unsigned i, Collection *c): + DataFile::CollectionObjectLoader(t, c), + index(i) +{ + add("texture", &TextureLoader::texture); + add("texture2d", &TextureLoader::texture2d); +} +void RenderPass::TextureLoader::finish() +{ + if(tex) + { + if(env) + obj.attach(index, *tex, *env); + else + obj.attach(index, *tex); + tex.release(); + env.release(); + } +} + +void RenderPass::TextureLoader::texenv() +{ + throw runtime_error("TexEnvs can't be loaded yet"); + /*env = new TexEnv; + load_sub(*env);*/ +} + +void RenderPass::TextureLoader::texture(const string &name) +{ + tex = &get_collection().get(name); + tex.keep(); +} -RenderPass::TextureSlot::Loader::Loader(TextureSlot &s): - DataFile::ObjectLoader(s) +void RenderPass::TextureLoader::texture2d() { - add("name", &TextureSlot::name); + tex = new Texture2D; + load_sub(static_cast(*tex)); } } // namespace GL