]> git.lizzy.rs Git - dragonfireclient.git/blob - src/content_sao.h
4ea6277ffd17f60a915950c7ee17c3e0b904b25a
[dragonfireclient.git] / src / content_sao.h
1 /*
2 Minetest
3 Copyright (C) 2010-2013 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 CONTENT_SAO_HEADER
21 #define CONTENT_SAO_HEADER
22
23 #include "serverobject.h"
24 #include "itemgroup.h"
25 #include "object_properties.h"
26 #include "constants.h"
27
28 class UnitSAO: public ServerActiveObject
29 {
30 public:
31         UnitSAO(ServerEnvironment *env, v3f pos):
32                         ServerActiveObject(env, pos),
33                         m_hp(-1), m_yaw(0) {}
34         virtual ~UnitSAO() {}
35
36         virtual void setYaw(const float yaw) { m_yaw = yaw; }
37         float getYaw() const { return m_yaw; };
38         f32 getRadYaw() const { return m_yaw * core::DEGTORAD; }
39         // Deprecated
40         f32 getRadYawDep() const { return (m_yaw + 90.) * core::DEGTORAD; }
41
42         s16 getHP() const { return m_hp; }
43         // Use a function, if isDead can be defined by other conditions
44         bool isDead() const { return m_hp == 0; }
45 protected:
46         s16 m_hp;
47         float m_yaw;
48 };
49
50 /*
51         LuaEntitySAO needs some internals exposed.
52 */
53
54 class LuaEntitySAO : public UnitSAO
55 {
56 public:
57         LuaEntitySAO(ServerEnvironment *env, v3f pos,
58                      const std::string &name, const std::string &state);
59         ~LuaEntitySAO();
60         ActiveObjectType getType() const
61         { return ACTIVEOBJECT_TYPE_LUAENTITY; }
62         ActiveObjectType getSendType() const
63         { return ACTIVEOBJECT_TYPE_GENERIC; }
64         virtual void addedToEnvironment(u32 dtime_s);
65         static ServerActiveObject* create(ServerEnvironment *env, v3f pos,
66                         const std::string &data);
67         bool isAttached();
68         void step(float dtime, bool send_recommended);
69         std::string getClientInitializationData(u16 protocol_version);
70         std::string getStaticData();
71         int punch(v3f dir,
72                         const ToolCapabilities *toolcap=NULL,
73                         ServerActiveObject *puncher=NULL,
74                         float time_from_last_punch=1000000);
75         void rightClick(ServerActiveObject *clicker);
76         void setPos(v3f pos);
77         void moveTo(v3f pos, bool continuous);
78         float getMinimumSavedMovement();
79         std::string getDescription();
80         void setHP(s16 hp);
81         s16 getHP() const;
82         void setArmorGroups(const ItemGroupList &armor_groups);
83         ItemGroupList getArmorGroups();
84         void setAnimation(v2f frame_range, float frame_speed, float frame_blend, bool frame_loop);
85         void getAnimation(v2f *frame_range, float *frame_speed, float *frame_blend, bool *frame_loop);
86         void setBonePosition(const std::string &bone, v3f position, v3f rotation);
87         void getBonePosition(const std::string &bone, v3f *position, v3f *rotation);
88         void setAttachment(int parent_id, const std::string &bone, v3f position, v3f rotation);
89         void getAttachment(int *parent_id, std::string *bone, v3f *position, v3f *rotation);
90         void addAttachmentChild(int child_id);
91         void removeAttachmentChild(int child_id);
92         UNORDERED_SET<int> getAttachmentChildIds();
93         ObjectProperties* accessObjectProperties();
94         void notifyObjectPropertiesModified();
95         /* LuaEntitySAO-specific */
96         void setVelocity(v3f velocity);
97         v3f getVelocity();
98         void setAcceleration(v3f acceleration);
99         v3f getAcceleration();
100
101         void setTextureMod(const std::string &mod);
102         void setSprite(v2s16 p, int num_frames, float framelength,
103                         bool select_horiz_by_yawpitch);
104         std::string getName();
105         bool getCollisionBox(aabb3f *toset);
106         bool collideWithObjects();
107 private:
108         std::string getPropertyPacket();
109         void sendPosition(bool do_interpolate, bool is_movement_end);
110
111         std::string m_init_name;
112         std::string m_init_state;
113         bool m_registered;
114         struct ObjectProperties m_prop;
115
116         v3f m_velocity;
117         v3f m_acceleration;
118
119         ItemGroupList m_armor_groups;
120
121         bool m_properties_sent;
122         float m_last_sent_yaw;
123         v3f m_last_sent_position;
124         v3f m_last_sent_velocity;
125         float m_last_sent_position_timer;
126         float m_last_sent_move_precision;
127         bool m_armor_groups_sent;
128
129         v2f m_animation_range;
130         float m_animation_speed;
131         float m_animation_blend;
132         bool m_animation_loop;
133         bool m_animation_sent;
134
135         UNORDERED_MAP<std::string, core::vector2d<v3f> > m_bone_position;
136         bool m_bone_position_sent;
137
138         int m_attachment_parent_id;
139         UNORDERED_SET<int> m_attachment_child_ids;
140         std::string m_attachment_bone;
141         v3f m_attachment_position;
142         v3f m_attachment_rotation;
143         bool m_attachment_sent;
144 };
145
146 /*
147         PlayerSAO needs some internals exposed.
148 */
149
150 class LagPool
151 {
152         float m_pool;
153         float m_max;
154 public:
155         LagPool(): m_pool(15), m_max(15)
156         {}
157         void setMax(float new_max)
158         {
159                 m_max = new_max;
160                 if(m_pool > new_max)
161                         m_pool = new_max;
162         }
163         void add(float dtime)
164         {
165                 m_pool -= dtime;
166                 if(m_pool < 0)
167                         m_pool = 0;
168         }
169         bool grab(float dtime)
170         {
171                 if(dtime <= 0)
172                         return true;
173                 if(m_pool + dtime > m_max)
174                         return false;
175                 m_pool += dtime;
176                 return true;
177         }
178 };
179
180 class RemotePlayer;
181
182 class PlayerSAO : public UnitSAO
183 {
184 public:
185         PlayerSAO(ServerEnvironment *env_, u16 peer_id_, bool is_singleplayer);
186         ~PlayerSAO();
187         ActiveObjectType getType() const
188         { return ACTIVEOBJECT_TYPE_PLAYER; }
189         ActiveObjectType getSendType() const
190         { return ACTIVEOBJECT_TYPE_GENERIC; }
191         std::string getDescription();
192
193         /*
194                 Active object <-> environment interface
195         */
196
197         void addedToEnvironment(u32 dtime_s);
198         void removingFromEnvironment();
199         bool isStaticAllowed() const;
200         std::string getClientInitializationData(u16 protocol_version);
201         std::string getStaticData();
202         bool isAttached();
203         void step(float dtime, bool send_recommended);
204         void setBasePosition(const v3f &position);
205         void setPos(const v3f &pos);
206         void moveTo(v3f pos, bool continuous);
207         void setYaw(const float yaw, bool send_data = true);
208         void setPitch(const float pitch, bool send_data = true);
209         f32 getPitch() const { return m_pitch; }
210         f32 getRadPitch() const { return m_pitch * core::DEGTORAD; }
211         // Deprecated
212         f32 getRadPitchDep() const { return -1.0 * m_pitch * core::DEGTORAD; }
213
214         /*
215                 Interaction interface
216         */
217
218         int punch(v3f dir,
219                 const ToolCapabilities *toolcap,
220                 ServerActiveObject *puncher,
221                 float time_from_last_punch);
222         void rightClick(ServerActiveObject *clicker);
223         void setHP(s16 hp, bool direct = false);
224         s16 readDamage();
225         u16 getBreath() const { return m_breath; }
226         void setBreath(const u16 breath);
227         void setArmorGroups(const ItemGroupList &armor_groups);
228         ItemGroupList getArmorGroups();
229         void setAnimation(v2f frame_range, float frame_speed, float frame_blend, bool frame_loop);
230         void getAnimation(v2f *frame_range, float *frame_speed, float *frame_blend, bool *frame_loop);
231         void setBonePosition(const std::string &bone, v3f position, v3f rotation);
232         void getBonePosition(const std::string &bone, v3f *position, v3f *rotation);
233         void setAttachment(int parent_id, const std::string &bone, v3f position, v3f rotation);
234         void getAttachment(int *parent_id, std::string *bone, v3f *position, v3f *rotation);
235         void addAttachmentChild(int child_id);
236         void removeAttachmentChild(int child_id);
237         UNORDERED_SET<int> getAttachmentChildIds();
238         ObjectProperties* accessObjectProperties();
239         void notifyObjectPropertiesModified();
240
241         /*
242                 Inventory interface
243         */
244
245         Inventory* getInventory();
246         const Inventory* getInventory() const;
247         InventoryLocation getInventoryLocation() const;
248         std::string getWieldList() const;
249         int getWieldIndex() const;
250         void setWieldIndex(int i);
251
252         /*
253                 PlayerSAO-specific
254         */
255
256         void disconnected();
257
258         RemotePlayer *getPlayer() { return m_player; }
259         u16 getPeerID() const { return m_peer_id; }
260
261         // Cheat prevention
262
263         v3f getLastGoodPosition() const
264         {
265                 return m_last_good_position;
266         }
267         float resetTimeFromLastPunch()
268         {
269                 float r = m_time_from_last_punch;
270                 m_time_from_last_punch = 0.0;
271                 return r;
272         }
273         void noCheatDigStart(v3s16 p)
274         {
275                 m_nocheat_dig_pos = p;
276                 m_nocheat_dig_time = 0;
277         }
278         v3s16 getNoCheatDigPos()
279         {
280                 return m_nocheat_dig_pos;
281         }
282         float getNoCheatDigTime()
283         {
284                 return m_nocheat_dig_time;
285         }
286         void noCheatDigEnd()
287         {
288                 m_nocheat_dig_pos = v3s16(32767, 32767, 32767);
289         }
290         LagPool& getDigPool()
291         {
292                 return m_dig_pool;
293         }
294         // Returns true if cheated
295         bool checkMovementCheat();
296
297         // Other
298
299         void updatePrivileges(const std::set<std::string> &privs,
300                         bool is_singleplayer)
301         {
302                 m_privs = privs;
303                 m_is_singleplayer = is_singleplayer;
304         }
305
306         bool getCollisionBox(aabb3f *toset);
307         bool collideWithObjects();
308
309         void initialize(RemotePlayer *player, const std::set<std::string> &privs);
310
311         v3f getEyePosition() const { return m_base_position + getEyeOffset(); }
312         v3f getEyeOffset() const { return v3f(0, BS * 1.625f, 0); }
313
314 private:
315         std::string getPropertyPacket();
316
317         RemotePlayer *m_player;
318         u16 m_peer_id;
319         Inventory *m_inventory;
320         s16 m_damage;
321
322         // Cheat prevention
323         LagPool m_dig_pool;
324         LagPool m_move_pool;
325         v3f m_last_good_position;
326         float m_time_from_last_punch;
327         v3s16 m_nocheat_dig_pos;
328         float m_nocheat_dig_time;
329
330         int m_wield_index;
331         bool m_position_not_sent;
332         ItemGroupList m_armor_groups;
333         bool m_armor_groups_sent;
334
335         bool m_properties_sent;
336         struct ObjectProperties m_prop;
337         // Cached privileges for enforcement
338         std::set<std::string> m_privs;
339         bool m_is_singleplayer;
340
341         v2f m_animation_range;
342         float m_animation_speed;
343         float m_animation_blend;
344         bool m_animation_loop;
345         bool m_animation_sent;
346
347         // Stores position and rotation for each bone name
348         UNORDERED_MAP<std::string, core::vector2d<v3f> > m_bone_position;
349         bool m_bone_position_sent;
350
351         int m_attachment_parent_id;
352         UNORDERED_SET<int> m_attachment_child_ids;
353         std::string m_attachment_bone;
354         v3f m_attachment_position;
355         v3f m_attachment_rotation;
356         bool m_attachment_sent;
357         u16 m_breath;
358         f32 m_pitch;
359 public:
360         float m_physics_override_speed;
361         float m_physics_override_jump;
362         float m_physics_override_gravity;
363         bool m_physics_override_sneak;
364         bool m_physics_override_sneak_glitch;
365         bool m_physics_override_sent;
366 };
367
368 #endif