]> git.lizzy.rs Git - dragonfireclient.git/blob - src/activeobject.h
c83243f865715a210a052a3a6fd07d259e975e47
[dragonfireclient.git] / src / activeobject.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 #pragma once
21
22 #include "irr_aabb3d.h"
23 #include "irr_v3d.h"
24 #include <string>
25
26
27 enum ActiveObjectType {
28         ACTIVEOBJECT_TYPE_INVALID = 0,
29         ACTIVEOBJECT_TYPE_TEST = 1,
30 // Obsolete stuff
31         ACTIVEOBJECT_TYPE_ITEM = 2,
32 //      ACTIVEOBJECT_TYPE_RAT = 3,
33 //      ACTIVEOBJECT_TYPE_OERKKI1 = 4,
34 //      ACTIVEOBJECT_TYPE_FIREFLY = 5,
35         ACTIVEOBJECT_TYPE_MOBV2 = 6,
36 // End obsolete stuff
37         ACTIVEOBJECT_TYPE_LUAENTITY = 7,
38 // Special type, not stored as a static object
39         ACTIVEOBJECT_TYPE_PLAYER = 100,
40 // Special type, only exists as CAO
41         ACTIVEOBJECT_TYPE_GENERIC = 101,
42 };
43 // Other types are defined in content_object.h
44
45 struct ActiveObjectMessage
46 {
47         ActiveObjectMessage(u16 id_, bool reliable_=true, const std::string &data_ = "") :
48                 id(id_),
49                 reliable(reliable_),
50                 datastring(data_)
51         {}
52
53         u16 id;
54         bool reliable;
55         std::string datastring;
56 };
57
58 enum ActiveObjectCommand {
59         AO_CMD_SET_PROPERTIES,
60         AO_CMD_UPDATE_POSITION,
61         AO_CMD_SET_TEXTURE_MOD,
62         AO_CMD_SET_SPRITE,
63         AO_CMD_PUNCHED,
64         AO_CMD_UPDATE_ARMOR_GROUPS,
65         AO_CMD_SET_ANIMATION,
66         AO_CMD_SET_BONE_POSITION,
67         AO_CMD_ATTACH_TO,
68         AO_CMD_SET_PHYSICS_OVERRIDE,
69         AO_CMD_UPDATE_NAMETAG_ATTRIBUTES,
70         AO_CMD_SPAWN_INFANT,
71         AO_CMD_SET_ANIMATION_SPEED
72 };
73
74 /*
75         Parent class for ServerActiveObject and ClientActiveObject
76 */
77 class ActiveObject
78 {
79 public:
80         ActiveObject(u16 id):
81                 m_id(id)
82         {
83         }
84
85         u16 getId() const
86         {
87                 return m_id;
88         }
89
90         void setId(u16 id)
91         {
92                 m_id = id;
93         }
94
95         virtual ActiveObjectType getType() const = 0;
96
97
98         /*!
99          * Returns the collision box of the object.
100          * This box is translated by the object's
101          * location.
102          * The box's coordinates are world coordinates.
103          * @returns true if the object has a collision box.
104          */
105         virtual bool getCollisionBox(aabb3f *toset) const = 0;
106
107
108         /*!
109          * Returns the selection box of the object.
110          * This box is not translated when the
111          * object moves.
112          * The box's coordinates are world coordinates.
113          * @returns true if the object has a selection box.
114          */
115         virtual bool getSelectionBox(aabb3f *toset) const = 0;
116
117
118         virtual bool collideWithObjects() const = 0;
119
120
121         virtual void setAttachment(int parent_id, const std::string &bone, v3f position,
122                         v3f rotation) {}
123         virtual void getAttachment(int *parent_id, std::string *bone, v3f *position,
124                         v3f *rotation) const {}
125         virtual void clearChildAttachments() {}
126         virtual void clearParentAttachment() {}
127         virtual void addAttachmentChild(int child_id) {}
128         virtual void removeAttachmentChild(int child_id) {}
129 protected:
130         u16 m_id; // 0 is invalid, "no id"
131 };