1 /* === S Y N F I G ========================================================= */
2 /*! \file mod_particle/random.cpp
8 ** Copyright (c) 2002-2005 Robert B. Quattlebaum Jr., Adrian Bentley
9 ** Copyright (c) 2007 Chris Moore
11 ** This package is free software; you can redistribute it and/or
12 ** modify it under the terms of the GNU General Public License as
13 ** published by the Free Software Foundation; either version 2 of
14 ** the License, or (at your option) any later version.
16 ** This package is distributed in the hope that it will be useful,
17 ** but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 ** General Public License for more details.
22 /* ========================================================================= */
24 /* === H E A D E R S ======================================================= */
39 /* === M A C R O S ========================================================= */
41 #define PI (3.1415927)
43 /* === G L O B A L S ======================================================= */
45 /* === P R O C E D U R E S ================================================= */
47 /* === M E T H O D S ======================================================= */
50 Random::set_seed(int x)
55 for(i=0;i<POOL_SIZE;i++)
58 x_mask=rand()+rand()*RAND_MAX;
59 y_mask=rand()+rand()*RAND_MAX;
60 t_mask=rand()+rand()*RAND_MAX;
63 // this picks one of the POOL_SIZE (256) preset values out of the pool
64 // and scales it to be in the range (-1, 1). is that what it was
65 // intended to do? the distribution is pretty terrible, too, with
66 // some elements being picked a hundred times more often than others
68 Random::operator()(const int salt,const int x,const int y,const int t)const
70 const int salt_hash(pool_[salt&(POOL_SIZE-1)]);
72 int index(((x^x_mask)+(y^y_mask)*234672+(t^t_mask)*8439573)^salt_hash);
74 index+=index*(index/POOL_SIZE);
76 return (float(pool_[index&(POOL_SIZE-1)])/float(RAND_MAX))*2.0f-1.0f;
80 Random::operator()(SmoothType smooth,int subseed,float xf,float yf,float tf)const
82 int x((int)floor(xf));
83 int y((int)floor(yf));
84 int t((int)floor(tf));
88 case SMOOTH_CUBIC: // cubic
90 #define f(j,i,k) ((*this)(subseed,i,j,k))
91 //Using catmull rom interpolation because it doesn't blur at all
92 // ( http://www.gamedev.net/reference/articles/article1497.asp )
93 //bezier curve with intermediate ctrl pts: 0.5/3(p(i+1) - p(i-1)) and similar
94 float xfa [4], tfa[4];
96 //precalculate indices (all clamped) and offset
97 const int xa[] = {x-1,x,x+1,x+2};
99 const int ya[] = {y-1,y,y+1,y+2};
101 const int ta[] = {t-1,t,t+1,t+2};
103 const float dx(xf-x);
104 const float dy(yf-y);
105 const float dt(tf-t);
107 //figure polynomials for each point
110 0.5*dx*(dx*(dx*(-1) + 2) - 1), //-t + 2t^2 -t^3
111 0.5*(dx*(dx*(3*dx - 5)) + 2), //2 - 5t^2 + 3t^3
112 0.5*dx*(dx*(-3*dx + 4) + 1), //t + 4t^2 - 3t^3
113 0.5*dx*dx*(dx-1) //-t^2 + t^3
118 0.5*dy*(dy*(dy*(-1) + 2) - 1), //-t + 2t^2 -t^3
119 0.5*(dy*(dy*(3*dy - 5)) + 2), //2 - 5t^2 + 3t^3
120 0.5*dy*(dy*(-3*dy + 4) + 1), //t + 4t^2 - 3t^3
121 0.5*dy*dy*(dy-1) //-t^2 + t^3
126 0.5*dt*(dt*(dt*(-1) + 2) - 1), //-t + 2t^2 -t^3
127 0.5*(dt*(dt*(3*dt - 5)) + 2), //2 - 5t^2 + 3t^3
128 0.5*dt*(dt*(-3*dt + 4) + 1), //t + 4t^2 - 3t^3
129 0.5*dt*dt*(dt-1) //-t^2 + t^3
132 //evaluate polynomial for each row
133 for(int i = 0; i < 4; ++i)
135 for(int j = 0; j < 4; ++j)
137 tfa[j] = f(ya[i],xa[j],ta[0])*ttf[0] + f(ya[i],xa[j],ta[1])*ttf[1] + f(ya[i],xa[j],ta[2])*ttf[2] + f(ya[i],xa[j],ta[3])*ttf[3];
139 xfa[i] = tfa[0]*txf[0] + tfa[1]*txf[1] + tfa[2]*txf[2] + tfa[3]*txf[3];
142 //return the cumulative column evaluation
143 return xfa[0]*tyf[0] + xfa[1]*tyf[1] + xfa[2]*tyf[2] + xfa[3]*tyf[3];
149 case SMOOTH_FAST_SPLINE: // Fast Spline (non-animated)
151 #define P(x) (((x)>0)?((x)*(x)*(x)):0.0f)
152 #define R(x) ( P(x+2) - 4.0f*P(x+1) + 6.0f*P(x) - 4.0f*P(x-1) )*(1.0f/6.0f)
153 #define F(i,j) ((*this)(subseed,i+x,j+y)*(R((i)-a)*R(b-(j))))
154 #define FT(i,j,k) ((*this)(subseed,i+x,j+y,k+t)*(R((i)-a)*R(b-(j))*R((k)-c)))
155 #define Z(i,j) ret+=F(i,j)
156 #define ZT(i,j,k) ret+=FT(i,j,k)
157 #define X(i,j) // placeholder... To make box more symmetric
158 #define XT(i,j,k) // placeholder... To make box more symmetric
160 float a(xf-x), b(yf-y);
164 Z(-1,-1); Z(-1, 0); Z(-1, 1); Z(-1, 2);
165 Z( 0,-1); X( 0, 0); Z( 0, 1); Z( 0, 2);
166 Z( 1,-1); Z( 1, 0); Z( 1, 1); Z( 1, 2);
167 Z( 2,-1); Z( 2, 0); Z( 2, 1); Z( 2, 2);
172 case SMOOTH_SPLINE: // Spline (animated)
174 float a(xf-x), b(yf-y), c(tf-t);
177 float ret(FT(0,0,0));
178 ZT(-1,-1,-1); ZT(-1, 0,-1); ZT(-1, 1,-1); ZT(-1, 2,-1);
179 ZT( 0,-1,-1); ZT( 0, 0,-1); ZT( 0, 1,-1); ZT( 0, 2,-1);
180 ZT( 1,-1,-1); ZT( 1, 0,-1); ZT( 1, 1,-1); ZT( 1, 2,-1);
181 ZT( 2,-1,-1); ZT( 2, 0,-1); ZT( 2, 1,-1); ZT( 2, 2,-1);
183 ZT(-1,-1, 0); ZT(-1, 0, 0); ZT(-1, 1, 0); ZT(-1, 2, 0);
184 ZT( 0,-1, 0); XT( 0, 0, 0); ZT( 0, 1, 0); ZT( 0, 2, 0);
185 ZT( 1,-1, 0); ZT( 1, 0, 0); ZT( 1, 1, 0); ZT( 1, 2, 0);
186 ZT( 2,-1, 0); ZT( 2, 0, 0); ZT( 2, 1, 0); ZT( 2, 2, 0);
188 ZT(-1,-1, 1); ZT(-1, 0, 1); ZT(-1, 1, 1); ZT(-1, 2, 1);
189 ZT( 0,-1, 1); ZT( 0, 0, 1); ZT( 0, 1, 1); ZT( 0, 2, 1);
190 ZT( 1,-1, 1); ZT( 1, 0, 1); ZT( 1, 1, 1); ZT( 1, 2, 1);
191 ZT( 2,-1, 1); ZT( 2, 0, 1); ZT( 2, 1, 1); ZT( 2, 2, 1);
193 ZT(-1,-1, 2); ZT(-1, 0, 2); ZT(-1, 1, 2); ZT(-1, 2, 2);
194 ZT( 0,-1, 2); ZT( 0, 0, 2); ZT( 0, 1, 2); ZT( 0, 2, 2);
195 ZT( 1,-1, 2); ZT( 1, 0, 2); ZT( 1, 1, 2); ZT( 1, 2, 2);
196 ZT( 2,-1, 2); ZT( 2, 0, 2); ZT( 2, 1, 2); ZT( 2, 2, 2);
211 ret+=(*this)(subseed,i+x,j+y,h+t)*(R(i-dx)*R(j-dy)*R(h-dt));
225 int x((int)floor(xf));
226 int y((int)floor(yf));
229 a=(1.0f-cos(a*PI))*0.5f;
230 b=(1.0f-cos(b*PI))*0.5f;
235 (*this)(subseed,x,y,t)*(c*d)+
236 (*this)(subseed,x2,y,t)*(a*d)+
237 (*this)(subseed,x,y2,t)*(c*b)+
238 (*this)(subseed,x2,y2,t)*(a*b);
246 a=(1.0f-cos(a*PI))*0.5f;
247 b=(1.0f-cos(b*PI))*0.5f;
249 // We don't perform this on the time axis, otherwise we won't
251 //c=(1.0f-cos(c*PI))*0.5f;
257 int x2=x+1,y2=y+1,t2=t+1;
260 (*this)(subseed,x,y,t)*(d*e*f)+
261 (*this)(subseed,x2,y,t)*(a*e*f)+
262 (*this)(subseed,x,y2,t)*(d*b*f)+
263 (*this)(subseed,x2,y2,t)*(a*b*f)+
264 (*this)(subseed,x,y,t2)*(d*e*c)+
265 (*this)(subseed,x2,y,t2)*(a*e*c)+
266 (*this)(subseed,x,y2,t2)*(d*b*c)+
267 (*this)(subseed,x2,y2,t2)*(a*b*c);
272 int x((int)floor(xf));
273 int y((int)floor(yf));
280 (*this)(subseed,x,y,t)*(c*d)+
281 (*this)(subseed,x2,y,t)*(a*d)+
282 (*this)(subseed,x,y2,t)*(c*b)+
283 (*this)(subseed,x2,y2,t)*(a*b);
296 int x2=x+1,y2=y+1,t2=t+1;
299 (*this)(subseed,x,y,t)*(d*e*f)+
300 (*this)(subseed,x2,y,t)*(a*e*f)+
301 (*this)(subseed,x,y2,t)*(d*b*f)+
302 (*this)(subseed,x2,y2,t)*(a*b*f)+
303 (*this)(subseed,x,y,t2)*(d*e*c)+
304 (*this)(subseed,x2,y,t2)*(a*e*c)+
305 (*this)(subseed,x,y2,t2)*(d*b*c)+
306 (*this)(subseed,x2,y2,t2)*(a*b*c);
310 return (*this)(subseed,x,y,t);