Very basic player logging.
[dcpomatic.git] / src / lib / config.cc
index 30271283b27e1b2bdec84b50eba9054648b17dfc..b28f8b957960b3a5a885829a6e0a49e7cb588742 100644 (file)
@@ -164,6 +164,8 @@ Config::set_defaults ()
        _gdc_password = optional<string>();
        _interface_complexity = INTERFACE_SIMPLE;
        _player_mode = PLAYER_MODE_WINDOW;
+       _respect_kdm_validity_periods = false;
+       _player_log_file = boost::none;
 
        _allowed_dcp_frame_rates.clear ();
        _allowed_dcp_frame_rates.push_back (24);
@@ -491,6 +493,9 @@ try
                _player_mode = PLAYER_MODE_DUAL;
        }
 
+       _respect_kdm_validity_periods = f.optional_bool_child("RespectKDMValidityPeriods").get_value_or(false);
+       _player_log_file = f.optional_string_child("PlayerLogFile");
+
        /* Replace any cinemas from config.xml with those from the configured file */
        if (boost::filesystem::exists (_cinemas_file)) {
                cxml::Document f ("Cinemas");
@@ -876,6 +881,11 @@ Config::write_config () const
                break;
        }
 
+       root->add_child("RespectKDMValidityPeriods")->add_child_text(_respect_kdm_validity_periods ? "1" : "0");
+       if (_player_log_file) {
+               root->add_child("PlayerLogFile")->add_child_text(_player_log_file->string());
+       }
+
        try {
                doc.write_to_file_formatted(config_file().string());
        } catch (xmlpp::exception& e) {