Lua_api.txt: Add chat command params info
[oweals/minetest.git] / src / content_cao.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 <map>
23 #include "irrlichttypes_extrabloated.h"
24 #include "clientobject.h"
25 #include "object_properties.h"
26 #include "itemgroup.h"
27 #include "constants.h"
28
29 class Camera;
30 class Client;
31 struct Nametag;
32
33 /*
34         SmoothTranslator
35 */
36
37 struct SmoothTranslator
38 {
39         v3f vect_old;
40         v3f vect_show;
41         v3f vect_aim;
42         f32 anim_counter = 0;
43         f32 anim_time = 0;
44         f32 anim_time_counter = 0;
45         bool aim_is_end = true;
46
47         SmoothTranslator() = default;
48
49         void init(v3f vect);
50
51         void update(v3f vect_new, bool is_end_position=false, float update_interval=-1);
52
53         void translate(f32 dtime);
54 };
55
56 class GenericCAO : public ClientActiveObject
57 {
58 private:
59         // Only set at initialization
60         std::string m_name = "";
61         bool m_is_player = false;
62         bool m_is_local_player = false;
63         // Property-ish things
64         ObjectProperties m_prop;
65         //
66         scene::ISceneManager *m_smgr = nullptr;
67         Client *m_client = nullptr;
68         aabb3f m_selection_box = aabb3f(-BS/3.,-BS/3.,-BS/3., BS/3.,BS/3.,BS/3.);
69         scene::IMeshSceneNode *m_meshnode = nullptr;
70         scene::IAnimatedMeshSceneNode *m_animated_meshnode = nullptr;
71         WieldMeshSceneNode *m_wield_meshnode = nullptr;
72         scene::IBillboardSceneNode *m_spritenode = nullptr;
73         Nametag *m_nametag = nullptr;
74         v3f m_position = v3f(0.0f, 10.0f * BS, 0);
75         v3f m_velocity;
76         v3f m_acceleration;
77         float m_yaw = 0.0f;
78         s16 m_hp = 1;
79         SmoothTranslator pos_translator;
80         // Spritesheet/animation stuff
81         v2f m_tx_size = v2f(1,1);
82         v2s16 m_tx_basepos;
83         bool m_initial_tx_basepos_set = false;
84         bool m_tx_select_horiz_by_yawpitch = false;
85         v2s32 m_animation_range;
86         float m_animation_speed = 15.0f;
87         float m_animation_blend = 0.0f;
88         bool m_animation_loop = true;
89         // stores position and rotation for each bone name
90         std::unordered_map<std::string, core::vector2d<v3f>> m_bone_position;
91         std::string m_attachment_bone = "";
92         v3f m_attachment_position;
93         v3f m_attachment_rotation;
94         bool m_attached_to_local = false;
95         int m_anim_frame = 0;
96         int m_anim_num_frames = 1;
97         float m_anim_framelength = 0.2f;
98         float m_anim_timer = 0.0f;
99         ItemGroupList m_armor_groups;
100         float m_reset_textures_timer = -1.0f;
101         // stores texture modifier before punch update
102         std::string m_previous_texture_modifier = "";
103         // last applied texture modifier
104         std::string m_current_texture_modifier = "";
105         bool m_visuals_expired = false;
106         float m_step_distance_counter = 0.0f;
107         u8 m_last_light = 255;
108         bool m_is_visible = false;
109         s8 m_glow = 0;
110
111         std::vector<u16> m_children;
112
113 public:
114         GenericCAO(Client *client, ClientEnvironment *env);
115
116         ~GenericCAO();
117
118         static ClientActiveObject* create(Client *client, ClientEnvironment *env)
119         {
120                 return new GenericCAO(client, env);
121         }
122
123         inline ActiveObjectType getType() const
124         {
125                 return ACTIVEOBJECT_TYPE_GENERIC;
126         }
127
128         void initialize(const std::string &data);
129
130         void processInitData(const std::string &data);
131
132         ClientActiveObject *getParent() const;
133
134         bool getCollisionBox(aabb3f *toset) const;
135
136         bool collideWithObjects() const;
137
138         virtual bool getSelectionBox(aabb3f *toset) const;
139
140         v3f getPosition();
141         inline float getYaw() const
142         {
143                 return m_yaw;
144         }
145
146         scene::ISceneNode *getSceneNode();
147
148         scene::IAnimatedMeshSceneNode *getAnimatedMeshSceneNode();
149
150         inline f32 getStepHeight() const
151         {
152                 return m_prop.stepheight;
153         }
154
155         inline bool isLocalPlayer() const
156         {
157                 return m_is_local_player;
158         }
159
160         inline bool isVisible() const
161         {
162                 return m_is_visible;
163         }
164
165         inline void setVisible(bool toset)
166         {
167                 m_is_visible = toset;
168         }
169
170         void setChildrenVisible(bool toset);
171
172         void setAttachments();
173
174         void removeFromScene(bool permanent);
175
176         void addToScene(ITextureSource *tsrc);
177
178         inline void expireVisuals()
179         {
180                 m_visuals_expired = true;
181         }
182
183         void updateLight(u8 light_at_pos);
184
185         void updateLightNoCheck(u8 light_at_pos);
186
187         v3s16 getLightPosition();
188
189         void updateNodePos();
190
191         void step(float dtime, ClientEnvironment *env);
192
193         void updateTexturePos();
194
195         // std::string copy is mandatory as mod can be a class member and there is a swap
196         // on those class members
197         void updateTextures(std::string mod);
198
199         void updateAnimation();
200
201         void updateAnimationSpeed();
202
203         void updateBonePosition();
204
205         void updateAttachments();
206
207         void processMessage(const std::string &data);
208
209         bool directReportPunch(v3f dir, const ItemStack *punchitem=NULL,
210                         float time_from_last_punch=1000000);
211
212         std::string debugInfoText();
213
214         std::string infoText()
215         {
216                 return m_prop.infotext;
217         }
218 };