]> git.lizzy.rs Git - minetest-m13.git/blob - src/serverremoteplayer.h
Update code style to C++11
[minetest-m13.git] / src / serverremoteplayer.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 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 SERVERREMOTEPLAYER_HEADER
21 #define SERVERREMOTEPLAYER_HEADER
22
23 #include "player.h"
24 #include "serverobject.h"
25 #include "content_object.h" // Object type IDs
26
27 /*
28         Player on the server
29 */
30
31 class ServerRemotePlayer : public Player, public ServerActiveObject
32 {
33 public:
34         ServerRemotePlayer(ServerEnvironment *env);
35         ServerRemotePlayer(ServerEnvironment *env, v3f pos_, u16 peer_id_,
36                         const char *name_);
37
38         virtual ~ServerRemotePlayer();
39
40         virtual bool isLocal() const
41         { return false; }
42
43         virtual void move(f32 dtime, Map &map, f32 pos_max_d)
44         {
45         }
46         
47         virtual void setPosition(const v3f &position);
48         
49         /* ServerActiveObject interface */
50
51         u8 getType() const
52         {return ACTIVEOBJECT_TYPE_PLAYER;}
53         
54         // Called after id has been set and has been inserted in environment
55         void addedToEnvironment();
56         // Called before removing from environment
57         void removingFromEnvironment();
58         
59         bool environmentDeletes() const
60         { return false; }
61
62         virtual bool unlimitedTransferDistance() const;
63         
64         bool isStaticAllowed() const
65         { return false; }
66
67         void step(float dtime, bool send_recommended);
68         std::string getClientInitializationData();
69         std::string getStaticData();
70         void punch(ServerActiveObject *puncher, float time_from_last_punch);
71         void rightClick(ServerActiveObject *clicker);
72         void setPos(v3f pos);
73         void moveTo(v3f pos, bool continuous);
74         virtual std::string getDescription()
75         {return std::string("player ")+getName();}
76
77         virtual Inventory* getInventory();
78         virtual const Inventory* getInventory() const;
79         virtual InventoryLocation getInventoryLocation() const;
80         virtual void setInventoryModified();
81         virtual std::string getWieldList() const;
82         virtual int getWieldIndex() const;
83         virtual void setWieldIndex(int i);
84
85         virtual void setHP(s16 hp_);
86         virtual s16 getHP();
87         
88         v3f m_last_good_position;
89         float m_last_good_position_age;
90         int m_wield_index;
91         bool m_inventory_not_sent;
92         bool m_hp_not_sent;
93         bool m_respawn_active;
94         bool m_is_in_environment;
95         // Incremented by step(), read and reset by Server
96         float m_time_from_last_punch;
97
98 private:
99         bool m_position_not_sent;
100 };
101
102 #endif
103