]> git.tdb.fi Git - libs/gl.git/blobdiff - source/renderpass.h
Drop Id tags and copyright notices from files
[libs/gl.git] / source / renderpass.h
index e2ea4c97175eb6a62e14bfa6ec636a4c63b12b1d..5af733dc8b6ed2961510779621502377a2d8f284 100644 (file)
@@ -1,13 +1,7 @@
-/* $Id$
-
-This file is part of libmspgl
-Copyright © 2007-2008, 2010  Mikko Rasa, Mikkosoft Productions
-Distributed under the LGPL
-*/
-
 #ifndef MSP_GL_RENDERPASS_H_
 #define MSP_GL_RENDERPASS_H_
 
+#include <msp/core/refptr.h>
 #include <msp/datafile/objectloader.h>
 #include "bindable.h"
 
@@ -17,13 +11,17 @@ 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: public Bindable<RenderPass>
+class RenderPass
 {
 public:
        class Loader: public DataFile::CollectionObjectLoader<RenderPass>
@@ -34,33 +32,36 @@ public:
 
        private:
                void init();
-               virtual void finish();
-               void material();
-               void shader(const std::string &);
-               void texture(const std::string &);
+               void material_inline();
+               void material(const std::string &);
+               void texunit(unsigned);
+               void texunit_named(unsigned, const std::string &);
                void uniforms();
        };
 
 private:
-       struct TextureSlot
+       struct TextureLoader: public DataFile::CollectionObjectLoader<Texturing>
        {
-               class Loader: public DataFile::ObjectLoader<TextureSlot>
-               {
-               public:
-                       Loader(TextureSlot &);
-               };
+       private:
+               unsigned index;
+               RefPtr<Texture> tex;
+               RefPtr<TexEnv> 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<TextureSlot> textures;
+       RefPtr<const Material> material;
+       Texturing *texturing;
+       std::map<std::string, unsigned> tex_names;
 
        RenderPass &operator=(const RenderPass &);
 public:
@@ -68,13 +69,13 @@ 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; }
+       int get_texture_index(const std::string &) const;
 };
 
 } // namespace GL