X-Git-Url: http://git.hungrycats.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=hacks%2Fglx%2Fflipflop.c;h=02ec2d570266864cbf1ca9c89f732da0bf50fa29;hb=4361b69d3178d7fc98d0388f9a223af6c2651aba;hp=640f21f704f996220c2e396656b48d8d4d43c887;hpb=6f5482d73adb0165c0130bb47d852644ab0c4869;p=xscreensaver diff --git a/hacks/glx/flipflop.c b/hacks/glx/flipflop.c index 640f21f7..02ec2d57 100644 --- a/hacks/glx/flipflop.c +++ b/hacks/glx/flipflop.c @@ -44,6 +44,7 @@ "*wireframe: False \n" # define refresh_flipflop 0 +# define release_flipflop 0 # include "xlockmore.h" #else @@ -94,7 +95,7 @@ ENTRYPOINT ModeSpecOpt flipflop_opts = {countof(opts), opts, countof(vars), vars #ifdef USE_MODULES ModStruct flipflop_description = - {"flipflop", "init_flipflop", "draw_flipflop", "release_flipflop", + {"flipflop", "init_flipflop", "draw_flipflop", NULL, "draw_flipflop", "init_flipflop", NULL, &flipflop_opts, 1000, 1, 2, 1, 4, 1.0, "", "Flipflop", 0, NULL}; @@ -169,7 +170,7 @@ static void randsheet_move( randsheet *rs, float rot ); static int randsheet_draw( randsheet *rs ); static void setup_lights(void); static int drawBoard(Flipflopcreen *); -static int display(Flipflopcreen *c); +static int display(ModeInfo *mi); static int draw_sheet(float *tex); @@ -193,44 +194,28 @@ setup_lights(void) glEnable(GL_LIGHT0); } +static void get_texture(ModeInfo *); + + ENTRYPOINT Bool flipflop_handle_event (ModeInfo *mi, XEvent *event) { Flipflopcreen *c = &qs[MI_SCREEN(mi)]; - if (event->xany.type == ButtonPress && - event->xbutton.button == Button1) - { - c->button_down_p = True; - gltrackball_start (c->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) - { - c->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 (c->trackball, event->xbutton.button, 5, - !event->xbutton.state); - return True; - } - else if (event->xany.type == MotionNotify && - c->button_down_p) + if (gltrackball_event_handler (event, c->trackball, + MI_WIDTH (mi), MI_HEIGHT (mi), + &c->button_down_p)) + return True; + else if (screenhack_event_helper (MI_DISPLAY(mi), MI_WINDOW(mi), event)) + { + if (!textured || c->got_texture) { - gltrackball_track (c->trackball, - event->xmotion.x, event->xmotion.y, - MI_WIDTH (mi), MI_HEIGHT (mi)); - return True; + textured = 1; + c->got_texture = False; + get_texture (mi); + return True; } + } return False; } @@ -249,8 +234,9 @@ drawBoard(Flipflopcreen *c) static int -display(Flipflopcreen *c) +display(ModeInfo *mi) { + Flipflopcreen *c = &qs[MI_SCREEN(mi)]; GLfloat amb[] = { 0.8, 0.8, 0.8, 1.0 }; int polys = 0; @@ -258,7 +244,6 @@ display(Flipflopcreen *c) glClear(clearbits); glMatrixMode(GL_MODELVIEW); glLoadIdentity(); - glLightf(GL_LIGHT0, GL_CONSTANT_ATTENUATION, 1.2); glLightf(GL_LIGHT0, GL_LINEAR_ATTENUATION, 0.15/board_avg_size ); glLightf(GL_LIGHT0, GL_QUADRATIC_ATTENUATION, 0.15/board_avg_size ); @@ -278,6 +263,15 @@ display(Flipflopcreen *c) if(textured) glBindTexture(GL_TEXTURE_2D, c->texid); +# 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); + } +# endif + polys = drawBoard(c); if (!c->button_down_p) { @@ -354,6 +348,8 @@ get_texture(ModeInfo *modeinfo) image_loaded_cb, c); } +static void free_flipflop(ModeInfo *mi); + ENTRYPOINT void init_flipflop(ModeInfo *mi) { @@ -399,13 +395,11 @@ init_flipflop(ModeInfo *mi) screen = MI_SCREEN(mi); wire = MI_IS_WIREFRAME(mi); - if(!qs && - !(qs = (Flipflopcreen *) calloc(MI_NUM_SCREENS(mi), sizeof(Flipflopcreen)))) - return; + MI_INIT(mi, qs, free_flipflop); c = &qs[screen]; c->window = MI_WINDOW(mi); - c->trackball = gltrackball_init (); + c->trackball = gltrackball_init (False); c->flipspeed = 0.03; c->reldist = 1; @@ -459,7 +453,7 @@ draw_flipflop(ModeInfo *mi) glXMakeCurrent(disp, w, *(c->glx_context)); - mi->polygon_count = display(c); + mi->polygon_count = display(mi); if(mi->fps_p){ do_fps(mi); @@ -471,28 +465,14 @@ draw_flipflop(ModeInfo *mi) } -ENTRYPOINT void -release_flipflop(ModeInfo *mi) +static void +free_flipflop(ModeInfo *mi) { - if(qs) { - int screen; - - for (screen = 0; screen < MI_NUM_SCREENS(mi); screen++) - { - Flipflopcreen *c = &qs[MI_SCREEN(mi)]; - if (c->glx_context) - c->glx_context = 0; - if (c->sheet) { - randsheet_free(c->sheet); - free (c->sheet); - c->sheet = 0; - } - } - free(qs); - qs = 0; + Flipflopcreen *c = &qs[MI_SCREEN(mi)]; + if (c->sheet) { + randsheet_free(c->sheet); + free (c->sheet); } - - FreeAllGL(mi); } /*** ADDED RANDSHEET FUNCTIONS ***/