]> git.sesse.net Git - vlc/blob - modules/gui/wxwindows/timer.cpp
* Got rid of more "VideoLAN C*****" references.
[vlc] / modules / gui / wxwindows / timer.cpp
1 /*****************************************************************************
2  * timer.cpp : wxWindows plugin for vlc
3  *****************************************************************************
4  * Copyright (C) 2000-2003 VideoLAN
5  * $Id$
6  *
7  * Authors: Gildas Bazin <gbazin@videolan.org>
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     /* Unregister callback */
71     playlist_t *p_playlist =
72         (playlist_t *)vlc_object_find( p_intf, VLC_OBJECT_PLAYLIST,
73                                        FIND_ANYWHERE );
74     if( p_playlist != NULL )
75     {
76         var_DelCallback( p_playlist, "intf-popupmenu", PopupMenuCB, p_intf );
77         vlc_object_release( p_playlist );
78     }
79 }
80
81 /*****************************************************************************
82  * Private methods.
83  *****************************************************************************/
84
85 /*****************************************************************************
86  * Manage: manage main thread messages
87  *****************************************************************************
88  * In this function, called approx. 10 times a second, we check what the
89  * main program wanted to tell us.
90  *****************************************************************************/
91 void Timer::Notify()
92 {
93     vlc_bool_t b_pace_control;
94
95     vlc_mutex_lock( &p_intf->change_lock );
96
97     /* Update the input */
98     if( p_intf->p_sys->p_input == NULL )
99     {
100         p_intf->p_sys->p_input =
101             (input_thread_t *)vlc_object_find( p_intf, VLC_OBJECT_INPUT,
102                                                FIND_ANYWHERE );
103
104         /* Show slider */
105         if( p_intf->p_sys->p_input )
106         {
107             //if( p_intf->p_sys->p_input->stream.b_seekable )
108             {
109                 p_main_interface->slider_frame->Show();
110                 p_main_interface->frame_sizer->Show(
111                     p_main_interface->slider_frame );
112                 p_main_interface->frame_sizer->Layout();
113                 p_main_interface->frame_sizer->Fit( p_main_interface );
114             }
115
116             p_main_interface->statusbar->SetStatusText(
117                 wxU(p_intf->p_sys->p_input->psz_source), 2 );
118
119             p_main_interface->TogglePlayButton( PLAYING_S );
120             i_old_playing_status = PLAYING_S;
121
122             /* Take care of the volume */
123             audio_volume_t i_volume;
124             aout_VolumeGet( p_intf, &i_volume );
125             p_main_interface->volctrl->SetValue( i_volume * 200 * 2 /
126                                                  AOUT_VOLUME_MAX );
127             p_main_interface->volctrl->SetToolTip(
128                 wxString::Format((wxString)wxU(_("Volume")) + wxT(" %d"),
129                 i_volume * 200 / AOUT_VOLUME_MAX ) );
130
131             /* control buttons for free pace streams */
132             b_pace_control = p_intf->p_sys->p_input->stream.b_pace_control;
133         }
134     }
135     else if( p_intf->p_sys->p_input->b_dead )
136     {
137         /* Hide slider */
138         //if( p_intf->p_sys->p_input->stream.b_seekable )
139         {
140             p_main_interface->slider_frame->Hide();
141             p_main_interface->frame_sizer->Hide(
142                 p_main_interface->slider_frame );
143             p_main_interface->frame_sizer->Layout();
144             p_main_interface->frame_sizer->Fit( p_main_interface );
145
146             p_main_interface->TogglePlayButton( PAUSE_S );
147             i_old_playing_status = PAUSE_S;
148         }
149
150         p_main_interface->statusbar->SetStatusText( wxT(""), 0 );
151         p_main_interface->statusbar->SetStatusText( wxT(""), 2 );
152
153         vlc_object_release( p_intf->p_sys->p_input );
154         p_intf->p_sys->p_input = NULL;
155     }
156
157
158
159     if( p_intf->p_sys->p_input )
160     {
161         input_thread_t *p_input = p_intf->p_sys->p_input;
162
163         vlc_mutex_lock( &p_input->stream.stream_lock );
164
165         if( !p_input->b_die )
166         {
167             /* New input or stream map change */
168             p_intf->p_sys->b_playing = 1;
169 #if 0
170             if( p_input->stream.b_changed )
171             {
172                 wxModeManage( p_intf );
173                 wxSetupMenus( p_intf );
174                 p_intf->p_sys->b_playing = 1;
175
176                 p_main_interface->TogglePlayButton( PLAYING_S );
177                 i_old_playing_status = PLAYING_S;
178             }
179 #endif
180
181             /* Manage the slider */
182             if( p_input->stream.b_seekable && p_intf->p_sys->b_playing )
183             {
184                 /* Update the slider if the user isn't dragging it. */
185                 if( p_intf->p_sys->b_slider_free )
186                 {
187                     vlc_value_t pos;
188                     char psz_time[ MSTRTIME_MAX_SIZE ];
189                     char psz_total[ MSTRTIME_MAX_SIZE ];
190                     vlc_value_t time;
191                     mtime_t i_seconds;
192
193                     /* Update the value */
194                     var_Get( p_input, "position", &pos );
195                     if( pos.f_float >= 0.0 )
196                     {
197                         p_intf->p_sys->i_slider_pos =
198                             (int)(SLIDER_MAX_POS * pos.f_float);
199
200                         p_main_interface->slider->SetValue(
201                             p_intf->p_sys->i_slider_pos );
202
203                         var_Get( p_intf->p_sys->p_input, "time", &time );
204                         i_seconds = time.i_time / 1000000;
205                         secstotimestr ( psz_time, i_seconds );
206
207                         var_Get( p_intf->p_sys->p_input, "length",  &time );
208                         i_seconds = time.i_time / 1000000;
209                         secstotimestr ( psz_total, i_seconds );
210
211                         p_main_interface->statusbar->SetStatusText(
212                             wxU(psz_time) + wxString(wxT(" / ")) +
213                             wxU(psz_total), 0 );
214                     }
215                 }
216             }
217
218             /* Manage Playing status */
219             if( i_old_playing_status != p_input->stream.control.i_status )
220             {
221                 if( p_input->stream.control.i_status == PAUSE_S )
222                 {
223                     p_main_interface->TogglePlayButton( PAUSE_S );
224                 }
225                 else
226                 {
227                     p_main_interface->TogglePlayButton( PLAYING_S );
228                 }
229                 i_old_playing_status = p_input->stream.control.i_status;
230             }
231
232             /* Manage Speed status */
233             if( i_old_rate != p_input->stream.control.i_rate )
234             {
235                 p_main_interface->statusbar->SetStatusText(
236                     wxString::Format(wxT("x%.2f"),
237                     1000.0 / p_input->stream.control.i_rate), 1 );
238                 i_old_rate = p_input->stream.control.i_rate;
239             }
240         }
241
242         vlc_mutex_unlock( &p_input->stream.stream_lock );
243     }
244     else if( p_intf->p_sys->b_playing && !p_intf->b_die )
245     {
246         p_intf->p_sys->b_playing = 0;
247         p_main_interface->TogglePlayButton( PAUSE_S );
248         i_old_playing_status = PAUSE_S;
249     }
250
251     if( p_intf->b_die )
252     {
253         vlc_mutex_unlock( &p_intf->change_lock );
254
255         /* Prepare to die, young Skywalker */
256         p_main_interface->Close(TRUE);
257         return;
258     }
259
260     vlc_mutex_unlock( &p_intf->change_lock );
261 }
262
263 /*****************************************************************************
264  * PopupMenuCB: callback triggered by the intf-popupmenu playlist variable.
265  *  We don't show the menu directly here because we don't want the
266  *  caller to block for a too long time.
267  *****************************************************************************/
268 static int PopupMenuCB( vlc_object_t *p_this, const char *psz_variable,
269                         vlc_value_t old_val, vlc_value_t new_val, void *param )
270 {
271     intf_thread_t *p_intf = (intf_thread_t *)param;
272
273     if( p_intf->p_sys->pf_show_dialog )
274     {
275         p_intf->p_sys->pf_show_dialog( p_intf, INTF_DIALOG_POPUPMENU,
276                                        new_val.b_bool, 0 );
277     }
278
279     return VLC_SUCCESS;
280 }