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 337 338 339 340 341
|
/* -*- Mode: C; tab-width: 4 -*- */
/* slip --- lots of slipping blits */
#if !defined( lint ) && !defined( SABER )
static const char sccsid[] = "@(#)slip.c 5.00 2000/11/01 xlockmore";
#endif
/*-
* Copyright (c) 1992 by Scott Draves <spot@cs.cmu.edu>
*
* 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.
*
* 01-Nov-2000: Allocation checks
* 10-May-1997: Jamie Zawinski <jwz@jwz.org> compatible with xscreensaver
* 01-Dec-1995: Patched for VMS <joukj@hrem.stm.tudelft.nl>
*/
#ifdef STANDALONE
#define MODE_slip
#define PROGCLASS "Slip"
#define HACK_INIT init_slip
#define HACK_DRAW draw_slip
#define slip_opts xlockmore_opts
#define DEFAULTS "*delay: 50000 \n" \
"*count: 35 \n" \
"*cycles: 50 \n" \
"*ncolors: 200 \n"
#include "xlockmore.h" /* in xscreensaver distribution */
#else /* STANDALONE */
#include "xlock.h" /* in xlockmore distribution */
#endif /* STANDALONE */
#ifdef MODE_slip
ModeSpecOpt slip_opts =
{0, (XrmOptionDescRec *) NULL, 0, (argtype *) NULL, (OptionStruct *) NULL};
#ifdef USE_MODULES
ModStruct slip_description =
{"slip", "init_slip", "draw_slip", "release_slip",
"init_slip", "init_slip", (char *) NULL, &slip_opts,
50000, 35, 50, 1, 64, 1.0, "",
"Shows slipping blits", 0, NULL};
#endif
typedef struct {
int width, height;
int nblits_remaining;
int blit_width, blit_height;
int mode;
int first_time;
int backwards;
short lasthalf;
int stage;
unsigned long r;
} slipstruct;
static slipstruct *slips = (slipstruct *) NULL;
static short
halfrandom(slipstruct *sp, int mv)
{
unsigned long r;
if (sp->lasthalf) {
r = sp->lasthalf;
sp->lasthalf = 0;
} else {
r = LRAND();
sp->lasthalf = (short) (r >> 16);
}
return r % mv;
}
static int
erandom(slipstruct *sp, int mv)
{
int res;
if (0 == sp->stage) {
sp->r = LRAND();
sp->stage = 7;
}
res = (int) (sp->r & 0xf);
sp->r = sp->r >> 4;
sp->stage--;
if (res & 8)
return res & mv;
else
return -(res & mv);
}
static void
prepare_screen(ModeInfo * mi, slipstruct * sp)
{
Display *display = MI_DISPLAY(mi);
GC gc = MI_GC(mi);
int i, n, w = sp->width / 20;
int not_solid = halfrandom(sp, 10);
#ifdef STANDALONE /* jwz -- sometimes hack the desktop image! */
if (halfrandom(sp, 2) == 0) {
#if 0
Pixmap p =
#endif
grab_screen_image(DefaultScreenOfDisplay(display),
MI_WINDOW(mi));
#if 0
if (p)
XFreePixmap(display, p);
return;
#endif
}
#endif
sp->backwards = (int) (LRAND() & 1); /* jwz: go the other way sometimes */
if (sp->first_time || !halfrandom(sp, 10)) {
MI_CLEARWINDOW(mi);
n = 300;
} else {
if (halfrandom(sp, 5))
return;
if (halfrandom(sp, 5))
n = 100;
else
n = 2000;
}
if (MI_NPIXELS(mi) > 2)
XSetForeground(display, gc, MI_PIXEL(mi, halfrandom(sp, MI_NPIXELS(mi))));
else if (halfrandom(sp, 2))
XSetForeground(display, gc, MI_WHITE_PIXEL(mi));
else
XSetForeground(display, gc, MI_BLACK_PIXEL(mi));
for (i = 0; i < n; i++) {
int ww = ((w / 2) + halfrandom(sp, MAX(w, 1)));
if (not_solid) {
if (MI_NPIXELS(mi) > 2)
XSetForeground(display, gc, MI_PIXEL(mi, halfrandom(sp, MI_NPIXELS(mi))));
else if (halfrandom(sp, 2))
XSetForeground(display, gc, MI_WHITE_PIXEL(mi));
else
XSetForeground(display, gc, MI_BLACK_PIXEL(mi));
}
XFillRectangle(display, MI_WINDOW(mi), gc,
halfrandom(sp, MAX(sp->width - ww, 1)),
halfrandom(sp, MAX(sp->height - ww, 1)),
ww, ww);
}
sp->first_time = 0;
}
static int
quantize(double d)
{
int i = (int) floor(d);
double f = d - i;
if ((LRAND() & 0xff) < f * 0xff)
i++;
return i;
}
void
init_slip(ModeInfo * mi)
{
slipstruct *sp;
if (slips == NULL) {
if ((slips = (slipstruct *) calloc(MI_NUM_SCREENS(mi),
sizeof (slipstruct))) == NULL)
return;
}
sp = &slips[MI_SCREEN(mi)];
sp->width = MI_WIDTH(mi);
sp->height = MI_HEIGHT(mi);
sp->blit_width = sp->width / 25;
sp->blit_height = sp->height / 25;
sp->nblits_remaining = 0;
sp->mode = 0;
sp->first_time = 1;
/* no "NoExpose" events from XCopyArea wanted */
XSetGraphicsExposures(MI_DISPLAY(mi), MI_GC(mi), False);
}
void
draw_slip(ModeInfo * mi)
{
Display *display = MI_DISPLAY(mi);
Window window = MI_WINDOW(mi);
GC gc = MI_GC(mi);
int timer;
slipstruct *sp;
if (slips == NULL)
return;
sp = &slips[MI_SCREEN(mi)];
timer = MI_COUNT(mi) * MI_CYCLES(mi);
MI_IS_DRAWN(mi) = True;
while (timer--) {
int xi = halfrandom(sp, MAX(sp->width - sp->blit_width, 1));
int yi = halfrandom(sp, MAX(sp->height - sp->blit_height, 1));
double x, y, dx = 0, dy = 0, t, s1, s2;
if (0 == sp->nblits_remaining--) {
static int lut[] =
{0, 0, 0, 1, 1, 1, 2};
prepare_screen(mi, sp);
sp->nblits_remaining = MI_COUNT(mi) *
(2000 + halfrandom(sp, 1000) + halfrandom(sp, 1000));
if (sp->mode == 2)
sp->mode = halfrandom(sp, 2);
else
sp->mode = lut[halfrandom(sp, 7)];
}
x = (2 * xi + sp->blit_width) / (double) sp->width - 1;
y = (2 * yi + sp->blit_height) / (double) sp->height - 1;
/* (x,y) is in biunit square */
switch (sp->mode) {
case 0: /* rotor */
dx = x;
dy = y;
if (dy < 0) {
dy += 0.04;
if (dy > 0)
dy = 0.00;
}
if (dy > 0) {
dy -= 0.04;
if (dy < 0)
dy = 0.00;
}
t = dx * dx + dy * dy + 1e-10;
s1 = 2 * dx * dx / t - 1;
s2 = 2 * dx * dy / t;
dx = s1 * 5;
dy = s2 * 5;
if (sp->backwards) { /* jwz: go the other way sometimes */
dx = -dx;
dy = -dy;
}
break;
case 1: /* shuffle */
dx = erandom(sp, 3);
dy = erandom(sp, 3);
break;
case 2: /* explode */
dx = x * 3;
dy = y * 3;
break;
}
{
int qx = xi + quantize(dx), qy = yi + quantize(dy);
int wrap;
if (qx < 0 || qy < 0 ||
qx >= sp->width - sp->blit_width ||
qy >= sp->height - sp->blit_height)
continue;
/*-
Seems to cause problems using Exceed
with PseudoColor
X Error of failed request: BadGC (invalid GC parameter)
with TrueColor
X Error of failed request: BadDrawable (invalid Pixmap or Window parameter)
Major opcode of failed request: 62 (X_CopyArea)
*/
XCopyArea(display, window, window, gc, xi, yi,
sp->blit_width, sp->blit_height,
qx, qy);
switch (sp->mode) {
case 0:
/* wrap */
wrap = sp->width - (2 * sp->blit_width);
if (qx > wrap ) {
XCopyArea(display, window, window, gc, qx, qy,
sp->blit_width, sp->blit_height,
qx - wrap, qy);
}
if (qx < 2 * sp->blit_width) {
XCopyArea(display, window, window, gc, qx, qy,
sp->blit_width, sp->blit_height,
qx + wrap, qy);
}
wrap = sp->height - (2 * sp->blit_height);
if (qy > wrap) {
XCopyArea(display, window, window, gc, qx, qy,
sp->blit_width, sp->blit_height,
qx, qy - wrap);
}
if (qy < 2 * sp->blit_height) {
XCopyArea(display, window, window, gc, qx, qy,
sp->blit_width, sp->blit_height,
qx, qy + wrap);
}
break;
case 1:
case 2:
break;
}
}
}
}
void
release_slip(ModeInfo * mi)
{
if (slips != NULL) {
free(slips);
slips = (slipstruct *) NULL;
}
}
#endif /* MODE_slip */
|