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