9da73762f38d44860efedb7ac0780805090e5366
[dcpomatic.git] / src / wx / player_stress_tester.h
1 /*
2     Copyright (C) 2017-2020 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/wx.h>
22 #include <boost/signals2.hpp>
23 #include <boost/filesystem.hpp>
24
25 class wxWindow;
26 class Controls;
27
28 class Command
29 {
30 public:
31         enum Type {
32                 NONE,
33                 OPEN,
34                 PLAY,
35                 WAIT,
36                 STOP,
37                 SEEK,
38                 EXIT
39         };
40
41         Command(std::string line);
42
43         Type type;
44         std::string string_param;
45         int int_param;
46 };
47
48 class PlayerStressTester
49 {
50 public:
51         PlayerStressTester ();
52
53         void setup (wxWindow* parent, Controls* controls);
54         void load_script (boost::filesystem::path file);
55         void set_suspended (bool s) {
56                 _suspended = s;
57         }
58
59         boost::signals2::signal<void (boost::filesystem::path)> LoadDCP;
60
61 private:
62         void check_commands ();
63
64         wxWindow* _parent;
65         Controls* _controls;
66         wxTimer _timer;
67         bool _suspended;
68         std::list<Command> _commands;
69         std::list<Command>::const_iterator _current_command;
70         /** Remaining time that the script must wait, in milliseconds */
71         boost::optional<int> _wait_remaining;
72 };
73