]> git.sesse.net Git - vlc/blob - modules/control/gestures.c
Gestures: Make sure p_intf->p_sys->p_input gets released.
[vlc] / modules / control / gestures.c
1 /*****************************************************************************
2  * gestures.c: control vlc with mouse gestures
3  *****************************************************************************
4  * Copyright (C) 2004 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Sigmund Augdal Helberg <dnumgis@videolan.org>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22  *****************************************************************************/
23
24 /*****************************************************************************
25  * Preamble
26  *****************************************************************************/
27 #include <stdlib.h>                                      /* malloc(), free() */
28 #include <string.h>
29
30 #include <vlc/vlc.h>
31 #include <vlc_interface.h>
32 #include <vlc_vout.h>
33 #include <vlc_playlist.h>
34
35 #ifdef HAVE_UNISTD_H
36 #    include <unistd.h>
37 #endif
38
39 /*****************************************************************************
40  * intf_sys_t: description and status of interface
41  *****************************************************************************/
42 struct intf_sys_t
43 {
44     vlc_object_t *      p_vout;
45     input_thread_t *    p_input;
46     vlc_bool_t          b_got_gesture;
47     vlc_bool_t          b_button_pressed;
48     int                 i_mouse_x, i_mouse_y;
49     int                 i_last_x, i_last_y;
50     unsigned int        i_pattern;
51     int                 i_num_gestures;
52     int                 i_threshold;
53     int                 i_button_mask;
54 };
55
56 /*****************************************************************************
57  * Local prototypes.
58  *****************************************************************************/
59 #define UP 1
60 #define DOWN 2
61 #define LEFT 3
62 #define RIGHT 4
63 #define NONE 0
64 #define GESTURE( a, b, c, d ) (a | ( b << 4 ) | ( c << 8 ) | ( d << 12 ))
65
66 int  E_(Open)   ( vlc_object_t * );
67 void E_(Close)  ( vlc_object_t * );
68 static int  InitThread     ( intf_thread_t *p_intf );
69 static void EndThread      ( intf_thread_t *p_intf );
70 static int  MouseEvent     ( vlc_object_t *, char const *,
71                              vlc_value_t, vlc_value_t, void * );
72
73 /* Exported functions */
74 static void RunIntf        ( intf_thread_t *p_intf );
75
76 /*****************************************************************************
77  * Module descriptor
78  *****************************************************************************/
79 #define THRESHOLD_TEXT N_( "Motion threshold (10-100)" )
80 #define THRESHOLD_LONGTEXT N_( \
81     "Amount of movement required for a mouse gesture to be recorded." )
82
83 #define BUTTON_TEXT N_( "Trigger button" )
84 #define BUTTON_LONGTEXT N_( \
85     "Trigger button for mouse gestures." )
86
87 static const char *button_list[] = { "left", "middle", "right" };
88 static const char *button_list_text[] =
89                                    { N_("Left"), N_("Middle"), N_("Right") };
90
91 vlc_module_begin();
92     set_shortname( _("Gestures"));
93     set_category( CAT_INTERFACE );
94     set_subcategory( SUBCAT_INTERFACE_CONTROL );
95     add_integer( "gestures-threshold", 30, NULL,
96                  THRESHOLD_TEXT, THRESHOLD_LONGTEXT, VLC_TRUE );
97     add_string( "gestures-button", "right", NULL,
98                 BUTTON_TEXT, BUTTON_LONGTEXT, VLC_FALSE );
99         change_string_list( button_list, button_list_text, 0 );
100     set_description( _("Mouse gestures control interface") );
101
102     set_capability( "interface", 0 );
103     set_callbacks( E_(Open), E_(Close) );
104 vlc_module_end();
105
106 /*****************************************************************************
107  * OpenIntf: initialize interface
108  *****************************************************************************/
109 int E_(Open) ( vlc_object_t *p_this )
110 {
111     intf_thread_t *p_intf = (intf_thread_t *)p_this;
112
113     /* Allocate instance and initialize some members */
114     p_intf->p_sys = malloc( sizeof( intf_sys_t ) );
115     if( p_intf->p_sys == NULL )
116     {
117         return( 1 );
118     };
119
120     p_intf->pf_run = RunIntf;
121
122     return( 0 );
123 }
124
125 /*****************************************************************************
126  * gesture: return a subpattern within a pattern
127  *****************************************************************************/
128 static int gesture( int i_pattern, int i_num )
129 {
130     return ( i_pattern >> ( i_num * 4 ) ) & 0xF;
131 }
132
133 /*****************************************************************************
134  * CloseIntf: destroy dummy interface
135  *****************************************************************************/
136 void E_(Close) ( vlc_object_t *p_this )
137 {
138     intf_thread_t *p_intf = (intf_thread_t *)p_this;
139
140     /* Destroy structure */
141     free( p_intf->p_sys );
142 }
143
144
145 /*****************************************************************************
146  * RunIntf: main loop
147  *****************************************************************************/
148 static void RunIntf( intf_thread_t *p_intf )
149 {
150     playlist_t * p_playlist = NULL;
151     p_intf->p_sys->p_vout = NULL;
152
153     if( InitThread( p_intf ) < 0 )
154     {
155         msg_Err( p_intf, "can't initialize interface thread" );
156         return;
157     }
158     msg_Dbg( p_intf, "interface thread initialized" );
159
160     /* Main loop */
161     while( !intf_ShouldDie( p_intf ) )
162     {
163         vlc_mutex_lock( &p_intf->change_lock );
164
165         /*
166          * mouse cursor
167          */
168         if( p_intf->p_sys->b_got_gesture )
169         {
170             /* Do something */
171             switch( p_intf->p_sys->i_pattern )
172             {
173             case LEFT:
174                 p_playlist = vlc_object_find( p_intf, VLC_OBJECT_PLAYLIST,
175                                               FIND_ANYWHERE );
176                 if( p_playlist == NULL )
177                 {
178                     break;
179                 }
180
181                 playlist_Prev( p_playlist );
182                 vlc_object_release( p_playlist );
183                 break;
184             case RIGHT:
185                 p_playlist = vlc_object_find( p_intf, VLC_OBJECT_PLAYLIST,
186                                               FIND_ANYWHERE );
187                 if( p_playlist == NULL )
188                 {
189                     break;
190                 }
191
192                 playlist_Next( p_playlist );
193                 vlc_object_release( p_playlist );
194                 break;
195             case GESTURE(UP,RIGHT,NONE,NONE):
196                 if (p_intf->p_sys->p_vout )
197                 {
198                     ((vout_thread_t *)p_intf->p_sys->p_vout)->i_changes |=
199                         VOUT_FULLSCREEN_CHANGE;
200                 }
201                 break;
202             case GESTURE(DOWN,RIGHT,NONE,NONE):
203                 /* FIXME: Should close the vout!"*/
204                 p_intf->p_libvlc->b_die = VLC_TRUE;
205                 break;
206             case GESTURE(DOWN,LEFT,UP,RIGHT):
207                 msg_Dbg(p_intf, "a square was drawn!" );
208                 break;
209             default:
210                 break;
211             }
212             p_intf->p_sys->i_num_gestures = 0;
213             p_intf->p_sys->i_pattern = 0;
214             p_intf->p_sys->b_got_gesture = VLC_FALSE;
215         }
216
217
218         vlc_mutex_unlock( &p_intf->change_lock );
219
220         /*
221          * video output
222          */
223         if( p_intf->p_sys->p_vout && p_intf->p_sys->p_vout->b_die )
224         {
225             var_DelCallback( p_intf->p_sys->p_vout, "mouse-moved",
226                              MouseEvent, p_intf );
227             var_DelCallback( p_intf->p_sys->p_vout, "mouse-button-down",
228                              MouseEvent, p_intf );
229             vlc_object_release( p_intf->p_sys->p_vout );
230             p_intf->p_sys->p_vout = NULL;
231         }
232
233         if( p_intf->p_sys->p_vout == NULL )
234         {
235             p_intf->p_sys->p_vout = vlc_object_find( p_intf,
236                                       VLC_OBJECT_VOUT, FIND_ANYWHERE );
237             if( p_intf->p_sys->p_vout )
238             {
239                 var_AddCallback( p_intf->p_sys->p_vout, "mouse-moved",
240                                  MouseEvent, p_intf );
241                 var_AddCallback( p_intf->p_sys->p_vout, "mouse-button-down",
242                                  MouseEvent, p_intf );
243             }
244         }
245
246         /* Wait a bit */
247         msleep( INTF_IDLE_SLEEP );
248     }
249
250     EndThread( p_intf );
251 }
252
253 /*****************************************************************************
254  * InitThread:
255  *****************************************************************************/
256 static int InitThread( intf_thread_t * p_intf )
257 {
258     char *psz_button;
259     /* we might need some locking here */
260     if( !intf_ShouldDie( p_intf ) )
261     {
262         input_thread_t * p_input;
263
264         /* p_intf->p_sys->p_input references counting strategy:
265          * - InitThread is responsible for only one ref count retaining
266          * - EndThread is responsible for the correspondinf release */
267         p_input = vlc_object_find( p_intf, VLC_OBJECT_INPUT, FIND_PARENT );
268
269         vlc_mutex_lock( &p_intf->change_lock );
270
271         p_intf->p_sys->p_input = p_input;
272         p_intf->p_sys->b_got_gesture = VLC_FALSE;
273         p_intf->p_sys->b_button_pressed = VLC_FALSE;
274         p_intf->p_sys->i_threshold =
275                      config_GetInt( p_intf, "gestures-threshold" );
276         psz_button = config_GetPsz( p_intf, "gestures-button" );
277         if ( !strcmp( psz_button, "left" ) )
278         {
279             p_intf->p_sys->i_button_mask = 1;
280         }
281         else if ( !strcmp( psz_button, "middle" ) )
282         {
283             p_intf->p_sys->i_button_mask = 2;
284         }
285         else if ( !strcmp( psz_button, "right" ) )
286         {
287             p_intf->p_sys->i_button_mask = 4;
288         }
289
290         p_intf->p_sys->i_pattern = 0;
291         p_intf->p_sys->i_num_gestures = 0;
292         vlc_mutex_unlock( &p_intf->change_lock );
293
294         return 0;
295     }
296     else
297     {
298         return -1;
299     }
300 }
301
302 /*****************************************************************************
303  * EndThread:
304  *****************************************************************************/
305 static void EndThread( intf_thread_t * p_intf )
306 {
307     if( p_intf->p_sys->p_vout )
308     {
309         var_DelCallback( p_intf->p_sys->p_vout, "mouse-moved",
310                          MouseEvent, p_intf );
311         var_DelCallback( p_intf->p_sys->p_vout, "mouse-button-down",
312                          MouseEvent, p_intf );
313         vlc_object_release( p_intf->p_sys->p_vout );
314     }
315
316     if( p_intf->p_sys->p_input )
317     {
318         vlc_object_release(p_intf->p_sys->p_input);
319     }
320 }
321
322 /*****************************************************************************
323  * MouseEvent: callback for mouse events
324  *****************************************************************************/
325 static int MouseEvent( vlc_object_t *p_this, char const *psz_var,
326                        vlc_value_t oldval, vlc_value_t newval, void *p_data )
327 {
328     vlc_value_t val;
329     int pattern = 0;
330
331     signed int i_horizontal, i_vertical;
332     intf_thread_t *p_intf = (intf_thread_t *)p_data;
333
334     /* don't process new gestures before the last events are processed */
335     if( p_intf->p_sys->b_got_gesture )
336     {
337         return VLC_SUCCESS;
338     }
339
340     vlc_mutex_lock( &p_intf->change_lock );
341     if( !strcmp(psz_var, "mouse-moved" ) && p_intf->p_sys->b_button_pressed )
342     {
343         var_Get( p_intf->p_sys->p_vout, "mouse-x", &val );
344         p_intf->p_sys->i_mouse_x = val.i_int;
345         var_Get( p_intf->p_sys->p_vout, "mouse-y", &val );
346         p_intf->p_sys->i_mouse_y = val.i_int;
347         i_horizontal = p_intf->p_sys->i_mouse_x -
348             p_intf->p_sys->i_last_x;
349         i_horizontal = i_horizontal / p_intf->p_sys->i_threshold;
350         i_vertical = p_intf->p_sys->i_mouse_y
351             - p_intf->p_sys->i_last_y;
352         i_vertical = i_vertical / p_intf->p_sys->i_threshold;
353
354         if( i_horizontal < 0 )
355         {
356             msg_Dbg( p_intf, "left gesture (%d)", i_horizontal );
357             pattern = LEFT;
358         }
359         else if( i_horizontal > 0 )
360         {
361             msg_Dbg( p_intf, "right gesture (%d)", i_horizontal );
362             pattern = RIGHT;
363         }
364         if( i_vertical < 0 )
365         {
366             msg_Dbg( p_intf, "up gesture (%d)", i_vertical );
367             pattern = UP;
368         }
369         else if( i_vertical > 0 )
370         {
371             msg_Dbg( p_intf, "down gesture (%d)", i_vertical );
372             pattern = DOWN;
373         }
374         if( pattern )
375         {
376             p_intf->p_sys->i_last_y = p_intf->p_sys->i_mouse_y;
377             p_intf->p_sys->i_last_x = p_intf->p_sys->i_mouse_x;
378             if( gesture( p_intf->p_sys->i_pattern,
379                          p_intf->p_sys->i_num_gestures - 1 ) != pattern )
380             {
381                 p_intf->p_sys->i_pattern |=
382                     pattern << ( p_intf->p_sys->i_num_gestures * 4 );
383                 p_intf->p_sys->i_num_gestures++;
384             }
385         }
386
387     }
388     if( !strcmp( psz_var, "mouse-button-down" )
389         && newval.i_int & p_intf->p_sys->i_button_mask
390         && !p_intf->p_sys->b_button_pressed )
391     {
392         p_intf->p_sys->b_button_pressed = VLC_TRUE;
393         var_Get( p_intf->p_sys->p_vout, "mouse-x", &val );
394         p_intf->p_sys->i_last_x = val.i_int;
395         var_Get( p_intf->p_sys->p_vout, "mouse-y", &val );
396         p_intf->p_sys->i_last_y = val.i_int;
397     }
398     if( !strcmp( psz_var, "mouse-button-down" )
399         && !( newval.i_int & p_intf->p_sys->i_button_mask )
400         && p_intf->p_sys->b_button_pressed )
401     {
402         p_intf->p_sys->b_button_pressed = VLC_FALSE;
403         p_intf->p_sys->b_got_gesture = VLC_TRUE;
404     }
405
406     vlc_mutex_unlock( &p_intf->change_lock );
407
408     return VLC_SUCCESS;
409 }