]> git.lizzy.rs Git - minetest.git/blobdiff - src/activeobject.h
Settings: Fix game minetest.conf flags overriding defaults (#9404)
[minetest.git] / src / activeobject.h
index b6a0e67af37e51603c0a53ef584f6ff04f163346..4a2de92cd9dba663901d00cc2ed149ab91cf6b2e 100644 (file)
@@ -20,18 +20,20 @@ with this program; if not, write to the Free Software Foundation, Inc.,
 #pragma once
 
 #include "irr_aabb3d.h"
+#include "irr_v3d.h"
 #include <string>
 
+
 enum ActiveObjectType {
        ACTIVEOBJECT_TYPE_INVALID = 0,
        ACTIVEOBJECT_TYPE_TEST = 1,
-// Deprecated stuff
+// Obsolete stuff
        ACTIVEOBJECT_TYPE_ITEM = 2,
 //     ACTIVEOBJECT_TYPE_RAT = 3,
 //     ACTIVEOBJECT_TYPE_OERKKI1 = 4,
 //     ACTIVEOBJECT_TYPE_FIREFLY = 5,
        ACTIVEOBJECT_TYPE_MOBV2 = 6,
-// End deprecated stuff
+// End obsolete stuff
        ACTIVEOBJECT_TYPE_LUAENTITY = 7,
 // Special type, not stored as a static object
        ACTIVEOBJECT_TYPE_PLAYER = 100,
@@ -98,6 +100,16 @@ class ActiveObject
 
 
        virtual bool collideWithObjects() const = 0;
+
+
+       virtual void setAttachment(int parent_id, const std::string &bone, v3f position,
+                       v3f rotation) {}
+       virtual void getAttachment(int *parent_id, std::string *bone, v3f *position,
+                       v3f *rotation) const {}
+       virtual void clearChildAttachments() {}
+       virtual void clearParentAttachment() {}
+       virtual void addAttachmentChild(int child_id) {}
+       virtual void removeAttachmentChild(int child_id) {}
 protected:
        u16 m_id; // 0 is invalid, "no id"
 };