]> git.sesse.net Git - vlc/blob - modules/gui/ncurses.c
svn merge -r 11182:11183 branches/0.8.2 trunk
[vlc] / modules / gui / ncurses.c
1 /*****************************************************************************
2  * ncurses.c : NCurses plugin for vlc
3  *****************************************************************************
4  * Copyright (C) 2001-2004 VideoLAN
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  *
12  * This program is free software; you can redistribute it and/or modify
13  * it under the terms of the GNU General Public License as published by
14  * the Free Software Foundation; either version 2 of the License, or
15  * (at your option) any later version.
16  *
17  * This program is distributed in the hope that it will be useful,
18  * but WITHOUT ANY WARRANTY; without even the implied warranty of
19  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20  * GNU General Public License for more details.
21  *
22  * You should have received a copy of the GNU General Public License
23  * along with this program; if not, write to the Free Software
24  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
25  *****************************************************************************/
26
27 /*****************************************************************************
28  * Preamble
29  *****************************************************************************/
30 #include <stdlib.h>                                      /* malloc(), free() */
31 #include <string.h>
32 #include <errno.h>                                                 /* ENOMEM */
33 #include <stdio.h>
34 #include <time.h>
35
36 #include <curses.h>
37
38 #include <vlc/vlc.h>
39 #include <vlc/intf.h>
40 #include <vlc/vout.h>
41 #include <vlc/aout.h>
42
43 #ifdef HAVE_SYS_STAT_H
44 #   include <sys/stat.h>
45 #endif
46 #if (!defined( WIN32 ) || defined(__MINGW32__))
47 /* Mingw has its own version of dirent */
48 #   include <dirent.h>
49 #endif
50
51 #ifdef HAVE_CDDAX
52 #define CDDA_MRL "cddax://"
53 #else
54 #define CDDA_MRL "cdda://"
55 #endif
56
57 #ifdef HAVE_VCDX
58 #define VCD_MRL "vcdx://"
59 #else
60 #define VCD_MRL "vcdx://"
61 #endif
62
63 #define SEARCH_CHAIN_SIZE 20
64 #define OPEN_CHAIN_SIZE 50
65
66 /*****************************************************************************
67  * Local prototypes.
68  *****************************************************************************/
69 static int  Open           ( vlc_object_t * );
70 static void Close          ( vlc_object_t * );
71
72 static void Run            ( intf_thread_t * );
73 static void PlayPause      ( intf_thread_t * );
74 static void Eject          ( intf_thread_t * );
75
76 static int  HandleKey      ( intf_thread_t *, int );
77 static void Redraw         ( intf_thread_t *, time_t * );
78 static void PlaylistRebuild( intf_thread_t * );
79 static void PlaylistAddNode( intf_thread_t *, playlist_item_t *, int, char *);
80 static void PlaylistDestroy( intf_thread_t * );
81 static int  PlaylistChanged( vlc_object_t *, const char *, vlc_value_t,
82                              vlc_value_t, void * );
83 static void FindIndex      ( intf_thread_t * );
84 static void SearchPlaylist ( intf_thread_t *, char * );
85 static int  SubSearchPlaylist( intf_thread_t *, char *, int, int );
86 static void ManageSlider   ( intf_thread_t * );
87 static void ReadDir        ( intf_thread_t * );
88
89 /*****************************************************************************
90  * Module descriptor
91  *****************************************************************************/
92
93 #define BROWSE_TEXT N_("Filebrowser starting point")
94 #define BROWSE_LONGTEXT N_( \
95     "This option allows you to specify the directory the ncurses filebrowser " \
96     "will show you initially.")
97
98 vlc_module_begin();
99     set_shortname( "Ncurses" );
100     set_description( _("Ncurses interface") );
101     set_capability( "interface", 10 );
102     set_category( CAT_INTERFACE );
103     set_subcategory( SUBCAT_INTERFACE_GENERAL );
104     set_callbacks( Open, Close );
105     add_shortcut( "curses" );
106     add_directory( "browse-dir", NULL, NULL, BROWSE_TEXT, BROWSE_LONGTEXT, VLC_FALSE );
107 vlc_module_end();
108
109 /*****************************************************************************
110  * intf_sys_t: description and status of ncurses interface
111  *****************************************************************************/
112 enum
113 {
114     BOX_NONE,
115     BOX_HELP,
116     BOX_INFO,
117     BOX_LOG,
118     BOX_PLAYLIST,
119     BOX_SEARCH,
120     BOX_OPEN,
121     BOX_BROWSE
122 };
123 struct dir_entry_t
124 {
125     vlc_bool_t  b_file;
126     char        *psz_path;
127 };
128 struct pl_item_t
129 {
130     playlist_item_t *p_item;
131     char            *psz_display;
132 };
133 struct intf_sys_t
134 {
135     playlist_t     *p_playlist;
136     input_thread_t *p_input;
137
138     float           f_slider;
139     float           f_slider_old;
140
141     WINDOW          *w;
142
143     int             i_box_type;
144     int             i_box_y;
145     int             i_box_lines;
146     int             i_box_lines_total;
147     int             i_box_start;
148
149     int             i_box_plidx;    /* Playlist index */
150     int             b_box_plidx_follow;
151     playlist_item_t *p_plnode;      /* Playlist node */
152     int             i_box_bidx;     /* browser index */
153
154     int             b_box_cleared;
155
156     msg_subscription_t* p_sub;                  /* message bank subscription */
157
158     char            *psz_search_chain;          /* for playlist searching    */
159     char            *psz_old_search;            /* for searching next        */
160     int             i_before_search;
161
162     char            *psz_open_chain;
163
164     char            *psz_current_dir;
165     int             i_dir_entries;
166     struct dir_entry_t  **pp_dir_entries;
167
168     int             i_current_view;             /* playlist view             */
169     struct pl_item_t    **pp_plist;
170     int             i_plist_entries;
171     vlc_bool_t      b_need_update;              /* for playlist view */
172 };
173
174 static void DrawBox( WINDOW *win, int y, int x, int h, int w, char *title );
175 static void DrawLine( WINDOW *win, int y, int x, int w );
176 static void DrawEmptyLine( WINDOW *win, int y, int x, int w );
177
178 /*****************************************************************************
179  * Open: initialize and create window
180  *****************************************************************************/
181 static int Open( vlc_object_t *p_this )
182 {
183     intf_thread_t *p_intf = (intf_thread_t *)p_this;
184     intf_sys_t    *p_sys;
185     vlc_value_t    val;
186
187     /* Allocate instance and initialize some members */
188     p_sys = p_intf->p_sys = malloc( sizeof( intf_sys_t ) );
189     p_sys->p_playlist = NULL;
190     p_sys->p_input = NULL;
191     p_sys->f_slider = 0.0;
192     p_sys->f_slider_old = 0.0;
193     p_sys->i_box_type = BOX_PLAYLIST;
194     p_sys->i_box_lines = 0;
195     p_sys->i_box_start= 0;
196     p_sys->i_box_lines_total = 0;
197     p_sys->b_box_plidx_follow = VLC_TRUE;
198     p_sys->b_box_cleared = VLC_FALSE;
199     p_sys->i_box_plidx = 0;
200     p_sys->p_plnode = NULL;
201     p_sys->i_box_bidx = 0;
202     p_sys->p_sub = msg_Subscribe( p_intf );
203
204     /* Initialize the curses library */
205     p_sys->w = initscr();
206     keypad( p_sys->w, TRUE );
207     /* Don't do NL -> CR/NL */
208     nonl();
209     /* Take input chars one at a time */
210     cbreak();
211     /* Don't echo */
212     noecho();
213
214     curs_set(0);
215     timeout(0);
216
217     clear();
218
219     /* exported function */
220     p_intf->pf_run = Run;
221
222     /* Set quiet mode */
223     val.i_int = -1;
224     var_Set( p_intf->p_vlc, "verbose", val );
225
226     /* Set defaul playlist view */
227     p_sys->i_current_view = VIEW_CATEGORY;
228     p_sys->pp_plist = NULL;
229     p_sys->i_plist_entries = 0;
230     p_sys->b_need_update = VLC_FALSE;
231
232     /* Initialize search chain */
233     p_sys->psz_search_chain = (char *)malloc( SEARCH_CHAIN_SIZE + 1 );
234     p_sys->psz_old_search = NULL;
235     p_sys->i_before_search = 0;
236
237     /* Initialize open chain */
238     p_sys->psz_open_chain = (char *)malloc( OPEN_CHAIN_SIZE + 1 );
239
240     /* Initialize browser options */
241     var_Create( p_intf, "browse-dir", VLC_VAR_STRING | VLC_VAR_DOINHERIT );
242     var_Get( p_intf, "browse-dir", &val);
243
244     if( val.psz_string && *val.psz_string )
245     {
246         p_sys->psz_current_dir = strdup( val.psz_string);
247         free( val.psz_string );
248     }
249     else
250     {
251         p_sys->psz_current_dir = strdup( p_intf->p_vlc->psz_homedir );
252     }
253
254     p_sys->i_dir_entries = 0;
255     p_sys->pp_dir_entries = NULL;
256     ReadDir( p_intf );
257
258     return VLC_SUCCESS;
259 }
260
261 /*****************************************************************************
262  * Close: destroy interface window
263  *****************************************************************************/
264 static void Close( vlc_object_t *p_this )
265 {
266     intf_thread_t *p_intf = (intf_thread_t *)p_this;
267     intf_sys_t    *p_sys = p_intf->p_sys;
268     int i;
269
270     var_DelCallback( p_sys->p_playlist, "intf-change", PlaylistChanged,
271                      p_intf );
272     var_DelCallback( p_sys->p_playlist, "item-append", PlaylistChanged,
273                      p_intf );
274
275     PlaylistDestroy( p_intf );
276
277     for( i = 0; i < p_sys->i_dir_entries; i++ )
278     {
279         struct dir_entry_t *p_dir_entry = p_sys->pp_dir_entries[i];
280         if( p_dir_entry->psz_path ) free( p_dir_entry->psz_path );
281         REMOVE_ELEM( p_sys->pp_dir_entries, p_sys->i_dir_entries, i );
282         if( p_dir_entry ) free( p_dir_entry );
283     }
284     p_sys->pp_dir_entries = NULL;
285
286     if( p_sys->psz_current_dir ) free( p_sys->psz_current_dir );
287     if( p_sys->psz_search_chain ) free( p_sys->psz_search_chain );
288     if( p_sys->psz_old_search ) free( p_sys->psz_old_search );
289     if( p_sys->psz_open_chain ) free( p_sys->psz_open_chain );
290
291     if( p_sys->p_input )
292     {
293         vlc_object_release( p_sys->p_input );
294     }
295     if( p_sys->p_playlist )
296     {
297         vlc_object_release( p_sys->p_playlist );
298     }
299
300     /* Close the ncurses interface */
301     endwin();
302
303     msg_Unsubscribe( p_intf, p_sys->p_sub );
304
305     /* Destroy structure */
306     free( p_sys );
307 }
308
309 /*****************************************************************************
310  * Run: ncurses thread
311  *****************************************************************************/
312 static void Run( intf_thread_t *p_intf )
313 {
314     intf_sys_t    *p_sys = p_intf->p_sys;
315
316     int i_key;
317     time_t t_last_refresh;
318
319     /*
320      * force drawing the interface for the first time
321      */
322     t_last_refresh = ( time( 0 ) - 1);
323
324     while( !p_intf->b_die )
325     {
326         msleep( INTF_IDLE_SLEEP );
327
328         /* Update the input */
329         if( p_sys->p_playlist == NULL )
330         {
331             p_sys->p_playlist = vlc_object_find( p_intf, VLC_OBJECT_PLAYLIST,
332                                                  FIND_ANYWHERE );
333             if( p_sys->p_playlist )
334             {
335                 var_AddCallback( p_sys->p_playlist, "intf-change",
336                                  PlaylistChanged, p_intf );
337                 var_AddCallback( p_sys->p_playlist, "item-append",
338                                  PlaylistChanged, p_intf );
339             }
340         }
341         if( p_sys->p_playlist )
342         {
343             vlc_mutex_lock( &p_sys->p_playlist->object_lock );
344             if( p_sys->p_input == NULL )
345             {
346                 p_sys->p_input = p_sys->p_playlist->p_input;
347                 if( p_sys->p_input )
348                 {
349                     if( !p_sys->p_input->b_dead )
350                     {
351                         vlc_object_yield( p_sys->p_input );
352                     }
353                 }
354             }
355             else if( p_sys->p_input->b_dead )
356             {
357                 vlc_object_release( p_sys->p_input );
358                 p_sys->p_input = NULL;
359                 p_sys->f_slider = p_sys->f_slider_old = 0.0;
360                 p_sys->b_box_cleared = VLC_FALSE;
361             }
362             vlc_mutex_unlock( &p_sys->p_playlist->object_lock );
363         }
364
365         if( p_sys->b_box_plidx_follow && p_sys->p_playlist->i_index >= 0 )
366         {
367             FindIndex( p_intf );
368         }
369
370         while( ( i_key = getch()) != -1 )
371         {
372             /*
373              * HandleKey returns 1 if the screen needs to be redrawn
374              */
375             if( HandleKey( p_intf, i_key ) )
376             {
377                 Redraw( p_intf, &t_last_refresh );
378             }
379         }
380         /* Hack */
381         if( p_sys->f_slider > 0.0001 && !p_sys->b_box_cleared )
382         {
383             clear();
384             Redraw( p_intf, &t_last_refresh );
385             p_sys->b_box_cleared = VLC_TRUE;
386         }
387
388         /*
389          * redraw the screen every second
390          */
391         if( (time(0) - t_last_refresh) >= 1 )
392         {
393             ManageSlider( p_intf );
394             Redraw( p_intf, &t_last_refresh );
395         }
396     }
397 }
398
399 /* following functions are local */
400
401 static int HandleKey( intf_thread_t *p_intf, int i_key )
402 {
403     intf_sys_t *p_sys = p_intf->p_sys;
404     vlc_value_t val;
405
406     if( p_sys->i_box_type == BOX_PLAYLIST && p_sys->p_playlist )
407     {
408         int b_ret = VLC_TRUE;
409
410         switch( i_key )
411         {
412             vlc_value_t val;
413             /* Playlist Settings */
414             case 'r':
415                 var_Get( p_sys->p_playlist, "random", &val );
416                 val.b_bool = !val.b_bool;
417                 var_Set( p_sys->p_playlist, "random", val );
418                 return 1;
419             case 'l':
420                 var_Get( p_sys->p_playlist, "loop", &val );
421                 val.b_bool = !val.b_bool;
422                 var_Set( p_sys->p_playlist, "loop", val );
423                 return 1;
424             case 'R':
425                 var_Get( p_sys->p_playlist, "repeat", &val );
426                 val.b_bool = !val.b_bool;
427                 var_Set( p_sys->p_playlist, "repeat", val );
428                 return 1;
429
430             /* Playlist sort */
431             case 'o':
432                 playlist_Sort( p_sys->p_playlist, SORT_TITLE, ORDER_NORMAL );
433                 return 1;
434             case 'O':
435                 playlist_Sort( p_sys->p_playlist, SORT_TITLE, ORDER_REVERSE );
436                 return 1;
437
438             /* Playlist view */
439             case 'v':
440                 switch( p_sys->i_current_view )
441                 {
442                     case VIEW_CATEGORY:
443                         p_sys->i_current_view = VIEW_ALL;
444                         break;
445                     default:
446                         p_sys->i_current_view = VIEW_CATEGORY;
447                 }
448                 PlaylistRebuild( p_intf );
449                 FindIndex( p_intf );
450                 return 1;
451
452             /* Playlist navigation */
453             case KEY_HOME:
454                 p_sys->i_box_plidx = 0;
455                 break;
456             case KEY_END:
457                 p_sys->i_box_plidx = p_sys->p_playlist->i_size - 1;
458                 break;
459             case KEY_UP:
460                 p_sys->i_box_plidx--;
461                 break;
462             case KEY_DOWN:
463                 p_sys->i_box_plidx++;
464                 break;
465             case KEY_PPAGE:
466                 p_sys->i_box_plidx -= p_sys->i_box_lines;
467                 break;
468             case KEY_NPAGE:
469                 p_sys->i_box_plidx += p_sys->i_box_lines;
470                 break;
471             case 'D':
472             case KEY_BACKSPACE:
473             case KEY_DC:
474             {
475                 int i_item = p_sys->p_playlist->i_index;
476
477                 playlist_LockDelete( p_sys->p_playlist, p_sys->i_box_plidx );
478                 if( i_item < p_sys->p_playlist->i_size &&
479                     i_item != p_sys->p_playlist->i_index )
480                 {
481                     playlist_Goto( p_sys->p_playlist, i_item );
482                 }
483                 break;
484             }
485
486             case KEY_ENTER:
487             case 0x0d:
488                 if( p_sys->i_current_view == VIEW_ALL )
489                 {
490                     playlist_Goto( p_sys->p_playlist, p_sys->i_box_plidx );
491                 }
492                 else
493                 {
494                     if( p_sys->pp_plist[p_sys->i_box_plidx]->p_item->i_children
495                                 == -1 )
496                     {
497                         playlist_Control( p_sys->p_playlist, PLAYLIST_ITEMPLAY,
498                             p_sys->pp_plist[p_sys->i_box_plidx]->p_item );
499                     }
500                     else
501                     {
502                         playlist_Control( p_sys->p_playlist, PLAYLIST_VIEWPLAY,
503                             p_sys->i_current_view,
504                             p_sys->pp_plist[p_sys->i_box_plidx]->p_item,
505                             NULL );
506                     }
507                 }
508                 p_sys->b_box_plidx_follow = VLC_TRUE;
509                 break;
510             default:
511                 b_ret = VLC_FALSE;
512                 break;
513         }
514
515         if( b_ret )
516         {
517             int i_max = p_sys->i_plist_entries;
518             if( p_sys->i_current_view == VIEW_ALL )
519                 i_max = p_sys->p_playlist->i_size;
520             if( p_sys->i_box_plidx >= i_max ) p_sys->i_box_plidx = i_max - 1;
521             if( p_sys->i_box_plidx < 0 ) p_sys->i_box_plidx = 0;
522             if( p_sys->i_current_view == VIEW_ALL )
523             {
524                 if( p_sys->i_box_plidx == p_sys->p_playlist->i_index )
525                     p_sys->b_box_plidx_follow = VLC_TRUE;
526                 else
527                     p_sys->b_box_plidx_follow = VLC_FALSE;
528             }
529             else
530             {
531                 if( p_sys->pp_plist[p_sys->i_box_plidx]->p_item ==
532                         p_sys->p_playlist->status.p_item )
533                     p_sys->b_box_plidx_follow = VLC_TRUE;
534                 else
535                     p_sys->b_box_plidx_follow = VLC_FALSE;
536             }
537             return 1;
538         }
539     }
540     if( p_sys->i_box_type == BOX_BROWSE )
541     {
542         vlc_bool_t b_ret = VLC_TRUE;
543         /* Browser navigation */
544         switch( i_key )
545         {
546             case KEY_HOME:
547                 p_sys->i_box_bidx = 0;
548                 break;
549             case KEY_END:
550                 p_sys->i_box_bidx = p_sys->i_dir_entries - 1;
551                 break;
552             case KEY_UP:
553                 p_sys->i_box_bidx--;
554                 break;
555             case KEY_DOWN:
556                 p_sys->i_box_bidx++;
557                 break;
558             case KEY_PPAGE:
559                 p_sys->i_box_bidx -= p_sys->i_box_lines;
560                 break;
561             case KEY_NPAGE:
562                 p_sys->i_box_bidx += p_sys->i_box_lines;
563                 break;
564
565             case KEY_ENTER:
566             case 0x0d:
567                 if( p_sys->pp_dir_entries[p_sys->i_box_bidx]->b_file )
568                 {
569                     int i_size_entry = strlen( p_sys->psz_current_dir ) +
570                                        strlen( p_sys->pp_dir_entries[p_sys->i_box_bidx]->psz_path ) + 2;
571                     char *psz_uri = (char *)malloc( sizeof(char)*i_size_entry);
572
573                     sprintf( psz_uri, "%s/%s", p_sys->psz_current_dir, p_sys->pp_dir_entries[p_sys->i_box_bidx]->psz_path );
574                     playlist_Add( p_sys->p_playlist, psz_uri,
575                                   psz_uri,
576                                   PLAYLIST_APPEND, PLAYLIST_END );
577                     p_sys->i_box_type = BOX_PLAYLIST;
578                     free( psz_uri );
579                 }
580                 else
581                 {
582                     int i_size_entry = strlen( p_sys->psz_current_dir ) +
583                                        strlen( p_sys->pp_dir_entries[p_sys->i_box_bidx]->psz_path ) + 2;
584                     char *psz_uri = (char *)malloc( sizeof(char)*i_size_entry);
585
586                     sprintf( psz_uri, "%s/%s", p_sys->psz_current_dir, p_sys->pp_dir_entries[p_sys->i_box_bidx]->psz_path );
587
588                     p_sys->psz_current_dir = strdup( psz_uri );
589                     ReadDir( p_intf );
590                     free( psz_uri );
591                 }
592                 break;
593             default:
594                 b_ret = VLC_FALSE;
595                 break;
596         }
597         if( b_ret )
598         {
599             if( p_sys->i_box_bidx >= p_sys->i_dir_entries ) p_sys->i_box_bidx = p_sys->i_dir_entries - 1;
600             if( p_sys->i_box_bidx < 0 ) p_sys->i_box_bidx = 0;
601             return 1;
602         }
603     }
604     else if( p_sys->i_box_type == BOX_HELP || p_sys->i_box_type == BOX_INFO )
605     {
606         switch( i_key )
607         {
608             case KEY_HOME:
609                 p_sys->i_box_start = 0;
610                 return 1;
611             case KEY_END:
612                 p_sys->i_box_start = p_sys->i_box_lines_total - 1;
613                 return 1;
614             case KEY_UP:
615                 if( p_sys->i_box_start > 0 ) p_sys->i_box_start--;
616                 return 1;
617             case KEY_DOWN:
618                 if( p_sys->i_box_start < p_sys->i_box_lines_total - 1 )
619                 {
620                     p_sys->i_box_start++;
621                 }
622                 return 1;
623             case KEY_PPAGE:
624                 p_sys->i_box_start -= p_sys->i_box_lines;
625                 if( p_sys->i_box_start < 0 ) p_sys->i_box_start = 0;
626                 return 1;
627             case KEY_NPAGE:
628                 p_sys->i_box_start += p_sys->i_box_lines;
629                 if( p_sys->i_box_start >= p_sys->i_box_lines_total )
630                 {
631                     p_sys->i_box_start = p_sys->i_box_lines_total - 1;
632                 }
633                 return 1;
634             default:
635                 break;
636         }
637     }
638     else if( p_sys->i_box_type == BOX_NONE )
639     {
640         switch( i_key )
641         {
642             case KEY_HOME:
643                 p_sys->f_slider = 0;
644                 ManageSlider( p_intf );
645                 return 1;
646             case KEY_END:
647                 p_sys->f_slider = 99.9;
648                 ManageSlider( p_intf );
649                 return 1;
650             case KEY_UP:
651                 p_sys->f_slider += 5.0;
652                 if( p_sys->f_slider >= 99.0 ) p_sys->f_slider = 99.0;
653                 ManageSlider( p_intf );
654                 return 1;
655             case KEY_DOWN:
656                 p_sys->f_slider -= 5.0;
657                 if( p_sys->f_slider < 0.0 ) p_sys->f_slider = 0.0;
658                 ManageSlider( p_intf );
659                 return 1;
660
661             default:
662                 break;
663         }
664     }
665     else if( p_sys->i_box_type == BOX_SEARCH && p_sys->psz_search_chain )
666     {
667         int i_chain_len;
668         i_chain_len = strlen( p_sys->psz_search_chain );
669         switch( i_key )
670         {
671             case 0x0c:      /* ^l */
672                 clear();
673                 return 1;
674             case KEY_ENTER:
675             case 0x0d:
676                 if( i_chain_len > 0 )
677                 {
678                     p_sys->psz_old_search = strdup( p_sys->psz_search_chain );
679                 }
680                 else if( p_sys->psz_old_search )
681                 {
682                     SearchPlaylist( p_intf, p_sys->psz_old_search );
683                 }
684                 p_sys->i_box_type = BOX_PLAYLIST;
685                 return 1;
686             case 0x1b:      /* Esc. */
687                 p_sys->i_box_plidx = p_sys->i_before_search;
688                 p_sys->i_box_type = BOX_PLAYLIST;
689                 return 1;
690             case KEY_BACKSPACE:
691                 if( i_chain_len > 0 )
692                 {
693                     p_sys->psz_search_chain[ i_chain_len - 1 ] = '\0';
694                 }
695                 break;
696             default:
697                 if( i_chain_len < SEARCH_CHAIN_SIZE )
698                 {
699                     p_sys->psz_search_chain[ i_chain_len++ ] = i_key;
700                     p_sys->psz_search_chain[ i_chain_len ] = 0;
701                 }
702                 break;
703         }
704         if( p_sys->psz_old_search )
705         {
706             free( p_sys->psz_old_search );
707             p_sys->psz_old_search = NULL;
708         }
709         SearchPlaylist( p_intf, p_sys->psz_search_chain );
710         return 1;
711     }
712     else if( p_sys->i_box_type == BOX_OPEN && p_sys->psz_open_chain )
713     {
714         int i_chain_len = strlen( p_sys->psz_open_chain );
715         playlist_t *p_playlist = p_sys->p_playlist;
716
717         switch( i_key )
718         {
719             case 0x0c:      /* ^l */
720                 clear();
721                 return 1;
722             case KEY_ENTER:
723             case 0x0d:
724                 if( p_playlist && i_chain_len > 0 )
725                 {
726                     playlist_Add( p_playlist, p_sys->psz_open_chain,
727                                   p_sys->psz_open_chain,
728                                   PLAYLIST_GO|PLAYLIST_APPEND, PLAYLIST_END );
729                     p_sys->b_box_plidx_follow = VLC_TRUE;
730                 }
731                 p_sys->i_box_type = BOX_PLAYLIST;
732                 return 1;
733             case 0x1b:      /* Esc. */
734                 p_sys->i_box_type = BOX_PLAYLIST;
735                 return 1;
736             case KEY_BACKSPACE:
737                 if( i_chain_len > 0 )
738                 {
739                     p_sys->psz_open_chain[ i_chain_len - 1 ] = '\0';
740                 }
741                 break;
742             default:
743                 if( i_chain_len < OPEN_CHAIN_SIZE )
744                 {
745                     p_sys->psz_open_chain[ i_chain_len++ ] = i_key;
746                     p_sys->psz_open_chain[ i_chain_len ] = 0;
747                 }
748                 break;
749         }
750         return 1;
751     }
752
753
754     /* Common keys */
755     switch( i_key )
756     {
757         case 'q':
758         case 'Q':
759         case 0x1b:  /* Esc */
760             p_intf->p_vlc->b_die = VLC_TRUE;
761             return 0;
762
763         /* Box switching */
764         case 'i':
765             if( p_sys->i_box_type == BOX_INFO )
766                 p_sys->i_box_type = BOX_NONE;
767             else
768                 p_sys->i_box_type = BOX_INFO;
769             p_sys->i_box_lines_total = 0;
770             return 1;
771         case 'L':
772             if( p_sys->i_box_type == BOX_LOG )
773                 p_sys->i_box_type = BOX_NONE;
774             else
775                 p_sys->i_box_type = BOX_LOG;
776             return 1;
777         case 'P':
778             if( p_sys->i_box_type == BOX_PLAYLIST )
779                 p_sys->i_box_type = BOX_NONE;
780             else
781                 p_sys->i_box_type = BOX_PLAYLIST;
782             return 1;
783         case 'B':
784             if( p_sys->i_box_type == BOX_BROWSE )
785                 p_sys->i_box_type = BOX_NONE;
786             else
787                 p_sys->i_box_type = BOX_BROWSE;
788             return 1;
789         case 'h':
790         case 'H':
791             if( p_sys->i_box_type == BOX_HELP )
792                 p_sys->i_box_type = BOX_NONE;
793             else
794                 p_sys->i_box_type = BOX_HELP;
795             p_sys->i_box_lines_total = 0;
796             return 1;
797         case '/':
798             if( p_sys->i_box_type != BOX_SEARCH )
799             {
800                 if( p_sys->psz_search_chain == NULL )
801                 {
802                     return 1;
803                 }
804                 p_sys->psz_search_chain[0] = '\0';
805                 p_sys->b_box_plidx_follow = VLC_FALSE;
806                 p_sys->i_before_search = p_sys->i_box_plidx;
807                 p_sys->i_box_type = BOX_SEARCH;
808             }
809             return 1;
810         case 'A': /* Open */
811             if( p_sys->i_box_type != BOX_OPEN )
812             {
813                 if( p_sys->psz_open_chain == NULL )
814                 {
815                     return 1;
816                 }
817                 p_sys->psz_open_chain[0] = '\0';
818                 p_sys->i_box_type = BOX_OPEN;
819             }
820             return 1;
821
822         /* Navigation */
823         case KEY_RIGHT:
824             p_sys->f_slider += 1.0;
825             if( p_sys->f_slider > 99.9 ) p_sys->f_slider = 99.9;
826             ManageSlider( p_intf );
827             return 1;
828
829         case KEY_LEFT:
830             p_sys->f_slider -= 1.0;
831             if( p_sys->f_slider < 0.0 ) p_sys->f_slider = 0.0;
832             ManageSlider( p_intf );
833             return 1;
834
835         /* Common control */
836         case 'f':
837         {
838             if( p_intf->p_sys->p_input )
839             {
840                 vout_thread_t *p_vout;
841                 p_vout = vlc_object_find( p_intf->p_sys->p_input,
842                                           VLC_OBJECT_VOUT, FIND_CHILD );
843                 if( p_vout )
844                 {
845                     var_Get( p_vout, "fullscreen", &val );
846                     val.b_bool = !val.b_bool;
847                     var_Set( p_vout, "fullscreen", val );
848                     vlc_object_release( p_vout );
849                 }
850                 else
851                 {
852                     playlist_t *p_playlist;
853                     p_playlist = vlc_object_find( p_intf, VLC_OBJECT_PLAYLIST,
854                                                   FIND_ANYWHERE );
855                     if( p_playlist )
856                     {
857                         var_Get( p_playlist, "fullscreen", &val );
858                         val.b_bool = !val.b_bool;
859                         var_Set( p_playlist, "fullscreen", val );
860                         vlc_object_release( p_playlist );
861                     }
862                 }
863             }
864             return 0;
865         }
866
867         case ' ':
868             PlayPause( p_intf );
869             return 1;
870
871         case 's':
872             if( p_intf->p_sys->p_playlist )
873             {
874                 playlist_Stop( p_intf->p_sys->p_playlist );
875             }
876             return 1;
877
878         case 'e':
879             Eject( p_intf );
880             return 1;
881
882         case '[':
883             if( p_sys->p_input )
884             {
885                 val.b_bool = VLC_TRUE;
886                 var_Set( p_sys->p_input, "prev-title", val );
887             }
888             return 1;
889
890         case ']':
891             if( p_sys->p_input )
892             {
893                 val.b_bool = VLC_TRUE;
894                 var_Set( p_sys->p_input, "next-title", val );
895             }
896             return 1;
897
898         case '<':
899             if( p_sys->p_input )
900             {
901                 val.b_bool = VLC_TRUE;
902                 var_Set( p_sys->p_input, "prev-chapter", val );
903             }
904             return 1;
905
906         case '>':
907             if( p_sys->p_input )
908             {
909                 val.b_bool = VLC_TRUE;
910                 var_Set( p_sys->p_input, "next-chapter", val );
911             }
912             return 1;
913
914         case 'p':
915             if( p_intf->p_sys->p_playlist )
916             {
917                 playlist_Prev( p_intf->p_sys->p_playlist );
918             }
919             clear();
920             return 1;
921
922         case 'n':
923             if( p_intf->p_sys->p_playlist )
924             {
925                 playlist_Next( p_intf->p_sys->p_playlist );
926             }
927             clear();
928             return 1;
929
930         case 'a':
931             aout_VolumeUp( p_intf, 1, NULL );
932             clear();
933             return 1;
934
935         case 'z':
936             aout_VolumeDown( p_intf, 1, NULL );
937             clear();
938             return 1;
939
940         /*
941          * ^l should clear and redraw the screen
942          */
943         case 0x0c:
944             clear();
945             return 1;
946
947         default:
948             return 0;
949     }
950 }
951
952 static void ManageSlider( intf_thread_t *p_intf )
953 {
954     intf_sys_t     *p_sys = p_intf->p_sys;
955     input_thread_t *p_input = p_sys->p_input;
956     vlc_value_t     val;
957
958     if( p_input == NULL )
959     {
960         return;
961     }
962     var_Get( p_input, "state", &val );
963     if( val.i_int != PLAYING_S )
964     {
965         return;
966     }
967
968     var_Get( p_input, "position", &val );
969     if( p_sys->f_slider == p_sys->f_slider_old )
970     {
971         p_sys->f_slider =
972         p_sys->f_slider_old = 100 * val.f_float;
973     }
974     else
975     {
976         p_sys->f_slider_old = p_sys->f_slider;
977
978         val.f_float = p_sys->f_slider / 100.0;
979         var_Set( p_input, "position", val );
980     }
981 }
982
983 static void SearchPlaylist( intf_thread_t *p_intf, char *psz_searchstring )
984 {
985     int i_max;
986     int i_first = 0 ;
987     int i_item = -1;
988     intf_sys_t *p_sys = p_intf->p_sys;
989     playlist_t *p_playlist = p_sys->p_playlist;
990
991     if( p_sys->i_before_search >= 0 )
992     {
993         i_first = p_sys->i_before_search;
994     }
995
996     if( ( ! psz_searchstring ) ||  strlen( psz_searchstring ) <= 0 )
997     {
998         p_sys->i_box_plidx = p_sys->i_before_search;
999         return;
1000     }
1001
1002     i_max = p_sys->i_current_view == VIEW_ALL ?
1003                 p_playlist->i_size : p_sys->i_plist_entries;
1004
1005     i_item = SubSearchPlaylist( p_intf, psz_searchstring, i_first + 1, i_max );
1006     if( i_item < 0 )
1007     {
1008         i_item = SubSearchPlaylist( p_intf, psz_searchstring, 0, i_first );
1009     }
1010
1011     if( i_item < 0 || i_item >= i_max ) return;
1012
1013     p_sys->i_box_plidx = i_item;
1014 }
1015
1016 static int SubSearchPlaylist( intf_thread_t *p_intf, char *psz_searchstring,
1017                               int i_start, int i_stop )
1018 {
1019     intf_sys_t *p_sys = p_intf->p_sys;
1020     playlist_t *p_playlist = p_sys->p_playlist;
1021     int i, i_item = -1;
1022
1023     if( p_sys->i_current_view == VIEW_ALL )
1024     {
1025         for( i = i_start + 1; i < i_stop; i++ )
1026         {
1027             if( strcasestr( p_playlist->pp_items[i]->input.psz_name,
1028                             psz_searchstring ) != NULL
1029                 || strcasestr( p_playlist->pp_items[i]->input.psz_uri,
1030                                psz_searchstring ) != NULL )
1031             {
1032                 i_item = i;
1033                 break;
1034             }
1035         }
1036     }
1037     else
1038     {
1039         for( i = i_start + 1; i < i_stop; i++ )
1040         {
1041             if( strcasestr( p_sys->pp_plist[i]->psz_display,
1042                             psz_searchstring ) != NULL )
1043             {
1044                 i_item = i;
1045                 break;
1046             }
1047         }
1048     }
1049
1050     return i_item;
1051 }
1052
1053
1054 static void mvnprintw( int y, int x, int w, const char *p_fmt, ... )
1055 {
1056     va_list  vl_args;
1057     char    *p_buf = NULL;
1058     int      i_len;
1059
1060     va_start( vl_args, p_fmt );
1061     vasprintf( &p_buf, p_fmt, vl_args );
1062     va_end( vl_args );
1063
1064     if( p_buf == NULL )
1065     {
1066         return;
1067     }
1068     if(  w > 0 )
1069     {
1070         if( ( i_len = strlen( p_buf ) ) > w )
1071         {
1072             int i_cut = i_len - w;
1073             int x1 = i_len/2 - i_cut/2;
1074             int x2 = x1 + i_cut;
1075
1076             if( i_len > x2 )
1077             {
1078                 memmove( &p_buf[x1], &p_buf[x2], i_len - x2 );
1079             }
1080             p_buf[w] = '\0';
1081             if( w > 7 )
1082             {
1083                 p_buf[w/2-1] = '.';
1084                 p_buf[w/2  ] = '.';
1085                 p_buf[w/2+1] = '.';
1086             }
1087             mvprintw( y, x, "%s", p_buf );
1088         }
1089         else
1090         {
1091             mvprintw( y, x, "%s", p_buf );
1092             mvhline( y, x + i_len, ' ', w - i_len );
1093         }
1094     }
1095 }
1096 static void MainBoxWrite( intf_thread_t *p_intf, int l, int x, const char *p_fmt, ... )
1097 {
1098     intf_sys_t     *p_sys = p_intf->p_sys;
1099
1100     va_list  vl_args;
1101     char    *p_buf = NULL;
1102
1103     if( l < p_sys->i_box_start || l - p_sys->i_box_start >= p_sys->i_box_lines )
1104     {
1105         return;
1106     }
1107
1108     va_start( vl_args, p_fmt );
1109     vasprintf( &p_buf, p_fmt, vl_args );
1110     va_end( vl_args );
1111
1112     if( p_buf == NULL )
1113     {
1114         return;
1115     }
1116
1117     mvnprintw( p_sys->i_box_y + l - p_sys->i_box_start, x, COLS - x - 1, "%s", p_buf );
1118 }
1119
1120 static void Redraw( intf_thread_t *p_intf, time_t *t_last_refresh )
1121 {
1122     intf_sys_t     *p_sys = p_intf->p_sys;
1123     input_thread_t *p_input = p_sys->p_input;
1124     int y = 0;
1125     int h;
1126     int y_end;
1127
1128     //clear();
1129
1130     /* Title */
1131     attrset( A_REVERSE );
1132     mvnprintw( y, 0, COLS, "VLC media player" " (ncurses interface) [ h for help ]" );
1133     attroff( A_REVERSE );
1134     y += 2;
1135
1136     /* Infos */
1137     if( p_input && !p_input->b_dead )
1138     {
1139         char buf1[MSTRTIME_MAX_SIZE];
1140         char buf2[MSTRTIME_MAX_SIZE];
1141         vlc_value_t val;
1142         vlc_value_t val_list;
1143
1144         /* Source */
1145         mvnprintw( y++, 0, COLS, " Source   : %s",
1146                    p_input->input.p_item->psz_uri );
1147
1148         /* State */
1149         var_Get( p_input, "state", &val );
1150         if( val.i_int == PLAYING_S )
1151         {
1152             mvnprintw( y++, 0, COLS, " State    : Playing" );
1153         }
1154         else if( val.i_int == PAUSE_S )
1155         {
1156             mvnprintw( y++, 0, COLS, " State    : Paused" );
1157         }
1158         else
1159         {
1160             y++;
1161         }
1162         if( val.i_int != INIT_S && val.i_int != END_S )
1163         {
1164             audio_volume_t i_volume;
1165
1166             /* Position */
1167             var_Get( p_input, "time", &val );
1168             msecstotimestr( buf1, val.i_time / 1000 );
1169
1170             var_Get( p_input, "length", &val );
1171             msecstotimestr( buf2, val.i_time / 1000 );
1172
1173             mvnprintw( y++, 0, COLS, " Position : %s/%s (%.2f%%)", buf1, buf2, p_sys->f_slider );
1174
1175             /* Volume */
1176             aout_VolumeGet( p_intf, &i_volume );
1177             mvnprintw( y++, 0, COLS, " Volume   : %i%%", i_volume*200/AOUT_VOLUME_MAX );
1178
1179             /* Title */
1180             if( !var_Get( p_input, "title", &val ) )
1181             {
1182                 var_Change( p_input, "title", VLC_VAR_GETCHOICES, &val_list, NULL );
1183                 if( val_list.p_list->i_count > 0 )
1184                 {
1185                     mvnprintw( y++, 0, COLS, " Title    : %d/%d", val.i_int, val_list.p_list->i_count );
1186                 }
1187                 var_Change( p_input, "title", VLC_VAR_FREELIST, &val_list, NULL );
1188             }
1189
1190             /* Chapter */
1191             if( !var_Get( p_input, "chapter", &val ) )
1192             {
1193                 var_Change( p_input, "chapter", VLC_VAR_GETCHOICES, &val_list, NULL );
1194                 if( val_list.p_list->i_count > 0 )
1195                 {
1196                     mvnprintw( y++, 0, COLS, " Chapter  : %d/%d", val.i_int, val_list.p_list->i_count );
1197                 }
1198                 var_Change( p_input, "chapter", VLC_VAR_FREELIST, &val_list, NULL );
1199             }
1200         }
1201         else
1202         {
1203             y += 2;
1204         }
1205     }
1206     else
1207     {
1208         mvnprintw( y++, 0, COLS, "Source: <no current item>" );
1209         DrawEmptyLine( p_sys->w, y++, 0, COLS );
1210         DrawEmptyLine( p_sys->w, y++, 0, COLS );
1211         DrawEmptyLine( p_sys->w, y++, 0, COLS );
1212     }
1213
1214     DrawBox( p_sys->w, y, 0, 3, COLS, "" );
1215     DrawEmptyLine( p_sys->w, y+1, 1, COLS-2);
1216     DrawLine( p_sys->w, y+1, 1, (int)(p_intf->p_sys->f_slider/100.0 * (COLS -2)) );
1217     y += 3;
1218
1219     p_sys->i_box_y = y + 1;
1220     p_sys->i_box_lines = LINES - y - 2;
1221
1222     h = LINES - y;
1223     y_end = y + h - 1;
1224
1225     if( p_sys->i_box_type == BOX_HELP )
1226     {
1227         /* Help box */
1228         int l = 0;
1229         DrawBox( p_sys->w, y++, 0, h, COLS, " Help " );
1230
1231         MainBoxWrite( p_intf, l++, 1, "[Display]" );
1232         MainBoxWrite( p_intf, l++, 1, "     h,H         Show/Hide help box" );
1233         MainBoxWrite( p_intf, l++, 1, "     i           Show/Hide info box" );
1234         MainBoxWrite( p_intf, l++, 1, "     L           Show/Hide messages box" );
1235         MainBoxWrite( p_intf, l++, 1, "     P           Show/Hide playlist box" );
1236         MainBoxWrite( p_intf, l++, 1, "     B           Show/Hide filebrowser" );
1237         MainBoxWrite( p_intf, l++, 1, "" );
1238
1239         MainBoxWrite( p_intf, l++, 1, "[Global]" );
1240         MainBoxWrite( p_intf, l++, 1, "     q, Q        Quit" );
1241         MainBoxWrite( p_intf, l++, 1, "     s           Stop" );
1242         MainBoxWrite( p_intf, l++, 1, "     <space>     Pause/Play" );
1243         MainBoxWrite( p_intf, l++, 1, "     f           Toggle Fullscreen" );
1244         MainBoxWrite( p_intf, l++, 1, "     n, p        Next/Previous playlist item" );
1245         MainBoxWrite( p_intf, l++, 1, "     [, ]        Next/Previous title" );
1246         MainBoxWrite( p_intf, l++, 1, "     <, >        Next/Previous chapter" );
1247         MainBoxWrite( p_intf, l++, 1, "     <right>     Seek +1%%" );
1248         MainBoxWrite( p_intf, l++, 1, "     <left>      Seek -1%%" );
1249         MainBoxWrite( p_intf, l++, 1, "     a           Volume Up" );
1250         MainBoxWrite( p_intf, l++, 1, "     z           Volume Down" );
1251         MainBoxWrite( p_intf, l++, 1, "" );
1252
1253         MainBoxWrite( p_intf, l++, 1, "[Playlist]" );
1254         MainBoxWrite( p_intf, l++, 1, "     r           Random" );
1255         MainBoxWrite( p_intf, l++, 1, "     l           Loop Playlist" );
1256         MainBoxWrite( p_intf, l++, 1, "     R           Repeat item" );
1257         MainBoxWrite( p_intf, l++, 1, "     o           Order Playlist by title" );
1258         MainBoxWrite( p_intf, l++, 1, "     O           Reverse order Playlist by title" );
1259         MainBoxWrite( p_intf, l++, 1, "     /           Look for an item" );
1260         MainBoxWrite( p_intf, l++, 1, "     A           Add an entry" );
1261         MainBoxWrite( p_intf, l++, 1, "     D, <del>    Delete an entry" );
1262         MainBoxWrite( p_intf, l++, 1, "     <backspace> Delete an entry" );
1263         MainBoxWrite( p_intf, l++, 1, "" );
1264
1265         MainBoxWrite( p_intf, l++, 1, "[Boxes]" );
1266         MainBoxWrite( p_intf, l++, 1, "     <up>,<down>     Navigate through the box line by line" );
1267         MainBoxWrite( p_intf, l++, 1, "     <pgup>,<pgdown> Navigate through the box page by page" );
1268         MainBoxWrite( p_intf, l++, 1, "" );
1269
1270         MainBoxWrite( p_intf, l++, 1, "[Player]" );
1271         MainBoxWrite( p_intf, l++, 1, "     <up>,<down>     Seek +/-5%%" );
1272         MainBoxWrite( p_intf, l++, 1, "" );
1273
1274         MainBoxWrite( p_intf, l++, 1, "[Miscellaneous]" );
1275         MainBoxWrite( p_intf, l++, 1, "     Ctrl-l          Refresh the screen" );
1276
1277         p_sys->i_box_lines_total = l;
1278         if( p_sys->i_box_start >= p_sys->i_box_lines_total )
1279         {
1280             p_sys->i_box_start = p_sys->i_box_lines_total - 1;
1281         }
1282
1283         if( l - p_sys->i_box_start < p_sys->i_box_lines )
1284         {
1285             y += l - p_sys->i_box_start;
1286         }
1287         else
1288         {
1289             y += p_sys->i_box_lines;
1290         }
1291     }
1292     else if( p_sys->i_box_type == BOX_INFO )
1293     {
1294         /* Info box */
1295         int l = 0;
1296         DrawBox( p_sys->w, y++, 0, h, COLS, " Information " );
1297
1298         if( p_input )
1299         {
1300             int i,j;
1301             vlc_mutex_lock( &p_input->input.p_item->lock );
1302             for( i = 0; i < p_input->input.p_item->i_categories; i++ )
1303             {
1304                 info_category_t *p_category = p_input->input.p_item->pp_categories[i];
1305                 if( y >= y_end ) break;
1306                 MainBoxWrite( p_intf, l++, 1, "  [%s]", p_category->psz_name );
1307                 for( j = 0; j < p_category->i_infos; j++ )
1308                 {
1309                     info_t *p_info = p_category->pp_infos[j];
1310                     if( y >= y_end ) break;
1311                     MainBoxWrite( p_intf, l++, 1, "      %s: %s", p_info->psz_name, p_info->psz_value );
1312                 }
1313             }
1314             vlc_mutex_unlock( &p_input->input.p_item->lock );
1315         }
1316         else
1317         {
1318             MainBoxWrite( p_intf, l++, 1, "No item currently playing" );
1319         }
1320         p_sys->i_box_lines_total = l;
1321         if( p_sys->i_box_start >= p_sys->i_box_lines_total )
1322         {
1323             p_sys->i_box_start = p_sys->i_box_lines_total - 1;
1324         }
1325
1326         if( l - p_sys->i_box_start < p_sys->i_box_lines )
1327         {
1328             y += l - p_sys->i_box_start;
1329         }
1330         else
1331         {
1332             y += p_sys->i_box_lines;
1333         }
1334     }
1335     else if( p_sys->i_box_type == BOX_LOG )
1336     {
1337         int i_line = 0;
1338         int i_stop;
1339         int i_start;
1340
1341         DrawBox( p_sys->w, y++, 0, h, COLS, " Logs " );
1342
1343         i_start = p_intf->p_sys->p_sub->i_start;
1344
1345         vlc_mutex_lock( p_intf->p_sys->p_sub->p_lock );
1346         i_stop = *p_intf->p_sys->p_sub->pi_stop;
1347         vlc_mutex_unlock( p_intf->p_sys->p_sub->p_lock );
1348
1349         for( ;; )
1350         {
1351             static const char *ppsz_type[4] = { "", "error", "warning", "debug" };
1352             if( i_line >= h - 2 )
1353             {
1354                 break;
1355             }
1356             i_stop--;
1357             i_line++;
1358             if( i_stop < 0 ) i_stop += VLC_MSG_QSIZE;
1359             if( i_stop == i_start )
1360             {
1361                 break;
1362             }
1363             mvnprintw( y + h-2-i_line, 1, COLS - 2, "   [%s] %s",
1364                       ppsz_type[p_sys->p_sub->p_msg[i_stop].i_type],
1365                       p_sys->p_sub->p_msg[i_stop].psz_msg );
1366         }
1367
1368         vlc_mutex_lock( p_intf->p_sys->p_sub->p_lock );
1369         p_intf->p_sys->p_sub->i_start = i_stop;
1370         vlc_mutex_unlock( p_intf->p_sys->p_sub->p_lock );
1371         y = y_end;
1372     }
1373     else if( p_sys->i_box_type == BOX_BROWSE )
1374     {
1375         /* Filebrowser box */
1376         int        i_start, i_stop;
1377         int        i_item;
1378         DrawBox( p_sys->w, y++, 0, h, COLS, " Browse " );
1379
1380         if( p_sys->i_box_bidx >= p_sys->i_dir_entries ) p_sys->i_box_plidx = p_sys->i_dir_entries - 1;
1381         if( p_sys->i_box_bidx < 0 ) p_sys->i_box_bidx = 0;
1382
1383         if( p_sys->i_box_bidx < (h - 2)/2 )
1384         {
1385             i_start = 0;
1386             i_stop = h - 2;
1387         }
1388         else if( p_sys->i_dir_entries - p_sys->i_box_bidx > (h - 2)/2 )
1389         {
1390             i_start = p_sys->i_box_bidx - (h - 2)/2;
1391             i_stop = i_start + h - 2;
1392         }
1393         else
1394         {
1395             i_stop = p_sys->i_dir_entries;
1396             i_start = p_sys->i_dir_entries - (h - 2);
1397         }
1398         if( i_start < 0 )
1399         {
1400             i_start = 0;
1401         }
1402         if( i_stop > p_sys->i_dir_entries )
1403         {
1404             i_stop = p_sys->i_dir_entries;
1405         }
1406
1407         for( i_item = i_start; i_item < i_stop; i_item++ )
1408         {
1409             vlc_bool_t b_selected = ( p_sys->i_box_bidx == i_item );
1410
1411             if( y >= y_end ) break;
1412             if( b_selected )
1413             {
1414                 attrset( A_REVERSE );
1415             }
1416             mvnprintw( y++, 1, COLS - 2, "%c %s", p_sys->pp_dir_entries[i_item]->b_file == VLC_TRUE ? '-' : '+',
1417                             p_sys->pp_dir_entries[i_item]->psz_path );
1418             if( b_selected )
1419             {
1420                 attroff( A_REVERSE );
1421             }
1422         }
1423
1424     }
1425     else if( ( p_sys->i_box_type == BOX_PLAYLIST ||
1426                p_sys->i_box_type == BOX_SEARCH ||
1427                p_sys->i_box_type == BOX_OPEN  ) && p_sys->p_playlist )
1428     {
1429         /* Playlist box */
1430         playlist_t *p_playlist = p_sys->p_playlist;
1431         int        i_start, i_stop, i_max = p_sys->i_plist_entries;
1432         int        i_item;
1433         char       *psz_title;
1434
1435         switch( p_sys->i_current_view )
1436         {
1437             case VIEW_ALL:
1438                 psz_title = strdup( " Playlist (All, unsorted) " );
1439                 i_max = p_playlist->i_size;
1440                 break;
1441             case VIEW_CATEGORY:
1442                 psz_title = strdup( " Playlist (By category) " );
1443                 break;
1444             default:
1445                 psz_title = strdup( " Playlist (Manually added) " );
1446         }
1447
1448         DrawBox( p_sys->w, y++, 0, h, COLS, psz_title );
1449
1450         if( p_sys->i_current_view != VIEW_ALL &&
1451                 ( p_sys->b_need_update || p_sys->pp_plist == NULL ) )
1452         {
1453             PlaylistRebuild( p_intf );
1454         }
1455         if( p_sys->b_box_plidx_follow )
1456         {
1457             FindIndex( p_intf );
1458         }
1459
1460         if( p_sys->i_box_plidx < 0 ) p_sys->i_box_plidx = 0;
1461
1462         if( p_sys->i_box_plidx < (h - 2)/2 )
1463         {
1464             i_start = 0;
1465             i_stop = h - 2;
1466         }
1467         else if( i_max - p_sys->i_box_plidx > (h - 2)/2 )
1468         {
1469             i_start = p_sys->i_box_plidx - (h - 2)/2;
1470             i_stop = i_start + h - 2;
1471         }
1472         else
1473         {
1474             i_stop = i_max;
1475             i_start = i_max - (h - 2);
1476         }
1477         if( i_start < 0 )
1478         {
1479             i_start = 0;
1480         }
1481         if( i_stop > i_max )
1482         {
1483             i_stop = i_max;
1484         }
1485
1486        if( p_sys->i_current_view == VIEW_ALL )
1487        {
1488
1489         for( i_item = i_start; i_item < i_stop; i_item++ )
1490         {
1491             vlc_bool_t b_selected = ( p_sys->i_box_plidx == i_item );
1492             int c = p_playlist->i_index == i_item ? '>' : ' ';
1493
1494             if( y >= y_end ) break;
1495             if( b_selected )
1496             {
1497                 attrset( A_REVERSE );
1498             }
1499             if( !strcmp( p_playlist->pp_items[i_item]->input.psz_name,
1500                          p_playlist->pp_items[i_item]->input.psz_uri ) )
1501             {
1502                 mvnprintw( y++, 1, COLS - 2, "%c %d - '%s'",
1503                            c,
1504                            i_item,
1505                            p_playlist->pp_items[i_item]->input.psz_uri );
1506             }
1507             else
1508             {
1509                 mvnprintw( y++, 1, COLS - 2, "%c %d - '%s' (%s)",
1510                           c,
1511                           i_item,
1512                           p_playlist->pp_items[i_item]->input.psz_uri,
1513                           p_playlist->pp_items[i_item]->input.psz_name );
1514             }
1515             if( b_selected )
1516             {
1517                 attroff( A_REVERSE );
1518             }
1519         }
1520
1521        }
1522        else
1523        {
1524
1525         for( i_item = i_start; i_item < i_stop; i_item++ )
1526         {
1527             vlc_bool_t b_selected = ( p_sys->i_box_plidx == i_item );
1528             int c = ( p_playlist->status.p_item ==
1529                           p_sys->pp_plist[i_item]->p_item ) ? '>' : ' ';
1530
1531             if( y >= y_end ) break;
1532             if( b_selected )
1533             {
1534                 attrset( A_REVERSE );
1535             }
1536             mvnprintw( y++, 1, COLS - 2, "%c%s", c,
1537                        p_sys->pp_plist[i_item]->psz_display );
1538             if( b_selected )
1539             {
1540                 attroff( A_REVERSE );
1541             }
1542         }
1543
1544        }
1545     }
1546     else
1547     {
1548         y++;
1549     }
1550     if( p_sys->i_box_type == BOX_SEARCH )
1551     {
1552         DrawEmptyLine( p_sys->w, 7, 1, COLS-2 );
1553         if( p_sys->psz_search_chain )
1554         {
1555             if( strlen( p_sys->psz_search_chain ) == 0 &&
1556                 p_sys->psz_old_search != NULL )
1557             {
1558                 /* Searching next entry */
1559                 mvnprintw( 7, 1, COLS-2, "Find: %s", p_sys->psz_old_search );
1560             }
1561             else
1562             {
1563                 mvnprintw( 7, 1, COLS-2, "Find: %s", p_sys->psz_search_chain );
1564             }
1565         }
1566     }
1567     if( p_sys->i_box_type == BOX_OPEN )
1568     {
1569         if( p_sys->psz_open_chain )
1570         {
1571             DrawEmptyLine( p_sys->w, 7, 1, COLS-2 );
1572             mvnprintw( 7, 1, COLS-2, "Open: %s", p_sys->psz_open_chain );
1573         }
1574     }
1575
1576     while( y < y_end )
1577     {
1578         DrawEmptyLine( p_sys->w, y++, 1, COLS - 2 );
1579     }
1580
1581     refresh();
1582
1583     *t_last_refresh = time( 0 );
1584 }
1585
1586 static void PlaylistRebuild( intf_thread_t *p_intf )
1587 {
1588     intf_sys_t *p_sys = p_intf->p_sys;
1589     playlist_view_t *p_view;
1590     playlist_t *p_playlist = p_sys->p_playlist;
1591
1592     if( p_playlist == NULL )
1593     {
1594         return;
1595     }
1596
1597     vlc_mutex_lock( &p_playlist->object_lock );
1598
1599     p_view = playlist_ViewFind( p_playlist, p_intf->p_sys->i_current_view );
1600
1601     /* First clear the old one */
1602     PlaylistDestroy( p_intf );
1603
1604     /* Build the new one */
1605     PlaylistAddNode( p_intf, p_view->p_root, 0, "" );
1606
1607     p_sys->b_need_update = VLC_FALSE;
1608
1609     vlc_mutex_unlock( &p_playlist->object_lock );
1610 }
1611
1612 static void PlaylistAddNode( intf_thread_t *p_intf, playlist_item_t *p_node,
1613                              int i, char *c )
1614 {
1615     intf_sys_t *p_sys = p_intf->p_sys;
1616     playlist_item_t *p_child;
1617     char *psz_tmp;
1618     int k;
1619
1620     psz_tmp = (char *)malloc( strlen( c ) + 4 );
1621     if( psz_tmp == NULL ) return;
1622     for( k = 0; k < p_node->i_children; k++ )
1623     {
1624         struct pl_item_t *p_pl_item;
1625         char *buff;
1626         int i_size;
1627
1628         p_child = p_node->pp_children[k];
1629         i_size = strlen( c ) + strlen( p_child->input.psz_name ) + 4;
1630         buff = (char *)malloc( sizeof( char ) * i_size );
1631         p_pl_item = (struct pl_item_t *)malloc( sizeof( struct pl_item_t ) );
1632         if(  p_pl_item == NULL || buff == NULL ) return;
1633
1634         if( strlen( c ) )
1635         {
1636             sprintf( buff, "%s%c-%s", c, k == p_node->i_children - 1 ?
1637                      '`' : '|', p_child->input.psz_name );
1638         }
1639         else
1640         {
1641             sprintf( buff, " %s", p_child->input.psz_name );
1642         }
1643         p_pl_item->psz_display = strdup( buff );
1644         p_pl_item->p_item = p_child;
1645         INSERT_ELEM( p_sys->pp_plist, p_sys->i_plist_entries,
1646                      p_sys->i_plist_entries, p_pl_item );
1647         free( buff );
1648         i++;
1649
1650         if( p_child->i_children > 0 )
1651         {
1652             sprintf( psz_tmp, "%s%c ", c,
1653                      k == p_node->i_children - 1 ? ' ' : '|' );
1654             PlaylistAddNode( p_intf, p_child, i,
1655                              strlen( c ) ? psz_tmp : " " );
1656         }
1657     }
1658     free( psz_tmp );
1659 }
1660
1661 static int PlaylistChanged( vlc_object_t *p_this, const char *psz_variable,
1662                             vlc_value_t oval, vlc_value_t nval, void *param )
1663 {
1664     intf_thread_t *p_intf = (intf_thread_t *)param;
1665     p_intf->p_sys->b_need_update = VLC_TRUE;
1666     return VLC_SUCCESS;
1667 }
1668
1669 static void FindIndex( intf_thread_t *p_intf )
1670 {
1671     intf_sys_t *p_sys = p_intf->p_sys;
1672     int i;
1673
1674     if( p_sys->i_current_view == VIEW_ALL )
1675     {
1676          p_sys->i_box_plidx = p_sys->p_playlist->i_index;
1677     }
1678     else if( ( p_sys->i_box_plidx < p_sys->i_plist_entries &&
1679                p_sys->pp_plist[p_sys->i_box_plidx]->p_item !=
1680                p_sys->p_playlist->status.p_item ) )
1681     {
1682         for( i = 0; i < p_sys->i_plist_entries; i++ )
1683         {
1684             if( p_sys->pp_plist[i]->p_item ==
1685                 p_sys->p_playlist->status.p_item )
1686             {
1687                 p_sys->i_box_plidx = i;
1688                 break;
1689             }
1690         }
1691     }
1692 }
1693
1694 static void PlaylistDestroy( intf_thread_t *p_intf )
1695 {
1696     intf_sys_t *p_sys = p_intf->p_sys;
1697     int i;
1698
1699     for( i = 0; i < p_sys->i_plist_entries; i++ )
1700     {
1701         struct pl_item_t *p_pl_item = p_sys->pp_plist[i];
1702         free( p_pl_item->psz_display );
1703         REMOVE_ELEM( p_sys->pp_plist, p_sys->i_plist_entries, i );
1704         free( p_pl_item );
1705     }
1706     p_sys->pp_plist = NULL;
1707     p_sys->i_plist_entries = 0;
1708 }
1709
1710 static void Eject( intf_thread_t *p_intf )
1711 {
1712     char *psz_device = NULL, *psz_parser, *psz_name;
1713
1714     /*
1715      * Get the active input
1716      * Determine whether we can eject a media, ie it's a DVD, VCD or CD-DA
1717      * If it's neither of these, then return
1718      */
1719
1720     playlist_t * p_playlist = vlc_object_find( p_intf, VLC_OBJECT_PLAYLIST,
1721                                                        FIND_ANYWHERE );
1722
1723     if( p_playlist == NULL )
1724     {
1725         return;
1726     }
1727
1728     vlc_mutex_lock( &p_playlist->object_lock );
1729
1730     if( p_playlist->i_index < 0 )
1731     {
1732         vlc_mutex_unlock( &p_playlist->object_lock );
1733         vlc_object_release( p_playlist );
1734         return;
1735     }
1736
1737     psz_name = p_playlist->pp_items[ p_playlist->i_index ]->input.psz_name;
1738
1739     if( psz_name )
1740     {
1741         if( !strncmp(psz_name, "dvd://", 4) )
1742         {
1743             switch( psz_name[strlen("dvd://")] )
1744             {
1745             case '\0':
1746             case '@':
1747                 psz_device = config_GetPsz( p_intf, "dvd" );
1748                 break;
1749             default:
1750                 /* Omit the first MRL-selector characters */
1751                 psz_device = strdup( psz_name + strlen("dvd://" ) );
1752                 break;
1753             }
1754         }
1755         else if( !strncmp(psz_name, VCD_MRL, strlen(VCD_MRL)) )
1756         {
1757             switch( psz_name[strlen(VCD_MRL)] )
1758             {
1759             case '\0':
1760             case '@':
1761                 psz_device = config_GetPsz( p_intf, VCD_MRL );
1762                 break;
1763             default:
1764                 /* Omit the beginning MRL-selector characters */
1765                 psz_device = strdup( psz_name + strlen(VCD_MRL) );
1766                 break;
1767             }
1768         }
1769         else if( !strncmp(psz_name, CDDA_MRL, strlen(CDDA_MRL) ) )
1770         {
1771             switch( psz_name[strlen(CDDA_MRL)] )
1772             {
1773             case '\0':
1774             case '@':
1775                 psz_device = config_GetPsz( p_intf, "cd-audio" );
1776                 break;
1777             default:
1778                 /* Omit the beginning MRL-selector characters */
1779                 psz_device = strdup( psz_name + strlen(CDDA_MRL) );
1780                 break;
1781             }
1782         }
1783         else
1784         {
1785             psz_device = strdup( psz_name );
1786         }
1787     }
1788
1789     vlc_mutex_unlock( &p_playlist->object_lock );
1790     vlc_object_release( p_playlist );
1791
1792     if( psz_device == NULL )
1793     {
1794         return;
1795     }
1796
1797     /* Remove what we have after @ */
1798     psz_parser = psz_device;
1799     for( psz_parser = psz_device ; *psz_parser ; psz_parser++ )
1800     {
1801         if( *psz_parser == '@' )
1802         {
1803             *psz_parser = '\0';
1804             break;
1805         }
1806     }
1807
1808     /* If there's a stream playing, we aren't allowed to eject ! */
1809     if( p_intf->p_sys->p_input == NULL )
1810     {
1811         msg_Dbg( p_intf, "ejecting %s", psz_device );
1812
1813         intf_Eject( p_intf, psz_device );
1814     }
1815
1816     free(psz_device);
1817     return;
1818 }
1819
1820 static void ReadDir( intf_thread_t *p_intf )
1821 {
1822     intf_sys_t     *p_sys = p_intf->p_sys;
1823     DIR *                       p_current_dir;
1824     struct dirent *             p_dir_content;
1825     int i;
1826
1827     if( p_sys->psz_current_dir && *p_sys->psz_current_dir )
1828     {
1829         /* Open the dir */
1830         p_current_dir = opendir( p_sys->psz_current_dir );
1831
1832         if( p_current_dir == NULL )
1833         {
1834             /* something went bad, get out of here ! */
1835 #ifdef HAVE_ERRNO_H
1836             msg_Warn( p_intf, "cannot open directory `%s' (%s)",
1837                       p_sys->psz_current_dir, strerror(errno));
1838 #else
1839             msg_Warn( p_intf, "cannot open directory `%s'", p_sys->psz_current_dir );
1840 #endif
1841             return;
1842         }
1843
1844         /* Clean the old shit */
1845         for( i = 0; i < p_sys->i_dir_entries; i++ )
1846         {
1847             struct dir_entry_t *p_dir_entry = p_sys->pp_dir_entries[i];
1848             free( p_dir_entry->psz_path );
1849             REMOVE_ELEM( p_sys->pp_dir_entries, p_sys->i_dir_entries, i );
1850             free( p_dir_entry );
1851         }
1852         p_sys->pp_dir_entries = NULL;
1853         p_sys->i_dir_entries = 0;
1854
1855         /* get the first directory entry */
1856         p_dir_content = readdir( p_current_dir );
1857
1858         /* while we still have entries in the directory */
1859         while( p_dir_content != NULL )
1860         {
1861 #if defined( S_ISDIR )
1862             struct stat stat_data;
1863 #endif
1864             struct dir_entry_t *p_dir_entry;
1865             int i_size_entry = strlen( p_sys->psz_current_dir ) +
1866                                strlen( p_dir_content->d_name ) + 2;
1867             char *psz_uri = (char *)malloc( sizeof(char)*i_size_entry);
1868
1869             sprintf( psz_uri, "%s/%s", p_sys->psz_current_dir,
1870                      p_dir_content->d_name );
1871
1872             if( !( p_dir_entry = malloc( sizeof( struct dir_entry_t) ) ) )
1873             {
1874                 free( psz_uri);
1875                 return;
1876             }
1877
1878 #if defined( S_ISDIR )
1879             stat( psz_uri, &stat_data );
1880             if( S_ISDIR(stat_data.st_mode) )
1881 #elif defined( DT_DIR )
1882             if( p_dir_content->d_type & DT_DIR )
1883 #else
1884             if( 0 )
1885 #endif
1886             {
1887                 p_dir_entry->psz_path = strdup( p_dir_content->d_name );
1888                 p_dir_entry->b_file = VLC_FALSE;
1889                 INSERT_ELEM( p_sys->pp_dir_entries, p_sys->i_dir_entries,
1890                      p_sys->i_dir_entries, p_dir_entry );
1891             }
1892             else
1893             {
1894                 p_dir_entry->psz_path = strdup( p_dir_content->d_name );
1895                 p_dir_entry->b_file = VLC_TRUE;
1896                 INSERT_ELEM( p_sys->pp_dir_entries, p_sys->i_dir_entries,
1897                      p_sys->i_dir_entries, p_dir_entry );
1898             }
1899
1900             free( psz_uri );
1901             /* Read next entry */
1902             p_dir_content = readdir( p_current_dir );
1903         }
1904         closedir( p_current_dir );
1905         return;
1906     }
1907     else
1908     {
1909         msg_Dbg( p_intf, "no current dir set" );
1910         return;
1911     }
1912 }
1913
1914 static void PlayPause( intf_thread_t *p_intf )
1915 {
1916     input_thread_t *p_input = p_intf->p_sys->p_input;
1917     vlc_value_t val;
1918
1919     if( p_input )
1920     {
1921         var_Get( p_input, "state", &val );
1922         if( val.i_int != PAUSE_S )
1923         {
1924             val.i_int = PAUSE_S;
1925         }
1926         else
1927         {
1928             val.i_int = PLAYING_S;
1929         }
1930         var_Set( p_input, "state", val );
1931     }
1932     else if( p_intf->p_sys->p_playlist )
1933     {
1934         playlist_Play( p_intf->p_sys->p_playlist );
1935     }
1936 }
1937
1938 /****************************************************************************
1939  *
1940  ****************************************************************************/
1941 static void DrawBox( WINDOW *win, int y, int x, int h, int w, char *title )
1942 {
1943     int i;
1944     int i_len;
1945
1946     if( w > 3 && h > 2 )
1947     {
1948         if( title == NULL ) title = "";
1949         i_len = strlen( title );
1950
1951         if( i_len > w - 2 ) i_len = w - 2;
1952
1953         mvwaddch( win, y, x,    ACS_ULCORNER );
1954         mvwhline( win, y, x+1,  ACS_HLINE, ( w-i_len-2)/2 );
1955         mvwprintw( win,y, x+1+(w-i_len-2)/2, "%s", title );
1956         mvwhline( win, y, x+(w-i_len)/2+i_len,  ACS_HLINE, w - 1 - ((w-i_len)/2+i_len) );
1957         mvwaddch( win, y, x+w-1,ACS_URCORNER );
1958
1959         for( i = 0; i < h-2; i++ )
1960         {
1961             mvwaddch( win, y+i+1, x,     ACS_VLINE );
1962             mvwaddch( win, y+i+1, x+w-1, ACS_VLINE );
1963         }
1964
1965         mvwaddch( win, y+h-1, x,     ACS_LLCORNER );
1966         mvwhline( win, y+h-1, x+1,   ACS_HLINE, w - 2 );
1967         mvwaddch( win, y+h-1, x+w-1, ACS_LRCORNER );
1968     }
1969 }
1970
1971 static void DrawEmptyLine( WINDOW *win, int y, int x, int w )
1972 {
1973     if( w > 0 )
1974     {
1975         mvhline( y, x, ' ', w );
1976     }
1977 }
1978
1979 static void DrawLine( WINDOW *win, int y, int x, int w )
1980 {
1981     if( w > 0 )
1982     {
1983         attrset( A_REVERSE );
1984         mvhline( y, x, ' ', w );
1985         attroff( A_REVERSE );
1986     }
1987 }