ea56ac7bb0c9d531f19e8e96cae29ff9fb2e80b4
[dcpomatic.git] / src / lib / text_subtitle_content.cc
1 /*
2     Copyright (C) 2014-2016 Carl Hetherington <cth@carlh.net>
3
4     This file is part of DCP-o-matic.
5
6     DCP-o-matic is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 2 of the License, or
9     (at your option) any later version.
10
11     DCP-o-matic is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License
17     along with DCP-o-matic.  If not, see <http://www.gnu.org/licenses/>.
18
19 */
20
21 #include "text_subtitle_content.h"
22 #include "util.h"
23 #include "text_subtitle.h"
24 #include "film.h"
25 #include "font.h"
26 #include "raw_convert.h"
27 #include "subtitle_content.h"
28 #include <libxml++/libxml++.h>
29 #include <boost/make_shared.hpp>
30 #include <iostream>
31
32 #include "i18n.h"
33
34 using std::string;
35 using std::cout;
36 using boost::shared_ptr;
37 using boost::make_shared;
38
39 TextSubtitleContent::TextSubtitleContent (shared_ptr<const Film> film, boost::filesystem::path path)
40         : Content (film, path)
41 {
42         subtitle.reset (new SubtitleContent (this));
43 }
44
45 TextSubtitleContent::TextSubtitleContent (shared_ptr<const Film> film, cxml::ConstNodePtr node, int version)
46         : Content (film, node)
47         , _length (node->number_child<ContentTime::Type> ("Length"))
48 {
49         subtitle = SubtitleContent::from_xml (this, node, version);
50 }
51
52 void
53 TextSubtitleContent::examine (boost::shared_ptr<Job> job)
54 {
55         Content::examine (job);
56         TextSubtitle s (shared_from_this ());
57
58         /* Default to turning these subtitles on */
59         subtitle->set_use (true);
60
61         boost::mutex::scoped_lock lm (_mutex);
62         _length = s.length ();
63         subtitle->add_font (make_shared<Font> (TEXT_FONT_ID));
64 }
65
66 string
67 TextSubtitleContent::summary () const
68 {
69         return path_summary() + " " + _("[subtitles]");
70 }
71
72 string
73 TextSubtitleContent::technical_summary () const
74 {
75         return Content::technical_summary() + " - " + _("Text subtitles");
76 }
77
78 void
79 TextSubtitleContent::as_xml (xmlpp::Node* node) const
80 {
81         node->add_child("Type")->add_child_text ("TextSubtitle");
82         Content::as_xml (node);
83
84         if (subtitle) {
85                 subtitle->as_xml (node);
86         }
87
88         node->add_child("Length")->add_child_text (raw_convert<string> (_length.get ()));
89 }
90
91 DCPTime
92 TextSubtitleContent::full_length () const
93 {
94         FrameRateChange const frc (active_video_frame_rate(), film()->video_frame_rate ());
95         return DCPTime (_length, frc);
96 }