X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fsubtitle_decoder.cc;h=b31b4873ff1a5ef756d26edb0121f38db03d9b09;hb=97c1bc360f912d66d3fc0430b331214e4da79644;hp=f129805d3ade43ad804f2fb5dfa0a57749e87fee;hpb=0c8d150d110e7a4d36e4d660d277c23ec88590ae;p=dcpomatic.git diff --git a/src/lib/subtitle_decoder.cc b/src/lib/subtitle_decoder.cc index f129805d3..b31b4873f 100644 --- a/src/lib/subtitle_decoder.cc +++ b/src/lib/subtitle_decoder.cc @@ -29,6 +29,7 @@ using std::list; using std::cout; using std::string; +using std::min; using boost::shared_ptr; using boost::optional; using boost::function; @@ -131,6 +132,12 @@ SubtitleDecoder::get_image (ContentTimePeriod period, bool starting, bool accura void SubtitleDecoder::seek (ContentTime, bool) +{ + reset (); +} + +void +SubtitleDecoder::reset () { _decoded_text.clear (); _decoded_image.clear (); @@ -141,9 +148,26 @@ SubtitleDecoder::give_text (ContentTimePeriod period, sub::Subtitle const & subt { /* See if our next subtitle needs to be placed on screen by us */ bool needs_placement = false; + optional bottom_line; BOOST_FOREACH (sub::Line i, subtitle.lines) { if (!i.vertical_position.reference || i.vertical_position.reference.get() == sub::TOP_OF_SUBTITLE) { needs_placement = true; + DCPOMATIC_ASSERT (i.vertical_position.line); + if (!bottom_line || bottom_line.get() < i.vertical_position.line.get()) { + bottom_line = i.vertical_position.line.get(); + } + } + } + + /* Find the lowest proportional postion */ + optional lowest_proportional; + BOOST_FOREACH (sub::Line i, subtitle.lines) { + if (i.vertical_position.proportional) { + if (!lowest_proportional) { + lowest_proportional = i.vertical_position.proportional; + } else { + lowest_proportional = min (lowest_proportional.get(), i.vertical_position.proportional.get()); + } } } @@ -151,19 +175,33 @@ SubtitleDecoder::give_text (ContentTimePeriod period, sub::Subtitle const & subt BOOST_FOREACH (sub::Line i, subtitle.lines) { BOOST_FOREACH (sub::Block j, i.blocks) { + if (!j.font_size.specified()) { + /* Fallback default font size if none other has been specified */ + j.font_size.set_points (48); + } + float v_position; dcp::VAlign v_align; if (needs_placement) { DCPOMATIC_ASSERT (i.vertical_position.line); - /* This 0.878 is an arbitrary value to lift the bottom sub off the bottom + /* This 1.015 is an arbitrary value to lift the bottom sub off the bottom of the screen a bit to a pleasing degree. */ - v_position = 0.878 + i.vertical_position.line.get() * 1.5 / 22; - v_align = dcp::VALIGN_BOTTOM; + v_position = 1.015 - + (1 + bottom_line.get() - i.vertical_position.line.get()) + * 1.2 * content()->line_spacing() * content()->y_scale() * j.font_size.proportional (72 * 11); + + v_align = dcp::VALIGN_TOP; } else { DCPOMATIC_ASSERT (i.vertical_position.proportional); DCPOMATIC_ASSERT (i.vertical_position.reference); v_position = i.vertical_position.proportional.get(); + + if (lowest_proportional) { + /* Adjust line spacing */ + v_position = ((v_position - lowest_proportional.get()) * content()->line_spacing()) + lowest_proportional.get(); + } + switch (i.vertical_position.reference.get()) { case sub::TOP_OF_SCREEN: v_align = dcp::VALIGN_TOP; @@ -180,25 +218,33 @@ SubtitleDecoder::give_text (ContentTimePeriod period, sub::Subtitle const & subt } } + dcp::Effect effect = dcp::NONE; + if (content()->outline()) { + effect = dcp::BORDER; + } else if (content()->shadow()) { + effect = dcp::SHADOW; + } + out.push_back ( dcp::SubtitleString ( string(TEXT_FONT_ID), j.italic, j.bold, + j.underline, /* force the colour to whatever is configured */ content()->colour(), j.font_size.points (72 * 11), 1.0, - dcp::Time (subtitle.from.all_as_seconds(), 1000), - dcp::Time (subtitle.to.all_as_seconds(), 1000), + dcp::Time (period.from.seconds(), 1000), + dcp::Time (period.to.seconds(), 1000), 0, dcp::HALIGN_CENTER, v_position, v_align, dcp::DIRECTION_LTR, j.text, - content()->outline() ? dcp::BORDER : dcp::NONE, - content()->outline_colour(), + effect, + content()->effect_colour(), dcp::Time (0, 1000), dcp::Time (0, 1000) )