]> git.tdb.fi Git - libs/gl.git/blob - source/vertexbuilder.h
Standard vertex components for tangent and binormal vectors
[libs/gl.git] / source / vertexbuilder.h
1 #ifndef MSP_GL_VERTEXBUILDER_H_
2 #define MSP_GL_VERTEXBUILDER_H_
3
4 #include <map>
5 #include "color.h"
6 #include "matrix.h"
7 #include "vector.h"
8 #include "vertexformat.h"
9
10 namespace Msp {
11 namespace GL {
12
13 /**
14 Base class for classes that build vertices from a series of function calls.
15 The operating model closely follows that of OpenGL immediate mode: vertex
16 attributes can be specified at any time, and when a vertex() function is
17 called, a vertex is created with the active attribute values.
18
19 A derived class must overload the 4-argument vertex_() function to process the
20 data.  Attributes can be read from protected member variables.
21 */
22 class VertexBuilder
23 {
24 protected:
25         MatrixStack mtx;
26         Vector3 nor;
27         Color col;
28         std::map<unsigned, Vector4> texc;
29         std::map<unsigned, Vector4> attr;
30
31 public:
32         VertexBuilder(): nor(0, 0, 1) { }
33
34         virtual ~VertexBuilder() { }
35
36         MatrixStack &matrix()
37         { return mtx; }
38
39         void vertex(float x, float y)
40         { vertex(x, y, 0, 1); }
41
42         void vertex(float x, float y, float z)
43         { vertex(x, y, z, 1); }
44
45         void vertex(float x, float y, float z, float w)
46         { vertex(Vector4(x, y, z, w)); }
47
48         void vertex(const Vector4 &v)
49         { vertex_(mtx.top()*v); }
50
51 protected:
52         virtual void vertex_(const Vector4 &) = 0;
53
54 public:
55         void normal(float x, float y, float z)
56         { normal(Vector3(x, y, z)); }
57
58         void normal(const Vector3 &n)
59         {
60                 Vector4 tn = mtx.top()*Vector4(n.x, n.y, n.z, 0);
61                 nor = Vector3(tn.x, tn.y, tn.z);
62         }
63
64         void tangent(float x, float y, float z)
65         { tangent(Vector3(x, y, z)); }
66
67         void tangent(const Vector3 &t)
68         {
69                 Vector4 tt = mtx.top()*Vector4(t.x, t.y, t.z, 0);
70                 attrib(get_component_type(TANGENT3), tt);
71         }
72
73         void binormal(float x, float y, float z)
74         { binormal(Vector3(x, y, z)); }
75
76         void binormal(const Vector3 &b)
77         {
78                 Vector4 tb = mtx.top()*Vector4(b.x, b.y, b.z, 0);
79                 attrib(get_component_type(BINORMAL3), tb);
80         }
81
82         void texcoord(float s)
83         { texcoord(s, 0, 0, 1); }
84
85         void texcoord(float s, float t)
86         { texcoord(s, t, 0, 1); }
87
88         void texcoord(float s, float t, float r)
89         { texcoord(s, t, r, 1); }
90
91         void texcoord(float s, float t, float r, float q)
92         { texcoord(Vector4(s, t, r, q)); }
93
94         void texcoord(const Vector4 &t)
95         { multitexcoord(0, t); }
96
97         void multitexcoord(unsigned i, float s)
98         { multitexcoord(i, s, 0, 0, 1); }
99
100         void multitexcoord(unsigned i, float s, float t)
101         { multitexcoord(i, s, t, 0, 1); }
102
103         void multitexcoord(unsigned i, float s, float t, float r)
104         { multitexcoord(i, s, t, r, 1); }
105
106         void multitexcoord(unsigned i, float s, float t, float r, float q)
107         { multitexcoord(i, Vector4(s, t, r, q)); }
108
109         void multitexcoord(unsigned i, const Vector4 &t)
110         { texc[i] = t; }
111
112         void color(unsigned char r, unsigned char g, unsigned char b)
113         { color(r, g, b, 255); }
114
115         void color(unsigned char r, unsigned char g, unsigned char b, unsigned char a)
116         { color(r/255.f, g/255.f, b/255.f, a/255.f); }
117
118         void color(float r, float g, float b)
119         { color(r, g, b, 1); }
120
121         void color(float r, float g, float b, float a)
122         { color(Color(r, g, b, a)); }
123
124         void color(const Color &c)
125         { col = c; }
126
127         void attrib(unsigned i, float x)
128         { attrib(i, x, 0, 0, 1); }
129
130         void attrib(unsigned i, float x, float y)
131         { attrib(i, x, y, 0, 1); }
132
133         void attrib(unsigned i, float x, float y, float z)
134         { attrib(i, x, y, z, 1); }
135
136         void attrib(unsigned i, float x, float y, float z, float w)
137         { attrib(i, Vector4(x, y, z, w)); }
138
139         void attrib(unsigned i, const Vector4 &a)
140         { attr[i] = a; }
141 };
142
143 } // namespace GL
144 } // namespace Msp
145
146 #endif