1 /* -*- Mode: C; tab-width: 4 -*- */
2 /* sphere --- a bunch of shaded spheres */
5 static const char sccsid[] = "@(#)sphere.c 5.00 2000/11/01 xlockmore";
9 * Copyright (c) 1988 by Sun Microsystems
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.
24 * 01-Nov-2000: Allocation checks
25 * 30-May-1997: <jwz@jwz.org> made it go vertically as well as horizontally.
26 * 27-May-1997: <jwz@jwz.org> turned into a standalone program.
27 * 02-Sep-1993: xlock version David Bagley <bagleyd@tux.org>
28 * 1988: Revised to use SunView canvas instead of gfxsw Sun Microsystems
29 * 1982: Orignal Algorithm Tom Duff Lucasfilm Ltd.
34 * **************************************************************************
35 * Copyright 1988 by Sun Microsystems, Inc. Mountain View, CA.
39 * Permission to use, copy, modify, and distribute this software and its
40 * documentation for any purpose and without fee is hereby granted, provided
41 * that the above copyright notice appear in all copies and that both that
42 * copyright notice and this permission notice appear in supporting
43 * documentation, and that the names of Sun or MIT not be used in advertising
44 * or publicity pertaining to distribution of the software without specific
45 * prior written permission. Sun and M.I.T. make no representations about the
46 * suitability of this software for any purpose. It is provided "as is"
47 * without any express or implied warranty.
49 * SUN DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL
50 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
51 * IN NO EVENT SHALL SUN BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL
52 * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
53 * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS
54 * ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
56 * ***************************************************************************
61 #define DEFAULTS "*delay: 20000 \n" \
65 "*fpsSolid: true \n" \
67 # define BRIGHT_COLORS
68 # define reshape_sphere 0
69 # define sphere_handle_event 0
70 # include "xlockmore.h" /* from the xscreensaver distribution */
71 #else /* !STANDALONE */
72 # include "xlock.h" /* from the xlockmore distribution */
73 #endif /* !STANDALONE */
77 ENTRYPOINT ModeSpecOpt sphere_opts =
78 {0, (XrmOptionDescRec *) NULL, 0, (argtype *) NULL, (OptionStruct *) NULL};
81 ModStruct sphere_description =
82 {"sphere", "init_sphere", "draw_sphere", "release_sphere",
83 "refresh_sphere", "init_sphere", (char *) NULL, &sphere_opts,
84 5000, 1, 20, 0, 64, 1.0, "",
85 "Shows a bunch of shaded spheres", 0, NULL};
90 * (NX, NY, NZ) is the light source vector -- length should be 100
96 #define SQRT(a) ((int)sqrt((double)(a)))
101 int x0; /* x center */
102 int y0; /* y center */
106 int shadowx, shadowy;
111 static spherestruct *spheres = (spherestruct *) NULL;
114 init_sphere(ModeInfo * mi)
118 if (spheres == NULL) {
119 if ((spheres = (spherestruct *) calloc(MI_NUM_SCREENS(mi),
120 sizeof (spherestruct))) == NULL)
123 sp = &spheres[MI_SCREEN(mi)];
125 if (sp->points != NULL) {
126 (void) free((void *) sp->points);
127 sp->points = (XPoint *) NULL;
129 sp->width = MAX(MI_WIDTH(mi), 4);
130 sp->height = MAX(MI_HEIGHT(mi), 4);
131 if ((sp->points = (XPoint *) malloc(MIN(sp->width, sp->height) *
132 sizeof (XPoint))) == NULL) {
140 sp->shadowx = (LRAND() & 1) ? 1 : -1;
141 sp->shadowy = (LRAND() & 1) ? 1 : -1;
145 draw_sphere(ModeInfo * mi)
147 Display *display = MI_DISPLAY(mi);
150 register int minx = 0, maxx = 0, miny = 0, maxy = 0, npts = 0;
155 sp = &spheres[MI_SCREEN(mi)];
156 if (sp->points == NULL)
159 MI_IS_DRAWN(mi) = True;
160 if ((sp->dirx && ABS(sp->x) >= sp->radius) ||
161 (sp->diry && ABS(sp->y) >= sp->radius)) {
162 sp->radius = NRAND(MIN(sp->width / 2, sp->height / 2) - 1) + 1;
165 sp->dirx = (int) (LRAND() & 1) * 2 - 1;
169 sp->diry = (int) (LRAND() & 1) * 2 - 1;
171 sp->x0 = NRAND(sp->width);
172 sp->y0 = NRAND(sp->height);
174 sp->x = -sp->radius * sp->dirx;
175 sp->y = -sp->radius * sp->diry;
177 if (MI_NPIXELS(mi) > 2)
178 sp->color = NRAND(MI_NPIXELS(mi));
181 if (sp->x0 + sp->x < 0)
183 } else if (sp->dirx == -1) {
184 if (sp->x0 + sp->x >= sp->width)
185 sp->x = sp->width - sp->x0 - 1;
188 if (sp->y0 + sp->y < 0)
190 } else if (sp->diry == -1) {
191 if (sp->y0 + sp->y >= sp->height)
192 sp->y = sp->height - sp->y0 - 1;
195 sp->maxy = SQRT(sp->radius * sp->radius - sp->x * sp->x);
197 if (sp->y0 - sp->maxy < 0)
202 sp->maxx = SQRT(sp->radius * sp->radius - sp->y * sp->y);
204 if (sp->x0 - sp->maxx < 0)
209 if (sp->y0 + sp->maxy >= sp->height)
210 maxy = sp->height - sp->y0;
213 if (sp->x0 + sp->maxx >= sp->width)
214 maxx = sp->width - sp->x0;
216 XSetForeground(display, gc, MI_BLACK_PIXEL(mi));
219 XDrawLine(display, MI_WINDOW(mi), gc,
220 sp->x0 + sp->x, sp->y0 + miny, sp->x0 + sp->x, sp->y0 + maxy);
222 XDrawLine(display, MI_WINDOW(mi), gc,
223 sp->x0 + minx, sp->y0 + sp->y, sp->x0 + maxx, sp->y0 + sp->y);
225 if (MI_NPIXELS(mi) > 2)
226 XSetForeground(display, gc, MI_PIXEL(mi, sp->color));
228 XSetForeground(display, gc, MI_WHITE_PIXEL(mi));
231 sqrd = sp->radius * sp->radius - sp->x * sp->x;
232 nd = NX * sp->shadowx * sp->x;
233 for (sp->y = miny; sp->y <= maxy; sp->y++)
234 if ((NRAND(sp->radius * NR)) <= nd + NY * sp->shadowy * sp->y +
235 NZ * SQRT(sqrd - sp->y * sp->y)) {
236 sp->points[npts].x = sp->x + sp->x0;
237 sp->points[npts].y = sp->y + sp->y0;
242 sqrd = sp->radius * sp->radius - sp->y * sp->y;
243 nd = NY * sp->shadowy * sp->y;
244 for (sp->x = minx; sp->x <= maxx; sp->x++)
245 if ((NRAND(sp->radius * NR)) <= NX * sp->shadowx * sp->x + nd +
246 NZ * SQRT(sqrd - sp->x * sp->x)) {
247 sp->points[npts].x = sp->x + sp->x0;
248 sp->points[npts].y = sp->y + sp->y0;
252 XDrawPoints(display, MI_WINDOW(mi), gc, sp->points, npts, CoordModeOrigin);
255 if (sp->x0 + sp->x >= sp->width)
257 } else if (sp->dirx == -1) {
259 if (sp->x0 + sp->x < 0)
264 if (sp->y0 + sp->y >= sp->height)
266 } else if (sp->diry == -1) {
268 if (sp->y0 + sp->y < 0)
274 release_sphere(ModeInfo * mi)
276 if (spheres != NULL) {
279 for (screen = 0; screen < MI_NUM_SCREENS(mi); screen++) {
280 spherestruct *sp = &spheres[screen];
283 (void) free((void *) sp->points);
284 /* sp->points = NULL; */
287 (void) free((void *) spheres);
288 spheres = (spherestruct *) NULL;
293 refresh_sphere(ModeInfo * mi)
299 sp = &spheres[MI_SCREEN(mi)];
306 XSCREENSAVER_MODULE ("Sphere", sphere)
308 #endif /* MODE_sphere */