Support ISDCF naming convention version 9.
[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 <libdcp/types.h>
21 #include "ratio.h"
22 #include "util.h"
23
24 #include "i18n.h"
25
26 using std::string;
27 using std::stringstream;
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 }