51cb72e431e045b5d4736467f89156b2f02a74dd
[xscreensaver] / hacks / glx / gltrackball.c
1 /* gltrackball, Copyright (c) 2002, 2005 Jamie Zawinski <jwz@jwz.org>
2  * GL-flavored wrapper for trackball.c
3  *
4  * Permission to use, copy, modify, distribute, and sell this software and its
5  * documentation for any purpose is hereby granted without fee, provided that
6  * the above copyright notice appear in all copies and that both that
7  * copyright notice and this permission notice appear in supporting
8  * documentation.  No representations are made about the suitability of this
9  * software for any purpose.  It is provided "as is" without express or 
10  * implied warranty.
11  */
12
13 #include <math.h>
14 #include <stdlib.h>
15
16 #ifdef HAVE_CONFIG_H
17 # include "config.h"
18 #endif
19
20 #ifdef HAVE_COCOA
21 # include <OpenGL/gl.h>
22 #else
23 # include <GL/gl.h>
24 #endif
25
26 #include "trackball.h"
27 #include "gltrackball.h"
28
29 struct trackball_state {
30   int x, y;
31   GLfloat q[4];
32 };
33
34 /* Returns a trackball_state object, which encapsulates the stuff necessary
35    to make dragging the mouse on the window of a GL program do the right thing.
36  */
37 trackball_state *
38 gltrackball_init (void)
39 {
40   trackball_state *ts = (trackball_state *) calloc (1, sizeof (*ts));
41   if (!ts) return 0;
42   trackball (ts->q, 0, 0, 0, 0);
43   return ts;
44 }
45
46 /* Begin tracking the mouse: Call this when the mouse button goes down.
47    x and y are the mouse position relative to the window.
48    w and h are the size of the window.
49  */
50 void
51 gltrackball_start (trackball_state *ts, int x, int y, int w, int h)
52 {
53   ts->x = x;
54   ts->y = y;
55 }
56
57 /* Track the mouse: Call this each time the mouse moves with the button down.
58    x and y are the new mouse position relative to the window.
59    w and h are the size of the window.
60  */
61 void
62 gltrackball_track (trackball_state *ts, int x, int y, int w, int h)
63 {
64   float q2[4];
65   trackball (q2,
66              (2.0 * ts->x - w) / w,
67              (h - 2.0 * ts->y) / h,
68              (2.0 * x - w) / w,
69              (h - 2.0 * y) / h);
70   ts->x = x;
71   ts->y = y;
72   add_quats (q2, ts->q, ts->q);
73 }
74
75 /* Execute the rotations current encapsulated in the trackball_state:
76    this does something analagous to glRotatef().
77  */
78 void
79 gltrackball_rotate (trackball_state *ts)
80 {
81   GLfloat m[4][4];
82   build_rotmatrix (m, ts->q);
83   glMultMatrixf (&m[0][0]);
84 }
85
86
87 # define Button4 4  /* X11/Xlib.h */
88 # define Button5 5
89
90 /* Call this when a mouse-wheel click is detected.
91    Clicks act like horizontal or vertical drags.
92    Percent is the length of the drag as a percentage of the screen size.
93    Button is 'Button4' or 'Button5'.
94  */
95 void
96 gltrackball_mousewheel (trackball_state *ts,
97                         int button, int percent, int horizontal_p)
98 {
99   int up_p;
100   double move;
101   switch (button) {
102     case Button4: up_p = 1; break;
103     case Button5: up_p = 0; break;
104   default: abort(); break;
105   }
106
107   if (horizontal_p) up_p = !up_p;
108
109   move = (up_p
110           ? 1.0 - (percent / 100.0)
111           : 1.0 + (percent / 100.0));
112
113   gltrackball_start (ts, 50, 50, 100, 100);
114   if (horizontal_p)
115     gltrackball_track (ts, 50*move, 50, 100, 100);
116   else
117     gltrackball_track (ts, 50, 50*move, 100, 100);
118 }
119
120 void
121 gltrackball_get_quaternion (trackball_state *ts, float q[4])
122 {
123   int i;
124   for (i=0; i<4; i++)
125     q[i] = ts->q[i];
126 }