Fix bugs in previous commit that caused FTBFS in synfig and ETL FTBFS with older...
[synfig.git] / synfig-core / tags / 0.61.08 / src / synfig / time.cpp
1 /* === S Y N F I G ========================================================= */
2 /*!     \file time.cpp
3 **      \brief Template File
4 **
5 **      $Id$
6 **
7 **      \legal
8 **      Copyright (c) 2002-2005 Robert B. Quattlebaum Jr., Adrian Bentley
9 **      Copyright (c) 2007, 2008 Chris Moore
10 **
11 **      This package is free software; you can redistribute it and/or
12 **      modify it under the terms of the GNU General Public License as
13 **      published by the Free Software Foundation; either version 2 of
14 **      the License, or (at your option) any later version.
15 **
16 **      This package is distributed in the hope that it will be useful,
17 **      but WITHOUT ANY WARRANTY; without even the implied warranty of
18 **      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 **      General Public License for more details.
20 **      \endlegal
21 */
22 /* ========================================================================= */
23
24 /* === H E A D E R S ======================================================= */
25
26 #ifdef USING_PCH
27 #       include "pch.h"
28 #else
29 #ifdef HAVE_CONFIG_H
30 #       include <config.h>
31 #endif
32
33 #include "time.h"
34 #include <ETL/stringf>
35 #include <ETL/misc>
36 #include "general.h"
37 #include <cmath>
38 #include <cassert>
39 #include <algorithm>
40 #include <ctype.h>
41 #include <math.h>
42
43
44 #ifdef WIN32
45 #include <float.h>
46 #ifndef isnan
47 extern "C" { int _isnan(double x); }
48 #define isnan _isnan
49 #endif
50 #endif
51
52 // For some reason isnan() isn't working on macosx any more.
53 // This is a quick fix.
54 #if defined(__APPLE__) && !defined(SYNFIG_ISNAN_FIX)
55 #ifdef isnan
56 #undef isnan
57 #endif
58 inline bool isnan(double x) { return x != x; }
59 inline bool isnan(float x) { return x != x; }
60 #define SYNFIG_ISNAN_FIX 1
61 #endif
62
63
64 #endif
65
66 /* === U S I N G =========================================================== */
67
68 using namespace std;
69 using namespace etl;
70 using namespace synfig;
71
72 #define tolower ::tolower
73
74 /* === M A C R O S ========================================================= */
75
76 /* === G L O B A L S ======================================================= */
77
78 /* === M E T H O D S ======================================================= */
79
80 Time::Time(const String &str_, float fps):
81         value_(0)
82 {
83         String str(str_);
84         std::transform(str.begin(),str.end(),str.begin(),&tolower);
85
86         // Start/Begin Of Time
87         if(str=="sot" || str=="bot")
88         {
89                 operator=(begin());
90                 return;
91         }
92         // End Of Time
93         if(str=="eot")
94         {
95                 operator=(end());
96                 return;
97         }
98
99
100         unsigned int pos=0;
101         int read;
102         float amount;
103
104         // Now try to read it in the letter-abbreviated format
105         while(pos<str.size() && sscanf(String(str,pos).c_str(),"%f%n",&amount,&read))
106         {
107                 pos+=read;
108                 if(pos>=str.size() || read==0)
109                 {
110                         // Throw up a warning if there are no units
111                         // and the amount isn't zero. There is no need
112                         // to warn about units if the value is zero
113                         // it is the only case where units are irrelevant.
114                         if(amount!=0)
115                                 synfig::warning("Time(): No unit provided in time code, assuming SECONDS (\"%s\")",str.c_str());
116                         value_+=amount;
117                         return;
118                 }
119                 switch(str[pos])
120                 {
121                         case 'h':
122                         case 'H':
123                                 value_+=amount*3600;
124                                 break;
125                         case 'm':
126                         case 'M':
127                                 value_+=amount*60;
128                                 break;
129                         case 's':
130                         case 'S':
131                                 value_+=amount;
132                                 break;
133                         case 'f':
134                         case 'F':
135                                 if(fps)
136                                         value_+=amount/fps;
137                                 else
138                                         synfig::warning("Time(): Individual frames referenced, but frame rate is unknown");
139                                 break;
140                         case ':':
141                                 // try to read it in as a traditional time format
142                                 {
143                                         int hour,minute,second;
144                                         float frame;
145                                         if(fps && sscanf(str.c_str(),"%d:%d:%d.%f",&hour,&minute,&second,&frame)==4)
146                                         {
147                                                         value_=frame/fps+(hour*3600+minute*60+second);
148                                                         return;
149                                         }
150
151                                         if(sscanf(str.c_str(),"%d:%d:%d",&hour,&minute,&second)==3)
152                                         {
153                                                 value_=hour*3600+minute*60+second;
154                                                 return;
155                                         }
156                                 }
157                                 synfig::warning("Time(): Bad time format");
158                                 break;
159
160                         default:
161                                 value_+=amount;
162                                 synfig::warning("Time(): Unexpected character '%c' when parsing time string \"%s\"",str[pos],str.c_str());
163                                 break;
164                 }
165                 pos++;
166                 amount=0;
167         }
168 }
169
170 String
171 Time::get_string(float fps, Time::Format format)const
172 {
173         Time time(*this);
174
175         if(time<=begin())
176                 return "SOT";   // Start Of Time
177         if(time>=end())
178                 return "EOT";   // End Of Time
179
180         if(fps<0)fps=0;
181
182         if(ceil(time.value_)-time.value_<epsilon_())
183                 time.value_=ceil(time.value_);
184
185         int hour,minute;
186
187         hour=time/3600;time-=hour*3600;
188         minute=time/60;time-=minute*60;
189
190         // <= is redefined, so this means "is the FORMAT_VIDEO bit set in the format?"
191         if(format<=FORMAT_VIDEO)
192         {
193                 int second;
194                 second=time;time-=second;
195
196                 if(fps && fps>1)
197                 {
198                         int frame;
199                         frame=round_to_int(time*fps);
200
201                         return strprintf("%02d:%02d:%02d.%02d",hour,minute,second,frame);
202                 }
203                 else
204                         return strprintf("%02d:%02d:%02d",hour,minute,second);
205         }
206
207         if (format <= FORMAT_FRAMES)
208         {
209                 if (fps && fps>0)
210                         return strprintf("%df", round_to_int(time * fps));
211                 else
212                         return strprintf("%ds", round_to_int(time * 1));
213         }
214
215         String ret;
216         bool started = false;
217
218         if(format<=FORMAT_FULL || hour)
219         {
220                 ret+=strprintf("%dh",hour);
221                 started = true;
222         }
223
224         if(format<=FORMAT_FULL || minute)
225         {
226                 if (!(format<=FORMAT_NOSPACES) && started)
227                         ret += " ";
228
229                 ret += strprintf("%dm", minute);
230                 started = true;
231         }
232
233         if(fps && fps>1)
234         {
235                 int second;
236                 float frame;
237                 second=time;time-=second;
238                 frame=time*fps;
239
240                 if(format<=FORMAT_FULL || second)
241                 {
242                         if (!(format<=FORMAT_NOSPACES) && started)
243                                 ret += " ";
244
245                         ret += strprintf("%ds", (int)second);
246                         started = true;
247                 }
248
249                 if(format<=FORMAT_FULL || frame || !started)
250                 {
251                         if (!(format<=FORMAT_NOSPACES) && started)
252                                 ret += " ";
253
254                         if(abs(frame-floor(frame) >= epsilon_()))
255                                 ret += strprintf("%0.3ff", frame);
256                         else
257                                 ret += strprintf("%0.0ff", frame);
258                 }
259         }
260         else
261         {
262                 float second;
263                 second=time;
264                 if(format<=FORMAT_FULL || second || !started)
265                 {
266                         if (!(format<=FORMAT_NOSPACES) && started)
267                                 ret += " ";
268
269                         if(abs(second-floor(second))>=epsilon_())
270                         {
271                                 String seconds(strprintf("%0.8f",second));
272
273                                 // skip trailing zeros
274                                 int count = 0;
275                                 String::reverse_iterator i = seconds.rbegin();
276                                 for ( ; (*i) == '0'; i++)
277                                         count++;
278
279                                 // if we removed too many, go back one place, leaving one zero
280                                 if (*i < '0' || *i > '9') count--;
281
282                                 ret += seconds.substr(0, seconds.size()-count) + "s";
283                         }
284                         else
285                                 ret+=strprintf("%0.0fs",second);
286                 }
287         }
288
289         return ret;
290 }
291
292 Time
293 Time::round(float fps)const
294 {
295         assert(fps>0);
296
297         value_type time(*this);
298
299         time*=fps;
300
301         if(abs(time-floor(time))<0.5)
302                 return floor(time)/fps;
303         else
304                 return ceil(time)/fps;
305 }
306
307 #ifdef _DEBUG
308 const char *
309 Time::c_str()const
310 {
311         return get_string().c_str();
312 }
313 #endif
314
315 //! \writeme
316 bool
317 Time::is_valid()const
318 {
319         return !isnan(value_);
320 }