]> git.sesse.net Git - vlc/blobdiff - modules/control/hotkeys.c
* string review.
[vlc] / modules / control / hotkeys.c
index 73f677bae7def870fccc7cf3651f1814a6a7a7df..de91423b337c5ba83ef445dfb99db77483a23d81 100755 (executable)
@@ -1,8 +1,8 @@
 /*****************************************************************************
  * hotkeys.c: Hotkey handling for vlc
  *****************************************************************************
- * Copyright (C) 2003 VideoLAN
- * $Id: hotkeys.c,v 1.3 2003/10/29 02:13:04 hartman Exp $
+ * Copyright (C) 2004 VideoLAN
+ * $Id: hotkeys.c,v 1.16 2004/01/25 16:17:03 anil Exp $
  *
  * Authors: Sigmund Augdal <sigmunau@idi.ntnu.no>
  *
  * Preamble
  *****************************************************************************/
 #include <stdlib.h>                                      /* malloc(), free() */
-#include <string.h>
 
 #include <vlc/vlc.h>
 #include <vlc/intf.h>
+#include <vlc/input.h>
 #include <vlc/vout.h>
 #include <vlc/aout.h>
 #include <osd.h>
@@ -58,18 +58,53 @@ struct intf_sys_t
 static int  Open    ( vlc_object_t * );
 static void Close   ( vlc_object_t * );
 static void Run     ( intf_thread_t * );
-static void Feedback( intf_thread_t *, char * );
 static int  GetKey  ( intf_thread_t *);
 static int  KeyEvent( vlc_object_t *, char const *,
                       vlc_value_t, vlc_value_t, void * );
 static int  ActionKeyCB( vlc_object_t *, char const *,
                          vlc_value_t, vlc_value_t, void * );
+static void PlayBookmark( intf_thread_t *, int );
+static void SetBookmark ( intf_thread_t *, int );
 
 /*****************************************************************************
  * Module descriptor
  *****************************************************************************/
+#define BOOKMARK1_TEXT N_("Playlist bookmark 1")
+#define BOOKMARK2_TEXT N_("Playlist bookmark 2")
+#define BOOKMARK3_TEXT N_("Playlist bookmark 3")
+#define BOOKMARK4_TEXT N_("Playlist bookmark 4")
+#define BOOKMARK5_TEXT N_("Playlist bookmark 5")
+#define BOOKMARK6_TEXT N_("Playlist bookmark 6")
+#define BOOKMARK7_TEXT N_("Playlist bookmark 7")
+#define BOOKMARK8_TEXT N_("Playlist bookmark 8")
+#define BOOKMARK9_TEXT N_("Playlist bookmark 9")
+#define BOOKMARK10_TEXT N_("Playlist bookmark 10")
+#define BOOKMARK_LONGTEXT N_( \
+    "This option allows you to define playlist bookmarks.")
+
 vlc_module_begin();
-    set_description( _("hotkey interface") );
+    set_description( _("Hotkeys management interface") );
+    add_string( "bookmark1", NULL, NULL,
+                BOOKMARK1_TEXT, BOOKMARK_LONGTEXT, VLC_FALSE ); 
+    add_string( "bookmark2", NULL, NULL,
+                BOOKMARK2_TEXT, BOOKMARK_LONGTEXT, VLC_FALSE ); 
+    add_string( "bookmark3", NULL, NULL,
+                BOOKMARK3_TEXT, BOOKMARK_LONGTEXT, VLC_FALSE ); 
+    add_string( "bookmark4", NULL, NULL,
+                BOOKMARK4_TEXT, BOOKMARK_LONGTEXT, VLC_FALSE ); 
+    add_string( "bookmark5", NULL, NULL,
+                BOOKMARK5_TEXT, BOOKMARK_LONGTEXT, VLC_FALSE ); 
+    add_string( "bookmark6", NULL, NULL,
+                BOOKMARK6_TEXT, BOOKMARK_LONGTEXT, VLC_FALSE ); 
+    add_string( "bookmark7", NULL, NULL,
+                BOOKMARK7_TEXT, BOOKMARK_LONGTEXT, VLC_FALSE ); 
+    add_string( "bookmark8", NULL, NULL,
+                BOOKMARK8_TEXT, BOOKMARK_LONGTEXT, VLC_FALSE ); 
+    add_string( "bookmark9", NULL, NULL,
+                BOOKMARK9_TEXT, BOOKMARK_LONGTEXT, VLC_FALSE ); 
+    add_string( "bookmark10", NULL, NULL,
+                BOOKMARK10_TEXT, BOOKMARK_LONGTEXT, VLC_FALSE ); 
+    
     set_capability( "interface", 0 );
     set_callbacks( Open, Close );
 vlc_module_end();
