]> git.sesse.net Git - vlc/blob - modules/gui/wxwindows/timer.cpp
* control: use new variables and 'title*', 'chapter*' ones.
[vlc] / modules / gui / wxwindows / timer.cpp
1 /*****************************************************************************
2  * timer.cpp : wxWindows plugin for vlc
3  *****************************************************************************
4  * Copyright (C) 2000-2001 VideoLAN
5  * $Id: timer.cpp,v 1.32 2003/09/07 22:53:09 fenrir Exp $
6  *
7  * Authors: Gildas Bazin <gbazin@netcourrier.com>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
22  *****************************************************************************/
23
24 /*****************************************************************************
25  * Preamble
26  *****************************************************************************/
27 #include <stdlib.h>                                      /* malloc(), free() */
28 #include <errno.h>                                                 /* ENOMEM */
29 #include <string.h>                                            /* strerror() */
30 #include <stdio.h>
31
32 #include <vlc/vlc.h>
33 #include <vlc/aout.h>
34 #include <vlc/intf.h>
35
36 #include "wxwindows.h"
37 #include <wx/timer.h>
38
39 //void DisplayStreamDate( wxControl *, intf_thread_t *, int );
40
41 /* Callback prototype */
42 static int PopupMenuCB( vlc_object_t *p_this, const char *psz_variable,
43                        vlc_value_t old_val, vlc_value_t new_val, void *param );
44
45 /*****************************************************************************
46  * Constructor.
47  *****************************************************************************/
48 Timer::Timer( intf_thread_t *_p_intf, Interface *_p_main_interface )
49 {
50     p_intf = _p_intf;
51     p_main_interface = _p_main_interface;
52     i_old_playing_status = PAUSE_S;
53     i_old_rate = DEFAULT_RATE;
54
55     /* Register callback for the intf-popupmenu variable */
56     playlist_t *p_playlist =
57         (playlist_t *)vlc_object_find( p_intf, VLC_OBJECT_PLAYLIST,
58                                        FIND_ANYWHERE );
59     if( p_playlist != NULL )
60     {
61         var_AddCallback( p_playlist, "intf-popupmenu", PopupMenuCB, p_intf );
62         vlc_object_release( p_playlist );
63     }
64
65     Start( 100 /*milliseconds*/, wxTIMER_CONTINUOUS );
66 }
67
68 Timer::~Timer()
69 {
70 }
71
72 /*****************************************************************************
73  * Private methods.
74  *****************************************************************************/
75
76 /*****************************************************************************
77  * Manage: manage main thread messages
78  *****************************************************************************
79  * In this function, called approx. 10 times a second, we check what the
80  * main program wanted to tell us.
81  *****************************************************************************/
82 void Timer::Notify()
83 {
84     vlc_bool_t b_pace_control;
85
86     vlc_mutex_lock( &p_intf->change_lock );
87
88     /* Update the input */
89     if( p_intf->p_sys->p_input == NULL )
90     {
91         p_intf->p_sys->p_input = (input_thread_t *)vlc_object_find( p_intf,
92                                                        VLC_OBJECT_INPUT,
93                                                        FIND_ANYWHERE );
94
95         /* Show slider */
96         if( p_intf->p_sys->p_input )
97         {
98             //if( p_intf->p_sys->p_input->stream.b_seekable )
99             {
100                 p_main_interface->slider_frame->Show();
101                 p_main_interface->frame_sizer->Show(
102                     p_main_interface->slider_frame );
103                 p_main_interface->frame_sizer->Layout();
104                 p_main_interface->frame_sizer->Fit( p_main_interface );
105             }
106
107             p_main_interface->statusbar->SetStatusText(
108                 wxU(p_intf->p_sys->p_input->psz_source), 2 );
109
110             p_main_interface->TogglePlayButton( PLAYING_S );
111             i_old_playing_status = PLAYING_S;
112
113             /* Take care of the volume */
114             audio_volume_t i_volume;
115             aout_VolumeGet( p_intf, &i_volume );
116             p_main_interface->volctrl->SetValue( i_volume * 200 /
117                                                  AOUT_VOLUME_MAX );
118             p_main_interface->volctrl->SetToolTip(
119                 wxString::Format((wxString)wxU(_("Volume")) + wxT(" %d"),
120                 i_volume * 200 / AOUT_VOLUME_MAX ) );
121
122             /* control buttons for free pace streams */
123             b_pace_control = p_intf->p_sys->p_input->stream.b_pace_control;
124         }
125     }
126     else if( p_intf->p_sys->p_input->b_dead )
127     {
128         /* Hide slider */
129         //if( p_intf->p_sys->p_input->stream.b_seekable )
130         {
131             p_main_interface->slider_frame->Hide();
132             p_main_interface->frame_sizer->Hide(
133                 p_main_interface->slider_frame );
134             p_main_interface->frame_sizer->Layout();
135             p_main_interface->frame_sizer->Fit( p_main_interface );
136
137             p_main_interface->TogglePlayButton( PAUSE_S );
138             i_old_playing_status = PAUSE_S;
139         }
140
141         p_main_interface->statusbar->SetStatusText( wxT(""), 2 );
142
143         vlc_object_release( p_intf->p_sys->p_input );
144         p_intf->p_sys->p_input = NULL;
145     }
146
147
148
149     if( p_intf->p_sys->p_input )
150     {
151         input_thread_t *p_input = p_intf->p_sys->p_input;
152
153         vlc_mutex_lock( &p_input->stream.stream_lock );
154
155         if( !p_input->b_die )
156         {
157             /* New input or stream map change */
158             p_intf->p_sys->b_playing = 1;
159 #if 0
160             if( p_input->stream.b_changed )
161             {
162                 wxModeManage( p_intf );
163                 wxSetupMenus( p_intf );
164                 p_intf->p_sys->b_playing = 1;
165
166                 p_main_interface->TogglePlayButton( PLAYING_S );
167                 i_old_playing_status = PLAYING_S;
168             }
169 #endif
170
171             /* Manage the slider */
172             if( p_input->stream.b_seekable && p_intf->p_sys->b_playing )
173             {
174                 /* Update the slider if the user isn't dragging it. */
175                 if( p_intf->p_sys->b_slider_free )
176                 {
177                     vlc_value_t pos;
178                     char psz_time[ OFFSETTOTIME_MAX_SIZE ];
179                     vlc_value_t time;
180                     mtime_t     i_seconds;
181
182                     /* Update the value */
183                     var_Get( p_input, "position", &pos );
184                     if( pos.f_float >= 0.0 )
185                     {
186                         p_intf->p_sys->i_slider_pos = (int)(SLIDER_MAX_POS * pos.f_float);
187
188                         p_main_interface->slider->SetValue( p_intf->p_sys->i_slider_pos );
189
190                         var_Get( p_intf->p_sys->p_input, "time", &time );
191                         i_seconds = time.i_time / 1000000;
192
193                         sprintf( psz_time, "%d:%02d:%02d",
194                                  (int) (i_seconds / (60 * 60)),
195                                  (int) (i_seconds / 60 % 60),
196                                  (int) (i_seconds % 60) );
197
198
199                         p_main_interface->slider_box->SetLabel(wxU( psz_time ) );
200                     }
201                 }
202             }
203
204             /* Manage Playing status */
205             if( i_old_playing_status != p_input->stream.control.i_status )
206             {
207                 if( p_input->stream.control.i_status == PAUSE_S )
208                 {
209                     p_main_interface->TogglePlayButton( PAUSE_S );
210                 }
211                 else
212                 {
213                     p_main_interface->TogglePlayButton( PLAYING_S );
214                 }
215                 i_old_playing_status = p_input->stream.control.i_status;
216             }
217
218             /* Manage Speed status */
219             if( i_old_rate != p_input->stream.control.i_rate )
220             {
221                 p_main_interface->statusbar->SetStatusText(
222                     wxString::Format(wxT("x%.2f"),
223                     1000.0 / p_input->stream.control.i_rate), 1 );
224                 i_old_rate = p_input->stream.control.i_rate;
225             }
226         }
227
228         vlc_mutex_unlock( &p_input->stream.stream_lock );
229     }
230     else if( p_intf->p_sys->b_playing && !p_intf->b_die )
231     {
232         p_intf->p_sys->b_playing = 0;
233         p_main_interface->TogglePlayButton( PAUSE_S );
234         i_old_playing_status = PAUSE_S;
235     }
236
237     if( p_intf->b_die )
238     {
239         vlc_mutex_unlock( &p_intf->change_lock );
240
241         /* Prepare to die, young Skywalker */
242         p_main_interface->Close(TRUE);
243         return;
244     }
245
246     vlc_mutex_unlock( &p_intf->change_lock );
247 }
248
249 /*****************************************************************************
250  * PopupMenuCB: callback triggered by the intf-popupmenu playlist variable.
251  *  We don't show the menu directly here because we don't want the
252  *  caller to block for a too long time.
253  *****************************************************************************/
254 static int PopupMenuCB( vlc_object_t *p_this, const char *psz_variable,
255                         vlc_value_t old_val, vlc_value_t new_val, void *param )
256 {
257     intf_thread_t *p_intf = (intf_thread_t *)param;
258
259     if( p_intf->p_sys->pf_show_dialog )
260         p_intf->p_sys->pf_show_dialog( p_intf, INTF_DIALOG_POPUPMENU,
261                                        new_val.b_bool, 0 );
262
263     return VLC_SUCCESS;
264 }