]> git.sesse.net Git - vlc/blob - modules/control/hotkeys.c
b3bc452f8c3c237fbae4456a1e0cc56f00115fdb
[vlc] / modules / control / hotkeys.c
1 /*****************************************************************************
2  * hotkeys.c: Hotkey handling for vlc
3  *****************************************************************************
4  * Copyright (C) 2004 VideoLAN
5  * $Id: hotkeys.c,v 1.17 2004/02/17 03:12:00 hartman Exp $
6  *
7  * Authors: Sigmund Augdal <sigmunau@idi.ntnu.no>
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., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
22  *****************************************************************************/
23
24 /*****************************************************************************
25  * Preamble
26  *****************************************************************************/
27 #include <stdlib.h>                                      /* malloc(), free() */
28
29 #include <vlc/vlc.h>
30 #include <vlc/intf.h>
31 #include <vlc/input.h>
32 #include <vlc/vout.h>
33 #include <vlc/aout.h>
34 #include <osd.h>
35
36 #include "vlc_keys.h"
37
38 #define BUFFER_SIZE 10
39 /*****************************************************************************
40  * intf_sys_t: description and status of FB interface
41  *****************************************************************************/
42 struct intf_sys_t
43 {
44     vlc_mutex_t         change_lock;  /* mutex to keep the callback
45                                        * and the main loop from
46                                        * stepping on each others
47                                        * toes */
48     int                 p_keys[ BUFFER_SIZE ]; /* buffer that contains
49                                                 * keyevents */
50     int                 i_size;        /* number of events in buffer */
51     input_thread_t *    p_input;       /* pointer to input */
52     vout_thread_t *     p_vout;        /* pointer to vout object */
53 };
54
55 /*****************************************************************************
56  * Local prototypes
57  *****************************************************************************/
58 static int  Open    ( vlc_object_t * );
59 static void Close   ( vlc_object_t * );
60 static void Run     ( intf_thread_t * );
61 static int  GetKey  ( intf_thread_t *);
62 static int  KeyEvent( vlc_object_t *, char const *,
63                       vlc_value_t, vlc_value_t, void * );
64 static int  ActionKeyCB( vlc_object_t *, char const *,
65                          vlc_value_t, vlc_value_t, void * );
66 static void PlayBookmark( intf_thread_t *, int );
67 static void SetBookmark ( intf_thread_t *, int );
68
69 /*****************************************************************************
70  * Module descriptor
71  *****************************************************************************/
72 #define BOOKMARK1_TEXT N_("Playlist bookmark 1")
73 #define BOOKMARK2_TEXT N_("Playlist bookmark 2")
74 #define BOOKMARK3_TEXT N_("Playlist bookmark 3")
75 #define BOOKMARK4_TEXT N_("Playlist bookmark 4")
76 #define BOOKMARK5_TEXT N_("Playlist bookmark 5")
77 #define BOOKMARK6_TEXT N_("Playlist bookmark 6")
78 #define BOOKMARK7_TEXT N_("Playlist bookmark 7")
79 #define BOOKMARK8_TEXT N_("Playlist bookmark 8")
80 #define BOOKMARK9_TEXT N_("Playlist bookmark 9")
81 #define BOOKMARK10_TEXT N_("Playlist bookmark 10")
82 #define BOOKMARK_LONGTEXT N_( \
83     "This option allows you to define playlist bookmarks.")
84
85 vlc_module_begin();
86     set_description( _("Hotkeys management interface") );
87     add_string( "bookmark1", NULL, NULL,
88                 BOOKMARK1_TEXT, BOOKMARK_LONGTEXT, VLC_FALSE ); 
89     add_string( "bookmark2", NULL, NULL,
90                 BOOKMARK2_TEXT, BOOKMARK_LONGTEXT, VLC_FALSE ); 
91     add_string( "bookmark3", NULL, NULL,
92                 BOOKMARK3_TEXT, BOOKMARK_LONGTEXT, VLC_FALSE ); 
93     add_string( "bookmark4", NULL, NULL,
94                 BOOKMARK4_TEXT, BOOKMARK_LONGTEXT, VLC_FALSE ); 
95     add_string( "bookmark5", NULL, NULL,
96                 BOOKMARK5_TEXT, BOOKMARK_LONGTEXT, VLC_FALSE ); 
97     add_string( "bookmark6", NULL, NULL,
98                 BOOKMARK6_TEXT, BOOKMARK_LONGTEXT, VLC_FALSE ); 
99     add_string( "bookmark7", NULL, NULL,
100                 BOOKMARK7_TEXT, BOOKMARK_LONGTEXT, VLC_FALSE ); 
101     add_string( "bookmark8", NULL, NULL,
102                 BOOKMARK8_TEXT, BOOKMARK_LONGTEXT, VLC_FALSE ); 
103     add_string( "bookmark9", NULL, NULL,
104                 BOOKMARK9_TEXT, BOOKMARK_LONGTEXT, VLC_FALSE ); 
105     add_string( "bookmark10", NULL, NULL,
106                 BOOKMARK10_TEXT, BOOKMARK_LONGTEXT, VLC_FALSE ); 
107     
108     set_capability( "interface", 0 );
109     set_callbacks( Open, Close );
110 vlc_module_end();
111
112 /*****************************************************************************
113  * Open: initialize interface
114  *****************************************************************************/
115 static int Open( vlc_object_t *p_this )
116 {
117     intf_thread_t *p_intf = (intf_thread_t *)p_this;
118
119     /* Allocate instance and initialize some members */
120     p_intf->p_sys = malloc( sizeof( intf_sys_t ) );
121     if( p_intf->p_sys == NULL )
122     {
123         msg_Err( p_intf, "out of memory" );
124         return 1;
125     }
126     vlc_mutex_init( p_intf, &p_intf->p_sys->change_lock );
127     p_intf->p_sys->i_size = 0;
128     p_intf->pf_run = Run;
129
130     p_intf->p_sys->p_input = NULL;
131     p_intf->p_sys->p_vout = NULL;
132
133     var_AddCallback( p_intf->p_vlc, "key-pressed", KeyEvent, p_intf );
134     return 0;
135 }
136
137 /*****************************************************************************
138  * Close: destroy interface
139  *****************************************************************************/
140 static void Close( vlc_object_t *p_this )
141 {
142     intf_thread_t *p_intf = (intf_thread_t *)p_this;
143
144     if( p_intf->p_sys->p_input )
145     {
146         vlc_object_release( p_intf->p_sys->p_input );
147     }
148     if( p_intf->p_sys->p_vout )
149     {
150         vlc_object_release( p_intf->p_sys->p_vout );
151     }
152     /* Destroy structure */
153     free( p_intf->p_sys );
154 }
155
156 /*****************************************************************************
157  * Run: main loop
158  *****************************************************************************/
159 static void Run( intf_thread_t *p_intf )
160 {
161     playlist_t *p_playlist;
162     input_thread_t *p_input;
163     vout_thread_t *p_vout = NULL;
164     struct hotkey *p_hotkeys = p_intf->p_vlc->p_hotkeys;
165     vlc_value_t val;
166     int i;
167
168     /* Initialize hotkey structure */
169     for( i = 0; p_hotkeys[i].psz_action != NULL; i++ )
170     {
171         var_Create( p_intf->p_vlc, p_hotkeys[i].psz_action,
172                     VLC_VAR_HOTKEY | VLC_VAR_DOINHERIT );
173
174         var_AddCallback( p_intf->p_vlc, p_hotkeys[i].psz_action,
175                          ActionKeyCB, NULL );
176         var_Get( p_intf->p_vlc, p_hotkeys[i].psz_action, &val );
177         var_Set( p_intf->p_vlc, p_hotkeys[i].psz_action, val );
178     }
179
180     while( !p_intf->b_die )
181     {
182         int i_key, i_action;
183
184         /* Sleep a bit */
185         msleep( INTF_IDLE_SLEEP );
186
187         /* Update the input */
188         if( p_intf->p_sys->p_input == NULL )
189         {
190             p_intf->p_sys->p_input = vlc_object_find( p_intf, VLC_OBJECT_INPUT,
191                                                       FIND_ANYWHERE );
192         }
193         else if( p_intf->p_sys->p_input->b_dead )
194         {
195             vlc_object_release( p_intf->p_sys->p_input );
196             p_intf->p_sys->p_input = NULL;
197         }
198         p_input = p_intf->p_sys->p_input;
199
200         /* Update the vout */
201         if( p_vout == NULL )
202         {
203             p_vout = vlc_object_find( p_intf, VLC_OBJECT_VOUT,
204                                       FIND_ANYWHERE );
205             p_intf->p_sys->p_vout = p_vout;
206         }
207         else if( p_vout->b_die )
208         {
209             vlc_object_release( p_vout );
210             p_vout = NULL;
211             p_intf->p_sys->p_vout = NULL;
212         }
213
214         /* Find action triggered by hotkey */
215         i_action = 0;
216         i_key = GetKey( p_intf );
217         for( i = 0; p_hotkeys[i].psz_action != NULL; i++ )
218         {
219             if( p_hotkeys[i].i_key == i_key )
220             {
221                  i_action = p_hotkeys[i].i_action;
222             }
223         }
224
225         if( !i_action )
226         {
227             /* No key pressed, sleep a bit more */
228             msleep( INTF_IDLE_SLEEP );
229             continue;
230         }
231
232         if( i_action == ACTIONID_QUIT )
233         {
234             p_intf->p_vlc->b_die = VLC_TRUE;
235             vout_OSDMessage( p_intf, _( "Quit" ) );
236             continue;
237         }
238         else if( i_action == ACTIONID_VOL_UP )
239         {
240             audio_volume_t i_newvol;
241             aout_VolumeUp( p_intf, 1, &i_newvol );
242             vout_OSDMessage( p_intf, "Vol %d%%", i_newvol*100/AOUT_VOLUME_MAX );
243         }
244         else if( i_action == ACTIONID_VOL_DOWN )
245         {
246             audio_volume_t i_newvol;
247             aout_VolumeDown( p_intf, 1, &i_newvol );
248             vout_OSDMessage( p_intf, "Vol %d%%", i_newvol*100/AOUT_VOLUME_MAX);
249         }
250         else if( i_action == ACTIONID_VOL_MUTE )
251         {
252             audio_volume_t i_newvol = -1;
253             aout_VolumeMute( p_intf, &i_newvol );
254             if( i_newvol == 0 )
255             {
256                 vout_OSDMessage( p_intf, _( "Mute" ) );
257             }
258             else
259             {
260                 vout_OSDMessage( p_intf, "Vol %d%%", i_newvol*100/AOUT_VOLUME_MAX );
261             }
262         }
263         else if( i_action == ACTIONID_FULLSCREEN )
264         {
265             if( p_vout )
266             {
267                 p_vout->i_changes |= VOUT_FULLSCREEN_CHANGE;
268             }
269         }
270         else if( i_action == ACTIONID_PLAY )
271         {
272             p_playlist = vlc_object_find( p_intf, VLC_OBJECT_PLAYLIST,
273                                           FIND_ANYWHERE );
274             if( p_playlist )
275             {
276                 vlc_mutex_lock( &p_playlist->object_lock );
277                 if( p_playlist->i_size )
278                 {
279                     vlc_mutex_unlock( &p_playlist->object_lock );
280                     playlist_Play( p_playlist );
281                     vlc_object_release( p_playlist );
282                 }
283             }
284         }
285         else if( i_action == ACTIONID_PLAY_PAUSE )
286         {
287             val.i_int = PLAYING_S;
288             if( p_input )
289             {
290                 var_Get( p_input, "state", &val );
291             }
292             if( p_input && val.i_int != PAUSE_S )
293             {
294                 vout_OSDMessage( p_intf, _( "Pause" ) );
295                 val.i_int = PAUSE_S;
296                 var_Set( p_input, "state", val );
297             }
298             else
299             {
300                 p_playlist = vlc_object_find( p_intf, VLC_OBJECT_PLAYLIST,
301                                               FIND_ANYWHERE );
302                 if( p_playlist )
303                 {
304                     vlc_mutex_lock( &p_playlist->object_lock );
305                     if( p_playlist->i_size )
306                     {
307                         vlc_mutex_unlock( &p_playlist->object_lock );
308                         vout_OSDMessage( p_intf, _( "Play" ) );
309                         playlist_Play( p_playlist );
310                         vlc_object_release( p_playlist );
311                     }
312                 }
313             }
314         }
315         else if( p_input )
316         {
317             if( i_action == ACTIONID_PAUSE )
318             {
319                 vout_OSDMessage( p_intf, _( "Pause" ) );
320                 val.i_int = PAUSE_S;
321                 var_Set( p_input, "state", val );
322             }
323             else if( i_action == ACTIONID_JUMP_BACKWARD_10SEC )
324             {
325                 vout_OSDMessage( p_intf, _( "Jump -10 seconds" ) );
326                 val.i_time = -10000000;
327                 var_Set( p_input, "time-offset", val );
328             }
329             else if( i_action == ACTIONID_JUMP_FORWARD_10SEC )
330             {
331                 vout_OSDMessage( p_intf, _( "Jump +10 seconds" ) );
332                 val.i_time = 10000000;
333                 var_Set( p_input, "time-offset", val );
334             }
335             else if( i_action == ACTIONID_JUMP_BACKWARD_1MIN )
336             {
337                 vout_OSDMessage( p_intf, _( "Jump -1 minute" ) );
338                 val.i_time = -60000000;
339                 var_Set( p_input, "time-offset", val );
340             }
341             else if( i_action == ACTIONID_JUMP_FORWARD_1MIN )
342             {
343                 vout_OSDMessage( p_intf, _( "Jump +1 minute" ) );
344                 val.i_time = 60000000;
345                 var_Set( p_input, "time-offset", val );
346             }
347             else if( i_action == ACTIONID_JUMP_BACKWARD_5MIN )
348             {
349                 vout_OSDMessage( p_intf, _( "Jump -5 minutes" ) );
350                 val.i_time = -300000000;
351                 var_Set( p_input, "time-offset", val );
352             }
353             else if( i_action == ACTIONID_JUMP_FORWARD_5MIN )
354             {
355                 vout_OSDMessage( p_intf, _( "Jump +5 minutes" ) );
356                 val.i_time = 300000000;
357                 var_Set( p_input, "time-offset", val );
358             }
359             else if( i_action == ACTIONID_NEXT )
360             {
361                 p_playlist = vlc_object_find( p_intf, VLC_OBJECT_PLAYLIST,
362                                               FIND_ANYWHERE );
363                 if( p_playlist )
364                 {
365                     playlist_Next( p_playlist );
366                     vlc_object_release( p_playlist );
367                 }
368             }
369             else if( i_action == ACTIONID_PREV )
370             {
371                 p_playlist = vlc_object_find( p_intf, VLC_OBJECT_PLAYLIST,
372                                               FIND_ANYWHERE );
373                 if( p_playlist )
374                 {
375                     playlist_Prev( p_playlist );
376                     vlc_object_release( p_playlist );
377                 }
378             }
379             else if( i_action == ACTIONID_STOP )
380             {
381                 p_playlist = vlc_object_find( p_intf, VLC_OBJECT_PLAYLIST,
382                                               FIND_ANYWHERE );
383                 if( p_playlist )
384                 {
385                     playlist_Stop( p_playlist );
386                     vlc_object_release( p_playlist );
387                 }
388             }
389             else if( i_action == ACTIONID_FASTER )
390             {
391                 vlc_value_t val; val.b_bool = VLC_TRUE;
392                 var_Set( p_input, "rate-faster", val );
393             }
394             else if( i_action == ACTIONID_FASTER )
395             {
396                 vlc_value_t val; val.b_bool = VLC_TRUE;
397                 var_Set( p_input, "rate-slower", val );
398             }
399             else if( i_action == ACTIONID_POSITION )
400             {
401                 playlist_t *p_playlist = vlc_object_find( p_intf, VLC_OBJECT_PLAYLIST,
402                                               FIND_ANYWHERE );
403                 char psz_duration[MSTRTIME_MAX_SIZE];
404                 char psz_time[MSTRTIME_MAX_SIZE];
405                 vlc_value_t time;
406                 mtime_t i_seconds;
407                                                                                                                             
408                 var_Get( p_input, "time", &time );
409                                                                                                                             
410                 if( p_playlist )
411                 {
412                     mtime_t dur =
413                         p_playlist->pp_items[p_playlist->i_index]->i_duration;
414
415                     i_seconds = time.i_time / 1000000;
416                     secstotimestr ( psz_time, i_seconds );
417                                                                                                                             
418                     if( dur != -1 )
419                     {
420                         secstotimestr( psz_duration, dur/1000000 );
421                         vout_OSDMessage( p_playlist, "%s / %s", psz_time, psz_duration );
422                     }
423                     else if( i_seconds > 0 )
424                     { 
425                         vout_OSDMessage( p_playlist, psz_time );
426                     }
427                     vlc_object_release( p_playlist );
428                 }
429             }
430             else if( i_action >= ACTIONID_PLAY_BOOKMARK1 &&
431                      i_action <= ACTIONID_PLAY_BOOKMARK10 )
432             {
433                 PlayBookmark( p_intf, i_action - ACTIONID_PLAY_BOOKMARK1 + 1 );
434             }
435             else if( i_action >= ACTIONID_SET_BOOKMARK1 &&
436                      i_action <= ACTIONID_SET_BOOKMARK10 )
437             {
438                 SetBookmark( p_intf, i_action - ACTIONID_SET_BOOKMARK1 + 1 );
439             }
440         }
441     }
442 }
443
444 static int GetKey( intf_thread_t *p_intf)
445 {
446     vlc_mutex_lock( &p_intf->p_sys->change_lock );
447     if ( p_intf->p_sys->i_size == 0 )
448     {
449         vlc_mutex_unlock( &p_intf->p_sys->change_lock );
450         return -1;
451     }
452     else
453     {
454         int i_return = p_intf->p_sys->p_keys[ 0 ];
455         int i;
456         p_intf->p_sys->i_size--;
457         for ( i = 0; i < BUFFER_SIZE - 1; i++)
458         {
459             p_intf->p_sys->p_keys[ i ] = p_intf->p_sys->p_keys[ i + 1 ];
460         }
461         vlc_mutex_unlock( &p_intf->p_sys->change_lock );
462         return i_return;
463     }
464 }
465
466 /*****************************************************************************
467  * KeyEvent: callback for keyboard events
468  *****************************************************************************/
469 static int KeyEvent( vlc_object_t *p_this, char const *psz_var,
470                      vlc_value_t oldval, vlc_value_t newval, void *p_data )
471 {
472     intf_thread_t *p_intf = (intf_thread_t *)p_data;
473     vlc_mutex_lock( &p_intf->p_sys->change_lock );
474     if ( p_intf->p_sys->i_size == BUFFER_SIZE )
475     {
476         msg_Warn( p_intf, "event buffer full, dropping keypress" );
477         vlc_mutex_unlock( &p_intf->p_sys->change_lock );
478         return VLC_EGENERIC;
479     }
480     else
481     {
482         p_intf->p_sys->p_keys[ p_intf->p_sys->i_size ] = newval.i_int;
483         p_intf->p_sys->i_size++;
484     }
485     vlc_mutex_unlock( &p_intf->p_sys->change_lock );
486
487     return VLC_SUCCESS;
488 }
489
490 static int ActionKeyCB( vlc_object_t *p_this, char const *psz_var,
491                         vlc_value_t oldval, vlc_value_t newval, void *p_data )
492 {
493     vlc_t *p_vlc = (vlc_t *)p_this;
494     struct hotkey *p_hotkeys = p_vlc->p_hotkeys;
495     int i;
496
497     for( i = 0; p_hotkeys[i].psz_action != NULL; i++ )
498     {
499         if( !strcmp( p_hotkeys[i].psz_action, psz_var ) )
500         {
501             p_hotkeys[i].i_key = newval.i_int;
502         }
503     }
504
505     return VLC_SUCCESS;
506 }
507
508 static void PlayBookmark( intf_thread_t *p_intf, int i_num )
509 {   
510     vlc_value_t val;
511     int i_position;
512     char psz_bookmark_name[11];
513     playlist_t *p_playlist = vlc_object_find( p_intf,
514              VLC_OBJECT_PLAYLIST, FIND_ANYWHERE );
515     
516     sprintf( psz_bookmark_name, "bookmark%i", i_num );
517     var_Create( p_intf, psz_bookmark_name, VLC_VAR_STRING|VLC_VAR_DOINHERIT );
518     var_Get( p_intf, psz_bookmark_name, &val );
519                                                                                                                     
520     if( p_playlist )
521     {
522         char *psz_bookmark = strdup( val.psz_string );
523         for( i_position = 0 ; i_position < p_playlist->i_size ; i_position++)
524         {
525             if( !strcmp( psz_bookmark, p_playlist->pp_items[i_position]->psz_uri ) )
526             {
527                 playlist_Goto( p_playlist, i_position );
528                 break;
529             }
530         }
531         vlc_object_release( p_playlist );
532     }
533 }
534
535 static void SetBookmark( intf_thread_t *p_intf, int i_num )
536 {
537     vlc_value_t val;
538     playlist_t *p_playlist = vlc_object_find( p_intf,
539             VLC_OBJECT_PLAYLIST, FIND_ANYWHERE );
540     if( p_playlist )
541     {
542         char psz_bookmark_name[11];
543         sprintf( psz_bookmark_name, "bookmark%i", i_num );
544         var_Create( p_intf, psz_bookmark_name, VLC_VAR_STRING|VLC_VAR_DOINHERIT );
545         val.psz_string = strdup( p_playlist->pp_items[p_playlist->i_index]->psz_uri );
546         var_Set( p_intf, psz_bookmark_name, val );
547         msg_Info( p_intf, "setting playlist bookmark %i to %s", i_num, val.psz_string );
548         vlc_object_release( p_playlist );
549     }
550 }