ScummVM API documentation
debugger.h
1 /* ScummVM - Graphic Adventure Engine
2  *
3  * ScummVM is the legal property of its developers, whose names
4  * are too numerous to list here. Please refer to the COPYRIGHT
5  * file distributed with this source distribution.
6  *
7  * This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation, either version 3 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program. If not, see <http://www.gnu.org/licenses/>.
19  *
20  */
21 
22 #ifndef ACCESS_DEBUGGER_H
23 #define ACCESS_DEBUGGER_H
24 
25 #include "common/scummsys.h"
26 #include "gui/debugger.h"
27 #include "access/amazon/amazon_resources.h"
28 #include "access/martian/martian_resources.h"
29 
30 namespace Access {
31 
32 class AccessEngine;
33 
34 class Debugger : public GUI::Debugger {
35 protected:
36  AccessEngine *_vm;
37  Common::Path _playMovieFile;
38 
39  bool Cmd_LoadScene(int argc, const char **argv);
40  bool Cmd_Cheat(int argc, const char **argv);
41  bool Cmd_PlayMovie(int argc, const char **argv);
42 public:
43  static Debugger *init(AccessEngine *vm);
44  void postEnter() override;
45 public:
47  ~Debugger() override;
48 };
49 
50 namespace Amazon {
51 
52 class AmazonDebugger : public Debugger {
53 protected:
54  bool Cmd_StartChapter(int argc, const char **argv);
55 public:
57  ~AmazonDebugger() override {}
58 };
59 
60 } // End of namespace Amazon
61 
62 } // End of namespace Access
63 
64 #endif /* ACCESS_DEBUGGER_H */
void postEnter() override
Definition: access.h:84
Definition: debugger.h:41
Definition: path.h:52
Definition: debugger.h:34
Definition: access.h:62
Definition: debugger.h:52