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