Supporters update.
[dcpomatic.git] / src / lib / render_text.cc
1 /*
2     Copyright (C) 2014-2016 Carl Hetherington <cth@carlh.net>
3
4     This file is part of DCP-o-matic.
5
6     DCP-o-matic is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 2 of the License, or
9     (at your option) any later version.
10
11     DCP-o-matic is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License
17     along with DCP-o-matic.  If not, see <http://www.gnu.org/licenses/>.
18
19 */
20
21 #include "render_text.h"
22 #include "types.h"
23 #include "image.h"
24 #include "cross.h"
25 #include "font.h"
26 #include "dcpomatic_assert.h"
27 #include <dcp/raw_convert.h>
28 #include <fontconfig/fontconfig.h>
29 #include <cairomm/cairomm.h>
30 #include <pangomm.h>
31 #ifndef DCPOMATIC_HAVE_SHOW_IN_CAIRO_CONTEXT
32 #include <pango/pangocairo.h>
33 #endif
34 #include <boost/foreach.hpp>
35 #include <boost/algorithm/string.hpp>
36 #include <iostream>
37
38 using std::list;
39 using std::cout;
40 using std::string;
41 using std::min;
42 using std::max;
43 using std::pair;
44 using std::cerr;
45 using std::make_pair;
46 using boost::shared_ptr;
47 using boost::optional;
48 using boost::algorithm::replace_all;
49
50 static FcConfig* fc_config = 0;
51 static list<pair<boost::filesystem::path, string> > fc_config_fonts;
52
53 string
54 marked_up (list<StringText> subtitles, int target_height, float fade_factor)
55 {
56         string out;
57
58         BOOST_FOREACH (StringText const & i, subtitles) {
59                 out += "<span ";
60                 if (i.italic()) {
61                         out += "style=\"italic\" ";
62                 }
63                 if (i.bold()) {
64                         out += "weight=\"bold\" ";
65                 }
66                 if (i.underline()) {
67                         out += "underline=\"single\" ";
68                 }
69                 out += "size=\"" + dcp::raw_convert<string>(i.size_in_pixels(target_height) * 72 * 1024 / 96) + "\" ";
70                 /* Between 1-65535 inclusive, apparently... */
71                 out += "alpha=\"" + dcp::raw_convert<string>(int(floor(fade_factor * 65534)) + 1) + "\" ";
72                 out += "color=\"#" + i.colour().to_rgb_string() + "\">";
73
74                 string t = i.text();
75                 replace_all(t, "&", "&amp;");
76                 out += t;
77
78                 out += "</span>";
79         }
80
81         return out;
82 }
83
84 static void
85 set_source_rgba (Cairo::RefPtr<Cairo::Context> context, dcp::Colour colour, float fade_factor)
86 {
87         context->set_source_rgba (float(colour.r) / 255, float(colour.g) / 255, float(colour.b) / 255, fade_factor);
88 }
89
90 /** @param subtitles A list of subtitles that are all on the same line,
91  *  at the same time and with the same fade in/out.
92  */
93 static PositionImage
94 render_line (list<StringText> subtitles, list<shared_ptr<Font> > fonts, dcp::Size target, DCPTime time, int frame_rate)
95 {
96         /* XXX: this method can only handle italic / bold changes mid-line,
97            nothing else yet.
98         */
99
100         DCPOMATIC_ASSERT (!subtitles.empty ());
101
102         /* Calculate x and y scale factors.  These are only used to stretch
103            the font away from its normal aspect ratio.
104         */
105         float xscale = 1;
106         float yscale = 1;
107         if (fabs (subtitles.front().aspect_adjust() - 1.0) > dcp::ASPECT_ADJUST_EPSILON) {
108                 if (subtitles.front().aspect_adjust() < 1) {
109                         xscale = max (0.25f, subtitles.front().aspect_adjust ());
110                         yscale = 1;
111                 } else {
112                         xscale = 1;
113                         yscale = 1 / min (4.0f, subtitles.front().aspect_adjust ());
114                 }
115         }
116
117         /* Make an empty bitmap as wide as target and at
118            least tall enough for this subtitle.
119         */
120
121         int largest = 0;
122         BOOST_FOREACH (dcp::SubtitleString const & i, subtitles) {
123                 largest = max (largest, i.size());
124         }
125         /* Basic guess on height... */
126         int height = largest * target.height / (11 * 72);
127         /* ...scaled... */
128         height *= yscale;
129         /* ...and add a bit more for luck */
130         height += target.height / 11;
131
132         /* FFmpeg BGRA means first byte blue, second byte green, third byte red, fourth byte alpha */
133         shared_ptr<Image> image (new Image (AV_PIX_FMT_BGRA, dcp::Size (target.width, height), false));
134         image->make_black ();
135
136 #ifdef DCPOMATIC_HAVE_FORMAT_STRIDE_FOR_WIDTH
137         Cairo::RefPtr<Cairo::ImageSurface> surface = Cairo::ImageSurface::create (
138                 image->data()[0],
139                 Cairo::FORMAT_ARGB32,
140                 image->size().width,
141                 image->size().height,
142                 /* Cairo ARGB32 means first byte blue, second byte green, third byte red, fourth byte alpha */
143                 Cairo::ImageSurface::format_stride_for_width (Cairo::FORMAT_ARGB32, image->size().width)
144                 );
145 #else
146         /* Centos 5 does not have Cairo::ImageSurface::format_stride_for_width, so just use width * 4
147            which I hope is safe (if slow)
148         */
149         Cairo::RefPtr<Cairo::ImageSurface> surface = Cairo::ImageSurface::create (
150                 image->data()[0],
151                 Cairo::FORMAT_ARGB32,
152                 image->size().width,
153                 image->size().height,
154                 image->size().width * 4
155                 );
156 #endif
157
158         Cairo::RefPtr<Cairo::Context> context = Cairo::Context::create (surface);
159
160         if (!fc_config) {
161                 fc_config = FcInitLoadConfig ();
162         }
163
164         optional<boost::filesystem::path> font_file;
165
166         try {
167                 font_file = shared_path () / "LiberationSans-Regular.ttf";
168         } catch (boost::filesystem::filesystem_error& e) {
169
170         }
171
172         /* Hack: try the debian/ubuntu locations if getting the shared path failed */
173
174         if (!font_file || !boost::filesystem::exists(*font_file)) {
175                 font_file = "/usr/share/fonts/truetype/liberation/LiberationSans-Regular.ttf";
176         }
177
178         BOOST_FOREACH (shared_ptr<Font> i, fonts) {
179                 if (i->id() == subtitles.front().font() && i->file()) {
180                         font_file = i->file ();
181                 }
182         }
183
184         list<pair<boost::filesystem::path, string> >::const_iterator existing = fc_config_fonts.begin ();
185         while (existing != fc_config_fonts.end() && existing->first != *font_file) {
186                 ++existing;
187         }
188
189         string font_name;
190         if (existing != fc_config_fonts.end ()) {
191                 font_name = existing->second;
192         } else {
193                 /* Make this font available to DCP-o-matic */
194                 FcConfigAppFontAddFile (fc_config, reinterpret_cast<FcChar8 const *>(font_file->string().c_str()));
195                 FcPattern* pattern = FcPatternBuild (
196                         0, FC_FILE, FcTypeString, font_file->string().c_str(), static_cast<char *> (0)
197                         );
198                 FcObjectSet* object_set = FcObjectSetBuild (FC_FAMILY, FC_STYLE, FC_LANG, FC_FILE, static_cast<char *> (0));
199                 FcFontSet* font_set = FcFontList (fc_config, pattern, object_set);
200                 if (font_set) {
201                         for (int i = 0; i < font_set->nfont; ++i) {
202                                 FcPattern* font = font_set->fonts[i];
203                                 FcChar8* file;
204                                 FcChar8* family;
205                                 FcChar8* style;
206                                 if (
207                                         FcPatternGetString (font, FC_FILE, 0, &file) == FcResultMatch &&
208                                         FcPatternGetString (font, FC_FAMILY, 0, &family) == FcResultMatch &&
209                                         FcPatternGetString (font, FC_STYLE, 0, &style) == FcResultMatch
210                                         ) {
211                                         font_name = reinterpret_cast<char const *> (family);
212                                 }
213                         }
214
215                         FcFontSetDestroy (font_set);
216                 }
217
218                 FcObjectSetDestroy (object_set);
219                 FcPatternDestroy (pattern);
220
221                 fc_config_fonts.push_back (make_pair(*font_file, font_name));
222         }
223
224         FcConfigSetCurrent (fc_config);
225
226         Glib::RefPtr<Pango::Layout> layout = Pango::Layout::create (context);
227
228         layout->set_alignment (Pango::ALIGN_LEFT);
229
230         context->set_line_width (1);
231
232         /* Compute fade factor */
233         float fade_factor = 1;
234
235         /* Round the fade start/end to the nearest frame start.  Otherwise if a subtitle starts just after
236            the start of a frame it will be faded out.
237         */
238         DCPTime const fade_in_start = DCPTime::from_seconds(subtitles.front().in().as_seconds()).round(frame_rate);
239         DCPTime const fade_in_end = fade_in_start + DCPTime::from_seconds (subtitles.front().fade_up_time().as_seconds ());
240         DCPTime const fade_out_end =  DCPTime::from_seconds (subtitles.front().out().as_seconds()).round(frame_rate);
241         DCPTime const fade_out_start = fade_out_end - DCPTime::from_seconds (subtitles.front().fade_down_time().as_seconds ());
242
243         if (fade_in_start <= time && time <= fade_in_end && fade_in_start != fade_in_end) {
244                 fade_factor *= DCPTime(time - fade_in_start).seconds() / DCPTime(fade_in_end - fade_in_start).seconds();
245         }
246         if (fade_out_start <= time && time <= fade_out_end && fade_out_start != fade_out_end) {
247                 fade_factor *= 1 - DCPTime(time - fade_out_start).seconds() / DCPTime(fade_out_end - fade_out_start).seconds();
248         }
249         if (time < fade_in_start || time > fade_out_end) {
250                 fade_factor = 0;
251         }
252
253         /* Render the subtitle at the top left-hand corner of image */
254
255         Pango::FontDescription font (font_name);
256         layout->set_font_description (font);
257         layout->set_markup (marked_up (subtitles, target.height, fade_factor));
258
259         context->scale (xscale, yscale);
260         layout->update_from_cairo_context (context);
261
262         /* Shuffle the subtitle over very slightly if it has a border so that the left-hand
263            side of the first character's border is not cut off.
264         */
265         int const x_offset = subtitles.front().effect() == dcp::BORDER ? (target.width / 600.0) : 0;
266         /* Move down a bit so that accents on capital letters can be seen */
267         int const y_offset = target.height / 100.0;
268
269         if (subtitles.front().effect() == dcp::SHADOW) {
270                 /* Drop-shadow effect */
271                 set_source_rgba (context, subtitles.front().effect_colour(), fade_factor);
272                 context->move_to (x_offset + 4, y_offset + 4);
273                 layout->add_to_cairo_context (context);
274                 context->fill ();
275         }
276
277         if (subtitles.front().effect() == dcp::BORDER) {
278                 /* Border effect; stroke the subtitle with a large (arbitrarily chosen) line width */
279                 set_source_rgba (context, subtitles.front().effect_colour(), fade_factor);
280                 context->set_line_width (subtitles.front().outline_width * target.width / 2048.0);
281                 context->set_line_join (Cairo::LINE_JOIN_ROUND);
282                 context->move_to (x_offset, y_offset);
283                 layout->add_to_cairo_context (context);
284                 context->stroke ();
285         }
286
287         /* The actual subtitle */
288
289         context->set_line_width (0);
290         context->move_to (x_offset, y_offset);
291 #ifdef DCPOMATIC_HAVE_SHOW_IN_CAIRO_CONTEXT
292         layout->show_in_cairo_context (context);
293 #else
294         pango_cairo_show_layout (context->cobj(), layout->gobj());
295 #endif
296
297         int layout_width;
298         int layout_height;
299         layout->get_pixel_size (layout_width, layout_height);
300         layout_width *= xscale;
301         layout_height *= yscale;
302
303         int x = 0;
304         switch (subtitles.front().h_align ()) {
305         case dcp::HALIGN_LEFT:
306                 /* h_position is distance between left of frame and left of subtitle */
307                 x = subtitles.front().h_position() * target.width;
308                 break;
309         case dcp::HALIGN_CENTER:
310                 /* h_position is distance between centre of frame and centre of subtitle */
311                 x = (0.5 + subtitles.front().h_position()) * target.width - layout_width / 2;
312                 break;
313         case dcp::HALIGN_RIGHT:
314                 /* h_position is distance between right of frame and right of subtitle */
315                 x = (1.0 - subtitles.front().h_position()) * target.width - layout_width;
316                 break;
317         }
318
319         int y = 0;
320         switch (subtitles.front().v_align ()) {
321         case dcp::VALIGN_TOP:
322                 /* SMPTE says that v_position is the distance between top
323                    of frame and top of subtitle, but this doesn't always seem to be
324                    the case in practice; Gunnar Ásgeirsson's Dolby server appears
325                    to put VALIGN_TOP subs with v_position as the distance between top
326                    of frame and bottom of subtitle.
327                 */
328                 y = subtitles.front().v_position() * target.height - layout_height;
329                 break;
330         case dcp::VALIGN_CENTER:
331                 /* v_position is distance between centre of frame and centre of subtitle */
332                 y = (0.5 + subtitles.front().v_position()) * target.height - layout_height / 2;
333                 break;
334         case dcp::VALIGN_BOTTOM:
335                 /* v_position is distance between bottom of frame and bottom of subtitle */
336                 y = (1.0 - subtitles.front().v_position()) * target.height - layout_height;
337                 break;
338         }
339
340         return PositionImage (image, Position<int> (max (0, x), max (0, y)));
341 }
342
343 /** @param time Time of the frame that these subtitles are going on.
344  *  @param frame_rate DCP frame rate.
345  */
346 list<PositionImage>
347 render_text (list<StringText> subtitles, list<shared_ptr<Font> > fonts, dcp::Size target, DCPTime time, int frame_rate)
348 {
349         list<StringText> pending;
350         list<PositionImage> images;
351
352         BOOST_FOREACH (StringText const & i, subtitles) {
353                 if (!pending.empty() && (i.v_align() != pending.back().v_align() || fabs(i.v_position() - pending.back().v_position()) > 1e-4)) {
354                         images.push_back (render_line (pending, fonts, target, time, frame_rate));
355                         pending.clear ();
356                 }
357                 pending.push_back (i);
358         }
359
360         if (!pending.empty ()) {
361                 images.push_back (render_line (pending, fonts, target, time, frame_rate));
362         }
363
364         return images;
365 }