]> git.tdb.fi Git - libs/gl.git/blobdiff - source/vertexarray.cpp
Complete rewrite of extension handling
[libs/gl.git] / source / vertexarray.cpp
index 6d6699020334655edf2f7a899d3636572ee6071e..13816a13fc04caf572559d592cd91ad2fe3ccdd0 100644 (file)
@@ -1,54 +1,43 @@
-/* $Id$
-
-This file is part of libmspgl
-Copyright © 2007-2010  Mikko Rasa, Mikkosoft Productions
-Distributed under the LGPL
-*/
-
-#include "arb_vertex_program.h"
-#include "extension.h"
+#include "arb_multitexture.h"
+#include "arb_vertex_shader.h"
+#include "buffer.h"
+#include "error.h"
 #include "gl.h"
-#include "version_1_2.h"
 #include "vertexarray.h"
-#include "vertexbuffer.h"
 
 using namespace std;
 
 namespace Msp {
 namespace GL {
 
+VertexArray::ArrayMask VertexArray::enabled_arrays;
+
 VertexArray::VertexArray(const VertexFormat &f):
-       vbuf(0),
-       own_vbuf(false)
+       defer_vbuf(true),
+       dirty(false)
 {
        reset(f);
 }
 
 VertexArray::~VertexArray()
-{
-       if(own_vbuf)
-               delete vbuf;
-}
+{ }
 
 void VertexArray::use_vertex_buffer()
 {
-       if(vbuf && own_vbuf)
+       if(vbuf)
                return;
 
        vbuf = new Buffer(ARRAY_BUFFER);
-       own_vbuf = true;
-
-       update_data();
+       defer_vbuf = false;
+       dirty = true;
 }
 
 void VertexArray::use_vertex_buffer(Buffer *b)
 {
-       if(own_vbuf)
-               delete vbuf;
        vbuf = b;
-       own_vbuf = false;
-
-       update_data();
+       vbuf.keep();
+       defer_vbuf = false;
+       dirty = true;
 }
 
 void VertexArray::reserve(unsigned n)
@@ -77,20 +66,27 @@ void VertexArray::reset(const VertexFormat &f)
                        has_gen_attrs = true;
        }
        if(has_multitex)
-               static RequireVersion _ver(1, 3);
+               static Require _req(ARB_multitexture);
        if(has_gen_attrs)
-               static RequireExtension _ext("GL_ARB_vertex_program");
+               static Require _req(ARB_vertex_shader);
 }
 
 void VertexArray::apply() const
 {
        if(format.empty())
-               throw InvalidState("Trying to apply a vertex array with no data");
+               throw invalid_operation("VertexArray::apply");
 
        if(vbuf)
-               vbuf->bind();
+       {
+               vbuf->bind_to(ARRAY_BUFFER);
+               if(dirty)
+               {
+                       vbuf->data(data.size()*sizeof(float), &data[0]);
+                       dirty = false;
+               }
+       }
 
-       const float *base = vbuf?0:&data[0];
+       const float *base = (vbuf ? 0 : &data[0]);
        unsigned offset = 0;
        ArrayMask found;
        unsigned bpv = stride*sizeof(float);
@@ -134,9 +130,9 @@ void VertexArray::apply() const
                        }
                        else
                        {
-                               glVertexAttribPointerARB(t-11, sz, GL_FLOAT, false, bpv, base+offset);
+                               glVertexAttribPointer(t-11, sz, GL_FLOAT, false, bpv, base+offset);
                                if(!en)
-                                       glEnableVertexAttribArrayARB(t-11);
+                                       glEnableVertexAttribArray(t-11);
                        }
                        break;
                }
@@ -158,9 +154,10 @@ void VertexArray::apply() const
                                if(i>3 || active_tex)
                                        glClientActiveTexture(GL_TEXTURE0+(i-3));
                                glDisableClientState(GL_TEXTURE_COORD_ARRAY);
+                               active_tex = i-3;
                        }
                        else
-                               glDisableVertexAttribArrayARB(i-11);
+                               glDisableVertexAttribArray(i-11);
                }
 
        enabled_arrays = found;
@@ -169,28 +166,31 @@ void VertexArray::apply() const
                glClientActiveTexture(GL_TEXTURE0);
 
        if(vbuf)
-               vbuf->unbind();
+               Buffer::unbind_from(ARRAY_BUFFER);
 }
 
-/**
-Updates the VertexArray data to the VertexBuffer tied to the array, if any.
-*/
-void VertexArray::update_data()
+float *VertexArray::append()
 {
-       if(vbuf)
-       {
-               vbuf->data(data.size()*sizeof(float), &data[0]);
-               vbuf->unbind();
-       }
+       data.insert(data.end(), stride, 0.0f);
+       set_dirty();
+       return &*(data.end()-stride);
 }
 
-float *VertexArray::append()
+float *VertexArray::modify(unsigned i)
 {
-       data.insert(data.end(), stride, 0.0f);
-       return &*data.end()-stride;
+       set_dirty();
+       return &data[0]+i*stride;
 }
 
-VertexArray::ArrayMask VertexArray::enabled_arrays;
+void VertexArray::set_dirty()
+{
+       dirty = true;
+       if(defer_vbuf)
+       {
+               vbuf = new Buffer(ARRAY_BUFFER);
+               defer_vbuf = false;
+       }
+}
 
 
 VertexArray::ArrayMask::ArrayMask()
@@ -221,6 +221,10 @@ VertexArray::Loader::Loader(VertexArray &a):
        add("texcoord2", static_cast<void (Loader::*)(float, float)>(&Loader::texcoord));
        add("texcoord3", static_cast<void (Loader::*)(float, float, float)>(&Loader::texcoord));
        add("texcoord4", static_cast<void (Loader::*)(float, float, float, float)>(&Loader::texcoord));
+       add("multitexcoord1", static_cast<void (Loader::*)(unsigned, float)>(&Loader::multitexcoord));
+       add("multitexcoord2", static_cast<void (Loader::*)(unsigned, float, float)>(&Loader::multitexcoord));
+       add("multitexcoord3", static_cast<void (Loader::*)(unsigned, float, float, float)>(&Loader::multitexcoord));
+       add("multitexcoord4", static_cast<void (Loader::*)(unsigned, float, float, float, float)>(&Loader::multitexcoord));
        add("color3",    static_cast<void (Loader::*)(float, float, float)>(&Loader::color));
        add("color4",    static_cast<void (Loader::*)(float, float, float, float)>(&Loader::color));
        add("attrib1",   static_cast<void (Loader::*)(unsigned, float)>(&Loader::attrib));
@@ -229,27 +233,5 @@ VertexArray::Loader::Loader(VertexArray &a):
        add("attrib4",   static_cast<void (Loader::*)(unsigned, float, float, float, float)>(&Loader::attrib));
 }
 
-
-void array_element(int i)
-{
-       glArrayElement(i);
-}
-
-void draw_arrays(PrimitiveType mode, int first, unsigned count)
-{
-       glDrawArrays(mode, first, count);
-}
-
-void draw_elements(PrimitiveType mode, unsigned count, DataType type, const void *indices)
-{
-       glDrawElements(mode, count, type, indices);
-}
-
-void draw_range_elements(PrimitiveType mode, unsigned low, unsigned high, unsigned count, DataType type, const void *indices)
-{
-       static RequireVersion _ver(1, 2);
-       glDrawRangeElements(mode, low, high, count, type, indices);
-}
-
 } // namespace GL
 } // namespace Msp