X-Git-Url: http://git.tdb.fi/?p=libs%2Fgl.git;a=blobdiff_plain;f=source%2Fvertexbuilder.h;h=e7f9b13231797cecd77a553bf7d90eb8f8811645;hp=8235c7afea0d8274d0847daa9e3b80eed024f083;hb=4443707c752ab8ee288f1c22be08cf82f27439d7;hpb=7e9e15a12fb398798f2719545cc8553354c1e389 diff --git a/source/vertexbuilder.h b/source/vertexbuilder.h index 8235c7af..e7f9b132 100644 --- a/source/vertexbuilder.h +++ b/source/vertexbuilder.h @@ -1,7 +1,7 @@ /* $Id$ This file is part of libmspgl -Copyright © 2007 Mikko Rasa, Mikkosoft Productions +Copyright © 2007, 2009-2010 Mikko Rasa, Mikkosoft Productions Distributed under the LGPL */ @@ -9,6 +9,8 @@ Distributed under the LGPL #define MSP_GL_VERTEXBUILDER_H_ #include +#include "color.h" +#include "vector.h" namespace Msp { namespace GL { @@ -24,39 +26,98 @@ data. Attributes can be read from protected member variables. */ class VertexBuilder { -protected: - struct Attrib - { - float x, y, z, w; - }; - public: - VertexBuilder(); + VertexBuilder(): nor(0, 0, 1) { } + virtual ~VertexBuilder() { } - void vertex(float x, float y) { vertex(x, y, 0, 1); } - void vertex(float x, float y, float z) { vertex(x, y, z, 1); } - void vertex(float x, float y, float z, float w) { vertex_(x, y, z, w); } - void normal(float x, float y, float z) { nx = x; ny = y; nz = z; } - void texcoord(float s) { texcoord(s, 0, 0, 1); } - void texcoord(float s, float t) { texcoord(s, t, 0, 1); } - void texcoord(float s, float t, float r) { texcoord(s, t, r, 1); } - void texcoord(float s, float t, float r, float q) { ts = s; tt = t; tr = r; tq = q; } - void color(unsigned char r, unsigned char g, unsigned char b) { color(r, g, b, 255); } - void color(unsigned char r, unsigned char g, unsigned char b, unsigned char a) { color(r/255.f, g/255.f, b/255.f, a/255.f); } - void color(float r, float g, float b) { color(r, g, b, 1); } - void color(float r, float g, float b, float a) { cr = r; cg = g; cb = b; ca = a; } - void attrib(unsigned i, float x) { attrib(i, x, 0, 0, 1); } - void attrib(unsigned i, float x, float y) { attrib(i, x, y, 0, 1); } - void attrib(unsigned i, float x, float y, float z) { attrib(i, x, y, z, 1); } - void attrib(unsigned i, float x, float y, float z, float w); + void vertex(float x, float y) + { vertex(x, y, 0, 1); } + + void vertex(float x, float y, float z) + { vertex(x, y, z, 1); } + + void vertex(float x, float y, float z, float w) + { vertex_(x, y, z, w); } + + void vertex(const Vector4 &v) + { vertex(v.x, v.y, v.z, v.w); } + protected: - float cr, cg, cb, ca; // Color - float ts, tt, tr, tq; // TexCoord - float nx, ny, nz; // Normal - std::map av; + virtual void vertex_(float x, float y, float z, float w) =0; + +public: + void normal(float x, float y, float z) + { normal(Vector3(x, y, z)); } + + void normal(const Vector3 &n) + { nor = n; } + + void texcoord(float s) + { texcoord(s, 0, 0, 1); } + + void texcoord(float s, float t) + { texcoord(s, t, 0, 1); } + + void texcoord(float s, float t, float r) + { texcoord(s, t, r, 1); } + + void texcoord(float s, float t, float r, float q) + { texcoord(Vector4(s, t, r, q)); } + + void texcoord(const Vector4 &t) + { multitexcoord(0, t); } + + void multitexcoord(unsigned i, float s) + { multitexcoord(i, s, 0, 0, 1); } - virtual void vertex_(float, float, float, float) =0; + void multitexcoord(unsigned i, float s, float t) + { multitexcoord(i, s, t, 0, 1); } + + void multitexcoord(unsigned i, float s, float t, float r) + { multitexcoord(i, s, t, r, 1); } + + void multitexcoord(unsigned i, float s, float t, float r, float q) + { multitexcoord(i, Vector4(s, t, r, q)); } + + void multitexcoord(unsigned i, const Vector4 &t) + { texc[i] = t; } + + void color(unsigned char r, unsigned char g, unsigned char b) + { color(r, g, b, 255); } + + void color(unsigned char r, unsigned char g, unsigned char b, unsigned char a) + { color(r/255.f, g/255.f, b/255.f, a/255.f); } + + void color(float r, float g, float b) + { color(r, g, b, 1); } + + void color(float r, float g, float b, float a) + { color(Color(r, g, b, a)); } + + void color(const Color &c) + { col = c; } + + void attrib(unsigned i, float x) + { attrib(i, x, 0, 0, 1); } + + void attrib(unsigned i, float x, float y) + { attrib(i, x, y, 0, 1); } + + void attrib(unsigned i, float x, float y, float z) + { attrib(i, x, y, z, 1); } + + void attrib(unsigned i, float x, float y, float z, float w) + { attrib(i, Vector4(x, y, z, w)); } + + void attrib(unsigned i, const Vector4 &a) + { attr[i] = a; } + +protected: + Vector3 nor; + Color col; + std::map texc; + std::map attr; }; } // namespace GL