X-Git-Url: https://git.lizzy.rs/?a=blobdiff_plain;f=src%2Fserverobject.h;h=14752878ffac608e47e730917386ad66b47f2c36;hb=d6f0bf9eef30819d91f89f2181ac5278d238f1a9;hp=6acd0dfeea9c753176efe0c9027df38a577ae6b6;hpb=9f031a67594162a53b07acbfbc65faf8c4938e99;p=dragonfireclient.git diff --git a/src/serverobject.h b/src/serverobject.h index 6acd0dfee..14752878f 100644 --- a/src/serverobject.h +++ b/src/serverobject.h @@ -62,7 +62,7 @@ class ServerActiveObject : public ActiveObject { return getType(); } // Called after id has been set and has been inserted in environment - virtual void addedToEnvironment(){}; + virtual void addedToEnvironment(u32 dtime_s){}; // Called before removing from environment virtual void removingFromEnvironment(){}; // Returns true if object's deletion is the job of the @@ -118,7 +118,7 @@ class ServerActiveObject : public ActiveObject The return value of this is passed to the client-side object when it is created */ - virtual std::string getClientInitializationData(){return "";} + virtual std::string getClientInitializationData(u16 protocol_version){return "";} /* The return value of this is passed to the server-side object @@ -152,6 +152,12 @@ class ServerActiveObject : public ActiveObject virtual void setArmorGroups(const ItemGroupList &armor_groups) {} + virtual void setAnimation(v2f frames, float frame_speed, float frame_blend) + {} + virtual void setBonePosition(std::string bone, v3f position, v3f rotation) + {} + virtual void setAttachment(int parent_id, std::string bone, v3f position, v3f rotation) + {} virtual ObjectProperties* accessObjectProperties() { return NULL; } virtual void notifyObjectPropertiesModified()