Logging improvements to allow prettier displays in the server GUI.
[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) /  858, "239", _("Scope"), "S"));
42         _ratios.push_back (new Ratio (float(2048) / 1080, "full-frame", _("Full frame"), "C"));
43 }
44
45 Ratio const *
46 Ratio::from_id (string i)
47 {
48         /* We removed the ratio with id 137; replace it with 138 */
49         if (i == "137") {
50                 i = "138";
51         }
52
53         vector<Ratio const *>::iterator j = _ratios.begin ();
54         while (j != _ratios.end() && (*j)->id() != i) {
55                 ++j;
56         }
57
58         if (j == _ratios.end ()) {
59                 return 0;
60         }
61
62         return *j;
63 }
64
65 /** @return Ratio corresponding to a given fractional ratio (+/- 0.01), or 0 */
66 Ratio const *
67 Ratio::from_ratio (float r)
68 {
69         vector<Ratio const *>::iterator j = _ratios.begin ();
70         while (j != _ratios.end() && fabs ((*j)->ratio() - r) > 0.01) {
71                 ++j;
72         }
73
74         if (j == _ratios.end ()) {
75                 return 0;
76         }
77
78         return *j;
79 }
80
81 Ratio const *
82 Ratio::nearest_from_ratio (float r)
83 {
84         Ratio const * nearest = 0;
85         float distance = FLT_MAX;
86
87         for (vector<Ratio const *>::iterator i = _ratios.begin (); i != _ratios.end(); ++i) {
88                 float const d = fabs ((*i)->ratio() - r);
89                 if (d < distance) {
90                         distance = d;
91                         nearest = *i;
92                 }
93         }
94
95         return nearest;
96 }