]> git.sesse.net Git - vlc/blob - modules/gui/qt4/input_manager.cpp
Remove debug spammer - fixes #971
[vlc] / modules / gui / qt4 / input_manager.cpp
1 /*****************************************************************************
2  * input_manager.cpp : Manage an input and interact with its GUI elements
3  ****************************************************************************
4  * Copyright (C) 2006 the VideoLAN team
5  * $Id$
6  *
7  * Authors: ClĂ©ment Stenac <zorglub@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., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22  *****************************************************************************/
23
24 #include <assert.h>
25
26 #include "qt4.hpp"
27 #include "input_manager.hpp"
28 #include "dialogs_provider.hpp"
29
30 static int ChangeVideo( vlc_object_t *p_this, const char *var, vlc_value_t o,
31                         vlc_value_t n, void *param );
32 static int ChangeAudio( vlc_object_t *p_this, const char *var, vlc_value_t o,
33                         vlc_value_t n, void *param );
34
35 /**********************************************************************
36  * InputManager implementation
37  **********************************************************************/
38
39 InputManager::InputManager( QObject *parent, intf_thread_t *_p_intf) :
40                            QObject( parent ), p_intf( _p_intf )
41 {
42     i_old_playing_status = END_S;
43     p_input = NULL;
44     ON_TIMEOUT( update() );
45 }
46
47 InputManager::~InputManager()
48 {
49 }
50
51 void InputManager::setInput( input_thread_t *_p_input )
52 {
53     p_input = _p_input;
54     emit positionUpdated( 0.0,0,0 );
55     b_had_audio = b_had_video = b_has_audio = b_has_video = false;
56     if( p_input )
57     {
58         vlc_value_t val;
59         var_Change( p_input, "video-es", VLC_VAR_CHOICESCOUNT, &val, NULL );
60         b_has_video = val.i_int > 0;
61         var_Change( p_input, "audio-es", VLC_VAR_CHOICESCOUNT, &val, NULL );
62         b_has_audio = val.i_int > 0;
63         var_AddCallback( p_input, "audio-es", ChangeAudio, this );
64         var_AddCallback( p_input, "video-es", ChangeVideo, this );
65     }
66
67 }
68 void InputManager::delInput()
69 {
70     if( p_input )
71     {
72         var_DelCallback( p_input, "audio-es", ChangeAudio, this );
73         var_DelCallback( p_input, "video-es", ChangeVideo, this );
74     }
75 }
76
77 void InputManager::update()
78 {
79     /// \todo Emit the signals only if it changed
80     if( !p_input ) return;
81
82     if( p_input->b_dead || p_input->b_die )
83     {
84         emit positionUpdated( 0.0, 0, 0 );
85         msg_Dbg( p_intf, "*********** NAV 0");
86         emit navigationChanged( 0 );
87         emit statusChanged( 0 ); // 0 = STOPPED, 1 = PLAY, 2 = PAUSE
88     }
89
90     if( !b_had_audio && b_has_audio )
91         emit audioStarted();
92     if( !b_had_video && b_has_video )
93         emit videoStarted();
94
95     /* Update position */
96     mtime_t i_length, i_time;
97     float f_pos;
98     i_length = var_GetTime( p_input, "length" ) / 1000000;
99     i_time = var_GetTime( p_input, "time") / 1000000;
100     f_pos = var_GetFloat( p_input, "position" );
101     emit positionUpdated( f_pos, i_time, i_length );
102
103     /* Update disc status */
104     vlc_value_t val; val.i_int = 0;
105     var_Change( p_input, "title", VLC_VAR_CHOICESCOUNT, &val, NULL );
106     if( val.i_int > 0 )
107     {
108         val.i_int = 0;
109         var_Change( p_input, "chapter", VLC_VAR_CHOICESCOUNT, &val, NULL );
110         if( val.i_int > 0 )
111         {
112             msg_Dbg( p_intf, "******* CHAPTER");
113             emit navigationChanged( 1 ); // 1 = chapter, 2 = title, 0 = NO
114         }
115         else
116         {
117             msg_Dbg( p_intf, "******* TITLE");
118             emit navigationChanged( 2 );
119         }
120     }
121     else
122     {
123         emit navigationChanged( 0 );
124     }
125
126     /* Update text */
127     QString text;
128     if( input_GetItem(p_input)->p_meta &&
129         input_GetItem(p_input)->p_meta->psz_nowplaying &&
130         *input_GetItem(p_input)->p_meta->psz_nowplaying )
131     {
132         text.sprintf( "%s - %s",
133                   input_GetItem(p_input)->p_meta->psz_nowplaying,
134                   input_GetItem(p_input)->psz_name );
135     }
136     else
137     {
138         text.sprintf( "%s", input_GetItem(p_input)->psz_name );
139     }
140     emit nameChanged( text );
141
142     /* Update playing status */
143     var_Get( p_input, "state", &val );
144     val.i_int = val.i_int == PAUSE_S ? PAUSE_S : PLAYING_S;
145     if( i_old_playing_status != val.i_int )
146     {
147         i_old_playing_status = val.i_int;
148         emit statusChanged(  val.i_int == PAUSE_S ? PAUSE_S : PLAYING_S );
149     }
150 }
151
152 void InputManager::sliderUpdate( float new_pos )
153 {
154     if( hasInput() )
155         var_SetFloat( p_input, "position", new_pos );
156 }
157
158 void InputManager::togglePlayPause()
159 {
160     vlc_value_t state;
161     var_Get( p_input, "state", &state );
162     if( state.i_int != PAUSE_S )
163     {
164         /* A stream is being played, pause it */
165         state.i_int = PAUSE_S;
166     }
167     else
168     {
169         /* Stream is paused, resume it */
170         state.i_int = PLAYING_S;
171     }
172     var_Set( p_input, "state", state );
173     emit statusChanged( state.i_int );
174 }
175
176 void InputManager::sectionPrev()
177 {
178     if( hasInput() )
179     {
180         int i_type = var_Type( p_input, "prev-chapter" );
181         vlc_value_t val; val.b_bool = VLC_TRUE;
182         var_Set( p_input, (i_type & VLC_VAR_TYPE) != 0 ?
183                             "prev-chapter":"prev-title", val );
184     }
185 }
186
187 void InputManager::sectionNext()
188 {
189     if( hasInput() )
190     {
191         int i_type = var_Type( p_input, "prev-chapter" );
192         vlc_value_t val; val.b_bool = VLC_TRUE;
193         var_Set( p_input, (i_type & VLC_VAR_TYPE) != 0 ?
194                             "next-chapter":"next-title", val );
195     }
196 }
197
198 void InputManager::sectionMenu()
199 {
200     if( hasInput() )
201         var_SetInteger( p_input, "title 0", 2);
202 }
203
204 void InputManager::slower()
205 {
206     if( hasInput() )
207         var_SetVoid( p_input, "rate-slower" );
208 }
209
210 void InputManager::faster()
211 {
212     if( hasInput() )
213         var_SetVoid( p_input, "rate-faster" );
214 }
215
216 void InputManager::normalRate()
217 {
218     if( hasInput() )
219         var_SetInteger( p_input, "rate", INPUT_RATE_DEFAULT );
220 }
221
222 /**********************************************************************
223  * MainInputManager implementation. Wrap an input manager and
224  * take care of updating the main playlist input
225  **********************************************************************/
226 MainInputManager * MainInputManager::instance = NULL;
227
228 MainInputManager::MainInputManager( intf_thread_t *_p_intf ) : QObject(NULL),
229                                                 p_intf( _p_intf )
230 {
231     p_input = NULL;
232     im = new InputManager( this, p_intf );
233     ON_TIMEOUT( updateInput() );
234     /* Warn our embedded IM about input changes */
235     CONNECT( this, inputChanged( input_thread_t * ),
236              im,   setInput( input_thread_t * ) );
237 }
238
239 MainInputManager::~MainInputManager()
240 {
241     if( p_input ) vlc_object_release( p_input );
242 }
243
244 void MainInputManager::updateInput()
245 {
246     vlc_mutex_lock( &p_intf->change_lock );
247     if( p_input && p_input->b_dead )
248     {
249         vlc_object_release( p_input );
250         getIM()->delInput();
251         p_input = NULL;
252         emit inputChanged( NULL );
253     }
254
255     if( !p_input )
256     {
257         QPL_LOCK;
258         p_input = THEPL->p_input;
259         if( p_input )
260         {
261             vlc_object_yield( p_input );
262             emit inputChanged( p_input );
263         }
264         QPL_UNLOCK;
265     }
266     vlc_mutex_unlock( &p_intf->change_lock );
267 }
268
269 void MainInputManager::togglePlayPause()
270 {
271     if( p_input == NULL )
272     {
273         playlist_Play( THEPL );
274         return;
275     }
276     getIM()->togglePlayPause();
277 }
278
279
280 static int ChangeAudio( vlc_object_t *p_this, const char *var, vlc_value_t o,
281                         vlc_value_t n, void *param )
282 {
283     InputManager *im = (InputManager*)param;
284     im->b_has_audio = true;
285     return 0;
286 }
287
288 static int ChangeVideo( vlc_object_t *p_this, const char *var, vlc_value_t o,
289                         vlc_value_t n, void *param )
290 {
291     InputManager *im = (InputManager*)param;
292     im->b_has_video = true;
293     return 0;
294 }