Bump version
[dcpomatic.git] / src / lib / format.cc
1 /*
2     Copyright (C) 2012 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 /** @file src/format.cc
21  *  @brief Class to describe a format (aspect ratio) that a Film should
22  *  be shown in.
23  */
24
25 #include <sstream>
26 #include <cstdlib>
27 #include <cassert>
28 #include <iomanip>
29 #include <iostream>
30 #include "format.h"
31 #include "film.h"
32
33 #include "i18n.h"
34
35 using std::string;
36 using std::setprecision;
37 using std::stringstream;
38 using std::vector;
39 using boost::shared_ptr;
40 using libdcp::Size;
41
42 vector<Format const *> Format::_formats;
43
44 /** @return A name to be presented to the user */
45 string
46 FixedFormat::name () const
47 {
48         stringstream s;
49         if (!_nickname.empty ()) {
50                 s << _nickname << N_(" (");
51         }
52
53         s << setprecision(3) << (_ratio / 100.0) << N_(":1");
54
55         if (!_nickname.empty ()) {
56                 s << N_(")");
57         }
58
59         return s.str ();
60 }
61
62 /** @return Identifier for this format as metadata for a Film's metadata file */
63 string
64 Format::as_metadata () const
65 {
66         return _id;
67 }
68
69 /** Fill our _formats vector with all available formats */
70 void
71 Format::setup_formats ()
72 {
73         /// TRANSLATORS: these are film picture aspect ratios; "Academy" means 1.37, "Flat" 1.85 and "Scope" 2.39.
74         _formats.push_back (
75                 new FixedFormat (119, libdcp::Size (1285, 1080), N_("119"), _("1.19"), N_("F")
76                         ));
77         
78         _formats.push_back (
79                 new FixedFormat (133, libdcp::Size (1436, 1080), N_("133"), _("1.33"), N_("F")
80                         ));
81         
82         _formats.push_back (
83                 new FixedFormat (138, libdcp::Size (1485, 1080), N_("138"), _("1.375"), N_("F")
84                         ));
85         
86         _formats.push_back (
87                 new FixedFormat (133, libdcp::Size (1998, 1080), N_("133-in-flat"), _("4:3 within Flat"), N_("F")
88                         ));
89         
90         _formats.push_back (
91                 new FixedFormat (137, libdcp::Size (1480, 1080), N_("137"), _("Academy"), N_("F")
92                         ));
93         
94         _formats.push_back (
95                 new FixedFormat (166, libdcp::Size (1793, 1080), N_("166"), _("1.66"), N_("F")
96                         ));
97         
98         _formats.push_back (
99                 new FixedFormat (166, libdcp::Size (1998, 1080), N_("166-in-flat"), _("1.66 within Flat"), N_("F")
100                         ));
101         
102         _formats.push_back (
103                 new FixedFormat (178, libdcp::Size (1998, 1080), N_("178-in-flat"), _("16:9 within Flat"), N_("F")
104                         ));
105         
106         _formats.push_back (
107                 new FixedFormat (178, libdcp::Size (1920, 1080), N_("178"), _("16:9"), N_("F")
108                         ));
109         
110         _formats.push_back (
111                 new FixedFormat (185, libdcp::Size (1998, 1080), N_("185"), _("Flat"), N_("F")
112                         ));
113         
114         _formats.push_back (
115                 new FixedFormat (178, libdcp::Size (2048, 858), N_("178-in-scope"), _("16:9 within Scope"), N_("S")
116                         ));
117         
118         _formats.push_back (
119                 new FixedFormat (239, libdcp::Size (2048, 858), N_("239"), _("Scope"), N_("S")
120                         ));
121                 
122         _formats.push_back (
123                 new VariableFormat (libdcp::Size (1998, 1080), N_("var-185"), _("Flat without stretch"), N_("F")
124                         ));
125         
126         _formats.push_back (
127                 new VariableFormat (libdcp::Size (2048, 858), N_("var-239"), _("Scope without stretch"), N_("S")
128                         ));
129 }
130
131 /** @param n Nickname.
132  *  @return Matching Format, or 0.
133  */
134 Format const *
135 Format::from_nickname (string n)
136 {
137         vector<Format const *>::iterator i = _formats.begin ();
138         while (i != _formats.end() && (*i)->nickname() != n) {
139                 ++i;
140         }
141
142         if (i == _formats.end ()) {
143                 return 0;
144         }
145
146         return *i;
147 }
148
149 /** @param i Id.
150  *  @return Matching Format, or 0.
151  */
152 Format const *
153 Format::from_id (string i)
154 {
155         vector<Format const *>::iterator j = _formats.begin ();
156         while (j != _formats.end() && (*j)->id() != i) {
157                 ++j;
158         }
159
160         if (j == _formats.end ()) {
161                 return 0;
162         }
163
164         return *j;
165 }
166
167
168 /** @param m Metadata, as returned from as_metadata().
169  *  @return Matching Format, or 0.
170  */
171 Format const *
172 Format::from_metadata (string m)
173 {
174         return from_id (m);
175 }
176
177 /** @return All available formats */
178 vector<Format const *>
179 Format::all ()
180 {
181         return _formats;
182 }
183
184 /** @param r Ratio multiplied by 100 (e.g. 185)
185  *  @param dcp Size (in pixels) of the images that we should put in a DCP.
186  *  @param id ID (e.g. 185)
187  *  @param n Nick name (e.g. Flat)
188  */
189 FixedFormat::FixedFormat (int r, libdcp::Size dcp, string id, string n, string d)
190         : Format (dcp, id, n, d)
191         , _ratio (r)
192 {
193
194 }
195
196 /** @return Number of pixels (int the DCP image) to pad either side of the film
197  *  (so there are dcp_padding() pixels on the left and dcp_padding() on the right)
198  */
199 int
200 Format::dcp_padding (shared_ptr<const Film> f) const
201 {
202         int p = rint ((_dcp_size.width - (_dcp_size.height * ratio_as_float(f))) / 2.0);
203
204         /* This comes out -ve for Scope; bodge it */
205         if (p < 0) {
206                 p = 0;
207         }
208         
209         return p;
210 }
211
212 float
213 Format::container_ratio_as_float () const
214 {
215         return static_cast<float> (_dcp_size.width) / _dcp_size.height;
216 }
217
218 VariableFormat::VariableFormat (libdcp::Size dcp, string id, string n, string d)
219         : Format (dcp, id, n, d)
220 {
221
222 }
223
224 int
225 VariableFormat::ratio_as_integer (shared_ptr<const Film> f) const
226 {
227         return rint (ratio_as_float (f) * 100);
228 }
229
230 float
231 VariableFormat::ratio_as_float (shared_ptr<const Film> f) const
232 {
233         libdcp::Size const c = f->cropped_size (f->size ());
234         return float (c.width) / c.height;
235 }
236
237 /** @return A name to be presented to the user */
238 string
239 VariableFormat::name () const
240 {
241         return _nickname;
242 }