Make a backup of configuration when we load in a Version 2 file, and bump our config...
[dcpomatic.git] / src / lib / config.h
1 /*
2     Copyright (C) 2012-2018 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 /** @file src/config.h
22  *  @brief Class holding configuration.
23  */
24
25 #ifndef DCPOMATIC_CONFIG_H
26 #define DCPOMATIC_CONFIG_H
27
28 #include "isdcf_metadata.h"
29 #include "types.h"
30 #include <dcp/name_format.h>
31 #include <dcp/certificate_chain.h>
32 #include <dcp/encrypted_kdm.h>
33 #include <boost/shared_ptr.hpp>
34 #include <boost/signals2.hpp>
35 #include <boost/filesystem.hpp>
36 #include <vector>
37
38 class CinemaSoundProcessor;
39 class DCPContentType;
40 class Ratio;
41 class Cinema;
42 class Film;
43 class DKDMGroup;
44
45 /** @class Config
46  *  @brief A singleton class holding configuration.
47  */
48 class Config : public boost::noncopyable
49 {
50 public:
51         /** @return number of threads which a master DoM should use for J2K encoding on the local machine */
52         int master_encoding_threads () const {
53                 return _master_encoding_threads;
54         }
55
56         /** @return number of threads which a server should use for J2K encoding on the local machine */
57         int server_encoding_threads () const {
58                 return _server_encoding_threads;
59         }
60
61         boost::optional<boost::filesystem::path> default_directory () const {
62                 return _default_directory;
63         }
64
65         boost::optional<boost::filesystem::path> default_kdm_directory () const {
66                 return _default_kdm_directory;
67         }
68
69         boost::filesystem::path default_directory_or (boost::filesystem::path a) const;
70         boost::filesystem::path default_kdm_directory_or (boost::filesystem::path a) const;
71
72         enum Property {
73                 USE_ANY_SERVERS,
74                 SERVERS,
75                 CINEMAS,
76                 SOUND,
77                 SOUND_OUTPUT,
78                 OTHER
79         };
80
81         /** @return base port number to use for J2K encoding servers */
82         int server_port_base () const {
83                 return _server_port_base;
84         }
85
86         void set_use_any_servers (bool u) {
87                 _use_any_servers = u;
88                 changed (USE_ANY_SERVERS);
89         }
90
91         bool use_any_servers () const {
92                 return _use_any_servers;
93         }
94
95         /** @param s New list of servers */
96         void set_servers (std::vector<std::string> s) {
97                 _servers = s;
98                 changed (SERVERS);
99         }
100
101         /** @return Host names / IP addresses of J2K encoding servers that should definitely be used */
102         std::vector<std::string> servers () const {
103                 return _servers;
104         }
105
106         bool only_servers_encode () const {
107                 return _only_servers_encode;
108         }
109
110         Protocol tms_protocol () const {
111                 return _tms_protocol;
112         }
113
114         /** @return The IP address of a TMS that we can copy DCPs to */
115         std::string tms_ip () const {
116                 return _tms_ip;
117         }
118
119         /** @return The path on a TMS that we should changed DCPs to */
120         std::string tms_path () const {
121                 return _tms_path;
122         }
123
124         /** @return User name to log into the TMS with */
125         std::string tms_user () const {
126                 return _tms_user;
127         }
128
129         /** @return Password to log into the TMS with */
130         std::string tms_password () const {
131                 return _tms_password;
132         }
133
134         /** @return The cinema sound processor that we are using */
135         CinemaSoundProcessor const * cinema_sound_processor () const {
136                 return _cinema_sound_processor;
137         }
138
139         std::list<boost::shared_ptr<Cinema> > cinemas () const {
140                 return _cinemas;
141         }
142
143         std::list<int> allowed_dcp_frame_rates () const {
144                 return _allowed_dcp_frame_rates;
145         }
146
147         bool allow_any_dcp_frame_rate () const {
148                 return _allow_any_dcp_frame_rate;
149         }
150
151         ISDCFMetadata default_isdcf_metadata () const {
152                 return _default_isdcf_metadata;
153         }
154
155         boost::optional<std::string> language () const {
156                 return _language;
157         }
158
159         int default_still_length () const {
160                 return _default_still_length;
161         }
162
163         Ratio const * default_container () const {
164                 return _default_container;
165         }
166
167         Ratio const * default_scale_to () const {
168                 return _default_scale_to;
169         }
170
171         DCPContentType const * default_dcp_content_type () const {
172                 return _default_dcp_content_type;
173         }
174
175         int default_dcp_audio_channels () const {
176                 return _default_dcp_audio_channels;
177         }
178
179         std::string dcp_issuer () const {
180                 return _dcp_issuer;
181         }
182
183         std::string dcp_creator () const {
184                 return _dcp_creator;
185         }
186
187         int default_j2k_bandwidth () const {
188                 return _default_j2k_bandwidth;
189         }
190
191         int default_audio_delay () const {
192                 return _default_audio_delay;
193         }
194
195         bool default_interop () const {
196                 return _default_interop;
197         }
198
199         bool default_upload_after_make_dcp () {
200                 return _default_upload_after_make_dcp;
201         }
202
203         void set_default_kdm_directory (boost::filesystem::path d) {
204                 if (_default_kdm_directory && _default_kdm_directory.get() == d) {
205                         return;
206                 }
207                 _default_kdm_directory = d;
208                 changed ();
209         }
210
211         std::string mail_server () const {
212                 return _mail_server;
213         }
214
215         int mail_port () const {
216                 return _mail_port;
217         }
218
219         std::string mail_user () const {
220                 return _mail_user;
221         }
222
223         std::string mail_password () const {
224                 return _mail_password;
225         }
226
227         std::string kdm_subject () const {
228                 return _kdm_subject;
229         }
230
231         std::string kdm_from () const {
232                 return _kdm_from;
233         }
234
235         std::vector<std::string> kdm_cc () const {
236                 return _kdm_cc;
237         }
238
239         std::string kdm_bcc () const {
240                 return _kdm_bcc;
241         }
242
243         std::string kdm_email () const {
244                 return _kdm_email;
245         }
246
247         boost::shared_ptr<const dcp::CertificateChain> signer_chain () const {
248                 return _signer_chain;
249         }
250
251         boost::shared_ptr<const dcp::CertificateChain> decryption_chain () const {
252                 return _decryption_chain;
253         }
254
255         bool check_for_updates () const {
256                 return _check_for_updates;
257         }
258
259         bool check_for_test_updates () const {
260                 return _check_for_test_updates;
261         }
262
263         int maximum_j2k_bandwidth () const {
264                 return _maximum_j2k_bandwidth;
265         }
266
267         int log_types () const {
268                 return _log_types;
269         }
270
271         bool analyse_ebur128 () const {
272                 return _analyse_ebur128;
273         }
274
275         bool automatic_audio_analysis () const {
276                 return _automatic_audio_analysis;
277         }
278
279 #ifdef DCPOMATIC_WINDOWS
280         bool win32_console () const {
281                 return _win32_console;
282         }
283 #endif
284
285         std::vector<boost::filesystem::path> history () const {
286                 return _history;
287         }
288
289         std::vector<boost::filesystem::path> player_history () const {
290                 return _player_history;
291         }
292
293         boost::shared_ptr<DKDMGroup> dkdms () const {
294                 return _dkdms;
295         }
296
297         boost::filesystem::path cinemas_file () const {
298                 return _cinemas_file;
299         }
300
301         bool show_hints_before_make_dcp () const {
302                 return _show_hints_before_make_dcp;
303         }
304
305         bool confirm_kdm_email () const {
306                 return _confirm_kdm_email;
307         }
308
309         dcp::NameFormat kdm_container_name_format () const {
310                 return _kdm_container_name_format;
311         }
312
313         dcp::NameFormat kdm_filename_format () const {
314                 return _kdm_filename_format;
315         }
316
317         dcp::NameFormat dcp_metadata_filename_format () const {
318                 return _dcp_metadata_filename_format;
319         }
320
321         dcp::NameFormat dcp_asset_filename_format () const {
322                 return _dcp_asset_filename_format;
323         }
324
325         bool jump_to_selected () const {
326                 return _jump_to_selected;
327         }
328
329         enum Nag {
330                 NAG_DKDM_CONFIG,
331                 NAG_ENCRYPTED_METADATA,
332                 NAG_REMAKE_DECRYPTION_CHAIN,
333                 NAG_COUNT
334         };
335
336         bool nagged (Nag nag) const {
337                 return _nagged[nag];
338         }
339
340         bool sound () const {
341                 return _sound;
342         }
343
344         std::string cover_sheet () const {
345                 return _cover_sheet;
346         }
347
348         boost::optional<std::string> sound_output () const {
349                 return _sound_output;
350         }
351
352         boost::optional<boost::filesystem::path> last_player_load_directory () const {
353                 return _last_player_load_directory;
354         }
355
356         enum KDMWriteType {
357                 KDM_WRITE_FLAT,
358                 KDM_WRITE_FOLDER,
359                 KDM_WRITE_ZIP
360         };
361
362         boost::optional<KDMWriteType> last_kdm_write_type () const {
363                 return _last_kdm_write_type;
364         }
365
366         enum DKDMWriteType {
367                 DKDM_WRITE_INTERNAL,
368                 DKDM_WRITE_FILE
369         };
370
371         boost::optional<DKDMWriteType> last_dkdm_write_type () const {
372                 return _last_dkdm_write_type;
373         }
374
375         int frames_in_memory_multiplier () const {
376                 return _frames_in_memory_multiplier;
377         }
378
379         boost::optional<int> decode_reduction () const {
380                 return _decode_reduction;
381         }
382
383         /* SET (mostly) */
384
385         void set_master_encoding_threads (int n) {
386                 maybe_set (_master_encoding_threads, n);
387         }
388
389         void set_server_encoding_threads (int n) {
390                 maybe_set (_server_encoding_threads, n);
391         }
392
393         void set_default_directory (boost::filesystem::path d) {
394                 if (_default_directory && *_default_directory == d) {
395                         return;
396                 }
397                 _default_directory = d;
398                 changed ();
399         }
400
401         /** @param p New server port */
402         void set_server_port_base (int p) {
403                 maybe_set (_server_port_base, p);
404         }
405
406         void set_only_servers_encode (bool o) {
407                 maybe_set (_only_servers_encode, o);
408         }
409
410         void set_tms_protocol (Protocol p) {
411                 maybe_set (_tms_protocol, p);
412         }
413
414         /** @param i IP address of a TMS that we can copy DCPs to */
415         void set_tms_ip (std::string i) {
416                 maybe_set (_tms_ip, i);
417         }
418
419         /** @param p Path on a TMS that we should changed DCPs to */
420         void set_tms_path (std::string p) {
421                 maybe_set (_tms_path, p);
422         }
423
424         /** @param u User name to log into the TMS with */
425         void set_tms_user (std::string u) {
426                 maybe_set (_tms_user, u);
427         }
428
429         /** @param p Password to log into the TMS with */
430         void set_tms_password (std::string p) {
431                 maybe_set (_tms_password, p);
432         }
433
434         void add_cinema (boost::shared_ptr<Cinema> c) {
435                 _cinemas.push_back (c);
436                 changed (CINEMAS);
437         }
438
439         void remove_cinema (boost::shared_ptr<Cinema> c) {
440                 _cinemas.remove (c);
441                 changed (CINEMAS);
442         }
443
444         void set_allowed_dcp_frame_rates (std::list<int> const & r) {
445                 maybe_set (_allowed_dcp_frame_rates, r);
446         }
447
448         void set_allow_any_dcp_frame_rate (bool a) {
449                 maybe_set (_allow_any_dcp_frame_rate, a);
450         }
451
452         void set_default_isdcf_metadata (ISDCFMetadata d) {
453                 maybe_set (_default_isdcf_metadata, d);
454         }
455
456         void set_language (std::string l) {
457                 if (_language && _language.get() == l) {
458                         return;
459                 }
460                 _language = l;
461                 changed ();
462         }
463
464         void unset_language () {
465                 if (!_language) {
466                         return;
467                 }
468
469                 _language = boost::none;
470                 changed ();
471         }
472
473         void set_default_still_length (int s) {
474                 maybe_set (_default_still_length, s);
475         }
476
477         void set_default_container (Ratio const * c) {
478                 maybe_set (_default_container, c);
479         }
480
481         void set_default_scale_to (Ratio const * c) {
482                 maybe_set (_default_scale_to, c);
483         }
484
485         void set_default_dcp_content_type (DCPContentType const * t) {
486                 maybe_set (_default_dcp_content_type, t);
487         }
488
489         void set_default_dcp_audio_channels (int c) {
490                 maybe_set (_default_dcp_audio_channels, c);
491         }
492
493         void set_dcp_issuer (std::string i) {
494                 maybe_set (_dcp_issuer, i);
495         }
496
497         void set_dcp_creator (std::string c) {
498                 maybe_set (_dcp_creator, c);
499         }
500
501         void set_default_j2k_bandwidth (int b) {
502                 maybe_set (_default_j2k_bandwidth, b);
503         }
504
505         void set_default_audio_delay (int d) {
506                 maybe_set (_default_audio_delay, d);
507         }
508
509         void set_default_interop (bool i) {
510                 maybe_set (_default_interop, i);
511         }
512
513         void set_default_upload_after_make_dcp (bool u) {
514                 maybe_set (_default_upload_after_make_dcp, u);
515         }
516
517         void set_mail_server (std::string s) {
518                 maybe_set (_mail_server, s);
519         }
520
521         void set_mail_port (int p) {
522                 maybe_set (_mail_port, p);
523         }
524
525         void set_mail_user (std::string u) {
526                 maybe_set (_mail_user, u);
527         }
528
529         void set_mail_password (std::string p) {
530                 maybe_set (_mail_password, p);
531         }
532
533         void set_kdm_subject (std::string s) {
534                 maybe_set (_kdm_subject, s);
535         }
536
537         void set_kdm_from (std::string f) {
538                 maybe_set (_kdm_from, f);
539         }
540
541         void set_kdm_cc (std::vector<std::string> f) {
542                 maybe_set (_kdm_cc, f);
543         }
544
545         void set_kdm_bcc (std::string f) {
546                 maybe_set (_kdm_bcc, f);
547         }
548
549         void set_kdm_email (std::string e) {
550                 maybe_set (_kdm_email, e);
551         }
552
553         void reset_kdm_email ();
554
555         void set_signer_chain (boost::shared_ptr<const dcp::CertificateChain> s) {
556                 maybe_set (_signer_chain, s);
557         }
558
559         void set_decryption_chain (boost::shared_ptr<const dcp::CertificateChain> c) {
560                 maybe_set (_decryption_chain, c);
561         }
562
563         void set_check_for_updates (bool c) {
564                 maybe_set (_check_for_updates, c);
565                 if (!c) {
566                         set_check_for_test_updates (false);
567                 }
568         }
569
570         void set_check_for_test_updates (bool c) {
571                 maybe_set (_check_for_test_updates, c);
572         }
573
574         void set_maximum_j2k_bandwidth (int b) {
575                 maybe_set (_maximum_j2k_bandwidth, b);
576         }
577
578         void set_log_types (int t) {
579                 maybe_set (_log_types, t);
580         }
581
582         void set_analyse_ebur128 (bool a) {
583                 maybe_set (_analyse_ebur128, a);
584         }
585
586         void set_automatic_audio_analysis (bool a) {
587                 maybe_set (_automatic_audio_analysis, a);
588         }
589
590 #ifdef DCPOMATIC_WINDOWS
591         void set_win32_console (bool c) {
592                 maybe_set (_win32_console, c);
593         }
594 #endif
595
596         void set_dkdms (boost::shared_ptr<DKDMGroup> dkdms) {
597                 _dkdms = dkdms;
598                 changed ();
599         }
600
601         void set_cinemas_file (boost::filesystem::path file);
602
603         void set_show_hints_before_make_dcp (bool s) {
604                 maybe_set (_show_hints_before_make_dcp, s);
605         }
606
607         void set_confirm_kdm_email (bool s) {
608                 maybe_set (_confirm_kdm_email, s);
609         }
610
611         void set_sound (bool s) {
612                 maybe_set (_sound, s, SOUND);
613         }
614
615         void set_sound_output (std::string o) {
616                 maybe_set (_sound_output, o, SOUND_OUTPUT);
617         }
618
619         void set_last_player_load_directory (boost::filesystem::path d) {
620                 maybe_set (_last_player_load_directory, d);
621         }
622
623         void set_last_kdm_write_type (KDMWriteType t) {
624                 maybe_set (_last_kdm_write_type, t);
625         }
626
627         void set_last_dkdm_write_type (DKDMWriteType t) {
628                 maybe_set (_last_dkdm_write_type, t);
629         }
630
631         void unset_sound_output () {
632                 if (!_sound_output) {
633                         return;
634                 }
635
636                 _sound_output = boost::none;
637                 changed ();
638         }
639
640         void set_kdm_container_name_format (dcp::NameFormat n) {
641                 maybe_set (_kdm_container_name_format, n);
642         }
643
644         void set_kdm_filename_format (dcp::NameFormat n) {
645                 maybe_set (_kdm_filename_format, n);
646         }
647
648         void set_dcp_metadata_filename_format (dcp::NameFormat n) {
649                 maybe_set (_dcp_metadata_filename_format, n);
650         }
651
652         void set_dcp_asset_filename_format (dcp::NameFormat n) {
653                 maybe_set (_dcp_asset_filename_format, n);
654         }
655
656         void set_frames_in_memory_multiplier (int m) {
657                 maybe_set (_frames_in_memory_multiplier, m);
658         }
659
660         void set_decode_reduction (boost::optional<int> r) {
661                 maybe_set (_decode_reduction, r);
662         }
663
664         void clear_history () {
665                 _history.clear ();
666                 changed ();
667         }
668
669         void clear_player_history () {
670                 _player_history.clear ();
671                 changed ();
672         }
673
674         void add_to_history (boost::filesystem::path p);
675         void add_to_player_history (boost::filesystem::path p);
676
677         void set_jump_to_selected (bool j) {
678                 maybe_set (_jump_to_selected, j);
679         }
680
681         void set_nagged (Nag nag, bool nagged) {
682                 maybe_set (_nagged[nag], nagged);
683         }
684
685         void set_cover_sheet (std::string s) {
686                 maybe_set (_cover_sheet, s);
687         }
688
689         void reset_cover_sheet ();
690
691         void changed (Property p = OTHER);
692         boost::signals2::signal<void (Property)> Changed;
693         /** Emitted if read() failed on an existing Config file.  There is nothing
694             a listener can do about it: this is just for information.
695         */
696         static boost::signals2::signal<void ()> FailedToLoad;
697         /** Emitted if read() issued a warning which the user might want to know about */
698         static boost::signals2::signal<void (std::string)> Warning;
699
700         void write () const;
701         void write_config () const;
702         void write_cinemas () const;
703         void link (boost::filesystem::path new_file) const;
704         void copy_and_link (boost::filesystem::path new_file) const;
705
706         void save_template (boost::shared_ptr<const Film> film, std::string name) const;
707         bool existing_template (std::string name) const;
708         std::list<std::string> templates () const;
709         boost::filesystem::path template_path (std::string name) const;
710         void rename_template (std::string old_name, std::string new_name) const;
711         void delete_template (std::string name) const;
712
713         static Config* instance ();
714         static void drop ();
715         static void restore_defaults ();
716         static bool have_existing (std::string);
717         static boost::filesystem::path config_file ();
718
719         static boost::optional<boost::filesystem::path> test_path;
720
721 private:
722         Config ();
723         static boost::filesystem::path path (std::string file, bool create_directories = true);
724         void read ();
725         void set_defaults ();
726         void set_kdm_email_to_default ();
727         void set_cover_sheet_to_default ();
728         void read_cinemas (cxml::Document const & f);
729         boost::shared_ptr<dcp::CertificateChain> create_certificate_chain ();
730         boost::filesystem::path directory_or (boost::optional<boost::filesystem::path> dir, boost::filesystem::path a) const;
731         void add_to_history_internal (std::vector<boost::filesystem::path>& h, boost::filesystem::path p);
732         void backup ();
733
734         template <class T>
735         void maybe_set (T& member, T new_value, Property prop = OTHER) {
736                 if (member == new_value) {
737                         return;
738                 }
739                 member = new_value;
740                 changed (prop);
741         }
742
743         template <class T>
744         void maybe_set (boost::optional<T>& member, T new_value, Property prop = OTHER) {
745                 if (member && member.get() == new_value) {
746                         return;
747                 }
748                 member = new_value;
749                 changed (prop);
750         }
751
752         /** number of threads which a master DoM should use for J2K encoding on the local machine */
753         int _master_encoding_threads;
754         /** number of threads which a server should use for J2K encoding on the local machine */
755         int _server_encoding_threads;
756         /** default directory to put new films in */
757         boost::optional<boost::filesystem::path> _default_directory;
758         /** base port number to use for J2K encoding servers;
759          *  this port and the two above it will be used.
760          */
761         int _server_port_base;
762         /** true to broadcast on the `any' address to look for servers */
763         bool _use_any_servers;
764         /** J2K encoding servers that should definitely be used */
765         std::vector<std::string> _servers;
766         bool _only_servers_encode;
767         Protocol _tms_protocol;
768         /** The IP address of a TMS that we can copy DCPs to */
769         std::string _tms_ip;
770         /** The path on a TMS that we should write DCPs to */
771         std::string _tms_path;
772         /** User name to log into the TMS with */
773         std::string _tms_user;
774         /** Password to log into the TMS with */
775         std::string _tms_password;
776         /** Our cinema sound processor */
777         CinemaSoundProcessor const * _cinema_sound_processor;
778         std::list<int> _allowed_dcp_frame_rates;
779         /** Allow any video frame rate for the DCP; if true, overrides _allowed_dcp_frame_rates */
780         bool _allow_any_dcp_frame_rate;
781         /** Default ISDCF metadata for newly-created Films */
782         ISDCFMetadata _default_isdcf_metadata;
783         boost::optional<std::string> _language;
784         /** Default length of still image content (seconds) */
785         int _default_still_length;
786         Ratio const * _default_container;
787         Ratio const * _default_scale_to;
788         DCPContentType const * _default_dcp_content_type;
789         int _default_dcp_audio_channels;
790         std::string _dcp_issuer;
791         std::string _dcp_creator;
792         int _default_j2k_bandwidth;
793         int _default_audio_delay;
794         bool _default_interop;
795         /** Default directory to offer to write KDMs to; if it's not set,
796             the home directory will be offered.
797         */
798         boost::optional<boost::filesystem::path> _default_kdm_directory;
799         bool _default_upload_after_make_dcp;
800         std::list<boost::shared_ptr<Cinema> > _cinemas;
801         std::string _mail_server;
802         int _mail_port;
803         std::string _mail_user;
804         std::string _mail_password;
805         std::string _kdm_subject;
806         std::string _kdm_from;
807         std::vector<std::string> _kdm_cc;
808         std::string _kdm_bcc;
809         std::string _kdm_email;
810         boost::shared_ptr<const dcp::CertificateChain> _signer_chain;
811         /** Chain used to decrypt KDMs; the leaf of this chain is the target
812          *  certificate for making KDMs given to DCP-o-matic.
813          */
814         boost::shared_ptr<const dcp::CertificateChain> _decryption_chain;
815         /** true to check for updates on startup */
816         bool _check_for_updates;
817         bool _check_for_test_updates;
818         /** maximum allowed J2K bandwidth in bits per second */
819         int _maximum_j2k_bandwidth;
820         int _log_types;
821         bool _analyse_ebur128;
822         bool _automatic_audio_analysis;
823 #ifdef DCPOMATIC_WINDOWS
824         bool _win32_console;
825 #endif
826         std::vector<boost::filesystem::path> _history;
827         std::vector<boost::filesystem::path> _player_history;
828         boost::shared_ptr<DKDMGroup> _dkdms;
829         boost::filesystem::path _cinemas_file;
830         bool _show_hints_before_make_dcp;
831         bool _confirm_kdm_email;
832         dcp::NameFormat _kdm_filename_format;
833         dcp::NameFormat _kdm_container_name_format;
834         dcp::NameFormat _dcp_metadata_filename_format;
835         dcp::NameFormat _dcp_asset_filename_format;
836         bool _jump_to_selected;
837         bool _nagged[NAG_COUNT];
838         bool _sound;
839         /** name of a specific sound output stream to use, or empty to use the default */
840         boost::optional<std::string> _sound_output;
841         std::string _cover_sheet;
842         boost::optional<boost::filesystem::path> _last_player_load_directory;
843         boost::optional<KDMWriteType> _last_kdm_write_type;
844         boost::optional<DKDMWriteType> _last_dkdm_write_type;
845         int _frames_in_memory_multiplier;
846         boost::optional<int> _decode_reduction;
847
848         static int const _current_version;
849
850         /** Singleton instance, or 0 */
851         static Config* _instance;
852 };
853
854 #endif