X-Git-Url: http://git.hungrycats.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=hacks%2Fglx%2Fgears.c;h=61599f9ae5e372ed490379bea978101acf41f69c;hb=d5186197bc394e10a4402f7f6d23fbb14103bc50;hp=054bc1c0a7b972d224b02ea8dc4dda64de33e1ed;hpb=6b1c86cf395f59389e4ece4ea8f4bea2c332745b;p=xscreensaver diff --git a/hacks/glx/gears.c b/hacks/glx/gears.c index 054bc1c0..61599f9a 100644 --- a/hacks/glx/gears.c +++ b/hacks/glx/gears.c @@ -1,4 +1,4 @@ -/* gears, Copyright (c) 2007-2008 Jamie Zawinski +/* gears, Copyright (c) 2007-2014 Jamie Zawinski * * Permission to use, copy, modify, distribute, and sell this software and its * documentation for any purpose is hereby granted without fee, provided that @@ -102,50 +102,6 @@ reshape_gears (ModeInfo *mi, int width, int height) } -ENTRYPOINT Bool -gears_handle_event (ModeInfo *mi, XEvent *event) -{ - gears_configuration *bp = &bps[MI_SCREEN(mi)]; - - if (event->xany.type == ButtonPress && - event->xbutton.button == Button1) - { - bp->button_down_p = True; - gltrackball_start (bp->trackball, - event->xbutton.x, event->xbutton.y, - MI_WIDTH (mi), MI_HEIGHT (mi)); - return True; - } - else if (event->xany.type == ButtonRelease && - event->xbutton.button == Button1) - { - bp->button_down_p = False; - return True; - } - else if (event->xany.type == ButtonPress && - (event->xbutton.button == Button4 || - event->xbutton.button == Button5 || - event->xbutton.button == Button6 || - event->xbutton.button == Button7)) - { - gltrackball_mousewheel (bp->trackball, event->xbutton.button, 10, - !!event->xbutton.state); - return True; - } - else if (event->xany.type == MotionNotify && - bp->button_down_p) - { - gltrackball_track (bp->trackball, - event->xmotion.x, event->xmotion.y, - MI_WIDTH (mi), MI_HEIGHT (mi)); - return True; - } - - return False; -} - - - static void free_gear (gear *g) { @@ -282,7 +238,8 @@ new_gear (ModeInfo *mi, gear *parent) double pix = g->tooth_h * MI_HEIGHT(mi); /* approx. tooth size in pixels */ if (pix <= 2.5) g->size = INVOLUTE_SMALL; else if (pix <= 3.5) g->size = INVOLUTE_MEDIUM; - else g->size = INVOLUTE_LARGE; + else if (pix <= 25) g->size = INVOLUTE_LARGE; + else g->size = INVOLUTE_HUGE; } g->base_p = !parent; @@ -739,8 +696,6 @@ init_gears (ModeInfo *mi) fprintf(stderr, "%s: out of memory\n", progname); exit(1); } - - bp = &bps[MI_SCREEN(mi)]; } bp = &bps[MI_SCREEN(mi)]; @@ -767,20 +722,30 @@ init_gears (ModeInfo *mi) glLightfv(GL_LIGHT0, GL_SPECULAR, spc); } - { - double spin_speed = 0.5; - double wander_speed = 0.01; - double spin_accel = 0.25; - - bp->rot = make_rotator (do_spin ? spin_speed : 0, - do_spin ? spin_speed : 0, - do_spin ? spin_speed : 0, - spin_accel, - do_wander ? wander_speed : 0, - True - ); - bp->trackball = gltrackball_init (); - } + if (! bp->rot) + { + double spin_speed = 0.5; + double wander_speed = 0.01; + double spin_accel = 0.25; + + bp->rot = make_rotator (do_spin ? spin_speed : 0, + do_spin ? spin_speed : 0, + do_spin ? spin_speed : 0, + spin_accel, + do_wander ? wander_speed : 0, + True + ); + bp->trackball = gltrackball_init (True); + } + + if (bp->gears) + { + for (i = 0; i < bp->ngears; i++) + free_gear (bp->gears[i]); + free (bp->gears); + bp->gears = 0; + bp->ngears = 0; + } if (!(random() % 8)) { @@ -790,10 +755,11 @@ init_gears (ModeInfo *mi) { gear *g = 0; int total_gears = MI_COUNT (mi); - int i; + + bp->planetary_p = False; + if (total_gears <= 0) total_gears = 3 + abs (BELLRAND (8) - 4); /* 3 - 7, mostly 3. */ - bp->gears = (gear **) calloc (total_gears+2, sizeof(**bp->gears)); bp->ngears = 0; @@ -940,6 +906,24 @@ draw_gears (ModeInfo *mi) glXSwapBuffers(dpy, window); } +ENTRYPOINT Bool +gears_handle_event (ModeInfo *mi, XEvent *event) +{ + gears_configuration *bp = &bps[MI_SCREEN(mi)]; + + if (gltrackball_event_handler (event, bp->trackball, + MI_WIDTH (mi), MI_HEIGHT (mi), + &bp->button_down_p)) + return True; + else if (screenhack_event_helper (MI_DISPLAY(mi), MI_WINDOW(mi), event)) + { + init_gears (mi); + return True; + } + + return False; +} + XSCREENSAVER_MODULE ("Gears", gears) #endif /* USE_GL */