Pick up effect and effect color.
[libdcp.git] / src / subtitle_asset.h
index 392d70b433b8c11c31bf664438356991f9a3688b..d3f9fa9b6ca95ed9ea1709bdb6434f397d140f02 100644 (file)
 namespace libdcp
 {
 
-class Text : public XMLNode
+class TextNode : public XMLNode
 {
 public:
-       Text () {}
-       Text (xmlpp::Node const * node);
+       TextNode () {}
+       TextNode (xmlpp::Node const * node);
 
-       float v_position () const {
-               return _v_position;
-       }
+       float v_position;
+       std::string text;
+};
 
-       std::string text () const {
-               return _text;
-       }
+class SubtitleNode : public XMLNode
+{
+public:
+       SubtitleNode () {}
+       SubtitleNode (xmlpp::Node const * node);
 
-private:
-       float _v_position;
-       std::string _text;
+       Time in;
+       Time out;
+       std::list<boost::shared_ptr<TextNode> > text_nodes;
+};
+
+class FontNode : public XMLNode
+{
+public:
+       FontNode () {}
+       FontNode (xmlpp::Node const * node);
+       FontNode (std::list<boost::shared_ptr<FontNode> > const & font_nodes);
+
+       std::string id;
+       int size;
+       boost::optional<bool> italic;
+       boost::optional<Color> color;
+       std::string effect;
+       boost::optional<Color> effect_color;
+       
+       std::list<boost::shared_ptr<SubtitleNode> > subtitle_nodes;
+       std::list<boost::shared_ptr<FontNode> > font_nodes;
 };
 
-class Subtitle : public XMLNode
+class LoadFontNode : public XMLNode
 {
 public:
-       Subtitle () {}
-       Subtitle (xmlpp::Node const * node);
+       LoadFontNode () {}
+       LoadFontNode (xmlpp::Node const * node);
+
+       std::string id;
+       std::string uri;
+};
+
+class Subtitle
+{
+public:
+       Subtitle (
+               std::string font,
+               bool italic,
+               Color color,
+               int size,
+               Time in,
+               Time out,
+               float v_position,
+               std::string text,
+               std::string effect,
+               Color effect_color
+               );
+
+       std::string font () const {
+               return _font;
+       }
+
+       bool italic () const {
+               return _italic;
+       }
+
+       Color color () const {
+               return _color;
+       }
 
        Time in () const {
                return _in;
@@ -57,30 +109,37 @@ public:
                return _out;
        }
 
-       std::list<boost::shared_ptr<Text> > texts () const {
-               return _texts;
+       std::string text () const {
+               return _text;
        }
 
-private:
-       std::list<boost::shared_ptr<Text> > _texts;
-       Time _in;
-       Time _out;
-};
+       float v_position () const {
+               return _v_position;
+       }
 
-class Font : public XMLNode
-{
-public:
-       Font () {}
-       Font (xmlpp::Node const * node);
+       std::string effect () const {
+               return _effect;
+       }
 
-       std::list<boost::shared_ptr<Subtitle> > subtitles () const {
-               return _subtitles;
+       Color effect_color () const {
+               return _effect_color;
        }
 
+       int size_in_pixels (int screen_height) const;
+
 private:
-       std::list<boost::shared_ptr<Subtitle> > _subtitles;
+       std::string _font;
+       bool _italic;
+       Color _color;
+       int _size;
+       Time _in;
+       Time _out;
+       float _v_position;
+       std::string _text;
+       std::string _effect;
+       Color _effect_color;
 };
-       
+
 class SubtitleAsset : public Asset, public XMLFile
 {
 public:
@@ -88,6 +147,7 @@ public:
 
        void write_to_cpl (std::ostream&) const {}
        virtual std::list<std::string> equals (boost::shared_ptr<const Asset>, EqualityOptions) const {
+               /* XXX */
                return std::list<std::string> ();
        }
 
@@ -95,16 +155,19 @@ public:
                return _language;
        }
 
-       std::list<boost::shared_ptr<Font> > fonts () const {
-               return _fonts;
-       }
+       std::list<boost::shared_ptr<Subtitle> > subtitles_at (Time t) const;
 
 private:
+       std::string font_id_to_name (std::string id) const;
+       void examine_font_node (boost::shared_ptr<FontNode> font_node, std::list<boost::shared_ptr<FontNode> >& current_font_nodes);
+       
        std::string _subtitle_id;
        std::string _movie_title;
        int64_t _reel_number;
        std::string _language;
-       std::list<boost::shared_ptr<Font> > _fonts;
+       std::list<boost::shared_ptr<LoadFontNode> > _load_font_nodes;
+
+       std::list<boost::shared_ptr<Subtitle> > _subtitles;
 };
 
 }