Merge master.
[dcpomatic.git] / src / lib / audio_mapping.cc
index 2e807756566ec31a068437b99ec7038117f75880..1db827046946a8008d54bff21597d4fd1d201bff 100644 (file)
 */
 
 #include <boost/lexical_cast.hpp>
+#include <libxml++/libxml++.h>
 #include <libcxml/cxml.h>
 #include "audio_mapping.h"
+#include "util.h"
 
 using std::list;
 using std::cout;
@@ -30,102 +32,96 @@ using boost::shared_ptr;
 using boost::lexical_cast;
 using boost::dynamic_pointer_cast;
 
-void
-AudioMapping::add (Channel c, libdcp::Channel d)
+AudioMapping::AudioMapping ()
+       : _content_channels (0)
 {
-       _content_to_dcp.push_back (make_pair (c, d));
+
 }
 
-/* XXX: this is grotty */
-int
-AudioMapping::dcp_channels () const
+/** Create a default AudioMapping for a given channel count.
+ *  @param c Number of channels.
+ */
+AudioMapping::AudioMapping (int c)
 {
-       for (list<pair<Channel, libdcp::Channel> >::const_iterator i = _content_to_dcp.begin(); i != _content_to_dcp.end(); ++i) {
-               if (((int) i->second) >= 2) {
-                       return 6;
-               }
-       }
-
-       return 2;
+       setup (c);
 }
 
-list<AudioMapping::Channel>
-AudioMapping::dcp_to_content (libdcp::Channel d) const
+void
+AudioMapping::setup (int c)
 {
-       list<AudioMapping::Channel> c;
-       for (list<pair<Channel, libdcp::Channel> >::const_iterator i = _content_to_dcp.begin(); i != _content_to_dcp.end(); ++i) {
-               if (i->second == d) {
-                       c.push_back (i->first);
-               }
+       _content_channels = c;
+       
+       _gain.resize (_content_channels);
+       for (int i = 0; i < _content_channels; ++i) {
+               _gain[i].resize (MAX_AUDIO_CHANNELS);
        }
-
-       return c;
 }
 
-list<AudioMapping::Channel>
-AudioMapping::content_channels () const
+void
+AudioMapping::make_default ()
 {
-       list<AudioMapping::Channel> c;
-       for (list<pair<Channel, libdcp::Channel> >::const_iterator i = _content_to_dcp.begin(); i != _content_to_dcp.end(); ++i) {
-               if (find (c.begin(), c.end(), i->first) == c.end ()) {
-                       c.push_back (i->first);
+       for (int i = 0; i < _content_channels; ++i) {
+               for (int j = 0; j < MAX_AUDIO_CHANNELS; ++j) {
+                       _gain[i][j] = 0;
                }
        }
 
-       return c;
+       if (_content_channels == 1) {
+               /* Mono -> Centre */
+               set (0, dcp::CENTRE, 1);
+       } else {
+               /* 1:1 mapping */
+               for (int i = 0; i < _content_channels; ++i) {
+                       set (i, static_cast<dcp::Channel> (i), 1);
+               }
+       }
 }
 
-list<libdcp::Channel>
-AudioMapping::content_to_dcp (Channel c) const
+AudioMapping::AudioMapping (shared_ptr<const cxml::Node> node, int state_version)
 {
-       list<libdcp::Channel> d;
-       for (list<pair<Channel, libdcp::Channel> >::const_iterator i = _content_to_dcp.begin(); i != _content_to_dcp.end(); ++i) {
-               if (i->first == c) {
-                       d.push_back (i->second);
+       setup (node->number_child<int> ("ContentChannels"));
+
+       if (state_version <= 5) {
+               /* Old-style: on/off mapping */
+               list<cxml::NodePtr> const c = node->node_children ("Map");
+               for (list<cxml::NodePtr>::const_iterator i = c.begin(); i != c.end(); ++i) {
+                       set ((*i)->number_child<int> ("ContentIndex"), static_cast<dcp::Channel> ((*i)->number_child<int> ("DCP")), 1);
+               }
+       } else {
+               list<cxml::NodePtr> const c = node->node_children ("Gain");
+               for (list<cxml::NodePtr>::const_iterator i = c.begin(); i != c.end(); ++i) {
+                       set (
+                               (*i)->number_attribute<int> ("Content"),
+                               static_cast<dcp::Channel> ((*i)->number_attribute<int> ("DCP")),
+                               lexical_cast<float> ((*i)->content ())
+                               );
                }
        }
-
-       return d;
 }
 
 void
-AudioMapping::as_xml (xmlpp::Node* node) const
+AudioMapping::set (int c, dcp::Channel d, float g)
 {
-       for (list<pair<Channel, libdcp::Channel> >::const_iterator i = _content_to_dcp.begin(); i != _content_to_dcp.end(); ++i) {
-               xmlpp::Node* t = node->add_child ("Map");
-               shared_ptr<const AudioContent> c = i->first.content.lock ();
-               t->add_child ("Content")->add_child_text (c->file().string ());
-               t->add_child ("ContentIndex")->add_child_text (lexical_cast<string> (i->first.index));
-               t->add_child ("DCP")->add_child_text (lexical_cast<string> (i->second));
-       }
+       _gain[c][d] = g;
 }
 
-void
-AudioMapping::set_from_xml (ContentList const & content, shared_ptr<const cxml::Node> node)
+float
+AudioMapping::get (int c, dcp::Channel d) const
 {
-       list<shared_ptr<cxml::Node> > const c = node->node_children ("Map");
-       for (list<shared_ptr<cxml::Node> >::const_iterator i = c.begin(); i != c.end(); ++i) {
-               string const c = (*i)->string_child ("Content");
-               ContentList::const_iterator j = content.begin ();
-               while (j != content.end() && (*j)->file().string() != c) {
-                       ++j;
-               }
-
-               if (j == content.end ()) {
-                       continue;
-               }
-
-               shared_ptr<const AudioContent> ac = dynamic_pointer_cast<AudioContent> (*j);
-               assert (ac);
-
-               add (AudioMapping::Channel (ac, (*i)->number_child<int> ("ContentIndex")), static_cast<libdcp::Channel> ((*i)->number_child<int> ("DCP")));
-       }
+       return _gain[c][d];
 }
 
-bool
-operator== (AudioMapping::Channel const & a, AudioMapping::Channel const & b)
+void
+AudioMapping::as_xml (xmlpp::Node* node) const
 {
-       shared_ptr<const AudioContent> sa = a.content.lock ();
-       shared_ptr<const AudioContent> sb = b.content.lock ();
-       return sa == sb && a.index == b.index;
+       node->add_child ("ContentChannels")->add_child_text (lexical_cast<string> (_content_channels));
+
+       for (int c = 0; c < _content_channels; ++c) {
+               for (int d = 0; d < MAX_AUDIO_CHANNELS; ++d) {
+                       xmlpp::Element* t = node->add_child ("Gain");
+                       t->set_attribute ("Content", lexical_cast<string> (c));
+                       t->set_attribute ("DCP", lexical_cast<string> (d));
+                       t->add_child_text (lexical_cast<string> (get (c, static_cast<dcp::Channel> (d))));
+               }
+       }
 }