Hand-apply d849d411cff28ef5453085791d0b4d7cd73bd070 from master; replace all assert...
[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 "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(1480) / 1080, "137", _("Academy"), "137"));
38         _ratios.push_back (new Ratio (float(1485) / 1080, "138", _("1.375"), "137"));
39         _ratios.push_back (new Ratio (float(1800) / 1080, "166", _("1.66"), "166"));
40         _ratios.push_back (new Ratio (float(1920) / 1080, "178", _("16:9"), "178"));
41         _ratios.push_back (new Ratio (float(1998) / 1080, "185", _("Flat"), "F"));
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         vector<Ratio const *>::iterator j = _ratios.begin ();
50         while (j != _ratios.end() && (*j)->id() != i) {
51                 ++j;
52         }
53
54         if (j == _ratios.end ()) {
55                 return 0;
56         }
57
58         return *j;
59 }
60
61 /** @return Ratio corresponding to a given fractional ratio (+/- 0.01), or 0 */
62 Ratio const *
63 Ratio::from_ratio (float r)
64 {
65         vector<Ratio const *>::iterator j = _ratios.begin ();
66         while (j != _ratios.end() && fabs ((*j)->ratio() - r) > 0.01) {
67                 ++j;
68         }
69
70         if (j == _ratios.end ()) {
71                 return 0;
72         }
73
74         return *j;
75 }
76    
77 Ratio const *
78 Ratio::nearest_from_ratio (float r)
79 {
80         Ratio const * nearest = 0;
81         float distance = FLT_MAX;
82         
83         for (vector<Ratio const *>::iterator i = _ratios.begin (); i != _ratios.end(); ++i) {
84                 float const d = fabs ((*i)->ratio() - r);
85                 if (d < distance) {
86                         distance = d;
87                         nearest = *i;
88                 }
89         }
90
91         return nearest;
92 }