Basic untested support for bold in subtitles.
[libdcp.git] / src / subtitle_asset.cc
1 /*
2     Copyright (C) 2012-2015 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 "raw_convert.h"
21 #include "subtitle_asset.h"
22 #include "util.h"
23 #include "xml.h"
24 #include "font_node.h"
25 #include "text_node.h"
26 #include "subtitle_string.h"
27 #include "dcp_assert.h"
28 #include "AS_DCP.h"
29 #include "KM_util.h"
30 #include <libxml++/nodes/element.h>
31 #include <boost/algorithm/string.hpp>
32 #include <boost/shared_array.hpp>
33 #include <boost/foreach.hpp>
34 #include <fstream>
35
36 using std::string;
37 using std::list;
38 using std::ostream;
39 using std::ofstream;
40 using std::stringstream;
41 using std::cout;
42 using std::cerr;
43 using std::map;
44 using boost::shared_ptr;
45 using boost::shared_array;
46 using boost::optional;
47 using boost::dynamic_pointer_cast;
48 using namespace dcp;
49
50 SubtitleAsset::SubtitleAsset ()
51 {
52
53 }
54
55 SubtitleAsset::SubtitleAsset (boost::filesystem::path file)
56         : Asset (file)
57 {
58
59 }
60
61 void
62 SubtitleAsset::parse_subtitles (
63         shared_ptr<cxml::Document> xml,
64         list<shared_ptr<dcp::FontNode> > font_nodes,
65         list<shared_ptr<dcp::SubtitleNode> > subtitle_nodes
66         )
67 {
68         /* Make Subtitle objects to represent the raw XML nodes in a sane way */
69         ParseState parse_state;
70         examine_nodes (xml, font_nodes, parse_state);
71         examine_nodes (xml, subtitle_nodes, parse_state);
72 }
73
74 void
75 SubtitleAsset::examine_nodes (
76         shared_ptr<const cxml::Node> xml,
77         list<shared_ptr<dcp::SubtitleNode> > const & subtitle_nodes,
78         ParseState& parse_state
79         )
80 {
81         BOOST_FOREACH (shared_ptr<dcp::SubtitleNode> i, subtitle_nodes) {
82                 parse_state.subtitle_nodes.push_back (i);
83                 examine_nodes (xml, i->text_nodes, parse_state);
84                 examine_nodes (xml, i->font_nodes, parse_state);
85                 parse_state.subtitle_nodes.pop_back ();
86         }
87 }
88
89 void
90 SubtitleAsset::examine_nodes (
91         shared_ptr<const cxml::Node> xml,
92         list<shared_ptr<dcp::FontNode> > const & font_nodes,
93         ParseState& parse_state
94         )
95 {
96         BOOST_FOREACH (shared_ptr<dcp::FontNode> i, font_nodes) {
97
98                 parse_state.font_nodes.push_back (i);
99                 maybe_add_subtitle (i->text, parse_state);
100
101                 examine_nodes (xml, i->subtitle_nodes, parse_state);
102                 examine_nodes (xml, i->font_nodes, parse_state);
103                 examine_nodes (xml, i->text_nodes, parse_state);
104
105                 parse_state.font_nodes.pop_back ();
106         }
107 }
108
109 void
110 SubtitleAsset::examine_nodes (
111         shared_ptr<const cxml::Node> xml,
112         list<shared_ptr<dcp::TextNode> > const & text_nodes,
113         ParseState& parse_state
114         )
115 {
116         BOOST_FOREACH (shared_ptr<dcp::TextNode> i, text_nodes) {
117                 parse_state.text_nodes.push_back (i);
118                 maybe_add_subtitle (i->text, parse_state);
119                 examine_nodes (xml, i->font_nodes, parse_state);
120                 parse_state.text_nodes.pop_back ();
121         }
122 }
123
124 void
125 SubtitleAsset::maybe_add_subtitle (string text, ParseState const & parse_state)
126 {
127         if (empty_or_white_space (text)) {
128                 return;
129         }
130
131         if (parse_state.text_nodes.empty() || parse_state.subtitle_nodes.empty ()) {
132                 return;
133         }
134
135         DCP_ASSERT (!parse_state.text_nodes.empty ());
136         DCP_ASSERT (!parse_state.subtitle_nodes.empty ());
137
138         dcp::FontNode effective_font (parse_state.font_nodes);
139         dcp::TextNode effective_text (*parse_state.text_nodes.back ());
140         dcp::SubtitleNode effective_subtitle (*parse_state.subtitle_nodes.back ());
141
142         _subtitles.push_back (
143                 SubtitleString (
144                         effective_font.id,
145                         effective_font.italic.get_value_or (false),
146                         effective_font.bold.get_value_or (false),
147                         effective_font.colour.get_value_or (dcp::Colour (255, 255, 255)),
148                         effective_font.size,
149                         effective_font.aspect_adjust.get_value_or (1.0),
150                         effective_subtitle.in,
151                         effective_subtitle.out,
152                         effective_text.h_position,
153                         effective_text.h_align,
154                         effective_text.v_position,
155                         effective_text.v_align,
156                         text,
157                         effective_font.effect.get_value_or (NONE),
158                         effective_font.effect_colour.get_value_or (dcp::Colour (0, 0, 0)),
159                         effective_subtitle.fade_up_time,
160                         effective_subtitle.fade_down_time
161                         )
162                 );
163 }
164
165 list<SubtitleString>
166 SubtitleAsset::subtitles_during (Time from, Time to, bool starting) const
167 {
168         list<SubtitleString> s;
169         BOOST_FOREACH (SubtitleString const & i, _subtitles) {
170                 if ((starting && from <= i.in() && i.in() < to) || (!starting && i.out() >= from && i.in() <= to)) {
171                         s.push_back (i);
172                 }
173         }
174
175         return s;
176 }
177
178 void
179 SubtitleAsset::add (SubtitleString s)
180 {
181         _subtitles.push_back (s);
182 }
183
184 Time
185 SubtitleAsset::latest_subtitle_out () const
186 {
187         Time t;
188         BOOST_FOREACH (SubtitleString const & i, _subtitles) {
189                 if (i.out() > t) {
190                         t = i.out ();
191                 }
192         }
193
194         return t;
195 }
196
197 bool
198 SubtitleAsset::equals (shared_ptr<const Asset> other_asset, EqualityOptions options, NoteHandler note) const
199 {
200         if (!Asset::equals (other_asset, options, note)) {
201                 return false;
202         }
203
204         shared_ptr<const SubtitleAsset> other = dynamic_pointer_cast<const SubtitleAsset> (other_asset);
205         if (!other) {
206                 return false;
207         }
208
209         if (_subtitles != other->_subtitles) {
210                 note (DCP_ERROR, "subtitles differ");
211                 return false;
212         }
213
214         return true;
215 }
216
217 struct SubtitleSorter {
218         bool operator() (SubtitleString const & a, SubtitleString const & b) {
219                 if (a.in() != b.in()) {
220                         return a.in() < b.in();
221                 }
222                 return a.v_position() < b.v_position();
223         }
224 };
225
226 /** @param standard Standard (INTEROP or SMPTE); this is used rather than putting things in the child
227  *  class because the differences between the two are fairly subtle.
228  */
229 void
230 SubtitleAsset::subtitles_as_xml (xmlpp::Element* root, int time_code_rate, Standard standard) const
231 {
232         list<SubtitleString> sorted = _subtitles;
233         sorted.sort (SubtitleSorter ());
234
235         string const xmlns = standard == SMPTE ? "dcst" : "";
236
237         /* XXX: script, underlined not supported */
238
239         optional<string> font;
240         bool italic = false;
241         bool bold = false;
242         Colour colour;
243         int size = 0;
244         float aspect_adjust = 1.0;
245         Effect effect = NONE;
246         Colour effect_colour;
247         int spot_number = 1;
248         Time last_in;
249         Time last_out;
250         Time last_fade_up_time;
251         Time last_fade_down_time;
252
253         xmlpp::Element* font_element = 0;
254         xmlpp::Element* subtitle_element = 0;
255
256         BOOST_FOREACH (SubtitleString const & i, sorted) {
257
258                 /* We will start a new <Font>...</Font> whenever some font property changes.
259                    I suppose we should really make an optimal hierarchy of <Font> tags, but
260                    that seems hard.
261                 */
262
263                 bool const font_changed =
264                         font          != i.font()          ||
265                         italic        != i.italic()        ||
266                         bold          != i.bold()          ||
267                         colour        != i.colour()        ||
268                         size          != i.size()          ||
269                         fabs (aspect_adjust - i.aspect_adjust()) > ASPECT_ADJUST_EPSILON ||
270                         effect        != i.effect()        ||
271                         effect_colour != i.effect_colour();
272
273                 if (font_changed) {
274                         font = i.font ();
275                         italic = i.italic ();
276                         bold = i.bold ();
277                         colour = i.colour ();
278                         size = i.size ();
279                         aspect_adjust = i.aspect_adjust ();
280                         effect = i.effect ();
281                         effect_colour = i.effect_colour ();
282                 }
283
284                 if (!font_element || font_changed) {
285                         font_element = root->add_child ("Font", xmlns);
286                         if (font) {
287                                 if (standard == SMPTE) {
288                                         font_element->set_attribute ("ID", font.get ());
289                                 } else {
290                                         font_element->set_attribute ("Id", font.get ());
291                                 }
292                         }
293                         font_element->set_attribute ("Italic", italic ? "yes" : "no");
294                         font_element->set_attribute ("Color", colour.to_argb_string());
295                         font_element->set_attribute ("Size", raw_convert<string> (size));
296                         if (fabs (aspect_adjust - 1.0) > ASPECT_ADJUST_EPSILON) {
297                                 font_element->set_attribute ("AspectAdjust", raw_convert<string> (aspect_adjust));
298                         }
299                         font_element->set_attribute ("Effect", effect_to_string (effect));
300                         font_element->set_attribute ("EffectColor", effect_colour.to_argb_string());
301                         font_element->set_attribute ("Script", "normal");
302                         if (standard == SMPTE) {
303                                 font_element->set_attribute ("Underline", "no");
304                         } else {
305                                 font_element->set_attribute ("Underlined", "no");
306                         }
307                         font_element->set_attribute ("Weight", bold ? "bold" : "normal");
308                 }
309
310                 if (!subtitle_element || font_changed ||
311                     (last_in != i.in() ||
312                      last_out != i.out() ||
313                      last_fade_up_time != i.fade_up_time() ||
314                      last_fade_down_time != i.fade_down_time()
315                             )) {
316
317                         subtitle_element = font_element->add_child ("Subtitle", xmlns);
318                         subtitle_element->set_attribute ("SpotNumber", raw_convert<string> (spot_number++));
319                         subtitle_element->set_attribute ("TimeIn", i.in().rebase(time_code_rate).as_string(standard));
320                         subtitle_element->set_attribute ("TimeOut", i.out().rebase(time_code_rate).as_string(standard));
321                         if (standard == SMPTE) {
322                                 subtitle_element->set_attribute ("FadeUpTime", i.fade_up_time().rebase(time_code_rate).as_string(standard));
323                                 subtitle_element->set_attribute ("FadeDownTime", i.fade_down_time().rebase(time_code_rate).as_string(standard));
324                         } else {
325                                 subtitle_element->set_attribute ("FadeUpTime", raw_convert<string> (i.fade_up_time().as_editable_units(time_code_rate)));
326                                 subtitle_element->set_attribute ("FadeDownTime", raw_convert<string> (i.fade_down_time().as_editable_units(time_code_rate)));
327                         }
328
329                         last_in = i.in ();
330                         last_out = i.out ();
331                         last_fade_up_time = i.fade_up_time ();
332                         last_fade_down_time = i.fade_down_time ();
333                 }
334
335                 xmlpp::Element* text = subtitle_element->add_child ("Text", xmlns);
336                 if (i.h_align() != HALIGN_CENTER) {
337                         if (standard == SMPTE) {
338                                 text->set_attribute ("Halign", halign_to_string (i.h_align ()));
339                         } else {
340                                 text->set_attribute ("HAlign", halign_to_string (i.h_align ()));
341                         }
342                 }
343                 if (i.h_position() > ALIGN_EPSILON) {
344                         if (standard == SMPTE) {
345                                 text->set_attribute ("Hposition", raw_convert<string> (i.h_position() * 100, 6));
346                         } else {
347                                 text->set_attribute ("HPosition", raw_convert<string> (i.h_position() * 100, 6));
348                         }
349                 }
350                 if (standard == SMPTE) {
351                         text->set_attribute ("Valign", valign_to_string (i.v_align()));
352                 } else {
353                         text->set_attribute ("VAlign", valign_to_string (i.v_align()));
354                 }
355                 if (i.v_position() > ALIGN_EPSILON) {
356                         if (standard == SMPTE) {
357                                 text->set_attribute ("Vposition", raw_convert<string> (i.v_position() * 100, 6));
358                         } else {
359                                 text->set_attribute ("VPosition", raw_convert<string> (i.v_position() * 100, 6));
360                         }
361                 } else {
362                         if (standard == SMPTE) {
363                                 text->set_attribute ("Vposition", "0");
364                         } else {
365                                 text->set_attribute ("VPosition", "0");
366                         }
367                 }
368                 text->add_child_text (i.text());
369         }
370 }
371
372 map<string, Data>
373 SubtitleAsset::fonts_with_load_ids () const
374 {
375         map<string, Data> out;
376         BOOST_FOREACH (Font const & i, _fonts) {
377                 out[i.load_id] = i.data;
378         }
379         return out;
380 }