Remove legacy parameter from add_string()
[vlc/asuraparaju-public.git] / modules / control / gestures.c
blob37c8ed0a59815f9bb30a0b7c65539128aecfa5c0
1 /*****************************************************************************
2 * gestures.c: control vlc with mouse gestures
3 *****************************************************************************
4 * Copyright (C) 2004-2009 the VideoLAN team
5 * $Id$
7 * Authors: Sigmund Augdal Helberg <dnumgis@videolan.org>
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.
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.
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 *****************************************************************************/
24 /*****************************************************************************
25 * Preamble
26 *****************************************************************************/
28 #ifdef HAVE_CONFIG_H
29 # include "config.h"
30 #endif
32 #include <vlc_common.h>
33 #include <vlc_plugin.h>
34 #include <vlc_interface.h>
35 #include <vlc_vout.h>
36 #include <vlc_aout.h>
37 #include <vlc_playlist.h>
39 #ifdef HAVE_UNISTD_H
40 # include <unistd.h>
41 #endif
43 /*****************************************************************************
44 * intf_sys_t: description and status of interface
45 *****************************************************************************/
46 struct intf_sys_t
48 vlc_mutex_t lock;
49 vout_thread_t *p_vout;
50 bool b_got_gesture;
51 bool b_button_pressed;
52 int i_mouse_x, i_mouse_y;
53 int i_last_x, i_last_y;
54 unsigned int i_pattern;
55 int i_num_gestures;
56 int i_threshold;
57 int i_button_mask;
60 /*****************************************************************************
61 * Local prototypes.
62 *****************************************************************************/
63 #define UP 1
64 #define DOWN 2
65 #define LEFT 3
66 #define RIGHT 4
67 #define NONE 0
68 #define GESTURE( a, b, c, d ) (a | ( b << 4 ) | ( c << 8 ) | ( d << 12 ))
70 int Open ( vlc_object_t * );
71 void Close ( vlc_object_t * );
72 static int MouseEvent ( vlc_object_t *, char const *,
73 vlc_value_t, vlc_value_t, void * );
75 /* Exported functions */
76 static void RunIntf ( intf_thread_t *p_intf );
78 /*****************************************************************************
79 * Module descriptor
80 *****************************************************************************/
81 #define THRESHOLD_TEXT N_( "Motion threshold (10-100)" )
82 #define THRESHOLD_LONGTEXT N_( \
83 "Amount of movement required for a mouse gesture to be recorded." )
85 #define BUTTON_TEXT N_( "Trigger button" )
86 #define BUTTON_LONGTEXT N_( \
87 "Trigger button for mouse gestures." )
89 #if defined (HAVE_MAEMO)
90 # define BUTTON_DEFAULT "left"
91 #else
92 # define BUTTON_DEFAULT "right"
93 #endif
95 static const char *const button_list[] = { "left", "middle", "right" };
96 static const char *const button_list_text[] =
97 { N_("Left"), N_("Middle"), N_("Right") };
99 vlc_module_begin ()
100 set_shortname( N_("Gestures"))
101 set_category( CAT_INTERFACE )
102 set_subcategory( SUBCAT_INTERFACE_CONTROL )
103 add_integer( "gestures-threshold", 30, NULL,
104 THRESHOLD_TEXT, THRESHOLD_LONGTEXT, true )
105 add_string( "gestures-button", BUTTON_DEFAULT,
106 BUTTON_TEXT, BUTTON_LONGTEXT, false )
107 change_string_list( button_list, button_list_text, 0 )
108 set_description( N_("Mouse gestures control interface") )
110 set_capability( "interface", 0 )
111 set_callbacks( Open, Close )
112 vlc_module_end ()
114 /*****************************************************************************
115 * OpenIntf: initialize interface
116 *****************************************************************************/
117 int Open ( vlc_object_t *p_this )
119 intf_thread_t *p_intf = (intf_thread_t *)p_this;
121 /* Allocate instance and initialize some members */
122 intf_sys_t *p_sys = p_intf->p_sys = malloc( sizeof( intf_sys_t ) );
123 if( p_intf->p_sys == NULL )
124 return VLC_ENOMEM;
126 // Configure the module
127 p_intf->pf_run = RunIntf;
129 vlc_mutex_init( &p_sys->lock );
130 p_sys->p_vout = NULL;
131 p_sys->b_got_gesture = false;
132 p_sys->b_button_pressed = false;
133 p_sys->i_threshold = var_InheritInteger( p_intf, "gestures-threshold" );
135 // Choose the tight button to use
136 char *psz_button = var_InheritString( p_intf, "gestures-button" );
137 if( psz_button && !strcmp( psz_button, "left" ) )
138 p_sys->i_button_mask = 1;
139 else if( psz_button && !strcmp( psz_button, "middle" ) )
140 p_sys->i_button_mask = 2;
141 else // psz_button == "right"
142 p_sys->i_button_mask = 4;
143 free( psz_button );
145 p_sys->i_pattern = 0;
146 p_sys->i_num_gestures = 0;
148 return VLC_SUCCESS;
151 /*****************************************************************************
152 * gesture: return a subpattern within a pattern
153 *****************************************************************************/
154 static int gesture( int i_pattern, int i_num )
156 return ( i_pattern >> ( i_num * 4 ) ) & 0xF;
159 /*****************************************************************************
160 * CloseIntf: destroy dummy interface
161 *****************************************************************************/
162 void Close ( vlc_object_t *p_this )
164 intf_thread_t *p_intf = (intf_thread_t *)p_this;
166 // Destroy the callbacks
167 if( p_intf->p_sys->p_vout )
169 var_DelCallback( p_intf->p_sys->p_vout, "mouse-moved",
170 MouseEvent, p_intf );
171 var_DelCallback( p_intf->p_sys->p_vout, "mouse-button-down",
172 MouseEvent, p_intf );
173 vlc_object_release( p_intf->p_sys->p_vout );
176 /* Destroy structure */
177 vlc_mutex_destroy( &p_intf->p_sys->lock );
178 free( p_intf->p_sys );
182 /*****************************************************************************
183 * RunIntf: main loop
184 *****************************************************************************/
185 static void RunIntf( intf_thread_t *p_intf )
187 intf_sys_t *p_sys = p_intf->p_sys;
188 int canc = vlc_savecancel();
189 input_thread_t *p_input;
191 /* Main loop */
192 while( vlc_object_alive( p_intf ) )
194 vlc_mutex_lock( &p_sys->lock );
197 * mouse cursor
199 if( p_sys->b_got_gesture )
201 int i_interval = 0;
202 /* Do something */
203 /* If you modify this, please try to follow this convention:
204 Start with LEFT, RIGHT for playback related commands
205 and UP, DOWN, for other commands */
206 playlist_t * p_playlist = pl_Get( p_intf );
207 switch( p_sys->i_pattern )
209 case LEFT:
210 msg_Dbg( p_intf, "Go backward in the movie!" );
211 p_input = playlist_CurrentInput( p_playlist );
212 if( p_input )
214 i_interval = var_InheritInteger( p_intf , "short-jump-size" );
215 if ( i_interval > 0 )
217 mtime_t i_time = ( (mtime_t)( -i_interval ) * 1000000L);
218 var_SetTime( p_input, "time-offset", i_time );
220 vlc_object_release( p_input );
222 break;
224 case RIGHT:
225 msg_Dbg( p_intf, "Go forward in the movie!" );
226 p_input = playlist_CurrentInput( p_playlist );
227 if( p_input )
229 i_interval = var_InheritInteger( p_intf , "short-jump-size" );
230 if ( i_interval > 0 )
232 mtime_t i_time = ( (mtime_t)( i_interval ) * 1000000L);
233 var_SetTime( p_input, "time-offset", i_time );
235 vlc_object_release( p_input );
237 break;
239 case GESTURE(LEFT,UP,NONE,NONE):
240 msg_Dbg( p_intf, "Going slower." );
241 var_TriggerCallback( p_playlist, "rate-slower" );
242 break;
244 case GESTURE(RIGHT,UP,NONE,NONE):
245 msg_Dbg( p_intf, "Going faster." );
246 var_TriggerCallback( p_playlist, "rate-faster" );
247 break;
249 case GESTURE(LEFT,RIGHT,NONE,NONE):
250 case GESTURE(RIGHT,LEFT,NONE,NONE):
251 msg_Dbg( p_intf, "Play/Pause" );
252 p_input = playlist_CurrentInput( p_playlist );
254 if( p_input )
256 int i_state = var_GetInteger( p_input, "state" );
257 var_SetInteger( p_input, "state", ( i_state != PLAYING_S )
258 ? PLAYING_S : PAUSE_S );
259 vlc_object_release( p_input );
261 break;
263 case GESTURE(LEFT,DOWN,NONE,NONE):
264 playlist_Prev( p_playlist );
265 break;
267 case GESTURE(RIGHT,DOWN,NONE,NONE):
268 playlist_Next( p_playlist );
269 break;
271 case UP:
272 msg_Dbg(p_intf, "Louder");
273 aout_VolumeUp( p_playlist, 1, NULL );
274 break;
276 case DOWN:
277 msg_Dbg(p_intf, "Quieter");
278 aout_VolumeDown( p_playlist, 1, NULL );
279 break;
281 case GESTURE(UP,DOWN,NONE,NONE):
282 case GESTURE(DOWN,UP,NONE,NONE):
283 msg_Dbg( p_intf, "Mute sound" );
284 aout_ToggleMute( p_playlist, NULL );
285 break;
287 case GESTURE(UP,RIGHT,NONE,NONE):
289 vlc_value_t list, list2;
290 int i_count, i, i_audio_es;
292 p_input = playlist_CurrentInput( p_playlist );
293 if( !p_input )
294 break;
296 i_audio_es = var_GetInteger( p_input, "audio-es" );
297 var_Change( p_input, "audio-es", VLC_VAR_GETCHOICES,
298 &list, &list2 );
299 i_count = list.p_list->i_count;
300 if( i_count <= 1 )
302 var_FreeList( &list, &list2 );
303 vlc_object_release( p_input );
304 break;
306 for( i = 0; i < i_count; i++ )
308 if( i_audio_es == list.p_list->p_values[i].i_int )
309 break;
311 /* value of audio-es was not in choices list */
312 if( i == i_count )
314 msg_Warn( p_input,
315 "invalid current audio track, selecting 0" );
316 i = 0;
318 else if( i == i_count - 1 )
319 i = 1;
320 else
321 i++;
322 var_SetInteger( p_input, "audio-es", list.p_list->p_values[i].i_int );
323 var_FreeList( &list, &list2 );
324 vlc_object_release( p_input );
326 break;
327 case GESTURE(DOWN,RIGHT,NONE,NONE):
329 vlc_value_t list, list2;
330 int i_count, i, i_spu_es;
332 p_input = playlist_CurrentInput( p_playlist );
333 if( !p_input )
334 break;
336 i_spu_es = var_GetInteger( p_input, "spu-es" );
338 var_Change( p_input, "spu-es", VLC_VAR_GETCHOICES,
339 &list, &list2 );
340 i_count = list.p_list->i_count;
341 if( i_count <= 1 )
343 vlc_object_release( p_input );
344 var_FreeList( &list, &list2 );
345 break;
347 for( i = 0; i < i_count; i++ )
349 if( i_spu_es == list.p_list->p_values[i].i_int )
351 break;
354 /* value of spu-es was not in choices list */
355 if( i == i_count )
357 msg_Warn( p_input,
358 "invalid current subtitle track, selecting 0" );
359 i = 0;
361 else if( i == i_count - 1 )
362 i = 0;
363 else
364 i++;
365 var_SetInteger( p_input, "spu-es", list.p_list->p_values[i].i_int);
366 var_FreeList( &list, &list2 );
367 vlc_object_release( p_input );
369 break;
371 case GESTURE(UP,LEFT,NONE,NONE):
373 bool val = var_ToggleBool( pl_Get( p_intf ), "fullscreen" );
374 if( p_sys->p_vout )
375 var_SetBool( p_sys->p_vout, "fullscreen", val );
376 break;
379 case GESTURE(DOWN,LEFT,NONE,NONE):
380 /* FIXME: Should close the vout!"*/
381 libvlc_Quit( p_intf->p_libvlc );
382 break;
383 case GESTURE(DOWN,LEFT,UP,RIGHT):
384 case GESTURE(UP,RIGHT,DOWN,LEFT):
385 msg_Dbg( p_intf, "a square was drawn!" );
386 break;
387 default:
388 break;
390 p_sys->i_num_gestures = 0;
391 p_sys->i_pattern = 0;
392 p_sys->b_got_gesture = false;
396 * video output
398 if( p_sys->p_vout && !vlc_object_alive( p_sys->p_vout ) )
400 var_DelCallback( p_sys->p_vout, "mouse-moved",
401 MouseEvent, p_intf );
402 var_DelCallback( p_sys->p_vout, "mouse-button-down",
403 MouseEvent, p_intf );
404 vlc_object_release( p_sys->p_vout );
405 p_sys->p_vout = NULL;
408 if( p_sys->p_vout == NULL )
410 p_input = playlist_CurrentInput( pl_Get( p_intf ) );
411 if( p_input )
413 p_sys->p_vout = input_GetVout( p_input );
414 vlc_object_release( p_input );
416 if( p_sys->p_vout )
418 var_AddCallback( p_sys->p_vout, "mouse-moved",
419 MouseEvent, p_intf );
420 var_AddCallback( p_sys->p_vout, "mouse-button-down",
421 MouseEvent, p_intf );
425 vlc_mutex_unlock( &p_sys->lock );
427 /* Wait a bit */
428 msleep( INTF_IDLE_SLEEP );
431 vlc_restorecancel( canc );
434 /*****************************************************************************
435 * MouseEvent: callback for mouse events
436 *****************************************************************************/
437 static int MouseEvent( vlc_object_t *p_this, char const *psz_var,
438 vlc_value_t oldval, vlc_value_t newval, void *p_data )
440 VLC_UNUSED(p_this); VLC_UNUSED(oldval);
441 int pattern = 0;
443 signed int i_horizontal, i_vertical;
444 intf_thread_t *p_intf = (intf_thread_t *)p_data;
445 intf_sys_t *p_sys = p_intf->p_sys;
447 vlc_mutex_lock( &p_sys->lock );
449 /* don't process new gestures before the last events are processed */
450 if( p_sys->b_got_gesture )
452 vlc_mutex_unlock( &p_sys->lock );
453 return VLC_SUCCESS;
456 if( !strcmp( psz_var, "mouse-moved" ) && p_sys->b_button_pressed )
458 p_sys->i_mouse_x = newval.coords.x;
459 p_sys->i_mouse_y = newval.coords.y;
460 i_horizontal = p_sys->i_mouse_x - p_sys->i_last_x;
461 i_horizontal = i_horizontal / p_sys->i_threshold;
462 i_vertical = p_sys->i_mouse_y - p_sys->i_last_y;
463 i_vertical = i_vertical / p_sys->i_threshold;
465 if( i_horizontal < 0 )
467 msg_Dbg( p_intf, "left gesture (%d)", i_horizontal );
468 pattern = LEFT;
470 else if( i_horizontal > 0 )
472 msg_Dbg( p_intf, "right gesture (%d)", i_horizontal );
473 pattern = RIGHT;
475 if( i_vertical < 0 )
477 msg_Dbg( p_intf, "up gesture (%d)", i_vertical );
478 pattern = UP;
480 else if( i_vertical > 0 )
482 msg_Dbg( p_intf, "down gesture (%d)", i_vertical );
483 pattern = DOWN;
485 if( pattern )
487 p_sys->i_last_y = p_sys->i_mouse_y;
488 p_sys->i_last_x = p_sys->i_mouse_x;
489 if( gesture( p_sys->i_pattern, p_sys->i_num_gestures - 1 )
490 != pattern )
492 p_sys->i_pattern |= pattern << ( p_sys->i_num_gestures * 4 );
493 p_sys->i_num_gestures++;
498 else if( !strcmp( psz_var, "mouse-button-down" ) )
500 if( (newval.i_int & p_sys->i_button_mask) && !p_sys->b_button_pressed )
502 p_sys->b_button_pressed = true;
503 var_GetCoords( p_sys->p_vout, "mouse-moved",
504 &p_sys->i_last_x, &p_sys->i_last_y );
506 else if( !( newval.i_int & p_sys->i_button_mask ) && p_sys->b_button_pressed )
508 p_sys->b_button_pressed = false;
509 p_sys->b_got_gesture = true;
513 vlc_mutex_unlock( &p_sys->lock );
515 return VLC_SUCCESS;