Fixed:
[freeglut] / progs / demos / Fractals_random / fractals_random.c
1 /* fractals_random.c */
2 /* This demo shows a single-buffering "freeglut" example. */
3
4 /*
5  * Program to draw a fractal by Michael Barnsley's stochastic algorithm.
6  * Algorithm:
7  *  (1) Define the affine transformations (of the form r(i+1) = A r(i) + b )
8  *  (2) Find the stationary point for the first transformation
9  *  (3) To draw:
10  *        - Pick a random integer between 1 and the number of transformations (inclusive)
11  *        - Send the current point through the transformation to create the new current point
12  *        - Plot the new current point
13  */
14
15 /*
16  * User Commands:
17  *  PgUp, PgDn - increase/decrease scaling
18  *  Arrow keys - translate viewing section
19  *  r - reset view
20  *  Escape - quit
21  */
22
23 #include <GL/freeglut.h>
24 #include <stdio.h>
25 #include <stdlib.h>
26 #include <math.h>
27
28 typedef struct
29 {
30   double a00, a01, a10, a11 ;   /* Transformation matrix */
31   double b0, b1 ;               /* Constant vector added on */
32   double statx, staty ;         /* Coordinates of the stationary point */
33 }
34 AffineTrans ;
35
36 /* Number of levels to draw the fractal */
37 static int num_levels = 0 ;
38
39 /* The definition of the fractal */
40 static int num_trans ;
41 static AffineTrans *affine ;
42
43 /* the window title */
44 char window_title [ 80 ] ;
45
46 /* The amount the view is translated */
47 float xwin = 0.0, ywin = 0.0 ;
48 float scale_factor = 1.0 ;
49
50 /* The current point */
51 float current_x = 0.0, current_y = 0.0 ;
52
53 /* Signals when a glClear is needed */
54 static GLboolean needClear = GL_TRUE;
55
56 static void draw_level ( int num, double m00, double m01, double m10, double m11, double n0, double n1 )
57 {
58   /* Draw a fractal transformed by "M", "N" as passed in */
59   int i ;
60
61   for ( i = 0; i < 10; i++ )
62   {
63     int random = (rand() >> 10) % num_trans;
64     float new_x = affine[random].a00 * current_x + affine[random].a01 * current_y + affine[random].b0 ;
65     float new_y = affine[random].a10 * current_x + affine[random].a11 * current_y + affine[random].b1 ;
66
67     glVertex2f ( new_x, new_y ) ;
68     current_x = new_x ;
69     current_y = new_y ;
70   }
71 }
72
73 static void 
74 Display(void)
75 {
76   if (needClear) {
77     glClear(GL_COLOR_BUFFER_BIT);
78     needClear = GL_FALSE;
79   }
80
81   /* the curve */
82   glPushMatrix();
83   glScalef(2.5, 2.5, 2.5);
84
85   glColor4f(0.0, 0.0, 0.0, 1.0);
86   glBegin ( GL_POINTS ) ;
87   draw_level ( num_levels, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0 );
88   glEnd () ;
89
90   glPopMatrix();
91
92   glFlush();
93   glutPostRedisplay();  /* Needed so that this function will be called again */
94 }
95
96 static void 
97 Reshape(int width, int height)
98 {
99   float ar;
100   glViewport(0, 0, width, height);
101   glMatrixMode(GL_PROJECTION);
102   glLoadIdentity();
103   ar = (float) width / (float) height;
104   if( ar > 1 )
105       glFrustum(-ar, ar, -1.0, 1.0, 2.0, 100.0);
106   else
107       glFrustum(-1.0, 1.0, -1/ar, 1/ar, 2.0, 100.0);
108   glMatrixMode(GL_MODELVIEW);
109   glLoadIdentity();
110   xwin = -1.0 ;
111   ywin =  0.0 ;
112   glTranslatef(xwin, ywin, -5.0);
113   needClear = GL_TRUE;
114 }
115
116 static void 
117 Key(unsigned char key, int x, int y)
118 {
119   switch (key) {
120   case 27:  /* Escape key */
121     glutLeaveMainLoop ();
122     break;
123
124   case 'r' :  case 'R' :
125     glMatrixMode(GL_MODELVIEW);
126     glLoadIdentity();
127     xwin = -1.0 ;
128     ywin = 0.0 ;
129     glTranslatef(xwin, ywin, -5.0);
130
131     break ;
132   }
133
134   needClear = GL_TRUE;
135
136   glutPostRedisplay();
137 }
138
139 static void 
140 Special(int key, int x, int y)
141 {
142   switch (key) {
143   case GLUT_KEY_UP :
144     glMatrixMode(GL_MODELVIEW);
145     ywin += 0.1 * scale_factor ;
146     glTranslatef(0.0, 0.1 * scale_factor, 0.0);
147     break ;
148
149   case GLUT_KEY_DOWN :
150     glMatrixMode(GL_MODELVIEW);
151     ywin -= 0.1 * scale_factor ;
152     glTranslatef(0.0, -0.1 * scale_factor, 0.0);
153     break ;
154
155   case GLUT_KEY_LEFT :
156     glMatrixMode(GL_MODELVIEW);
157     xwin -= 0.1 * scale_factor ;
158     glTranslatef(-0.1 * scale_factor, 0.0, 0.0);
159     break ;
160
161   case GLUT_KEY_RIGHT :
162     glMatrixMode(GL_MODELVIEW);
163     xwin += 0.1 * scale_factor ;
164     glTranslatef(0.1 * scale_factor, 0.0, 0.0);
165     break ;
166
167   case GLUT_KEY_PAGE_UP :
168     glMatrixMode(GL_MODELVIEW);
169     glTranslatef ( -xwin, -ywin, 0.0 ) ;
170     glScalef(1.25, 1.25, 1.25);
171     glTranslatef ( xwin, ywin, 0.0 ) ;
172     scale_factor *= 0.8 ;
173     break ;
174
175   case GLUT_KEY_PAGE_DOWN :
176     glMatrixMode(GL_MODELVIEW);
177     glTranslatef ( -xwin, -ywin, 0.0 ) ;
178     glScalef(0.8, 0.8, 0.8);
179     glTranslatef ( xwin, ywin, 0.0 ) ;
180     scale_factor *= 1.25 ;
181     break ;
182   }
183
184   needClear = GL_TRUE;
185
186   glutPostRedisplay();
187 }
188
189 void readConfigFile ( char *fnme )
190 {
191   FILE *fptr = fopen ( fnme, "rt" ) ;
192   int i ;
193   char inputline [ 256 ] ;
194
195   /* Read a header line */
196   fgets ( inputline, 256, fptr ) ;
197
198   /* Read a comment line */
199   fgets ( inputline, 256, fptr ) ;
200
201   /* Read the window title */
202   fgets ( inputline, 256, fptr ) ;
203   /* We assume here that this line will not exceed 79 characters plus a 
204      newline (window_title is 80 characters long). That'll cause a buffer 
205      overflow. For a simple program like  this, though, we're letting it 
206      slide! 
207   */
208   sscanf ( inputline, "%[a-zA-Z0-9!@#$%^&*()+=/\\_-\" ]", window_title ) ;
209
210   /* Read a comment line */
211   fgets ( inputline, 256, fptr ) ;
212
213   /* Read the number of affine transformations */
214   fgets ( inputline, 256, fptr ) ;
215   sscanf ( inputline, "%d", &num_trans ) ;
216
217   affine = (AffineTrans *)malloc ( num_trans * sizeof(AffineTrans) ) ;
218
219   /* Read a comment line */
220   fgets ( inputline, 256, fptr ) ;
221
222   for ( i = 0; i < num_trans; i++ )
223   {
224     double m00, m01, m10, m11 ;  /* Matrix "I" minus "A" */
225     double determ ;              /* Determinant of this matrix */
226
227     /* Read an affine transformation definition */
228     fgets ( inputline, 256, fptr ) ;
229     sscanf ( inputline, "%lf %lf %lf %lf %lf %lf", &affine[i].a00, &affine[i].a01,
230                      &affine[i].a10, &affine[i].a11, &affine[i].b0, &affine[i].b1 ) ;
231
232     /* Calculate the stationary point */
233
234     m00 = 1.0 - affine[i].a00 ;
235     m01 =     - affine[i].a01 ;
236     m10 =     - affine[i].a10 ;
237     m11 = 1.0 - affine[i].a11 ;
238
239     determ = m00 * m11 - m01 * m10 ;
240
241     if ( fabs ( determ ) > 1.e-6 )
242     {
243       affine[i].statx = (  m11 * affine[i].b0 - m01 * affine[i].b1 ) / determ ;
244       affine[i].staty = ( -m10 * affine[i].b0 + m00 * affine[i].b1 ) / determ ;
245     }
246     else
247       affine[i].statx = affine[i].staty = 0.0 ;
248   }
249 }
250
251 int 
252 main(int argc, char *argv[])
253 {
254   int fractal_window ;
255
256   glutInitDisplayMode( GLUT_RGB | GLUT_SINGLE );
257
258   glutInitWindowSize(500, 250);
259   glutInitWindowPosition ( 140, 140 ) ;
260   glutInit(&argc, argv);
261
262   if ( argc > 1 )
263     readConfigFile ( argv[1] ) ;
264   else
265     readConfigFile ( "fractals.dat" ) ;
266
267   fractal_window = glutCreateWindow( window_title );
268
269   glClearColor(1.0, 1.0, 1.0, 1.0);
270
271   glutReshapeFunc(Reshape);
272   glutKeyboardFunc(Key);
273   glutSpecialFunc(Special);
274   glutDisplayFunc(Display);
275
276   glutMainLoop();
277
278   printf ( "Back from the 'freeglut' main loop\n" ) ;
279
280   return 0;             /* ANSI C requires main to return int. */
281 }