]> git.sesse.net Git - vlc/blob - modules/gui/skins2/vars/time.cpp
2cf98aa45139d84a1b0be99976b0cd62c2d8d685
[vlc] / modules / gui / skins2 / vars / time.cpp
1 /*****************************************************************************
2  * time.cpp
3  *****************************************************************************
4  * Copyright (C) 2003 VideoLAN
5  * $Id$
6  *
7  * Authors: Cyril Deguet     <asmax@via.ecp.fr>
8  *          Olivier Teulière <ipkiss@via.ecp.fr>
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation; either version 2 of the License, or
13  * (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
23  *****************************************************************************/
24
25 #include <stdio.h>  // snprintf
26
27 #include "time.hpp"
28 #include <vlc/input.h>
29
30
31 void Time::set( float percentage, bool updateVLC )
32 {
33     if( getIntf()->p_sys->p_input == NULL )
34     {
35         return;
36     }
37
38     VarPercent::set( percentage );
39
40     // Avoid looping forever...
41     if( updateVLC )
42     {
43         vlc_value_t pos;
44         pos.f_float = percentage;
45
46         var_Set( getIntf()->p_sys->p_input, "position", pos );
47     }
48 }
49
50
51 const string Time::getAsStringPercent() const
52 {
53     int value = (int)(100. * get());
54     // 0 <= value <= 100, so we need 4 chars
55     char *str = new char[4];
56     snprintf( str, 4, "%d", value );
57     string ret = str;
58     delete[] str;
59
60     return ret;
61 }
62
63
64 const string Time::getAsStringCurrTime() const
65 {
66     if( getIntf()->p_sys->p_input == NULL ||
67         !getIntf()->p_sys->p_input->stream.b_seekable )
68     {
69         return "-:--:--";
70     }
71
72     vlc_value_t time;
73     var_Get( getIntf()->p_sys->p_input, "time", &time );
74
75     return formatTime( time.i_time / 1000000 );
76 }
77
78
79 const string Time::getAsStringTimeLeft() const
80 {
81     if( getIntf()->p_sys->p_input == NULL ||
82         !getIntf()->p_sys->p_input->stream.b_seekable )
83     {
84         return "-:--:--";
85     }
86
87     vlc_value_t time, duration;
88     var_Get( getIntf()->p_sys->p_input, "time", &time );
89     var_Get( getIntf()->p_sys->p_input, "length", &duration );
90
91     return formatTime( (duration.i_time - time.i_time) / 1000000 );
92 }
93
94
95 const string Time::getAsStringDuration() const
96 {
97     if( getIntf()->p_sys->p_input == NULL ||
98         !getIntf()->p_sys->p_input->stream.b_seekable )
99     {
100         return "-:--:--";
101     }
102
103     vlc_value_t time;
104     var_Get( getIntf()->p_sys->p_input, "length", &time );
105
106     return formatTime( time.i_time / 1000000 );
107 }
108
109
110 const string Time::formatTime( int seconds ) const
111 {
112     char *psz_time = new char[MSTRTIME_MAX_SIZE];
113     snprintf( psz_time, MSTRTIME_MAX_SIZE, "%d:%02d:%02d",
114               (int) (seconds / (60 * 60)),
115               (int) (seconds / 60 % 60),
116               (int) (seconds % 60) );
117
118     string ret = psz_time;
119     delete[] psz_time;
120
121     return ret;
122 }