Christie support.
[dcpomatic.git] / src / lib / config.cc
index 792ce5619571f06304478494e329157bd67456b4..28af9b30334b8ee6caf4c599df20666738d1ec65 100644 (file)
@@ -158,6 +158,8 @@ Config::set_defaults ()
        }
        _barco_username = optional<string>();
        _barco_password = optional<string>();
+       _christie_username = optional<string>();
+       _christie_password = optional<string>();
 
        _allowed_dcp_frame_rates.clear ();
        _allowed_dcp_frame_rates.push_back (24);
@@ -467,6 +469,8 @@ try
 
        _barco_username = f.optional_string_child("BarcoUsername");
        _barco_password = f.optional_string_child("BarcoPassword");
+       _christie_username = f.optional_string_child("ChristieUsername");
+       _christie_password = f.optional_string_child("ChristiePassword");
 
        /* Replace any cinemas from config.xml with those from the configured file */
        if (boost::filesystem::exists (_cinemas_file)) {
@@ -818,6 +822,13 @@ Config::write_config () const
                root->add_child("BarcoPassword")->add_child_text(*_barco_password);
        }
 
+       if (_christie_username) {
+               root->add_child("ChristieUsername")->add_child_text(*_christie_username);
+       }
+       if (_christie_password) {
+               root->add_child("ChristiePassword")->add_child_text(*_christie_password);
+       }
+
        try {
                doc.write_to_file_formatted(config_file().string());
        } catch (xmlpp::exception& e) {