Merge master.
[dcpomatic.git] / src / lib / ratio.cc
1 /*
2     Copyright (C) 2013 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 <dcp/types.h>
21 #include "ratio.h"
22 #include "util.h"
23
24 #include "i18n.h"
25
26 using std::string;
27 using std::vector;
28
29 vector<Ratio const *> Ratio::_ratios;
30
31 void
32 Ratio::setup_ratios ()
33 {
34         _ratios.push_back (new Ratio (float(1290) / 1080, "119", _("1.19"), "119"));
35         _ratios.push_back (new Ratio (float(1440) / 1080, "133", _("4:3"), "133"));
36         _ratios.push_back (new Ratio (float(1480) / 1080, "137", _("Academy"), "137"));
37         _ratios.push_back (new Ratio (float(1485) / 1080, "138", _("1.375"), "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         vector<Ratio const *>::iterator j = _ratios.begin ();
49         while (j != _ratios.end() && (*j)->id() != i) {
50                 ++j;
51         }
52
53         if (j == _ratios.end ()) {
54                 return 0;
55         }
56
57         return *j;
58 }
59
60 /** @return Ratio corresponding to a given fractional ratio (+/- 0.01), or 0 */
61 Ratio const *
62 Ratio::from_ratio (float r)
63 {
64         vector<Ratio const *>::iterator j = _ratios.begin ();
65         while (j != _ratios.end() && fabs ((*j)->ratio() - r) > 0.01) {
66                 ++j;
67         }
68
69         if (j == _ratios.end ()) {
70                 return 0;
71         }
72
73         return *j;
74 }
75