1 /* -*- Mode: C; tab-width: 4 -*- */
2 /* thornbird --- continuously varying Thornbird set */
5 static const char sccsid[] = "@(#)thornbird.c 5.00 2000/11/01 xlockmore";
9 * Copyright (c) 1996 by Tim Auckland <tda10.geo@yahoo.com>
11 * Permission to use, copy, modify, and distribute this software and its
12 * documentation for any purpose and without fee is hereby granted,
13 * provided that the above copyright notice appear in all copies and that
14 * both that copyright notice and this permission notice appear in
15 * supporting documentation.
17 * This file is provided AS IS with no warranties of any kind. The author
18 * shall have no liability with respect to the infringement of copyrights,
19 * trade secrets or any patents by this file or any part thereof. In no
20 * event will the author be liable for any lost revenue or profits or
21 * other special, indirect and consequential damages.
23 * "thornbird" shows a view of the "Bird in a Thornbush" fractal,
24 * continuously varying the three free parameters.
27 * 01-Nov-2000: Allocation checks
28 * 04-Jun-1999: 3D tumble added by Tim Auckland
29 * 31-Jul-1997: Adapted from discrete.c Copyright (c) 1996 by Tim Auckland
33 # define MODE_thornbird
34 #define DEFAULTS "*delay: 10000 \n" \
38 "*fpsSolid: true \n" \
40 # define BRIGHT_COLORS
41 # define reshape_thornbird 0
42 # define thornbird_handle_event 0
43 # include "xlockmore.h" /* in xscreensaver distribution */
44 #else /* STANDALONE */
45 # include "xlock.h" /* in xlockmore distribution */
46 #endif /* STANDALONE */
50 ENTRYPOINT ModeSpecOpt thornbird_opts =
51 {0, (XrmOptionDescRec *) NULL, 0, (argtype *) NULL, (OptionStruct *) NULL};
54 ModStruct thornbird_description =
55 {"thornbird", "init_thornbird", "draw_thornbird", "release_thornbird",
56 "refresh_thornbird", "init_thornbird", (char *) NULL, þbird_opts,
57 1000, 800, 16, 1, 64, 1.0, "",
58 "Shows an animated Bird in a Thorn Bush fractal map", 0, NULL};
62 #define balance_rand(v) ((LRAND()/MAXRAND*(v))-((v)/2)) /* random around 0 */
66 int maxy; /* max of the screen */
73 double j; /* thornbird parameters */
88 XPoint **pointBuffer; /* pointer for XDrawPoints */
91 static thornbirdstruct *thornbirds = (thornbirdstruct *) NULL;
94 free_thornbird(thornbirdstruct *hp)
96 if (hp->pointBuffer != NULL) {
99 for (buffer = 0; buffer < hp->nbuffers; buffer++)
100 if (hp->pointBuffer[buffer] != NULL)
101 (void) free((void *) hp->pointBuffer[buffer]);
102 (void) free((void *) hp->pointBuffer);
103 hp->pointBuffer = (XPoint **) NULL;
108 init_thornbird (ModeInfo * mi)
112 if (thornbirds == NULL) {
114 (thornbirdstruct *) calloc(MI_NUM_SCREENS(mi),
115 sizeof (thornbirdstruct))) == NULL)
118 hp = þbirds[MI_SCREEN(mi)];
121 hp->maxx = MI_WIDTH(mi);
122 hp->maxy = MI_HEIGHT(mi);
130 hp->nbuffers = MI_CYCLES(mi);
132 if (hp->pointBuffer == NULL)
133 if ((hp->pointBuffer = (XPoint **) calloc(MI_CYCLES(mi),
134 sizeof (XPoint *))) == NULL) {
139 if (hp->pointBuffer[0] == NULL)
140 if ((hp->pointBuffer[0] = (XPoint *) malloc(MI_COUNT(mi) *
141 sizeof (XPoint))) == NULL) {
146 /* select frequencies for parameter variation */
147 hp->liss.f1 = LRAND() % 5000;
148 hp->liss.f2 = LRAND() % 2000;
150 /* choose random 3D tumbling */
151 hp->tumble.theta = 0;
153 hp->tumble.dtheta = balance_rand(0.001);
154 hp->tumble.dphi = balance_rand(0.005);
156 /* Clear the background. */
164 draw_thornbird(ModeInfo * mi)
166 Display *dsp = MI_DISPLAY(mi);
167 Window win = MI_WINDOW(mi);
169 int batchcount = MI_COUNT(mi);
176 double sint, cost, sinp, cosp;
179 if (thornbirds == NULL)
181 hp = þbirds[MI_SCREEN(mi)];
182 if (hp->pointBuffer == NULL)
185 erase = (hp->inc + 1) % MI_CYCLES(mi);
186 current = hp->inc % MI_CYCLES(mi);
190 xp = hp->pointBuffer[current];
192 /* vary papameters */
193 hp->a = 1.99 + (0.4 * sin(hp->inc / hp->liss.f1) +
194 0.05 * cos(hp->inc / hp->liss.f2));
195 hp->c = 0.80 + (0.15 * cos(hp->inc / hp->liss.f1) +
196 0.05 * sin(hp->inc / hp->liss.f2));
199 hp->tumble.theta += hp->tumble.dtheta;
200 hp->tumble.phi += hp->tumble.dphi;
201 sint = sin(hp->tumble.theta);
202 cost = cos(hp->tumble.theta);
203 sinp = sin(hp->tumble.phi);
204 cosp = cos(hp->tumble.phi);
211 hp->i = (1 - hp->c) * cos(M_PI * hp->a * oldj) + hp->c * hp->b;
216 + sint*hp->j + cost*cosp*hp->i - cost*sinp*hp->b));
219 - cost*hp->j + sint*cosp*hp->i - sint*sinp*hp->b));
223 MI_IS_DRAWN(mi) = True;
225 if (hp->pointBuffer[erase] == NULL) {
226 if ((hp->pointBuffer[erase] = (XPoint *) malloc(MI_COUNT(mi) *
227 sizeof (XPoint))) == NULL) {
232 XSetForeground(dsp, gc, MI_BLACK_PIXEL(mi));
233 XDrawPoints(dsp, win, gc, hp->pointBuffer[erase],
234 batchcount, CoordModeOrigin);
236 if (MI_NPIXELS(mi) > 2) {
237 XSetForeground(dsp, gc, MI_PIXEL(mi, hp->pix));
239 if (erase == 0) /* change colours after "cycles" cycles */
241 if (!((hp->inc + 1) % (1 + (MI_CYCLES(mi) / 3)))) /* jwz: sooner */
243 if (++hp->pix >= MI_NPIXELS(mi))
246 XSetForeground(dsp, gc, MI_WHITE_PIXEL(mi));
248 XDrawPoints(dsp, win, gc, hp->pointBuffer[current],
249 batchcount, CoordModeOrigin);
255 release_thornbird(ModeInfo * mi)
257 if (thornbirds != NULL) {
260 for (screen = 0; screen < MI_NUM_SCREENS(mi); screen++)
261 free_thornbird(þbirds[screen]);
262 (void) free((void *) thornbirds);
263 thornbirds = (thornbirdstruct *) NULL;
268 refresh_thornbird (ModeInfo * mi)
274 XSCREENSAVER_MODULE ("Thornbird", thornbird)
276 #endif /* MODE_thornbird */