Basics of joining.
[dcpomatic.git] / src / lib / subtitle_content.cc
1 /*
2     Copyright (C) 2013 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 <libcxml/cxml.h>
21 #include "subtitle_content.h"
22 #include "util.h"
23 #include "exceptions.h"
24
25 #include "i18n.h"
26
27 using std::string;
28 using std::vector;
29 using boost::shared_ptr;
30 using boost::lexical_cast;
31 using boost::dynamic_pointer_cast;
32
33 int const SubtitleContentProperty::SUBTITLE_OFFSET = 500;
34 int const SubtitleContentProperty::SUBTITLE_SCALE = 501;
35
36 SubtitleContent::SubtitleContent (shared_ptr<const Film> f, boost::filesystem::path p)
37         : Content (f, p)
38         , _subtitle_offset (0)
39         , _subtitle_scale (1)
40 {
41
42 }
43
44 SubtitleContent::SubtitleContent (shared_ptr<const Film> f, shared_ptr<const cxml::Node> node)
45         : Content (f, node)
46         , _subtitle_offset (0)
47         , _subtitle_scale (1)
48 {
49         LocaleGuard lg;
50         
51         _subtitle_offset = node->number_child<float> ("SubtitleOffset");
52         _subtitle_scale = node->number_child<float> ("SubtitleScale");
53 }
54
55 SubtitleContent::SubtitleContent (shared_ptr<const Film> f, vector<shared_ptr<Content> > c)
56         : Content (f, c)
57 {
58         shared_ptr<SubtitleContent> ref = dynamic_pointer_cast<SubtitleContent> (c[0]);
59         assert (ref);
60         
61         for (size_t i = 0; i < c.size(); ++i) {
62                 shared_ptr<SubtitleContent> sc = dynamic_pointer_cast<SubtitleContent> (c[i]);
63
64                 if (sc->subtitle_offset() != ref->subtitle_offset()) {
65                         throw JoinError (_("Content to be joined must have the same subtitle offset."));
66                 }
67
68                 if (sc->subtitle_scale() != ref->subtitle_scale()) {
69                         throw JoinError (_("Content to be joined must have the same subtitle scale."));
70                 }
71         }
72
73         _subtitle_offset = ref->subtitle_offset ();
74         _subtitle_scale = ref->subtitle_scale ();
75 }
76
77 void
78 SubtitleContent::as_xml (xmlpp::Node* root) const
79 {
80         LocaleGuard lg;
81         
82         root->add_child("SubtitleOffset")->add_child_text (lexical_cast<string> (_subtitle_offset));
83         root->add_child("SubtitleScale")->add_child_text (lexical_cast<string> (_subtitle_scale));
84 }
85
86 void
87 SubtitleContent::set_subtitle_offset (double o)
88 {
89         {
90                 boost::mutex::scoped_lock lm (_mutex);
91                 _subtitle_offset = o;
92         }
93         signal_changed (SubtitleContentProperty::SUBTITLE_OFFSET);
94 }
95
96 void
97 SubtitleContent::set_subtitle_scale (double s)
98 {
99         {
100                 boost::mutex::scoped_lock lm (_mutex);
101                 _subtitle_scale = s;
102         }
103         signal_changed (SubtitleContentProperty::SUBTITLE_SCALE);
104 }