Optimize headers
[oweals/minetest.git] / src / player.h
1 /*
2 Minetest-c55
3 Copyright (C) 2010-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 Lesser General Public License as published by
7 the Free Software Foundation; either version 2.1 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 Lesser General Public License for more details.
14
15 You should have received a copy of the GNU Lesser 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 PLAYER_HEADER
21 #define PLAYER_HEADER
22
23 #include "irrlichttypes_bloated.h"
24 #include "inventory.h"
25 #include "constants.h" // BS
26
27 #define PLAYERNAME_SIZE 20
28
29 #define PLAYERNAME_ALLOWED_CHARS "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789-_"
30
31 class Map;
32 class IGameDef;
33 struct CollisionInfo;
34 class PlayerSAO;
35
36 class Player
37 {
38 public:
39
40         Player(IGameDef *gamedef);
41         virtual ~Player() = 0;
42
43         virtual void move(f32 dtime, Map &map, f32 pos_max_d)
44         {}
45
46         v3f getSpeed()
47         {
48                 return m_speed;
49         }
50
51         void setSpeed(v3f speed)
52         {
53                 m_speed = speed;
54         }
55         
56         // Y direction is ignored
57         void accelerate(v3f target_speed, f32 max_increase);
58
59         v3f getPosition()
60         {
61                 return m_position;
62         }
63
64         v3s16 getLightPosition() const;
65
66         v3f getEyeOffset()
67         {
68                 // This is at the height of the eyes of the current figure
69                 // return v3f(0, BS*1.5, 0);
70                 // This is more like in minecraft
71                 if(camera_barely_in_ceiling)
72                         return v3f(0,BS*1.5,0);
73                 else
74                         return v3f(0,BS*1.625,0);
75         }
76
77         v3f getEyePosition()
78         {
79                 return m_position + getEyeOffset();
80         }
81
82         virtual void setPosition(const v3f &position)
83         {
84                 m_position = position;
85         }
86
87         void setPitch(f32 pitch)
88         {
89                 m_pitch = pitch;
90         }
91
92         virtual void setYaw(f32 yaw)
93         {
94                 m_yaw = yaw;
95         }
96
97         f32 getPitch()
98         {
99                 return m_pitch;
100         }
101
102         f32 getYaw()
103         {
104                 return m_yaw;
105         }
106
107         f32 getRadPitch()
108         {
109                 return -1.0 * m_pitch * core::DEGTORAD;
110         }
111
112         f32 getRadYaw()
113         {
114                 return (m_yaw + 90.) * core::DEGTORAD;
115         }
116
117         void updateName(const char *name)
118         {
119                 snprintf(m_name, PLAYERNAME_SIZE, "%s", name);
120         }
121
122         const char * getName() const
123         {
124                 return m_name;
125         }
126
127         virtual bool isLocal() const
128         { return false; }
129         virtual PlayerSAO *getPlayerSAO()
130         { return NULL; }
131         virtual void setPlayerSAO(PlayerSAO *sao)
132         { assert(0); }
133
134         /*
135                 serialize() writes a bunch of text that can contain
136                 any characters except a '\0', and such an ending that
137                 deSerialize stops reading exactly at the right point.
138         */
139         void serialize(std::ostream &os);
140         void deSerialize(std::istream &is);
141
142         bool touching_ground;
143         // This oscillates so that the player jumps a bit above the surface
144         bool in_water;
145         // This is more stable and defines the maximum speed of the player
146         bool in_water_stable;
147         bool is_climbing;
148         bool swimming_up;
149         bool camera_barely_in_ceiling;
150         
151         u8 light;
152
153         // In creative mode, this is the invisible backup inventory
154         Inventory inventory;
155
156         u16 hp;
157
158         u16 peer_id;
159
160 protected:
161         IGameDef *m_gamedef;
162
163         char m_name[PLAYERNAME_SIZE];
164         f32 m_pitch;
165         f32 m_yaw;
166         v3f m_speed;
167         v3f m_position;
168 };
169
170 /*
171         Player on the server
172 */
173 class RemotePlayer : public Player
174 {
175 public:
176         RemotePlayer(IGameDef *gamedef): Player(gamedef), m_sao(0) {}
177         virtual ~RemotePlayer() {}
178
179         PlayerSAO *getPlayerSAO()
180         { return m_sao; }
181         void setPlayerSAO(PlayerSAO *sao)
182         { m_sao = sao; }
183         void setPosition(const v3f &position);
184
185 private:
186         PlayerSAO *m_sao;
187 };
188
189 #endif
190