]> git.tdb.fi Git - libs/gl.git/blob - source/vertexarray.h
Add append() method and and operator[] to VertexArray
[libs/gl.git] / source / vertexarray.h
1 /* $Id$
2
3 This file is part of libmspgl
4 Copyright © 2007  Mikko Rasa, Mikkosoft Productions
5 Distributed under the LGPL
6 */
7
8 #ifndef MSP_GL_VERTEXARRAY_H_
9 #define MSP_GL_VERTEXARRAY_H_
10
11 #include <vector>
12 #include <msp/core/refptr.h>
13 #include <msp/datafile/loader.h>
14 #include "primitivetype.h"
15 #include "types.h"
16 #include "vertexarraybuilder.h"
17 #include "vertexformat.h"
18
19 namespace Msp {
20 namespace GL {
21
22 class VertexBuffer;
23
24 class VertexArray
25 {
26 public:
27         class Loader: public DataFile::Loader, public VertexArrayBuilder
28         {
29         public:
30                 Loader(VertexArray &);
31         };
32
33 private:
34         VertexFormat format;
35         std::vector<float> data;
36         uint         stride;
37         VertexBuffer *vbuf;
38         bool         own_vbuf;
39
40         VertexArray(const VertexArray &);
41         VertexArray &operator=(const VertexArray &);
42 public:
43         VertexArray(VertexFormat);
44         ~VertexArray();
45
46         VertexFormat get_format() const { return format; }
47         const std::vector<float> &get_data() const { return data; }
48         void         use_vertex_buffer();
49         void         use_vertex_buffer(VertexBuffer *);
50         void         reserve(unsigned);
51         unsigned     size() const { return data.size()/stride; }
52         void         clear();
53         void         reset(VertexFormat);
54         void         apply() const;
55         void         update_data();
56         float        *append();
57         float        *operator[](unsigned i) { return &data[0]+i*stride; }
58         const float  *operator[](unsigned i) const { return &data[0]+i*stride; }
59 private:
60         void set_array(unsigned, unsigned, unsigned) const;
61
62         static unsigned enabled_arrays;
63 };
64
65 } // namespace GL
66 } // namespace Msp
67
68 #endif