Time from frame.
[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 {
29         float sec_float = float (frame) / frames_per_second;
30         ms = int (sec_float * 1000) % 1000;
31         s = floor (sec_float);
32
33         if (s > 60) {
34                 m = s / 60;
35                 s -= m * 60;
36         }
37
38         if (m > 60) {
39                 h = m / 60;
40                 m -= h * 60;
41         }
42 }
43
44 bool
45 libdcp::operator== (Time const & a, Time const & b)
46 {
47         return (a.h == b.h && a.m == b.m && a.s == b.s && a.ms == b.ms);
48 }
49
50 bool
51 libdcp::operator<= (Time const & a, Time const & b)
52 {
53         if (a.h != b.h) {
54                 return a.h <= b.h;
55         }
56
57         if (a.m != b.m) {
58                 return a.m <= b.m;
59         }
60
61         if (a.s != b.s) {
62                 return a.s <= b.s;
63         }
64
65         if (a.ms != b.ms) {
66                 return a.ms <= b.ms;
67         }
68
69         return true;
70 }
71
72 ostream &
73 libdcp::operator<< (ostream& s, Time const & t)
74 {
75         s << t.h << ":" << t.m << ":" << t.s << "." << t.ms;
76         return s;
77 }