a343cfff4759176ddd169b117aa5c9e49a329625
[xscreensaver] / hacks / xlyap.c
1 /* Lyap - calculate and display Lyapunov exponents */
2
3 /* Written by Ron Record (rr@sco) 03 Sep 1991 */
4
5 /* The idea here is to calculate the Lyapunov exponent for a periodically
6  * forced logistic map (later i added several other nonlinear maps of the unit
7  * interval). In order to turn the 1-dimensional parameter space of the
8  * logistic map into a 2-dimensional parameter space, select two parameter
9  * values ('a' and 'b') then alternate the iterations of the logistic map using
10  * first 'a' then 'b' as the parameter. This program accepts an argument to
11  * specify a forcing function, so instead of just alternating 'a' and 'b', you
12  * can use 'a' as the parameter for say 6 iterations, then 'b' for 6 iterations
13  * and so on. An interesting forcing function to look at is abbabaab (the
14  * Morse-Thue sequence, an aperiodic self-similar, self-generating sequence).
15  * Anyway, step through all the values of 'a' and 'b' in the ranges you want,
16  * calculating the Lyapunov exponent for each pair of values. The exponent
17  * is calculated by iterating out a ways (specified by the variable "settle")
18  * then on subsequent iterations calculating an average of the logarithm of
19  * the absolute value of the derivative at that point. Points in parameter
20  * space with a negative Lyapunov exponent are colored one way (using the
21  * value of the exponent to index into a color map) while points with a
22  * non-negative exponent are colored differently.
23  *
24  * The algorithm was taken from the September 1991 Scientific American article
25  * by A. K. Dewdney who gives credit to Mario Markus of the Max Planck Institute
26  * for its creation. Additional information and ideas were gleaned from the
27  * discussion on alt.fractals involving Stephen Hall, Ed Kubaitis, Dave Platt
28  * and Baback Moghaddam. Assistance with colormaps and spinning color wheels
29  * and X was gleaned from Hiram Clawson. Rubber banding code was adapted from
30  * an existing Mandelbrot program written by Stacey Campbell.
31  */
32
33 #define LYAP_PATCHLEVEL 4
34 #define LYAP_VERSION "#(@) lyap 2.3 2/20/92"
35
36 #include <assert.h>
37 #include <math.h>
38
39 #include "screenhack.h"
40 #include "yarandom.h"
41 #include "hsv.h"
42 #include "vroot.h"
43
44 #include <X11/cursorfont.h> 
45 #include <X11/Xutil.h> 
46
47 char *progclass = "XLyap";
48
49 char *defaults [] = {
50   "*background:         black",
51   "*foreground:         white",
52   "*randomize:          false",
53   "*builtin:            -1",
54   "*minColor:           1",
55   "*maxColor:           256",
56   "*dwell:              50",
57   "*useLog:             false",
58   "*colorExponent:      1.0",
59   "*colorOffset:        0",
60   "*randomForce:        ",              /* 0.5 */
61   "*settle:             50",
62   "*minA:               2.0",
63   "*minB:               2.0",
64   "*wheels:             7",
65   "*function:           10101010",
66   "*forcingFunction:    abbabaab",
67   "*bRange:             ",              /* 2.0 */
68   "*startX:             0.65",
69   "*mapIndex:           ",              /* 0 */
70   "*outputFile:         ",
71   "*beNegative:         false",
72   "*rgbMax:             65000",
73   "*spinLength:         256",
74   "*show:               false",
75   "*aRange:             ",              /* 2.0 */
76   0
77 };
78
79 XrmOptionDescRec options [] = {
80   { "-randomize", ".randomize", XrmoptionNoArg, "true" },
81   { "-builtin",   ".builtin",   XrmoptionSepArg, 0 },
82   { "-C", ".minColor",          XrmoptionSepArg, 0 },   /* n */
83   { "-D", ".dwell",             XrmoptionSepArg, 0 },   /* n */
84   { "-L", ".useLog",            XrmoptionNoArg, "true" },
85   { "-M", ".colorExponent",     XrmoptionSepArg, 0 },   /* r */
86   { "-O", ".colorOffset",       XrmoptionSepArg, 0 },   /* n */
87   { "-R", ".randomForce",       XrmoptionSepArg, 0 },   /* p */
88   { "-S", ".settle",            XrmoptionSepArg, 0 },   /* n */
89   { "-a", ".minA",              XrmoptionSepArg, 0 },   /* r */
90   { "-b", ".minB",              XrmoptionSepArg, 0 },   /* n */
91   { "-c", ".wheels",            XrmoptionSepArg, 0 },   /* n */
92   { "-F", ".function",          XrmoptionSepArg, 0 },   /* 10101010 */
93   { "-f", ".forcingFunction",   XrmoptionSepArg, 0 },   /* abbabaab */
94   { "-h", ".bRange",            XrmoptionSepArg, 0 },   /* r */
95   { "-i", ".startX",            XrmoptionSepArg, 0 },   /* r */
96   { "-m", ".mapIndex",          XrmoptionSepArg, 0 },   /* n */
97   { "-o", ".outputFile",        XrmoptionSepArg, 0 },   /* filename */
98   { "-p", ".beNegative",        XrmoptionNoArg, "true" },
99   { "-r", ".rgbMax",            XrmoptionSepArg, 0 },   /* n */
100   { "-s", ".spinLength",        XrmoptionSepArg, 0 },   /* n */
101   { "-v", ".show",              XrmoptionNoArg, "true" },
102   { "-w", ".aRange",            XrmoptionSepArg, 0 },   /* r */
103   { 0, 0, 0, 0 }
104 };
105
106
107 #define ABS(a)  (((a)<0) ? (0-(a)) : (a) )
108 #define Min(x,y) ((x < y)?x:y)
109 #define Max(x,y) ((x > y)?x:y)
110
111 #ifdef SIXTEEN_COLORS
112 #define MAXPOINTS  128
113 #ifdef BIGMEM
114 #define MAXFRAMES 4
115 #else
116 #define MAXFRAMES 2
117 #endif
118 #define MAXCOLOR 16
119 static int maxcolor=16, startcolor=0, color_offset=0, mincolindex=1;
120 static int dwell=50, settle=25;
121 static int width=128, height=128, xposition=128, yposition=128;
122 #else
123 #define MAXPOINTS  256
124 #ifdef BIGMEM
125 #define MAXFRAMES 8
126 #else
127 #define MAXFRAMES 2
128 #endif
129 #define MAXCOLOR 256
130 static int maxcolor=256, startcolor=17, color_offset=96, mincolindex=33;
131 static int dwell=100, settle=50;
132 static int width=256, height=256;
133 #endif
134
135 #ifndef TRUE
136 #define TRUE 1
137 #define FALSE 0
138 #endif
139
140 static int screen;
141 static Display* dpy;
142 static Visual *visual;
143
144 static unsigned long foreground, background;
145
146 static Window canvas;
147
148 typedef struct {
149         int x, y;
150 } xy_t;
151
152 typedef struct {
153         int start_x, start_y;
154         int last_x, last_y;
155         } rubber_band_data_t;
156
157 typedef struct {
158         Cursor band_cursor;
159         double p_min, p_max, q_min, q_max;
160         rubber_band_data_t rubber_band;
161         } image_data_t;
162
163 typedef struct points_t {
164         XPoint data[MAXCOLOR][MAXPOINTS];
165         int npoints[MAXCOLOR];
166         } points_t;
167
168 static points_t Points;
169 static image_data_t rubber_data;
170
171 #ifndef TRUE
172 #define TRUE 1
173 #define FALSE 0
174 #endif
175
176 static GC Data_GC[MAXCOLOR], RubberGC;
177
178 #define MAXINDEX 64
179 #define FUNCMAXINDEX 16
180 #define MAXWHEELS 7
181 #define NUMMAPS 5
182
183 typedef double (*PFD)(double,double);
184
185 static double logistic(double,double), circle(double,double), leftlog(double,double), rightlog(double,double), doublelog(double,double);
186 static double dlogistic(double,double), dcircle(double,double), dleftlog(double,double), drightlog(double,double), ddoublelog(double,double);
187 static PFD map, deriv;
188 static PFD Maps[NUMMAPS] = { logistic, circle, leftlog, rightlog, doublelog };
189 static PFD Derivs[NUMMAPS] = { dlogistic, dcircle, dleftlog, drightlog, ddoublelog };
190
191 static int aflag=0, bflag=0, wflag=0, hflag=0, Rflag=0;
192 static double pmins[NUMMAPS] = { 2.0, 0.0, 0.0, 0.0, 0.0 };
193 static double pmaxs[NUMMAPS] = { 4.0, 1.0, 6.75, 6.75, 16.0 };
194 static double amins[NUMMAPS] = { 2.0, 0.0, 0.0, 0.0, 0.0 };
195 static double aranges[NUMMAPS] = { 2.0, 1.0, 6.75, 6.75, 16.0 };
196 static double bmins[NUMMAPS] = { 2.0, 0.0, 0.0, 0.0, 0.0 };
197 static double branges[NUMMAPS] = { 2.0, 1.0, 6.75, 6.75, 16.0 };
198
199 static int   forcing[MAXINDEX] = { 0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,
200                         0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,
201                         0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1 };
202 static int   Forcing[FUNCMAXINDEX] = { 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 };
203
204 static int   maxindex = MAXINDEX;
205 static int   funcmaxindex = FUNCMAXINDEX;
206 static double   min_a=2.0, min_b=2.0, a_range=2.0, b_range=2.0, minlyap=1.0;
207 static double  max_a=4.0, max_b=4.0;
208 static double  start_x=0.65, lyapunov, a_inc, b_inc, a, b;
209 static int      numcolors=16, numfreecols, displayplanes, lowrange;
210 static xy_t     point;
211 static Pixmap  pixmap;
212 static Colormap cmap;
213 static XColor   Colors[MAXCOLOR];
214 static double  *exponents[MAXFRAMES];
215 static double  a_minimums[MAXFRAMES], b_minimums[MAXFRAMES];
216 static double  a_maximums[MAXFRAMES], b_maximums[MAXFRAMES];
217 static double  minexp, maxexp, prob=0.5;
218 static int     expind[MAXFRAMES]={0}, resized[MAXFRAMES]={0};
219 static int      numwheels=MAXWHEELS, force=0, Force=0, negative=1;
220 static int     rgb_max=65000, nostart=1, stripe_interval=7;
221 static int      save=1, show=0, useprod=1, spinlength=256, savefile=0;
222 static int      maxframe=0, frame=0, dorecalc=0, mapindex=0, run=1;
223 static char     *outname="lyap.out";
224
225
226 const char * const version = LYAP_VERSION;
227
228 static void resize(void);
229 static void redisplay(Window w, XExposeEvent *event);
230 static void Spin(Window w);
231 static void show_defaults(void);
232 static void StartRubberBand(Window w, image_data_t *data, XEvent *event);
233 static void TrackRubberBand(Window w, image_data_t *data, XEvent *event);
234 static void EndRubberBand(Window w, image_data_t *data, XEvent *event);
235 static void CreateXorGC(void);
236 static void InitBuffer(void);
237 static void BufferPoint(Display *display, Window window, int color,
238                         int x, int y);
239 static void FlushBuffer(void);
240 static void init_canvas(void);
241 static void init_data(void);
242 static void init_color(void);
243 static void parseargs(void);
244 static void Clear(void);
245 static void setupmem(void);
246 static void main_event(void);
247 static int complyap(void);
248 static void Getkey(XKeyEvent *event);
249 static int sendpoint(double expo);
250 static void save_to_file(void);
251 static void setforcing(void);
252 static void check_params(int mapnum, int parnum);
253 static void usage(void);
254 static void Destroy_frame(void);
255 static void freemem(void);
256 static void Redraw(void);
257 static void redraw(double *exparray, int index, int cont);
258 static void recalc(void);
259 static void SetupCorners(XPoint *corners, image_data_t *data);
260 static void set_new_params(Window w, image_data_t *data);
261 static void go_down(void);
262 static void go_back(void);
263 static void go_init(void);
264 static void jumpwin(void);
265 static void print_help(void);
266 static void print_values(void);
267
268
269 void
270 screenhack (Display *d, Window window)
271 {
272   XWindowAttributes xgwa;
273   int builtin = -1;
274   dpy = d;
275   XGetWindowAttributes (dpy, window, &xgwa);
276   width = xgwa.width;
277   height = xgwa.height;
278   visual = xgwa.visual;
279   cmap = xgwa.colormap;
280
281   parseargs();
282
283   if (get_boolean_resource("randomize", "Boolean"))
284     builtin = random() % 22;
285   else {
286     char *s = get_string_resource("builtin", "Integer");
287     if (s && *s)
288       builtin = atoi(s);
289     if (s) free (s);
290   }
291     
292   if (builtin >= 0)
293     {
294       char *ff = 0;
295       switch (builtin) {
296       case 0:
297         min_a = 3.75; aflag++;
298         min_b = 3.299999; bflag++;
299         a_range = 0.05; wflag++;
300         b_range = 0.05; hflag++;
301         dwell = 200;
302         settle = 100;
303         ff = "abaabbaaabbb";
304         break;
305
306       case 1:
307         min_a = 3.8; aflag++;
308         min_b = 3.2; bflag++;
309         b_range = .05; hflag++;
310         a_range = .05; wflag++;
311         ff = "bbbbbaaaaa";
312         break;
313
314       case 2:
315         min_a =  3.4; aflag++;
316         min_b =  3.04; bflag++;
317         a_range =  .5; wflag++;
318         b_range =  .5; hflag++;
319         ff = "abbbbbbbbb";
320         settle = 500;
321         dwell = 1000;
322         break;
323
324       case 3:
325         min_a = 3.5; aflag++;
326         min_b = 3.0; bflag++;
327         a_range = 0.2; wflag++;
328         b_range = 0.2; hflag++;
329         dwell = 600;
330         settle = 300;
331         ff = "aaabbbab";
332         break;
333
334       case 4:
335         min_a = 3.55667; aflag++;
336         min_b = 3.2; bflag++;
337         b_range = .05; hflag++;
338         a_range = .05; wflag++;
339         ff = "bbbbbaaaaa";
340         break;
341
342       case 5:
343         min_a = 3.79; aflag++;
344         min_b = 3.22; bflag++;
345         b_range = .02999; hflag++;
346         a_range = .02999; wflag++;
347         ff = "bbbbbaaaaa";
348         break;
349
350       case 6:
351         min_a = 3.7999; aflag++;
352         min_b = 3.299999; bflag++;
353         a_range = 0.2; wflag++;
354         b_range = 0.2; hflag++;
355         dwell = 300;
356         settle = 150;
357         ff = "abaabbaaabbb";
358         break;
359
360       case 7:
361         min_a = 3.89; aflag++;
362         min_b = 3.22; bflag++;
363         b_range = .028; hflag++;
364         a_range = .02999; wflag++;
365         ff = "bbbbbaaaaa";
366         settle = 600;
367         dwell = 1000;
368         break;
369
370       case 8:
371         min_a = 3.2; aflag++;
372         min_b = 3.7; bflag++;
373         a_range = 0.05; wflag++;
374         b_range = .005; hflag++;
375         ff = "abbbbaa";
376         break;
377
378       case 9:
379         ff = "aaaaaabbbbbb";
380         mapindex = 1;
381         dwell =  400;
382         settle =  200;
383         minlyap = maxexp = ABS(-0.85);
384         minexp = -1.0 * minlyap;
385         break;
386
387       case 10:
388         ff = "aaaaaabbbbbb";
389         mapindex = 1;
390         dwell =  400;
391         settle = 200;
392         minlyap = maxexp = ABS(-0.85);
393         minexp = -1.0 * minlyap;
394         break;
395
396       case 11:
397         mapindex = 1;
398         dwell =  400;
399         settle = 200;
400         minlyap = maxexp = ABS(-0.85);
401         minexp = -1.0 * minlyap;
402         break;
403
404       case 12:
405         ff = "abbb";
406         mapindex = 1;
407         dwell =  400;
408         settle = 200;
409         minlyap = maxexp = ABS(-0.85);
410         minexp = -1.0 * minlyap;
411         break;
412
413       case 13:
414         ff = "abbabaab";
415         mapindex = 1;
416         dwell =  400;
417         settle = 200;
418         minlyap = maxexp = ABS(-0.85);
419         minexp = -1.0 * minlyap;
420         break;
421
422       case 14:
423         ff = "abbabaab";
424         dwell =  800;
425         settle = 200;
426         minlyap = maxexp = ABS(-0.85);
427         minexp = -1.0 * minlyap;
428         /* ####  -x 0.05 */
429         min_a = 3.91; aflag++;
430         a_range =  0.0899999999; wflag++;
431         min_b =  3.28; bflag++;
432         b_range =  0.35; hflag++;
433         break;
434
435       case 15:
436         ff = "aaaaaabbbbbb";
437         dwell =  400;
438         settle = 200;
439         minlyap = maxexp = ABS(-0.85);
440         minexp = -1.0 * minlyap;
441         break;
442
443       case 16:
444         dwell =  400;
445         settle = 200;
446         minlyap = maxexp = ABS(-0.85);
447         minexp = -1.0 * minlyap;
448         break;
449
450       case 17:
451         ff = "abbb";
452         dwell =  400;
453         settle = 200;
454         minlyap = maxexp = ABS(-0.85);
455         minexp = -1.0 * minlyap;
456         break;
457
458       case 18:
459         ff = "abbabaab";
460         dwell =  400;
461         settle = 200;
462         minlyap = maxexp = ABS(-0.85);
463         minexp = -1.0 * minlyap;
464         break;
465
466       case 19:
467         mapindex = 2;
468         ff = "aaaaaabbbbbb";
469         dwell =  400;
470         settle = 200;
471         minlyap = maxexp = ABS(-0.85);
472         minexp = -1.0 * minlyap;
473         break;
474
475       case 20:
476         mapindex = 2;
477         dwell =  400;
478         settle = 200;
479         minlyap = maxexp = ABS(-0.85);
480         minexp = -1.0 * minlyap;
481         break;
482
483       case 21:
484         mapindex = 2;
485         ff = "abbb";
486         dwell =  400;
487         settle = 200;
488         minlyap = maxexp = ABS(-0.85);
489         minexp = -1.0 * minlyap;
490         break;
491
492       case 22:
493         mapindex = 2;
494         ff = "abbabaab";
495         dwell =  400;
496         settle = 200;
497         minlyap = maxexp = ABS(-0.85);
498         minexp = -1.0 * minlyap;
499         break;
500       }
501
502       if (ff) {
503         char *ch;
504         int bindex = 0;
505         maxindex = strlen(ff);
506         if (maxindex > MAXINDEX)
507           usage();
508         ch = ff;
509         force++;
510         while (bindex < maxindex) {
511           if (*ch == 'a')
512             forcing[bindex++] = 0;
513           else if (*ch == 'b')
514             forcing[bindex++] = 1;
515           else
516             usage();
517           ch++;
518         }
519       }
520     }
521
522   screen = DefaultScreen(dpy);
523   background = BlackPixel(dpy, screen);
524   setupmem();
525   init_data();
526   if (displayplanes > 1)
527     foreground = startcolor;
528   else
529     foreground = WhitePixel(dpy, screen);
530
531   /*
532   * Create the window to display the Lyapunov exponents
533   */
534   canvas = window;
535   init_canvas();
536
537   if (window != DefaultRootWindow(dpy))
538     XSelectInput(dpy,canvas,KeyPressMask|ButtonPressMask|ButtonMotionMask|
539                  ButtonReleaseMask|ExposureMask|StructureNotifyMask);
540   if (displayplanes > 1) {
541     init_color();
542   } else {
543     XQueryColors(dpy, DefaultColormap(dpy, DefaultScreen(dpy)),
544         Colors, numcolors);
545   }
546   pixmap = XCreatePixmap(dpy, DefaultRootWindow(dpy),
547                          width, height, DefaultDepth(dpy, screen));
548   rubber_data.band_cursor = XCreateFontCursor(dpy, XC_hand2);
549   CreateXorGC();
550   Clear();
551   for(;;)
552       main_event();
553 }
554
555 static void
556 main_event(void)
557 {
558   int n;
559   XEvent event;
560
561   if (complyap() == TRUE)
562       run=0;
563   n = XEventsQueued(dpy, QueuedAfterFlush);
564   while (n--) {
565           XNextEvent(dpy, &event);
566             switch(event.type)
567             {
568             case KeyPress:
569     Getkey(&event.xkey);
570     break;
571             case Expose:
572     redisplay(canvas, &event.xexpose);
573           break;
574             case ConfigureNotify:
575     resize();
576           break;
577             case ButtonPress:
578     StartRubberBand(canvas, &rubber_data, &event);
579           break;
580             case MotionNotify:
581     TrackRubberBand(canvas, &rubber_data, &event);
582           break;
583             case ButtonRelease:
584     EndRubberBand(canvas, &rubber_data, &event);
585           break;
586             }
587         }
588 }
589
590 /* complyap() is the guts of the program. This is where the Lyapunov exponent
591  * is calculated. For each iteration (past some large number of iterations)
592  * calculate the logarithm of the absolute value of the derivative at that
593  * point. Then average them over some large number of iterations. Some small
594  * speed up is achieved by utilizing the fact that log(a*b) = log(a) + log(b).
595  */
596 static int
597 complyap(void)
598 {
599   register i, bindex;
600   double total, prod, x, r;
601
602   if (!run)
603     return TRUE;
604   a += a_inc;
605   if (a >= max_a)
606     if (sendpoint(lyapunov) == TRUE)
607       return FALSE;
608     else {
609       FlushBuffer();
610       if (savefile)
611         save_to_file();
612       return TRUE;
613     }
614   if (b >= max_b) {
615     FlushBuffer();
616     if (savefile)
617       save_to_file();
618     return TRUE;
619   }
620   prod = 1.0;
621   total = 0.0;
622   bindex = 0;
623   x = start_x;
624   r = (forcing[bindex]) ? b : a;
625 #ifdef MAPS
626   findex = 0;
627   map = Maps[Forcing[findex]];
628 #endif
629   for (i=0;i<settle;i++) {     /* Here's where we let the thing */
630     x = (*map)(x, r);    /* "settle down". There is usually */
631     if (++bindex >= maxindex) { /* some initial "noise" in the */
632       bindex = 0;    /* iterations. How can we optimize */
633       if (Rflag)      /* the value of settle ??? */
634           setforcing();
635     }
636     r = (forcing[bindex]) ? b : a;
637 #ifdef MAPS
638     if (++findex >= funcmaxindex)
639       findex = 0;
640     map = Maps[Forcing[findex]];
641 #endif
642   }
643 #ifdef MAPS
644   deriv = Derivs[Forcing[findex]];
645 #endif
646   if (useprod) {      /* using log(a*b) */
647     for (i=0;i<dwell;i++) {
648       x = (*map)(x, r);
649       prod *= ABS((*deriv)(x, r));
650       /* we need to prevent overflow and underflow */
651       if ((prod > 1.0e12) || (prod < 1.0e-12)) {
652         total += log(prod);
653         prod = 1.0;
654       }
655       if (++bindex >= maxindex) {
656         bindex = 0;
657         if (Rflag)
658           setforcing();
659       }
660       r = (forcing[bindex]) ? b : a;
661 #ifdef MAPS
662       if (++findex >= funcmaxindex)
663         findex = 0;
664       map = Maps[Forcing[findex]];
665       deriv = Derivs[Forcing[findex]];
666 #endif
667     }
668     total += log(prod);
669     lyapunov = (total * M_LOG2E) / (double)dwell;
670   }
671   else {        /* use log(a) + log(b) */
672     for (i=0;i<dwell;i++) {
673       x = (*map)(x, r);
674       total += log(ABS((*deriv)(x, r)));
675       if (++bindex >= maxindex) {
676         bindex = 0;
677         if (Rflag)
678           setforcing();
679       }
680       r = (forcing[bindex]) ? b : a;
681 #ifdef MAPS
682       if (++findex >= funcmaxindex)
683         findex = 0;
684       map = Maps[Forcing[findex]];
685       deriv = Derivs[Forcing[findex]];
686 #endif
687     }
688     lyapunov = (total * M_LOG2E) / (double)dwell;
689   }
690   if (sendpoint(lyapunov) == TRUE)
691     return FALSE;
692   else {
693     FlushBuffer();
694     if (savefile)
695       save_to_file();
696     return TRUE;
697   }
698 }
699
700 static double
701 logistic(double x, double r)        /* the familiar logistic map */
702 {
703   return(r * x * (1.0 - x));
704 }
705
706 static double
707 dlogistic(double x, double r)       /* the derivative of logistic map */
708 {
709   return(r - (2.0 * r * x));
710 }
711
712 static double
713 circle(double x, double r)        /* sin() hump or sorta like the circle map */
714 {
715   return(r * sin(M_PI * x));
716 }
717
718 static double
719 dcircle(double x, double r)       /* derivative of the "sin() hump" */
720 {
721   return(r * M_PI * cos(M_PI * x));
722 }
723
724 static double
725 leftlog(double x, double r)       /* left skewed logistic */
726 {
727   double d;
728
729   d = 1.0 - x;
730   return(r * x * d * d);
731 }
732
733 static double
734 dleftlog(double x, double r)    /* derivative of the left skewed logistic */
735 {
736   return(r * (1.0 - (4.0 * x) + (3.0 * x * x)));
737 }
738
739 static double
740 rightlog(double x, double r)    /* right skewed logistic */
741 {
742   return(r * x * x * (1.0 - x));
743 }
744
745 static double
746 drightlog(double x, double r)    /* derivative of the right skewed logistic */
747 {
748   return(r * ((2.0 * x) - (3.0 * x * x)));
749 }
750
751 static double
752 doublelog(double x, double r)    /* double logistic */
753 {
754   double d;
755
756   d = 1.0 - x;
757   return(r * x * x * d * d);
758 }
759
760 static double
761 ddoublelog(double x, double r)   /* derivative of the double logistic */
762 {
763   double d;
764
765   d = x * x;
766   return(r * ((2.0 * x) - (6.0 * d) + (4.0 * x * d)));
767 }
768
769 static void
770 init_data(void)
771 {
772   numcolors = XDisplayCells(dpy, XDefaultScreen(dpy));
773   displayplanes = DisplayPlanes(dpy, XDefaultScreen(dpy));
774   if (numcolors > maxcolor)
775     numcolors = maxcolor;
776   numfreecols = numcolors - mincolindex;
777   lowrange = mincolindex - startcolor;
778   a_inc = a_range / (double)width;
779   b_inc = b_range / (double)height;
780   point.x = -1;
781   point.y = 0;
782   a = rubber_data.p_min = min_a;
783   b = rubber_data.q_min = min_b;
784   rubber_data.p_max = max_a;
785   rubber_data.q_max = max_b;
786   if (show)
787     show_defaults();
788   InitBuffer();
789 }
790
791 static void
792 init_canvas(void)
793 {
794   static int i;
795
796   /*
797   * create default, writable, graphics contexts for the canvas.
798   */
799         for (i=0; i<maxcolor; i++) {
800             Data_GC[i] = XCreateGC(dpy, DefaultRootWindow(dpy),
801                 (unsigned long) NULL, (XGCValues *) NULL);
802             /* set the background to black */
803             XSetBackground(dpy,Data_GC[i],BlackPixel(dpy,XDefaultScreen(dpy)));
804             /* set the foreground of the ith context to i */
805             XSetForeground(dpy, Data_GC[i], i);
806         }
807         if (displayplanes == 1) {
808             XSetForeground(dpy,Data_GC[0],BlackPixel(dpy,XDefaultScreen(dpy)));
809             XSetForeground(dpy,Data_GC[1],WhitePixel(dpy,XDefaultScreen(dpy)));
810         }
811 }
812
813 #if 0
814 static void
815 hls2rgb(int hue_light_sat[3],
816         int rgb[3])             /*      Each in range [0..65535]        */
817 {
818   unsigned short r, g, b;
819   hsv_to_rgb((int) (hue_light_sat[0] / 10),             /* 0-3600 -> 0-360 */
820              (int) ((hue_light_sat[2]/1000.0) * 64435), /* 0-1000 -> 0-65535 */
821              (int) ((hue_light_sat[1]/1000.0) * 64435), /* 0-1000 -> 0-65535 */
822              &r, &g, &b);
823   rgb[0] = r;
824   rgb[1] = g;
825   rgb[2] = b;
826 }
827 #endif /* 0 */
828
829
830 static void
831 init_color(void)
832 {
833 #if 1
834
835   int i;
836   XColor colors[256];
837   int ncolors = maxcolor;
838   Bool writable = False;
839   make_smooth_colormap(dpy, visual, cmap,
840                         colors, &ncolors, True, &writable, True);
841
842   for (i = 0; i < maxcolor; i++)
843     XSetForeground(dpy, Data_GC[i],
844                    colors[((int) ((i / ((float)maxcolor)) * ncolors))].pixel);
845
846 #else
847   static int i, j, colgap, leg, step;
848   static Visual *visual;
849   Colormap def_cmap;
850   int hls[3], rgb[3];
851
852   def_cmap = DefaultColormap(dpy, DefaultScreen(dpy));
853   for (i=0; i<numcolors; i++) {
854     Colors[i].pixel = i;
855     Colors[i].flags = DoRed|DoGreen|DoBlue;
856   }
857
858   /* Try to write into a new color map */
859   visual = DefaultVisual(dpy, DefaultScreen(dpy));
860   cmap = XCreateColormap(dpy, canvas, visual, AllocAll);
861   XQueryColors(dpy, def_cmap, Colors, numcolors);
862   if (mincolindex)
863     colgap = rgb_max / mincolindex;
864   else
865     colgap = rgb_max;
866   hls[0] = 50;  /* Hue in low range */
867   hls[2] = 1000;  /* Fully saturated */
868   for (i=startcolor; i<lowrange + startcolor; i++) {
869     hls[1] = 1000L * (i-startcolor) / lowrange;
870     hls2rgb(hls, rgb);
871     Colors[i].red = rgb[0];
872     Colors[i].green = rgb[1];
873     Colors[i].blue = rgb[2];
874   }
875   colgap = rgb_max / numcolors;
876   if (numwheels == 0)
877     XQueryColors(dpy, def_cmap, Colors, numcolors);
878   else if (numwheels == 1) {
879     colgap = 2*rgb_max/(numcolors - color_offset);
880     for (i=mincolindex; i<(numcolors/2); i++) {
881       Colors[i].blue = 0;
882       Colors[i].green=((i+color_offset)*colgap);
883       Colors[i].red=((i+color_offset)*colgap);
884     }
885     for (i=(numcolors/2); i<(numcolors); i++) {
886       Colors[i].blue = 0;
887       Colors[i].green=(((numcolors-i)+color_offset)*colgap);
888       Colors[i].red=(((numcolors-i)+color_offset)*colgap);
889     }
890   }
891   else if (numwheels == 2) {
892           hls[0] = 800; /* Hue in mid range */
893           hls[2] = 1000;  /* Fully saturated */
894           for (i=startcolor; i<lowrange + startcolor; i++) {
895       hls[1] = 1000L * (i-startcolor) / lowrange;
896       hls2rgb(hls, rgb);
897       Colors[i].red = rgb[0];
898       Colors[i].green = rgb[1];
899       Colors[i].blue = rgb[2];
900           }
901     for (i=mincolindex; i<(numcolors/2); i++) {
902       Colors[i].blue = rgb_max;
903       Colors[i].green = 0;
904       Colors[i].red=(i*2*rgb_max/numcolors);
905     }
906     for (i=(numcolors/2); i<numcolors; i++) {
907       Colors[i].blue = rgb_max;
908       Colors[i].green = 0;
909       Colors[i].red=((numcolors - i)*2*rgb_max/numcolors);
910     }
911   }
912   else if (numwheels == 3) {
913           hls[0] = 800; /* Hue in mid range */
914           hls[2] = 1000;  /* Fully saturated */
915           for (i=startcolor; i<lowrange + startcolor; i++) {
916       hls[1] = 1000L * (i-startcolor) / lowrange;
917       hls2rgb(hls, rgb);
918       Colors[i].red = rgb[0];
919       Colors[i].green = rgb[1];
920       Colors[i].blue = rgb[2];
921           }
922     colgap = 4*rgb_max/numcolors;
923     for (i=mincolindex; i<(numcolors/4); i++) {
924       Colors[i].blue = rgb_max;
925       Colors[i].green = 0;
926       Colors[i].red=(i*colgap);
927     }
928     for (i=(numcolors/4); i<(numcolors/2); i++) {
929       Colors[i].red = rgb_max;
930       Colors[i].green = 0;
931       Colors[i].blue=((numcolors/2) - i) * colgap;
932     }
933     for (i=(numcolors/2); i<(0.75*numcolors); i++) {
934       Colors[i].red = rgb_max;
935       Colors[i].blue=(i * colgap);
936       Colors[i].green = 0;
937     }
938     for (i=(0.75*numcolors); i<numcolors; i++) {
939       Colors[i].blue = rgb_max;
940       Colors[i].green = 0;
941       Colors[i].red=(numcolors-i)*colgap;
942     }
943   }
944   else if (numwheels == 4) {
945           hls[0] = 800; /* Hue in mid range */
946           hls[2] = 1000;  /* Fully saturated */
947           for (i=startcolor; i<lowrange + startcolor; i++) {
948       hls[1] = 1000L * (i-startcolor) / lowrange;
949       hls2rgb(hls, rgb);
950       Colors[i].red = rgb[0];
951       Colors[i].green = rgb[1];
952       Colors[i].blue = rgb[2];
953           }
954     colgap = numwheels * rgb_max / numcolors;
955     for (i=mincolindex; i<(numcolors/numwheels); i++) {
956       Colors[i].blue = rgb_max;
957       Colors[i].green = 0;
958       Colors[i].red=(i*colgap);
959     }
960     for (i=(numcolors/numwheels); i<(2*numcolors/numwheels); i++) {
961       Colors[i].red = rgb_max;
962       Colors[i].green = 0;
963       Colors[i].blue=((2*numcolors/numwheels) - i) * colgap;
964     }
965     for (i=(2*numcolors/numwheels); i<numcolors; i++) {
966       Colors[i].red = rgb_max;
967       Colors[i].green=(i - (2*numcolors/numwheels)) * colgap;
968       Colors[i].blue = 0;
969     }
970   }
971   else if (numwheels == 5) {
972     hls[1] = 700; /* Lightness in midrange */
973     hls[2] = 1000;  /* Fully saturated */
974     for (i=mincolindex; i<numcolors; i++) {
975       hls[0] = 3600L * i / numcolors;
976       hls2rgb(hls, rgb);
977       Colors[i].red = rgb[0];
978       Colors[i].green = rgb[1];
979       Colors[i].blue = rgb[2];
980     }
981     for (i=mincolindex; i<numcolors; i+=stripe_interval) {
982       hls[0] = 3600L * i / numcolors;
983       hls2rgb(hls, rgb);
984       Colors[i].red = rgb[0] / 2;
985       Colors[i].green = rgb[1] / 2;
986       Colors[i].blue = rgb[2] / 2;
987     }
988   }
989   else if (numwheels == 6) {
990       hls[0] = 800; /* Hue in mid range */
991       hls[2] = 1000;  /* Fully saturated */
992       for (i=startcolor; i<lowrange + startcolor; i++) {
993     hls[1] = 1000L * (i-startcolor) / lowrange;
994     hls2rgb(hls, rgb);
995     Colors[i].red = rgb[0];
996     Colors[i].green = rgb[1];
997     Colors[i].blue = rgb[2];
998       }
999       step = numfreecols / 3;
1000       leg = step+mincolindex;
1001       for (i = mincolindex; i < leg; ++i)
1002       {
1003     Colors[i].pixel = i;
1004     Colors[i].red = fabs(65535 - (double)i / step * 65535.0);
1005     Colors[i].blue = (double)i / step * 65535.0;
1006     Colors[i].green = 0;
1007     Colors[i].flags = DoRed | DoGreen | DoBlue;
1008       }
1009       for (j = 0, i = leg, leg += step; i < leg; ++i, ++j)
1010       {
1011     Colors[i].pixel = i;
1012     Colors[i].red = (double)j / step * 65535.0;
1013     Colors[i].blue = 65535;
1014     Colors[i].green = Colors[i].red;
1015     Colors[i].flags = DoRed | DoGreen | DoBlue;
1016       }
1017       for (j = 0, i = leg, leg += step; i < leg; ++i, ++j)
1018       {
1019     Colors[i].pixel = i;
1020     Colors[i].red = 65535;
1021     Colors[i].blue = fabs(65535 - (double)j / step * 65535.0);
1022     Colors[i].green = Colors[i].blue;
1023     Colors[i].flags = DoRed | DoGreen | DoBlue;
1024       }
1025   }
1026   else if (numwheels == MAXWHEELS) {  /* rainbow palette */
1027     hls[1] = 500; /* Lightness in midrange */
1028     hls[2] = 1000;  /* Fully saturated */
1029     for (i=mincolindex; i<numcolors; i++) {
1030       hls[0] = 3600L * i / numcolors;
1031       hls2rgb(hls, rgb);
1032       Colors[i].red = rgb[0];
1033       Colors[i].green = rgb[1];
1034       Colors[i].blue = rgb[2];
1035     }
1036   }
1037   XStoreColors(dpy, cmap, Colors, numcolors);
1038
1039   XSetWindowColormap(dpy, canvas, cmap);
1040 #endif
1041 }
1042
1043 static void
1044 parseargs()
1045 {
1046   static int i;
1047   int bindex=0, findex;
1048   char *s, *ch;
1049
1050   map = Maps[0];
1051   deriv = Derivs[0];
1052   maxexp=minlyap; minexp= -1.0 * minlyap;
1053
1054   mincolindex = get_integer_resource("minColor", "Integer");
1055   dwell = get_integer_resource("dwell", "Integer");
1056 #ifdef MAPS
1057   {
1058     char *optarg = get_string_resource("function", "String");
1059     funcmaxindex = strlen(optarg);
1060     if (funcmaxindex > FUNCMAXINDEX)
1061       usage();
1062     ch = optarg;
1063     Force++;
1064     for (findex=0;findex<funcmaxindex;findex++) {
1065       Forcing[findex] = (int)(*ch++ - '0');;
1066       if (Forcing[findex] >= NUMMAPS)
1067         usage();
1068     }
1069   }
1070 #endif
1071   if (get_boolean_resource("useLog", "Boolean"))
1072     useprod=0;
1073
1074   minlyap=ABS(get_float_resource("colorExponent", "Float"));
1075   maxexp=minlyap;
1076   minexp= -1.0 * minlyap;
1077
1078   color_offset = get_integer_resource("colorOffset", "Integer");
1079
1080   maxcolor=ABS(get_integer_resource("maxColor", "Integer"));
1081   if ((maxcolor - startcolor) <= 0)
1082     startcolor = 0;
1083   if ((maxcolor - mincolindex) <= 0) {
1084     mincolindex = 1;
1085     color_offset = 0;
1086   }
1087
1088   s = get_string_resource("randomForce", "Float");
1089   if (s && *s) {
1090     prob=atof(s); Rflag++; setforcing();
1091   }
1092
1093   settle = get_integer_resource("settle", "Integer");
1094
1095   s = get_string_resource("minA", "Float");
1096   if (s && *s) {
1097     min_a = atof(s);
1098     aflag++;
1099   }
1100   
1101   s = get_string_resource("minB", "Float");
1102   if (s && *s) {
1103     min_b=atof(s); bflag++;
1104   }
1105   
1106   numwheels = get_integer_resource("wheels", "Integer");
1107
1108   s = get_string_resource("forcingFunction", "String");
1109   if (s && *s) {
1110     maxindex = strlen(s);
1111     if (maxindex > MAXINDEX)
1112       usage();
1113     ch = s;
1114     force++;
1115     while (bindex < maxindex) {
1116       if (*ch == 'a')
1117         forcing[bindex++] = 0;
1118       else if (*ch == 'b')
1119         forcing[bindex++] = 1;
1120       else
1121         usage();
1122       ch++;
1123     }
1124   }
1125
1126   s = get_string_resource("bRange", "Float");
1127   if (s && *s) {
1128     b_range = atof(s);
1129     hflag++;
1130   }
1131
1132   start_x = get_float_resource("startX", "Float");
1133
1134   s = get_string_resource("mapIndex", "Integer");
1135   if (s && *s) {
1136     mapindex=atoi(s);
1137     if ((mapindex >= NUMMAPS) || (mapindex < 0))
1138       usage();
1139     map = Maps[mapindex];
1140     deriv = Derivs[mapindex];
1141     if (!aflag)
1142       min_a = amins[mapindex];
1143     if (!wflag)
1144       a_range = aranges[mapindex];
1145     if (!bflag)
1146       min_b = bmins[mapindex];
1147     if (!hflag)
1148       b_range = branges[mapindex];
1149     if (!Force)
1150       for (i=0;i<FUNCMAXINDEX;i++)
1151         Forcing[i] = mapindex;
1152   }
1153
1154   outname = get_string_resource("outputFile", "Integer");
1155
1156   if (get_boolean_resource("beNegative", "Boolean"))
1157     negative--;
1158
1159   rgb_max = get_integer_resource("rgbMax", "Integer");
1160   spinlength = get_integer_resource("spinLength", "Integer");
1161   show = get_boolean_resource("show", "Boolean");
1162
1163   s = get_string_resource("aRange", "Float");
1164   if (s && *s) {
1165     a_range = atof(s); wflag++;
1166   }
1167
1168   max_a = min_a + a_range;
1169   max_b = min_b + b_range;
1170
1171   a_minimums[0] = min_a; b_minimums[0] = min_b;
1172   a_maximums[0] = max_a; b_maximums[0] = max_b;
1173
1174   if (Force)
1175     if (maxindex == funcmaxindex)
1176       for (findex=0;findex<funcmaxindex;findex++)
1177         check_params(Forcing[findex],forcing[findex]);
1178     else
1179       fprintf(stderr, "Warning! Unable to check parameters\n");
1180   else
1181     check_params(mapindex,2);
1182 }
1183
1184 static void
1185 check_params(int mapnum, int parnum)
1186 {
1187
1188   if (parnum != 1) {
1189       if ((max_a > pmaxs[mapnum]) || (min_a < pmins[mapnum])) {
1190     fprintf(stderr, "Warning! Parameter 'a' out of range.\n");
1191     fprintf(stderr, "You have requested a range of (%f,%f).\n",
1192       min_a,max_a);
1193     fprintf(stderr, "Valid range is (%f,%f).\n",
1194       pmins[mapnum],pmaxs[mapnum]);
1195       }
1196   }
1197   if (parnum != 0) {
1198       if ((max_b > pmaxs[mapnum]) || (min_b < pmins[mapnum])) {
1199     fprintf(stderr, "Warning! Parameter 'b' out of range.\n");
1200     fprintf(stderr, "You have requested a range of (%f,%f).\n",
1201       min_b,max_b);
1202     fprintf(stderr, "Valid range is (%f,%f).\n",
1203       pmins[mapnum],pmaxs[mapnum]);
1204       }
1205   }
1206 }
1207
1208 static void
1209 usage(void)
1210 {
1211     fprintf(stderr,"lyap [-BLs][-W#][-H#][-a#][-b#][-w#][-h#][-x xstart]\n");
1212     fprintf(stderr,"\t[-M#][-S#][-D#][-f string][-r#][-O#][-C#][-c#][-m#]\n");
1213 #ifdef MAPS
1214     fprintf(stderr,"\t[-F string]\n");
1215 #endif
1216     fprintf(stderr,"\tWhere: -C# specifies the minimum color index\n");
1217     fprintf(stderr,"\t       -r# specifies the maxzimum rgb value\n");
1218     fprintf(stderr,"\t       -u displays this message\n");
1219     fprintf(stderr,"\t       -a# specifies the minimum horizontal parameter\n");
1220     fprintf(stderr,"\t       -b# specifies the minimum vertical parameter\n");
1221     fprintf(stderr,"\t       -w# specifies the horizontal parameter range\n");
1222     fprintf(stderr,"\t       -h# specifies the vertical parameter range\n");
1223     fprintf(stderr,"\t       -D# specifies the dwell\n");
1224     fprintf(stderr,"\t       -S# specifies the settle\n");
1225     fprintf(stderr,"\t       -H# specifies the initial window height\n");
1226     fprintf(stderr,"\t       -W# specifies the initial window width\n");
1227     fprintf(stderr,"\t       -O# specifies the color offset\n");
1228     fprintf(stderr,"\t       -c# specifies the desired color wheel\n");
1229     fprintf(stderr,"\t       -m# specifies the desired map (0-4)\n");
1230     fprintf(stderr,"\t       -f aabbb specifies a forcing function of 00111\n");
1231 #ifdef MAPS
1232     fprintf(stderr,"\t       -F 00111 specifies the function forcing function\n");
1233 #endif
1234     fprintf(stderr,"\t       -L indicates use log(x)+log(y) rather than log(xy)\n");
1235     fprintf(stderr,"\tDuring display :\n");
1236     fprintf(stderr,"\t     Use the mouse to zoom in on an area\n");
1237     fprintf(stderr,"\t     e or E recalculates color indices\n");
1238     fprintf(stderr,"\t     f or F saves exponents to a file\n");
1239     fprintf(stderr,"\t     KJmn increase/decrease minimum negative exponent\n");
1240     fprintf(stderr,"\t     r or R redraws\n");
1241     fprintf(stderr,"\t     s or S spins the colorwheel\n");
1242     fprintf(stderr,"\t     w or W changes the color wheel\n");
1243     fprintf(stderr,"\t     x or X clears the window\n");
1244     fprintf(stderr,"\t     q or Q exits\n");
1245     exit(1);
1246 }
1247
1248 static void
1249 Cycle_frames(void)
1250 {
1251   static int i;
1252   for (i=0;i<=maxframe;i++)
1253     redraw(exponents[i], expind[i], 1);
1254 }
1255
1256 static void
1257 Spin(Window w)
1258 {
1259   static int i, j;
1260   long tmpxcolor;
1261
1262   if (displayplanes > 1) {
1263     for (j=0;j<spinlength;j++) {
1264       tmpxcolor = Colors[mincolindex].pixel;
1265       for (i=mincolindex;i<numcolors-1;i++)
1266         Colors[i].pixel = Colors[i+1].pixel;
1267       Colors[numcolors-1].pixel = tmpxcolor;
1268       XStoreColors(dpy, cmap, Colors, numcolors);
1269     }
1270     for (j=0;j<spinlength;j++) {
1271       tmpxcolor = Colors[numcolors-1].pixel;
1272       for (i=numcolors-1;i>mincolindex;i--)
1273         Colors[i].pixel = Colors[i-1].pixel;
1274       Colors[mincolindex].pixel = tmpxcolor;
1275       XStoreColors(dpy, cmap, Colors, numcolors);
1276     }
1277   }
1278 }
1279
1280 static void
1281 Getkey(XKeyEvent *event)
1282 {
1283   unsigned char key;
1284   static int i;
1285   if (XLookupString(event, (char *)&key, sizeof(key), (KeySym *)0,
1286             (XComposeStatus *) 0) > 0)
1287     switch (key) {
1288   case '<': dwell /= 2; if (dwell < 1) dwell = 1; break;
1289   case '>': dwell *= 2; break;
1290   case '[': settle /= 2; if (settle < 1) settle = 1; break;
1291   case ']': settle *= 2; break;
1292   case 'd': go_down(); break;
1293   case 'D': FlushBuffer(); break;
1294   case 'e':
1295   case 'E': FlushBuffer();
1296       dorecalc = (!dorecalc);
1297       if (dorecalc)
1298       recalc();
1299       else {
1300       maxexp = minlyap; minexp = -1.0 * minlyap;
1301       }
1302       redraw(exponents[frame], expind[frame], 1);
1303       break;
1304   case 'f':
1305   case 'F': save_to_file(); break;
1306   case 'i': if (stripe_interval > 0) {
1307       stripe_interval--;
1308         if (displayplanes > 1) {
1309             init_color();
1310         }
1311       }
1312       break;
1313   case 'I': stripe_interval++;
1314       if (displayplanes > 1) {
1315         init_color();
1316       }
1317       break;
1318   case 'K': if (minlyap > 0.05)
1319       minlyap -= 0.05;
1320        break;
1321   case 'J': minlyap += 0.05;
1322        break;
1323   case 'm': mapindex++;
1324                   if (mapindex >= NUMMAPS)
1325                         mapindex=0;
1326                   map = Maps[mapindex];
1327                   deriv = Derivs[mapindex];
1328       if (!aflag)
1329                         min_a = amins[mapindex];
1330                   if (!wflag)
1331                         a_range = aranges[mapindex];
1332                   if (!bflag)
1333                         min_b = bmins[mapindex];
1334                   if (!hflag)
1335                         b_range = branges[mapindex];
1336                   if (!Force)
1337                         for (i=0;i<FUNCMAXINDEX;i++)
1338                              Forcing[i] = mapindex;
1339             max_a = min_a + a_range;
1340             max_b = min_b + b_range;
1341             a_minimums[0] = min_a; b_minimums[0] = min_b;
1342             a_maximums[0] = max_a; b_maximums[0] = max_b;
1343             a_inc = a_range / (double)width;
1344             b_inc = b_range / (double)height;
1345             point.x = -1;
1346             point.y = 0;
1347             a = rubber_data.p_min = min_a;
1348             b = rubber_data.q_min = min_b;
1349             rubber_data.p_max = max_a;
1350             rubber_data.q_max = max_b;
1351                   Clear();
1352                   break;
1353   case 'M': if (minlyap > 0.005)
1354       minlyap -= 0.005;
1355        break;
1356   case 'N': minlyap += 0.005;
1357        break;
1358   case 'p':
1359   case 'P': negative = (!negative);
1360       FlushBuffer(); redraw(exponents[frame], expind[frame], 1);
1361       break;
1362   case 'r': FlushBuffer(); redraw(exponents[frame], expind[frame], 1);
1363       break;
1364   case 'R': FlushBuffer(); Redraw(); break;
1365   case 's':
1366        spinlength=spinlength/2;
1367   case 'S': if (displayplanes > 1)
1368       Spin(canvas);
1369        spinlength=spinlength*2; break;
1370   case 'u': go_back(); break;
1371   case 'U': go_init(); break;
1372   case 'v':
1373   case 'V': print_values(); break;
1374   case 'W': if (numwheels < MAXWHEELS)
1375       numwheels++;
1376        else
1377       numwheels = 0;
1378        if (displayplanes > 1) {
1379         init_color();
1380        }
1381        break;
1382   case 'w': if (numwheels > 0)
1383       numwheels--;
1384        else
1385       numwheels = MAXWHEELS;
1386        if (displayplanes > 1) {
1387         init_color();
1388        }
1389        break;
1390   case 'x': Clear(); break;
1391   case 'X': Destroy_frame(); break;
1392   case 'z': Cycle_frames(); redraw(exponents[frame], expind[frame], 1);
1393       break;
1394   case 'Z': while (!XPending(dpy)) Cycle_frames();
1395       redraw(exponents[frame], expind[frame], 1); break;
1396   case 'q':
1397   case 'Q': exit(0); break;
1398   case '?':
1399   case 'h':
1400   case 'H': print_help(); break;
1401   default:  break;
1402   }
1403 }
1404
1405 /* Here's where we index into a color map. After the Lyapunov exponent is
1406  * calculated, it is used to determine what color to use for that point.
1407  * I suppose there are a lot of ways to do this. I used the following :
1408  * if it's non-negative then there's a reserved area at the lower range
1409  * of the color map that i index into. The ratio of some "minimum exponent
1410  * value" and the calculated value is used as a ratio of how high to index
1411  * into this reserved range. Usually these colors are dark red (see init_color).
1412  * If the exponent is negative, the same ratio (expo/minlyap) is used to index
1413  * into the remaining portion of the colormap (which is usually some light
1414  * shades of color or a rainbow wheel). The coloring scheme can actually make
1415  * a great deal of difference in the quality of the picture. Different colormaps
1416  * bring out different details of the dynamics while different indexing
1417  * algorithms also greatly effect what details are seen. Play around with this.
1418  */
1419 static int
1420 sendpoint(double expo)
1421 {
1422   static int index;
1423   static double tmpexpo;
1424
1425   point.x++;
1426   tmpexpo = (negative) ? expo : -1.0 * expo;
1427   if (tmpexpo > 0) {
1428     if (displayplanes >1) {
1429         index = (int)(tmpexpo*lowrange/maxexp);
1430         index = (index % lowrange) + startcolor;
1431     }
1432     else
1433         index = 0;
1434   }
1435   else {
1436     if (displayplanes >1) {
1437         index = (int)(tmpexpo*numfreecols/minexp);
1438         index = (index % numfreecols) + mincolindex;
1439     }
1440     else
1441         index = 1;
1442   }
1443     BufferPoint(dpy, canvas, index, point.x, point.y);
1444   if (save)
1445     exponents[frame][expind[frame]++] = expo;
1446   if (point.x >= width) {
1447     point.y++;
1448     point.x = 0;
1449     if (save) {
1450       b += b_inc;
1451       a = min_a;
1452     }
1453     if (point.y >= height)
1454       return FALSE;
1455     else
1456       return TRUE;
1457   }
1458   return TRUE;
1459 }
1460
1461 static void
1462 redisplay (Window w, XExposeEvent *event)
1463 {
1464   /*
1465   * Extract the exposed area from the event and copy
1466   * from the saved pixmap to the window.
1467   */
1468   XCopyArea(dpy, pixmap, canvas, Data_GC[0],
1469            event->x, event->y, event->width, event->height,
1470            event->x, event->y);
1471 }
1472
1473 static void
1474 resize(void)
1475 {
1476   Window r;
1477   int n, x, y;
1478   unsigned int bw, d, new_w, new_h;
1479
1480   XGetGeometry(dpy,canvas,&r,&x,&y,&new_w,&new_h,&bw,&d);
1481   if ((new_w == width) && (new_h == height))
1482     return;
1483   width = new_w; height = new_h;
1484   XClearWindow(dpy, canvas);
1485   if (pixmap)
1486     XFreePixmap(dpy, pixmap);
1487   pixmap = XCreatePixmap(dpy, DefaultRootWindow(dpy),
1488       width, height, DefaultDepth(dpy, screen));
1489   a_inc = a_range / (double)width;
1490   b_inc = b_range / (double)height;
1491   point.x = -1;
1492   point.y = 0;
1493   run = 1;
1494   a = rubber_data.p_min = min_a;
1495   b = rubber_data.q_min = min_b;
1496   rubber_data.p_max = max_a;
1497   rubber_data.q_max = max_b;
1498   freemem();
1499   setupmem();
1500         for (n=0;n<MAXFRAMES;n++)
1501     if ((n <= maxframe) && (n != frame))
1502         resized[n] = 1;
1503   InitBuffer();
1504   Clear();
1505   Redraw();
1506 }
1507
1508 static void
1509 redraw(double *exparray, int index, int cont)
1510 {
1511   static int i;
1512   static int x_sav, y_sav;
1513
1514   x_sav = point.x;
1515   y_sav = point.y;
1516
1517   point.x = -1;
1518   point.y = 0;
1519
1520   save=0;
1521   for (i=0;i<index;i++)
1522     sendpoint(exparray[i]);
1523   save=1;
1524
1525   if (cont) {
1526     point.x = x_sav;
1527     point.y = y_sav;
1528   }
1529   else {
1530     a = point.x * a_inc + min_a;
1531     b = point.y * b_inc + min_b;
1532   }
1533   FlushBuffer();
1534 }
1535
1536 static void
1537 Redraw(void)
1538 {
1539   FlushBuffer();
1540         point.x = -1;
1541         point.y = 0;
1542   run = 1;
1543         a = min_a;
1544         b = min_b;
1545   expind[frame] = 0;
1546   resized[frame] = 0;
1547 }
1548
1549 /* Store color pics in PPM format and monochrome in PGM */
1550 static void
1551 save_to_file(void)
1552 {
1553   FILE *outfile;
1554   unsigned char c;
1555   XImage *ximage;
1556   static int i,j;
1557   struct Colormap {
1558     unsigned char red;
1559     unsigned char green;
1560     unsigned char blue;
1561   };
1562   struct Colormap *colormap=NULL;
1563
1564   if (colormap)
1565     free(colormap);
1566   if ((colormap=
1567     (struct Colormap *)malloc(sizeof(struct Colormap)*maxcolor))
1568       == NULL) {
1569     fprintf(stderr,"Error malloc'ing colormap array\n");
1570     exit(-1);
1571   }
1572   outfile = fopen(outname,"w");
1573   if(!outfile) {
1574     perror(outname);
1575     exit(-1);
1576   }
1577
1578   ximage=XGetImage(dpy, pixmap, 0, 0, width, height, AllPlanes, XYPixmap);
1579
1580   if (displayplanes > 1) {
1581     for (i=0;i<maxcolor;i++) {
1582       colormap[i].red=(unsigned char)(Colors[i].red >> 8);
1583       colormap[i].green=(unsigned char)(Colors[i].green >> 8);
1584       colormap[i].blue =(unsigned char)(Colors[i].blue >> 8);
1585     }
1586     fprintf(outfile,"P%d %d %d\n",6,width,height);
1587   }
1588   else
1589     fprintf(outfile,"P%d %d %d\n",5,width,height);
1590   fprintf(outfile,"# settle=%d  dwell=%d start_x=%f\n",settle,dwell,
1591         start_x);
1592   fprintf(outfile,"# min_a=%f  a_rng=%f  max_a=%f\n",min_a,a_range,max_a);
1593   fprintf(outfile,"# min_b=%f  b_rng=%f  max_b=%f\n",min_b,b_range,max_b);
1594   if (Rflag)
1595     fprintf(outfile,"# pseudo-random forcing\n");
1596   else if (force) {
1597     fprintf(outfile,"# periodic forcing=");
1598     for (i=0;i<maxindex;i++) {
1599       fprintf(outfile,"%d",forcing[i]);
1600     }
1601     fprintf(outfile,"\n");
1602   }
1603   else
1604     fprintf(outfile,"# periodic forcing=01\n");
1605   if (Force) {
1606     fprintf(outfile,"# function forcing=");
1607     for (i=0;i<funcmaxindex;i++) {
1608       fprintf(outfile,"%d",Forcing[i]);
1609     }
1610     fprintf(outfile,"\n");
1611   }
1612   fprintf(outfile,"%d\n",numcolors-1);
1613
1614   for (j=0;j<height;j++)
1615       for (i=0;i<width;i++) {
1616     c = (unsigned char)XGetPixel(ximage,i,j);
1617     if (displayplanes > 1)
1618         fwrite((char *)&colormap[c],sizeof colormap[0],1,outfile);
1619     else
1620         fwrite((char *)&c,sizeof c,1,outfile);
1621       }
1622   fclose(outfile);
1623 }
1624
1625 static void
1626 recalc(void)
1627 {
1628   static int i, x, y;
1629
1630   minexp = maxexp = 0.0;
1631   x = y = 0;
1632   for (i=0;i<expind[frame];i++) {
1633     if (exponents[frame][i] < minexp)
1634       minexp = exponents[frame][i];
1635     if (exponents[frame][i] > maxexp)
1636       maxexp = exponents[frame][i];
1637   }
1638 }
1639
1640 static void
1641 Clear(void)
1642 {
1643       XClearWindow(dpy, canvas);
1644   XCopyArea(dpy, canvas, pixmap, Data_GC[0],
1645             0, 0, width, height, 0, 0);
1646   InitBuffer();
1647 }
1648
1649 static void
1650 show_defaults(void)
1651 {
1652
1653   printf("Width=%d  Height=%d  numcolors=%d  settle=%d  dwell=%d\n",
1654     width,height,numcolors,settle,dwell);
1655   printf("min_a=%f  a_range=%f  max_a=%f\n", min_a,a_range,max_a);
1656   printf("min_b=%f  b_range=%f  max_b=%f\n", min_b,b_range,max_b);
1657   printf("minlyap=%f  minexp=%f  maxexp=%f\n", minlyap,minexp,maxexp);
1658   exit(0);
1659 }
1660
1661 static void
1662 CreateXorGC(void)
1663 {
1664   XGCValues values;
1665
1666   values.foreground = foreground;
1667   values.line_style = LineSolid;
1668   values.function = GXxor;
1669   RubberGC = XCreateGC(dpy, DefaultRootWindow(dpy),
1670         GCForeground | GCBackground | GCFunction | GCLineStyle, &values);
1671 }
1672
1673 static void
1674 StartRubberBand(Window w, image_data_t *data, XEvent *event)
1675 {
1676   XPoint corners[5];
1677
1678   nostart = 0;
1679   data->rubber_band.last_x = data->rubber_band.start_x = event->xbutton.x;
1680   data->rubber_band.last_y = data->rubber_band.start_y = event->xbutton.y;
1681   SetupCorners(corners, data);
1682   XDrawLines(dpy, canvas, RubberGC,
1683       corners, sizeof(corners) / sizeof(corners[0]), CoordModeOrigin);
1684 }
1685
1686 static void
1687 SetupCorners(XPoint *corners, image_data_t *data)
1688 {
1689   corners[0].x = data->rubber_band.start_x;
1690   corners[0].y = data->rubber_band.start_y;
1691   corners[1].x = data->rubber_band.start_x;
1692   corners[1].y = data->rubber_band.last_y;
1693   corners[2].x = data->rubber_band.last_x;
1694   corners[2].y = data->rubber_band.last_y;
1695   corners[3].x = data->rubber_band.last_x;
1696   corners[3].y = data->rubber_band.start_y;
1697   corners[4] = corners[0];
1698 }
1699
1700 static void
1701 TrackRubberBand(Window w, image_data_t *data, XEvent *event)
1702 {
1703   XPoint corners[5];
1704   int xdiff, ydiff;
1705
1706   if (nostart)
1707     return;
1708   SetupCorners(corners, data);
1709   XDrawLines(dpy, canvas, RubberGC,
1710       corners, sizeof(corners) / sizeof(corners[0]), CoordModeOrigin);
1711   ydiff = event->xbutton.y - data->rubber_band.start_y;
1712   xdiff = event->xbutton.x - data->rubber_band.start_x;
1713   data->rubber_band.last_x = data->rubber_band.start_x + xdiff;
1714   data->rubber_band.last_y = data->rubber_band.start_y + ydiff;
1715   if (data->rubber_band.last_y < data->rubber_band.start_y ||
1716       data->rubber_band.last_x < data->rubber_band.start_x)
1717   {
1718     data->rubber_band.last_y = data->rubber_band.start_y;
1719     data->rubber_band.last_x = data->rubber_band.start_x;
1720   }
1721   SetupCorners(corners, data);
1722   XDrawLines(dpy, canvas, RubberGC,
1723       corners, sizeof(corners) / sizeof(corners[0]), CoordModeOrigin);
1724 }
1725
1726 static void
1727 EndRubberBand(Window w, image_data_t *data, XEvent *event)
1728 {
1729   XPoint corners[5];
1730   XPoint top, bot;
1731   double delta, diff;
1732
1733   nostart = 1;
1734   SetupCorners(corners, data);
1735   XDrawLines(dpy, canvas, RubberGC,
1736       corners, sizeof(corners) / sizeof(corners[0]), CoordModeOrigin);
1737   if (data->rubber_band.start_x >= data->rubber_band.last_x ||
1738       data->rubber_band.start_y >= data->rubber_band.last_y)
1739     return;
1740   top.x = data->rubber_band.start_x;
1741   bot.x = data->rubber_band.last_x;
1742   top.y = data->rubber_band.start_y;
1743   bot.y = data->rubber_band.last_y;
1744   diff = data->q_max - data->q_min;
1745   delta = (double)top.y / (double)height;
1746   data->q_min += diff * delta;
1747   delta = (double)(height - bot.y) / (double)height;
1748   data->q_max -= diff * delta;
1749   diff = data->p_max - data->p_min;
1750   delta = (double)top.x / (double)width;
1751   data->p_min += diff * delta;
1752   delta = (double)(width - bot.x) / (double)width;
1753   data->p_max -= diff * delta;
1754   fflush(stdout);
1755   set_new_params(w, data);
1756 }
1757
1758 static void
1759 set_new_params(Window w, image_data_t *data)
1760 {
1761   frame = (maxframe + 1) % MAXFRAMES;
1762   if (frame > maxframe)
1763     maxframe = frame;
1764   a_range = data->p_max - data->p_min;
1765   b_range = data->q_max - data->q_min;
1766         a_minimums[frame] = min_a = data->p_min;
1767         b_minimums[frame] = min_b = data->q_min;
1768         a_inc = a_range / (double)width;
1769         b_inc = b_range / (double)height;
1770         point.x = -1;
1771         point.y = 0;
1772   run = 1;
1773         a = min_a;
1774         b = min_b;
1775         a_maximums[frame] = max_a = data->p_max;
1776         b_maximums[frame] = max_b = data->q_max;
1777   expind[frame] = 0;;
1778   Clear();
1779 }
1780
1781 static void
1782 go_down(void)
1783 {
1784   frame++;
1785   if (frame > maxframe)
1786     frame = 0;
1787   jumpwin();
1788 }
1789
1790 static void
1791 go_back(void)
1792 {
1793   frame--;
1794   if (frame < 0)
1795     frame = maxframe;
1796   jumpwin();
1797 }
1798
1799 static void
1800 jumpwin(void)
1801 {
1802   rubber_data.p_min = min_a = a_minimums[frame];
1803   rubber_data.q_min = min_b = b_minimums[frame];
1804   rubber_data.p_max = max_a = a_maximums[frame];
1805   rubber_data.q_max = max_b = b_maximums[frame];
1806   a_range = max_a - min_a;
1807   b_range = max_b - min_b;
1808         a_inc = a_range / (double)width;
1809         b_inc = b_range / (double)height;
1810         point.x = -1;
1811         point.y = 0;
1812         a = min_a;
1813         b = min_b;
1814   Clear();
1815   if (resized[frame])
1816     Redraw();
1817   else
1818     redraw(exponents[frame], expind[frame], 0);
1819 }
1820
1821 static void
1822 go_init(void)
1823 {
1824   frame = 0;
1825   jumpwin();
1826 }
1827
1828 static void
1829 Destroy_frame(void)
1830 {
1831   static int i;
1832
1833   for (i=frame; i<maxframe; i++) {
1834     exponents[frame] = exponents[frame+1];
1835     expind[frame] = expind[frame+1];
1836     a_minimums[frame] = a_minimums[frame+1];
1837     b_minimums[frame] = b_minimums[frame+1];
1838     a_maximums[frame] = a_maximums[frame+1];
1839     b_maximums[frame] = b_maximums[frame+1];
1840   }
1841   maxframe--;
1842   go_back();
1843 }
1844
1845 static void
1846 InitBuffer(void)
1847 {
1848   int i;
1849
1850   for (i = 0 ; i < maxcolor; ++i)
1851     Points.npoints[i] = 0;
1852 }
1853
1854 static void
1855 BufferPoint(Display *display, Window window, int color, int x, int y)
1856 {
1857   if (Points.npoints[color] == MAXPOINTS)
1858   {
1859     XDrawPoints(display, window, Data_GC[color],
1860         Points.data[color], Points.npoints[color], CoordModeOrigin);
1861     XDrawPoints(display, pixmap, Data_GC[color],
1862         Points.data[color], Points.npoints[color], CoordModeOrigin);
1863     Points.npoints[color] = 0;
1864   }
1865   Points.data[color][Points.npoints[color]].x = x;
1866   Points.data[color][Points.npoints[color]].y = y;
1867   ++Points.npoints[color];
1868 }
1869
1870 static void
1871 FlushBuffer(void)
1872 {
1873   int color;
1874
1875   for (color = 0; color < maxcolor; ++color)
1876     if (Points.npoints[color])
1877     {
1878         XDrawPoints(dpy, canvas, Data_GC[color],
1879           Points.data[color], Points.npoints[color],
1880           CoordModeOrigin);
1881         XDrawPoints(dpy, pixmap, Data_GC[color],
1882           Points.data[color], Points.npoints[color],
1883           CoordModeOrigin);
1884         Points.npoints[color] = 0;
1885     }
1886 }
1887
1888 static void
1889 print_help(void)
1890 {
1891     printf("During run-time, interactive control can be exerted via : \n");
1892     printf("Mouse buttons allow rubber-banding of a zoom box\n");
1893     printf("< halves the 'dwell', > doubles the 'dwell'\n");
1894     printf("[ halves the 'settle', ] doubles the 'settle'\n");
1895     printf("D flushes the drawing buffer\n");
1896     printf("e or E recalculates color indices\n");
1897     printf("f or F saves exponents to a file\n");
1898     printf("h or H or ? displays this message\n");
1899     printf("i decrements, I increments the stripe interval\n");
1900     printf("KJMN increase/decrease minimum negative exponent\n");
1901     printf("m increments the map index, changing maps\n");
1902     printf("p or P reverses the colormap for negative/positive exponents\n");
1903     printf("r redraws without recalculating\n");
1904     printf("R redraws, recalculating with new dwell and settle values\n");
1905     printf("s or S spins the colorwheel\n");
1906     printf("u pops back up to the last zoom\n");
1907     printf("U pops back up to the first picture\n");
1908     printf("v or V displays the values of various settings\n");
1909     printf("w decrements, W increments the color wheel index\n");
1910     printf("x or X clears the window\n");
1911     printf("q or Q exits\n");
1912 }
1913
1914 static void
1915 print_values(void)
1916 {
1917     static int i;
1918
1919     printf("\nminlyap=%f minexp=%f maxexp=%f\n",minlyap,minexp,maxexp);
1920     printf("width=%d height=%d\n",width,height);
1921     printf("settle=%d  dwell=%d start_x=%f\n",settle,dwell, start_x);
1922     printf("min_a=%f  a_rng=%f  max_a=%f\n",min_a,a_range,max_a);
1923     printf("min_b=%f  b_rng=%f  max_b=%f\n",min_b,b_range,max_b);
1924     if (Rflag)
1925   printf("pseudo-random forcing\n");
1926     else if (force) {
1927   printf("periodic forcing=");
1928   for (i=0;i<maxindex;i++)
1929     printf("%d",forcing[i]);
1930   printf("\n");
1931     }
1932     else
1933   printf("periodic forcing=01\n");
1934     if (Force) {
1935   printf("function forcing=");
1936   for (i=0;i<funcmaxindex;i++) {
1937     printf("%d",Forcing[i]);
1938   }
1939   printf("\n");
1940     }
1941     printf("numcolors=%d\n",numcolors-1);
1942 }
1943
1944 static void
1945 freemem(void)
1946 {
1947   static int i;
1948
1949         for (i=0;i<MAXFRAMES;i++)
1950                 free(exponents[i]);
1951 }
1952
1953 static void
1954 setupmem(void)
1955 {
1956   static int i;
1957
1958         for (i=0;i<MAXFRAMES;i++) {
1959                 if((exponents[i]=
1960                     (double *)malloc(sizeof(double)*width*height))==NULL){
1961                     fprintf(stderr,"Error malloc'ing exponent array.\n");
1962                     exit(-1);
1963                 }
1964         }
1965 }
1966
1967 static void
1968 setforcing(void)
1969 {
1970   static int i;
1971   for (i=0;i<MAXINDEX;i++)
1972     forcing[i] = (random() > prob) ? 0 : 1;
1973 }