1 /* forest.c (aka xtree.c), Copyright (c) 1999
2 * Peter Baumung <unn6@rz.uni-karlsruhe.de>
5 * xscreensaver, Copyright (c) 1992, 1995, 1997
6 * Jamie Zawinski <jwz@netscape.com>
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
21 /* ****************************** NOTE ******************************
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...
26 **********************************************************************
30 # define DEFAULTS "*delay: 500000 \n" \
32 "*fpsSolid: true \n" \
34 # include "xlockmore.h" /* from the xscreensaver distribution */
35 # define refresh_trees 0
36 # define reshape_trees 0
37 # define trees_handle_event 0
38 #else /* !STANDALONE */
39 # include "xlock.h" /* from the xlockmore distribution */
40 #endif /* !STANDALONE */
42 ENTRYPOINT ModeSpecOpt trees_opts = {0, NULL, 0, NULL, NULL};
55 static treestruct *trees = NULL;
57 static XColor colors[20];
60 static long colorM[12] = {0xff0000, 0xff8000, 0xffff00, 0x80ff00,
61 0x00ff00, 0x00ff80, 0x00ffff, 0x0080ff,
62 0x0000ff, 0x8000ff, 0xff00ff, 0xff0080};
64 static long colorV[12] = {0x0a0000, 0x0a0500, 0x0a0a00, 0x050a00,
65 0x000a00, 0x000a05, 0x000a0a, 0x00050a,
66 0x00000a, 0x05000a, 0x0a000a, 0x0a0005};
69 init_trees(ModeInfo * mi)
71 unsigned long pixels[20];
73 Display *display = MI_DISPLAY(mi);
78 trees = (treestruct *) calloc(MI_NUM_SCREENS(mi), sizeof (treestruct));
83 if (mi->npixels > 20) {
84 printf("%d colors selected. Setting limit to 20...\n", mi->npixels);
88 if (mi->npixels < 4) {
89 for (i = 0; i < mi->npixels; i++) {
90 colors[i].red = 65535 * (i & 1);
91 colors[i].green = 65535 * (i & 1);
92 colors[i].blue = 65535 * (i & 1);
93 colors[i].flags = DoRed | DoGreen | DoBlue;
96 if (mi->npixels < 8) {
97 for (i = 0; i < mi->npixels; i++) {
98 colors[i].red = 32768 + 4096 * (i % 4);
99 colors[i].green = 32768 + 4096 * (i % 4);
100 colors[i].blue = 32768 + 4096 * (i % 4);
101 colors[i].flags = DoRed | DoGreen | DoBlue;
104 for (i = 0; i < mi->npixels; i++) {
105 colors[i].red = 24576 + 4096 * (i % 4);
106 colors[i].green = 10240 + 2048 * (i % 4);
108 colors[i].flags = DoRed | DoGreen | DoBlue;
113 for (i = 0; i < mi->npixels; i++)
114 if (!XAllocColor(display, mi->xgwa.colormap, &colors[i])) break;
117 XSetForeground(display, gc, colors[1].pixel);
120 XClearWindow(display, MI_WINDOW(mi));
121 XSetLineAttributes(display, gc, 2, LineSolid, CapButt, JoinMiter);
122 tree = &trees[MI_SCREEN(mi)];
124 tree->season = NRAND(12);
126 for (i = 4; i < mi->npixels; i++) {
127 int sIndex = (tree->season + (i-4) / 4) % 12;
128 long color = colorM[sIndex] - 2 * colorV[sIndex] * (i % 4);
129 colors[i].red = (color & 0xff0000) / 256;
130 colors[i].green = (color & 0x00ff00);
131 colors[i].blue = (color & 0x0000ff) * 256;
132 colors[i].flags = DoRed | DoGreen | DoBlue;
135 for (i = 0; i < color; i++)
136 pixels[i] = colors[i].pixel;
138 XFreeColors(display, mi->xgwa.colormap, pixels, mi->npixels, 0L);
140 for (i = 0; i < mi->npixels; i++)
141 if (!XAllocColor(display, mi->xgwa.colormap, &colors[i])) break;
146 static double rRand(double a, double b)
148 return (a+(b-a)*NRAND(10001)/10000.0);
151 static void draw_line(ModeInfo * mi,
152 int x1, int y1, int x2, int y2,
153 double angle, int widths, int widthe)
156 Display *display = MI_DISPLAY(mi);
158 double sns = 0.5*widths*sin(angle + M_PI_2);
159 double css = 0.5*widths*cos(angle + M_PI_2);
160 double sne = 0.5*widthe*sin(angle + M_PI_2);
161 double cse = 0.5*widthe*cos(angle + M_PI_2);
163 int xs1 = (int) (x1-sns);
164 int xs2 = (int) (x1+sns);
165 int ys1 = (int) (y1-css);
166 int ys2 = (int) (y1+css);
167 int xe1 = (int) (x2-sne);
168 int xe2 = (int) (x2+sne);
169 int ye1 = (int) (y2-cse);
170 int ye2 = (int) (y2+cse);
173 for (i = 0; i < widths; i++) {
175 XSetForeground(display, gc, colors[i*4/widths].pixel);
176 XDrawLine(display, MI_WINDOW(mi), gc,
177 xs1+(xs2-xs1)*i/widths, ys1+(ys2-ys1)*i/widths,
178 xe1+(xe2-xe1)*i/widths, ye1+(ye2-ye1)*i/widths);
182 static void draw_tree_rec(ModeInfo * mi, double thick, int x, int y, double angle)
184 treestruct *tree = &trees[MI_SCREEN(mi)];
185 Display *display = MI_DISPLAY(mi);
187 int length = (24+NRAND(12))*tree->size;
188 int a = (int) (x - length*sin(angle));
189 int b = (int) (y - length*cos(angle));
192 draw_line(mi, x, y, a, b, angle, thick*tree->size, 0.68*thick*tree->size);
195 draw_tree_rec(mi, 0.68*thick, a, b, 0.8*angle+rRand(-0.2, 0.2));
196 if (thick < tree->thick-1) {
197 draw_tree_rec(mi, 0.68*thick, a, b, angle+rRand(0.2, 0.9));
198 draw_tree_rec(mi, 0.68*thick, (a+x)/2, (b+y)/2, angle-rRand(0.2, 0.9));
202 if (thick < 0.5*tree->thick) {
203 int nleaf = 12 + NRAND(4);
205 for (i = 0; i < nleaf; i++) {
206 leaf[i].x = a + (int) (tree->size * rRand(-12, 12));
207 leaf[i].y = b + (int) (tree->size * rRand(-12, 12));
208 leaf[i].width = (int) (tree->size * rRand(2, 6));
209 leaf[i].height = leaf[i].width;
211 leaf[i].angle2 = 360 * 64;
213 if (mi->npixels >= 4)
214 XSetForeground(display, gc, colors[tree->color+NRAND(4)].pixel);
215 XFillArcs(display, MI_WINDOW(mi), gc, leaf, nleaf);
220 draw_trees(ModeInfo * mi)
222 treestruct *tree = &trees[MI_SCREEN(mi)];
223 int width = MI_WIN_WIDTH(mi);
224 int height = MI_WIN_HEIGHT(mi);
226 if (tree->pause == 1) {
229 } else if (tree->pause > 1) {
232 } else if (--(tree->toDo) == 0) {
237 tree->x = NRAND(width);
238 tree->y = (int) (1.25 * height * (1 - tree->toDo / 23.0));
239 tree->thick = rRand(7, 12);
240 tree->size = height / 480.0;
244 tree->color = 4 * (1 + NRAND(color / 4 - 1));
247 draw_tree_rec(mi, tree->thick, tree->x, tree->y, rRand(-0.1, 0.1));
252 release_trees(ModeInfo * mi)
255 (void) free((void *) trees);
260 XSCREENSAVER_MODULE_2 ("Forest", forest, trees)