utility.h: Change Buffer's interface to be more compatible with SharedBuffer's interf...
[oweals/minetest.git] / src / game.h
1 /*
2 Minetest-c55
3 Copyright (C) 2011 celeron55, Perttu Ahola <celeron55@gmail.com>
4
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version.
9
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License along
16 with this program; if not, write to the Free Software Foundation, Inc.,
17 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 */
19
20 #ifndef GAME_HEADER
21 #define GAME_HEADER
22
23 #include "common_irrlicht.h"
24 #include <string>
25
26 #include "keycode.h"
27
28 class KeyList : protected core::list<KeyPress>
29 {
30         typedef core::list<KeyPress> super;
31         typedef super::Iterator Iterator;
32         typedef super::ConstIterator ConstIterator;
33
34         virtual ConstIterator find(const KeyPress &key) const
35         {
36                 ConstIterator f(begin());
37                 ConstIterator e(end());
38                 while (f!=e) {
39                         if (*f == key)
40                                 return f;
41                         ++f;
42                 }
43                 return e;
44         }
45
46         virtual Iterator find(const KeyPress &key)
47         {
48                 Iterator f(begin());
49                 Iterator e(end());
50                 while (f!=e) {
51                         if (*f == key)
52                                 return f;
53                         ++f;
54                 }
55                 return e;
56         }
57
58 public:
59         void clear() { super::clear(); }
60
61         void set(const KeyPress &key)
62         {
63                 if (find(key) == end())
64                         push_back(key);
65         }
66
67         void unset(const KeyPress &key)
68         {
69                 Iterator p(find(key));
70                 if (p != end())
71                         erase(p);
72         }
73
74         void toggle(const KeyPress &key)
75         {
76                 Iterator p(this->find(key));
77                 if (p != end())
78                         erase(p);
79                 else
80                         push_back(key);
81         }
82
83         bool operator[](const KeyPress &key) const
84         {
85                 return find(key) != end();
86         }
87 };
88
89 class InputHandler
90 {
91 public:
92         InputHandler()
93         {
94         }
95         virtual ~InputHandler()
96         {
97         }
98
99         virtual bool isKeyDown(const KeyPress &keyCode) = 0;
100         virtual bool wasKeyDown(const KeyPress &keyCode) = 0;
101         
102         virtual v2s32 getMousePos() = 0;
103         virtual void setMousePos(s32 x, s32 y) = 0;
104
105         virtual bool getLeftState() = 0;
106         virtual bool getRightState() = 0;
107
108         virtual bool getLeftClicked() = 0;
109         virtual bool getRightClicked() = 0;
110         virtual void resetLeftClicked() = 0;
111         virtual void resetRightClicked() = 0;
112
113         virtual bool getLeftReleased() = 0;
114         virtual bool getRightReleased() = 0;
115         virtual void resetLeftReleased() = 0;
116         virtual void resetRightReleased() = 0;
117         
118         virtual s32 getMouseWheel() = 0;
119
120         virtual void step(float dtime) {};
121
122         virtual void clear() {};
123 };
124
125 void the_game(
126         bool &kill,
127         bool random_input,
128         InputHandler *input,
129         IrrlichtDevice *device,
130         gui::IGUIFont* font,
131         std::string map_dir,
132         std::string playername,
133         std::string password,
134         std::string address,
135         u16 port,
136         std::wstring &error_message,
137         std::string configpath
138 );
139
140 #endif
141