]> git.sesse.net Git - vlc/blob - modules/gui/ncurses.c
HAVE_CDDAX is never defined (anymore)
[vlc] / modules / gui / ncurses.c
1 /*****************************************************************************
2  * ncurses.c : NCurses interface for vlc
3  *****************************************************************************
4  * Copyright © 2001-2007 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Sam Hocevar <sam@zoy.org>
8  *          Laurent Aimar <fenrir@via.ecp.fr>
9  *          Yoann Peronneau <yoann@videolan.org>
10  *          Derk-Jan Hartman <hartman at videolan dot org>
11  *          Rafaël Carré <funman@videolanorg>
12  *
13  * This program is free software; you can redistribute it and/or modify
14  * it under the terms of the GNU General Public License as published by
15  * the Free Software Foundation; either version 2 of the License, or
16  * (at your option) any later version.
17  *
18  * This program is distributed in the hope that it will be useful,
19  * but WITHOUT ANY WARRANTY; without even the implied warranty of
20  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
21  * GNU General Public License for more details.
22  *
23  * You should have received a copy of the GNU General Public License
24  * along with this program; if not, write to the Free Software
25  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
26  *****************************************************************************/
27
28 /*
29  * Note that when we use wide characters (and link with libncursesw),
30  * we assume that an UTF8 locale is used (or compatible, such as ASCII).
31  * Other characters encodings are not supported.
32  */
33
34 /*****************************************************************************
35  * Preamble
36  *****************************************************************************/
37 #ifdef HAVE_CONFIG_H
38 # include "config.h"
39 #endif
40
41 #include <vlc_common.h>
42 #include <vlc_plugin.h>
43
44 #ifdef HAVE_NCURSESW
45 #   define _XOPEN_SOURCE_EXTENDED 1
46 #   include <wchar.h>
47 #endif
48
49 #include <ncurses.h>
50
51 #include <vlc_interface.h>
52 #include <vlc_vout.h>
53 #include <vlc_aout.h>
54 #include <vlc_charset.h>
55 #include <vlc_input.h>
56 #include <vlc_es.h>
57 #include <vlc_playlist.h>
58 #include <vlc_meta.h>
59
60 #include <assert.h>
61
62 #ifdef HAVE_SYS_STAT_H
63 #   include <sys/stat.h>
64 #endif
65 #if (!defined( WIN32 ) || defined(__MINGW32__))
66 /* Mingw has its own version of dirent */
67 #   include <dirent.h>
68 #endif
69
70 #ifdef HAVE_VCDX
71 #define VCD_MRL "vcdx://"
72 #else
73 #define VCD_MRL "vcd://"
74 #endif
75
76 #define SEARCH_CHAIN_SIZE 20
77 #define OPEN_CHAIN_SIZE 50
78
79 /*****************************************************************************
80  * Local prototypes.
81  *****************************************************************************/
82 static int  Open           ( vlc_object_t * );
83 static void Close          ( vlc_object_t * );
84
85 static void Run            ( intf_thread_t * );
86 static void PlayPause      ( intf_thread_t * );
87 static void Eject          ( intf_thread_t * );
88
89 static int  HandleKey      ( intf_thread_t *, int );
90 static void Redraw         ( intf_thread_t *, time_t * );
91
92 static playlist_item_t *PlaylistGetRoot( intf_thread_t * );
93 static void PlaylistRebuild( intf_thread_t * );
94 static void PlaylistAddNode( intf_thread_t *, playlist_item_t *, int, const char *);
95 static void PlaylistDestroy( intf_thread_t * );
96 static int  PlaylistChanged( vlc_object_t *, const char *, vlc_value_t,
97                              vlc_value_t, void * );
98 static inline bool PlaylistIsPlaying( playlist_t *, playlist_item_t * );
99 static void FindIndex      ( intf_thread_t *, playlist_t * );
100 static void SearchPlaylist ( intf_thread_t *, char * );
101 static int  SubSearchPlaylist( intf_thread_t *, char *, int, int );
102
103 static void ManageSlider   ( intf_thread_t * );
104 static void ReadDir        ( intf_thread_t * );
105
106 static void start_color_and_pairs ( intf_thread_t * );
107
108 /*****************************************************************************
109  * Module descriptor
110  *****************************************************************************/
111
112 #define BROWSE_TEXT N_("Filebrowser starting point")
113 #define BROWSE_LONGTEXT N_( \
114     "This option allows you to specify the directory the ncurses filebrowser " \
115     "will show you initially.")
116
117 vlc_module_begin ()
118     set_shortname( "Ncurses" )
119     set_description( N_("Ncurses interface") )
120     set_capability( "interface", 10 )
121     set_category( CAT_INTERFACE )
122     set_subcategory( SUBCAT_INTERFACE_MAIN )
123     set_callbacks( Open, Close )
124     add_shortcut( "curses" )
125     add_directory( "browse-dir", NULL, NULL, BROWSE_TEXT, BROWSE_LONGTEXT, false )
126 vlc_module_end ()
127
128 /*****************************************************************************
129  * intf_sys_t: description and status of ncurses interface
130  *****************************************************************************/
131 enum
132 {
133     BOX_NONE,
134     BOX_HELP,
135     BOX_INFO,
136     BOX_LOG,
137     BOX_PLAYLIST,
138     BOX_SEARCH,
139     BOX_OPEN,
140     BOX_BROWSE,
141     BOX_META,
142     BOX_OBJECTS,
143     BOX_STATS
144 };
145 enum
146 {
147     C_DEFAULT = 0,
148     C_TITLE,
149     C_PLAYLIST_1,
150     C_PLAYLIST_2,
151     C_PLAYLIST_3,
152     C_BOX,
153     C_STATUS,
154     C_INFO,
155     C_ERROR,
156     C_WARNING,
157     C_DEBUG,
158     C_CATEGORY,
159     C_FOLDER
160 };
161 enum
162 {
163     VIEW_CATEGORY,
164     VIEW_ONELEVEL
165 };
166 struct dir_entry_t
167 {
168     bool  b_file;
169     char        *psz_path;
170 };
171 struct pl_item_t
172 {
173     playlist_item_t *p_item;
174     char            *psz_display;
175 };
176 struct intf_sys_t
177 {
178     input_thread_t *p_input;
179     playlist_t     *p_playlist;
180
181     bool      b_color;
182     bool      b_color_started;
183
184     float           f_slider;
185     float           f_slider_old;
186
187     WINDOW          *w;
188
189     int             i_box_type;
190     int             i_box_y;
191     int             i_box_lines;
192     int             i_box_lines_total;
193     int             i_box_start;
194
195     int             i_box_plidx;    /* Playlist index */
196     int             b_box_plidx_follow;
197     int             i_box_bidx;     /* browser index */
198
199     playlist_item_t *p_node;        /* current node */
200
201     int             b_box_cleared;
202
203     msg_subscription_t* p_sub;                  /* message bank subscription */
204
205     char            *psz_search_chain;          /* for playlist searching    */
206     char            *psz_old_search;            /* for searching next        */
207     int             i_before_search;
208
209     char            *psz_open_chain;
210 #ifndef HAVE_NCURSESW
211     char             psz_partial_keys[7];
212 #endif
213
214     char            *psz_current_dir;
215     int             i_dir_entries;
216     struct dir_entry_t  **pp_dir_entries;
217     bool      b_show_hidden_files;
218
219     int             i_current_view;             /* playlist view             */
220     struct pl_item_t    **pp_plist;
221     int             i_plist_entries;
222     bool      b_need_update;              /* for playlist view         */
223 };
224
225 static void DrawBox( WINDOW *win, int y, int x, int h, int w, const char *title, bool b_color );
226 static void DrawLine( WINDOW *win, int y, int x, int w );
227 static void DrawEmptyLine( WINDOW *win, int y, int x, int w );
228
229 /*****************************************************************************
230  * Open: initialize and create window
231  *****************************************************************************/
232 static int Open( vlc_object_t *p_this )
233 {
234     intf_thread_t *p_intf = (intf_thread_t *)p_this;
235     intf_sys_t    *p_sys;
236
237     /* Allocate instance and initialize some members */
238     p_sys = p_intf->p_sys = malloc( sizeof( intf_sys_t ) );
239     if( !p_sys )
240         return VLC_ENOMEM;
241     p_sys->p_node = NULL;
242     p_sys->p_input = NULL;
243     p_sys->f_slider = 0.0;
244     p_sys->f_slider_old = 0.0;
245     p_sys->i_box_type = BOX_PLAYLIST;
246     p_sys->i_box_lines = 0;
247     p_sys->i_box_start= 0;
248     p_sys->i_box_lines_total = 0;
249     p_sys->b_box_plidx_follow = true;
250     p_sys->b_box_cleared = false;
251     p_sys->i_box_plidx = 0;
252     p_sys->i_box_bidx = 0;
253 // FIXME    p_sys->p_sub = msg_Subscribe( p_intf );
254     p_sys->b_color = var_CreateGetBool( p_intf, "color" );
255     p_sys->b_color_started = false;
256
257 #ifndef HAVE_NCURSESW
258     memset( p_sys->psz_partial_keys, 0, sizeof( p_sys->psz_partial_keys ) );
259 #endif
260
261     /* Initialize the curses library */
262     p_sys->w = initscr();
263
264     if( p_sys->b_color )
265         start_color_and_pairs( p_intf );
266
267     keypad( p_sys->w, TRUE );
268     /* Don't do NL -> CR/NL */
269     nonl();
270     /* Take input chars one at a time */
271     cbreak();
272     /* Don't echo */
273     noecho();
274     /* Invisible cursor */
275     curs_set( 0 );
276     /* Non blocking wgetch() */
277     wtimeout( p_sys->w, 0 );
278
279     clear();
280
281     /* exported function */
282     p_intf->pf_run = Run;
283
284     /* Stop printing errors to the console */
285     freopen( "/dev/null", "wb", stderr );
286
287     /* Set defaul playlist view */
288     p_sys->i_current_view = VIEW_CATEGORY;
289     p_sys->pp_plist = NULL;
290     p_sys->i_plist_entries = 0;
291     p_sys->b_need_update = false;
292
293     /* Initialize search chain */
294     p_sys->psz_search_chain = malloc( SEARCH_CHAIN_SIZE + 1 );
295     p_sys->psz_old_search = NULL;
296     p_sys->i_before_search = 0;
297
298     /* Initialize open chain */
299     p_sys->psz_open_chain = malloc( OPEN_CHAIN_SIZE + 1 );
300
301     /* Initialize browser options */
302     char* psz_tmp = var_CreateGetString( p_intf, "browse-dir" );
303     if( psz_tmp && *psz_tmp )
304         p_sys->psz_current_dir = psz_tmp;
305     else
306     {
307         p_sys->psz_current_dir = config_GetUserDir( VLC_HOME_DIR );
308         free( psz_tmp );
309     }
310
311     p_sys->i_dir_entries = 0;
312     p_sys->pp_dir_entries = NULL;
313     p_sys->b_show_hidden_files = false;
314     ReadDir( p_intf );
315
316     return VLC_SUCCESS;
317 }
318
319 /*****************************************************************************
320  * Close: destroy interface window
321  *****************************************************************************/
322 static void Close( vlc_object_t *p_this )
323 {
324     intf_thread_t *p_intf = (intf_thread_t *)p_this;
325     intf_sys_t    *p_sys = p_intf->p_sys;
326
327     PlaylistDestroy( p_intf );
328
329     while( p_sys->i_dir_entries )
330     {
331         struct dir_entry_t *p_dir_entry = p_sys->pp_dir_entries[0];
332         free( p_dir_entry->psz_path );
333         REMOVE_ELEM( p_sys->pp_dir_entries, p_sys->i_dir_entries, 0 );
334         free( p_dir_entry );
335     }
336     p_sys->pp_dir_entries = NULL;
337
338     free( p_sys->psz_current_dir );
339     free( p_sys->psz_search_chain );
340     free( p_sys->psz_old_search );
341     free( p_sys->psz_open_chain );
342
343     if( p_sys->p_input )
344     {
345         vlc_object_release( p_sys->p_input );
346     }
347     pl_Release( p_intf );
348
349     /* Close the ncurses interface */
350     endwin();
351
352 // FIXME    msg_Unsubscribe( p_intf, p_sys->p_sub );
353
354     /* Destroy structure */
355     free( p_sys );
356 }
357
358 /*****************************************************************************
359  * Run: ncurses thread
360  *****************************************************************************/
361 static void Run( intf_thread_t *p_intf )
362 {
363     intf_sys_t    *p_sys = p_intf->p_sys;
364     playlist_t    *p_playlist = pl_Hold( p_intf );
365     p_sys->p_playlist = p_playlist;
366
367     int i_key;
368     time_t t_last_refresh;
369     int canc = vlc_savecancel();
370
371     /*
372      * force drawing the interface for the first time
373      */
374     t_last_refresh = ( time( 0 ) - 1);
375     /*
376      * force building of the playlist array
377      */
378     PlaylistRebuild( p_intf );
379     var_AddCallback( p_playlist, "intf-change", PlaylistChanged, p_intf );
380     var_AddCallback( p_playlist, "playlist-item-append", PlaylistChanged, p_intf );
381
382     while( vlc_object_alive( p_intf ) )
383     {
384         msleep( INTF_IDLE_SLEEP );
385
386         /* Update the input */
387         if( p_sys->p_input == NULL )
388         {
389             p_sys->p_input = playlist_CurrentInput( p_playlist );
390         }
391         else if( p_sys->p_input->b_dead )
392         {
393             vlc_object_release( p_sys->p_input );
394             p_sys->p_input = NULL;
395             p_sys->f_slider = p_sys->f_slider_old = 0.0;
396             p_sys->b_box_cleared = false;
397         }
398
399         PL_LOCK;
400         if( p_sys->b_box_plidx_follow && playlist_CurrentPlayingItem(p_playlist) )
401         {
402             PL_UNLOCK;
403             FindIndex( p_intf, p_playlist );
404         }
405         else
406             PL_UNLOCK;
407
408         while( ( i_key = wgetch( p_sys->w ) ) != -1 )
409         {
410             /*
411              * HandleKey returns 1 if the screen needs to be redrawn
412              */
413             if( HandleKey( p_intf, i_key ) )
414             {
415                 Redraw( p_intf, &t_last_refresh );
416             }
417         }
418         /* Hack */
419         if( p_sys->f_slider > 0.0001 && !p_sys->b_box_cleared )
420         {
421             clear();
422             Redraw( p_intf, &t_last_refresh );
423             p_sys->b_box_cleared = true;
424         }
425
426         /*
427          * redraw the screen every second
428          */
429         if( (time(0) - t_last_refresh) >= 1 )
430         {
431             ManageSlider( p_intf );
432             Redraw( p_intf, &t_last_refresh );
433         }
434     }
435     var_DelCallback( p_playlist, "intf-change", PlaylistChanged, p_intf );
436     var_DelCallback( p_playlist, "playlist-item-append", PlaylistChanged, p_intf );
437     vlc_restorecancel( canc );
438 }
439
440 /* following functions are local */
441 static void start_color_and_pairs( intf_thread_t *p_intf )
442 {
443     assert( p_intf->p_sys->b_color && !p_intf->p_sys->b_color_started );
444
445     if( !has_colors() )
446     {
447         p_intf->p_sys->b_color = false;
448         msg_Warn( p_intf, "Terminal doesn't support colors" );
449         return;
450     }
451
452     start_color();
453
454     /* Available colors: BLACK RED GREEN YELLOW BLUE MAGENTA CYAN WHITE */
455
456     /* untested, in all my terminals, !can_change_color() --funman */
457     if( can_change_color() )
458         init_color( COLOR_YELLOW, 960, 500, 0 ); /* YELLOW -> ORANGE */
459
460     /* title */
461     init_pair( C_TITLE, COLOR_YELLOW, COLOR_BLACK );
462
463     /* jamaican playlist */
464     init_pair( C_PLAYLIST_1, COLOR_GREEN, COLOR_BLACK );
465     init_pair( C_PLAYLIST_2, COLOR_YELLOW, COLOR_BLACK );
466     init_pair( C_PLAYLIST_3, COLOR_RED, COLOR_BLACK );
467
468     /* used in DrawBox() */
469     init_pair( C_BOX, COLOR_CYAN, COLOR_BLACK );
470     /* Source, State, Position, Volume, Chapters, etc...*/
471     init_pair( C_STATUS, COLOR_BLUE, COLOR_BLACK );
472
473     /* VLC messages, keep the order from highest priority to lowest */
474
475     /* infos */
476     init_pair( C_INFO, COLOR_BLACK, COLOR_WHITE );
477     /* errors */
478     init_pair( C_ERROR, COLOR_RED, COLOR_BLACK );
479     /* warnings */
480     init_pair( C_WARNING, COLOR_YELLOW, COLOR_BLACK );
481 /* debug */
482     init_pair( C_DEBUG, COLOR_WHITE, COLOR_BLACK );
483
484     /* Category title (help, info, metadata) */
485     init_pair( C_CATEGORY, COLOR_MAGENTA, COLOR_BLACK );
486
487     /* Folder (BOX_BROWSE) */
488     init_pair( C_FOLDER, COLOR_RED, COLOR_BLACK );
489
490     p_intf->p_sys->b_color_started = true;
491 }
492
493 #ifndef HAVE_NCURSESW
494 static char *KeyToUTF8( int i_key, char *psz_part )
495 {
496     char *psz_utf8;
497     int len = strlen( psz_part );
498     if( len == 6 )
499     {
500         /* overflow error - should not happen */
501         memset( psz_part, 0, 6 );
502         return NULL;
503     }
504
505     psz_part[len] = (char)i_key;
506
507     psz_utf8 = FromLocaleDup( psz_part );
508
509     /* Ugly check for incomplete bytes sequences
510      * (in case of non-UTF8 multibyte local encoding) */
511     char *psz;
512     for( psz = psz_utf8; *psz; psz++ )
513         if( ( *psz == '?' ) && ( *psz_utf8 != '?' ) )
514         {
515             /* incomplete bytes sequence detected
516              * (VLC core inserted dummy question marks) */
517             free( psz_utf8 );
518             return NULL;
519         }
520
521     /* Check for incomplete UTF8 bytes sequence */
522     if( EnsureUTF8( psz_utf8 ) == NULL )
523     {
524         free( psz_utf8 );
525         return NULL;
526     }
527
528     memset( psz_part, 0, 6 );
529     return psz_utf8;
530 }
531 #endif
532
533 static inline int RemoveLastUTF8Entity( char *psz, int len )
534 {
535     while( len && ( (psz[--len] & 0xc0) == 0x80 ) );
536                        /* UTF8 continuation byte */
537
538     psz[len] = '\0';
539     return len;
540 }
541
542 static int HandleKey( intf_thread_t *p_intf, int i_key )
543 {
544     intf_sys_t *p_sys = p_intf->p_sys;
545     int i_ret = 1;
546
547     playlist_t *p_playlist = pl_Hold( p_intf );
548
549     if( p_sys->i_box_type == BOX_PLAYLIST )
550     {
551         int b_ret = true;
552         bool b_box_plidx_follow = false;
553
554         switch( i_key )
555         {
556             /* Playlist Settings */
557             case 'r':
558                 var_ToggleBool( p_playlist, "random" );
559                 goto end;
560             case 'l':
561                 var_ToggleBool( p_playlist, "loop" );
562                 goto end;
563             case 'R':
564                 var_ToggleBool( p_playlist, "repeat" );
565                 goto end;
566
567             /* Playlist sort */
568             case 'o':
569                 playlist_RecursiveNodeSort( p_playlist,
570                                             PlaylistGetRoot( p_intf ),
571                                             SORT_TITLE_NODES_FIRST, ORDER_NORMAL );
572                 p_sys->b_need_update = true;
573                 goto end;
574             case 'O':
575                 playlist_RecursiveNodeSort( p_playlist,
576                                             PlaylistGetRoot( p_intf ),
577                                             SORT_TITLE_NODES_FIRST, ORDER_REVERSE );
578                 p_sys->b_need_update = true;
579                 goto end;
580
581             /* Playlist view */
582             case 'v':
583                 switch( p_sys->i_current_view )
584                 {
585                     case VIEW_CATEGORY:
586                         p_sys->i_current_view = VIEW_ONELEVEL;
587                         break;
588                     default:
589                         p_sys->i_current_view = VIEW_CATEGORY;
590                 }
591                 //p_sys->b_need_update = true;
592                 PlaylistRebuild( p_intf );
593                 goto end;
594
595             /* Playlist navigation */
596             case 'g':
597                 FindIndex( p_intf, p_playlist );
598                 break;
599             case KEY_HOME:
600                 p_sys->i_box_plidx = 0;
601                 break;
602 #ifdef __FreeBSD__
603 /* workaround for FreeBSD + xterm:
604  * see http://www.nabble.com/curses-vs.-xterm-key-mismatch-t3574377.html */
605             case KEY_SELECT:
606 #endif
607             case KEY_END:
608                 p_sys->i_box_plidx = p_playlist->items.i_size - 1;
609                 break;
610             case KEY_UP:
611                 p_sys->i_box_plidx--;
612                 break;
613             case KEY_DOWN:
614                 p_sys->i_box_plidx++;
615                 break;
616             case KEY_PPAGE:
617                 p_sys->i_box_plidx -= p_sys->i_box_lines;
618                 break;
619             case KEY_NPAGE:
620                 p_sys->i_box_plidx += p_sys->i_box_lines;
621                 break;
622             case 'D':
623             case KEY_BACKSPACE:
624             case 0x7f:
625             case KEY_DC:
626             {
627                 playlist_item_t *p_item;
628
629                 PL_LOCK;
630                 p_item = p_sys->pp_plist[p_sys->i_box_plidx]->p_item;
631                 if( p_item->i_children == -1 )
632                 {
633                     playlist_DeleteFromInput( p_playlist,
634                                               p_item->p_input, pl_Locked );
635                 }
636                 else
637                 {
638                     playlist_NodeDelete( p_playlist, p_item,
639                                          true , false );
640                 }
641                 PL_UNLOCK;
642                 PlaylistRebuild( p_intf );
643                 break;
644             }
645
646             case KEY_ENTER:
647             case '\r':
648             case '\n':
649                 if( !p_sys->pp_plist[p_sys->i_box_plidx] )
650                 {
651                     b_ret = false;
652                     break;
653                 }
654                 if( p_sys->pp_plist[p_sys->i_box_plidx]->p_item->i_children
655                         == -1 )
656                 {
657                     playlist_item_t *p_item, *p_parent;
658                     p_item = p_parent =
659                             p_sys->pp_plist[p_sys->i_box_plidx]->p_item;
660
661                     if( !p_parent )
662                         p_parent = p_playlist->p_root_onelevel;
663                     while( p_parent->p_parent )
664                         p_parent = p_parent->p_parent;
665                     playlist_Control( p_playlist, PLAYLIST_VIEWPLAY,
666                                       pl_Unlocked, p_parent, p_item );
667                 }
668                 else if( p_sys->pp_plist[p_sys->i_box_plidx]->p_item->i_children
669                         == 0 )
670                 {   /* We only want to set the current node */
671                     playlist_Stop( p_playlist );
672                     p_sys->p_node = p_sys->pp_plist[p_sys->i_box_plidx]->p_item;
673                 }
674                 else
675                 {
676                     p_sys->p_node = p_sys->pp_plist[p_sys->i_box_plidx]->p_item;
677                     playlist_Control( p_playlist, PLAYLIST_VIEWPLAY, pl_Unlocked,
678                         p_sys->pp_plist[p_sys->i_box_plidx]->p_item, NULL );
679                 }
680                 b_box_plidx_follow = true;
681                 break;
682             default:
683                 b_ret = false;
684                 break;
685         }
686
687         if( b_ret )
688         {
689             int i_max = p_sys->i_plist_entries;
690             if( p_sys->i_box_plidx >= i_max ) p_sys->i_box_plidx = i_max - 1;
691             if( p_sys->i_box_plidx < 0 ) p_sys->i_box_plidx = 0;
692
693             PL_LOCK;
694             if( PlaylistIsPlaying( p_playlist,
695                                    p_sys->pp_plist[p_sys->i_box_plidx]->p_item ) )
696                 b_box_plidx_follow = true;
697             PL_UNLOCK;
698             p_sys->b_box_plidx_follow = b_box_plidx_follow;
699             goto end;
700         }
701     }
702     if( p_sys->i_box_type == BOX_BROWSE )
703     {
704         bool b_ret = true;
705         /* Browser navigation */
706         switch( i_key )
707         {
708             case KEY_HOME:
709                 p_sys->i_box_bidx = 0;
710                 break;
711 #ifdef __FreeBSD__
712             case KEY_SELECT:
713 #endif
714             case KEY_END:
715                 p_sys->i_box_bidx = p_sys->i_dir_entries - 1;
716                 break;
717             case KEY_UP:
718                 p_sys->i_box_bidx--;
719                 break;
720             case KEY_DOWN:
721                 p_sys->i_box_bidx++;
722                 break;
723             case KEY_PPAGE:
724                 p_sys->i_box_bidx -= p_sys->i_box_lines;
725                 break;
726             case KEY_NPAGE:
727                 p_sys->i_box_bidx += p_sys->i_box_lines;
728                 break;
729             case '.': /* Toggle show hidden files */
730                 p_sys->b_show_hidden_files = ( p_sys->b_show_hidden_files ==
731                     true ? false : true );
732                 ReadDir( p_intf );
733                 break;
734
735             case KEY_ENTER:
736             case '\r':
737             case '\n':
738             case ' ':
739                 if( p_sys->pp_dir_entries[p_sys->i_box_bidx]->b_file || i_key == ' ' )
740                 {
741                     char* psz_uri;
742                     if( asprintf( &psz_uri, "%s://%s/%s",
743                         p_sys->pp_dir_entries[p_sys->i_box_bidx]->b_file ?
744                             "file" : "directory",
745                         p_sys->psz_current_dir,
746                         p_sys->pp_dir_entries[p_sys->i_box_bidx]->psz_path
747                         ) == -1 )
748                     {
749                         psz_uri = NULL;
750                     }
751
752                     playlist_item_t *p_parent = p_sys->p_node;
753                     if( !p_parent )
754                     {
755                         PL_LOCK;
756                         p_parent = playlist_CurrentPlayingItem(p_playlist) ? playlist_CurrentPlayingItem(p_playlist)->p_parent : NULL;
757                         PL_UNLOCK;
758                         if( !p_parent )
759                             p_parent = p_playlist->p_local_onelevel;
760                     }
761
762                     while( p_parent->p_parent && p_parent->p_parent->p_parent )
763                         p_parent = p_parent->p_parent;
764
765                     playlist_Add( p_playlist, psz_uri, NULL, PLAYLIST_APPEND,
766                                   PLAYLIST_END,
767                                   p_parent->p_input ==
768                                     p_playlist->p_local_onelevel->p_input
769                                   , false );
770
771                     p_sys->i_box_type = BOX_PLAYLIST;
772                     free( psz_uri );
773                 }
774                 else
775                 {
776                     if( asprintf( &(p_sys->psz_current_dir), "%s/%s", p_sys->psz_current_dir,
777                                   p_sys->pp_dir_entries[p_sys->i_box_bidx]->psz_path ) != -1 )
778                         ReadDir( p_intf );
779                 }
780                 break;
781             default:
782                 b_ret = false;
783                 break;
784         }
785         if( b_ret )
786         {
787             if( p_sys->i_box_bidx >= p_sys->i_dir_entries ) p_sys->i_box_bidx = p_sys->i_dir_entries - 1;
788             if( p_sys->i_box_bidx < 0 ) p_sys->i_box_bidx = 0;
789             goto end;
790         }
791     }
792     else if( p_sys->i_box_type == BOX_HELP || p_sys->i_box_type == BOX_INFO ||
793              p_sys->i_box_type == BOX_META || p_sys->i_box_type == BOX_STATS ||
794              p_sys->i_box_type == BOX_OBJECTS )
795     {
796         switch( i_key )
797         {
798             case KEY_HOME:
799                 p_sys->i_box_start = 0;
800                 goto end;
801 #ifdef __FreeBSD__
802             case KEY_SELECT:
803 #endif
804             case KEY_END:
805                 p_sys->i_box_start = p_sys->i_box_lines_total - 1;
806                 goto end;
807             case KEY_UP:
808                 if( p_sys->i_box_start > 0 ) p_sys->i_box_start--;
809                 goto end;
810             case KEY_DOWN:
811                 if( p_sys->i_box_start < p_sys->i_box_lines_total - 1 )
812                 {
813                     p_sys->i_box_start++;
814                 }
815                 goto end;
816             case KEY_PPAGE:
817                 p_sys->i_box_start -= p_sys->i_box_lines;
818                 if( p_sys->i_box_start < 0 ) p_sys->i_box_start = 0;
819                 goto end;
820             case KEY_NPAGE:
821                 p_sys->i_box_start += p_sys->i_box_lines;
822                 if( p_sys->i_box_start >= p_sys->i_box_lines_total )
823                 {
824                     p_sys->i_box_start = p_sys->i_box_lines_total - 1;
825                 }
826                 goto end;
827             default:
828                 break;
829         }
830     }
831     else if( p_sys->i_box_type == BOX_NONE )
832     {
833         switch( i_key )
834         {
835             case KEY_HOME:
836                 p_sys->f_slider = 0;
837                 ManageSlider( p_intf );
838                 goto end;
839 #ifdef __FreeBSD__
840             case KEY_SELECT:
841 #endif
842             case KEY_END:
843                 p_sys->f_slider = 99.9;
844                 ManageSlider( p_intf );
845                 goto end;
846             case KEY_UP:
847                 p_sys->f_slider += 5.0;
848                 if( p_sys->f_slider >= 99.0 ) p_sys->f_slider = 99.0;
849                 ManageSlider( p_intf );
850                 goto end;
851             case KEY_DOWN:
852                 p_sys->f_slider -= 5.0;
853                 if( p_sys->f_slider < 0.0 ) p_sys->f_slider = 0.0;
854                 ManageSlider( p_intf );
855                 goto end;
856
857             default:
858                 break;
859         }
860     }
861     else if( p_sys->i_box_type == BOX_SEARCH && p_sys->psz_search_chain )
862     {
863         int i_chain_len = strlen( p_sys->psz_search_chain );
864         switch( i_key )
865         {
866             case KEY_CLEAR:
867             case 0x0c:      /* ^l */
868                 clear();
869                 goto end;
870             case KEY_ENTER:
871             case '\r':
872             case '\n':
873                 if( i_chain_len > 0 )
874                 {
875                     p_sys->psz_old_search = strdup( p_sys->psz_search_chain );
876                 }
877                 else if( p_sys->psz_old_search )
878                 {
879                     SearchPlaylist( p_intf, p_sys->psz_old_search );
880                 }
881                 p_sys->i_box_type = BOX_PLAYLIST;
882                 goto end;
883             case 0x1b: /* ESC */
884                 /* Alt+key combinations return 2 keys in the terminal keyboard:
885                  * ESC, and the 2nd key.
886                  * If some other key is available immediately (where immediately
887                  * means after wgetch() 1 second delay ), that means that the
888                  * ESC key was not pressed.
889                  *
890                  * man 3X curs_getch says:
891                  *
892                  * Use of the escape key by a programmer for a single
893                  * character function is discouraged, as it will cause a delay
894                  * of up to one second while the keypad code looks for a
895                  * following function-key sequence.
896                  *
897                  */
898                 if( wgetch( p_sys->w ) != ERR )
899                 {
900                     i_ret = 0;
901                     goto end;
902                 }
903                 p_sys->i_box_plidx = p_sys->i_before_search;
904                 p_sys->i_box_type = BOX_PLAYLIST;
905                 goto end;
906             case KEY_BACKSPACE:
907             case 0x7f:
908                 RemoveLastUTF8Entity( p_sys->psz_search_chain, i_chain_len );
909                 break;
910             default:
911             {
912 #ifdef HAVE_NCURSESW
913                 if( i_chain_len + 1 < SEARCH_CHAIN_SIZE )
914                 {
915                     p_sys->psz_search_chain[i_chain_len] = (char) i_key;
916                     p_sys->psz_search_chain[i_chain_len + 1] = '\0';
917                 }
918 #else
919                 char *psz_utf8 = KeyToUTF8( i_key, p_sys->psz_partial_keys );
920
921                 if( psz_utf8 != NULL )
922                 {
923                     if( i_chain_len + strlen( psz_utf8 ) < SEARCH_CHAIN_SIZE )
924                     {
925                         strcpy( p_sys->psz_search_chain + i_chain_len,
926                                 psz_utf8 );
927                     }
928                     free( psz_utf8 );
929                 }
930 #endif
931                 break;
932             }
933         }
934         free( p_sys->psz_old_search );
935         p_sys->psz_old_search = NULL;
936         SearchPlaylist( p_intf, p_sys->psz_search_chain );
937         goto end;
938     }
939     else if( p_sys->i_box_type == BOX_OPEN && p_sys->psz_open_chain )
940     {
941         int i_chain_len = strlen( p_sys->psz_open_chain );
942
943         switch( i_key )
944         {
945             case KEY_CLEAR:
946             case 0x0c:          /* ^l */
947                 clear();
948                 break;
949             case KEY_ENTER:
950             case '\r':
951             case '\n':
952                 if( i_chain_len > 0 )
953                 {
954                     playlist_item_t *p_parent = p_sys->p_node;
955
956                     PL_LOCK;
957                     if( !p_parent )
958                     p_parent = playlist_CurrentPlayingItem(p_playlist) ? playlist_CurrentPlayingItem(p_playlist)->p_parent : NULL;
959                     if( !p_parent )
960                         p_parent = p_playlist->p_local_onelevel;
961
962                     while( p_parent->p_parent && p_parent->p_parent->p_parent )
963                         p_parent = p_parent->p_parent;
964                     PL_UNLOCK;
965
966                     playlist_Add( p_playlist, p_sys->psz_open_chain, NULL,
967                                   PLAYLIST_APPEND|PLAYLIST_GO, PLAYLIST_END,
968                                   p_parent->p_input ==
969                                     p_playlist->p_local_onelevel->p_input
970                                   , false );
971
972                     p_sys->b_box_plidx_follow = true;
973                 }
974                 p_sys->i_box_type = BOX_PLAYLIST;
975                 break;
976             case 0x1b:  /* ESC */
977                 if( wgetch( p_sys->w ) != ERR )
978                 {
979                     i_ret = 0;
980                     break;
981                 }
982                 p_sys->i_box_type = BOX_PLAYLIST;
983                 break;
984             case KEY_BACKSPACE:
985             case 0x7f:
986                 RemoveLastUTF8Entity( p_sys->psz_open_chain, i_chain_len );
987                 break;
988             default:
989             {
990 #ifdef HAVE_NCURSESW
991                 if( i_chain_len + 1 < OPEN_CHAIN_SIZE )
992                 {
993                     p_sys->psz_open_chain[i_chain_len] = (char) i_key;
994                     p_sys->psz_open_chain[i_chain_len + 1] = '\0';
995                 }
996 #else
997                 char *psz_utf8 = KeyToUTF8( i_key, p_sys->psz_partial_keys );
998
999                 if( psz_utf8 != NULL )
1000                 {
1001                     if( i_chain_len + strlen( psz_utf8 ) < OPEN_CHAIN_SIZE )
1002                     {
1003                         strcpy( p_sys->psz_open_chain + i_chain_len,
1004                                 psz_utf8 );
1005                     }
1006                     free( psz_utf8 );
1007                 }
1008 #endif
1009             }
1010         }
1011         goto end;
1012     }
1013
1014
1015     /* Common keys */
1016     switch( i_key )
1017     {
1018         case 0x1b:  /* ESC */
1019             if( wgetch( p_sys->w ) != ERR )
1020             {
1021                 i_ret = 0;
1022                 break;
1023             }
1024         case 'q':
1025         case 'Q':
1026         case KEY_EXIT:
1027             libvlc_Quit( p_intf->p_libvlc );
1028             i_ret = 0;
1029             break;
1030
1031         /* Box switching */
1032         case 'i':
1033             if( p_sys->i_box_type == BOX_INFO )
1034                 p_sys->i_box_type = BOX_NONE;
1035             else
1036                 p_sys->i_box_type = BOX_INFO;
1037             p_sys->i_box_lines_total = 0;
1038             break;
1039         case 'm':
1040             if( p_sys->i_box_type == BOX_META )
1041                 p_sys->i_box_type = BOX_NONE;
1042             else
1043                 p_sys->i_box_type = BOX_META;
1044             p_sys->i_box_lines_total = 0;
1045             break;
1046         case 'L':
1047             if( p_sys->i_box_type == BOX_LOG )
1048                 p_sys->i_box_type = BOX_NONE;
1049             else
1050                 p_sys->i_box_type = BOX_LOG;
1051             break;
1052         case 'P':
1053             if( p_sys->i_box_type == BOX_PLAYLIST )
1054                 p_sys->i_box_type = BOX_NONE;
1055             else
1056                 p_sys->i_box_type = BOX_PLAYLIST;
1057             break;
1058         case 'B':
1059             if( p_sys->i_box_type == BOX_BROWSE )
1060                 p_sys->i_box_type = BOX_NONE;
1061             else
1062                 p_sys->i_box_type = BOX_BROWSE;
1063             break;
1064         case 'x':
1065             if( p_sys->i_box_type == BOX_OBJECTS )
1066                 p_sys->i_box_type = BOX_NONE;
1067             else
1068                 p_sys->i_box_type = BOX_OBJECTS;
1069             break;
1070         case 'S':
1071             if( p_sys->i_box_type == BOX_STATS )
1072                 p_sys->i_box_type = BOX_NONE;
1073             else
1074                 p_sys->i_box_type = BOX_STATS;
1075             break;
1076         case 'c':
1077             p_sys->b_color = !p_sys->b_color;
1078             if( p_sys->b_color && !p_sys->b_color_started )
1079                 start_color_and_pairs( p_intf );
1080             break;
1081         case 'h':
1082         case 'H':
1083             if( p_sys->i_box_type == BOX_HELP )
1084                 p_sys->i_box_type = BOX_NONE;
1085             else
1086                 p_sys->i_box_type = BOX_HELP;
1087             p_sys->i_box_lines_total = 0;
1088             break;
1089         case '/':
1090             if( p_sys->i_box_type != BOX_SEARCH )
1091             {
1092                 if( p_sys->psz_search_chain )
1093                 {
1094                     p_sys->psz_search_chain[0] = '\0';
1095                     p_sys->b_box_plidx_follow = false;
1096                     p_sys->i_before_search = p_sys->i_box_plidx;
1097                     p_sys->i_box_type = BOX_SEARCH;
1098                 }
1099             }
1100             break;
1101         case 'A': /* Open */
1102             if( p_sys->i_box_type != BOX_OPEN )
1103             {
1104                 if( p_sys->psz_open_chain )
1105                 {
1106                     p_sys->psz_open_chain[0] = '\0';
1107                     p_sys->i_box_type = BOX_OPEN;
1108                 }
1109             }
1110             break;
1111
1112         /* Navigation */
1113         case KEY_RIGHT:
1114             p_sys->f_slider += 1.0;
1115             if( p_sys->f_slider > 99.9 ) p_sys->f_slider = 99.9;
1116             ManageSlider( p_intf );
1117             break;
1118
1119         case KEY_LEFT:
1120             p_sys->f_slider -= 1.0;
1121             if( p_sys->f_slider < 0.0 ) p_sys->f_slider = 0.0;
1122             ManageSlider( p_intf );
1123             break;
1124
1125         /* Common control */
1126         case 'f':
1127         {
1128             if( p_intf->p_sys->p_input )
1129             {
1130                 vout_thread_t *p_vout;
1131                 p_vout = vlc_object_find( p_intf->p_sys->p_input,
1132                                           VLC_OBJECT_VOUT, FIND_CHILD );
1133                 if( p_vout )
1134                 {
1135                     var_ToggleBool( p_vout, "fullscreen" );
1136                     vlc_object_release( p_vout );
1137                 }
1138                 else
1139                 {
1140                     var_ToggleBool( p_playlist, "fullscreen" );
1141                 }
1142             }
1143             i_ret = 0;
1144             break;
1145         }
1146
1147         case ' ':
1148             PlayPause( p_intf );
1149             break;
1150
1151         case 's':
1152             playlist_Stop( p_playlist );
1153             break;
1154
1155         case 'e':
1156             Eject( p_intf );
1157             break;
1158
1159         case '[':
1160             if( p_sys->p_input )
1161                 var_TriggerCallback( p_sys->p_input, "prev-title" );
1162             break;
1163
1164         case ']':
1165             if( p_sys->p_input )
1166                 var_TriggerCallback( p_sys->p_input, "next-title" );
1167             break;
1168
1169         case '<':
1170             if( p_sys->p_input )
1171                 var_TriggerCallback( p_sys->p_input, "prev-chapter" );
1172             break;
1173
1174         case '>':
1175             if( p_sys->p_input )
1176                 var_TriggerCallback( p_sys->p_input, "next-chapter" );
1177             break;
1178
1179         case 'p':
1180             playlist_Prev( p_playlist );
1181             clear();
1182             break;
1183
1184         case 'n':
1185             playlist_Next( p_playlist );
1186             clear();
1187             break;
1188
1189         case 'a':
1190             aout_VolumeUp( p_playlist, 1, NULL );
1191             clear();
1192             break;
1193
1194         case 'z':
1195             aout_VolumeDown( p_playlist, 1, NULL );
1196             clear();
1197             break;
1198
1199         /*
1200          * ^l should clear and redraw the screen
1201          */
1202         case KEY_CLEAR:
1203         case 0x0c:          /* ^l */
1204             clear();
1205             break;
1206
1207         default:
1208             i_ret = 0;
1209     }
1210
1211 end:
1212     pl_Release( p_intf );
1213     return i_ret;
1214 }
1215
1216 static void ManageSlider( intf_thread_t *p_intf )
1217 {
1218     intf_sys_t     *p_sys = p_intf->p_sys;
1219     input_thread_t *p_input = p_sys->p_input;
1220     vlc_value_t     val;
1221
1222     if( p_input == NULL )
1223     {
1224         return;
1225     }
1226     var_Get( p_input, "state", &val );
1227     if( val.i_int != PLAYING_S )
1228     {
1229         return;
1230     }
1231
1232     var_Get( p_input, "position", &val );
1233     if( p_sys->f_slider == p_sys->f_slider_old )
1234     {
1235         p_sys->f_slider =
1236         p_sys->f_slider_old = 100 * val.f_float;
1237     }
1238     else
1239     {
1240         p_sys->f_slider_old = p_sys->f_slider;
1241
1242         val.f_float = p_sys->f_slider / 100.0;
1243         var_Set( p_input, "position", val );
1244     }
1245 }
1246
1247 static void SearchPlaylist( intf_thread_t *p_intf, char *psz_searchstring )
1248 {
1249     int i_max;
1250     int i_first = 0 ;
1251     int i_item = -1;
1252     intf_sys_t *p_sys = p_intf->p_sys;
1253
1254     if( p_sys->i_before_search >= 0 )
1255     {
1256         i_first = p_sys->i_before_search;
1257     }
1258
1259     if( ( ! psz_searchstring ) ||  strlen( psz_searchstring ) <= 0 )
1260     {
1261         p_sys->i_box_plidx = p_sys->i_before_search;
1262         return;
1263     }
1264
1265     i_max = p_sys->i_plist_entries;
1266
1267     i_item = SubSearchPlaylist( p_intf, psz_searchstring, i_first + 1, i_max );
1268     if( i_item < 0 )
1269     {
1270         i_item = SubSearchPlaylist( p_intf, psz_searchstring, 0, i_first );
1271     }
1272
1273     if( i_item < 0 || i_item >= i_max ) return;
1274
1275     p_sys->i_box_plidx = i_item;
1276 }
1277
1278 static int SubSearchPlaylist( intf_thread_t *p_intf, char *psz_searchstring,
1279                               int i_start, int i_stop )
1280 {
1281     intf_sys_t *p_sys = p_intf->p_sys;
1282     int i, i_item = -1;
1283
1284     for( i = i_start + 1; i < i_stop; i++ )
1285     {
1286         if( strcasestr( p_sys->pp_plist[i]->psz_display,
1287                         psz_searchstring ) != NULL )
1288         {
1289             i_item = i;
1290             break;
1291         }
1292     }
1293
1294     return i_item;
1295 }
1296
1297
1298 static void mvnprintw( int y, int x, int w, const char *p_fmt, ... )
1299 {
1300     va_list  vl_args;
1301     char    *p_buf = NULL;
1302     int      i_len;
1303
1304     if( w <= 0 )
1305         return;
1306
1307     va_start( vl_args, p_fmt );
1308     if( vasprintf( &p_buf, p_fmt, vl_args ) == -1 )
1309         return;
1310     va_end( vl_args );
1311
1312     i_len = strlen( p_buf );
1313
1314 #ifdef HAVE_NCURSESW
1315     wchar_t psz_wide[i_len + 1];
1316
1317     EnsureUTF8( p_buf );
1318     size_t i_char_len = mbstowcs( psz_wide, p_buf, i_len );
1319
1320     size_t i_width; /* number of columns */
1321
1322     if( i_char_len == (size_t)-1 )
1323     /* an invalid character was encountered */
1324     {
1325         free( p_buf );
1326         return;
1327     }
1328     else
1329     {
1330         i_width = wcswidth( psz_wide, i_char_len );
1331         if( i_width == (size_t)-1 )
1332         {
1333             /* a non printable character was encountered */
1334             unsigned int i;
1335             int i_cwidth;
1336             i_width = 0;
1337             for( i = 0 ; i < i_char_len ; i++ )
1338             {
1339                 i_cwidth = wcwidth( psz_wide[i] );
1340                 if( i_cwidth != -1 )
1341                     i_width += i_cwidth;
1342             }
1343         }
1344     }
1345     if( i_width > (size_t)w )
1346     {
1347         int i_total_width = 0;
1348         int i = 0;
1349         while( i_total_width < w )
1350         {
1351             i_total_width += wcwidth( psz_wide[i] );
1352             if( w > 7 && i_total_width >= w/2 )
1353             {
1354                 psz_wide[i  ] = '.';
1355                 psz_wide[i+1] = '.';
1356                 i_total_width -= wcwidth( psz_wide[i] ) - 2;
1357                 if( i > 0 )
1358                 {
1359                     /* we require this check only if at least one character
1360                      * 4 or more columns wide exists (which i doubt) */
1361                     psz_wide[i-1] = '.';
1362                     i_total_width -= wcwidth( psz_wide[i-1] ) - 1;
1363                 }
1364
1365                 /* find the widest string */
1366                 int j, i_2nd_width = 0;
1367                 for( j = i_char_len - 1; i_2nd_width < w - i_total_width; j-- )
1368                     i_2nd_width += wcwidth( psz_wide[j] );
1369
1370                 /* we already have i_total_width columns filled, and we can't
1371                  * have more than w columns */
1372                 if( i_2nd_width > w - i_total_width )
1373                     j++;
1374
1375                 wmemmove( &psz_wide[i+2], &psz_wide[j+1], i_char_len - j - 1 );
1376                 psz_wide[i + 2 + i_char_len - j - 1] = '\0';
1377                 break;
1378             }
1379             i++;
1380         }
1381         if( w <= 7 ) /* we don't add the '...' else we lose too much chars */
1382             psz_wide[i] = '\0';
1383
1384         size_t i_wlen = wcslen( psz_wide ) * 6 + 1; /* worst case */
1385         char psz_ellipsized[i_wlen];
1386         wcstombs( psz_ellipsized, psz_wide, i_wlen );
1387         mvprintw( y, x, "%s", psz_ellipsized );
1388     }
1389     else
1390     {
1391         mvprintw( y, x, "%s", p_buf );
1392         mvhline( y, x + i_width, ' ', w - i_width );
1393     }
1394
1395 #else
1396     if( i_len > w )
1397     {
1398         int i_cut = i_len - w;
1399         int x1 = i_len/2 - i_cut/2;
1400         int x2 = x1 + i_cut;
1401
1402         if( i_len > x2 )
1403         {
1404             memmove( &p_buf[x1], &p_buf[x2], i_len - x2 );
1405         }
1406         p_buf[w] = '\0';
1407         if( w > 7 )
1408         {
1409             p_buf[w/2-1] = '.';
1410             p_buf[w/2  ] = '.';
1411             p_buf[w/2+1] = '.';
1412         }
1413         char *psz_local = ToLocale( p_buf );
1414         mvprintw( y, x, "%s", psz_local );
1415         LocaleFree( p_buf );
1416     }
1417     else
1418     {
1419         char *psz_local = ToLocale( p_buf );
1420         mvprintw( y, x, "%s", psz_local );
1421         LocaleFree( p_buf );
1422         mvhline( y, x + i_len, ' ', w - i_len );
1423     }
1424 #endif
1425     free( p_buf );
1426 }
1427 static void MainBoxWrite( intf_thread_t *p_intf, int l, int x, const char *p_fmt, ... )
1428 {
1429     intf_sys_t     *p_sys = p_intf->p_sys;
1430
1431     va_list  vl_args;
1432     char    *p_buf = NULL;
1433
1434     if( l < p_sys->i_box_start || l - p_sys->i_box_start >= p_sys->i_box_lines )
1435     {
1436         return;
1437     }
1438
1439     va_start( vl_args, p_fmt );
1440     if( vasprintf( &p_buf, p_fmt, vl_args ) == -1 )
1441         return;
1442     va_end( vl_args );
1443
1444     mvnprintw( p_sys->i_box_y + l - p_sys->i_box_start, x, COLS - x - 1, "%s", p_buf );
1445     free( p_buf );
1446 }
1447
1448 static void DumpObject( intf_thread_t *p_intf, int *l, vlc_object_t *p_obj, int i_level )
1449 {
1450     char *psz_name = vlc_object_get_name( p_obj );
1451     if( psz_name )
1452     {
1453         MainBoxWrite( p_intf, (*l)++, 1 + 2 * i_level, "%s \"%s\" (%p)",
1454                 p_obj->psz_object_type, psz_name, p_obj );
1455         free( psz_name );
1456     }
1457     else
1458         MainBoxWrite( p_intf, (*l)++, 1 + 2 * i_level, "%s (%o)",
1459                 p_obj->psz_object_type, p_obj );
1460
1461     vlc_list_t *list = vlc_list_children( p_obj );
1462     for( int i = 0; i < list->i_count ; i++ )
1463     {
1464         MainBoxWrite( p_intf, *l, 1 + 2 * i_level,
1465             i == list->i_count - 1 ? "`-" : "|-" );
1466         DumpObject( p_intf, l, list->p_values[i].p_object, i_level + 1 );
1467     }
1468     vlc_list_release( list );
1469 }
1470
1471 static void Redraw( intf_thread_t *p_intf, time_t *t_last_refresh )
1472 {
1473     intf_sys_t     *p_sys = p_intf->p_sys;
1474     input_thread_t *p_input = p_sys->p_input;
1475     playlist_t     *p_playlist = pl_Hold( p_intf );
1476     int y = 0;
1477     int h;
1478     int y_end;
1479
1480     /* Title */
1481     attrset( A_REVERSE );
1482     int i_len = strlen( "VLC media player "PACKAGE_VERSION );
1483     int mid = ( COLS - i_len ) / 2;
1484     if( mid < 0 )
1485         mid = 0;
1486     int i_size = ( COLS > i_len + 1 ) ? COLS : i_len + 1;
1487     char psz_title[i_size];
1488     memset( psz_title, ' ', mid );
1489     if( p_sys->b_color )
1490         wcolor_set( p_sys->w, C_TITLE, NULL );
1491     snprintf( &psz_title[mid], i_size, "VLC media player "PACKAGE_VERSION );
1492     mvnprintw( y, 0, COLS, "%s", psz_title );
1493     attroff( A_REVERSE );
1494     y += 2;
1495
1496     if( p_sys->b_color )
1497         wcolor_set( p_sys->w, C_STATUS, NULL );
1498
1499     /* Infos */
1500     char *psz_state;
1501     if( asprintf( &psz_state, "%s%s%s",
1502             var_GetBool( p_playlist, "repeat" ) ? _( "[Repeat] " ) : "",
1503             var_GetBool( p_playlist, "random" ) ? _( "[Random] " ) : "",
1504             var_GetBool( p_playlist, "loop" ) ? _( "[Loop]" ) : "" ) == -1 )
1505         psz_state = NULL;
1506
1507     if( p_input && !p_input->b_dead )
1508     {
1509         char buf1[MSTRTIME_MAX_SIZE];
1510         char buf2[MSTRTIME_MAX_SIZE];
1511         vlc_value_t val;
1512
1513         /* Source */
1514         char *psz_uri = input_item_GetURI( input_GetItem( p_input ) );
1515         mvnprintw( y++, 0, COLS, _(" Source   : %s"), psz_uri );
1516         free( psz_uri );
1517
1518         /* State */
1519         var_Get( p_input, "state", &val );
1520         if( val.i_int == PLAYING_S )
1521         {
1522             mvnprintw( y++, 0, COLS, _(" State    : Playing %s"), psz_state );
1523         }
1524         else if( val.i_int == OPENING_S )
1525         {
1526             mvnprintw( y++, 0, COLS, _(" State    : Opening/Connecting %s"), psz_state );
1527         }
1528         else if( val.i_int == PAUSE_S )
1529         {
1530             mvnprintw( y++, 0, COLS, _(" State    : Paused %s"), psz_state );
1531         }
1532
1533         if( val.i_int != INIT_S && val.i_int != END_S )
1534         {
1535             audio_volume_t i_volume;
1536
1537             /* Position */
1538             var_Get( p_input, "time", &val );
1539             msecstotimestr( buf1, val.i_time / 1000 );
1540
1541             var_Get( p_input, "length", &val );
1542             msecstotimestr( buf2, val.i_time / 1000 );
1543
1544             mvnprintw( y++, 0, COLS, _(" Position : %s/%s (%.2f%%)"), buf1, buf2, p_sys->f_slider );
1545
1546             /* Volume */
1547             aout_VolumeGet( p_playlist, &i_volume );
1548             mvnprintw( y++, 0, COLS, _(" Volume   : %i%%"), i_volume*200/AOUT_VOLUME_MAX );
1549
1550             /* Title */
1551             if( !var_Get( p_input, "title", &val ) )
1552             {
1553                 int i_title_count = var_CountChoices( p_input, "title" );
1554                 if( i_title_count > 0 )
1555                     mvnprintw( y++, 0, COLS, _(" Title    : %d/%d"), val.i_int, i_title_count );
1556             }
1557
1558             /* Chapter */
1559             if( !var_Get( p_input, "chapter", &val ) )
1560             {
1561                 int i_chapter_count = var_CountChoices( p_input, "chapter" );
1562                 if( i_chapter_count > 0 )
1563                     mvnprintw( y++, 0, COLS, _(" Chapter  : %d/%d"), val.i_int, i_chapter_count );
1564             }
1565         }
1566         else
1567         {
1568             y += 2;
1569         }
1570     }
1571     else
1572     {
1573         mvnprintw( y++, 0, COLS, _(" Source: <no current item> %s"), psz_state );
1574         DrawEmptyLine( p_sys->w, y++, 0, COLS );
1575         mvnprintw( y++, 0, COLS, _(" [ h for help ]") );
1576         DrawEmptyLine( p_sys->w, y++, 0, COLS );
1577     }
1578     free( psz_state );
1579     if( p_sys->b_color )
1580         wcolor_set( p_sys->w, C_DEFAULT, NULL );
1581
1582     DrawBox( p_sys->w, y, 0, 3, COLS, "", p_sys->b_color );
1583     DrawEmptyLine( p_sys->w, y+1, 1, COLS-2);
1584     DrawLine( p_sys->w, y+1, 1, (int)(p_intf->p_sys->f_slider/100.0 * (COLS -2)) );
1585     y += 3;
1586
1587     p_sys->i_box_y = y + 1;
1588     p_sys->i_box_lines = LINES - y - 2;
1589
1590     h = LINES - y;
1591     y_end = y + h - 1;
1592
1593     if( p_sys->i_box_type == BOX_HELP )
1594     {
1595         /* Help box */
1596         int l = 0;
1597         DrawBox( p_sys->w, y++, 0, h, COLS, _(" Help "), p_sys->b_color );
1598
1599         if( p_sys->b_color )
1600             wcolor_set( p_sys->w, C_CATEGORY, NULL );
1601         MainBoxWrite( p_intf, l++, 1, _("[Display]") );
1602         if( p_sys->b_color )
1603             wcolor_set( p_sys->w, C_DEFAULT, NULL );
1604         MainBoxWrite( p_intf, l++, 1, _("     h,H         Show/Hide help box") );
1605         MainBoxWrite( p_intf, l++, 1, _("     i           Show/Hide info box") );
1606         MainBoxWrite( p_intf, l++, 1, _("     m           Show/Hide metadata box") );
1607         MainBoxWrite( p_intf, l++, 1, _("     L           Show/Hide messages box") );
1608         MainBoxWrite( p_intf, l++, 1, _("     P           Show/Hide playlist box") );
1609         MainBoxWrite( p_intf, l++, 1, _("     B           Show/Hide filebrowser") );
1610         MainBoxWrite( p_intf, l++, 1, _("     x           Show/Hide objects box") );
1611         MainBoxWrite( p_intf, l++, 1, _("     S           Show/Hide statistics box" ) );
1612         MainBoxWrite( p_intf, l++, 1, _("     c           Switch color on/off") );
1613         MainBoxWrite( p_intf, l++, 1, _("     Esc         Close Add/Search entry") );
1614         MainBoxWrite( p_intf, l++, 1, "" );
1615
1616         if( p_sys->b_color )
1617             wcolor_set( p_sys->w, C_CATEGORY, NULL );
1618         MainBoxWrite( p_intf, l++, 1, _("[Global]") );
1619         if( p_sys->b_color )
1620             wcolor_set( p_sys->w, C_DEFAULT, NULL );
1621         MainBoxWrite( p_intf, l++, 1, _("     q, Q, Esc   Quit") );
1622         MainBoxWrite( p_intf, l++, 1, _("     s           Stop") );
1623         MainBoxWrite( p_intf, l++, 1, _("     <space>     Pause/Play") );
1624         MainBoxWrite( p_intf, l++, 1, _("     f           Toggle Fullscreen") );
1625         MainBoxWrite( p_intf, l++, 1, _("     n, p        Next/Previous playlist item") );
1626         MainBoxWrite( p_intf, l++, 1, _("     [, ]        Next/Previous title") );
1627         MainBoxWrite( p_intf, l++, 1, _("     <, >        Next/Previous chapter") );
1628         MainBoxWrite( p_intf, l++, 1, _("     <right>     Seek +1%%") );
1629         MainBoxWrite( p_intf, l++, 1, _("     <left>      Seek -1%%") );
1630         MainBoxWrite( p_intf, l++, 1, _("     a           Volume Up") );
1631         MainBoxWrite( p_intf, l++, 1, _("     z           Volume Down") );
1632         MainBoxWrite( p_intf, l++, 1, "" );
1633
1634         if( p_sys->b_color )
1635             wcolor_set( p_sys->w, C_CATEGORY, NULL );
1636         MainBoxWrite( p_intf, l++, 1, _("[Playlist]") );
1637         if( p_sys->b_color )
1638             wcolor_set( p_sys->w, C_DEFAULT, NULL );
1639         MainBoxWrite( p_intf, l++, 1, _("     r           Toggle Random playing") );
1640         MainBoxWrite( p_intf, l++, 1, _("     l           Toggle Loop Playlist") );
1641         MainBoxWrite( p_intf, l++, 1, _("     R           Toggle Repeat item") );
1642         MainBoxWrite( p_intf, l++, 1, _("     o           Order Playlist by title") );
1643         MainBoxWrite( p_intf, l++, 1, _("     O           Reverse order Playlist by title") );
1644         MainBoxWrite( p_intf, l++, 1, _("     g           Go to the current playing item") );
1645         MainBoxWrite( p_intf, l++, 1, _("     /           Look for an item") );
1646         MainBoxWrite( p_intf, l++, 1, _("     A           Add an entry") );
1647         MainBoxWrite( p_intf, l++, 1, _("     D, <del>    Delete an entry") );
1648         MainBoxWrite( p_intf, l++, 1, _("     <backspace> Delete an entry") );
1649         MainBoxWrite( p_intf, l++, 1, _("     e           Eject (if stopped)") );
1650         MainBoxWrite( p_intf, l++, 1, "" );
1651
1652         if( p_sys->b_color )
1653             wcolor_set( p_sys->w, C_CATEGORY, NULL );
1654         MainBoxWrite( p_intf, l++, 1, _("[Filebrowser]") );
1655         if( p_sys->b_color )
1656             wcolor_set( p_sys->w, C_DEFAULT, NULL );
1657         MainBoxWrite( p_intf, l++, 1, _("     <enter>     Add the selected file to the playlist") );
1658         MainBoxWrite( p_intf, l++, 1, _("     <space>     Add the selected directory to the playlist") );
1659         MainBoxWrite( p_intf, l++, 1, _("     .           Show/Hide hidden files") );
1660         MainBoxWrite( p_intf, l++, 1, "" );
1661
1662         if( p_sys->b_color )
1663             wcolor_set( p_sys->w, C_CATEGORY, NULL );
1664         MainBoxWrite( p_intf, l++, 1, _("[Boxes]") );
1665         if( p_sys->b_color )
1666             wcolor_set( p_sys->w, C_DEFAULT, NULL );
1667         MainBoxWrite( p_intf, l++, 1, _("     <up>,<down>     Navigate through the box line by line") );
1668         MainBoxWrite( p_intf, l++, 1, _("     <pgup>,<pgdown> Navigate through the box page by page") );
1669         MainBoxWrite( p_intf, l++, 1, "" );
1670
1671         if( p_sys->b_color )
1672             wcolor_set( p_sys->w, C_CATEGORY, NULL );
1673         MainBoxWrite( p_intf, l++, 1, _("[Player]") );
1674         if( p_sys->b_color )
1675             wcolor_set( p_sys->w, C_DEFAULT, NULL );
1676         MainBoxWrite( p_intf, l++, 1, _("     <up>,<down>     Seek +/-5%%") );
1677         MainBoxWrite( p_intf, l++, 1, "" );
1678
1679         if( p_sys->b_color )
1680             wcolor_set( p_sys->w, C_CATEGORY, NULL );
1681         MainBoxWrite( p_intf, l++, 1, _("[Miscellaneous]") );
1682         if( p_sys->b_color )
1683             wcolor_set( p_sys->w, C_DEFAULT, NULL );
1684         MainBoxWrite( p_intf, l++, 1, _("     Ctrl-l          Refresh the screen") );
1685
1686         p_sys->i_box_lines_total = l;
1687         if( p_sys->i_box_start >= p_sys->i_box_lines_total )
1688         {
1689             p_sys->i_box_start = p_sys->i_box_lines_total - 1;
1690         }
1691
1692         if( l - p_sys->i_box_start < p_sys->i_box_lines )
1693         {
1694             y += l - p_sys->i_box_start;
1695         }
1696         else
1697         {
1698             y += p_sys->i_box_lines;
1699         }
1700     }
1701     else if( p_sys->i_box_type == BOX_INFO )
1702     {
1703         /* Info box */
1704         int l = 0;
1705         DrawBox( p_sys->w, y++, 0, h, COLS, _(" Information "), p_sys->b_color );
1706
1707         if( p_input )
1708         {
1709             int i,j;
1710             vlc_mutex_lock( &input_GetItem(p_input)->lock );
1711             for( i = 0; i < input_GetItem(p_input)->i_categories; i++ )
1712             {
1713                 info_category_t *p_category = input_GetItem(p_input)->pp_categories[i];
1714                 if( y >= y_end ) break;
1715                 if( p_sys->b_color )
1716                     wcolor_set( p_sys->w, C_CATEGORY, NULL );
1717                 MainBoxWrite( p_intf, l++, 1, _("  [%s]"), p_category->psz_name );
1718                 if( p_sys->b_color )
1719                     wcolor_set( p_sys->w, C_DEFAULT, NULL );
1720                 for( j = 0; j < p_category->i_infos; j++ )
1721                 {
1722                     info_t *p_info = p_category->pp_infos[j];
1723                     if( y >= y_end ) break;
1724                     MainBoxWrite( p_intf, l++, 1, _("      %s: %s"), p_info->psz_name, p_info->psz_value );
1725                 }
1726             }
1727             vlc_mutex_unlock( &input_GetItem(p_input)->lock );
1728         }
1729         else
1730         {
1731             MainBoxWrite( p_intf, l++, 1, _("No item currently playing") );
1732         }
1733         p_sys->i_box_lines_total = l;
1734         if( p_sys->i_box_start >= p_sys->i_box_lines_total )
1735         {
1736             p_sys->i_box_start = p_sys->i_box_lines_total - 1;
1737         }
1738
1739         if( l - p_sys->i_box_start < p_sys->i_box_lines )
1740         {
1741             y += l - p_sys->i_box_start;
1742         }
1743         else
1744         {
1745             y += p_sys->i_box_lines;
1746         }
1747     }
1748     else if( p_sys->i_box_type == BOX_META )
1749     {
1750         /* Meta data box */
1751         int l = 0;
1752
1753         DrawBox( p_sys->w, y++, 0, h, COLS, _("Meta-information"),
1754                  p_sys->b_color );
1755
1756         if( p_input )
1757         {
1758             int i;
1759             input_item_t *p_item = input_GetItem( p_input );
1760             vlc_mutex_lock( &p_item->lock );
1761             for( i=0; i<VLC_META_TYPE_COUNT; i++ )
1762             {
1763                 if( y >= y_end ) break;
1764                 char *psz_meta = vlc_meta_Get( p_item->p_meta, i );
1765                 if( psz_meta && *psz_meta )
1766                 {
1767                     const char *psz_meta_title;
1768                     switch( i )
1769                     {
1770                         case 0:
1771                             psz_meta_title = VLC_META_TITLE; break;
1772                         case 1:
1773                             psz_meta_title = VLC_META_ARTIST; break;
1774                         case 2:
1775                             psz_meta_title = VLC_META_GENRE ; break;
1776                         case 3:
1777                             psz_meta_title = VLC_META_COPYRIGHT; break;
1778                         case 4:
1779                             psz_meta_title = VLC_META_ALBUM; break;
1780                         case 5:
1781                             psz_meta_title = VLC_META_TRACK_NUMBER; break;
1782                         case 6:
1783                             psz_meta_title = VLC_META_DESCRIPTION; break;
1784                         case 7:
1785                             psz_meta_title = VLC_META_RATING; break;
1786                         case 8:
1787                             psz_meta_title = VLC_META_DATE; break;
1788                         case 9:
1789                             psz_meta_title = VLC_META_SETTING; break;
1790                         case 10:
1791                             psz_meta_title = VLC_META_URL; break;
1792                         case 11:
1793                             psz_meta_title = VLC_META_LANGUAGE; break;
1794                         case 12:
1795                             psz_meta_title = VLC_META_NOW_PLAYING; break;
1796                         case 13:
1797                             psz_meta_title = VLC_META_PUBLISHER; break;
1798                         case 14:
1799                             psz_meta_title = VLC_META_ENCODED_BY; break;
1800                         case 15:
1801                             psz_meta_title = VLC_META_ART_URL; break;
1802                         case 16:
1803                             psz_meta_title = VLC_META_TRACKID; break;
1804                         default:
1805                             psz_meta_title = ""; break;
1806                     }
1807                     if( p_sys->b_color )
1808                         wcolor_set( p_sys->w, C_CATEGORY, NULL );
1809                     MainBoxWrite( p_intf, l++, 1, "  [%s]", psz_meta_title );
1810                     if( p_sys->b_color )
1811                         wcolor_set( p_sys->w, C_DEFAULT, NULL );
1812                     MainBoxWrite( p_intf, l++, 1, "      %s", psz_meta );
1813                 }
1814             }
1815             vlc_mutex_unlock( &p_item->lock );
1816         }
1817         else
1818         {
1819             MainBoxWrite( p_intf, l++, 1, _("No item currently playing") );
1820         }
1821         p_sys->i_box_lines_total = l;
1822         if( p_sys->i_box_start >= p_sys->i_box_lines_total )
1823         {
1824             p_sys->i_box_start = p_sys->i_box_lines_total - 1;
1825         }
1826
1827         if( l - p_sys->i_box_start < p_sys->i_box_lines )
1828         {
1829             y += l - p_sys->i_box_start;
1830         }
1831         else
1832         {
1833             y += p_sys->i_box_lines;
1834         }
1835     }
1836     else if( p_sys->i_box_type == BOX_LOG )
1837     {
1838 #warning Deprecated API
1839 #if 0
1840         int i_line = 0;
1841         int i_stop;
1842         int i_start;
1843
1844         DrawBox( p_sys->w, y++, 0, h, COLS, _(" Logs "), p_sys->b_color );
1845
1846
1847         i_start = p_intf->p_sys->p_sub->i_start;
1848
1849         vlc_mutex_lock( p_intf->p_sys->p_sub->p_lock );
1850         i_stop = *p_intf->p_sys->p_sub->pi_stop;
1851         vlc_mutex_unlock( p_intf->p_sys->p_sub->p_lock );
1852
1853         for( ;; )
1854         {
1855             static const char *ppsz_type[4] = { "", "error", "warning", "debug" };
1856             if( i_line >= h - 2 )
1857             {
1858                 break;
1859             }
1860             i_stop--;
1861             i_line++;
1862             if( i_stop < 0 ) i_stop += VLC_MSG_QSIZE;
1863             if( i_stop == i_start )
1864             {
1865                 break;
1866             }
1867             if( p_sys->b_color )
1868                 wcolor_set( p_sys->w,
1869                     p_sys->p_sub->p_msg[i_stop].i_type + C_INFO,
1870                     NULL );
1871             mvnprintw( y + h-2-i_line, 1, COLS - 2, "   [%s] %s",
1872                       ppsz_type[p_sys->p_sub->p_msg[i_stop].i_type],
1873                       p_sys->p_sub->p_msg[i_stop].psz_msg );
1874             if( p_sys->b_color )
1875                 wcolor_set( p_sys->w, C_DEFAULT, NULL );
1876         }
1877
1878         vlc_mutex_lock( p_intf->p_sys->p_sub->p_lock );
1879         p_intf->p_sys->p_sub->i_start = i_stop;
1880         vlc_mutex_unlock( p_intf->p_sys->p_sub->p_lock );
1881         y = y_end;
1882 #endif
1883     }
1884     else if( p_sys->i_box_type == BOX_BROWSE )
1885     {
1886         /* Filebrowser box */
1887         int        i_start, i_stop;
1888         int        i_item;
1889         DrawBox( p_sys->w, y++, 0, h, COLS, _(" Browse "), p_sys->b_color );
1890
1891         if( p_sys->i_box_bidx >= p_sys->i_dir_entries ) p_sys->i_box_plidx = p_sys->i_dir_entries - 1;
1892         if( p_sys->i_box_bidx < 0 ) p_sys->i_box_bidx = 0;
1893
1894         if( p_sys->i_box_bidx < (h - 2)/2 )
1895         {
1896             i_start = 0;
1897             i_stop = h - 2;
1898         }
1899         else if( p_sys->i_dir_entries - p_sys->i_box_bidx > (h - 2)/2 )
1900         {
1901             i_start = p_sys->i_box_bidx - (h - 2)/2;
1902             i_stop = i_start + h - 2;
1903         }
1904         else
1905         {
1906             i_stop = p_sys->i_dir_entries;
1907             i_start = p_sys->i_dir_entries - (h - 2);
1908         }
1909         if( i_start < 0 )
1910         {
1911             i_start = 0;
1912         }
1913         if( i_stop > p_sys->i_dir_entries )
1914         {
1915             i_stop = p_sys->i_dir_entries;
1916         }
1917
1918         for( i_item = i_start; i_item < i_stop; i_item++ )
1919         {
1920             bool b_selected = ( p_sys->i_box_bidx == i_item );
1921
1922             if( y >= y_end ) break;
1923             if( b_selected )
1924             {
1925                 attrset( A_REVERSE );
1926             }
1927             if( p_sys->b_color && !p_sys->pp_dir_entries[i_item]->b_file )
1928                 wcolor_set( p_sys->w, C_FOLDER, NULL );
1929             mvnprintw( y++, 1, COLS - 2, " %c %s", p_sys->pp_dir_entries[i_item]->b_file == true ? ' ' : '+',
1930                             p_sys->pp_dir_entries[i_item]->psz_path );
1931             if( p_sys->b_color && !p_sys->pp_dir_entries[i_item]->b_file )
1932                 wcolor_set( p_sys->w, C_DEFAULT, NULL );
1933
1934             if( b_selected )
1935             {
1936                 attroff( A_REVERSE );
1937             }
1938         }
1939
1940     }
1941     else if( p_sys->i_box_type == BOX_OBJECTS )
1942     {
1943         int l = 0;
1944         DrawBox( p_sys->w, y++, 0, h, COLS, _(" Objects "), p_sys->b_color );
1945         DumpObject( p_intf, &l, VLC_OBJECT( p_intf->p_libvlc ), 0 );
1946
1947         p_sys->i_box_lines_total = l;
1948         if( p_sys->i_box_start >= p_sys->i_box_lines_total )
1949             p_sys->i_box_start = p_sys->i_box_lines_total - 1;
1950
1951         if( l - p_sys->i_box_start < p_sys->i_box_lines )
1952             y += l - p_sys->i_box_start;
1953         else
1954             y += p_sys->i_box_lines;
1955     }
1956     else if( p_sys->i_box_type == BOX_STATS )
1957     {
1958         DrawBox( p_sys->w, y++, 0, h, COLS, _(" Stats "), p_sys->b_color );
1959
1960         if( p_input )
1961         {
1962             input_item_t *p_item = input_GetItem( p_input );
1963             assert( p_item );
1964             vlc_mutex_lock( &p_item->lock );
1965             vlc_mutex_lock( &p_item->p_stats->lock );
1966
1967             int i_audio = 0;
1968             int i_video = 0;
1969             int i;
1970
1971             if( !p_item->i_es )
1972                 i_video = i_audio = 1;
1973             else
1974                 for( i = 0; i < p_item->i_es ; i++ )
1975                 {
1976                     i_audio += ( p_item->es[i]->i_cat == AUDIO_ES );
1977                     i_video += ( p_item->es[i]->i_cat == VIDEO_ES );
1978                 }
1979
1980             int l = 0;
1981
1982 #define SHOW_ACS(x,c) \
1983     if(l >= p_sys->i_box_start && l - p_sys->i_box_start < p_sys->i_box_lines) \
1984         mvaddch( p_sys->i_box_y - p_sys->i_box_start + l, x, c )
1985
1986             /* Input */
1987             if( p_sys->b_color ) wcolor_set( p_sys->w, C_CATEGORY, NULL );
1988             MainBoxWrite( p_intf, l, 1, _("+-[Incoming]"));
1989             SHOW_ACS( 1, ACS_ULCORNER );  SHOW_ACS( 2, ACS_HLINE ); l++;
1990             if( p_sys->b_color ) wcolor_set( p_sys->w, C_DEFAULT, NULL );
1991             MainBoxWrite( p_intf, l, 1, _("| input bytes read : %8.0f kB"),
1992                     (float)(p_item->p_stats->i_read_bytes)/1000 );
1993             SHOW_ACS( 1, ACS_VLINE ); l++;
1994             MainBoxWrite( p_intf, l, 1, _("| input bitrate    :   %6.0f kb/s"),
1995                     (float)(p_item->p_stats->f_input_bitrate)*8000 );
1996             MainBoxWrite( p_intf, l, 1, _("| demux bytes read : %8.0f kB"),
1997                     (float)(p_item->p_stats->i_demux_read_bytes)/1000 );
1998             SHOW_ACS( 1, ACS_VLINE ); l++;
1999             MainBoxWrite( p_intf, l, 1, _("| demux bitrate    :   %6.0f kb/s"),
2000                     (float)(p_item->p_stats->f_demux_bitrate)*8000 );
2001             SHOW_ACS( 1, ACS_VLINE ); l++;
2002             DrawEmptyLine( p_sys->w, p_sys->i_box_y + l - p_sys->i_box_start, 1, COLS - 2 );
2003             SHOW_ACS( 1, ACS_VLINE ); l++;
2004
2005             /* Video */
2006             if( i_video )
2007             {
2008                 if( p_sys->b_color ) wcolor_set( p_sys->w, C_CATEGORY, NULL );
2009                 MainBoxWrite( p_intf, l, 1, _("+-[Video Decoding]"));
2010                 SHOW_ACS( 1, ACS_LTEE );  SHOW_ACS( 2, ACS_HLINE ); l++;
2011                 if( p_sys->b_color ) wcolor_set( p_sys->w, C_DEFAULT, NULL );
2012                 MainBoxWrite( p_intf, l, 1, _("| video decoded    :    %5i"),
2013                         p_item->p_stats->i_decoded_video );
2014                 SHOW_ACS( 1, ACS_VLINE ); l++;
2015                 MainBoxWrite( p_intf, l, 1, _("| frames displayed :    %5i"),
2016                         p_item->p_stats->i_displayed_pictures );
2017                 SHOW_ACS( 1, ACS_VLINE ); l++;
2018                 MainBoxWrite( p_intf, l, 1, _("| frames lost      :    %5i"),
2019                         p_item->p_stats->i_lost_pictures );
2020                 SHOW_ACS( 1, ACS_VLINE ); l++;
2021                 DrawEmptyLine( p_sys->w, p_sys->i_box_y + l - p_sys->i_box_start, 1, COLS - 2 );
2022                 SHOW_ACS( 1, ACS_VLINE ); l++;
2023             }
2024             /* Audio*/
2025             if( i_audio )
2026             {
2027                 if( p_sys->b_color ) wcolor_set( p_sys->w, C_CATEGORY, NULL );
2028                 MainBoxWrite( p_intf, l, 1, _("+-[Audio Decoding]"));
2029                 SHOW_ACS( 1, ACS_LTEE );  SHOW_ACS( 2, ACS_HLINE ); l++;
2030                 if( p_sys->b_color ) wcolor_set( p_sys->w, C_DEFAULT, NULL );
2031                 MainBoxWrite( p_intf, l, 1, _("| audio decoded    :    %5i"),
2032                         p_item->p_stats->i_decoded_audio );
2033                 SHOW_ACS( 1, ACS_VLINE ); l++;
2034                 MainBoxWrite( p_intf, l, 1, _("| buffers played   :    %5i"),
2035                         p_item->p_stats->i_played_abuffers );
2036                 SHOW_ACS( 1, ACS_VLINE ); l++;
2037                 MainBoxWrite( p_intf, l, 1, _("| buffers lost     :    %5i"),
2038                         p_item->p_stats->i_lost_abuffers );
2039                 SHOW_ACS( 1, ACS_VLINE ); l++;
2040                 DrawEmptyLine( p_sys->w, p_sys->i_box_y + l - p_sys->i_box_start, 1, COLS - 2 );
2041                 SHOW_ACS( 1, ACS_VLINE ); l++;
2042             }
2043             /* Sout */
2044             if( p_sys->b_color ) wcolor_set( p_sys->w, C_CATEGORY, NULL );
2045             MainBoxWrite( p_intf, l, 1, _("+-[Streaming]"));
2046             SHOW_ACS( 1, ACS_LTEE );  SHOW_ACS( 2, ACS_HLINE ); l++;
2047             if( p_sys->b_color ) wcolor_set( p_sys->w, C_DEFAULT, NULL );
2048             MainBoxWrite( p_intf, l, 1, _("| packets sent     :    %5i"), p_item->p_stats->i_sent_packets );
2049             SHOW_ACS( 1, ACS_VLINE ); l++;
2050             MainBoxWrite( p_intf, l, 1, _("| bytes sent       : %8.0f kB"),
2051                     (float)(p_item->p_stats->i_sent_bytes)/1000 );
2052             SHOW_ACS( 1, ACS_VLINE ); l++;
2053             MainBoxWrite( p_intf, l, 1, _("\\ sending bitrate  :   %6.0f kb/s"),
2054                     (float)(p_item->p_stats->f_send_bitrate*8)*1000 );
2055             SHOW_ACS( 1, ACS_LLCORNER ); l++;
2056             if( p_sys->b_color ) wcolor_set( p_sys->w, C_DEFAULT, NULL );
2057
2058 #undef SHOW_ACS
2059
2060             p_sys->i_box_lines_total = l;
2061             if( p_sys->i_box_start >= p_sys->i_box_lines_total )
2062                 p_sys->i_box_start = p_sys->i_box_lines_total - 1;
2063
2064             if( l - p_sys->i_box_start < p_sys->i_box_lines )
2065                 y += l - p_sys->i_box_start;
2066             else
2067                 y += p_sys->i_box_lines;
2068
2069             vlc_mutex_unlock( &p_item->p_stats->lock );
2070             vlc_mutex_unlock( &p_item->lock );
2071
2072         }
2073     }
2074     else if( p_sys->i_box_type == BOX_PLAYLIST ||
2075                p_sys->i_box_type == BOX_SEARCH ||
2076                p_sys->i_box_type == BOX_OPEN   )
2077     {
2078         /* Playlist box */
2079         int        i_start, i_stop, i_max = p_sys->i_plist_entries;
2080         int        i_item;
2081         char       *psz_title;
2082
2083         switch( p_sys->i_current_view )
2084         {
2085             case VIEW_ONELEVEL:
2086                 psz_title = strdup( _(" Playlist (All, one level) ") );
2087                 break;
2088             case VIEW_CATEGORY:
2089                 psz_title = strdup( _(" Playlist (By category) ") );
2090                 break;
2091             default:
2092                 psz_title = strdup( _(" Playlist (Manually added) ") );
2093         }
2094
2095         DrawBox( p_sys->w, y++, 0, h, COLS, psz_title, p_sys->b_color );
2096         free( psz_title );
2097
2098         if( p_sys->b_need_update || p_sys->pp_plist == NULL )
2099         {
2100             PlaylistRebuild( p_intf );
2101         }
2102         if( p_sys->b_box_plidx_follow )
2103         {
2104             FindIndex( p_intf, p_playlist );
2105         }
2106
2107         if( p_sys->i_box_plidx < 0 ) p_sys->i_box_plidx = 0;
2108         if( p_sys->i_box_plidx < 0 ) p_sys->i_box_plidx = 0;
2109         if( p_sys->i_box_plidx >= i_max ) p_sys->i_box_plidx = i_max - 1;
2110
2111         if( p_sys->i_box_plidx < (h - 2)/2 )
2112         {
2113             i_start = 0;
2114             i_stop = h - 2;
2115         }
2116         else if( i_max - p_sys->i_box_plidx > (h - 2)/2 )
2117         {
2118             i_start = p_sys->i_box_plidx - (h - 2)/2;
2119             i_stop = i_start + h - 2;
2120         }
2121         else
2122         {
2123             i_stop = i_max;
2124             i_start = i_max - (h - 2);
2125         }
2126         if( i_start < 0 )
2127         {
2128             i_start = 0;
2129         }
2130         if( i_stop > i_max )
2131         {
2132             i_stop = i_max;
2133         }
2134
2135         for( i_item = i_start; i_item < i_stop; i_item++ )
2136         {
2137             bool b_selected = ( p_sys->i_box_plidx == i_item );
2138             playlist_item_t *p_item = p_sys->pp_plist[i_item]->p_item;
2139             playlist_item_t *p_node = p_sys->p_node;
2140             int c = ' ';
2141             input_thread_t *p_input2 = playlist_CurrentInput( p_playlist );
2142
2143             PL_LOCK;
2144             assert( p_item );
2145             playlist_item_t *p_current_playing_item = playlist_CurrentPlayingItem(p_playlist);
2146             if( ( p_node && p_item->p_input == p_node->p_input ) ||
2147                         ( !p_node && p_input2 && p_current_playing_item &&
2148                           p_item->p_input == p_current_playing_item->p_input ) )
2149                 c = '*';
2150             else if( p_item == p_node || ( p_item != p_node &&
2151                         PlaylistIsPlaying( p_playlist, p_item ) ) )
2152                 c = '>';
2153             PL_UNLOCK;
2154
2155             if( p_input2 )
2156                 vlc_object_release( p_input2 );
2157
2158             if( y >= y_end ) break;
2159             if( b_selected )
2160             {
2161                 attrset( A_REVERSE );
2162             }
2163             if( p_sys->b_color )
2164                 wcolor_set( p_sys->w, i_item % 3 + C_PLAYLIST_1, NULL );
2165             mvnprintw( y++, 1, COLS - 2, "%c%s", c,
2166                        p_sys->pp_plist[i_item]->psz_display );
2167             if( p_sys->b_color )
2168                 wcolor_set( p_sys->w, C_DEFAULT, NULL );
2169             if( b_selected )
2170             {
2171                 attroff( A_REVERSE );
2172             }
2173         }
2174
2175     }
2176     else
2177     {
2178         y++;
2179     }
2180     if( p_sys->i_box_type == BOX_SEARCH )
2181     {
2182         DrawEmptyLine( p_sys->w, 7, 1, COLS-2 );
2183         if( p_sys->psz_search_chain )
2184         {
2185             if( strlen( p_sys->psz_search_chain ) == 0 &&
2186                 p_sys->psz_old_search != NULL )
2187             {
2188                 /* Searching next entry */
2189                 mvnprintw( 7, 1, COLS-2, _("Find: %s"), p_sys->psz_old_search );
2190             }
2191             else
2192             {
2193                 mvnprintw( 7, 1, COLS-2, _("Find: %s"), p_sys->psz_search_chain );
2194             }
2195         }
2196     }
2197     if( p_sys->i_box_type == BOX_OPEN )
2198     {
2199         if( p_sys->psz_open_chain )
2200         {
2201             DrawEmptyLine( p_sys->w, 7, 1, COLS-2 );
2202             mvnprintw( 7, 1, COLS-2, _("Open: %s"), p_sys->psz_open_chain );
2203         }
2204     }
2205
2206     while( y < y_end )
2207     {
2208         DrawEmptyLine( p_sys->w, y++, 1, COLS - 2 );
2209     }
2210
2211     refresh();
2212
2213     *t_last_refresh = time( 0 );
2214     pl_Release( p_intf );
2215 }
2216
2217 static playlist_item_t *PlaylistGetRoot( intf_thread_t *p_intf )
2218 {
2219     intf_sys_t *p_sys = p_intf->p_sys;
2220     playlist_t *p_playlist = pl_Hold( p_intf );
2221     playlist_item_t *p_item;
2222
2223     switch( p_sys->i_current_view )
2224     {
2225         case VIEW_CATEGORY:
2226             p_item = p_playlist->p_root_category;
2227             break;
2228         default:
2229             p_item = p_playlist->p_root_onelevel;
2230     }
2231     pl_Release( p_intf );
2232     return p_item;
2233 }
2234
2235 static void PlaylistRebuild( intf_thread_t *p_intf )
2236 {
2237     intf_sys_t *p_sys = p_intf->p_sys;
2238     playlist_t *p_playlist = pl_Hold( p_intf );
2239
2240     PL_LOCK;
2241
2242     /* First clear the old one */
2243     PlaylistDestroy( p_intf );
2244
2245     /* Build the new one */
2246     PlaylistAddNode( p_intf, PlaylistGetRoot( p_intf ), 0, "" );
2247
2248     p_sys->b_need_update = false;
2249
2250     PL_UNLOCK;
2251
2252     pl_Release( p_intf );
2253 }
2254
2255 static void PlaylistAddNode( intf_thread_t *p_intf, playlist_item_t *p_node,
2256                              int i, const char *c )
2257 {
2258     intf_sys_t *p_sys = p_intf->p_sys;
2259     playlist_item_t *p_child;
2260     int k;
2261
2262     for( k = 0; k < p_node->i_children; k++ )
2263     {
2264         char *psz_display;
2265         p_child = p_node->pp_children[k];
2266         char *psz_name = input_item_GetTitleFbName( p_child->p_input );
2267
2268         if( c && *c )
2269         {
2270             if( asprintf( &psz_display, "%s%c-%s", c,
2271                     k == p_node->i_children - 1 ?  '`' : '|', psz_name ) == -1 )
2272                 return;
2273         }
2274         else
2275         {
2276             if( asprintf( &psz_display, " %s", psz_name ) == -1 )
2277                 return;
2278         }
2279         free( psz_name );
2280         struct pl_item_t *p_pl_item = malloc( sizeof( struct pl_item_t ) );
2281         if( !p_pl_item )
2282             return;
2283         p_pl_item->psz_display = psz_display;
2284         p_pl_item->p_item = p_child;
2285         INSERT_ELEM( p_sys->pp_plist, p_sys->i_plist_entries,
2286                      p_sys->i_plist_entries, p_pl_item );
2287         i++;
2288
2289         if( p_child->i_children > 0 )
2290         {
2291             char *psz_tmp;
2292             if( asprintf( &psz_tmp, "%s%c ", c,
2293                      k == p_node->i_children - 1 ? ' ' : '|' ) == -1 )
2294                 return;
2295             PlaylistAddNode( p_intf, p_child, i,
2296                              strlen( c ) ? psz_tmp : " " );
2297             free( psz_tmp );
2298         }
2299     }
2300 }
2301
2302 static int PlaylistChanged( vlc_object_t *p_this, const char *psz_variable,
2303                             vlc_value_t oval, vlc_value_t nval, void *param )
2304 {
2305     VLC_UNUSED(p_this); VLC_UNUSED(psz_variable);
2306     VLC_UNUSED(oval); VLC_UNUSED(nval);
2307     intf_thread_t *p_intf = (intf_thread_t *)param;
2308     playlist_t *p_playlist = pl_Hold( p_intf );
2309     p_intf->p_sys->b_need_update = true;
2310     p_intf->p_sys->p_node = playlist_CurrentPlayingItem(p_playlist) ? playlist_CurrentPlayingItem(p_playlist)->p_parent : NULL;
2311     pl_Release( p_intf );
2312     return VLC_SUCCESS;
2313 }
2314
2315 /* Playlist suxx */
2316 /* This function have to be called with the playlist locked */
2317 static inline bool PlaylistIsPlaying( playlist_t *p_playlist,
2318                                       playlist_item_t *p_item )
2319 {
2320     playlist_item_t *p_played_item = playlist_CurrentPlayingItem( p_playlist );
2321     return( p_item != NULL && p_played_item != NULL &&
2322             p_item->p_input != NULL && p_played_item->p_input != NULL &&
2323             p_item->p_input->i_id == p_played_item->p_input->i_id );
2324 }
2325
2326 static void FindIndex( intf_thread_t *p_intf, playlist_t *p_playlist )
2327 {
2328     intf_sys_t *p_sys = p_intf->p_sys;
2329     int i;
2330
2331     if( p_sys->i_box_plidx < p_sys->i_plist_entries && p_sys->i_box_plidx >= 0 )
2332     {
2333         playlist_item_t *p_item = p_sys->pp_plist[p_sys->i_box_plidx]->p_item;
2334         PL_LOCK;
2335         if( ( p_item->i_children == 0 && p_item == p_sys->p_node ) ||
2336                 PlaylistIsPlaying( p_playlist, p_item ) )
2337         {
2338             PL_UNLOCK;
2339             return;
2340         }
2341     }
2342
2343     for( i = 0; i < p_sys->i_plist_entries; i++ )
2344     {
2345         playlist_item_t *p_item = p_sys->pp_plist[i]->p_item;
2346         if( ( p_item->i_children == 0 && p_item == p_sys->p_node ) ||
2347                 PlaylistIsPlaying( p_playlist, p_sys->pp_plist[i]->p_item ) )
2348         {
2349             p_sys->i_box_plidx = i;
2350             break;
2351         }
2352     }
2353     PL_UNLOCK;
2354 }
2355
2356 static void PlaylistDestroy( intf_thread_t *p_intf )
2357 {
2358     intf_sys_t *p_sys = p_intf->p_sys;
2359
2360     while( p_sys->i_plist_entries )
2361     {
2362         struct pl_item_t *p_pl_item = p_sys->pp_plist[0];
2363         free( p_pl_item->psz_display );
2364         REMOVE_ELEM( p_sys->pp_plist, p_sys->i_plist_entries, 0 );
2365         free( p_pl_item );
2366     }
2367     p_sys->pp_plist = NULL;
2368 }
2369
2370 static void Eject( intf_thread_t *p_intf )
2371 {
2372     char *psz_device = NULL, *psz_parser, *psz_name;
2373
2374     /*
2375      * Get the active input
2376      * Determine whether we can eject a media, ie it's a DVD, VCD or CD-DA
2377      * If it's neither of these, then return
2378      */
2379
2380     playlist_t * p_playlist = pl_Hold( p_intf );
2381     PL_LOCK;
2382
2383     if( playlist_CurrentPlayingItem(p_playlist) == NULL )
2384     {
2385         PL_UNLOCK;
2386         pl_Release( p_intf );
2387         return;
2388     }
2389
2390     psz_name = playlist_CurrentPlayingItem(p_playlist)->p_input->psz_name;
2391
2392     if( psz_name )
2393     {
2394         if( !strncmp(psz_name, "dvd://", 6) )
2395         {
2396             switch( psz_name[6] )
2397             {
2398             case '\0':
2399             case '@':
2400                 psz_device = config_GetPsz( p_intf, "dvd" );
2401                 break;
2402             default:
2403                 /* Omit the first MRL-selector characters */
2404                 psz_device = strdup( psz_name + strlen("dvd://" ) );
2405                 break;
2406             }
2407         }
2408         else if( !strncmp(psz_name, VCD_MRL, strlen(VCD_MRL)) )
2409         {
2410             switch( psz_name[strlen(VCD_MRL)] )
2411             {
2412             case '\0':
2413             case '@':
2414                 psz_device = config_GetPsz( p_intf, VCD_MRL );
2415                 break;
2416             default:
2417                 /* Omit the beginning MRL-selector characters */
2418                 psz_device = strdup( psz_name + strlen(VCD_MRL) );
2419                 break;
2420             }
2421         }
2422         else if( !strncmp(psz_name, "cdda://", 7 ) )
2423         {
2424             switch( psz_name[7] )
2425             {
2426             case '\0':
2427             case '@':
2428                 psz_device = config_GetPsz( p_intf, "cd-audio" );
2429                 break;
2430             default:
2431                 /* Omit the beginning MRL-selector characters */
2432                 psz_device = strdup( psz_name + 7 );
2433                 break;
2434             }
2435         }
2436         else
2437         {
2438             psz_device = strdup( psz_name );
2439         }
2440     }
2441
2442     PL_UNLOCK;
2443
2444     if( psz_device == NULL )
2445     {
2446         pl_Release( p_intf );
2447         return;
2448     }
2449
2450     /* Remove what we have after @ */
2451     for( psz_parser = psz_device ; *psz_parser ; psz_parser++ )
2452     {
2453         if( *psz_parser == '@' )
2454         {
2455             *psz_parser = '\0';
2456             break;
2457         }
2458     }
2459
2460     /* If there's a stream playing, we aren't allowed to eject ! */
2461     if( p_intf->p_sys->p_input == NULL )
2462     {
2463         msg_Dbg( p_intf, "ejecting %s", psz_device );
2464
2465         intf_Eject( p_intf, psz_device );
2466     }
2467
2468     free( psz_device );
2469     pl_Release( p_intf );
2470     return;
2471 }
2472
2473 static int comp_dir_entries( const void *pp_dir_entry1,
2474                              const void *pp_dir_entry2 )
2475 {
2476     struct dir_entry_t *p_dir_entry1 = *(struct dir_entry_t**)pp_dir_entry1;
2477     struct dir_entry_t *p_dir_entry2 = *(struct dir_entry_t**)pp_dir_entry2;
2478     if ( p_dir_entry1->b_file == p_dir_entry2->b_file ) {
2479         return strcasecmp( p_dir_entry1->psz_path, p_dir_entry2->psz_path );
2480     }
2481     else
2482     {
2483         return ( p_dir_entry1->b_file ? 1 : -1 );
2484     }
2485 }
2486
2487 static void ReadDir( intf_thread_t *p_intf )
2488 {
2489     intf_sys_t *p_sys = p_intf->p_sys;
2490     DIR *p_current_dir;
2491     int i;
2492
2493     if( p_sys->psz_current_dir && *p_sys->psz_current_dir )
2494     {
2495         char *psz_entry;
2496
2497         /* Open the dir */
2498         p_current_dir = utf8_opendir( p_sys->psz_current_dir );
2499
2500         if( p_current_dir == NULL )
2501         {
2502             /* something went bad, get out of here ! */
2503             msg_Warn( p_intf, "cannot open directory `%s' (%m)",
2504                       p_sys->psz_current_dir );
2505             return;
2506         }
2507
2508         /* Clean the old shit */
2509         for( i = 0; i < p_sys->i_dir_entries; i++ )
2510         {
2511             struct dir_entry_t *p_dir_entry = p_sys->pp_dir_entries[i];
2512             free( p_dir_entry->psz_path );
2513             REMOVE_ELEM( p_sys->pp_dir_entries, p_sys->i_dir_entries, i );
2514             free( p_dir_entry );
2515         }
2516         p_sys->pp_dir_entries = NULL;
2517         p_sys->i_dir_entries = 0;
2518
2519         /* while we still have entries in the directory */
2520         while( ( psz_entry = utf8_readdir( p_current_dir ) ) != NULL )
2521         {
2522 #if defined( S_ISDIR )
2523             struct stat stat_data;
2524 #endif
2525             struct dir_entry_t *p_dir_entry;
2526             char *psz_uri;
2527
2528             if( p_sys->b_show_hidden_files == false &&
2529                 ( strlen( psz_entry ) && psz_entry[0] == '.' ) &&
2530                 strcmp( psz_entry, ".." ) )
2531             {
2532                 free( psz_entry );
2533                 continue;
2534             }
2535
2536             if( asprintf( &psz_uri, "%s/%s", p_sys->psz_current_dir,
2537                         psz_entry ) == -1)
2538             {
2539                 free( psz_entry );
2540                 continue;
2541             }
2542
2543             if( !( p_dir_entry = malloc( sizeof( struct dir_entry_t) ) ) )
2544             {
2545                 free( psz_uri );
2546                 free( psz_entry );
2547                 continue;
2548             }
2549
2550 #if defined( S_ISDIR )
2551             if( !utf8_stat( psz_uri, &stat_data )
2552              && S_ISDIR(stat_data.st_mode) )
2553 /*#elif defined( DT_DIR )
2554             if( p_dir_content->d_type & DT_DIR )*/
2555 #else
2556             if( 0 )
2557 #endif
2558             {
2559                 p_dir_entry->psz_path = strdup( psz_entry );
2560                 p_dir_entry->b_file = false;
2561                 INSERT_ELEM( p_sys->pp_dir_entries, p_sys->i_dir_entries,
2562                      p_sys->i_dir_entries, p_dir_entry );
2563             }
2564             else
2565             {
2566                 p_dir_entry->psz_path = strdup( psz_entry );
2567                 p_dir_entry->b_file = true;
2568                 INSERT_ELEM( p_sys->pp_dir_entries, p_sys->i_dir_entries,
2569                      p_sys->i_dir_entries, p_dir_entry );
2570             }
2571
2572             free( psz_uri );
2573             free( psz_entry );
2574         }
2575
2576         /* Sort */
2577         qsort( p_sys->pp_dir_entries, p_sys->i_dir_entries,
2578                sizeof(struct dir_entry_t*), &comp_dir_entries );
2579
2580         closedir( p_current_dir );
2581         return;
2582     }
2583     else
2584     {
2585         msg_Dbg( p_intf, "no current dir set" );
2586         return;
2587     }
2588 }
2589
2590 static void PlayPause( intf_thread_t *p_intf )
2591 {
2592     input_thread_t *p_input = p_intf->p_sys->p_input;
2593     playlist_t *p_playlist = pl_Hold( p_intf );
2594     vlc_value_t val;
2595
2596     if( p_input )
2597     {
2598         var_Get( p_input, "state", &val );
2599         if( val.i_int != PAUSE_S )
2600         {
2601             val.i_int = PAUSE_S;
2602         }
2603         else
2604         {
2605             val.i_int = PLAYING_S;
2606         }
2607         var_Set( p_input, "state", val );
2608     }
2609     else
2610         playlist_Play( p_playlist );
2611
2612     pl_Release( p_intf );
2613 }
2614
2615 /****************************************************************************
2616  *
2617  ****************************************************************************/
2618 static void DrawBox( WINDOW *win, int y, int x, int h, int w, const char *title, bool b_color )
2619 {
2620     int i;
2621     int i_len;
2622
2623     if( w > 3 && h > 2 )
2624     {
2625         if( b_color )
2626             wcolor_set( win, C_BOX, NULL );
2627         if( title == NULL ) title = "";
2628         i_len = strlen( title );
2629
2630         if( i_len > w - 2 ) i_len = w - 2;
2631
2632         mvwaddch( win, y, x,    ACS_ULCORNER );
2633         mvwhline( win, y, x+1,  ACS_HLINE, ( w-i_len-2)/2 );
2634         mvwprintw( win,y, x+1+(w-i_len-2)/2, "%s", title );
2635         mvwhline( win, y, x+(w-i_len)/2+i_len,  ACS_HLINE, w - 1 - ((w-i_len)/2+i_len) );
2636         mvwaddch( win, y, x+w-1,ACS_URCORNER );
2637
2638         for( i = 0; i < h-2; i++ )
2639         {
2640             mvwaddch( win, y+i+1, x,     ACS_VLINE );
2641             mvwaddch( win, y+i+1, x+w-1, ACS_VLINE );
2642         }
2643
2644         mvwaddch( win, y+h-1, x,     ACS_LLCORNER );
2645         mvwhline( win, y+h-1, x+1,   ACS_HLINE, w - 2 );
2646         mvwaddch( win, y+h-1, x+w-1, ACS_LRCORNER );
2647         if( b_color )
2648             wcolor_set( win, C_DEFAULT, NULL );
2649     }
2650 }
2651
2652 static void DrawEmptyLine( WINDOW *win, int y, int x, int w )
2653 {
2654     if( w > 0 )
2655     {
2656         mvwhline( win, y, x, ' ', w );
2657     }
2658 }
2659
2660 static void DrawLine( WINDOW *win, int y, int x, int w )
2661 {
2662     if( w > 0 )
2663     {
2664         attrset( A_REVERSE );
2665         mvwhline( win, y, x, ' ', w );
2666         attroff( A_REVERSE );
2667     }
2668 }