Move the contents of setup_layout() into create_layout() and make
[dcpomatic.git] / src / lib / render_text.cc
1 /*
2     Copyright (C) 2014-2021 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
22 #include "cross.h"
23 #include "dcpomatic_assert.h"
24 #include "font.h"
25 #include "font_config.h"
26 #include "image.h"
27 #include "render_text.h"
28 #include "util.h"
29 #include <dcp/raw_convert.h>
30 #include <dcp/warnings.h>
31 #include <cairomm/cairomm.h>
32 LIBDCP_DISABLE_WARNINGS
33 #include <pangomm.h>
34 LIBDCP_ENABLE_WARNINGS
35 #include <pango/pangocairo.h>
36 #include <boost/algorithm/string.hpp>
37 #include <iostream>
38
39
40 using std::cerr;
41 using std::cout;
42 using std::list;
43 using std::make_pair;
44 using std::make_shared;
45 using std::max;
46 using std::min;
47 using std::pair;
48 using std::shared_ptr;
49 using std::string;
50 using namespace dcpomatic;
51
52
53 /** Create a Pango layout using a dummy context which we can use to calculate the size
54  *  of the text we will render.  Then we can transfer the layout over to the real context
55  *  for the actual render.
56  */
57 static Glib::RefPtr<Pango::Layout>
58 create_layout(string font_name, string markup)
59 {
60         auto c_font_map = pango_cairo_font_map_new ();
61         DCPOMATIC_ASSERT (c_font_map);
62         auto font_map = Glib::wrap (c_font_map);
63         auto c_context = pango_font_map_create_context (c_font_map);
64         DCPOMATIC_ASSERT (c_context);
65         auto context = Glib::wrap (c_context);
66         auto layout = Pango::Layout::create(context);
67
68         layout->set_alignment (Pango::ALIGN_LEFT);
69         Pango::FontDescription font (font_name);
70         layout->set_font_description (font);
71         layout->set_markup (markup);
72
73         return layout;
74 }
75
76
77 string
78 marked_up (list<StringText> subtitles, int target_height, float fade_factor, string font_name)
79 {
80         auto constexpr pixels_to_1024ths_point = 72 * 1024 / 96;
81
82         auto make_span = [target_height, fade_factor](StringText const& subtitle, string text, string extra_attribute) {
83                 string span;
84                 span += "<span ";
85                 if (subtitle.italic()) {
86                         span += "style=\"italic\" ";
87                 }
88                 if (subtitle.bold()) {
89                         span += "weight=\"bold\" ";
90                 }
91                 if (subtitle.underline()) {
92                         span += "underline=\"single\" ";
93                 }
94                 span += "size=\"" + dcp::raw_convert<string>(lrintf(subtitle.size_in_pixels(target_height) * pixels_to_1024ths_point)) + "\" ";
95                 /* Between 1-65535 inclusive, apparently... */
96                 span += "alpha=\"" + dcp::raw_convert<string>(int(floor(fade_factor * 65534)) + 1) + "\" ";
97                 span += "color=\"#" + subtitle.colour().to_rgb_string() + "\"";
98                 if (!extra_attribute.empty()) {
99                         span += " " + extra_attribute;
100                 }
101                 span += ">";
102
103                 boost::algorithm::replace_all(text, "&", "&amp;");
104                 boost::algorithm::replace_all(text, "<", "&lt;");
105                 boost::algorithm::replace_all(text, ">", "&gt;");
106
107                 span += text;
108                 span += "</span>";
109                 return span;
110         };
111
112         string out;
113         for (auto const& i: subtitles) {
114                 if (std::abs(i.space_before()) > dcp::SPACE_BEFORE_EPSILON) {
115                         /* We need to insert some horizontal space into the layout.  The only way I can find to do this
116                          * is to write a " " with some special letter_spacing.  As far as I can see, such a space will
117                          * be written with letter_spacing either side.  This means that to get a horizontal space x we
118                          * need to write a " " with letter spacing (x - s) / 2, where s is the width of the " ".
119                          */
120                         auto layout = create_layout(font_name, make_span(i, " ", {}));
121                         int space_width;
122                         int dummy;
123                         layout->get_pixel_size(space_width, dummy);
124                         auto spacing = ((i.space_before() * i.size_in_pixels(target_height) - space_width) / 2) * pixels_to_1024ths_point;
125                         out += make_span(i, " ", "letter_spacing=\"" + dcp::raw_convert<string>(spacing) + "\"");
126                 }
127
128                 out += make_span(i, i.text(), {});
129         }
130
131         return out;
132 }
133
134
135 static void
136 set_source_rgba (Cairo::RefPtr<Cairo::Context> context, dcp::Colour colour, float fade_factor)
137 {
138         context->set_source_rgba (float(colour.r) / 255, float(colour.g) / 255, float(colour.b) / 255, fade_factor);
139 }
140
141
142 static shared_ptr<Image>
143 create_image (dcp::Size size)
144 {
145         /* FFmpeg BGRA means first byte blue, second byte green, third byte red, fourth byte alpha.
146          * This must be COMPACT as we're using it with Cairo::ImageSurface::create
147          */
148         auto image = make_shared<Image>(AV_PIX_FMT_BGRA, size, Image::Alignment::COMPACT);
149         image->make_black ();
150         return image;
151 }
152
153
154 static Cairo::RefPtr<Cairo::ImageSurface>
155 create_surface (shared_ptr<Image> image)
156 {
157         /* XXX: I don't think it's guaranteed that format_stride_for_width will return a stride without any padding,
158          * so it's lucky that this works.
159          */
160         DCPOMATIC_ASSERT (image->alignment() == Image::Alignment::COMPACT);
161         DCPOMATIC_ASSERT (image->pixel_format() == AV_PIX_FMT_BGRA);
162         return Cairo::ImageSurface::create (
163                 image->data()[0],
164                 Cairo::FORMAT_ARGB32,
165                 image->size().width,
166                 image->size().height,
167                 /* Cairo ARGB32 means first byte blue, second byte green, third byte red, fourth byte alpha */
168                 Cairo::ImageSurface::format_stride_for_width (Cairo::FORMAT_ARGB32, image->size().width)
169                 );
170 }
171
172
173 static string
174 setup_font(shared_ptr<const dcpomatic::Font> font)
175 {
176         auto font_file = default_font_file ();
177
178         if (font && font->file()) {
179                 font_file = *font->file();
180         }
181
182         return FontConfig::instance()->make_font_available(font_file);
183 }
184
185
186 static float
187 calculate_fade_factor (StringText const& first, DCPTime time, int frame_rate)
188 {
189         float fade_factor = 1;
190
191         /* Round the fade start/end to the nearest frame start.  Otherwise if a subtitle starts just after
192            the start of a frame it will be faded out.
193         */
194         auto const fade_in_start = DCPTime::from_seconds(first.in().as_seconds()).round(frame_rate);
195         auto const fade_in_end = fade_in_start + DCPTime::from_seconds (first.fade_up_time().as_seconds ());
196
197         if (fade_in_start <= time && time <= fade_in_end && fade_in_start != fade_in_end) {
198                 fade_factor *= DCPTime(time - fade_in_start).seconds() / DCPTime(fade_in_end - fade_in_start).seconds();
199         }
200
201         if (time < fade_in_start) {
202                 fade_factor = 0;
203         }
204
205         /* first.out() may be zero if we don't know when this subtitle will finish.  We can only think about
206          * fading out if we _do_ know when it will finish.
207          */
208         if (first.out() != dcp::Time()) {
209                 auto const fade_out_end = DCPTime::from_seconds (first.out().as_seconds()).round(frame_rate);
210                 auto const fade_out_start = fade_out_end - DCPTime::from_seconds(first.fade_down_time().as_seconds());
211
212                 if (fade_out_start <= time && time <= fade_out_end && fade_out_start != fade_out_end) {
213                         fade_factor *= 1 - DCPTime(time - fade_out_start).seconds() / DCPTime(fade_out_end - fade_out_start).seconds();
214                 }
215                 if (time > fade_out_end) {
216                         fade_factor = 0;
217                 }
218         }
219
220         return fade_factor;
221 }
222
223
224 static int
225 x_position (StringText const& first, int target_width, int layout_width)
226 {
227         int x = 0;
228         switch (first.h_align()) {
229         case dcp::HAlign::LEFT:
230                 /* h_position is distance between left of frame and left of subtitle */
231                 x = first.h_position() * target_width;
232                 break;
233         case dcp::HAlign::CENTER:
234                 /* h_position is distance between centre of frame and centre of subtitle */
235                 x = (0.5 + first.h_position()) * target_width - layout_width / 2;
236                 break;
237         case dcp::HAlign::RIGHT:
238                 /* h_position is distance between right of frame and right of subtitle */
239                 x = (1.0 - first.h_position()) * target_width - layout_width;
240                 break;
241         }
242
243         return x;
244 }
245
246
247 static int
248 y_position (StringText const& first, int target_height, int baseline_to_bottom, int layout_height)
249 {
250         int y = 0;
251         switch (first.valign_standard) {
252         case dcp::SubtitleStandard::INTEROP:
253         case dcp::SubtitleStandard::SMPTE_2014:
254                 switch (first.v_align()) {
255                 case dcp::VAlign::TOP:
256                         /* v_position is distance from top of frame to subtitle baseline */
257                         y = first.v_position() * target_height - (layout_height - baseline_to_bottom);
258                         break;
259                 case dcp::VAlign::CENTER:
260                         /* v_position is distance from centre of frame to subtitle baseline */
261                         y = (0.5 + first.v_position()) * target_height - (layout_height - baseline_to_bottom);
262                         break;
263                 case dcp::VAlign::BOTTOM:
264                         /* v_position is distance from bottom of frame to subtitle baseline */
265                         y = (1.0 - first.v_position()) * target_height - (layout_height - baseline_to_bottom);
266                         break;
267                 }
268                 break;
269         case dcp::SubtitleStandard::SMPTE_2007:
270         case dcp::SubtitleStandard::SMPTE_2010:
271                 switch (first.v_align()) {
272                 case dcp::VAlign::TOP:
273                         /* v_position is distance from top of frame to top of subtitle */
274                         y = first.v_position() * target_height;
275                         break;
276                 case dcp::VAlign::CENTER:
277                         /* v_position is distance from centre of frame to centre of subtitle */
278                         y = (0.5 + first.v_position()) * target_height - layout_height / 2;
279                         break;
280                 case dcp::VAlign::BOTTOM:
281                         /* v_position is distance from bottom of frame to bottom of subtitle */
282                         y = (1.0 - first.v_position()) * target_height - layout_height;
283                         break;
284                 }
285         }
286
287         return y;
288 }
289
290
291 struct Layout
292 {
293         Position<int> position;
294         dcp::Size size;
295         Glib::RefPtr<Pango::Layout> pango;
296 };
297
298
299 /** @param subtitles A list of subtitles that are all on the same line,
300  *  at the same time and with the same fade in/out.
301  */
302 static Layout
303 setup_layout(list<StringText> subtitles, dcp::Size target, DCPTime time, int frame_rate)
304 {
305         DCPOMATIC_ASSERT(!subtitles.empty());
306         auto const& first = subtitles.front();
307
308         auto const font_name = setup_font(first.font);
309         auto const fade_factor = calculate_fade_factor(first, time, frame_rate);
310         auto const markup = marked_up(subtitles, target.height, fade_factor, font_name);
311         auto layout = create_layout(font_name, markup);
312         auto ink = layout->get_ink_extents();
313         return { { ink.get_x() / Pango::SCALE, ink.get_y() / Pango::SCALE }, { ink.get_width() / Pango::SCALE, ink.get_height() / Pango::SCALE }, layout };
314 }
315
316
317 /** @param subtitles A list of subtitles that are all on the same line,
318  *  at the same time and with the same fade in/out.
319  */
320 static PositionImage
321 render_line (list<StringText> subtitles, dcp::Size target, DCPTime time, int frame_rate)
322 {
323         /* XXX: this method can only handle italic / bold changes mid-line,
324            nothing else yet.
325         */
326
327         DCPOMATIC_ASSERT(!subtitles.empty ());
328         auto const& first = subtitles.front();
329         auto const fade_factor = calculate_fade_factor(first, time, frame_rate);
330
331         auto layout = setup_layout(subtitles, target, time, frame_rate);
332
333         /* Calculate x and y scale factors.  These are only used to stretch
334            the font away from its normal aspect ratio.
335         */
336         float x_scale = 1;
337         float y_scale = 1;
338         if (fabs (first.aspect_adjust() - 1.0) > dcp::ASPECT_ADJUST_EPSILON) {
339                 if (first.aspect_adjust() < 1) {
340                         x_scale = max (0.25f, first.aspect_adjust ());
341                         y_scale = 1;
342                 } else {
343                         x_scale = 1;
344                         y_scale = 1 / min (4.0f, first.aspect_adjust ());
345                 }
346         }
347
348         auto const border_width = first.effect() == dcp::Effect::BORDER ? (first.outline_width * target.width / 2048.0) : 0;
349         layout.size.width += 2 * ceil (border_width);
350         layout.size.height += 2 * ceil (border_width);
351
352         layout.size.width *= x_scale;
353         layout.size.height *= y_scale;
354
355         /* Shuffle the subtitle over by the border width (if we have any) so it's not cut off */
356         int const x_offset = -layout.position.x + ceil(border_width);
357         int const y_offset = -layout.position.y + ceil(border_width);
358
359         auto image = create_image(layout.size);
360         auto surface = create_surface (image);
361         auto context = Cairo::Context::create (surface);
362
363         context->set_line_width (1);
364         context->scale (x_scale, y_scale);
365         layout.pango->update_from_cairo_context(context);
366
367         if (first.effect() == dcp::Effect::SHADOW) {
368                 /* Drop-shadow effect */
369                 set_source_rgba (context, first.effect_colour(), fade_factor);
370                 context->move_to (x_offset + 4, y_offset + 4);
371                 layout.pango->add_to_cairo_context(context);
372                 context->fill ();
373         }
374
375         if (first.effect() == dcp::Effect::BORDER) {
376                 /* Border effect */
377                 set_source_rgba (context, first.effect_colour(), fade_factor);
378                 context->set_line_width (border_width);
379                 context->set_line_join (Cairo::LINE_JOIN_ROUND);
380                 context->move_to (x_offset, y_offset);
381                 layout.pango->add_to_cairo_context (context);
382                 context->stroke ();
383         }
384
385         /* The actual subtitle */
386
387         set_source_rgba (context, first.colour(), fade_factor);
388
389         context->move_to (x_offset, y_offset);
390         layout.pango->add_to_cairo_context (context);
391         context->fill ();
392
393         context->set_line_width (0.5);
394         context->move_to (x_offset, y_offset);
395         layout.pango->add_to_cairo_context (context);
396         context->stroke ();
397
398         int const x = x_position(first, target.width, layout.size.width);
399         int const y = y_position(first, target.height, layout.position.y, layout.size.height);
400         return PositionImage (image, Position<int>(max (0, x), max(0, y)));
401 }
402
403
404 /** @param time Time of the frame that these subtitles are going on.
405  *  @param target Size of the container that this subtitle will end up in.
406  *  @param frame_rate DCP frame rate.
407  */
408 list<PositionImage>
409 render_text (list<StringText> subtitles, dcp::Size target, DCPTime time, int frame_rate)
410 {
411         list<StringText> pending;
412         list<PositionImage> images;
413
414         for (auto const& i: subtitles) {
415                 if (!pending.empty() && (i.v_align() != pending.back().v_align() || fabs(i.v_position() - pending.back().v_position()) > 1e-4)) {
416                         images.push_back(render_line(pending, target, time, frame_rate));
417                         pending.clear ();
418                 }
419                 pending.push_back (i);
420         }
421
422         if (!pending.empty()) {
423                 images.push_back(render_line(pending, target, time, frame_rate));
424         }
425
426         return images;
427 }
428
429
430 float
431 FontMetrics::height(StringText const& subtitle)
432 {
433         return get(subtitle)->second.second;
434 }
435
436
437 float
438 FontMetrics::baseline_to_bottom(StringText const& subtitle)
439 {
440         return get(subtitle)->second.first;
441 }
442
443
444 FontMetrics::Cache::iterator
445 FontMetrics::get(StringText const& subtitle)
446 {
447         auto id = Identifier(subtitle);
448
449         auto iter = _cache.find(id);
450         if (iter != _cache.end()) {
451                 return iter;
452         }
453
454         auto const font_name = setup_font(subtitle.font);
455         auto copy = subtitle;
456         copy.set_text("Qypjg");
457         auto layout = create_layout(font_name, marked_up({copy}, _target_height, 1, font_name));
458         auto ink = layout->get_ink_extents();
459         auto const scale = float(_target_height * Pango::SCALE);
460         return _cache.insert({id, { ink.get_y() / scale, ink.get_height() / scale}}).first;
461 }
462
463
464 FontMetrics::Identifier::Identifier(StringText const& subtitle)
465         : font(subtitle.font)
466         , size(subtitle.size())
467         , aspect_adjust(subtitle.aspect_adjust())
468 {
469
470 }
471
472
473 bool
474 FontMetrics::Identifier::operator<(FontMetrics::Identifier const& other) const
475 {
476         if (font != other.font) {
477                 return font < other.font;
478         }
479
480         if (size != other.size) {
481             return size < other.size;
482         }
483
484         return aspect_adjust < other.aspect_adjust;
485 }
486