X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fsubtitle_content.cc;h=6c0d3af86a6687571d74e3bb576add9494c67567;hb=c3da7c64f01420447dbab7f5c2ea42ff1b911cc5;hp=1194e2dc950b99531185544b162ea5b2eae9b907;hpb=bab2a1cf99c58dcb598fed383015b1937d3ea07f;p=dcpomatic.git diff --git a/src/lib/subtitle_content.cc b/src/lib/subtitle_content.cc index 1194e2dc9..6c0d3af86 100644 --- a/src/lib/subtitle_content.cc +++ b/src/lib/subtitle_content.cc @@ -20,10 +20,15 @@ #include #include "subtitle_content.h" #include "util.h" +#include "exceptions.h" + +#include "i18n.h" using std::string; +using std::vector; using boost::shared_ptr; using boost::lexical_cast; +using boost::dynamic_pointer_cast; int const SubtitleContentProperty::SUBTITLE_OFFSET = 500; int const SubtitleContentProperty::SUBTITLE_SCALE = 501; @@ -47,6 +52,28 @@ SubtitleContent::SubtitleContent (shared_ptr f, shared_ptrnumber_child ("SubtitleScale"); } +SubtitleContent::SubtitleContent (shared_ptr f, vector > c) + : Content (f, c) +{ + shared_ptr ref = dynamic_pointer_cast (c[0]); + assert (ref); + + for (size_t i = 0; i < c.size(); ++i) { + shared_ptr sc = dynamic_pointer_cast (c[i]); + + if (sc->subtitle_offset() != ref->subtitle_offset()) { + throw JoinError (_("Content to be joined must have the same subtitle offset.")); + } + + if (sc->subtitle_scale() != ref->subtitle_scale()) { + throw JoinError (_("Content to be joined must have the same subtitle scale.")); + } + } + + _subtitle_offset = ref->subtitle_offset (); + _subtitle_scale = ref->subtitle_scale (); +} + void SubtitleContent::as_xml (xmlpp::Node* root) const {