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 SHERLOCK_DEBUGGER_H
23 #define SHERLOCK_DEBUGGER_H
24 
25 #include "common/scummsys.h"
26 #include "common/path.h"
27 #include "gui/debugger.h"
28 
29 namespace Sherlock {
30 
31 class SherlockEngine;
32 
33 enum AllLocations { LOC_REFRESH = -1, LOC_DISABLED = 0, LOC_ALL = 1 };
34 
35 class Debugger : public GUI::Debugger {
36 private:
40  int strToInt(const char *s);
41 
45  bool cmdScene(int argc, const char **argv);
46 
50  bool cmdSong(int argc, const char **argv);
51 
55  bool cmdListSongs(int argc, const char **argv);
56 
60  bool cmdListFiles(int argc, const char **argv);
61 
65  bool cmdDumpFile(int argc, const char **argv);
66 
70  bool cmdLocations(int argc, const char **argv);
71 
75  bool cmdFlag(int argc, const char **argv);
76 protected:
77  SherlockEngine *_vm;
78  Common::Path _3doPlayMovieFile;
79 public:
80  AllLocations _showAllLocations;
81 public:
83  ~Debugger() override {}
84  static Debugger *init(SherlockEngine *vm);
85 
86  void postEnter() override;
87 };
88 
89 } // End of namespace Sherlock
90 
91 #endif /* SHERLOCK_DEBUGGER_H */
Definition: debugger.h:41
Definition: animation.h:29
Definition: path.h:52
Definition: debugger.h:35
Definition: sherlock.h:76
void postEnter() override