Give Film a container; move crop into video content; other bits.
[dcpomatic.git] / src / lib / container.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 <sstream>
21 #include <libdcp/types.h>
22 #include "container.h"
23
24 #include "i18n.h"
25
26 using std::string;
27 using std::stringstream;
28 using std::vector;
29
30 vector<Container const *> Container::_containers;
31
32 void
33 Container::setup_containers ()
34 {
35         _containers.push_back (new Container (libdcp::Size (1285, 1080), "119", _("1.19"), "F"));
36         _containers.push_back (new Container (libdcp::Size (1436, 1080), "133", _("4:3"), "F"));
37         _containers.push_back (new Container (libdcp::Size (1480, 1080), "137", _("Academy"), "F"));
38         _containers.push_back (new Container (libdcp::Size (1485, 1080), "138", _("1.375"), "F"));
39         _containers.push_back (new Container (libdcp::Size (1793, 1080), "166", _("1.66"), "F"));
40         _containers.push_back (new Container (libdcp::Size (1920, 1080), "178", _("16:9"), "F"));
41         _containers.push_back (new Container (libdcp::Size (1998, 1080), "185", _("Flat"), "F"));
42         _containers.push_back (new Container (libdcp::Size (2048, 858), "239", _("Scope"), "S"));
43         _containers.push_back (new Container (libdcp::Size (2048, 1080), "full-frame", _("Full frame"), "C"));
44 }
45
46 /** @return A name to be presented to the user */
47 string
48 Container::name () const
49 {
50         stringstream s;
51         if (!_nickname.empty ()) {
52                 s << _nickname << " (";
53         }
54
55         s << _dcp_size.width << "x" << _dcp_size.height;
56
57         if (!_nickname.empty ()) {
58                 s << ")";
59         }
60
61         return s.str ();
62 }
63
64 Container const *
65 Container::from_id (string i)
66 {
67         vector<Container const *>::iterator j = _containers.begin ();
68         while (j != _containers.end() && (*j)->id() != i) {
69                 ++j;
70         }
71
72         if (j == _containers.end ()) {
73                 return 0;
74         }
75
76         return *j;
77 }
78
79 float
80 Container::ratio () const
81 {
82         return static_cast<float> (_dcp_size.width) / _dcp_size.height;
83 }