Update inventory texture too
[oweals/minetest.git] / src / player.h
index c3be0789415ce8b9009d75d96d3a91a3eba8f9e8..ecde59ce1931b6c5cd554536da070c62b198dd50 100644 (file)
@@ -30,13 +30,13 @@ with this program; if not, write to the Free Software Foundation, Inc.,
 
 
 class Map;
+class IGameDef;
 
 class Player
 {
 public:
 
-
-       Player();
+       Player(IGameDef *gamedef);
        virtual ~Player();
 
        void resetInventory();
@@ -164,6 +164,8 @@ public:
        u16 peer_id;
 
 protected:
+       IGameDef *m_gamedef;
+
        char m_name[PLAYERNAME_SIZE];
        u16 m_selected_item;
        f32 m_pitch;
@@ -185,26 +187,15 @@ public:
 class ServerRemotePlayer : public Player, public ServerActiveObject
 {
 public:
-       ServerRemotePlayer():
-               ServerActiveObject(NULL, v3f(0,0,0))
-       {
-       }
+       ServerRemotePlayer(ServerEnvironment *env);
        ServerRemotePlayer(ServerEnvironment *env, v3f pos_, u16 peer_id_,
-                       const char *name_):
-               ServerActiveObject(env, pos_)
-       {
-               setPosition(pos_);
-               peer_id = peer_id_;
-               updateName(name_);
-       }
+                       const char *name_);
+
        virtual ~ServerRemotePlayer()
-       {
-       }
+       {}
 
        virtual bool isLocal() const
-       {
-               return false;
-       }
+       { return false; }
 
        virtual void move(f32 dtime, Map &map, f32 pos_max_d)
        {
@@ -215,12 +206,20 @@ public:
                Player::setPosition(position);
                ServerActiveObject::setBasePosition(position);
        }
+       
+       /* ServerActiveObject interface */
 
-       /*
-               ServerActiveObject interface
-       */
        u8 getType() const
                {return ACTIVEOBJECT_TYPE_PLAYER;}
+       virtual std::string getDescription(){return getName();}
+       // Returns a reference
+       virtual InventoryItem* getWieldedItem();
+       virtual void damageWieldedItem(u16 amount);
+       // If all fits, eats item and returns true. Otherwise returns false.
+       virtual bool addToInventory(InventoryItem *item);
+       virtual void setHP(s16 hp_);
+       virtual s16 getHP();
+
 private:
 };
 
@@ -234,6 +233,7 @@ class RemotePlayer : public Player, public scene::ISceneNode
 {
 public:
        RemotePlayer(
+               IGameDef *gamedef,
                scene::ISceneNode* parent=NULL,
                IrrlichtDevice *device=NULL,
                s32 id=0);
@@ -370,7 +370,7 @@ struct PlayerControl
 class LocalPlayer : public Player
 {
 public:
-       LocalPlayer();
+       LocalPlayer(IGameDef *gamedef);
        virtual ~LocalPlayer();
 
        bool isLocal() const