]> git.sesse.net Git - vlc/blob - modules/control/hotkeys.c
* hotkey: Go to DVD menu (ctrl-M)
[vlc] / modules / control / hotkeys.c
1 /*****************************************************************************
2  * hotkeys.c: Hotkey handling for vlc
3  *****************************************************************************
4  * Copyright (C) 2005 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Sigmund Augdal Helberg <dnumgis@videolan.org>
8  *          Jean-Paul Saman <jpsaman #_at_# m2x.nl>
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation; either version 2 of the License, or
13  * (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
23  *****************************************************************************/
24
25 /*****************************************************************************
26  * Preamble
27  *****************************************************************************/
28 #include <stdlib.h>                                      /* malloc(), free() */
29
30 #include <vlc/vlc.h>
31 #include <vlc/intf.h>
32 #include <vlc/input.h>
33 #include <vlc/vout.h>
34 #include <vlc/aout.h>
35 #include <vlc_osd.h>
36
37 #include "vlc_keys.h"
38
39 #define BUFFER_SIZE 10
40
41 #define CHANNELS_NUMBER 4
42 #define VOLUME_TEXT_CHAN     p_intf->p_sys->p_channels[ 0 ]
43 #define VOLUME_WIDGET_CHAN   p_intf->p_sys->p_channels[ 1 ]
44 #define POSITION_TEXT_CHAN   p_intf->p_sys->p_channels[ 2 ]
45 #define POSITION_WIDGET_CHAN p_intf->p_sys->p_channels[ 3 ]
46 /*****************************************************************************
47  * intf_sys_t: description and status of FB interface
48  *****************************************************************************/
49 struct intf_sys_t
50 {
51     vlc_mutex_t         change_lock;  /* mutex to keep the callback
52                                        * and the main loop from
53                                        * stepping on each others
54                                        * toes */
55     int                 p_keys[ BUFFER_SIZE ]; /* buffer that contains
56                                                 * keyevents */
57     int                 i_size;        /* number of events in buffer */
58     int                 p_channels[ CHANNELS_NUMBER ]; /* contains registered
59                                                         * channel IDs */
60     input_thread_t *    p_input;       /* pointer to input */
61     vout_thread_t *     p_vout;        /* pointer to vout object */
62 };
63
64 /*****************************************************************************
65  * Local prototypes
66  *****************************************************************************/
67 static int  Open    ( vlc_object_t * );
68 static void Close   ( vlc_object_t * );
69 static void Run     ( intf_thread_t * );
70 static int  GetKey  ( intf_thread_t *);
71 static int  KeyEvent( vlc_object_t *, char const *,
72                       vlc_value_t, vlc_value_t, void * );
73 static int  ActionKeyCB( vlc_object_t *, char const *,
74                          vlc_value_t, vlc_value_t, void * );
75 static void PlayBookmark( intf_thread_t *, int );
76 static void SetBookmark ( intf_thread_t *, int );
77 static void DisplayPosition( intf_thread_t *, vout_thread_t *, input_thread_t * );
78 static void DisplayVolume  ( intf_thread_t *, vout_thread_t *, audio_volume_t );
79 static void ClearChannels  ( intf_thread_t *, vout_thread_t * );
80
81 /*****************************************************************************
82  * Module descriptor
83  *****************************************************************************/
84 #define BOOKMARK1_TEXT N_("Playlist bookmark 1")
85 #define BOOKMARK2_TEXT N_("Playlist bookmark 2")
86 #define BOOKMARK3_TEXT N_("Playlist bookmark 3")
87 #define BOOKMARK4_TEXT N_("Playlist bookmark 4")
88 #define BOOKMARK5_TEXT N_("Playlist bookmark 5")
89 #define BOOKMARK6_TEXT N_("Playlist bookmark 6")
90 #define BOOKMARK7_TEXT N_("Playlist bookmark 7")
91 #define BOOKMARK8_TEXT N_("Playlist bookmark 8")
92 #define BOOKMARK9_TEXT N_("Playlist bookmark 9")
93 #define BOOKMARK10_TEXT N_("Playlist bookmark 10")
94 #define BOOKMARK_LONGTEXT N_( \
95     "This option allows you to define playlist bookmarks.")
96
97 vlc_module_begin();
98     set_description( _("Hotkeys management interface") );
99     add_string( "bookmark1", NULL, NULL,
100                 BOOKMARK1_TEXT, BOOKMARK_LONGTEXT, VLC_FALSE );
101     add_string( "bookmark2", NULL, NULL,
102                 BOOKMARK2_TEXT, BOOKMARK_LONGTEXT, VLC_FALSE );
103     add_string( "bookmark3", NULL, NULL,
104                 BOOKMARK3_TEXT, BOOKMARK_LONGTEXT, VLC_FALSE );
105     add_string( "bookmark4", NULL, NULL,
106                 BOOKMARK4_TEXT, BOOKMARK_LONGTEXT, VLC_FALSE );
107     add_string( "bookmark5", NULL, NULL,
108                 BOOKMARK5_TEXT, BOOKMARK_LONGTEXT, VLC_FALSE );
109     add_string( "bookmark6", NULL, NULL,
110                 BOOKMARK6_TEXT, BOOKMARK_LONGTEXT, VLC_FALSE );
111     add_string( "bookmark7", NULL, NULL,
112                 BOOKMARK7_TEXT, BOOKMARK_LONGTEXT, VLC_FALSE );
113     add_string( "bookmark8", NULL, NULL,
114                 BOOKMARK8_TEXT, BOOKMARK_LONGTEXT, VLC_FALSE );
115     add_string( "bookmark9", NULL, NULL,
116                 BOOKMARK9_TEXT, BOOKMARK_LONGTEXT, VLC_FALSE );
117     add_string( "bookmark10", NULL, NULL,
118                 BOOKMARK10_TEXT, BOOKMARK_LONGTEXT, VLC_FALSE );
119
120     set_capability( "interface", 0 );
121     set_callbacks( Open, Close );
122 vlc_module_end();
123
124 /*****************************************************************************
125  * Open: initialize interface
126  *****************************************************************************/
127 static int Open( vlc_object_t *p_this )
128 {
129     intf_thread_t *p_intf = (intf_thread_t *)p_this;
130
131     /* Allocate instance and initialize some members */
132     p_intf->p_sys = malloc( sizeof( intf_sys_t ) );
133     if( p_intf->p_sys == NULL )
134     {
135         msg_Err( p_intf, "out of memory" );
136         return 1;
137     }
138     vlc_mutex_init( p_intf, &p_intf->p_sys->change_lock );
139     p_intf->p_sys->i_size = 0;
140     p_intf->pf_run = Run;
141
142     p_intf->p_sys->p_input = NULL;
143     p_intf->p_sys->p_vout = NULL;
144
145     var_AddCallback( p_intf->p_vlc, "key-pressed", KeyEvent, p_intf );
146     return 0;
147 }
148
149 /*****************************************************************************
150  * Close: destroy interface
151  *****************************************************************************/
152 static void Close( vlc_object_t *p_this )
153 {
154     intf_thread_t *p_intf = (intf_thread_t *)p_this;
155
156     var_DelCallback( p_intf->p_vlc, "key-pressed", KeyEvent, p_intf );
157     if( p_intf->p_sys->p_input )
158     {
159         vlc_object_release( p_intf->p_sys->p_input );
160     }
161     if( p_intf->p_sys->p_vout )
162     {
163         vlc_object_release( p_intf->p_sys->p_vout );
164     }
165     /* Destroy structure */
166     free( p_intf->p_sys );
167 }
168
169 /*****************************************************************************
170  * Run: main loop
171  *****************************************************************************/
172 static void Run( intf_thread_t *p_intf )
173 {
174     playlist_t *p_playlist = NULL;
175     input_thread_t *p_input = NULL;
176     vout_thread_t *p_vout = NULL;
177     vout_thread_t *p_last_vout = NULL;
178     struct hotkey *p_hotkeys = p_intf->p_vlc->p_hotkeys;
179     vlc_value_t val;
180     int i;
181
182     /* Initialize hotkey structure */
183     for( i = 0; p_hotkeys[i].psz_action != NULL; i++ )
184     {
185         var_Create( p_intf->p_vlc, p_hotkeys[i].psz_action,
186                     VLC_VAR_HOTKEY | VLC_VAR_DOINHERIT );
187
188         var_AddCallback( p_intf->p_vlc, p_hotkeys[i].psz_action,
189                          ActionKeyCB, NULL );
190         var_Get( p_intf->p_vlc, p_hotkeys[i].psz_action, &val );
191         var_Set( p_intf->p_vlc, p_hotkeys[i].psz_action, val );
192     }
193
194     while( !p_intf->b_die )
195     {
196         int i_key, i_action;
197         int i_times = 0;
198
199         /* Sleep a bit */
200         msleep( INTF_IDLE_SLEEP );
201
202         /* Update the input */
203         if( p_intf->p_sys->p_input == NULL )
204         {
205             p_intf->p_sys->p_input = vlc_object_find( p_intf, VLC_OBJECT_INPUT,
206                                                       FIND_ANYWHERE );
207         }
208         else if( p_intf->p_sys->p_input->b_dead )
209         {
210             vlc_object_release( p_intf->p_sys->p_input );
211             p_intf->p_sys->p_input = NULL;
212         }
213         p_input = p_intf->p_sys->p_input;
214
215         /* Update the vout */
216         p_last_vout = p_intf->p_sys->p_vout;
217         if( p_vout == NULL )
218         {
219             p_vout = vlc_object_find( p_intf, VLC_OBJECT_VOUT, FIND_ANYWHERE );
220             p_intf->p_sys->p_vout = p_vout;
221         }
222         else if( p_vout->b_die )
223         {
224             vlc_object_release( p_vout );
225             p_vout = NULL;
226             p_intf->p_sys->p_vout = NULL;
227         }
228
229         /* Register OSD channels */
230         if( p_vout && p_vout != p_last_vout )
231         {
232             for( i = 0; i < CHANNELS_NUMBER; i++ )
233             {
234                 spu_Control( p_vout->p_spu, SPU_CHANNEL_REGISTER,
235                              &p_intf->p_sys->p_channels[ i ] );
236             }
237         }
238
239         /* Find action triggered by hotkey */
240         i_action = 0;
241         i_key = GetKey( p_intf );
242         for( i = 0; i_key != -1 && p_hotkeys[i].psz_action != NULL; i++ )
243         {
244             if( p_hotkeys[i].i_key == i_key )
245             {
246                 i_action = p_hotkeys[i].i_action;
247                 i_times  = p_hotkeys[i].i_times; /* times key pressed within max. delta time */
248                 p_hotkeys[i].i_times = 0;
249             }
250         }
251
252         if( !i_action )
253         {
254             /* No key pressed, sleep a bit more */
255             msleep( INTF_IDLE_SLEEP );
256             continue;
257         }
258
259         if( i_action == ACTIONID_QUIT )
260         {
261             p_playlist = vlc_object_find( p_intf, VLC_OBJECT_PLAYLIST,
262                                     FIND_ANYWHERE );
263             if( p_playlist )
264             {
265                 playlist_Stop( p_playlist );
266                 vlc_object_release( p_playlist );
267             }
268             /* Playlist is stopped now kill vlc. */
269             p_intf->p_vlc->b_die = VLC_TRUE;
270             ClearChannels( p_intf, p_vout );
271             vout_OSDMessage( p_intf, DEFAULT_CHAN, _( "Quit" ) );
272             continue;
273         }
274         else if( i_action == ACTIONID_VOL_UP )
275         {
276             audio_volume_t i_newvol;
277             aout_VolumeUp( p_intf, 1, &i_newvol );
278             DisplayVolume( p_intf, p_vout, i_newvol );
279         }
280         else if( i_action == ACTIONID_VOL_DOWN )
281         {
282             audio_volume_t i_newvol;
283             aout_VolumeDown( p_intf, 1, &i_newvol );
284             DisplayVolume( p_intf, p_vout, i_newvol );
285         }
286         else if( i_action == ACTIONID_VOL_MUTE )
287         {
288             audio_volume_t i_newvol = -1;
289             aout_VolumeMute( p_intf, &i_newvol );
290             if( p_vout )
291             {
292                 if( i_newvol == 0 )
293                 {
294                     ClearChannels( p_intf, p_vout );
295                     vout_OSDIcon( VLC_OBJECT( p_intf ), DEFAULT_CHAN,
296                                   OSD_MUTE_ICON );
297                 }
298                 else
299                 {
300                     DisplayVolume( p_intf, p_vout, i_newvol );
301                 }
302             }
303         }
304         else if( i_action == ACTIONID_INTF_SHOW )
305         {
306             val.b_bool = VLC_TRUE;
307             p_playlist = vlc_object_find( p_intf, VLC_OBJECT_PLAYLIST,
308                                           FIND_ANYWHERE );
309             if( p_playlist )
310             {
311                 var_Set( p_playlist, "intf-show", val );
312                 vlc_object_release( p_playlist );
313             }
314         }
315         else if( i_action == ACTIONID_INTF_HIDE )
316         {
317             val.b_bool = VLC_FALSE;
318             p_playlist = vlc_object_find( p_intf, VLC_OBJECT_PLAYLIST,
319                                           FIND_ANYWHERE );
320             if( p_playlist )
321             {
322                 var_Set( p_playlist, "intf-show", val );
323                 vlc_object_release( p_playlist );
324             }
325         }
326         else if( i_action == ACTIONID_SNAPSHOT )
327         {
328             if( p_vout ) vout_Control( p_vout, VOUT_SNAPSHOT );
329         }
330         else if( i_action == ACTIONID_FULLSCREEN )
331         {
332             if( p_vout )
333             {
334                 var_Get( p_vout, "fullscreen", &val ); val.b_bool = !val.b_bool;
335                 var_Set( p_vout, "fullscreen", val );
336             }
337             else
338             {
339                 p_playlist = vlc_object_find( p_intf, VLC_OBJECT_PLAYLIST,
340                                           FIND_ANYWHERE );
341                 if( p_playlist )
342                 {
343                     var_Get( p_playlist, "fullscreen", &val ); val.b_bool = !val.b_bool;
344                     var_Set( p_playlist, "fullscreen", val );
345                     vlc_object_release( p_playlist );
346                 }
347             }
348         }
349         else if( i_action == ACTIONID_PLAY_PAUSE )
350         {
351             val.i_int = PLAYING_S;
352             if( p_input )
353             {
354                 var_Get( p_input, "state", &val );
355             }
356             if( p_input && val.i_int != PAUSE_S )
357             {
358                 ClearChannels( p_intf, p_vout );
359                 vout_OSDIcon( VLC_OBJECT( p_intf ), DEFAULT_CHAN,
360                               OSD_PAUSE_ICON );
361                 val.i_int = PAUSE_S;
362                 var_Set( p_input, "state", val );
363             }
364             else
365             {
366                 p_playlist = vlc_object_find( p_intf, VLC_OBJECT_PLAYLIST,
367                                               FIND_ANYWHERE );
368                 if( p_playlist )
369                 {
370                     ClearChannels( p_intf, p_vout );
371                     vout_OSDIcon( VLC_OBJECT( p_intf ), DEFAULT_CHAN,
372                                   OSD_PLAY_ICON );
373                     playlist_Play( p_playlist );
374                     vlc_object_release( p_playlist );
375                 }
376             }
377         }
378         else if( p_input )
379         {
380             /* FIXME --fenrir
381              * How to get a valid value ?
382              * That's not that easy with some special stream
383              */
384             vlc_bool_t b_seekable = VLC_TRUE;
385
386             if( i_action == ACTIONID_PAUSE )
387             {
388                 ClearChannels( p_intf, p_vout );
389                 vout_OSDIcon( VLC_OBJECT( p_intf ), DEFAULT_CHAN,
390                               OSD_PAUSE_ICON );
391                 val.i_int = PAUSE_S;
392                 var_Set( p_input, "state", val );
393             }
394             else if( i_action == ACTIONID_JUMP_BACKWARD_3SEC && b_seekable )
395             {
396                 val.i_time = (-3000000L * ((mtime_t)(1 << i_times)));
397                 var_Set( p_input, "time-offset", val );
398                 DisplayPosition( p_intf, p_vout, p_input );
399             }
400             else if( i_action == ACTIONID_JUMP_FORWARD_3SEC && b_seekable )
401             {
402                 val.i_time = (3000000L * ((mtime_t)(1 << i_times)));
403                 var_Set( p_input, "time-offset", val );
404                 DisplayPosition( p_intf, p_vout, p_input );
405             }
406             else if( i_action == ACTIONID_JUMP_BACKWARD_10SEC && b_seekable )
407             {
408                 val.i_time = (-10000000L * ((mtime_t)(1 << i_times)));
409                 var_Set( p_input, "time-offset", val );
410                 DisplayPosition( p_intf, p_vout, p_input );
411             }
412             else if( i_action == ACTIONID_JUMP_FORWARD_10SEC && b_seekable )
413             {
414                 val.i_time = (10000000L * ((mtime_t)(1 << i_times)));
415                 var_Set( p_input, "time-offset", val );
416                 DisplayPosition( p_intf, p_vout, p_input );
417             }
418             else if( i_action == ACTIONID_JUMP_BACKWARD_1MIN && b_seekable )
419             {
420                 val.i_time = (-60000000L * ((mtime_t)(1 << i_times)));
421                 var_Set( p_input, "time-offset", val );
422                 DisplayPosition( p_intf, p_vout, p_input );
423             }
424             else if( i_action == ACTIONID_JUMP_FORWARD_1MIN && b_seekable )
425             {
426                 val.i_time = (60000000L * ((mtime_t)(1 << i_times)));
427                 var_Set( p_input, "time-offset", val );
428                 DisplayPosition( p_intf, p_vout, p_input );
429             }
430             else if( i_action == ACTIONID_JUMP_BACKWARD_5MIN && b_seekable )
431             {
432                 val.i_time = (-300000000L * ((mtime_t)(1 << i_times)));
433                 var_Set( p_input, "time-offset", val );
434                 DisplayPosition( p_intf, p_vout, p_input );
435             }
436             else if( i_action == ACTIONID_JUMP_FORWARD_5MIN && b_seekable )
437             {
438                 val.i_time = (300000000L * ((mtime_t)(1 << i_times)));
439                 var_Set( p_input, "time-offset", val );
440                 DisplayPosition( p_intf, p_vout, p_input );
441             }
442             else if( i_action == ACTIONID_AUDIO_TRACK )
443             {
444                 vlc_value_t val, list, list2;
445                 int i_count, i;
446                 var_Get( p_input, "audio-es", &val );
447                 var_Change( p_input, "audio-es", VLC_VAR_GETCHOICES,
448                             &list, &list2 );
449                 i_count = list.p_list->i_count;
450                 if( i_count <= 1 )
451                 {
452                     continue;
453                 }
454                 for( i = 0; i < i_count; i++ )
455                 {
456                     if( val.i_int == list.p_list->p_values[i].i_int )
457                     {
458                         break;
459                     }
460                 }
461                 /* value of audio-es was not in choices list */
462                 if( i == i_count )
463                 {
464                     msg_Warn( p_input,
465                               "invalid current audio track, selecting 0" );
466                     var_Set( p_input, "audio-es",
467                              list.p_list->p_values[0] );
468                     i = 0;
469                 }
470                 else if( i == i_count - 1 )
471                 {
472                     var_Set( p_input, "audio-es",
473                              list.p_list->p_values[1] );
474                     i = 1;
475                 }
476                 else
477                 {
478                     var_Set( p_input, "audio-es",
479                              list.p_list->p_values[i+1] );
480                     i++;
481                 }
482                 vout_OSDMessage( VLC_OBJECT(p_input), DEFAULT_CHAN,
483                                  _("Audio track: %s"),
484                                  list2.p_list->p_values[i].psz_string );
485             }
486             else if( i_action == ACTIONID_SUBTITLE_TRACK )
487             {
488                 vlc_value_t val, list, list2;
489                 int i_count, i;
490                 var_Get( p_input, "spu-es", &val );
491
492                 var_Change( p_input, "spu-es", VLC_VAR_GETCHOICES,
493                             &list, &list2 );
494                 i_count = list.p_list->i_count;
495                 if( i_count <= 1 )
496                 {
497                     vout_OSDMessage( VLC_OBJECT(p_input), DEFAULT_CHAN, _("Subtitle track: %s"), _("N/A") );
498                     continue;
499                 }
500                 for( i = 0; i < i_count; i++ )
501                 {
502                     if( val.i_int == list.p_list->p_values[i].i_int )
503                     {
504                         break;
505                     }
506                 }
507                 /* value of spu-es was not in choices list */
508                 if( i == i_count )
509                 {
510                     msg_Warn( p_input, "invalid current subtitle track, selecting 0" );
511                     var_Set( p_input, "spu-es", list.p_list->p_values[0] );
512                     i = 0;
513                 }
514                 else if( i == i_count - 1 )
515                 {
516                     var_Set( p_input, "spu-es", list.p_list->p_values[0] );
517                     i = 0;
518                 }
519                 else
520                 {
521                     var_Set( p_input, "spu-es", list.p_list->p_values[i+1] );
522                     i = i + 1;
523                 }
524                 vout_OSDMessage( VLC_OBJECT(p_input), DEFAULT_CHAN,
525                                  _("Subtitle track: %s"),
526                                  list2.p_list->p_values[i].psz_string );
527             }
528             else if( i_action == ACTIONID_NEXT )
529             {
530                 p_playlist = vlc_object_find( p_intf, VLC_OBJECT_PLAYLIST,
531                                               FIND_ANYWHERE );
532                 if( p_playlist )
533                 {
534                     vout_OSDMessage( VLC_OBJECT(p_input), DEFAULT_CHAN, _("Next") );
535                     playlist_Next( p_playlist );
536                     vlc_object_release( p_playlist );
537                 }
538             }
539             else if( i_action == ACTIONID_PREV )
540             {
541                 p_playlist = vlc_object_find( p_intf, VLC_OBJECT_PLAYLIST,
542                                               FIND_ANYWHERE );
543                 if( p_playlist )
544                 {
545                     vout_OSDMessage( VLC_OBJECT(p_input), DEFAULT_CHAN, _("Previous") );
546                     playlist_Prev( p_playlist );
547                     vlc_object_release( p_playlist );
548                 }
549             }
550             else if( i_action == ACTIONID_STOP )
551             {
552                 p_playlist = vlc_object_find( p_intf, VLC_OBJECT_PLAYLIST,
553                                               FIND_ANYWHERE );
554                 if( p_playlist )
555                 {
556                     playlist_Stop( p_playlist );
557                     vlc_object_release( p_playlist );
558                 }
559             }
560             else if( i_action == ACTIONID_FASTER )
561             {
562                 vlc_value_t val;
563                 val.b_bool = VLC_TRUE;
564                 var_Set( p_input, "rate-faster", val );
565                 vout_OSDMessage( VLC_OBJECT(p_input), DEFAULT_CHAN, _("Faster") );
566             }
567             else if( i_action == ACTIONID_SLOWER )
568             {
569                 vlc_value_t val;
570                 val.b_bool = VLC_TRUE;
571                 var_Set( p_input, "rate-slower", val );
572                 vout_OSDMessage( VLC_OBJECT(p_input), DEFAULT_CHAN, _("Slower") );
573             }
574             else if( i_action == ACTIONID_POSITION && b_seekable )
575             {
576                 DisplayPosition( p_intf, p_vout, p_input );
577             }
578             else if( i_action >= ACTIONID_PLAY_BOOKMARK1 &&
579                      i_action <= ACTIONID_PLAY_BOOKMARK10 )
580             {
581                 PlayBookmark( p_intf, i_action - ACTIONID_PLAY_BOOKMARK1 + 1 );
582             }
583             else if( i_action >= ACTIONID_SET_BOOKMARK1 &&
584                      i_action <= ACTIONID_SET_BOOKMARK10 )
585             {
586                 SetBookmark( p_intf, i_action - ACTIONID_SET_BOOKMARK1 + 1 );
587             }
588             /* Only makes sense with DVD */
589             else if( i_action == ACTIONID_TITLE_PREV )
590             {
591                 val.b_bool = VLC_TRUE;
592                 var_Set( p_input, "prev-title", val );
593             }
594             else if( i_action == ACTIONID_TITLE_NEXT )
595             {
596                 val.b_bool = VLC_TRUE;
597                 var_Set( p_input, "next-title", val );
598             }
599             else if( i_action == ACTIONID_CHAPTER_PREV )
600             {
601                 val.b_bool = VLC_TRUE;
602                 var_Set( p_input, "prev-chapter", val );
603             }
604             else if( i_action == ACTIONID_CHAPTER_NEXT )
605             {
606                 val.b_bool = VLC_TRUE;
607                 var_Set( p_input, "next-chapter", val );
608             }
609             else if( i_action == ACTIONID_DISC_MENU )
610             {
611                 vlc_value_t val; val.i_int = 2;
612 msg_Dbg( p_input, "set dvdmenu" );
613                 var_Set( p_input, "title  0", val);
614             }
615             else if( i_action == ACTIONID_SUBDELAY_DOWN )
616             {
617                 int64_t i_delay = var_GetTime( p_input, "spu-delay" );
618
619                 i_delay -= 50000;    /* 50 ms */
620
621                 var_SetTime( p_input, "spu-delay", i_delay );
622                 ClearChannels( p_intf, p_vout );
623                 vout_OSDMessage( p_intf, DEFAULT_CHAN, "Subtitle delay %i ms",
624                                  (int)(i_delay/1000) );
625             }
626             else if( i_action == ACTIONID_SUBDELAY_UP )
627             {
628                 int64_t i_delay = var_GetTime( p_input, "spu-delay" );
629
630                 i_delay += 50000;    /* 50 ms */
631
632                 var_SetTime( p_input, "spu-delay", i_delay );
633                 ClearChannels( p_intf, p_vout );
634                 vout_OSDMessage( p_intf, DEFAULT_CHAN, "Subtitle delay %i ms",
635                                  (int)(i_delay/1000) );
636             }
637             else if( i_action == ACTIONID_AUDIODELAY_DOWN )
638             {
639                 int64_t i_delay = var_GetTime( p_input, "audio-delay" );
640
641                 i_delay -= 50000;    /* 50 ms */
642
643                 var_SetTime( p_input, "audio-delay", i_delay );
644                 ClearChannels( p_intf, p_vout );
645                 vout_OSDMessage( p_intf, DEFAULT_CHAN, "Audio delay %i ms",
646                                  (int)(i_delay/1000) );
647             }
648             else if( i_action == ACTIONID_AUDIODELAY_UP )
649             {
650                 int64_t i_delay = var_GetTime( p_input, "audio-delay" );
651
652                 i_delay += 50000;    /* 50 ms */
653
654                 var_SetTime( p_input, "audio-delay", i_delay );
655                 ClearChannels( p_intf, p_vout );
656                 vout_OSDMessage( p_intf, DEFAULT_CHAN, "Audio delay %i ms",
657                                  (int)(i_delay/1000) );
658             }
659             else if( i_action == ACTIONID_PLAY )
660             {
661                 p_playlist = vlc_object_find( p_intf, VLC_OBJECT_PLAYLIST,
662                                               FIND_ANYWHERE );
663                 if( p_playlist )
664                 {
665                     var_Get( p_input, "rate", &val );
666                     msg_Dbg( p_input, "rate %d", val.i_int );
667                     if( val.i_int != INPUT_RATE_DEFAULT )
668                     {
669                         /* Return to normal speed */
670                         val.i_int = INPUT_RATE_DEFAULT;
671                         var_Set( p_input, "rate", val );
672                     }
673                     else
674                     {
675                         ClearChannels( p_intf, p_vout );
676                         vout_OSDIcon( VLC_OBJECT( p_intf ), DEFAULT_CHAN,
677                                       OSD_PAUSE_ICON );
678                         playlist_Play( p_playlist );
679                     }
680                     vlc_object_release( p_playlist );
681                 }
682             }
683         }
684     }
685 }
686
687 static int GetKey( intf_thread_t *p_intf)
688 {
689     vlc_mutex_lock( &p_intf->p_sys->change_lock );
690     if ( p_intf->p_sys->i_size == 0 )
691     {
692         vlc_mutex_unlock( &p_intf->p_sys->change_lock );
693         return -1;
694     }
695     else
696     {
697         int i_return = p_intf->p_sys->p_keys[ 0 ];
698         int i;
699         p_intf->p_sys->i_size--;
700         for ( i = 0; i < BUFFER_SIZE - 1; i++)
701         {
702             p_intf->p_sys->p_keys[ i ] = p_intf->p_sys->p_keys[ i + 1 ];
703         }
704         vlc_mutex_unlock( &p_intf->p_sys->change_lock );
705         return i_return;
706     }
707 }
708
709 /*****************************************************************************
710  * KeyEvent: callback for keyboard events
711  *****************************************************************************/
712 static int KeyEvent( vlc_object_t *p_this, char const *psz_var,
713                      vlc_value_t oldval, vlc_value_t newval, void *p_data )
714 {
715     intf_thread_t *p_intf = (intf_thread_t *)p_data;
716     vlc_mutex_lock( &p_intf->p_sys->change_lock );
717     if ( p_intf->p_sys->i_size == BUFFER_SIZE )
718     {
719         msg_Warn( p_intf, "event buffer full, dropping keypress" );
720         vlc_mutex_unlock( &p_intf->p_sys->change_lock );
721         return VLC_EGENERIC;
722     }
723     else
724     {
725         p_intf->p_sys->p_keys[ p_intf->p_sys->i_size ] = newval.i_int;
726         p_intf->p_sys->i_size++;
727     }
728     vlc_mutex_unlock( &p_intf->p_sys->change_lock );
729
730     return VLC_SUCCESS;
731 }
732
733 static int ActionKeyCB( vlc_object_t *p_this, char const *psz_var,
734                         vlc_value_t oldval, vlc_value_t newval, void *p_data )
735 {
736     vlc_t *p_vlc = (vlc_t *)p_this;
737     struct hotkey *p_hotkeys = p_vlc->p_hotkeys;
738     mtime_t i_date;
739     int i;
740
741     for( i = 0; p_hotkeys[i].psz_action != NULL; i++ )
742     {
743         if( !strcmp( p_hotkeys[i].psz_action, psz_var ) )
744         {
745             p_hotkeys[i].i_key = newval.i_int;
746             /* do hotkey accounting */
747             i_date = mdate();
748             if( (p_hotkeys[i].i_delta_date > 0) &&
749                 (p_hotkeys[i].i_delta_date <= (i_date - p_hotkeys[i].i_last_date) ) )
750                 p_hotkeys[i].i_times = 0;
751             else
752                 p_hotkeys[i].i_times++;
753             p_hotkeys[i].i_last_date = i_date;
754         }
755     }
756
757     return VLC_SUCCESS;
758 }
759
760 static void PlayBookmark( intf_thread_t *p_intf, int i_num )
761 {
762     vlc_value_t val;
763     int i_position;
764     char psz_bookmark_name[11];
765     playlist_t *p_playlist =
766         vlc_object_find( p_intf, VLC_OBJECT_PLAYLIST, FIND_ANYWHERE );
767
768     sprintf( psz_bookmark_name, "bookmark%i", i_num );
769     var_Create( p_intf, psz_bookmark_name, VLC_VAR_STRING|VLC_VAR_DOINHERIT );
770     var_Get( p_intf, psz_bookmark_name, &val );
771
772     if( p_playlist )
773     {
774         char *psz_bookmark = strdup( val.psz_string );
775         for( i_position = 0; i_position < p_playlist->i_size; i_position++)
776         {
777             if( !strcmp( psz_bookmark,
778                          p_playlist->pp_items[i_position]->input.psz_uri ) )
779             {
780                 playlist_Goto( p_playlist, i_position );
781                 break;
782             }
783         }
784         vlc_object_release( p_playlist );
785     }
786 }
787
788 static void SetBookmark( intf_thread_t *p_intf, int i_num )
789 {
790     playlist_t *p_playlist =
791         vlc_object_find( p_intf, VLC_OBJECT_PLAYLIST, FIND_ANYWHERE );
792     if( p_playlist )
793     {
794         char psz_bookmark_name[11];
795         sprintf( psz_bookmark_name, "bookmark%i", i_num );
796         var_Create( p_intf, psz_bookmark_name,
797                     VLC_VAR_STRING|VLC_VAR_DOINHERIT );
798         if( p_playlist->status.p_item )
799         {
800             config_PutPsz( p_intf, psz_bookmark_name, 
801                            p_playlist->status.p_item->input.psz_uri);
802             msg_Info( p_intf, "setting playlist bookmark %i to %s", i_num,
803                            p_playlist->status.p_item->input.psz_uri);
804             config_SaveConfigFile( p_intf, "hotkeys" );
805         }
806         vlc_object_release( p_playlist );
807     }
808 }
809
810 static void DisplayPosition( intf_thread_t *p_intf, vout_thread_t *p_vout,
811                              input_thread_t *p_input )
812 {
813     char psz_duration[MSTRTIME_MAX_SIZE];
814     char psz_time[MSTRTIME_MAX_SIZE];
815     vlc_value_t time, pos;
816     mtime_t i_seconds;
817
818     if( p_vout == NULL )
819     {
820         return;
821     }
822     ClearChannels( p_intf, p_vout );
823
824     var_Get( p_input, "time", &time );
825     i_seconds = time.i_time / 1000000;
826     secstotimestr ( psz_time, i_seconds );
827
828     var_Get( p_input, "length", &time );
829     if( time.i_time > 0 )
830     {
831         secstotimestr( psz_duration, time.i_time / 1000000 );
832         vout_OSDMessage( p_input, POSITION_TEXT_CHAN, "%s / %s",
833                          psz_time, psz_duration );
834     }
835     else if( i_seconds > 0 )
836     {
837         vout_OSDMessage( p_input, POSITION_TEXT_CHAN, psz_time );
838     }
839
840     if( !p_vout->p_parent_intf || p_vout->b_fullscreen )
841     {
842         var_Get( p_input, "position", &pos );
843         vout_OSDSlider( VLC_OBJECT( p_input ), POSITION_WIDGET_CHAN,
844                         pos.f_float * 100, OSD_HOR_SLIDER );
845     }
846 }
847
848 static void DisplayVolume( intf_thread_t *p_intf, vout_thread_t *p_vout,
849                            audio_volume_t i_vol )
850 {
851     if( p_vout == NULL )
852     {
853         return;
854     }
855     ClearChannels( p_intf, p_vout );
856
857     if( !p_vout->p_parent_intf || p_vout->b_fullscreen )
858     {
859         vout_OSDSlider( VLC_OBJECT( p_vout ), VOLUME_WIDGET_CHAN,
860             i_vol*100/AOUT_VOLUME_MAX, OSD_VERT_SLIDER );
861     }
862     else
863     {
864         vout_OSDMessage( p_vout, VOLUME_TEXT_CHAN, "Volume %d%%",
865                          i_vol*400/AOUT_VOLUME_MAX );
866     }
867 }
868
869 static void ClearChannels( intf_thread_t *p_intf, vout_thread_t *p_vout )
870 {
871     int i;
872
873     if( p_vout )
874     {
875         spu_Control( p_vout->p_spu, SPU_CHANNEL_CLEAR, DEFAULT_CHAN );
876         for( i = 0; i < CHANNELS_NUMBER; i++ )
877         {
878             spu_Control( p_vout->p_spu, SPU_CHANNEL_CLEAR,
879                          p_intf->p_sys->p_channels[ i ] );
880         }
881     }
882 }