Add 2.35:1 ratio.
[dcpomatic.git] / src / lib / ratio.cc
1 /*
2     Copyright (C) 2013-2015 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 "ratio.h"
21 #include "util.h"
22 #include <dcp/types.h>
23 #include <cfloat>
24
25 #include "i18n.h"
26
27 using std::string;
28 using std::vector;
29
30 vector<Ratio const *> Ratio::_ratios;
31
32 void
33 Ratio::setup_ratios ()
34 {
35         _ratios.push_back (new Ratio (float(1290) / 1080, "119", _("1.19"), "119"));
36         _ratios.push_back (new Ratio (float(1440) / 1080, "133", _("4:3"), "133"));
37         _ratios.push_back (new Ratio (float(1485) / 1080, "138", _("Academy"), "137"));
38         _ratios.push_back (new Ratio (float(1800) / 1080, "166", _("1.66"), "166"));
39         _ratios.push_back (new Ratio (float(1920) / 1080, "178", _("16:9"), "178"));
40         _ratios.push_back (new Ratio (float(1998) / 1080, "185", _("Flat"), "F"));
41         _ratios.push_back (new Ratio (float(2048) /  872, "235", _("2.35"), "S"));
42         _ratios.push_back (new Ratio (float(2048) /  858, "239", _("Scope"), "S"));
43         _ratios.push_back (new Ratio (float(2048) / 1080, "full-frame", _("Full frame"), "C"));
44 }
45
46 Ratio const *
47 Ratio::from_id (string i)
48 {
49         /* We removed the ratio with id 137; replace it with 138 */
50         if (i == "137") {
51                 i = "138";
52         }
53
54         vector<Ratio const *>::iterator j = _ratios.begin ();
55         while (j != _ratios.end() && (*j)->id() != i) {
56                 ++j;
57         }
58
59         if (j == _ratios.end ()) {
60                 return 0;
61         }
62
63         return *j;
64 }
65
66 /** @return Ratio corresponding to a given fractional ratio (+/- 0.01), or 0 */
67 Ratio const *
68 Ratio::from_ratio (float r)
69 {
70         vector<Ratio const *>::iterator j = _ratios.begin ();
71         while (j != _ratios.end() && fabs ((*j)->ratio() - r) > 0.01) {
72                 ++j;
73         }
74
75         if (j == _ratios.end ()) {
76                 return 0;
77         }
78
79         return *j;
80 }
81
82 Ratio const *
83 Ratio::nearest_from_ratio (float r)
84 {
85         Ratio const * nearest = 0;
86         float distance = FLT_MAX;
87
88         for (vector<Ratio const *>::iterator i = _ratios.begin (); i != _ratios.end(); ++i) {
89                 float const d = fabs ((*i)->ratio() - r);
90                 if (d < distance) {
91                         distance = d;
92                         nearest = *i;
93                 }
94         }
95
96         return nearest;
97 }