aa222b11610152b11a4590fe722dcca6bb7be07f
[dcpomatic.git] / src / lib / ratio.cc
1 /*
2     Copyright (C) 2013-2021 Carl Hetherington <cth@carlh.net>
3
4     This file is part of DCP-o-matic.
5
6     DCP-o-matic is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 2 of the License, or
9     (at your option) any later version.
10
11     DCP-o-matic is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License
17     along with DCP-o-matic.  If not, see <http://www.gnu.org/licenses/>.
18
19 */
20
21
22 #include "ratio.h"
23 #include "util.h"
24 #include "config.h"
25 #include <dcp/types.h>
26 #include <cfloat>
27
28 #include "i18n.h"
29
30
31 using std::string;
32 using std::vector;
33 using boost::optional;
34
35
36 vector<Ratio> Ratio::_ratios;
37
38
39 void
40 Ratio::setup_ratios ()
41 {
42         _ratios.push_back (Ratio(float(1290) / 1080, "119", _("1.19"),              {},                      "119"));
43         _ratios.push_back (Ratio(float(1440) / 1080, "133", _("1.33 (4:3)"),        {},                      "133"));
44         _ratios.push_back (Ratio(float(1485) / 1080, "138", _("1.38 (Academy)"),    {},                      "137"));
45         _ratios.push_back (Ratio(float(1544) / 1080, "143", _("1.43 (IMAX)"),       {},                      "143"));
46         _ratios.push_back (Ratio(float(1800) / 1080, "166", _("1.66"),              {},                      "166"));
47         _ratios.push_back (Ratio(float(1920) / 1080, "178", _("1.78 (16:9 or HD)"), {},                      "178"));
48         _ratios.push_back (Ratio(float(1998) / 1080, "185", _("1.85 (Flat)"),       string(_("DCI Flat")),   "F"));
49         _ratios.push_back (Ratio(float(2048) /  872, "235", _("2.35 (35mm Scope)"), {},                      "S"));
50         _ratios.push_back (Ratio(float(2048) /  858, "239", _("2.39 (Scope)"),      string(_("DCI Scope")),  "S"));
51         _ratios.push_back (Ratio(float(2048) / 1080, "190", _("1.90 (Full frame)"), string(_("Full frame")), "C"));
52 }
53
54
55 vector<Ratio const *>
56 Ratio::all ()
57 {
58         vector<Ratio const *> pointers;
59         for (Ratio& ratio: _ratios) {
60                 pointers.push_back (&ratio);
61         }
62         return pointers;
63 }
64
65
66 Ratio const *
67 Ratio::from_id (string i)
68 {
69         /* We removed the ratio with id 137; replace it with 138 */
70         if (i == "137") {
71                 i = "138";
72         }
73
74         auto j = _ratios.begin ();
75         while (j != _ratios.end() && j->id() != i) {
76                 ++j;
77         }
78
79         if (j == _ratios.end()) {
80                 return nullptr;
81         }
82
83         return &(*j);
84 }
85
86
87 /** @return Ratio corresponding to a given fractional ratio (+/- 0.01), or 0 */
88 Ratio const *
89 Ratio::from_ratio (float r)
90 {
91         auto j = _ratios.begin ();
92         while (j != _ratios.end() && fabs(j->ratio() - r) > 0.01) {
93                 ++j;
94         }
95
96         if (j == _ratios.end ()) {
97                 return nullptr;
98         }
99
100         return &(*j);
101 }
102
103
104 Ratio const *
105 Ratio::nearest_from_ratio (float r)
106 {
107         vector<Ratio>::const_iterator nearest = _ratios.end();
108         float distance = FLT_MAX;
109
110         for (auto i = _ratios.begin(); i != _ratios.end(); ++i) {
111                 float const d = fabs(i->ratio() - r);
112                 if (d < distance) {
113                         distance = d;
114                         nearest = i;
115                 }
116         }
117
118         DCPOMATIC_ASSERT (nearest != _ratios.end());
119
120         return &(*nearest);
121 }
122
123 vector<Ratio const *>
124 Ratio::containers ()
125 {
126         if (Config::instance()->allow_any_container()) {
127                 return all();
128         }
129
130         vector<Ratio const *> r;
131         r.push_back (Ratio::from_id ("185"));
132         r.push_back (Ratio::from_id ("239"));
133         return r;
134 }
135
136
137 string
138 Ratio::container_nickname () const
139 {
140         if (!_container_nickname) {
141                 /* Fall back to the image nickname; this just for when non-standard container
142                    ratios are enabled.
143                 */
144                 return _image_nickname;
145         }
146
147         return *_container_nickname;
148 }