]> git.sesse.net Git - vlc/blob - modules/control/gestures.c
Gestures: Really remove unwanted commit. (Oops).
[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_aout.h>
34 #include <vlc_playlist.h>
35
36 #ifdef HAVE_UNISTD_H
37 #    include <unistd.h>
38 #endif
39
40 /*****************************************************************************
41  * intf_sys_t: description and status of interface
42  *****************************************************************************/
43 struct intf_sys_t
44 {
45     vlc_object_t *      p_vout;
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  * input_from_playlist: don't forget to release the return value
135  *  Also this function should really be available from core.
136  *****************************************************************************/
137 static input_thread_t * input_from_playlist ( playlist_t *p_playlist )
138 {
139     input_thread_t * p_input;
140
141     PL_LOCK; 
142     p_input = p_playlist->p_input; 
143     if( p_input ) 
144         vlc_object_yield( p_input ); 
145     PL_UNLOCK;
146
147     return p_input;
148 }
149
150 /*****************************************************************************
151  * CloseIntf: destroy dummy interface
152  *****************************************************************************/
153 void E_(Close) ( vlc_object_t *p_this )
154 {
155     intf_thread_t *p_intf = (intf_thread_t *)p_this;
156
157     /* Destroy structure */
158     free( p_intf->p_sys );
159 }
160
161
162 /*****************************************************************************
163  * RunIntf: main loop
164  *****************************************************************************/
165 static void RunIntf( intf_thread_t *p_intf )
166 {
167     playlist_t * p_playlist = NULL;
168
169     vlc_mutex_lock( &p_intf->change_lock );
170     p_intf->p_sys->p_vout = NULL;
171     vlc_mutex_unlock( &p_intf->change_lock );
172
173     if( InitThread( p_intf ) < 0 )
174     {
175         msg_Err( p_intf, "can't initialize interface thread" );
176         return;
177     }
178     msg_Dbg( p_intf, "interface thread initialized" );
179
180     /* Main loop */
181     while( !intf_ShouldDie( p_intf ) )
182     {
183         vlc_mutex_lock( &p_intf->change_lock );
184
185         /*
186          * mouse cursor
187          */
188         if( p_intf->p_sys->b_got_gesture )
189         {
190             vlc_value_t val;
191             int i_interval = 0;
192             /* Do something */
193             /* If you modify this, please try to follow this convention:
194                Start with LEFT, RIGHT for playback related commands
195                and UP, DOWN, for other commands */
196             switch( p_intf->p_sys->i_pattern )
197             {
198             case LEFT:
199                 i_interval = config_GetInt( p_intf , "short-jump-size" );
200                 if ( i_interval > 0 ) {
201                     val.i_time = ( (mtime_t)( -i_interval ) * 1000000L);
202                     var_Set( p_intf, "time-offset", val );
203                 }
204                 msg_Dbg(p_intf, "Go backward in the movie!");
205                 break;
206             case RIGHT:
207                 i_interval = config_GetInt( p_intf , "short-jump-size" );
208                 if ( i_interval > 0 ) {
209                     val.i_time = ( (mtime_t)( i_interval ) * 1000000L);
210                     var_Set( p_intf, "time-offset", val );
211                 }
212                 msg_Dbg(p_intf, "Go forward in the movie!");
213                 break;
214             case GESTURE(LEFT,UP,NONE,NONE):
215                 /*FIXME BF*/
216                 msg_Dbg(p_intf, "Going slower.");
217                 break;
218             case GESTURE(RIGHT,UP,NONE,NONE):
219                 /*FIXME FF*/
220                 msg_Dbg(p_intf, "Going faster.");
221                 break;
222             case GESTURE(LEFT,RIGHT,NONE,NONE):
223             case GESTURE(RIGHT,LEFT,NONE,NONE):
224                 {
225                     input_thread_t * p_input;
226                     p_playlist = vlc_object_find( p_intf, VLC_OBJECT_PLAYLIST,
227                                               FIND_ANYWHERE );
228
229                    if( !p_playlist )
230                         break;
231
232                     p_input = input_from_playlist( p_playlist );
233                     vlc_object_release( p_playlist );
234                     
235                     if( !p_input )
236                         break;
237                     
238                     val.i_int = PLAYING_S;
239                     if( p_input )
240                     {
241                         var_Get( p_input, "state", &val);
242                         if( val.i_int == PAUSE_S )
243                         {
244                             val.i_int = PLAYING_S;
245                         }
246                         else
247                         {
248                             val.i_int = PAUSE_S;
249                         }
250                         var_Set( p_input, "state", val);
251                     }
252                     msg_Dbg(p_intf, "Play/Pause");
253                     vlc_object_release( p_input );
254                 }
255                 break;
256             case GESTURE(LEFT,DOWN,NONE,NONE):
257                 p_playlist = vlc_object_find( p_intf, VLC_OBJECT_PLAYLIST,
258                                               FIND_ANYWHERE );
259                 if( p_playlist == NULL )
260                 {
261                     break;
262                 }
263
264                 playlist_Prev( p_playlist );
265                 vlc_object_release( p_playlist );
266                 break;
267             case GESTURE(RIGHT,DOWN,NONE,NONE):
268                 p_playlist = vlc_object_find( p_intf, VLC_OBJECT_PLAYLIST,
269                                               FIND_ANYWHERE );
270                 if( p_playlist == NULL )
271                 {
272                     break;
273                 }
274
275                 playlist_Next( p_playlist );
276                 vlc_object_release( p_playlist );
277                 break;
278             case UP:
279                 {
280                     audio_volume_t i_newvol;
281                     aout_VolumeUp( p_intf, 1, &i_newvol );
282                     msg_Dbg(p_intf, "Louder");
283                 }
284                 break;
285             case DOWN:
286                 {
287                     audio_volume_t i_newvol;
288                     aout_VolumeDown( p_intf, 1, &i_newvol );
289                     msg_Dbg(p_intf, "Quieter");
290                 }
291                 break;
292             case GESTURE(UP,DOWN,NONE,NONE):
293             case GESTURE(DOWN,UP,NONE,NONE):
294                 {
295                     audio_volume_t i_newvol = -1;
296                     aout_VolumeMute( p_intf, &i_newvol );
297                     msg_Dbg(p_intf, "Mute sound");
298                 }
299                 break;
300             case GESTURE(UP,RIGHT,NONE,NONE):
301                 {
302                    input_thread_t * p_input;
303                    vlc_value_t val, list, list2;
304                    int i_count, i;
305
306                     p_playlist = vlc_object_find( p_intf, VLC_OBJECT_PLAYLIST,
307                                               FIND_ANYWHERE );
308
309                    if( !p_playlist )
310                         break;
311
312                     p_input = input_from_playlist( p_playlist );
313
314                     vlc_object_release( p_playlist );
315
316                     if( !p_input )
317                         break;
318
319                    var_Get( p_input, "audio-es", &val );
320                    var_Change( p_input, "audio-es", VLC_VAR_GETCHOICES,
321                                &list, &list2 );
322                    i_count = list.p_list->i_count;
323                    if( i_count <= 1 )
324                    {
325                        vlc_object_release( p_input );
326                        continue;
327                    }
328                    for( i = 0; i < i_count; i++ )
329                    {
330                        if( val.i_int == list.p_list->p_values[i].i_int )
331                        {
332                            vlc_object_release( p_input );
333                            break;
334                        }
335                    }
336                    /* value of audio-es was not in choices list */
337                    if( i == i_count )
338                    {
339                        msg_Warn( p_input,
340                                "invalid current audio track, selecting 0" );
341                        var_Set( p_input, "audio-es",
342                                list.p_list->p_values[0] );
343                        i = 0;
344                    }
345                    else if( i == i_count - 1 )
346                    {
347                        var_Set( p_input, "audio-es",
348                                list.p_list->p_values[1] );
349                        i = 1;
350                    }
351                    else
352                    {
353                        var_Set( p_input, "audio-es",
354                                list.p_list->p_values[i+1] );
355                        i++;
356                    }
357                    vlc_object_release( p_input );
358                 }
359                 break;
360             case GESTURE(DOWN,RIGHT,NONE,NONE):
361                 {
362                     input_thread_t * p_input;
363                     vlc_value_t val, list, list2;
364                     int i_count, i;
365
366                     p_playlist = vlc_object_find( p_intf, VLC_OBJECT_PLAYLIST,
367                                               FIND_ANYWHERE );
368
369                     if( !p_playlist )
370                         break;
371
372                     p_input = input_from_playlist( p_playlist );
373                     vlc_object_release( p_playlist );
374
375                     if( !p_input )
376                         break;
377
378                     var_Get( p_input, "spu-es", &val );
379
380                     var_Change( p_input, "spu-es", VLC_VAR_GETCHOICES,
381                             &list, &list2 );
382                     i_count = list.p_list->i_count;
383                     if( i_count <= 1 )
384                     {
385                         vlc_object_release( p_input );
386                         continue;
387                     }
388                     for( i = 0; i < i_count; i++ )
389                     {
390                         if( val.i_int == list.p_list->p_values[i].i_int )
391                         {
392                             vlc_object_release( p_input );
393                             break;
394                         }
395                     }
396                     /* value of spu-es was not in choices list */
397                     if( i == i_count )
398                     {
399                         msg_Warn( p_input,
400                                 "invalid current subtitle track, selecting 0" );
401                         var_Set( p_input, "spu-es", list.p_list->p_values[0] );
402                         i = 0;
403                     }
404                     else if( i == i_count - 1 )
405                     {
406                         var_Set( p_input, "spu-es", list.p_list->p_values[0] );
407                         i = 0;
408                     }
409                     else
410                     {
411                         var_Set( p_input, "spu-es", 
412                                 list.p_list->p_values[i+1] );
413                         i = i + 1;
414                     }
415                     vlc_object_release( p_input );
416                 }
417                 break;
418             case GESTURE(UP,LEFT,NONE,NONE):
419                 if (p_intf->p_sys->p_vout )
420                 {
421                     ((vout_thread_t *)p_intf->p_sys->p_vout)->i_changes |=
422                         VOUT_FULLSCREEN_CHANGE;
423                 }
424                 break;
425             case GESTURE(DOWN,LEFT,NONE,NONE):
426                 /* FIXME: Should close the vout!"*/
427                 p_intf->p_libvlc->b_die = VLC_TRUE;
428                 break;
429             case GESTURE(DOWN,LEFT,UP,RIGHT):
430             case GESTURE(UP,RIGHT,DOWN,LEFT):
431                 msg_Dbg(p_intf, "a square was drawn!" );
432                 break;
433             default:
434                 break;
435             }
436             p_intf->p_sys->i_num_gestures = 0;
437             p_intf->p_sys->i_pattern = 0;
438             p_intf->p_sys->b_got_gesture = VLC_FALSE;
439         }
440
441         /*
442          * video output
443          */
444         if( p_intf->p_sys->p_vout && p_intf->p_sys->p_vout->b_die )
445         {
446             var_DelCallback( p_intf->p_sys->p_vout, "mouse-moved",
447                              MouseEvent, p_intf );
448             var_DelCallback( p_intf->p_sys->p_vout, "mouse-button-down",
449                              MouseEvent, p_intf );
450             vlc_object_release( p_intf->p_sys->p_vout );
451             p_intf->p_sys->p_vout = NULL;
452         }
453
454         if( p_intf->p_sys->p_vout == NULL )
455         {
456             p_intf->p_sys->p_vout = vlc_object_find( p_intf,
457                                       VLC_OBJECT_VOUT, FIND_ANYWHERE );
458             if( p_intf->p_sys->p_vout )
459             {
460                 var_AddCallback( p_intf->p_sys->p_vout, "mouse-moved",
461                                  MouseEvent, p_intf );
462                 var_AddCallback( p_intf->p_sys->p_vout, "mouse-button-down",
463                                  MouseEvent, p_intf );
464             }
465         }
466
467         vlc_mutex_unlock( &p_intf->change_lock );
468
469         /* Wait a bit */
470         msleep( INTF_IDLE_SLEEP );
471     }
472
473     EndThread( p_intf );
474 }
475
476 /*****************************************************************************
477  * InitThread:
478  *****************************************************************************/
479 static int InitThread( intf_thread_t * p_intf )
480 {
481     char *psz_button;
482     /* we might need some locking here */
483     if( !intf_ShouldDie( p_intf ) )
484     {
485         /* p_intf->change_lock locking strategy:
486          * - Every access to p_intf->p_sys are locked threw p_intf->change_lock
487          * - make sure there won't be  cross increment/decrement ref count
488          *   of p_intf->p_sys members p_intf->change_lock should be locked
489          *   during those operations */
490         vlc_mutex_lock( &p_intf->change_lock );
491
492         p_intf->p_sys->b_got_gesture = VLC_FALSE;
493         p_intf->p_sys->b_button_pressed = VLC_FALSE;
494         p_intf->p_sys->i_threshold =
495                      config_GetInt( p_intf, "gestures-threshold" );
496         psz_button = config_GetPsz( p_intf, "gestures-button" );
497         if ( !strcmp( psz_button, "left" ) )
498         {
499             p_intf->p_sys->i_button_mask = 1;
500         }
501         else if ( !strcmp( psz_button, "middle" ) )
502         {
503             p_intf->p_sys->i_button_mask = 2;
504         }
505         else if ( !strcmp( psz_button, "right" ) )
506         {
507             p_intf->p_sys->i_button_mask = 4;
508         }
509
510         p_intf->p_sys->i_pattern = 0;
511         p_intf->p_sys->i_num_gestures = 0;
512         vlc_mutex_unlock( &p_intf->change_lock );
513
514         return 0;
515     }
516     else
517     {
518         return -1;
519     }
520 }
521
522 /*****************************************************************************
523  * EndThread:
524  *****************************************************************************/
525 static void EndThread( intf_thread_t * p_intf )
526 {
527     vlc_mutex_lock( &p_intf->change_lock );
528
529     if( p_intf->p_sys->p_vout )
530     {
531         var_DelCallback( p_intf->p_sys->p_vout, "mouse-moved",
532                          MouseEvent, p_intf );
533         var_DelCallback( p_intf->p_sys->p_vout, "mouse-button-down",
534                          MouseEvent, p_intf );
535         vlc_object_release( p_intf->p_sys->p_vout );
536     }
537
538     vlc_mutex_unlock( &p_intf->change_lock );
539 }
540
541 /*****************************************************************************
542  * MouseEvent: callback for mouse events
543  *****************************************************************************/
544 static int MouseEvent( vlc_object_t *p_this, char const *psz_var,
545                        vlc_value_t oldval, vlc_value_t newval, void *p_data )
546 {
547     vlc_value_t val;
548     int pattern = 0;
549
550     signed int i_horizontal, i_vertical;
551     intf_thread_t *p_intf = (intf_thread_t *)p_data;
552
553     vlc_mutex_lock( &p_intf->change_lock );
554
555     /* don't process new gestures before the last events are processed */
556     if( p_intf->p_sys->b_got_gesture )
557     {
558         vlc_mutex_unlock( &p_intf->change_lock );
559         return VLC_SUCCESS;
560     }
561
562     if( !strcmp(psz_var, "mouse-moved" ) && p_intf->p_sys->b_button_pressed )
563     {
564         var_Get( p_intf->p_sys->p_vout, "mouse-x", &val );
565         p_intf->p_sys->i_mouse_x = val.i_int;
566         var_Get( p_intf->p_sys->p_vout, "mouse-y", &val );
567         p_intf->p_sys->i_mouse_y = val.i_int;
568         i_horizontal = p_intf->p_sys->i_mouse_x -
569             p_intf->p_sys->i_last_x;
570         i_horizontal = i_horizontal / p_intf->p_sys->i_threshold;
571         i_vertical = p_intf->p_sys->i_mouse_y
572             - p_intf->p_sys->i_last_y;
573         i_vertical = i_vertical / p_intf->p_sys->i_threshold;
574
575         if( i_horizontal < 0 )
576         {
577             msg_Dbg( p_intf, "left gesture (%d)", i_horizontal );
578             pattern = LEFT;
579         }
580         else if( i_horizontal > 0 )
581         {
582             msg_Dbg( p_intf, "right gesture (%d)", i_horizontal );
583             pattern = RIGHT;
584         }
585         if( i_vertical < 0 )
586         {
587             msg_Dbg( p_intf, "up gesture (%d)", i_vertical );
588             pattern = UP;
589         }
590         else if( i_vertical > 0 )
591         {
592             msg_Dbg( p_intf, "down gesture (%d)", i_vertical );
593             pattern = DOWN;
594         }
595         if( pattern )
596         {
597             p_intf->p_sys->i_last_y = p_intf->p_sys->i_mouse_y;
598             p_intf->p_sys->i_last_x = p_intf->p_sys->i_mouse_x;
599             if( gesture( p_intf->p_sys->i_pattern,
600                          p_intf->p_sys->i_num_gestures - 1 ) != pattern )
601             {
602                 p_intf->p_sys->i_pattern |=
603                     pattern << ( p_intf->p_sys->i_num_gestures * 4 );
604                 p_intf->p_sys->i_num_gestures++;
605             }
606         }
607
608     }
609     if( !strcmp( psz_var, "mouse-button-down" )
610         && newval.i_int & p_intf->p_sys->i_button_mask
611         && !p_intf->p_sys->b_button_pressed )
612     {
613         p_intf->p_sys->b_button_pressed = VLC_TRUE;
614         var_Get( p_intf->p_sys->p_vout, "mouse-x", &val );
615         p_intf->p_sys->i_last_x = val.i_int;
616         var_Get( p_intf->p_sys->p_vout, "mouse-y", &val );
617         p_intf->p_sys->i_last_y = val.i_int;
618     }
619     if( !strcmp( psz_var, "mouse-button-down" )
620         && !( newval.i_int & p_intf->p_sys->i_button_mask )
621         && p_intf->p_sys->b_button_pressed )
622     {
623         p_intf->p_sys->b_button_pressed = VLC_FALSE;
624         p_intf->p_sys->b_got_gesture = VLC_TRUE;
625     }
626
627     vlc_mutex_unlock( &p_intf->change_lock );
628
629     return VLC_SUCCESS;
630 }