From http://www.jwz.org/xscreensaver/xscreensaver-5.37.tar.gz
[xscreensaver] / hacks / forest.c
1 /* forest.c (aka xtree.c), Copyright (c) 1999
2  *  Peter Baumung <unn6@rz.uni-karlsruhe.de>
3  *
4  * Most code taken from
5  *  xscreensaver, Copyright (c) 1992, 1995, 1997 
6  *  Jamie Zawinski <jwz@netscape.com>
7  *
8  * Permission to use, copy, modify, distribute, and sell this software and its
9  * documentation for any purpose is hereby granted without fee, provided that
10  * the above copyright notice appear in all copies and that both that
11  * copyright notice and this permission notice appear in supporting
12  * documentation.  No representations are made about the suitability of this
13  * software for any purpose.  It is provided "as is" without express or 
14  * implied warranty.
15  */
16
17 #ifdef HAVE_CONFIG_H
18 # include "config.h"
19 #endif
20
21 /* ******************************   NOTE   ******************************
22
23      This is not the xlockmore version of forest, but a much better
24      looking rewrite.  Be careful not to delete it in a merging frenzy...
25
26    **********************************************************************
27  */
28
29 #ifdef STANDALONE
30 # define DEFAULTS   "*delay:            500000 \n"  \
31                     "*ncolors:          20     \n" \
32                     "*fpsSolid:          true     \n" \
33
34 # include "xlockmore.h"     /* from the xscreensaver distribution */
35 # define refresh_trees 0
36 # define release_trees 0
37 # define reshape_trees 0
38 # define trees_handle_event 0
39 #else  /* !STANDALONE */
40 # include "xlock.h"                                     /* from the xlockmore distribution */
41 #endif /* !STANDALONE */
42
43 ENTRYPOINT ModeSpecOpt trees_opts = {0, NULL, 0, NULL, NULL};
44
45 typedef struct {
46   int     x;
47   int     y;
48   int     thick;
49   double  size;
50   long    color;
51   int     toDo;
52   int     pause;
53   int     season;
54 } treestruct;
55
56 static treestruct *trees = NULL;
57
58 static XColor colors[20];
59 static int color;
60
61 static long colorM[12] = {0xff0000, 0xff8000, 0xffff00, 0x80ff00,
62                           0x00ff00, 0x00ff80, 0x00ffff, 0x0080ff,
63                           0x0000ff, 0x8000ff, 0xff00ff, 0xff0080};
64
65 static long colorV[12] = {0x0a0000, 0x0a0500, 0x0a0a00, 0x050a00,
66                           0x000a00, 0x000a05, 0x000a0a, 0x00050a,
67                           0x00000a, 0x05000a, 0x0a000a, 0x0a0005};
68
69 ENTRYPOINT void
70 init_trees(ModeInfo * mi)
71 {
72   treestruct       *tree;
73   Display          *display = MI_DISPLAY(mi);
74   GC                gc = MI_GC(mi);
75   int               i;
76
77   if (trees == NULL) {
78                 
79     if (mi->npixels > 20) {
80                         printf("%d colors selected. Setting limit to 20...\n", mi->npixels);
81                         mi->npixels = 20;
82                 }
83                         
84                 if (mi->npixels < 4) {
85       for (i = 0; i < mi->npixels; i++) {
86         colors[i].red   = 65535 * (i & 1);
87         colors[i].green = 65535 * (i & 1);
88         colors[i].blue  = 65535 * (i & 1);
89         colors[i].flags = DoRed | DoGreen | DoBlue;
90       }
91     } else {
92       if (mi->npixels < 8) {
93         for (i = 0; i < mi->npixels; i++) {
94           colors[i].red   = 32768 + 4096 * (i % 4);
95           colors[i].green = 32768 + 4096 * (i % 4);
96           colors[i].blue  = 32768 + 4096 * (i % 4);
97           colors[i].flags = DoRed | DoGreen | DoBlue;
98         }
99       } else {
100         for (i = 0; i < mi->npixels; i++) {
101           colors[i].red   = 24576 + 4096 * (i % 4);
102           colors[i].green = 10240 + 2048 * (i % 4);
103           colors[i].blue  =  0;
104           colors[i].flags = DoRed | DoGreen | DoBlue;
105         }
106       }
107     }
108
109     for (i = 0; i < mi->npixels; i++)
110       if (!XAllocColor(display, mi->xgwa.colormap, &colors[i])) break;
111     color = i;
112
113     XSetForeground(display, gc, colors[1].pixel);
114   }
115
116   MI_INIT (mi, trees, 0);
117
118   XClearWindow(display, MI_WINDOW(mi));
119   XSetLineAttributes(display, gc, 2, LineSolid, CapButt, JoinMiter);
120   tree = &trees[MI_SCREEN(mi)];
121   tree->toDo   = 25;
122         tree->season = NRAND(12);
123
124   for (i = 4; i < mi->npixels; i++) {
125     int sIndex = (tree->season + (i-4) / 4) % 12;
126     long color = colorM[sIndex] - 2 * colorV[sIndex] * (i % 4);
127     colors[i].red = (color & 0xff0000) / 256;
128     colors[i].green = (color & 0x00ff00);
129     colors[i].blue = (color & 0x0000ff) * 256;
130     colors[i].flags = DoRed | DoGreen | DoBlue;
131   }
132
133   for (i = 0; i < mi->npixels; i++)
134     if (!XAllocColor(display, mi->xgwa.colormap, &colors[i])) break;
135
136   color = i;
137 }
138
139 static double rRand(double a, double b)
140 {
141   return (a+(b-a)*NRAND(10001)/10000.0);
142 }
143
144 static void draw_line(ModeInfo * mi,
145                       int x1, int y1, int x2, int y2,
146                       double angle, int widths, int widthe)
147 {
148
149   Display    *display = MI_DISPLAY(mi);
150   GC          gc = MI_GC(mi);
151   double      sns = 0.5*widths*sin(angle + M_PI_2);
152   double      css = 0.5*widths*cos(angle + M_PI_2);
153   double      sne = 0.5*widthe*sin(angle + M_PI_2);
154   double      cse = 0.5*widthe*cos(angle + M_PI_2);
155
156   int         xs1 = (int) (x1-sns);
157   int         xs2 = (int) (x1+sns);
158   int         ys1 = (int) (y1-css);
159   int         ys2 = (int) (y1+css);
160   int         xe1 = (int) (x2-sne);
161   int         xe2 = (int) (x2+sne);
162   int         ye1 = (int) (y2-cse);
163   int         ye2 = (int) (y2+cse);
164   int         i;
165
166   for (i = 0; i < widths; i++) {
167     if (color >= 4)
168       XSetForeground(display, gc, colors[i*4/widths].pixel);
169     XDrawLine(display, MI_WINDOW(mi), gc,
170       xs1+(xs2-xs1)*i/widths, ys1+(ys2-ys1)*i/widths,
171       xe1+(xe2-xe1)*i/widths, ye1+(ye2-ye1)*i/widths);
172   }
173 }
174
175 static void draw_tree_rec(ModeInfo * mi, double thick, int x, int y, double angle)
176 {
177   treestruct *tree = &trees[MI_SCREEN(mi)];
178   Display    *display = MI_DISPLAY(mi);
179   GC          gc = MI_GC(mi);
180   int         length = (24+NRAND(12))*tree->size;
181   int         a = (int) (x - length*sin(angle));
182   int         b = (int) (y - length*cos(angle));
183   int         i;
184
185   draw_line(mi, x, y, a, b, angle, thick*tree->size, 0.68*thick*tree->size);
186
187   if (thick > 2) {
188     draw_tree_rec(mi, 0.68*thick, a, b, 0.8*angle+rRand(-0.2, 0.2));
189     if (thick < tree->thick-1) {
190       draw_tree_rec(mi, 0.68*thick, a, b, angle+rRand(0.2, 0.9));
191       draw_tree_rec(mi, 0.68*thick, (a+x)/2, (b+y)/2, angle-rRand(0.2, 0.9));
192     }
193   }
194
195   if (thick < 0.5*tree->thick) {
196         int     nleaf = 12 + NRAND(4);
197           XArc    leaf[16];
198     for (i = 0; i < nleaf; i++) {
199       leaf[i].x = a + (int) (tree->size * rRand(-12, 12));
200       leaf[i].y = b + (int) (tree->size * rRand(-12, 12));
201       leaf[i].width = (int) (tree->size * rRand(2, 6));
202       leaf[i].height = leaf[i].width;
203       leaf[i].angle1 = 0;
204       leaf[i].angle2 = 360 * 64;
205     }
206     if (mi->npixels >= 4)
207       XSetForeground(display, gc, colors[tree->color+NRAND(4)].pixel);
208     XFillArcs(display, MI_WINDOW(mi), gc, leaf, nleaf);
209   }
210 }
211
212 ENTRYPOINT void
213 draw_trees(ModeInfo * mi)
214 {
215   treestruct *tree = &trees[MI_SCREEN(mi)];
216         int                                     width = MI_WIN_WIDTH(mi);
217         int                                     height = MI_WIN_HEIGHT(mi);
218
219   if (tree->pause == 1) {
220     tree->pause--;
221     init_trees(mi);
222   } else if (tree->pause > 1) {
223     tree->pause--;
224     return;
225   } else if (--(tree->toDo) == 0) {
226     tree->pause = 6;
227     return;
228   }
229
230   tree->x        = NRAND(width);
231   tree->y        = (int) (1.25 * height * (1 - tree->toDo / 23.0));
232   tree->thick    = rRand(7, 12);
233   tree->size     = height / 480.0;
234   if (color < 8) {
235     tree->color = 0;
236   } else {
237     tree->color    = 4 * (1 + NRAND(color / 4 - 1));
238   }
239
240   draw_tree_rec(mi, tree->thick, tree->x, tree->y, rRand(-0.1, 0.1));
241 }
242
243
244 XSCREENSAVER_MODULE_2 ("Forest", forest, trees)