Fix up some bugs with subs.
[libdcp.git] / src / dcp_time.cc
1 /*
2     Copyright (C) 2012 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 <iostream>
21 #include <cmath>
22 #include "dcp_time.h"
23
24 using namespace std;
25 using namespace libdcp;
26
27 Time::Time (int frame, int frames_per_second)
28         : h (0)
29         , m (0)
30         , s (0)
31         , t (0)
32 {
33         float sec_float = float (frame) / frames_per_second;
34         t = (int (sec_float * 1000) % 1000) / 4;
35         s = floor (sec_float);
36
37         if (s > 60) {
38                 m = s / 60;
39                 s -= m * 60;
40         }
41
42         if (m > 60) {
43                 h = m / 60;
44                 m -= h * 60;
45         }
46 }
47
48 bool
49 libdcp::operator== (Time const & a, Time const & b)
50 {
51         return (a.h == b.h && a.m == b.m && a.s == b.s && a.t == b.t);
52 }
53
54 bool
55 libdcp::operator<= (Time const & a, Time const & b)
56 {
57         if (a.h != b.h) {
58                 return a.h <= b.h;
59         }
60
61         if (a.m != b.m) {
62                 return a.m <= b.m;
63         }
64
65         if (a.s != b.s) {
66                 return a.s <= b.s;
67         }
68
69         if (a.t != b.t) {
70                 return a.t <= b.t;
71         }
72
73         return true;
74 }
75
76 ostream &
77 libdcp::operator<< (ostream& s, Time const & t)
78 {
79         s << t.h << ":" << t.m << ":" << t.s << "." << t.t;
80         return s;
81 }