X-Git-Url: http://git.hungrycats.org/cgi-bin/gitweb.cgi?p=xscreensaver;a=blobdiff_plain;f=driver%2Fxscreensaver-getimage.c;h=174bfd97f9de8636060b59452a94ced2c8ee41e3;hp=bf0feef95785248736844599af396396086a9e44;hb=447db08c956099b3b183886729108bf5b364c4b8;hpb=2d04c4f22466851aedb6ed0f2919d148f726b889 diff --git a/driver/xscreensaver-getimage.c b/driver/xscreensaver-getimage.c index bf0feef9..174bfd97 100644 --- a/driver/xscreensaver-getimage.c +++ b/driver/xscreensaver-getimage.c @@ -1451,7 +1451,6 @@ get_image (Screen *screen, { Display *dpy = DisplayOfScreen (screen); grab_type which = GRAB_BARS; - int count = 0; struct stat st; const char *file_prop = 0; XRectangle geom = { 0, 0, 0, 0 }; @@ -1546,24 +1545,28 @@ get_image (Screen *screen, } # endif /* !USE_EXTERNAL_SCREEN_GRABBER */ - count = 0; - if (desk_p) count++; - if (video_p) count++; - if (image_p) count++; - - if (count == 0) + if (! (desk_p || video_p || image_p)) which = GRAB_BARS; else { int i = 0; - while (1) /* loop until we get one that's permitted */ - { - which = (random() % 3); - if (which == GRAB_DESK && desk_p) break; - if (which == GRAB_VIDEO && video_p) break; - if (which == GRAB_FILE && image_p) break; - if (++i > 200) abort(); - } + int n; + /* Loop until we get one that's permitted. + If files or video are permitted, do them more often + than desktop. + + D+V+I: 10% + 45% + 45%. + V+I: 50% + 50% + D+V: 18% + 82% + D+I: 18% + 82% + */ + AGAIN: + n = (random() % 100); + if (++i > 300) abort(); + else if (desk_p && n < 10) which = GRAB_DESK; /* 10% */ + else if (video_p && n < 55) which = GRAB_VIDEO; /* 45% */ + else if (image_p) which = GRAB_FILE; /* 45% */ + else goto AGAIN; }