Start of Fonts dialog for setting up subtitle fonts.
[dcpomatic.git] / src / lib / subtitle_content.cc
1 /*
2     Copyright (C) 2013-2014 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 <dcp/raw_convert.h>
22 #include "subtitle_content.h"
23 #include "util.h"
24 #include "exceptions.h"
25 #include "safe_stringstream.h"
26
27 #include "i18n.h"
28
29 using std::string;
30 using std::vector;
31 using std::cout;
32 using boost::shared_ptr;
33 using boost::dynamic_pointer_cast;
34 using dcp::raw_convert;
35
36 int const SubtitleContentProperty::SUBTITLE_X_OFFSET = 500;
37 int const SubtitleContentProperty::SUBTITLE_Y_OFFSET = 501;
38 int const SubtitleContentProperty::SUBTITLE_X_SCALE = 502;
39 int const SubtitleContentProperty::SUBTITLE_Y_SCALE = 503;
40 int const SubtitleContentProperty::USE_SUBTITLES = 504;
41 int const SubtitleContentProperty::SUBTITLE_LANGUAGE = 505;
42 int const SubtitleContentProperty::FONTS = 506;
43
44 SubtitleContent::SubtitleContent (shared_ptr<const Film> f)
45         : Content (f)
46         , _use_subtitles (false)
47         , _subtitle_x_offset (0)
48         , _subtitle_y_offset (0)
49         , _subtitle_x_scale (1)
50         , _subtitle_y_scale (1)
51 {
52
53 }
54
55 SubtitleContent::SubtitleContent (shared_ptr<const Film> f, boost::filesystem::path p)
56         : Content (f, p)
57         , _use_subtitles (false)
58         , _subtitle_x_offset (0)
59         , _subtitle_y_offset (0)
60         , _subtitle_x_scale (1)
61         , _subtitle_y_scale (1)
62 {
63
64 }
65
66 SubtitleContent::SubtitleContent (shared_ptr<const Film> f, cxml::ConstNodePtr node, int version)
67         : Content (f, node)
68         , _use_subtitles (false)
69         , _subtitle_x_offset (0)
70         , _subtitle_y_offset (0)
71         , _subtitle_x_scale (1)
72         , _subtitle_y_scale (1)
73 {
74         if (version >= 32) {
75                 _use_subtitles = node->bool_child ("UseSubtitles");
76         } else {
77                 _use_subtitles = false;
78         }
79         
80         if (version >= 7) {
81                 _subtitle_x_offset = node->number_child<float> ("SubtitleXOffset");
82                 _subtitle_y_offset = node->number_child<float> ("SubtitleYOffset");
83         } else {
84                 _subtitle_y_offset = node->number_child<float> ("SubtitleOffset");
85         }
86
87         if (version >= 10) {
88                 _subtitle_x_scale = node->number_child<float> ("SubtitleXScale");
89                 _subtitle_y_scale = node->number_child<float> ("SubtitleYScale");
90         } else {
91                 _subtitle_x_scale = _subtitle_y_scale = node->number_child<float> ("SubtitleScale");
92         }
93
94         _subtitle_language = node->optional_string_child ("SubtitleLanguage").get_value_or ("");
95 }
96
97 SubtitleContent::SubtitleContent (shared_ptr<const Film> f, vector<shared_ptr<Content> > c)
98         : Content (f, c)
99 {
100         shared_ptr<SubtitleContent> ref = dynamic_pointer_cast<SubtitleContent> (c[0]);
101         assert (ref);
102         
103         for (size_t i = 0; i < c.size(); ++i) {
104                 shared_ptr<SubtitleContent> sc = dynamic_pointer_cast<SubtitleContent> (c[i]);
105
106                 if (sc->use_subtitles() != ref->use_subtitles()) {
107                         throw JoinError (_("Content to be joined must have the same 'use subtitles' setting."));
108                 }
109
110                 if (sc->subtitle_x_offset() != ref->subtitle_x_offset()) {
111                         throw JoinError (_("Content to be joined must have the same subtitle X offset."));
112                 }
113                 
114                 if (sc->subtitle_y_offset() != ref->subtitle_y_offset()) {
115                         throw JoinError (_("Content to be joined must have the same subtitle Y offset."));
116                 }
117
118                 if (sc->subtitle_x_scale() != ref->subtitle_x_scale()) {
119                         throw JoinError (_("Content to be joined must have the same subtitle X scale."));
120                 }
121
122                 if (sc->subtitle_y_scale() != ref->subtitle_y_scale()) {
123                         throw JoinError (_("Content to be joined must have the same subtitle Y scale."));
124                 }
125         }
126
127         _use_subtitles = ref->use_subtitles ();
128         _subtitle_x_offset = ref->subtitle_x_offset ();
129         _subtitle_y_offset = ref->subtitle_y_offset ();
130         _subtitle_x_scale = ref->subtitle_x_scale ();
131         _subtitle_y_scale = ref->subtitle_y_scale ();
132         _subtitle_language = ref->subtitle_language ();
133 }
134
135 void
136 SubtitleContent::as_xml (xmlpp::Node* root) const
137 {
138         root->add_child("UseSubtitles")->add_child_text (raw_convert<string> (_use_subtitles));
139         root->add_child("SubtitleXOffset")->add_child_text (raw_convert<string> (_subtitle_x_offset));
140         root->add_child("SubtitleYOffset")->add_child_text (raw_convert<string> (_subtitle_y_offset));
141         root->add_child("SubtitleXScale")->add_child_text (raw_convert<string> (_subtitle_x_scale));
142         root->add_child("SubtitleYScale")->add_child_text (raw_convert<string> (_subtitle_y_scale));
143         root->add_child("SubtitleLanguage")->add_child_text (_subtitle_language);
144 }
145
146 void
147 SubtitleContent::set_use_subtitles (bool u)
148 {
149         {
150                 boost::mutex::scoped_lock lm (_mutex);
151                 _use_subtitles = u;
152         }
153         signal_changed (SubtitleContentProperty::USE_SUBTITLES);
154 }
155         
156 void
157 SubtitleContent::set_subtitle_x_offset (double o)
158 {
159         {
160                 boost::mutex::scoped_lock lm (_mutex);
161                 _subtitle_x_offset = o;
162         }
163         signal_changed (SubtitleContentProperty::SUBTITLE_X_OFFSET);
164 }
165
166 void
167 SubtitleContent::set_subtitle_y_offset (double o)
168 {
169         {
170                 boost::mutex::scoped_lock lm (_mutex);
171                 _subtitle_y_offset = o;
172         }
173         signal_changed (SubtitleContentProperty::SUBTITLE_Y_OFFSET);
174 }
175
176 void
177 SubtitleContent::set_subtitle_x_scale (double s)
178 {
179         {
180                 boost::mutex::scoped_lock lm (_mutex);
181                 _subtitle_x_scale = s;
182         }
183         signal_changed (SubtitleContentProperty::SUBTITLE_X_SCALE);
184 }
185
186 void
187 SubtitleContent::set_subtitle_y_scale (double s)
188 {
189         {
190                 boost::mutex::scoped_lock lm (_mutex);
191                 _subtitle_y_scale = s;
192         }
193         signal_changed (SubtitleContentProperty::SUBTITLE_Y_SCALE);
194 }
195
196 void
197 SubtitleContent::set_subtitle_language (string language)
198 {
199         {
200                 boost::mutex::scoped_lock lm (_mutex);
201                 _subtitle_language = language;
202         }
203         signal_changed (SubtitleContentProperty::SUBTITLE_LANGUAGE);
204 }
205
206 string
207 SubtitleContent::identifier () const
208 {
209         SafeStringStream s;
210         s << Content::identifier()
211           << "_" << raw_convert<string> (subtitle_x_scale())
212           << "_" << raw_convert<string> (subtitle_y_scale())
213           << "_" << raw_convert<string> (subtitle_x_offset())
214           << "_" << raw_convert<string> (subtitle_y_offset());
215
216         /* The language is for metadata only, and doesn't affect
217            how this content looks.
218         */
219
220         return s.str ();
221 }