]> Dogcows Code - chaz/yoink/blob - src/moof/math.hh
pkg-config libs parsing bugfix
[chaz/yoink] / src / moof / math.hh
1
2 /*] Copyright (c) 2009-2010, Charles McGarvey [**************************
3 **] All rights reserved.
4 *
5 * vi:ts=4 sw=4 tw=75
6 *
7 * Distributable under the terms and conditions of the 2-clause BSD license;
8 * see the file COPYING for a complete text of the license.
9 *
10 **************************************************************************/
11
12 #ifndef _MOOF_MATH_HH_
13 #define _MOOF_MATH_HH_
14
15 /**
16 * \file math.hh
17 * General math-related types and functions.
18 */
19
20 #include "../config.h"
21
22 #include <cmath>
23
24 #include <cml/cml.h>
25 #include <SDL/SDL_opengl.h>
26
27
28 #if USE_DOUBLE_PRECISION
29 typedef GLdouble GLscalar;
30 #define GL_SCALAR GL_DOUBLE
31 #define SCALAR(D) (D)
32 #else
33 typedef GLfloat GLscalar;
34 #define GL_SCALAR GL_FLOAT
35 #define SCALAR(F) (F##f)
36 #endif
37
38
39 namespace moof {
40
41
42 using namespace cml;
43
44
45 typedef GLscalar scalar;
46
47 typedef vector< scalar, fixed<2> > vector2;
48 typedef vector< scalar, fixed<3> > vector3;
49 typedef vector< scalar, fixed<4> > vector4;
50
51 typedef matrix< scalar, fixed<2,2>, col_basis, col_major > matrix2;
52 typedef matrix< scalar, fixed<3,3>, col_basis, col_major > matrix3;
53 typedef matrix< scalar, fixed<4,4>, col_basis, col_major > matrix4;
54
55 typedef quaternion< scalar, fixed<>, vector_first, positive_cross > quaternion;
56
57 typedef constants<scalar> constants;
58
59
60 inline vector3 demote(const vector4& vec)
61 {
62 return vector3(vec[0], vec[1], vec[2]);
63 }
64
65 inline vector2 demote(const vector3& vec)
66 {
67 return vector2(vec[0], vec[1]);
68 }
69
70 inline vector4 promote(const vector3& vec, scalar extra = SCALAR(0.0))
71 {
72 return vector4(vec[0], vec[1], vec[2], extra);
73 }
74
75 inline vector3 promote(const vector2& vec, scalar extra = SCALAR(0.0))
76 {
77 return vector3(vec[0], vec[1], extra);
78 }
79
80
81 const scalar EPSILON = SCALAR(0.000001);
82
83 /**
84 * Check the equality of scalars with a certain degree of error allowed.
85 */
86
87 inline bool is_equal(scalar a, scalar b, scalar epsilon = EPSILON)
88 {
89 return std::abs(a - b) < epsilon;
90 }
91
92
93 // Here are some generic implementations of a few simple integrators. To
94 // use, you need one type representing the state and another containing the
95 // derivatives of the primary state variables. The state class must
96 // implement these methods:
97 //
98 // void calculate_derivative(Derivative_Type& derivative, scalar absoluteTime);
99 // void step(const Derivative_Type& derivative, scalar deltaTime);
100 //
101 // Additionally, the derivative class must overload a few operators:
102 //
103 // Derivative_Type operator + (const Derivative_Type& other) const
104 // Derivative_Type operator * (const Derivative_Type& other) const
105
106 template <class S, class D>
107 inline D evaluate(const S& state, scalar t)
108 {
109 D derivative;
110 state.calculate_derivative(derivative, t);
111 return derivative;
112 }
113
114 template <class S, class D>
115 inline D evaluate(S state, scalar t, scalar dt, const D& derivative)
116 {
117 state.step(derivative, dt);
118 return evaluate<S,D>(state, t + dt);
119 }
120
121
122 template <class S, class D>
123 inline void euler(S& state, scalar t, scalar dt)
124 {
125 D a = evaluate<S,D>(state, t);
126
127 state.step(a, dt);
128 }
129
130 template <class S, class D>
131 inline void rk2(S& state, scalar t, scalar dt)
132 {
133 D a = evaluate<S,D>(state, t);
134 D b = evaluate<S,D>(state, t, dt * SCALAR(0.5), a);
135
136 state.step(b, dt);
137 }
138
139 template <class S, class D>
140 inline void rk4(S& state, scalar t, scalar dt)
141 {
142 D a = evaluate<S,D>(state, t);
143 D b = evaluate<S,D>(state, t, dt * SCALAR(0.5), a);
144 D c = evaluate<S,D>(state, t, dt * SCALAR(0.5), b);
145 D d = evaluate<S,D>(state, t, dt, c);
146
147 state.step((a + (b + c) * SCALAR(2.0) + d) * SCALAR(1.0/6.0), dt);
148 }
149
150
151 } // namespace moof
152
153 #endif // _MOOF_MATH_HH_
154
This page took 0.039692 seconds and 5 git commands to generate.