Using the GLSL syntax in C++
I wrote custom vector classes such as vec2, vec3 etc. that mimic the GLSL types and look roughly like this:
struct vec3
{
inline vec3(float x, float y, float z)
: x(x), y(y), z(z) {}
union { float x, r, s; };
union { float y, g, t; };
union { float z, b, p; };
};
Operations on vectors are implemented this way:
inline vec3 operator +(vec3 a, vec3 b)
{
return vec3(a.x + b.x, a.y + b.y, a.z + b.z);
}
This allows me to create vectors and access their components using a GLSL-like syntax and perform operations on them almost as if they were numeric types. The unions allow me to refer to the first coordinate indifferently as x or as r, as is the case in GLSL. For instance:
vec3 point = vec3(1.f, 2.f, 3.f);
vec3 other = point + point;
point.x = other.b;
The problem of swizzling
But GLSL also allows swizzled access, even with holes between components. For instance p.yx behaves like a vec2 with p’s x and y swapped. When no component is repeated, it is also an lvalue. Some examples:
other = point.xyy; /* Note: xyy, not xyz */
other.xz = point.xz;
point.xy = other.xx + vec2(1.0f, 2.0f);
Now this could be done using standard getters and setters such as vec2 xy() and void xy(vec2 val). This is what the GLM library does.
Transparent getter and setter
However, I devised this pattern that lets me do exactly the same in C++. Since everything is a POD-struct, I can add more unions:
template<int I, int J> struct MagicVec2
{
friend struct vec2;
inline vec2 operator =(vec2 that);
private:
float ptr[1 + (I > J ? I : J)];
};
template<int I, int J>
inline vec2 MagicVec2<I, J>::operator =(vec2 that)
{
ptr[I] = that.x; ptr[J] = that.y;
return *this;
}
And eg. the vec3 class becomes (I simplified things a bit, for instance nothing prevents xx from being used as an lvalue here):
struct vec3
{
inline vec3(float x, float y, float z)
: x(x), y(y), z(z) {}
template<int I, int J, int K>
inline vec3(MagicVec3<I, J, K> const &v)
: x(v.ptr[I]), y(v.ptr[J]), z(v.ptr[K]) {}
union
{
struct { float x, y, z; };
struct { float r, g, b; };
struct { float s, t, p; };
MagicVec2<0,0> xx, rr, ss;
MagicVec2<0,1> xy, rg, st;
MagicVec2<0,2> xz, rb, sp;
MagicVec2<1,0> yx, gr, ts;
MagicVec2<1,1> yy, gg, tt;
MagicVec2<1,2> yz, gb, tp;
MagicVec2<2,0> zx, br, ps;
MagicVec2<2,1> zy, bg, pt;
MagicVec2<2,2> zz, bb, pp;
/* Also MagicVec3 and MagicVec4, of course */
};
};
Basically: I use a union to mix the vector’s floating-point components with a magic object which is not really a vec2 but can be cast implicitly to a vec2 (because there’s a vec2 constructor allowing it), and can be assigned a vec2 (because of its overloaded assignment operator).
I am very satisfied with the result. The GLSL code above works and I believe I get decent type safety. And I can #include a GLSL shader in my C++ code.
Limitations
Of course there are limitations. I know of the following ones:
sizeof(point.xz)will be3*sizeof(float)instead of the expected2*sizeof(float). This is by design and I do not know whether this could be problematic.&foo.xzcannot be used as avec2*. This should be OK because I only ever pass these objects by value.
So my question is: what may I have overlooked that will make my life difficult with this pattern? Also, I have not found this pattern anywhere else yet, so if anyone knows its name I am interested.
Note: I wish to stick to C++98, but I do rely on the compiler allowing type-punning through unions. My reason for not wanting C++11 yet is the lack of compiler support on several of my target platforms; all the compilers that are of interest to me support type punning, though.
vec3 v1, there appears to be no way forv1.xzto be assigned correctly to an actualvec2 v2, since it doesn't look like anything reorders the elements (v1.zwould have to go intov2.y, which is a different offset into the vector). Did you leave that out of the post, or am I missing something? – Michael Madsen Jan 26 at 1:59vec3::vec3(MagicVec3<>const&)constructor. I omitted it for brevity, but there is of course one forvec2, too. Since that constructor is notexplicit, any method taking avec2will also implicitly accept aMagicVec2. The conversion is therefore delayed until the contents are actually needed. – Sam Hocevar Jan 26 at 7:57