ScummVM API documentation
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
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  bool _room303_btnFlag = false;
55  int _flag1 = 0;
56  int _204_dword1A1898 = 0;
57  bool _kittyScreaming = false;
58  bool _spleenSpraying = false;
59  Common::String _string1;
60  Common::String _string2;
61  Common::String _string3;
62  int _ripSketching = 0;
63 
64 public:
65  Vars();
66  virtual ~Vars();
67 
68  M4::Interface *getInterface() override {
69  return &_interface;
70  }
71  Hotkeys *getHotkeys() override {
72  return &_hotkeys;
73  }
74  M4::Walker *getWalker() override {
75  return &_walker;
76  }
77  void initialize_game() override;
78 
79  void global_menu_system_init() override;
80 };
81 
82 extern Vars *g_vars;
83 
84 #undef _G
85 #undef _GI
86 #define _G(X) (::M4::Riddle::g_vars->_##X)
87 #define _GI(X) _G(interface)._##X
88 #define _GINT() _G(interface)
89 
90 } // namespace Riddle
91 } // namespace M4
92 
93 #endif
Definition: str.h:59
Definition: adv_walk.h:32
Definition: vars.h:68
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