1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336
|
/* -*- Mode: C; tab-width: 4 -*- */
/* laser --- spinning lasers */
#if !defined( lint ) && !defined( SABER )
static const char sccsid[] = "@(#)laser.c 4.07 97/11/24 xlockmore";
#endif
/*-
* Copyright (c) 1995 Pascal Pensa <pensa@aurora.unice.fr>
*
* Permission to use, copy, modify, and distribute this software and its
* documentation for any purpose and without fee is hereby granted,
* provided that the above copyright notice appear in all copies and that
* both that copyright notice and this permission notice appear in
* supporting documentation.
*
* This file is provided AS IS with no warranties of any kind. The author
* shall have no liability with respect to the infringement of copyrights,
* trade secrets or any patents by this file or any part thereof. In no
* event will the author be liable for any lost revenue or profits or
* other special, indirect and consequential damages.
*
* Revision History:
* 10-May-97: Compatible with xscreensaver
*/
#ifdef STANDALONE
#define PROGCLASS "Laser"
#define HACK_INIT init_laser
#define HACK_DRAW draw_laser
#define laser_opts xlockmore_opts
#define DEFAULTS "*delay: 20000 \n" \
"*count: -10 \n" \
"*cycles: 200 \n" \
"*ncolors: 200 \n"
#define BRIGHT_COLORS
#include "xlockmore.h" /* in xscreensaver distribution */
#else /* STANDALONE */
#include "xlock.h" /* in xlockmore distribution */
#endif /* STANDALONE */
ModeSpecOpt laser_opts =
{0, NULL, 0, NULL, NULL};
#ifdef USE_MODULES
ModStruct laser_description =
{"laser", "init_laser", "draw_laser", "release_laser",
"refresh_laser", "init_laser", NULL, &laser_opts,
20000, -10, 200, 1, 64, 1.0, "",
"Shows spinning lasers", 0, NULL};
#endif
#define MINREDRAW 3 /* Number of redrawn on each frame */
#define MAXREDRAW 8
#define MINLASER 1 /* Laser number */
#define MINWIDTH 2 /* Laser ray width range */
#define MAXWIDTH 40
#define MINSPEED 2 /* Speed range */
#define MAXSPEED 17
#define MINDIST 10 /* Minimal distance from edges */
#define COLORSTEP 2 /* Laser color step */
#define RANGE_RAND(min,max) (int) ((min) + LRAND() % ((max) - (min)))
typedef enum {
TOP, RIGHT, BOTTOM, LEFT
} border;
typedef struct {
int bx; /* border x */
int by; /* border y */
border bn; /* active border */
int dir; /* direction */
int speed; /* laser velocity from MINSPEED to MAXSPEED */
int sx[MAXWIDTH]; /* x stack */
int sy[MAXWIDTH]; /* x stack */
XGCValues gcv; /* for color */
} laserstruct;
typedef struct {
int width;
int height;
int cx; /* center x */
int cy; /* center y */
int lw; /* laser width */
int ln; /* laser number */
int lr; /* laser redraw */
int sw; /* stack width */
int so; /* stack offset */
int time; /* up time */
GC stippledGC;
XGCValues gcv_black; /* for black color */
laserstruct *laser;
} lasersstruct;
static lasersstruct *lasers = NULL;
void
init_laser(ModeInfo * mi)
{
int i, c = 0;
lasersstruct *lp;
if (lasers == NULL) {
if ((lasers = (lasersstruct *) calloc(MI_NUM_SCREENS(mi),
sizeof (lasersstruct))) == NULL)
return;
}
lp = &lasers[MI_SCREEN(mi)];
lp->width = MI_WIDTH(mi);
lp->height = MI_HEIGHT(mi);
lp->time = 0;
lp->ln = MI_COUNT(mi);
if (lp->ln < -MINLASER) {
/* if lp->ln is random ... the size can change */
if (lp->laser != NULL) {
(void) free((void *) lp->laser);
lp->laser = NULL;
}
lp->ln = NRAND(-lp->ln - MINLASER + 1) + MINLASER;
} else if (lp->ln < MINLASER)
lp->ln = MINLASER;
if (!lp->laser) {
lp->laser = (laserstruct *) malloc(lp->ln * sizeof (laserstruct));
}
if (lp->stippledGC == NULL) {
XGCValues gcv;
gcv.foreground = MI_WHITE_PIXEL(mi);
gcv.background = MI_BLACK_PIXEL(mi);
lp->gcv_black.foreground = MI_BLACK_PIXEL(mi);
lp->stippledGC = XCreateGC(MI_DISPLAY(mi), MI_WINDOW(mi),
GCForeground | GCBackground, &gcv);
}
MI_CLEARWINDOW(mi);
if (MINDIST < lp->width - MINDIST)
lp->cx = RANGE_RAND(MINDIST, lp->width - MINDIST);
else
lp->cx = RANGE_RAND(0, lp->width);
if (MINDIST < lp->height - MINDIST)
lp->cy = RANGE_RAND(MINDIST, lp->height - MINDIST);
else
lp->cy = RANGE_RAND(0, lp->height);
lp->lw = RANGE_RAND(MINWIDTH, MAXWIDTH);
lp->lr = RANGE_RAND(MINREDRAW, MAXREDRAW);
lp->sw = 0;
lp->so = 0;
if (MI_NPIXELS(mi) > 2)
c = NRAND(MI_NPIXELS(mi));
for (i = 0; i < lp->ln; i++) {
laserstruct *l = &lp->laser[i];
l->bn = (border) NRAND(4);
switch (l->bn) {
case TOP:
l->bx = NRAND(lp->width);
l->by = 0;
break;
case RIGHT:
l->bx = lp->width;
l->by = NRAND(lp->height);
break;
case BOTTOM:
l->bx = NRAND(lp->width);
l->by = lp->height;
break;
case LEFT:
l->bx = 0;
l->by = NRAND(lp->height);
}
l->dir = (int) (LRAND() & 1);
l->speed = ((RANGE_RAND(MINSPEED, MAXSPEED) * lp->width) / 1000) + 1;
if (MI_NPIXELS(mi) > 2) {
l->gcv.foreground = MI_PIXEL(mi, c);
c = (c + COLORSTEP) % MI_NPIXELS(mi);
} else
l->gcv.foreground = MI_WHITE_PIXEL(mi);
}
}
static void
draw_laser_once(ModeInfo * mi)
{
Display *display = MI_DISPLAY(mi);
lasersstruct *lp = &lasers[MI_SCREEN(mi)];
int i;
MI_IS_DRAWN(mi) = True;
for (i = 0; i < lp->ln; i++) {
laserstruct *l = &lp->laser[i];
if (lp->sw >= lp->lw) {
XChangeGC(display, lp->stippledGC, GCForeground, &(lp->gcv_black));
XDrawLine(display, MI_WINDOW(mi), lp->stippledGC,
lp->cx, lp->cy,
l->sx[lp->so], l->sy[lp->so]);
}
if (l->dir) {
switch (l->bn) {
case TOP:
l->bx -= l->speed;
if (l->bx < 0) {
l->by = -l->bx;
l->bx = 0;
l->bn = LEFT;
}
break;
case RIGHT:
l->by -= l->speed;
if (l->by < 0) {
l->bx = lp->width + l->by;
l->by = 0;
l->bn = TOP;
}
break;
case BOTTOM:
l->bx += l->speed;
if (l->bx >= lp->width) {
l->by = lp->height - l->bx % lp->width;
l->bx = lp->width;
l->bn = RIGHT;
}
break;
case LEFT:
l->by += l->speed;
if (l->by >= lp->height) {
l->bx = l->by % lp->height;
l->by = lp->height;
l->bn = BOTTOM;
}
}
} else {
switch (l->bn) {
case TOP:
l->bx += l->speed;
if (l->bx >= lp->width) {
l->by = l->bx % lp->width;
l->bx = lp->width;
l->bn = RIGHT;
}
break;
case RIGHT:
l->by += l->speed;
if (l->by >= lp->height) {
l->bx = lp->width - l->by % lp->height;
l->by = lp->height;
l->bn = BOTTOM;
}
break;
case BOTTOM:
l->bx -= l->speed;
if (l->bx < 0) {
l->by = lp->height + l->bx;
l->bx = 0;
l->bn = LEFT;
}
break;
case LEFT:
l->by -= l->speed;
if (l->by < 0) {
l->bx = -l->bx;
l->by = 0;
l->bn = TOP;
}
}
}
XChangeGC(display, lp->stippledGC, GCForeground, &l->gcv);
XDrawLine(display, MI_WINDOW(mi), lp->stippledGC,
lp->cx, lp->cy, l->bx, l->by);
l->sx[lp->so] = l->bx;
l->sy[lp->so] = l->by;
}
if (lp->sw < lp->lw)
++lp->sw;
lp->so = (lp->so + 1) % lp->lw;
}
void
draw_laser(ModeInfo * mi)
{
lasersstruct *lp = &lasers[MI_SCREEN(mi)];
int i;
for (i = 0; i < lp->lr; i++)
draw_laser_once(mi);
if (++lp->time > MI_CYCLES(mi))
init_laser(mi);
}
void
release_laser(ModeInfo * mi)
{
if (lasers != NULL) {
int screen;
for (screen = 0; screen < MI_NUM_SCREENS(mi); screen++) {
lasersstruct *lp = &lasers[screen];
if (lp->laser != NULL)
(void) free((void *) lp->laser);
if (lp->stippledGC != NULL)
XFreeGC(MI_DISPLAY(mi), lp->stippledGC);
}
(void) free((void *) lasers);
lasers = NULL;
}
}
void
refresh_laser(ModeInfo * mi)
{
MI_CLEARWINDOW(mi);
}
|