X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Frenderpass.h;h=5c1b84520db58ef8d38e894066de2f8f56a2b1f5;hb=5172d32d67595ea0b70184fadcfcb8e023cccbc8;hp=223f57dc410c9dedd5264cd554a0004cefb53a4d;hpb=97015ec7bddd26aa746f5227e4109b7d32438cca;p=libs%2Fgl.git diff --git a/source/renderpass.h b/source/renderpass.h index 223f57dc..5c1b8452 100644 --- a/source/renderpass.h +++ b/source/renderpass.h @@ -1,14 +1,16 @@ /* $Id$ This file is part of libmspgl -Copyright © 2007-2008, 2010 Mikko Rasa, Mikkosoft Productions +Copyright © 2007-2008, 2010-2011 Mikko Rasa, Mikkosoft Productions Distributed under the LGPL */ #ifndef MSP_GL_RENDERPASS_H_ #define MSP_GL_RENDERPASS_H_ +#include #include +#include "bindable.h" namespace Msp { namespace GL { @@ -16,11 +18,15 @@ namespace GL { class Material; class Program; class ProgramData; +class TexEnv; class Texture; +class Texturing; /** Encapsulates the data that determines the appearance of a rendered surface. -This includes shader and data for it, material and textures. +This includes shader and data for it, material and texturing. + +XXX Does not delete inline texture from datafiles properly */ class RenderPass { @@ -28,38 +34,39 @@ public: class Loader: public DataFile::CollectionObjectLoader { public: + Loader(RenderPass &); Loader(RenderPass &, Collection &); private: - virtual void finish(); - void material(); - void shader(const std::string &); - void texture(const std::string &); + void init(); + void material_inline(); + void material(const std::string &); + void texunit(unsigned); void uniforms(); }; private: - struct TextureSlot + struct TextureLoader: public DataFile::CollectionObjectLoader { - class Loader: public DataFile::ObjectLoader - { - public: - Loader(TextureSlot &); - }; + private: + unsigned index; + RefPtr tex; + RefPtr env; - const Texture *texture; - std::string name; + public: + TextureLoader(Texturing &, unsigned, Collection *); + private: + virtual void finish(); - TextureSlot(const Texture *); + void texenv(); + void texture(const std::string &); + void texture2d(); }; Program *shprog; ProgramData *shdata; - bool own_material; - const Material *material; - std::vector textures; - - static const RenderPass *current; + RefPtr material; + Texturing *texturing; RenderPass &operator=(const RenderPass &); public: @@ -67,13 +74,12 @@ public: RenderPass(const RenderPass &); ~RenderPass(); + const Program *get_shader_program() const { return shprog; } + const ProgramData *get_shader_data() const { return shdata; } void set_material(const Material *); - unsigned get_texture_index(const std::string &) const; - void set_texture(const std::string &, const Texture *); - - void bind() const; - - static void unbind(); + const Material *get_material() const { return material.get(); } + void set_texture(unsigned, const Texture *); + const Texturing *get_texturing() const { return texturing; } }; } // namespace GL