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