ScummVM API documentation
editor.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 SCUMM_EDITOR_H
23 #define SCUMM_EDITOR_H
24 
25 #include "backends/imgui/imgui.h"
26 
27 #include "common/array.h"
28 #include "common/str.h"
29 
30 #include "scumm/debugger/explorer.h"
31 #include "scumm/debugger/resource.h"
32 
33 namespace Scumm {
34 
35 class ScummEngine;
36 
37 namespace Editor {
38 
39 enum {
40  kColorLabel,
41  kColorProperty,
42  kColorWarning,
43  kColorError,
44  kColorCount
45 };
46 
47 } // End of namespace Editor
48 
49 class ScummEditor {
50 private:
51  ScummEngine *_engine;
52  Common::String _gameName;
53  Common::Path _gamePath;
54 
55  Editor::Resource _resource;
56  Editor::Explorer _explorer;
57 
58  Common::Array<ImVec4> _colors;
59  bool _showSettings;
60  bool _showExplorer;
61 
62  void loadGame();
63 
64  void loadState();
65  void saveState();
66 
67  void showSettings();
68 
69 public:
70  ScummEditor(ScummEngine *engine);
71 
72  void render();
73 };
74 
75 } // End of namespace Scumm
76 
77 #endif
Definition: editor.h:49
Definition: str.h:59
Definition: resource.h:43
Definition: explorer.h:34
Definition: path.h:52
Definition: scumm.h:511
Definition: actor.h:30