Re-work Subtitle class; remove STL text writer.
[libsub.git] / src / time_pair.cc
1 /*
2     Copyright (C) 2014 Carl Hetherington <cth@carlh.net>
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #include "time_pair.h"
21
22 using namespace sub;
23
24 FrameTime
25 TimePair::frame (float frames_per_second) const
26 {
27         if (_frame) {
28                 return _frame.get ();
29         }
30
31         MetricTime const m = _metric.get ();
32         return FrameTime (m.hours(), m.minutes(), m.seconds(), m.milliseconds() * frames_per_second / 1000);
33 }
34
35 MetricTime
36 TimePair::metric (float frames_per_second) const
37 {
38         if (_metric) {
39                 return _metric.get ();
40         }
41
42         FrameTime const f = _frame.get ();
43         return MetricTime (f.hours(), f.minutes(), f.seconds(), f.frames() * 1000 / frames_per_second);
44 }
45
46 bool
47 TimePair::operator== (TimePair const & other) const
48 {
49         if (_metric && other._metric) {
50                 return _metric.get() == other._metric.get();
51         } else if (_frame && other._frame) {
52                 return _frame.get() == other._frame.get();
53         }
54
55         return false;
56 }