@@ -197,7 +232,7 @@ static void Run( intf_thread_t *p_intf )
         if( i_action == ACTIONID_QUIT )
         {
             p_intf->p_vlc->b_die = VLC_TRUE;
-            Feedback( p_intf, _("Quit" ) );
+            vout_OSDMessage( VLC_OBJECT(p_intf), _( "Quit" ) );
             continue;
         }
         else if( i_action == ACTIONID_VOL_UP )
@@ -206,7 +241,7 @@ static void Run( intf_thread_t *p_intf )
             char string[9];
             aout_VolumeUp( p_intf, 1, &i_newvol );
             sprintf( string, "Vol %d%%", i_newvol*100/AOUT_VOLUME_MAX );
-            Feedback( p_intf, string );
+            vout_OSDMessage( VLC_OBJECT(p_intf), string );
         }
         else if( i_action == ACTIONID_VOL_DOWN )
         {
@@ -214,7 +249,22 @@ static void Run( intf_thread_t *p_intf )
             char string[9];
             aout_VolumeDown( p_intf, 1, &i_newvol );
             sprintf( string, "Vol %d%%", i_newvol*100/AOUT_VOLUME_MAX );
-            Feedback( p_intf, string );
+            vout_OSDMessage( VLC_OBJECT(p_intf), string );
+        }
+        else if( i_action == ACTIONID_VOL_MUTE )
+        {
+            audio_volume_t i_newvol = -1;
+            aout_VolumeMute( p_intf, &i_newvol );
+            if( i_newvol == 0 )
+            {
+                vout_OSDMessage( VLC_OBJECT(p_intf), _( "Mute" ) );
+            }
+            else
+            {
+                char string[9];
+                sprintf( string, "Vol %d%%", i_newvol*100/AOUT_VOLUME_MAX );
+                vout_OSDMessage( VLC_OBJECT(p_intf), string );
+            }
         }
         else if( i_action == ACTIONID_FULLSCREEN )
         {
@@ -240,11 +290,16 @@ static void Run( intf_thread_t *p_intf )
         }
         else if( i_action == ACTIONID_PLAY_PAUSE )
         {
-            if( p_input &&
-                p_input->stream.control.i_status != PAUSE_S )
+            val.i_int = PLAYING_S;
+            if( p_input )
             {
-                Feedback( p_intf, _( "Pause" ) );
-                input_SetStatus( p_input, INPUT_STATUS_PAUSE );
+                var_Get( p_input, "state", &val );
+            }
+            if( p_input && val.i_int != PAUSE_S )
+            {
+                vout_OSDMessage( VLC_OBJECT(p_intf), _( "Pause" ) );
+                val.i_int = PAUSE_S;
+                var_Set( p_input, "state", val );
             }
             else
             {
@@ -256,7 +311,7 @@ static void Run( intf_thread_t *p_intf )
                     if( p_playlist->i_size )
                     {
                         vlc_mutex_unlock( &p_playlist->object_lock );
-                        Feedback( p_intf, _( "Play" ) );
+                        vout_OSDMessage( VLC_OBJECT(p_intf), _( "Play" ) );
                         playlist_Play( p_playlist );
                         vlc_object_release( p_playlist );
                     }
@@ -267,8 +322,45 @@ static void Run( intf_thread_t *p_intf )
         {
             if( i_action == ACTIONID_PAUSE )
             {
-                Feedback( p_intf, _( "Pause" ) );
-                input_SetStatus( p_input, INPUT_STATUS_PAUSE );
+                vout_OSDMessage( VLC_OBJECT(p_intf), _( "Pause" ) );
+                val.i_int = PAUSE_S;
+                var_Set( p_input, "state", val );
+            }
+            else if( i_action == ACTIONID_JUMP_BACKWARD_10SEC )
+            {
+                vout_OSDMessage( VLC_OBJECT(p_intf), _( "Jump -10 seconds" ) );
+                val.i_time = -10000000;
+                var_Set( p_input, "time-offset", val );
+            }
+            else if( i_action == ACTIONID_JUMP_FORWARD_10SEC )
+            {
+                vout_OSDMessage( VLC_OBJECT(p_intf), _( "Jump +10 seconds" ) );
+                val.i_time = 10000000;
+                var_Set( p_input, "time-offset", val );
+            }
+            else if( i_action == ACTIONID_JUMP_BACKWARD_1MIN )
+            {
+                vout_OSDMessage( VLC_OBJECT(p_intf), _( "Jump -1 minute" ) );
+                val.i_time = -60000000;
+                var_Set( p_input, "time-offset", val );
+            }
+            else if( i_action == ACTIONID_JUMP_FORWARD_1MIN )
+            {
+                vout_OSDMessage( VLC_OBJECT(p_intf), _( "Jump +1 minute" ) );
+                val.i_time = 60000000;
+                var_Set( p_input, "time-offset", val );
+            }
+            else if( i_action == ACTIONID_JUMP_BACKWARD_5MIN )
+            {
+                vout_OSDMessage( VLC_OBJECT(p_intf), _( "Jump -5 minutes" ) );
+                val.i_time = -300000000;
+                var_Set( p_input, "time-offset", val );
+            }
+            else if( i_action == ACTIONID_JUMP_FORWARD_5MIN )
+            {
+                vout_OSDMessage( VLC_OBJECT(p_intf), _( "Jump +5 minutes" ) );
+                val.i_time = 300000000;
+                var_Set( p_input, "time-offset", val );
             }
             else if( i_action == ACTIONID_NEXT )
             {
@@ -302,25 +394,60 @@ static void Run( intf_thread_t *p_intf )
             }
             else if( i_action == ACTIONID_FASTER )
             {
-               vlc_value_t val; val.b_bool = VLC_TRUE;
+                vlc_value_t val; val.b_bool = VLC_TRUE;
                 var_Set( p_input, "rate-faster", val );
             }
             else if( i_action == ACTIONID_FASTER )
             {
-               vlc_value_t val; val.b_bool = VLC_TRUE;
+                vlc_value_t val; val.b_bool = VLC_TRUE;
                 var_Set( p_input, "rate-slower", val );
             }
-        }
-
-    }
-}
+            else if( i_action == ACTIONID_POSITION )
+            {
+                playlist_t *p_playlist = vlc_object_find( p_intf, VLC_OBJECT_PLAYLIST,
+                                              FIND_ANYWHERE );
+                char psz_duration[MSTRTIME_MAX_SIZE];
+                char psz_time[MSTRTIME_MAX_SIZE];
+                vlc_value_t time;
+                mtime_t i_seconds;
+                                                                                                                            
+                var_Get( p_input, "time", &time );
+                                                                                                                            
+                if( p_playlist )
+                {
+                    mtime_t dur =
+                        p_playlist->pp_items[p_playlist->i_index]->i_duration;
 
-static void Feedback( intf_thread_t *p_intf, char *psz_string )
-{
-    if ( p_intf->p_sys->p_vout )
-    {
-        vout_ShowTextRelative( p_intf->p_sys->p_vout, psz_string, NULL, 
-                                 OSD_ALIGN_TOP|OSD_ALIGN_RIGHT, 30,20,400000 );
+                    i_seconds = time.i_time / 1000000;
+                    secstotimestr ( psz_time, i_seconds );
+                                                                                                                            
+                    if( dur != -1 )
+                    {
+                        char psz_position[2*MSTRTIME_MAX_SIZE + 3];
+                        secstotimestr( psz_duration, dur/1000000 );
+                        strcpy( psz_position, psz_time );
+                        strcat( psz_position, " / " );
+                        strcat( psz_position, psz_duration );
+                        vout_OSDMessage( VLC_OBJECT(p_playlist), psz_position );
+                    }
+                    else if( i_seconds > 0 )
+                    { 
+                        vout_OSDMessage( VLC_OBJECT(p_playlist), psz_time );
+                    }
+                    vlc_object_release( p_playlist );
+                }
+            }
+            else if( i_action >= ACTIONID_PLAY_BOOKMARK1 &&
+                     i_action <= ACTIONID_PLAY_BOOKMARK10 )
+            {
+                PlayBookmark( p_intf, i_action - ACTIONID_PLAY_BOOKMARK1 + 1 );
+            }
+            else if( i_action >= ACTIONID_SET_BOOKMARK1 &&
+                     i_action <= ACTIONID_SET_BOOKMARK10 )
+            {
+                SetBookmark( p_intf, i_action - ACTIONID_SET_BOOKMARK1 + 1 );
+            }
+        }
     }
 }
 
