ScummVM API documentation
phantom.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 MADS_PHANTOM_PHANTOM_H
23 #define MADS_PHANTOM_PHANTOM_H
24 
25 #include "mads/mads.h"
26 
27 namespace MADS {
28 namespace Phantom {
29 
30 class PhantomEngine : public MADSEngine {
31 private:
32  static void global_object_sprite();
33  static void stop_walker_basic();
34  static void stop_walker_tricks();
35  void lookAtLens();
36 
37 public:
38  PhantomEngine(OSystem *syst, const MADSGameDescription *gameDesc) :
39  MADSEngine(syst, gameDesc) {}
40  ~PhantomEngine() override {}
41 
42  Common::Error run() override;
43  void syncRoom(Common::Serializer &s) override;
44 
45  void global_init_code() override;
46  void section_music(int section_num) override;
47  void global_section_constructor() override;
48  void global_daemon_code() override;
49  void global_pre_parser_code() override;
50  void global_parser_code() override;
51  void global_error_code() override;
52  void global_room_init() override;
53  void global_sound_driver() override;
54 };
55 
56 } // namespace Phantom
57 } // namespace MADS
58 
59 #endif
Definition: error.h:81
Common::Error run() override
Definition: serializer.h:80
Definition: detection.h:41
Definition: mads.h:69
Definition: anim_timer.h:27
Definition: system.h:166
Definition: phantom.h:30