From http://www.jwz.org/xscreensaver/xscreensaver-5.37.tar.gz
[xscreensaver] / hacks / vines.c
1 /* -*- Mode: C; tab-width: 4 -*- */
2 /* vines --- vine fractals */
3
4 #if 0
5 static const char sccsid[] = "@(#)vines.c       5.00 2000/11/01 xlockmore";
6 #endif
7
8 /*-
9  * Copyright (c) 1997 by Tracy Camp campt@hurrah.com
10  *
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.
16  *
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.
22  *
23  * If you make a modification I would of course appreciate a copy.
24  *
25  * Revision History:
26  * 01-Nov-2000: Allocation checks
27  * 11-Jul-1997: David Hansen <dhansen@metapath.com>
28  *              Changed names to vines and modified draw loop
29  *              to honor batchcount so vines can be grown or plotted.
30  * 10-May-1997: Compatible with xscreensaver
31  * 21-Mar-1997: David Hansen <dhansen@metapath.com>
32  *              Updated mode to draw complete patterns on every
33  *              iteration instead of growing the vine.  Also made
34  *              adjustments to randomization and changed variable
35  *              names to make logic easier to follow.
36  */
37
38 /*-
39  * This was modifed from a 'screen saver' that a friend and I
40  * wrote on our TI-8x calculators in high school physics one day
41  * Basically another geometric pattern generator, this ones claim
42  * to fame is a pseudo-fractal looking vine like pattern that creates
43  * nifty whorls and loops.
44  */
45
46 #ifdef STANDALONE
47 # define MODE_vines
48 # define DEFAULTS       "*delay: 200000 \n" \
49                                         "*count: 0 \n" \
50                                         "*ncolors: 64 \n" \
51                                         "*fpsSolid: true \n" \
52
53 # include "xlockmore.h"         /* in xscreensaver distribution */
54 # define reshape_vines 0
55 # define vines_handle_event 0
56 # include "erase.h"
57 #else /* STANDALONE */
58 # include "xlock.h"             /* in xlockmore distribution */
59 #endif /* STANDALONE */
60
61 #ifdef MODE_vines
62
63 ENTRYPOINT ModeSpecOpt vines_opts =
64 {0, (XrmOptionDescRec *) NULL, 0, (argtype *) NULL, (OptionStruct *) NULL};
65
66 #ifdef USE_MODULES
67 ModStruct   vines_description =
68 {"vines", "init_vines", "draw_vines", "release_vines",
69  "refresh_vines", "init_vines", (char *) NULL, &vines_opts,
70  200000, 0, 1, 1, 64, 1.0, "",
71  "Shows fractals", 0, NULL};
72
73 #endif
74
75 typedef struct {
76         int         a;
77         int         x1;
78         int         y1;
79         int         x2;
80         int         y2;
81         int         i;
82         int         length;
83         int         iterations;
84         int         constant;
85         int         ang;
86         int         centerx;
87         int         centery;
88 #ifdef STANDALONE
89   eraser_state *eraser;
90 #endif
91 } vinestruct;
92
93 static vinestruct *vines = (vinestruct *) NULL;
94
95 ENTRYPOINT void
96 refresh_vines(ModeInfo * mi)
97 {
98         MI_CLEARWINDOW(mi);
99 }                               /* refresh_vines */
100
101 ENTRYPOINT void
102 init_vines(ModeInfo * mi)
103 {
104         vinestruct *fp;
105
106         MI_INIT (mi, vines, 0);
107         fp = &vines[MI_SCREEN(mi)];
108
109         fp->i = 0;
110         fp->length = 0;
111         fp->iterations = 30 + NRAND(100);
112
113 #ifndef STANDALONE
114         MI_CLEARWINDOW(mi);
115 #endif
116 }                               /* init_vines */
117
118 ENTRYPOINT void
119 draw_vines(ModeInfo * mi)
120 {
121         Display    *display = MI_DISPLAY(mi);
122         GC          gc = MI_GC(mi);
123         int         count;
124         vinestruct *fp;
125
126         if (vines == NULL)
127                 return;
128         fp = &vines[MI_SCREEN(mi)];
129
130 #ifdef STANDALONE
131     if (fp->eraser) {
132       fp->eraser = erase_window (MI_DISPLAY(mi), MI_WINDOW(mi), fp->eraser);
133       return;
134     }
135 #endif
136
137         /* MI_IS_DRAWN(mi) = True; */
138         if (fp->i >= fp->length) {
139                 if (--(fp->iterations) == 0) {
140 #ifdef STANDALONE
141           fp->eraser = erase_window (MI_DISPLAY(mi), MI_WINDOW(mi), fp->eraser);
142 #endif /* STANDALONE */
143                         init_vines(mi);
144                 }
145                 fp->centerx = NRAND(MI_WIDTH(mi));
146                 fp->centery = NRAND(MI_HEIGHT(mi));
147
148                 fp->ang = 60 + NRAND(720);
149                 fp->length = 100 + NRAND(3000);
150                 fp->constant = fp->length * (10 + NRAND(10));
151
152                 fp->i = 0;
153                 fp->a = 0;
154                 fp->x1 = 0;
155                 fp->y1 = 0;
156                 fp->x2 = 1;
157                 fp->y2 = 0;
158
159                 if (MI_NPIXELS(mi) > 2)
160                         XSetForeground(display, gc, MI_PIXEL(mi, NRAND(MI_NPIXELS(mi))));
161                 else
162                         XSetForeground(display, gc, MI_WHITE_PIXEL(mi));
163         }
164         count = fp->i + MI_COUNT(mi);
165         if ((count <= fp->i) || (count > fp->length))
166                 count = fp->length;
167
168         while (fp->i < count) {
169                 XDrawLine(display, MI_WINDOW(mi), gc,
170                           fp->centerx + (fp->x1 / fp->constant),
171                           fp->centery - (fp->y1 / fp->constant),
172                           fp->centerx + (fp->x2 / fp->constant),
173                           fp->centery - (fp->y2 / fp->constant));
174
175                 fp->a += (fp->ang * fp->i);
176
177                 fp->x1 = fp->x2;
178                 fp->y1 = fp->y2;
179
180                 fp->x2 += (int) (fp->i * (cos((double) fp->a) * 360.0) / (2.0 * M_PI));
181                 fp->y2 += (int) (fp->i * (sin((double) fp->a) * 360.0) / (2.0 * M_PI));
182                 fp->i++;
183         }
184 }                               /* draw_vines */
185
186 ENTRYPOINT void
187 release_vines(ModeInfo * mi)
188 {
189         if (vines != NULL) {
190                 (void) free((void *) vines);
191                 vines = (vinestruct *) NULL;
192         }
193 }                               /* release_vines */
194
195
196 XSCREENSAVER_MODULE ("Vines", vines)
197
198 #endif /* MODE_vines */