X-Git-Url: http://git.hungrycats.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=hacks%2Fslip.c;h=5c51243688fe8cf8740be80e67fd5ff3ddd45db4;hb=06e9a7886a77cad92f9ddbc169d6d199a4d8b76d;hp=3b83e2bbe53ae8a0b28e10eb1daaaffc1cc52d3d;hpb=f3e0240915ed9f9b3a61781f5c7002d587563fe0;p=xscreensaver diff --git a/hacks/slip.c b/hacks/slip.c index 3b83e2bb..5c512436 100644 --- a/hacks/slip.c +++ b/hacks/slip.c @@ -20,7 +20,7 @@ static const char sccsid[] = "@(#)slip.c 4.00 97/01/01 xlockmore"; * other special, indirect and consequential damages. * * Revision History: - * 12-May-97: jwz@netscape.com: turned into a standalone program. + * 12-May-97: jwz@jwz.org: turned into a standalone program. * 01-Dec-95: Patched for VMS . */ @@ -97,7 +97,7 @@ prepare_screen(ModeInfo * mi, slipstruct * s) int not_solid = halfrandom(10); #ifdef STANDALONE /* jwz -- sometimes hack the desktop image! */ - if (halfrandom(5) == 0) + if (halfrandom(2) == 0) { grab_screen_image(DefaultScreenOfDisplay (MI_DISPLAY(mi)), MI_WINDOW(mi)); @@ -107,7 +107,7 @@ prepare_screen(ModeInfo * mi, slipstruct * s) s->backwards = LRAND() & 1; /* jwz: go the other way sometimes */ - if (s->first_time || !halfrandom(5)) { + if (s->first_time || (0 == halfrandom(10))) { XClearWindow(display, MI_WINDOW(mi)); n = 300; } else { @@ -127,17 +127,19 @@ prepare_screen(ModeInfo * mi, slipstruct * s) XSetForeground(display, gc, MI_WIN_BLACK_PIXEL(mi)); for (i = 0; i < n; i++) { - if (not_solid) + int ww = ((w/2) + halfrandom(w)); + if (not_solid) { if (MI_NPIXELS(mi) > 2) XSetForeground(display, gc, MI_PIXEL(mi, halfrandom(MI_NPIXELS(mi)))); else if (halfrandom(2)) XSetForeground(display, gc, MI_WIN_WHITE_PIXEL(mi)); else XSetForeground(display, gc, MI_WIN_BLACK_PIXEL(mi)); + } XFillRectangle(display, MI_WINDOW(mi), gc, - halfrandom(s->width - w), - halfrandom(s->height - w), - w, w); + halfrandom(s->width - ww), + halfrandom(s->height - ww), + ww, ww); } s->first_time = 0; } @@ -195,7 +197,7 @@ draw_slip(ModeInfo * mi) double x, y, dx = 0, dy = 0, t, s1, s2; if (0 == s->nblits_remaining--) { - static lut[] = + static int lut[] = {0, 0, 0, 1, 1, 1, 2}; prepare_screen(mi, s); @@ -211,7 +213,7 @@ draw_slip(ModeInfo * mi) /* (x,y) is in biunit square */ switch (s->mode) { - case 0: + case 0: /* rotor */ dx = x; dy = y; @@ -235,11 +237,11 @@ draw_slip(ModeInfo * mi) dy = -dy; } break; - case 1: + case 1: /* shuffle */ dx = erandom(3); dy = erandom(3); break; - case 2: + case 2: /* explode */ dx = x * 3; dy = y * 3; break;