301e893ff66005be50ceca0963e153112d2cb906
[dcpomatic.git] / src / tools / dcpomatic_player.cc
1 /*
2     Copyright (C) 2017-2021 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 #include "wx/about_dialog.h"
22 #include "wx/file_dialog.h"
23 #include "wx/film_viewer.h"
24 #include "wx/nag_dialog.h"
25 #include "wx/player_config_dialog.h"
26 #include "wx/player_information.h"
27 #include "wx/player_stress_tester.h"
28 #include "wx/playlist_controls.h"
29 #include "wx/report_problem_dialog.h"
30 #include "wx/standard_controls.h"
31 #include "wx/system_information_dialog.h"
32 #include "wx/timer_display.h"
33 #include "wx/update_dialog.h"
34 #include "wx/verify_dcp_dialog.h"
35 #include "wx/verify_dcp_progress_dialog.h"
36 #include "wx/wx_ptr.h"
37 #include "wx/wx_signal_manager.h"
38 #include "wx/wx_util.h"
39 #include "lib/compose.hpp"
40 #include "lib/config.h"
41 #include "lib/constants.h"
42 #include "lib/cross.h"
43 #include "lib/dcp_content.h"
44 #include "lib/dcp_examiner.h"
45 #include "lib/dcpomatic_log.h"
46 #include "lib/dcpomatic_socket.h"
47 #include "lib/examine_content_job.h"
48 #include "lib/ffmpeg_content.h"
49 #include "lib/file_log.h"
50 #include "lib/film.h"
51 #include "lib/font_config.h"
52 #include "lib/image.h"
53 #include "lib/image_jpeg.h"
54 #include "lib/image_png.h"
55 #include "lib/internet.h"
56 #include "lib/job.h"
57 #include "lib/job_manager.h"
58 #include "lib/null_log.h"
59 #include "lib/player.h"
60 #include "lib/player_video.h"
61 #include "lib/ratio.h"
62 #include "lib/scoped_temporary.h"
63 #include "lib/server.h"
64 #include "lib/text_content.h"
65 #include "lib/update_checker.h"
66 #include "lib/verify_dcp_job.h"
67 #include "lib/video_content.h"
68 #include <dcp/cpl.h>
69 #include <dcp/dcp.h>
70 #include <dcp/exceptions.h>
71 #include <dcp/filesystem.h>
72 #include <dcp/raw_convert.h>
73 #include <dcp/scope_guard.h>
74 #include <dcp/search.h>
75 #include <dcp/warnings.h>
76 LIBDCP_DISABLE_WARNINGS
77 #include <wx/cmdline.h>
78 #include <wx/display.h>
79 #include <wx/dnd.h>
80 #include <wx/preferences.h>
81 #include <wx/progdlg.h>
82 #include <wx/splash.h>
83 #include <wx/stdpaths.h>
84 #include <wx/wx.h>
85 LIBDCP_ENABLE_WARNINGS
86 #ifdef __WXGTK__
87 #include <X11/Xlib.h>
88 #endif
89 #include <boost/algorithm/string.hpp>
90 #include <boost/bind/bind.hpp>
91 #include <iostream>
92
93 #ifdef check
94 #undef check
95 #endif
96
97
98 #define MAX_CPLS 32
99
100
101 using std::cout;
102 using std::dynamic_pointer_cast;
103 using std::exception;
104 using std::list;
105 using std::make_shared;
106 using std::shared_ptr;
107 using std::string;
108 using std::vector;
109 using std::weak_ptr;
110 using boost::bind;
111 using boost::optional;
112 using boost::scoped_array;
113 using boost::thread;
114 #if BOOST_VERSION >= 106100
115 using namespace boost::placeholders;
116 #endif
117 using dcp::raw_convert;
118 using namespace dcpomatic;
119
120
121 enum {
122         ID_file_open = 1,
123         ID_file_add_ov,
124         ID_file_add_kdm,
125         ID_file_save_frame,
126         ID_file_history,
127         /* Allow spare IDs after _history for the recent files list */
128         ID_file_close = 100,
129         ID_view_cpl,
130         /* Allow spare IDs for CPLs */
131         ID_view_full_screen = 200,
132         ID_view_dual_screen,
133         ID_view_closed_captions,
134         ID_view_scale_appropriate,
135         ID_view_scale_full,
136         ID_view_scale_half,
137         ID_view_scale_quarter,
138         ID_help_report_a_problem,
139         ID_tools_verify,
140         ID_tools_check_for_updates,
141         ID_tools_timing,
142         ID_tools_system_information,
143         /* IDs for shortcuts (with no associated menu item) */
144         ID_start_stop,
145         ID_go_back_frame,
146         ID_go_forward_frame,
147         ID_go_back_small_amount,
148         ID_go_forward_small_amount,
149         ID_go_back_medium_amount,
150         ID_go_forward_medium_amount,
151         ID_go_back_large_amount,
152         ID_go_forward_large_amount,
153         ID_go_to_start,
154         ID_go_to_end
155 };
156
157
158 class DOMFrame : public wxFrame
159 {
160 public:
161
162         class DCPDropTarget : public wxFileDropTarget
163         {
164         public:
165                 DCPDropTarget(DOMFrame* owner)
166                         : _frame(owner)
167                 {}
168
169                 bool OnDropFiles(wxCoord, wxCoord, wxArrayString const& filenames) override
170                 {
171                         if (filenames.GetCount() == 1) {
172                                 /* Try to load a directory */
173                                 auto path = boost::filesystem::path(wx_to_std(filenames[0]));
174                                 if (dcp::filesystem::is_directory(path)) {
175                                         _frame->load_dcp(wx_to_std(filenames[0]));
176                                         return true;
177                                 }
178                         }
179
180                         if (filenames.GetCount() >= 1) {
181                                 /* Try to load the parent if we drop some files, one if which is an asset map */
182                                 for (size_t i = 0; i < filenames.GetCount(); ++i) {
183                                         auto path = boost::filesystem::path(wx_to_std(filenames[i]));
184                                         if (path.filename() == "ASSETMAP" || path.filename() == "ASSETMAP.xml") {
185                                                 _frame->load_dcp(path.parent_path());
186                                                 return true;
187                                         }
188                                 }
189                         }
190
191                         return false;
192                 }
193
194         private:
195                 DOMFrame* _frame;
196         };
197
198
199         DOMFrame ()
200                 : wxFrame (nullptr, -1, _("DCP-o-matic Player"))
201                 , _mode (Config::instance()->player_mode())
202                 /* Use a panel as the only child of the Frame so that we avoid
203                    the dark-grey background on Windows.
204                 */
205                 , _overall_panel(new wxPanel(this, wxID_ANY))
206                 , _viewer(_overall_panel)
207                 , _main_sizer (new wxBoxSizer(wxVERTICAL))
208         {
209                 dcpomatic_log = make_shared<NullLog>();
210
211 #if defined(DCPOMATIC_WINDOWS)
212                 maybe_open_console ();
213                 cout << "DCP-o-matic Player is starting." << "\n";
214 #endif
215
216                 auto bar = new wxMenuBar;
217                 setup_menu (bar);
218                 set_menu_sensitivity ();
219                 SetMenuBar (bar);
220
221 #ifdef DCPOMATIC_WINDOWS
222                 SetIcon (wxIcon (std_to_wx ("id")));
223 #endif
224
225                 _config_changed_connection = Config::instance()->Changed.connect (boost::bind (&DOMFrame::config_changed, this, _1));
226                 update_from_config (Config::PLAYER_DEBUG_LOG);
227
228                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::file_open, this), ID_file_open);
229                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::file_add_ov, this), ID_file_add_ov);
230                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::file_add_kdm, this), ID_file_add_kdm);
231                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::file_save_frame, this), ID_file_save_frame);
232                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::file_history, this, _1), ID_file_history, ID_file_history + HISTORY_SIZE);
233                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::file_close, this), ID_file_close);
234                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::file_exit, this), wxID_EXIT);
235                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::edit_preferences, this), wxID_PREFERENCES);
236                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::view_full_screen, this), ID_view_full_screen);
237                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::view_dual_screen, this), ID_view_dual_screen);
238                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::view_closed_captions, this), ID_view_closed_captions);
239                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::view_cpl, this, _1), ID_view_cpl, ID_view_cpl + MAX_CPLS);
240                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::set_decode_reduction, this, optional<int>(0)), ID_view_scale_full);
241                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::set_decode_reduction, this, optional<int>(1)), ID_view_scale_half);
242                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::set_decode_reduction, this, optional<int>(2)), ID_view_scale_quarter);
243                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::help_about, this), wxID_ABOUT);
244                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::help_report_a_problem, this), ID_help_report_a_problem);
245                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::tools_verify, this), ID_tools_verify);
246                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::tools_check_for_updates, this), ID_tools_check_for_updates);
247                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::tools_timing, this), ID_tools_timing);
248                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::tools_system_information, this), ID_tools_system_information);
249
250                 Bind(wxEVT_CLOSE_WINDOW, boost::bind(&DOMFrame::close, this, _1));
251
252                 if (Config::instance()->player_mode() == Config::PLAYER_MODE_DUAL) {
253                         auto pc = new PlaylistControls (_overall_panel, _viewer);
254                         _controls = pc;
255                         pc->ResetFilm.connect (bind(&DOMFrame::reset_film_weak, this, _1));
256                 } else {
257                         _controls = new StandardControls (_overall_panel, _viewer, false);
258                 }
259                 _controls->set_film(_viewer.film());
260                 _viewer.set_dcp_decode_reduction(Config::instance()->decode_reduction());
261                 _viewer.set_optimise_for_j2k(true);
262                 _viewer.PlaybackPermitted.connect(bind(&DOMFrame::playback_permitted, this));
263                 _viewer.TooManyDropped.connect(bind(&DOMFrame::too_many_frames_dropped, this));
264                 _info = new PlayerInformation (_overall_panel, _viewer);
265                 setup_main_sizer (Config::instance()->player_mode());
266 #ifdef __WXOSX__
267                 int accelerators = 12;
268 #else
269                 int accelerators = 11;
270 #endif
271
272                 _stress.setup (this, _controls);
273
274                 std::vector<wxAcceleratorEntry> accel(accelerators);
275                 accel[0].Set(wxACCEL_NORMAL,                WXK_SPACE, ID_start_stop);
276                 accel[1].Set(wxACCEL_NORMAL,                WXK_LEFT,  ID_go_back_frame);
277                 accel[2].Set(wxACCEL_NORMAL,                WXK_RIGHT, ID_go_forward_frame);
278                 accel[3].Set(wxACCEL_SHIFT,                 WXK_LEFT,  ID_go_back_small_amount);
279                 accel[4].Set(wxACCEL_SHIFT,                 WXK_RIGHT, ID_go_forward_small_amount);
280                 accel[5].Set(wxACCEL_CTRL,                  WXK_LEFT,  ID_go_back_medium_amount);
281                 accel[6].Set(wxACCEL_CTRL,                  WXK_RIGHT, ID_go_forward_medium_amount);
282                 accel[7].Set(wxACCEL_SHIFT | wxACCEL_CTRL,  WXK_LEFT,  ID_go_back_large_amount);
283                 accel[8].Set(wxACCEL_SHIFT | wxACCEL_CTRL,  WXK_RIGHT, ID_go_forward_large_amount);
284                 accel[9].Set(wxACCEL_NORMAL,                WXK_HOME,  ID_go_to_start);
285                 accel[10].Set(wxACCEL_NORMAL,               WXK_END,   ID_go_to_end);
286 #ifdef __WXOSX__
287                 accel[11].Set(wxACCEL_CTRL, static_cast<int>('W'), ID_file_close);
288 #endif
289                 wxAcceleratorTable accel_table (accelerators, accel.data());
290                 SetAcceleratorTable (accel_table);
291
292                 Bind (wxEVT_MENU, boost::bind(&DOMFrame::start_stop_pressed, this), ID_start_stop);
293                 Bind (wxEVT_MENU, boost::bind(&DOMFrame::go_back_frame, this),      ID_go_back_frame);
294                 Bind (wxEVT_MENU, boost::bind(&DOMFrame::go_forward_frame, this),   ID_go_forward_frame);
295                 Bind (wxEVT_MENU, boost::bind(&DOMFrame::go_seconds,  this,   -60), ID_go_back_small_amount);
296                 Bind (wxEVT_MENU, boost::bind(&DOMFrame::go_seconds,  this,    60), ID_go_forward_small_amount);
297                 Bind (wxEVT_MENU, boost::bind(&DOMFrame::go_seconds,  this,  -600), ID_go_back_medium_amount);
298                 Bind (wxEVT_MENU, boost::bind(&DOMFrame::go_seconds,  this,   600), ID_go_forward_medium_amount);
299                 Bind (wxEVT_MENU, boost::bind(&DOMFrame::go_seconds,  this, -3600), ID_go_back_large_amount);
300                 Bind (wxEVT_MENU, boost::bind(&DOMFrame::go_seconds,  this,  3600), ID_go_forward_large_amount);
301                 Bind (wxEVT_MENU, boost::bind(&DOMFrame::go_to_start, this), ID_go_to_start);
302                 Bind (wxEVT_MENU, boost::bind(&DOMFrame::go_to_end,   this), ID_go_to_end);
303
304                 reset_film ();
305
306                 UpdateChecker::instance()->StateChanged.connect (boost::bind(&DOMFrame::update_checker_state_changed, this));
307                 setup_screen ();
308
309                 _stress.LoadDCP.connect (boost::bind(&DOMFrame::load_dcp, this, _1));
310
311                 SetDropTarget(new DCPDropTarget(this));
312         }
313
314         ~DOMFrame ()
315         {
316                 /* It's important that this is stopped before our frame starts destroying its children,
317                  * otherwise UI elements that it depends on will disappear from under it.
318                  */
319                 _viewer.stop();
320         }
321
322         void close(wxCloseEvent& ev)
323         {
324                 FontConfig::drop();
325                 ev.Skip();
326         }
327
328         void setup_main_sizer (Config::PlayerMode mode)
329         {
330                 _main_sizer->Detach(_viewer.panel());
331                 _main_sizer->Detach (_controls);
332                 _main_sizer->Detach (_info);
333                 if (mode != Config::PLAYER_MODE_DUAL) {
334                         _main_sizer->Add(_viewer.panel(), 1, wxEXPAND);
335                 }
336                 _main_sizer->Add (_controls, mode == Config::PLAYER_MODE_DUAL ? 1 : 0, wxEXPAND | wxALL, 6);
337                 _main_sizer->Add (_info, 0, wxEXPAND | wxALL, 6);
338                 _overall_panel->SetSizer (_main_sizer);
339                 _overall_panel->Layout ();
340         }
341
342         bool playback_permitted ()
343         {
344                 if (!_film || !Config::instance()->respect_kdm_validity_periods()) {
345                         return true;
346                 }
347
348                 bool ok = true;
349                 for (auto i: _film->content()) {
350                         auto d = dynamic_pointer_cast<DCPContent>(i);
351                         if (d && !d->kdm_timing_window_valid()) {
352                                 ok = false;
353                         }
354                 }
355
356                 if (!ok) {
357                         error_dialog (this, _("The KDM does not allow playback of this content at this time."));
358                 }
359
360                 return ok;
361         }
362
363
364         void too_many_frames_dropped ()
365         {
366                 if (!Config::instance()->nagged(Config::NAG_TOO_MANY_DROPPED_FRAMES)) {
367                         _viewer.stop();
368                 }
369
370                 NagDialog::maybe_nag (
371                         this,
372                         Config::NAG_TOO_MANY_DROPPED_FRAMES,
373                         _(wxS("The player is dropping a lot of frames, so playback may not be accurate.\n\n"
374                           "<b>This does not necessarily mean that the DCP you are playing is defective!</b>\n\n"
375                           "You may be able to improve player performance by:\n"
376                           "• choosing 'decode at half resolution' or 'decode at quarter resolution' from the View menu\n"
377                           "• using a more powerful computer.\n"
378                          ))
379                         );
380         }
381
382         void set_decode_reduction (optional<int> reduction)
383         {
384                 _viewer.set_dcp_decode_reduction(reduction);
385                 _info->triggered_update ();
386                 Config::instance()->set_decode_reduction (reduction);
387         }
388
389         void load_dcp (boost::filesystem::path dir)
390         {
391                 DCPOMATIC_ASSERT (_film);
392
393                 reset_film ();
394                 try {
395                         _stress.set_suspended (true);
396                         auto dcp = make_shared<DCPContent>(dir);
397                         auto job = make_shared<ExamineContentJob>(_film, dcp);
398                         _examine_job_connection = job->Finished.connect(bind(&DOMFrame::add_dcp_to_film, this, weak_ptr<Job>(job), weak_ptr<Content>(dcp)));
399                         JobManager::instance()->add (job);
400                         bool const ok = display_progress (_("DCP-o-matic Player"), _("Loading content"));
401                         if (!ok || !report_errors_from_last_job(this)) {
402                                 return;
403                         }
404                         Config::instance()->add_to_player_history (dir);
405                         if (dcp->video_frame_rate()) {
406                                 _film->set_video_frame_rate(dcp->video_frame_rate().get(), true);
407                         }
408                 } catch (ProjectFolderError &) {
409                         error_dialog (
410                                 this,
411                                 wxString::Format(_("Could not load a DCP from %s"), std_to_wx(dir.string())),
412                                 _(
413                                         "This looks like a DCP-o-matic project folder, which cannot be loaded into the player.  "
414                                         "Choose the DCP folder inside the DCP-o-matic project folder if that's what you want to play."
415                                  )
416                                 );
417                 } catch (dcp::ReadError& e) {
418                         error_dialog (this, wxString::Format(_("Could not load a DCP from %s"), std_to_wx(dir.string())), std_to_wx(e.what()));
419                 } catch (DCPError& e) {
420                         error_dialog (this, wxString::Format(_("Could not load a DCP from %s"), std_to_wx(dir.string())), std_to_wx(e.what()));
421                 }
422         }
423
424         void add_dcp_to_film (weak_ptr<Job> weak_job, weak_ptr<Content> weak_content)
425         {
426                 auto job = weak_job.lock ();
427                 if (!job || !job->finished_ok()) {
428                         return;
429                 }
430
431                 auto content = weak_content.lock ();
432                 if (!content) {
433                         return;
434                 }
435
436                 _film->add_content (content);
437                 _stress.set_suspended (false);
438         }
439
440         void reset_film_weak (weak_ptr<Film> weak_film)
441         {
442                 auto film = weak_film.lock ();
443                 if (film) {
444                         reset_film (film);
445                 }
446         }
447
448         void reset_film (shared_ptr<Film> film = shared_ptr<Film>(new Film(optional<boost::filesystem::path>())))
449         {
450                 _film = film;
451                 _film->set_tolerant (true);
452                 _film->set_audio_channels (MAX_DCP_AUDIO_CHANNELS);
453                 _viewer.set_film(_film);
454                 _controls->set_film (_film);
455                 _film->Change.connect (bind(&DOMFrame::film_changed, this, _1, _2));
456                 _info->triggered_update ();
457         }
458
459         void film_changed (ChangeType type, FilmProperty property)
460         {
461                 if (type != ChangeType::DONE || property != FilmProperty::CONTENT) {
462                         return;
463                 }
464
465                 if (_viewer.playing()) {
466                         _viewer.stop();
467                 }
468
469                 /* Start off as Flat */
470                 _film->set_container (Ratio::from_id("185"));
471
472                 for (auto i: _film->content()) {
473                         auto dcp = dynamic_pointer_cast<DCPContent>(i);
474
475                         for (auto j: i->text) {
476                                 j->set_use (true);
477                         }
478
479                         if (i->video) {
480                                 auto const r = Ratio::nearest_from_ratio(i->video->size().ratio());
481                                 if (r->id() == "239") {
482                                         /* Any scope content means we use scope */
483                                         _film->set_container(r);
484                                 }
485                         }
486
487                         /* Any 3D content means we use 3D mode */
488                         if (i->video && i->video->frame_type() != VideoFrameType::TWO_D) {
489                                 _film->set_three_d (true);
490                         }
491                 }
492
493                 _viewer.seek(DCPTime(), true);
494                 _info->triggered_update ();
495
496                 set_menu_sensitivity ();
497
498                 auto old = _cpl_menu->GetMenuItems();
499                 for (auto const& i: old) {
500                         _cpl_menu->Remove (i);
501                 }
502
503                 if (_film->content().size() == 1) {
504                         /* Offer a CPL menu */
505                         auto first = dynamic_pointer_cast<DCPContent>(_film->content().front());
506                         if (first) {
507                                 int id = ID_view_cpl;
508                                 for (auto i: dcp::find_and_resolve_cpls(first->directories(), true)) {
509                                         auto j = _cpl_menu->AppendRadioItem(
510                                                 id,
511                                                 wxString::Format("%s (%s)", std_to_wx(i->annotation_text().get_value_or("")).data(), std_to_wx(i->id()).data())
512                                                 );
513                                         j->Check(!first->cpl() || i->id() == *first->cpl());
514                                         ++id;
515                                 }
516                         }
517                 }
518         }
519
520         void load_stress_script (boost::filesystem::path path)
521         {
522                 _stress.load_script (path);
523         }
524
525 private:
526
527         void examine_content ()
528         {
529                 DCPOMATIC_ASSERT (_film);
530                 auto dcp = dynamic_pointer_cast<DCPContent>(_film->content().front());
531                 DCPOMATIC_ASSERT (dcp);
532                 dcp->examine (_film, shared_ptr<Job>());
533
534                 /* Examining content re-creates the TextContent objects, so we must re-enable them */
535                 for (auto i: dcp->text) {
536                         i->set_use (true);
537                 }
538         }
539
540         bool report_errors_from_last_job (wxWindow* parent) const
541         {
542                 auto jm = JobManager::instance ();
543
544                 DCPOMATIC_ASSERT (!jm->get().empty());
545
546                 auto last = jm->get().back();
547                 if (last->finished_in_error()) {
548                         error_dialog(parent, wxString::Format(_("Could not load DCP.\n\n%s."), std_to_wx(last->error_summary()).data()), std_to_wx(last->error_details()));
549                         return false;
550                 }
551
552                 return true;
553         }
554
555         void setup_menu (wxMenuBar* m)
556         {
557                 _file_menu = new wxMenu;
558                 _file_menu->Append (ID_file_open, _("&Open...\tCtrl-O"));
559                 _file_add_ov = _file_menu->Append (ID_file_add_ov, _("&Add OV..."));
560                 _file_add_kdm = _file_menu->Append (ID_file_add_kdm, _("Add &KDM..."));
561                 _file_menu->AppendSeparator ();
562                 _file_save_frame = _file_menu->Append (ID_file_save_frame, _("&Save frame to file...\tCtrl-S"));
563
564                 _history_position = _file_menu->GetMenuItems().GetCount();
565
566                 _file_menu->AppendSeparator ();
567                 _file_menu->Append (ID_file_close, _("&Close"));
568                 _file_menu->AppendSeparator ();
569
570 #ifdef __WXOSX__
571                 _file_menu->Append (wxID_EXIT, _("&Exit"));
572 #else
573                 _file_menu->Append (wxID_EXIT, _("&Quit"));
574 #endif
575
576 #ifdef __WXOSX__
577                 auto prefs = _file_menu->Append (wxID_PREFERENCES, _("&Preferences...\tCtrl-P"));
578 #else
579                 auto edit = new wxMenu;
580                 auto prefs = edit->Append (wxID_PREFERENCES, _("&Preferences...\tCtrl-P"));
581 #endif
582
583                 prefs->Enable (Config::instance()->have_write_permission());
584
585                 _cpl_menu = new wxMenu;
586
587                 auto view = new wxMenu;
588                 auto c = Config::instance()->decode_reduction();
589                 _view_cpl = view->Append(ID_view_cpl, _("CPL"), _cpl_menu);
590                 view->AppendSeparator();
591                 _view_full_screen = view->AppendCheckItem(ID_view_full_screen, _("Full screen\tF11"));
592                 _view_dual_screen = view->AppendCheckItem(ID_view_dual_screen, _("Dual screen\tShift+F11"));
593                 setup_menu ();
594                 view->AppendSeparator();
595                 view->Append(ID_view_closed_captions, _("Closed captions..."));
596                 view->AppendSeparator();
597                 view->AppendRadioItem(ID_view_scale_appropriate, _("Set decode resolution to match display"))->Check(!static_cast<bool>(c));
598                 view->AppendRadioItem(ID_view_scale_full, _("Decode at full resolution"))->Check(c && c.get() == 0);
599                 view->AppendRadioItem(ID_view_scale_half, _("Decode at half resolution"))->Check(c && c.get() == 1);
600                 view->AppendRadioItem(ID_view_scale_quarter, _("Decode at quarter resolution"))->Check(c && c.get() == 2);
601
602                 auto tools = new wxMenu;
603                 _tools_verify = tools->Append (ID_tools_verify, _("Verify DCP..."));
604                 tools->AppendSeparator ();
605                 tools->Append (ID_tools_check_for_updates, _("Check for updates"));
606                 tools->Append (ID_tools_timing, _("Timing..."));
607                 tools->Append (ID_tools_system_information, _("System information..."));
608
609                 auto help = new wxMenu;
610 #ifdef __WXOSX__
611                 help->Append (wxID_ABOUT, _("About DCP-o-matic"));
612 #else
613                 help->Append (wxID_ABOUT, _("About"));
614 #endif
615                 help->Append (ID_help_report_a_problem, _("Report a problem..."));
616
617                 m->Append (_file_menu, _("&File"));
618 #ifndef __WXOSX__
619                 m->Append (edit, _("&Edit"));
620 #endif
621                 m->Append (view, _("&View"));
622                 m->Append (tools, _("&Tools"));
623                 m->Append (help, _("&Help"));
624         }
625
626         void file_open ()
627         {
628                 auto d = wxStandardPaths::Get().GetDocumentsDir();
629                 if (Config::instance()->last_player_load_directory()) {
630                         d = std_to_wx (Config::instance()->last_player_load_directory()->string());
631                 }
632
633                 auto c = make_wx<wxDirDialog>(this, _("Select DCP to open"), d, wxDEFAULT_DIALOG_STYLE | wxDD_DIR_MUST_EXIST);
634
635                 int r;
636                 while (true) {
637                         r = c->ShowModal ();
638                         if (r == wxID_OK && c->GetPath() == wxStandardPaths::Get().GetDocumentsDir()) {
639                                 error_dialog (this, _("You did not select a folder.  Make sure that you select a folder before clicking Open."));
640                         } else {
641                                 break;
642                         }
643                 }
644
645                 if (r == wxID_OK) {
646                         boost::filesystem::path const dcp (wx_to_std (c->GetPath ()));
647                         load_dcp (dcp);
648                         Config::instance()->set_last_player_load_directory (dcp.parent_path());
649                 }
650         }
651
652         void file_add_ov ()
653         {
654                 auto initial_dir = wxStandardPaths::Get().GetDocumentsDir();
655                 if (Config::instance()->last_player_load_directory()) {
656                         initial_dir = std_to_wx(Config::instance()->last_player_load_directory()->string());
657                 }
658
659                 auto c = make_wx<wxDirDialog>(
660                         this,
661                         _("Select DCP to open as OV"),
662                         initial_dir,
663                         wxDEFAULT_DIALOG_STYLE | wxDD_DIR_MUST_EXIST
664                         );
665
666                 int r;
667                 while (true) {
668                         r = c->ShowModal ();
669                         if (r == wxID_OK && c->GetPath() == wxStandardPaths::Get().GetDocumentsDir()) {
670                                 error_dialog (this, _("You did not select a folder.  Make sure that you select a folder before clicking Open."));
671                         } else {
672                                 break;
673                         }
674                 }
675
676                 if (r == wxID_OK) {
677                         DCPOMATIC_ASSERT (_film);
678                         auto dcp = std::dynamic_pointer_cast<DCPContent>(_film->content().front());
679                         DCPOMATIC_ASSERT (dcp);
680                         dcp->add_ov (wx_to_std(c->GetPath()));
681                         JobManager::instance()->add(make_shared<ExamineContentJob>(_film, dcp));
682                         bool const ok = display_progress (_("DCP-o-matic Player"), _("Loading content"));
683                         if (!ok || !report_errors_from_last_job(this)) {
684                                 return;
685                         }
686                         for (auto i: dcp->text) {
687                                 i->set_use (true);
688                         }
689                         if (dcp->video) {
690                                 auto const r = Ratio::nearest_from_ratio(dcp->video->size().ratio());
691                                 if (r) {
692                                         _film->set_container(r);
693                                 }
694                         }
695                 }
696
697                 _info->triggered_update ();
698         }
699
700         void file_add_kdm ()
701         {
702                 FileDialog dialog(this, _("Select KDM"), wxT("XML files|*.xml|All files|*.*"), wxFD_MULTIPLE, "AddKDMPath");
703
704                 if (dialog.show()) {
705                         DCPOMATIC_ASSERT (_film);
706                         auto dcp = std::dynamic_pointer_cast<DCPContent>(_film->content().front());
707                         DCPOMATIC_ASSERT (dcp);
708                         try {
709                                 if (dcp) {
710                                         dcp::ScopeGuard sg([this]() {
711                                                 _viewer.set_coalesce_player_changes(false);
712                                         });
713                                         _viewer.set_coalesce_player_changes(true);
714                                         for (auto path: dialog.paths()) {
715                                                 dcp->add_kdm(dcp::EncryptedKDM(dcp::file_to_string(path)));
716                                                 _kdms.push_back(path);
717                                         }
718                                         examine_content();
719                                 }
720                         } catch (exception& e) {
721                                 error_dialog (this, wxString::Format (_("Could not load KDM.")), std_to_wx(e.what()));
722                                 return;
723                         }
724                 }
725
726                 _info->triggered_update ();
727         }
728
729         void file_save_frame ()
730         {
731                 wxFileDialog dialog (this, _("Save frame to file"), "", "", "PNG files (*.png)|*.png|JPEG files (*.jpg;*.jpeg)|*.jpg;*.jpeg", wxFD_SAVE | wxFD_OVERWRITE_PROMPT);
732                 if (dialog.ShowModal() == wxID_CANCEL) {
733                         return;
734                 }
735
736                 auto path = boost::filesystem::path (wx_to_std(dialog.GetPath()));
737
738                 auto player = make_shared<Player>(_film, Image::Alignment::PADDED);
739                 player->seek(_viewer.position(), true);
740
741                 bool done = false;
742                 player->Video.connect ([path, &done, this](shared_ptr<PlayerVideo> video, DCPTime) {
743                         auto ext = boost::algorithm::to_lower_copy(path.extension().string());
744                         if (ext == ".png") {
745                                 auto image = video->image(boost::bind(PlayerVideo::force, AV_PIX_FMT_RGBA), VideoRange::FULL, false);
746                                 image_as_png(image).write(path);
747                         } else if (ext == ".jpg" || ext == ".jpeg") {
748                                 auto image = video->image(boost::bind(PlayerVideo::force, AV_PIX_FMT_RGB24), VideoRange::FULL, false);
749                                 image_as_jpeg(image, 80).write(path);
750                         } else {
751                                 error_dialog (this, _(wxString::Format("Unrecognised file extension %s (use .jpg, .jpeg or .png)", std_to_wx(ext))));
752                         }
753                         done = true;
754                 });
755
756                 int tries_left = 50;
757                 while (!done && tries_left >= 0) {
758                         player->pass();
759                         --tries_left;
760                 }
761
762                 DCPOMATIC_ASSERT (tries_left >= 0);
763         }
764
765         void file_history (wxCommandEvent& event)
766         {
767                 auto history = Config::instance()->player_history ();
768                 int n = event.GetId() - ID_file_history;
769                 if (n >= 0 && n < static_cast<int> (history.size ())) {
770                         try {
771                                 load_dcp (history[n]);
772                         } catch (exception& e) {
773                                 error_dialog (0, std_to_wx(String::compose(wx_to_std(_("Could not load DCP %1.")), history[n])), std_to_wx(e.what()));
774                         }
775                 }
776         }
777
778         void file_close ()
779         {
780                 reset_film ();
781                 _info->triggered_update ();
782                 set_menu_sensitivity ();
783         }
784
785         void file_exit ()
786         {
787                 Close ();
788         }
789
790         void edit_preferences ()
791         {
792                 if (!Config::instance()->have_write_permission()) {
793                         return;
794                 }
795
796                 if (!_config_dialog) {
797                         _config_dialog = create_player_config_dialog ();
798                 }
799                 _config_dialog->Show (this);
800         }
801
802         void view_cpl (wxCommandEvent& ev)
803         {
804                 auto dcp = std::dynamic_pointer_cast<DCPContent>(_film->content().front());
805                 DCPOMATIC_ASSERT (dcp);
806                 auto cpls = dcp::find_and_resolve_cpls (dcp->directories(), true);
807                 int id = ev.GetId() - ID_view_cpl;
808                 DCPOMATIC_ASSERT (id >= 0);
809                 DCPOMATIC_ASSERT (id < int(cpls.size()));
810                 auto i = cpls.begin();
811                 while (id > 0) {
812                         ++i;
813                         --id;
814                 }
815
816                 _viewer.set_coalesce_player_changes(true);
817                 dcp->set_cpl ((*i)->id());
818                 examine_content ();
819                 _viewer.set_coalesce_player_changes(false);
820
821                 _info->triggered_update ();
822         }
823
824         void view_full_screen ()
825         {
826                 if (_mode == Config::PLAYER_MODE_FULL) {
827                         _mode = Config::PLAYER_MODE_WINDOW;
828                 } else {
829                         _mode = Config::PLAYER_MODE_FULL;
830                 }
831                 setup_screen ();
832                 setup_menu ();
833         }
834
835         void view_dual_screen ()
836         {
837                 if (_mode == Config::PLAYER_MODE_DUAL) {
838                         _mode = Config::PLAYER_MODE_WINDOW;
839                 } else {
840                         _mode = Config::PLAYER_MODE_DUAL;
841                 }
842                 setup_screen ();
843                 setup_menu ();
844         }
845
846         void setup_menu ()
847         {
848                 if (_view_full_screen) {
849                         _view_full_screen->Check (_mode == Config::PLAYER_MODE_FULL);
850                 }
851                 if (_view_dual_screen) {
852                         _view_dual_screen->Check (_mode == Config::PLAYER_MODE_DUAL);
853                 }
854         }
855
856         void setup_screen ()
857         {
858                 _controls->Show (_mode != Config::PLAYER_MODE_FULL);
859                 _info->Show (_mode != Config::PLAYER_MODE_FULL);
860                 _overall_panel->SetBackgroundColour (_mode == Config::PLAYER_MODE_FULL ? wxColour(0, 0, 0) : wxNullColour);
861                 ShowFullScreen (_mode == Config::PLAYER_MODE_FULL);
862                 _viewer.set_pad_black(_mode != Config::PLAYER_MODE_WINDOW);
863
864                 if (_mode == Config::PLAYER_MODE_DUAL) {
865                         _dual_screen = new wxFrame (this, wxID_ANY, wxT(""));
866                         _dual_screen->SetBackgroundColour (wxColour(0, 0, 0));
867                         _dual_screen->ShowFullScreen (true);
868                         _viewer.panel()->Reparent(_dual_screen);
869                         _viewer.panel()->SetFocus();
870                         _dual_screen->Show ();
871                         LOG_DEBUG_PLAYER("Setting up dual screen mode with %1 displays", wxDisplay::GetCount());
872                         for (auto index = 0U; index < wxDisplay::GetCount(); ++index) {
873                                 wxDisplay display(index);
874                                 auto client = display.GetClientArea();
875                                 auto mode = display.GetCurrentMode();
876                                 auto geometry = display.GetGeometry();
877                                 LOG_DEBUG_PLAYER("Display %1", index);
878                                 LOG_DEBUG_PLAYER("  ClientArea position=(%1, %2) size=(%3, %4)", client.GetX(), client.GetY(), client.GetWidth(), client.GetHeight());
879                                 LOG_DEBUG_PLAYER("  Geometry   position=(%1, %2) size=(%3, %4)", geometry.GetX(), geometry.GetY(), geometry.GetWidth(), geometry.GetHeight());
880                                 LOG_DEBUG_PLAYER("  Mode       size=(%1, %2)", mode.GetWidth(), mode.GetHeight());
881                                 LOG_DEBUG_PLAYER("  Primary?   %1", static_cast<int>(display.IsPrimary()));
882                         }
883                         if (wxDisplay::GetCount() > 1) {
884                                 wxRect geometry[2] = {
885                                         wxDisplay(0U).GetGeometry(),
886                                         wxDisplay(1U).GetGeometry()
887                                 };
888                                 auto const image_display = Config::instance()->image_display();
889                                 _dual_screen->Move(geometry[image_display].GetX(), geometry[image_display].GetY());
890                                 _viewer.panel()->SetSize(geometry[image_display].GetWidth(), geometry[image_display].GetHeight());
891                                 Move(geometry[1 - image_display].GetX(), geometry[1 - image_display].GetY());
892                         }
893                         _dual_screen->Bind(wxEVT_CHAR_HOOK, boost::bind(&DOMFrame::dual_screen_key_press, this, _1));
894                 } else {
895                         if (_dual_screen) {
896                                 _viewer.panel()->Reparent(_overall_panel);
897                                 _dual_screen->Destroy ();
898                                 _dual_screen = 0;
899                         }
900                 }
901
902                 setup_main_sizer (_mode);
903         }
904
905         void dual_screen_key_press(wxKeyEvent& ev)
906         {
907                 if (ev.GetKeyCode() == WXK_F11) {
908                         if (ev.ShiftDown()) {
909                                 view_dual_screen();
910                         } else if (!ev.HasAnyModifiers()) {
911                                 view_full_screen();
912                         }
913                 }
914         }
915
916         void view_closed_captions ()
917         {
918                 _viewer.show_closed_captions();
919         }
920
921         void tools_verify ()
922         {
923                 auto dcp = std::dynamic_pointer_cast<DCPContent>(_film->content().front());
924                 DCPOMATIC_ASSERT (dcp);
925
926                 auto job = make_shared<VerifyDCPJob>(dcp->directories(), _kdms);
927                 VerifyDCPProgressDialog progress(this, _("DCP-o-matic Player"));
928                 bool const completed = progress.run(job);
929                 progress.Close();
930
931                 if (completed) {
932                         VerifyDCPDialog dialog(this, job);
933                         dialog.ShowModal();
934                 }
935         }
936
937         void tools_check_for_updates ()
938         {
939                 UpdateChecker::instance()->run ();
940                 _update_news_requested = true;
941         }
942
943         void tools_timing ()
944         {
945                 auto d = make_wx<TimerDisplay>(this, _viewer.state_timer(), _viewer.gets());
946                 d->ShowModal ();
947         }
948
949         void tools_system_information ()
950         {
951                 if (!_system_information_dialog) {
952                         _system_information_dialog = new SystemInformationDialog (this, _viewer);
953                 }
954
955                 _system_information_dialog->Show ();
956         }
957
958         void help_about ()
959         {
960                 auto d = make_wx<AboutDialog>(this);
961                 d->ShowModal ();
962         }
963
964         void help_report_a_problem ()
965         {
966                 auto d = make_wx<ReportProblemDialog>(this);
967                 if (d->ShowModal () == wxID_OK) {
968                         d->report ();
969                 }
970         }
971
972         void update_checker_state_changed ()
973         {
974                 auto uc = UpdateChecker::instance ();
975
976                 bool const announce =
977                         _update_news_requested ||
978                         (uc->stable() && Config::instance()->check_for_updates()) ||
979                         (uc->test() && Config::instance()->check_for_updates() && Config::instance()->check_for_test_updates());
980
981                 _update_news_requested = false;
982
983                 if (!announce) {
984                         return;
985                 }
986
987                 if (uc->state() == UpdateChecker::State::YES) {
988                         auto dialog = make_wx<UpdateDialog>(this, uc->stable (), uc->test ());
989                         dialog->ShowModal ();
990                 } else if (uc->state() == UpdateChecker::State::FAILED) {
991                         error_dialog (this, _("The DCP-o-matic download server could not be contacted."));
992                 } else {
993                         error_dialog (this, _("There are no new versions of DCP-o-matic available."));
994                 }
995
996                 _update_news_requested = false;
997         }
998
999         void config_changed (Config::Property prop)
1000         {
1001                 /* Instantly save any config changes when using the player GUI */
1002                 try {
1003                         Config::instance()->write_config();
1004                 } catch (FileError& e) {
1005                         if (prop != Config::HISTORY) {
1006                                 error_dialog (
1007                                         this,
1008                                         wxString::Format(
1009                                                 _("Could not write to config file at %s.  Your changes have not been saved."),
1010                                                 std_to_wx(e.file().string())
1011                                                 )
1012                                         );
1013                         }
1014                 } catch (exception& e) {
1015                         error_dialog (
1016                                 this,
1017                                 _("Could not write to config file.  Your changes have not been saved.")
1018                                 );
1019                 }
1020
1021                 update_from_config (prop);
1022         }
1023
1024         void update_from_config (Config::Property prop)
1025         {
1026                 for (int i = 0; i < _history_items; ++i) {
1027                         delete _file_menu->Remove (ID_file_history + i);
1028                 }
1029
1030                 if (_history_separator) {
1031                         _file_menu->Remove (_history_separator);
1032                 }
1033                 delete _history_separator;
1034                 _history_separator = nullptr;
1035
1036                 int pos = _history_position;
1037
1038                 /* Clear out non-existent history items before we re-build the menu */
1039                 Config::instance()->clean_player_history ();
1040                 auto history = Config::instance()->player_history ();
1041
1042                 if (!history.empty ()) {
1043                         _history_separator = _file_menu->InsertSeparator (pos++);
1044                 }
1045
1046                 for (size_t i = 0; i < history.size(); ++i) {
1047                         string s;
1048                         if (i < 9) {
1049                                 s = String::compose ("&%1 %2", i + 1, history[i].string());
1050                         } else {
1051                                 s = history[i].string();
1052                         }
1053                         _file_menu->Insert (pos++, ID_file_history + i, std_to_wx (s));
1054                 }
1055
1056                 _history_items = history.size ();
1057
1058                 if (prop == Config::PLAYER_DEBUG_LOG) {
1059                         auto p = Config::instance()->player_debug_log_file();
1060                         if (p) {
1061                                 dcpomatic_log = make_shared<FileLog>(*p);
1062                         } else {
1063                                 dcpomatic_log = make_shared<NullLog>();
1064                         }
1065                         dcpomatic_log->set_types (LogEntry::TYPE_GENERAL | LogEntry::TYPE_WARNING | LogEntry::TYPE_ERROR | LogEntry::TYPE_DEBUG_VIDEO_VIEW);
1066                 }
1067         }
1068
1069         void set_menu_sensitivity ()
1070         {
1071                 _tools_verify->Enable (static_cast<bool>(_film));
1072                 _file_add_ov->Enable (static_cast<bool>(_film));
1073                 _file_add_kdm->Enable (static_cast<bool>(_film));
1074                 _file_save_frame->Enable (static_cast<bool>(_film));
1075                 _view_cpl->Enable (static_cast<bool>(_film));
1076         }
1077
1078         void start_stop_pressed ()
1079         {
1080                 if (_viewer.playing()) {
1081                         _viewer.stop();
1082                 } else {
1083                         _viewer.start();
1084                 }
1085         }
1086
1087         void go_back_frame ()
1088         {
1089                 _viewer.seek_by(-_viewer.one_video_frame(), true);
1090         }
1091
1092         void go_forward_frame ()
1093         {
1094                 _viewer.seek_by(_viewer.one_video_frame(), true);
1095         }
1096
1097         void go_seconds (int s)
1098         {
1099                 _viewer.seek_by(DCPTime::from_seconds(s), true);
1100         }
1101
1102         void go_to_start ()
1103         {
1104                 _viewer.seek(DCPTime(), true);
1105         }
1106
1107         void go_to_end ()
1108         {
1109                 _viewer.seek(_film->length() - _viewer.one_video_frame(), true);
1110         }
1111
1112         wxFrame* _dual_screen = nullptr;
1113         bool _update_news_requested = false;
1114         PlayerInformation* _info = nullptr;
1115         Config::PlayerMode _mode;
1116         wxPreferencesEditor* _config_dialog = nullptr;
1117         wxPanel* _overall_panel = nullptr;
1118         wxMenu* _file_menu = nullptr;
1119         wxMenuItem* _view_cpl = nullptr;
1120         wxMenu* _cpl_menu = nullptr;
1121         int _history_items = 0;
1122         int _history_position = 0;
1123         wxMenuItem* _history_separator = nullptr;
1124         FilmViewer _viewer;
1125         Controls* _controls;
1126         SystemInformationDialog* _system_information_dialog = nullptr;
1127         std::shared_ptr<Film> _film;
1128         boost::signals2::scoped_connection _config_changed_connection;
1129         boost::signals2::scoped_connection _examine_job_connection;
1130         wxMenuItem* _file_add_ov = nullptr;
1131         wxMenuItem* _file_add_kdm = nullptr;
1132         wxMenuItem* _file_save_frame = nullptr;
1133         wxMenuItem* _tools_verify = nullptr;
1134         wxMenuItem* _view_full_screen = nullptr;
1135         wxMenuItem* _view_dual_screen = nullptr;
1136         wxSizer* _main_sizer = nullptr;
1137         PlayerStressTester _stress;
1138         /** KDMs that have been loaded, so that we can pass them to the verifier */
1139         std::vector<boost::filesystem::path> _kdms;
1140 };
1141
1142 static const wxCmdLineEntryDesc command_line_description[] = {
1143         { wxCMD_LINE_PARAM, 0, 0, "DCP to load or create", wxCMD_LINE_VAL_STRING, wxCMD_LINE_PARAM_OPTIONAL },
1144         { wxCMD_LINE_OPTION, "c", "config", "Directory containing config.xml", wxCMD_LINE_VAL_STRING, wxCMD_LINE_PARAM_OPTIONAL },
1145         { wxCMD_LINE_OPTION, "s", "stress", "File containing description of stress test", wxCMD_LINE_VAL_STRING, wxCMD_LINE_PARAM_OPTIONAL },
1146         { wxCMD_LINE_NONE, "", "", "", wxCmdLineParamType (0), 0 }
1147 };
1148
1149 class PlayServer : public Server
1150 {
1151 public:
1152         explicit PlayServer (DOMFrame* frame)
1153                 : Server (PLAYER_PLAY_PORT)
1154                 , _frame (frame)
1155         {}
1156
1157         void handle (shared_ptr<Socket> socket) override
1158         {
1159                 try {
1160                         uint32_t const length = socket->read_uint32 ();
1161                         if (length > 65536) {
1162                                 return;
1163                         }
1164                         scoped_array<char> buffer (new char[length]);
1165                         socket->read (reinterpret_cast<uint8_t*> (buffer.get()), length);
1166                         string s (buffer.get());
1167                         signal_manager->when_idle (bind (&DOMFrame::load_dcp, _frame, s));
1168                         socket->write (reinterpret_cast<uint8_t const *> ("OK"), 3);
1169                 } catch (...) {
1170
1171                 }
1172         }
1173
1174 private:
1175         DOMFrame* _frame;
1176 };
1177
1178 /** @class App
1179  *  @brief The magic App class for wxWidgets.
1180  */
1181 class App : public wxApp
1182 {
1183 public:
1184         App ()
1185                 : wxApp ()
1186         {
1187 #ifdef DCPOMATIC_LINUX
1188                 XInitThreads ();
1189 #endif
1190         }
1191
1192 private:
1193
1194         bool OnInit () override
1195         {
1196                 wxSplashScreen* splash;
1197                 try {
1198                         wxInitAllImageHandlers ();
1199
1200                         Config::FailedToLoad.connect (boost::bind (&App::config_failed_to_load, this));
1201                         Config::Warning.connect (boost::bind (&App::config_warning, this, _1));
1202
1203                         splash = maybe_show_splash ();
1204
1205                         SetAppName (_("DCP-o-matic Player"));
1206
1207                         if (!wxApp::OnInit()) {
1208                                 return false;
1209                         }
1210
1211 #ifdef DCPOMATIC_LINUX
1212                         unsetenv ("UBUNTU_MENUPROXY");
1213 #endif
1214
1215 #ifdef DCPOMATIC_OSX
1216                         make_foreground_application ();
1217 #endif
1218
1219                         dcpomatic_setup_path_encoding ();
1220
1221                         /* Enable i18n; this will create a Config object
1222                            to look for a force-configured language.  This Config
1223                            object will be wrong, however, because dcpomatic_setup
1224                            hasn't yet been called and there aren't any filters etc.
1225                            set up yet.
1226                         */
1227                         dcpomatic_setup_i18n ();
1228
1229                         /* Set things up, including filters etc.
1230                            which will now be internationalised correctly.
1231                         */
1232                         dcpomatic_setup ();
1233
1234                         /* Force the configuration to be re-loaded correctly next
1235                            time it is needed.
1236                         */
1237                         Config::drop ();
1238
1239                         signal_manager = new wxSignalManager (this);
1240
1241                         _frame = new DOMFrame ();
1242                         SetTopWindow (_frame);
1243                         _frame->Maximize ();
1244                         if (splash) {
1245                                 splash->Destroy ();
1246                                 splash = nullptr;
1247                         }
1248                         _frame->Show ();
1249
1250                         try {
1251                                 auto server = new PlayServer (_frame);
1252                                 new thread (boost::bind (&PlayServer::run, server));
1253                         } catch (std::exception& e) {
1254                                 /* This is not the end of the world; probably a failure to bind the server socket
1255                                  * because there's already another player running.
1256                                  */
1257                                 LOG_DEBUG_PLAYER ("Failed to start play server (%1)", e.what());
1258                         }
1259
1260                         if (!_dcp_to_load.empty() && dcp::filesystem::is_directory(_dcp_to_load)) {
1261                                 try {
1262                                         _frame->load_dcp (_dcp_to_load);
1263                                 } catch (exception& e) {
1264                                         error_dialog (0, std_to_wx (String::compose (wx_to_std (_("Could not load DCP %1.")), _dcp_to_load)), std_to_wx(e.what()));
1265                                 }
1266                         }
1267
1268                         if (_stress) {
1269                                 try {
1270                                         _frame->load_stress_script (*_stress);
1271                                 } catch (exception& e) {
1272                                         error_dialog (0, wxString::Format("Could not load stress test file %s", std_to_wx(*_stress)));
1273                                 }
1274                         }
1275
1276                         Bind (wxEVT_IDLE, boost::bind (&App::idle, this));
1277
1278                         if (Config::instance()->check_for_updates ()) {
1279                                 UpdateChecker::instance()->run ();
1280                         }
1281                 }
1282                 catch (exception& e)
1283                 {
1284                         if (splash) {
1285                                 splash->Destroy ();
1286                         }
1287                         error_dialog (0, _("DCP-o-matic Player could not start."), std_to_wx(e.what()));
1288                 }
1289
1290                 return true;
1291         }
1292
1293         void OnInitCmdLine (wxCmdLineParser& parser) override
1294         {
1295                 parser.SetDesc (command_line_description);
1296                 parser.SetSwitchChars (wxT ("-"));
1297         }
1298
1299         bool OnCmdLineParsed (wxCmdLineParser& parser) override
1300         {
1301                 if (parser.GetParamCount() > 0) {
1302                         _dcp_to_load = wx_to_std (parser.GetParam (0));
1303                 }
1304
1305                 wxString config;
1306                 if (parser.Found("c", &config)) {
1307                         Config::override_path = wx_to_std (config);
1308                 }
1309                 wxString stress;
1310                 if (parser.Found("s", &stress)) {
1311                         _stress = wx_to_std (stress);
1312                 }
1313
1314                 return true;
1315         }
1316
1317         void report_exception ()
1318         {
1319                 try {
1320                         throw;
1321                 } catch (FileError& e) {
1322                         error_dialog (
1323                                 0,
1324                                 wxString::Format (
1325                                         _("An exception occurred: %s (%s)\n\n") + REPORT_PROBLEM,
1326                                         std_to_wx (e.what()),
1327                                         std_to_wx (e.file().string().c_str ())
1328                                         )
1329                                 );
1330                 } catch (exception& e) {
1331                         error_dialog (
1332                                 0,
1333                                 wxString::Format (
1334                                         _("An exception occurred: %s.\n\n") + REPORT_PROBLEM,
1335                                         std_to_wx (e.what ())
1336                                         )
1337                                 );
1338                 } catch (...) {
1339                         error_dialog (0, _("An unknown exception occurred.") + "  " + REPORT_PROBLEM);
1340                 }
1341         }
1342
1343         /* An unhandled exception has occurred inside the main event loop */
1344         bool OnExceptionInMainLoop () override
1345         {
1346                 report_exception ();
1347                 /* This will terminate the program */
1348                 return false;
1349         }
1350
1351         void OnUnhandledException () override
1352         {
1353                 report_exception ();
1354         }
1355
1356         void idle ()
1357         {
1358                 signal_manager->ui_idle ();
1359         }
1360
1361         void config_failed_to_load ()
1362         {
1363                 message_dialog (_frame, _("The existing configuration failed to load.  Default values will be used instead.  These may take a short time to create."));
1364         }
1365
1366         void config_warning (string m)
1367         {
1368                 message_dialog (_frame, std_to_wx (m));
1369         }
1370
1371         DOMFrame* _frame = nullptr;
1372         string _dcp_to_load;
1373         boost::optional<string> _stress;
1374 };
1375
1376 IMPLEMENT_APP (App)