@@ -356,7 +483,7 @@ static int KeyEvent( vlc_object_t *p_this, char const *psz_var,
     vlc_mutex_lock( &p_intf->p_sys->change_lock );
     if ( p_intf->p_sys->i_size == BUFFER_SIZE )
     {
-        msg_Warn( p_intf, "Event buffer full, dropping keypress" );
+        msg_Warn( p_intf, "event buffer full, dropping keypress" );
         vlc_mutex_unlock( &p_intf->p_sys->change_lock );
         return VLC_EGENERIC;
     }
@@ -387,3 +514,47 @@ static int ActionKeyCB( vlc_object_t *p_this, char const *psz_var,
 
     return VLC_SUCCESS;
 }
+
+static void PlayBookmark( intf_thread_t *p_intf, int i_num )
+{   
+    vlc_value_t val;
+    int i_position;
+    char psz_bookmark_name[11];
+    playlist_t *p_playlist = vlc_object_find( p_intf,
+             VLC_OBJECT_PLAYLIST, FIND_ANYWHERE );
+    
+    sprintf( psz_bookmark_name, "bookmark%i", i_num );
+    var_Create( p_intf, psz_bookmark_name, VLC_VAR_STRING|VLC_VAR_DOINHERIT );
+    var_Get( p_intf, psz_bookmark_name, &val );
+                                                                                                                    
+    if( p_playlist )
+    {
+        char *psz_bookmark = strdup( val.psz_string );
+        for( i_position = 0 ; i_position < p_playlist->i_size ; i_position++)
+        {
+            if( !strcmp( psz_bookmark, p_playlist->pp_items[i_position]->psz_uri ) )
+            {
+                playlist_Goto( p_playlist, i_position );
+                break;
+            }
+        }
+        vlc_object_release( p_playlist );
+    }
+}
+
+static void SetBookmark( intf_thread_t *p_intf, int i_num )
+{
+    vlc_value_t val;
+    playlist_t *p_playlist = vlc_object_find( p_intf,
+            VLC_OBJECT_PLAYLIST, FIND_ANYWHERE );
+    if( p_playlist )
+    {
+        char psz_bookmark_name[11];
+        sprintf( psz_bookmark_name, "bookmark%i", i_num );
+        var_Create( p_intf, psz_bookmark_name, VLC_VAR_STRING|VLC_VAR_DOINHERIT );
+        val.psz_string = strdup( p_playlist->pp_items[p_playlist->i_index]->psz_uri );
+        var_Set( p_intf, psz_bookmark_name, val );
+        msg_Info( p_intf, "setting playlist bookmark %i to %s", i_num, val.psz_string );
+        vlc_object_release( p_playlist );
+    }
+}