X-Git-Url: http://git.hungrycats.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=hacks%2Fglx%2Fantinspect.c;h=ad3bef56ef15b7172e1ce6b5787bbd923b9e0045;hb=39809ded547bdbb08207d3e514950425215b4410;hp=179c44f4fa856d1ac8817e84ca46f61e9a735e95;hpb=f8cf5ac7b2f53510f80a0eaf286a25298be17bfe;p=xscreensaver diff --git a/hacks/glx/antinspect.c b/hacks/glx/antinspect.c index 179c44f4..ad3bef56 100644 --- a/hacks/glx/antinspect.c +++ b/hacks/glx/antinspect.c @@ -19,13 +19,14 @@ #define DEFAULTS "*delay: 20000 \n" \ "*showFPS: False \n" -# define refresh_antinspect 0 +# define free_antinspect 0 +# define release_antinspect 0 #include "xlockmore.h" #else #include "xlock.h" #endif -#ifdef HAVE_COCOA +#ifdef HAVE_JWXYZ # include "jwxyz.h" #else # include @@ -65,7 +66,7 @@ ENTRYPOINT ModeSpecOpt antinspect_opts = {sizeof opts / sizeof opts[0], #ifdef USE_MODULES ModStruct antinspect_description = - {"antinspect", "init_antinspect", "draw_antinspect", "release_antinspect", + {"antinspect", "init_antinspect", "draw_antinspect", (char *) NULL, "draw_antinspect", "change_antinspect", (char *) NULL, &antinspect_opts, 1000, 1, 1, 1, 4, 1.0, "", "draws some ants", 0, NULL}; @@ -548,10 +549,17 @@ static Bool draw_antinspect_strip(ModeInfo * mi) ENTRYPOINT void reshape_antinspect(ModeInfo * mi, int width, int height) { double h = (GLfloat) height / (GLfloat) width; + int y = 0; antinspectstruct *mp = &antinspect[MI_SCREEN(mi)]; mp->linewidth = (width / 512) + 1; - glViewport(0, 0, mp->WindW = (GLint) width, mp->WindH = (GLint) height); + if (width > height * 5) { /* tiny window: show middle */ + height = width * 9/16; + y = -height/2; + h = height / (GLfloat) width; + } + + glViewport(0, y, mp->WindW = (GLint) width, mp->WindH = (GLint) height); glMatrixMode(GL_PROJECTION); glLoadIdentity(); @@ -588,47 +596,14 @@ static void pinit(void) glMaterialfv(GL_FRONT_AND_BACK, GL_SPECULAR, front_specular); } -ENTRYPOINT void release_antinspect(ModeInfo * mi) -{ - if(antinspect) { - free((void *) antinspect); - antinspect = (antinspectstruct *) NULL; - } - FreeAllGL(mi); -} - ENTRYPOINT Bool antinspect_handle_event (ModeInfo *mi, XEvent *event) { antinspectstruct *mp = &antinspect[MI_SCREEN(mi)]; - if(event->xany.type == ButtonPress && event->xbutton.button == Button1) { - mp->button_down_p = True; - gltrackball_start(mp->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) { - mp->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 (mp->trackball, event->xbutton.button, 5, - !event->xbutton.state); - return True; - } - else if(event->xany.type == MotionNotify && mp->button_down_p) { - gltrackball_track (mp->trackball, - event->xmotion.x, event->xmotion.y, - MI_WIDTH (mi), MI_HEIGHT (mi)); - return True; - } + if (gltrackball_event_handler (event, mp->trackball, + MI_WIDTH (mi), MI_HEIGHT (mi), + &mp->button_down_p)) + return True; return False; } @@ -637,15 +612,11 @@ ENTRYPOINT void init_antinspect(ModeInfo * mi) { antinspectstruct *mp; - if(antinspect == NULL) { - if((antinspect = (antinspectstruct *) calloc(MI_NUM_SCREENS(mi), - sizeof (antinspectstruct))) == NULL) - return; - } + MI_INIT(mi, antinspect); mp = &antinspect[MI_SCREEN(mi)]; mp->step = NRAND(90); mp->ant_position = NRAND(90); - mp->trackball = gltrackball_init (); + mp->trackball = gltrackball_init (False); if ((mp->glx_context = init_GL(mi)) != NULL) { reshape_antinspect(mi, MI_WIDTH(mi), MI_HEIGHT(mi)); @@ -679,20 +650,30 @@ ENTRYPOINT void draw_antinspect(ModeInfo * mi) glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT); glPushMatrix(); - glRotatef(current_device_rotation(), 0, 0, 1); mi->polygon_count = 0; /* position camera --- this works well, we can peer inside the antbubble */ glTranslatef(0.0, 0.0, -10.0); + +# ifdef HAVE_MOBILE /* Keep it the same relative size when rotated. */ + { + GLfloat h = MI_HEIGHT(mi) / (GLfloat) MI_WIDTH(mi); + int o = (int) current_device_rotation(); + if (o != 0 && o != 180 && o != -180) + glScalef (1/h, 1/h, 1/h); + glRotatef(o, 0, 0, 1); + } +# endif + gltrackball_rotate(mp->trackball); glRotatef((15.0/2.0 + 15.0*sin(mp->ant_step/100.0)), 1.0, 0.0, 0.0); glRotatef(30.0, 1.0, 0.0, 0.0); glRotatef(180.0, 0.0, 1.0, 0.0); if (!draw_antinspect_strip(mi)) { - release_antinspect(mi); + MI_ABORT(mi); return; }