summaryrefslogtreecommitdiff
path: root/src/lib
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2018-01-12 13:04:46 +0000
committerCarl Hetherington <cth@carlh.net>2018-01-13 00:06:28 +0000
commit99b4e0705e9007aabfec08ea2c8d1a84eda0d32e (patch)
treedde51223bd3745d1b93c977f722434353fa02afe /src/lib
parent10818d95000c291af776ed9ba1c847257ded4b1f (diff)
Note whether subtitle effect colour is forced or not.
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/subtitle_content.cc32
-rw-r--r--src/lib/subtitle_content.h5
-rw-r--r--src/lib/subtitle_decoder.cc4
3 files changed, 28 insertions, 13 deletions
diff --git a/src/lib/subtitle_content.cc b/src/lib/subtitle_content.cc
index b169cfb69..0083ff8a2 100644
--- a/src/lib/subtitle_content.cc
+++ b/src/lib/subtitle_content.cc
@@ -67,7 +67,6 @@ SubtitleContent::SubtitleContent (Content* parent)
, _y_scale (1)
, _outline (false)
, _shadow (false)
- , _effect_colour (0, 0, 0)
, _line_spacing (1)
, _outline_width (2)
{
@@ -137,11 +136,12 @@ SubtitleContent::SubtitleContent (Content* parent, cxml::ConstNodePtr node, int
}
if (version >= 36) {
- _effect_colour = dcp::Colour (
- node->optional_number_child<int>("EffectRed").get_value_or(255),
- node->optional_number_child<int>("EffectGreen").get_value_or(255),
- node->optional_number_child<int>("EffectBlue").get_value_or(255)
- );
+ optional<int> er = node->optional_number_child<int>("EffectRed");
+ optional<int> eg = node->optional_number_child<int>("EffectGreen");
+ optional<int> eb = node->optional_number_child<int>("EffectBlue");
+ if (er && eg && eb) {
+ _effect_colour = dcp::Colour (*er, *eg, *eb);
+ }
} else {
_effect_colour = dcp::Colour (
node->optional_number_child<int>("OutlineRed").get_value_or(255),
@@ -258,9 +258,11 @@ SubtitleContent::as_xml (xmlpp::Node* root) const
}
root->add_child("Outline")->add_child_text (_outline ? "1" : "0");
root->add_child("Shadow")->add_child_text (_shadow ? "1" : "0");
- root->add_child("EffectRed")->add_child_text (raw_convert<string> (_effect_colour.r));
- root->add_child("EffectGreen")->add_child_text (raw_convert<string> (_effect_colour.g));
- root->add_child("EffectBlue")->add_child_text (raw_convert<string> (_effect_colour.b));
+ if (_effect_colour) {
+ root->add_child("EffectRed")->add_child_text (raw_convert<string> (_effect_colour->r));
+ root->add_child("EffectGreen")->add_child_text (raw_convert<string> (_effect_colour->g));
+ root->add_child("EffectBlue")->add_child_text (raw_convert<string> (_effect_colour->b));
+ }
root->add_child("LineSpacing")->add_child_text (raw_convert<string> (_line_spacing));
root->add_child("SubtitleFadeIn")->add_child_text (raw_convert<string> (_fade_in.get()));
root->add_child("SubtitleFadeOut")->add_child_text (raw_convert<string> (_fade_out.get()));
@@ -357,6 +359,12 @@ SubtitleContent::set_effect_colour (dcp::Colour colour)
}
void
+SubtitleContent::unset_effect_colour ()
+{
+ maybe_set (_effect_colour, optional<dcp::Colour>(), SubtitleContentProperty::EFFECT_COLOUR);
+}
+
+void
SubtitleContent::set_use (bool u)
{
maybe_set (_use, u, SubtitleContentProperty::USE);
@@ -439,7 +447,11 @@ SubtitleContent::take_settings_from (shared_ptr<const SubtitleContent> c)
}
set_outline (c->_outline);
set_shadow (c->_shadow);
- set_effect_colour (c->_effect_colour);
+ if (c->_effect_colour) {
+ set_effect_colour (*c->_effect_colour);
+ } else {
+ unset_effect_colour ();
+ }
set_line_spacing (c->_line_spacing);
set_fade_in (c->_fade_in);
set_fade_out (c->_fade_out);
diff --git a/src/lib/subtitle_content.h b/src/lib/subtitle_content.h
index b07182406..baf412bb6 100644
--- a/src/lib/subtitle_content.h
+++ b/src/lib/subtitle_content.h
@@ -79,6 +79,7 @@ public:
void set_outline (bool);
void set_shadow (bool);
void set_effect_colour (dcp::Colour);
+ void unset_effect_colour ();
void set_line_spacing (double s);
void set_fade_in (ContentTime);
void set_fade_out (ContentTime);
@@ -139,7 +140,7 @@ public:
return _shadow;
}
- dcp::Colour effect_colour () const {
+ boost::optional<dcp::Colour> effect_colour () const {
boost::mutex::scoped_lock lm (_mutex);
return _effect_colour;
}
@@ -197,7 +198,7 @@ private:
boost::optional<dcp::Colour> _colour;
bool _outline;
bool _shadow;
- dcp::Colour _effect_colour;
+ boost::optional<dcp::Colour> _effect_colour;
/** scaling factor for line spacing; 1 is "standard", < 1 is closer together, > 1 is further apart */
double _line_spacing;
ContentTime _fade_in;
diff --git a/src/lib/subtitle_decoder.cc b/src/lib/subtitle_decoder.cc
index eecfce19d..8badf5183 100644
--- a/src/lib/subtitle_decoder.cc
+++ b/src/lib/subtitle_decoder.cc
@@ -79,7 +79,9 @@ SubtitleDecoder::emit_text_start (ContentTime from, list<dcp::SubtitleString> s)
if (content()->colour()) {
i.set_colour (*content()->colour());
}
- i.set_effect_colour (content()->effect_colour());
+ if (content()->effect_colour()) {
+ i.set_effect_colour (*content()->effect_colour());
+ }
if (content()->outline()) {
i.set_effect (dcp::BORDER);
} else if (content()->shadow()) {