ScummVM API documentation
vars.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 M4_RIDDLE_VARS_H
23 #define M4_RIDDLE_VARS_H
24 
25 #include "common/textconsole.h"
26 #include "m4/riddle/flags.h"
27 #include "m4/riddle/hotkeys.h"
28 #include "m4/riddle/walker.h"
29 #include "m4/riddle/gui/interface.h"
30 #include "m4/vars.h"
31 
32 namespace M4 {
33 namespace Riddle {
34 
35 #define LETTERBOX_Y 30
36 
37 enum global_triggers {
38  kINVENTORY_CLOSEUP_END = 990,
39  kCALLED_EACH_LOOP = 32764,
40  kGOTO_MAIN_MENU = 32766
41 };
42 
43 class Vars : public M4::Vars {
44 protected:
45  void main_cold_data_init() override;
46 
47 public:
48  Riddle::Flags _flags;
49  Riddle::Walker _walker;
50  Riddle::Hotkeys _hotkeys;
51  Riddle::GUI::Interface _interface;
52  bool _menuSystemInitialized = false;
53  int _global301 = 0;
54  int _flag1 = 0;
55  bool _kittyScreaming = false;
56  bool _spleenSpraying = false;
57  Common::String _string1;
58  Common::String _string2;
59  Common::String _string3;
60  int _ripSketching = 0;
61 
62 public:
63  Vars();
64  virtual ~Vars();
65 
66  M4::Interface *getInterface() override {
67  return &_interface;
68  }
69  Hotkeys *getHotkeys() override {
70  return &_hotkeys;
71  }
72  M4::Walker *getWalker() override {
73  return &_walker;
74  }
75  void initialize_game() override;
76 
77  void global_menu_system_init() override;
78 };
79 
80 extern Vars *g_vars;
81 
82 #undef _G
83 #undef _GI
84 #define _G(X) (::M4::Riddle::g_vars->_##X)
85 #define _GI(X) _G(interface)._##X
86 #define _GINT() _G(interface)
87 
88 } // namespace Riddle
89 } // namespace M4
90 
91 #endif
Definition: str.h:59
Definition: adv_walk.h:32
Definition: vars.h:69
Definition: flags.h:554
Definition: adv_interface.h:32
Definition: vars.h:43
Definition: hotkeys.h:33
Definition: database.h:28
Definition: walker.h:46
Definition: interface.h:38