Fix bugs in previous commit that caused FTBFS in synfig and ETL FTBFS with older...
[synfig.git] / synfig-core / tags / synfig_0_61_07_rc2 / src / modules / mod_particle / random.h
1 /* === S Y N F I G ========================================================= */
2 /*!     \file mod_particle/random.h
3 **      \brief Template Header
4 **
5 **      $Id$
6 **
7 **      \legal
8 **      Copyright (c) 2002-2005 Robert B. Quattlebaum Jr., Adrian Bentley
9 **      Copyright (c) 2007 Chris Moore
10 **
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.
15 **
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.
20 **      \endlegal
21 */
22 /* ========================================================================= */
23
24 /* === S T A R T =========================================================== */
25
26 #ifndef __SYNFIG_RANDOM_H
27 #define __SYNFIG_RANDOM_H
28
29 /* === H E A D E R S ======================================================= */
30
31
32 /* === M A C R O S ========================================================= */
33
34 /* === T Y P E D E F S ===================================================== */
35
36 /* === C L A S S E S & S T R U C T S ======================================= */
37
38
39 #define POOL_SIZE       (256)
40 class Random
41 {
42         int pool_[POOL_SIZE];
43         int seed_;
44
45         int x_mask, y_mask, t_mask;
46
47 public:
48
49         void set_seed(int x);
50         int get_seed()const { return seed_; }
51
52         enum SmoothType
53         {
54                 SMOOTH_DEFAULT          = 0,
55                 SMOOTH_LINEAR           = 1,
56                 SMOOTH_COSINE           = 2,
57                 SMOOTH_SPLINE           = 3,
58                 SMOOTH_CUBIC            = 4,
59                 SMOOTH_FAST_SPLINE      = 5,
60         };
61
62         float operator()(int salt,int x,int y=0, int t=0)const;
63         float operator()(SmoothType smooth,int subseed,float x,float y=0, float t=0)const;
64 };
65
66 /* === E N D =============================================================== */
67
68 #endif