From http://www.jwz.org/xscreensaver/xscreensaver-5.37.tar.gz
[xscreensaver] / hacks / glx / hilbert.c
index c9ee163f648c4e73d6f89675330dd24a5e9e9620..3caae97f6f8d0b89d25c7a67b85beb3a0c28e0ba 100644 (file)
@@ -1,4 +1,4 @@
-/* hilbert, Copyright (c) 2011 Jamie Zawinski <jwz@jwz.org>
+/* hilbert, Copyright (c) 2011-2014 Jamie Zawinski <jwz@jwz.org>
  *
  * Permission to use, copy, modify, distribute, and sell this software and its
  * documentation for any purpose is hereby granted without fee, provided that
@@ -18,7 +18,8 @@
                        "*count:        30          \n" \
                        "*showFPS:      False       \n" \
                        "*wireframe:    False       \n" \
-                       "*geometry:     800x800\n"
+                       "*geometry:     800x800\n" \
+                       "*suppressRotationAnimation: True\n" \
 
 # define refresh_hilbert 0
 # define release_hilbert 0
@@ -769,6 +770,14 @@ reshape_hilbert (ModeInfo *mi, int width, int height)
              0.0, 0.0, 0.0,
              0.0, 1.0, 0.0);
 
+# ifdef HAVE_MOBILE    /* Keep it the same relative size when rotated. */
+  {
+    int o = (int) current_device_rotation();
+    if (o != 0 && o != 180 && o != -180)
+      glScalef (1/h, 1/h, 1/h);
+  }
+# endif
+
   glClear(GL_COLOR_BUFFER_BIT);
 }
 
@@ -778,56 +787,44 @@ hilbert_handle_event (ModeInfo *mi, XEvent *event)
 {
   hilbert_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;
-    }
+  if (gltrackball_event_handler (event, bp->trackball,
+                                 MI_WIDTH (mi), MI_HEIGHT (mi),
+                                 &bp->button_down_p))
+    return True;
   else if (event->xany.type == KeyPress)
     {
       KeySym keysym;
       char c = 0;
       XLookupString (&event->xkey, &c, 1, &keysym, 0);
-      if (c == '+' || c == '=')
+      if (c == '+' || c == '=' ||
+          keysym == XK_Up || keysym == XK_Right || keysym == XK_Next)
         {
           bp->depth++;
           if (bp->depth > max_depth) bp->depth = max_depth;
           return True;
         }
-      else if (c == '-' || c == '_')
+      else if (c == '-' || c == '_' ||
+               keysym == XK_Down || keysym == XK_Left || keysym == XK_Prior)
         {
           bp->depth--;
           if (bp->depth < 1) bp->depth = 1;
           return True;
         }
+      else if (screenhack_event_helper (MI_DISPLAY(mi), MI_WINDOW(mi), event))
+        {
+          bp->depth += bp->depth_tick;
+          if (bp->depth > max_depth-1)
+            {
+              bp->depth = max_depth;
+              bp->depth_tick = -1;
+            }
+          else if (bp->depth <= 1)
+            {
+              bp->depth = 1;
+              bp->depth_tick = 1;
+            }
+          return True;
+        }
     }
 
   return False;
@@ -841,14 +838,7 @@ init_hilbert (ModeInfo *mi)
   int wire = MI_IS_WIREFRAME(mi);
   int i;
 
-  if (!bps) {
-    bps = (hilbert_configuration *)
-      calloc (MI_NUM_SCREENS(mi), sizeof (hilbert_configuration));
-    if (!bps) {
-      fprintf(stderr, "%s: out of memory\n", progname);
-      exit(1);
-    }
-  }
+  MI_INIT (mi, bps, NULL);
 
   bp = &bps[MI_SCREEN(mi)];
 
@@ -900,7 +890,7 @@ init_hilbert (ModeInfo *mi)
                             do_wander ? wander_speed : 0,
                             do_spin);
     bp->rot2 = make_rotator (0, 0, 0, 0, tilt_speed, True);
-    bp->trackball = gltrackball_init ();
+    bp->trackball = gltrackball_init (True);
   }
 
   if (mode_str && !strcasecmp(mode_str, "2d"))