]> git.lizzy.rs Git - dragonfireclient.git/blob - src/client/content_cao.cpp
Fix various code & correctness issues (#11815)
[dragonfireclient.git] / src / client / content_cao.cpp
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 #include "content_cao.h"
21 #include <IBillboardSceneNode.h>
22 #include <ICameraSceneNode.h>
23 #include <IMeshManipulator.h>
24 #include <IAnimatedMeshSceneNode.h>
25 #include "client/client.h"
26 #include "client/renderingengine.h"
27 #include "client/sound.h"
28 #include "client/tile.h"
29 #include "util/basic_macros.h"
30 #include "util/numeric.h"
31 #include "util/serialize.h"
32 #include "camera.h" // CameraModes
33 #include "collision.h"
34 #include "content_cso.h"
35 #include "environment.h"
36 #include "itemdef.h"
37 #include "localplayer.h"
38 #include "map.h"
39 #include "mesh.h"
40 #include "nodedef.h"
41 #include "serialization.h" // For decompressZlib
42 #include "settings.h"
43 #include "sound.h"
44 #include "tool.h"
45 #include "wieldmesh.h"
46 #include <algorithm>
47 #include <cmath>
48 #include "client/shader.h"
49 #include "client/minimap.h"
50
51 class Settings;
52 struct ToolCapabilities;
53
54 std::unordered_map<u16, ClientActiveObject::Factory> ClientActiveObject::m_types;
55
56 template<typename T>
57 void SmoothTranslator<T>::init(T current)
58 {
59         val_old = current;
60         val_current = current;
61         val_target = current;
62         anim_time = 0;
63         anim_time_counter = 0;
64         aim_is_end = true;
65 }
66
67 template<typename T>
68 void SmoothTranslator<T>::update(T new_target, bool is_end_position, float update_interval)
69 {
70         aim_is_end = is_end_position;
71         val_old = val_current;
72         val_target = new_target;
73         if (update_interval > 0) {
74                 anim_time = update_interval;
75         } else {
76                 if (anim_time < 0.001 || anim_time > 1.0)
77                         anim_time = anim_time_counter;
78                 else
79                         anim_time = anim_time * 0.9 + anim_time_counter * 0.1;
80         }
81         anim_time_counter = 0;
82 }
83
84 template<typename T>
85 void SmoothTranslator<T>::translate(f32 dtime)
86 {
87         anim_time_counter = anim_time_counter + dtime;
88         T val_diff = val_target - val_old;
89         f32 moveratio = 1.0;
90         if (anim_time > 0.001)
91                 moveratio = anim_time_counter / anim_time;
92         f32 move_end = aim_is_end ? 1.0 : 1.5;
93
94         // Move a bit less than should, to avoid oscillation
95         moveratio = std::min(moveratio * 0.8f, move_end);
96         val_current = val_old + val_diff * moveratio;
97 }
98
99 void SmoothTranslatorWrapped::translate(f32 dtime)
100 {
101         anim_time_counter = anim_time_counter + dtime;
102         f32 val_diff = std::abs(val_target - val_old);
103         if (val_diff > 180.f)
104                 val_diff = 360.f - val_diff;
105
106         f32 moveratio = 1.0;
107         if (anim_time > 0.001)
108                 moveratio = anim_time_counter / anim_time;
109         f32 move_end = aim_is_end ? 1.0 : 1.5;
110
111         // Move a bit less than should, to avoid oscillation
112         moveratio = std::min(moveratio * 0.8f, move_end);
113         wrappedApproachShortest(val_current, val_target,
114                 val_diff * moveratio, 360.f);
115 }
116
117 void SmoothTranslatorWrappedv3f::translate(f32 dtime)
118 {
119         anim_time_counter = anim_time_counter + dtime;
120
121         v3f val_diff_v3f;
122         val_diff_v3f.X = std::abs(val_target.X - val_old.X);
123         val_diff_v3f.Y = std::abs(val_target.Y - val_old.Y);
124         val_diff_v3f.Z = std::abs(val_target.Z - val_old.Z);
125
126         if (val_diff_v3f.X > 180.f)
127                 val_diff_v3f.X = 360.f - val_diff_v3f.X;
128
129         if (val_diff_v3f.Y > 180.f)
130                 val_diff_v3f.Y = 360.f - val_diff_v3f.Y;
131
132         if (val_diff_v3f.Z > 180.f)
133                 val_diff_v3f.Z = 360.f - val_diff_v3f.Z;
134
135         f32 moveratio = 1.0;
136         if (anim_time > 0.001)
137                 moveratio = anim_time_counter / anim_time;
138         f32 move_end = aim_is_end ? 1.0 : 1.5;
139
140         // Move a bit less than should, to avoid oscillation
141         moveratio = std::min(moveratio * 0.8f, move_end);
142         wrappedApproachShortest(val_current.X, val_target.X,
143                 val_diff_v3f.X * moveratio, 360.f);
144
145         wrappedApproachShortest(val_current.Y, val_target.Y,
146                 val_diff_v3f.Y * moveratio, 360.f);
147
148         wrappedApproachShortest(val_current.Z, val_target.Z,
149                 val_diff_v3f.Z * moveratio, 360.f);
150 }
151
152 /*
153         Other stuff
154 */
155
156 static void setBillboardTextureMatrix(scene::IBillboardSceneNode *bill,
157                 float txs, float tys, int col, int row)
158 {
159         video::SMaterial& material = bill->getMaterial(0);
160         core::matrix4& matrix = material.getTextureMatrix(0);
161         matrix.setTextureTranslate(txs*col, tys*row);
162         matrix.setTextureScale(txs, tys);
163 }
164
165 // Evaluate transform chain recursively; irrlicht does not do this for us
166 static void updatePositionRecursive(scene::ISceneNode *node)
167 {
168         scene::ISceneNode *parent = node->getParent();
169         if (parent)
170                 updatePositionRecursive(parent);
171         node->updateAbsolutePosition();
172 }
173
174 static bool logOnce(const std::ostringstream &from, std::ostream &log_to)
175 {
176         thread_local std::vector<u64> logged;
177
178         std::string message = from.str();
179         u64 hash = murmur_hash_64_ua(message.data(), message.length(), 0xBADBABE);
180
181         if (std::find(logged.begin(), logged.end(), hash) != logged.end())
182                 return false;
183         logged.push_back(hash);
184         log_to << message << std::endl;
185         return true;
186 }
187
188 /*
189         TestCAO
190 */
191
192 class TestCAO : public ClientActiveObject
193 {
194 public:
195         TestCAO(Client *client, ClientEnvironment *env);
196         virtual ~TestCAO() = default;
197
198         ActiveObjectType getType() const
199         {
200                 return ACTIVEOBJECT_TYPE_TEST;
201         }
202
203         static ClientActiveObject* create(Client *client, ClientEnvironment *env);
204
205         void addToScene(ITextureSource *tsrc, scene::ISceneManager *smgr);
206         void removeFromScene(bool permanent);
207         void updateLight(u32 day_night_ratio);
208         void updateNodePos();
209
210         void step(float dtime, ClientEnvironment *env);
211
212         void processMessage(const std::string &data);
213
214         bool getCollisionBox(aabb3f *toset) const { return false; }
215 private:
216         scene::IMeshSceneNode *m_node;
217         v3f m_position;
218 };
219
220 // Prototype
221 TestCAO proto_TestCAO(NULL, NULL);
222
223 TestCAO::TestCAO(Client *client, ClientEnvironment *env):
224         ClientActiveObject(0, client, env),
225         m_node(NULL),
226         m_position(v3f(0,10*BS,0))
227 {
228         ClientActiveObject::registerType(getType(), create);
229 }
230
231 ClientActiveObject* TestCAO::create(Client *client, ClientEnvironment *env)
232 {
233         return new TestCAO(client, env);
234 }
235
236 void TestCAO::addToScene(ITextureSource *tsrc, scene::ISceneManager *smgr)
237 {
238         if(m_node != NULL)
239                 return;
240
241         //video::IVideoDriver* driver = smgr->getVideoDriver();
242
243         scene::SMesh *mesh = new scene::SMesh();
244         scene::IMeshBuffer *buf = new scene::SMeshBuffer();
245         video::SColor c(255,255,255,255);
246         video::S3DVertex vertices[4] =
247         {
248                 video::S3DVertex(-BS/2,-BS/4,0, 0,0,0, c, 0,1),
249                 video::S3DVertex(BS/2,-BS/4,0, 0,0,0, c, 1,1),
250                 video::S3DVertex(BS/2,BS/4,0, 0,0,0, c, 1,0),
251                 video::S3DVertex(-BS/2,BS/4,0, 0,0,0, c, 0,0),
252         };
253         u16 indices[] = {0,1,2,2,3,0};
254         buf->append(vertices, 4, indices, 6);
255         // Set material
256         buf->getMaterial().setFlag(video::EMF_LIGHTING, false);
257         buf->getMaterial().setFlag(video::EMF_BACK_FACE_CULLING, false);
258         buf->getMaterial().setTexture(0, tsrc->getTextureForMesh("rat.png"));
259         buf->getMaterial().setFlag(video::EMF_BILINEAR_FILTER, false);
260         buf->getMaterial().setFlag(video::EMF_FOG_ENABLE, true);
261         buf->getMaterial().MaterialType = video::EMT_TRANSPARENT_ALPHA_CHANNEL;
262         // Add to mesh
263         mesh->addMeshBuffer(buf);
264         buf->drop();
265         m_node = smgr->addMeshSceneNode(mesh, NULL);
266         mesh->drop();
267         updateNodePos();
268 }
269
270 void TestCAO::removeFromScene(bool permanent)
271 {
272         if (!m_node)
273                 return;
274
275         m_node->remove();
276         m_node = NULL;
277 }
278
279 void TestCAO::updateLight(u32 day_night_ratio)
280 {
281 }
282
283 void TestCAO::updateNodePos()
284 {
285         if (!m_node)
286                 return;
287
288         m_node->setPosition(m_position);
289         //m_node->setRotation(v3f(0, 45, 0));
290 }
291
292 void TestCAO::step(float dtime, ClientEnvironment *env)
293 {
294         if(m_node)
295         {
296                 v3f rot = m_node->getRotation();
297                 //infostream<<"dtime="<<dtime<<", rot.Y="<<rot.Y<<std::endl;
298                 rot.Y += dtime * 180;
299                 m_node->setRotation(rot);
300         }
301 }
302
303 void TestCAO::processMessage(const std::string &data)
304 {
305         infostream<<"TestCAO: Got data: "<<data<<std::endl;
306         std::istringstream is(data, std::ios::binary);
307         u16 cmd;
308         is>>cmd;
309         if(cmd == 0)
310         {
311                 v3f newpos;
312                 is>>newpos.X;
313                 is>>newpos.Y;
314                 is>>newpos.Z;
315                 m_position = newpos;
316                 updateNodePos();
317         }
318 }
319
320 /*
321         GenericCAO
322 */
323
324 #include "clientobject.h"
325
326 GenericCAO::GenericCAO(Client *client, ClientEnvironment *env):
327                 ClientActiveObject(0, client, env)
328 {
329         if (client == NULL) {
330                 ClientActiveObject::registerType(getType(), create);
331         } else {
332                 m_client = client;
333         }
334 }
335
336 bool GenericCAO::getCollisionBox(aabb3f *toset) const
337 {
338         if (m_prop.physical)
339         {
340                 //update collision box
341                 toset->MinEdge = m_prop.collisionbox.MinEdge * BS;
342                 toset->MaxEdge = m_prop.collisionbox.MaxEdge * BS;
343
344                 toset->MinEdge += m_position;
345                 toset->MaxEdge += m_position;
346
347                 return true;
348         }
349
350         return false;
351 }
352
353 bool GenericCAO::collideWithObjects() const
354 {
355         return m_prop.collideWithObjects;
356 }
357
358 void GenericCAO::initialize(const std::string &data)
359 {
360         infostream<<"GenericCAO: Got init data"<<std::endl;
361         processInitData(data);
362
363         m_enable_shaders = g_settings->getBool("enable_shaders");
364 }
365
366 void GenericCAO::processInitData(const std::string &data)
367 {
368         std::istringstream is(data, std::ios::binary);
369         const u8 version = readU8(is);
370
371         if (version < 1) {
372                 errorstream << "GenericCAO: Unsupported init data version"
373                                 << std::endl;
374                 return;
375         }
376
377         // PROTOCOL_VERSION >= 37
378         m_name = deSerializeString16(is);
379         m_is_player = readU8(is);
380         m_id = readU16(is);
381         m_position = readV3F32(is);
382         m_rotation = readV3F32(is);
383         m_hp = readU16(is);
384
385         if (m_is_player) {
386                 // Check if it's the current player
387                 LocalPlayer *player = m_env->getLocalPlayer();
388                 if (player && strcmp(player->getName(), m_name.c_str()) == 0) {
389                         m_is_local_player = true;
390                         m_is_visible = false;
391                         player->setCAO(this);
392                 }
393         }
394
395         const u8 num_messages = readU8(is);
396
397         for (int i = 0; i < num_messages; i++) {
398                 std::string message = deSerializeString32(is);
399                 processMessage(message);
400         }
401
402         m_rotation = wrapDegrees_0_360_v3f(m_rotation);
403         pos_translator.init(m_position);
404         rot_translator.init(m_rotation);
405         updateNodePos();
406 }
407
408 GenericCAO::~GenericCAO()
409 {
410         removeFromScene(true);
411 }
412
413 bool GenericCAO::getSelectionBox(aabb3f *toset) const
414 {
415         if (!m_prop.is_visible || !m_is_visible || m_is_local_player
416                         || !m_prop.pointable) {
417                 return false;
418         }
419         *toset = m_selection_box;
420         return true;
421 }
422
423 const v3f GenericCAO::getPosition() const
424 {
425         if (!getParent())
426                 return pos_translator.val_current;
427
428         // Calculate real position in world based on MatrixNode
429         if (m_matrixnode) {
430                 v3s16 camera_offset = m_env->getCameraOffset();
431                 return m_matrixnode->getAbsolutePosition() +
432                                 intToFloat(camera_offset, BS);
433         }
434
435         return m_position;
436 }
437
438 const bool GenericCAO::isImmortal()
439 {
440         return itemgroup_get(getGroups(), "immortal");
441 }
442
443 scene::ISceneNode *GenericCAO::getSceneNode() const
444 {
445         if (m_meshnode) {
446                 return m_meshnode;
447         }
448
449         if (m_animated_meshnode) {
450                 return m_animated_meshnode;
451         }
452
453         if (m_wield_meshnode) {
454                 return m_wield_meshnode;
455         }
456
457         if (m_spritenode) {
458                 return m_spritenode;
459         }
460         return NULL;
461 }
462
463 scene::IAnimatedMeshSceneNode *GenericCAO::getAnimatedMeshSceneNode() const
464 {
465         return m_animated_meshnode;
466 }
467
468 void GenericCAO::setChildrenVisible(bool toset)
469 {
470         for (u16 cao_id : m_attachment_child_ids) {
471                 GenericCAO *obj = m_env->getGenericCAO(cao_id);
472                 if (obj) {
473                         // Check if the entity is forced to appear in first person.
474                         obj->setVisible(obj->m_force_visible ? true : toset);
475                 }
476         }
477 }
478
479 void GenericCAO::setAttachment(int parent_id, const std::string &bone,
480                 v3f position, v3f rotation, bool force_visible)
481 {
482         int old_parent = m_attachment_parent_id;
483         m_attachment_parent_id = parent_id;
484         m_attachment_bone = bone;
485         m_attachment_position = position;
486         m_attachment_rotation = rotation;
487         m_force_visible = force_visible;
488
489         ClientActiveObject *parent = m_env->getActiveObject(parent_id);
490
491         if (parent_id != old_parent) {
492                 if (auto *o = m_env->getActiveObject(old_parent))
493                         o->removeAttachmentChild(m_id);
494                 if (parent)
495                         parent->addAttachmentChild(m_id);
496         }
497         updateAttachments();
498
499         // Forcibly show attachments if required by set_attach
500         if (m_force_visible) {
501                 m_is_visible = true;
502         } else if (!m_is_local_player) {
503                 // Objects attached to the local player should be hidden in first person
504                 m_is_visible = !m_attached_to_local ||
505                         m_client->getCamera()->getCameraMode() != CAMERA_MODE_FIRST;
506                 m_force_visible = false;
507         } else {
508                 // Local players need to have this set,
509                 // otherwise first person attachments fail.
510                 m_is_visible = true;
511         }
512 }
513
514 void GenericCAO::getAttachment(int *parent_id, std::string *bone, v3f *position,
515         v3f *rotation, bool *force_visible) const
516 {
517         *parent_id = m_attachment_parent_id;
518         *bone = m_attachment_bone;
519         *position = m_attachment_position;
520         *rotation = m_attachment_rotation;
521         *force_visible = m_force_visible;
522 }
523
524 void GenericCAO::clearChildAttachments()
525 {
526         // Cannot use for-loop here: setAttachment() modifies 'm_attachment_child_ids'!
527         while (!m_attachment_child_ids.empty()) {
528                 int child_id = *m_attachment_child_ids.begin();
529
530                 if (ClientActiveObject *child = m_env->getActiveObject(child_id))
531                         child->setAttachment(0, "", v3f(), v3f(), false);
532
533                 removeAttachmentChild(child_id);
534         }
535 }
536
537 void GenericCAO::clearParentAttachment()
538 {
539         if (m_attachment_parent_id)
540                 setAttachment(0, "", m_attachment_position, m_attachment_rotation, false);
541         else
542                 setAttachment(0, "", v3f(), v3f(), false);
543 }
544
545 void GenericCAO::addAttachmentChild(int child_id)
546 {
547         m_attachment_child_ids.insert(child_id);
548 }
549
550 void GenericCAO::removeAttachmentChild(int child_id)
551 {
552         m_attachment_child_ids.erase(child_id);
553 }
554
555 ClientActiveObject* GenericCAO::getParent() const
556 {
557         return m_attachment_parent_id ? m_env->getActiveObject(m_attachment_parent_id) :
558                         nullptr;
559 }
560
561 void GenericCAO::removeFromScene(bool permanent)
562 {
563         // Should be true when removing the object permanently
564         // and false when refreshing (eg: updating visuals)
565         if (m_env && permanent) {
566                 // The client does not know whether this object does re-appear to
567                 // a later time, thus do not clear child attachments.
568
569                 clearParentAttachment();
570         }
571
572         if (auto shadow = RenderingEngine::get_shadow_renderer())
573                 shadow->removeNodeFromShadowList(getSceneNode());
574
575         if (m_meshnode) {
576                 m_meshnode->remove();
577                 m_meshnode->drop();
578                 m_meshnode = nullptr;
579         } else if (m_animated_meshnode) {
580                 m_animated_meshnode->remove();
581                 m_animated_meshnode->drop();
582                 m_animated_meshnode = nullptr;
583         } else if (m_wield_meshnode) {
584                 m_wield_meshnode->remove();
585                 m_wield_meshnode->drop();
586                 m_wield_meshnode = nullptr;
587         } else if (m_spritenode) {
588                 m_spritenode->remove();
589                 m_spritenode->drop();
590                 m_spritenode = nullptr;
591         }
592
593         if (m_matrixnode) {
594                 m_matrixnode->remove();
595                 m_matrixnode->drop();
596                 m_matrixnode = nullptr;
597         }
598
599         if (m_nametag) {
600                 m_client->getCamera()->removeNametag(m_nametag);
601                 m_nametag = nullptr;
602         }
603
604         if (m_marker && m_client->getMinimap())
605                 m_client->getMinimap()->removeMarker(&m_marker);
606 }
607
608 void GenericCAO::addToScene(ITextureSource *tsrc, scene::ISceneManager *smgr)
609 {
610         m_smgr = smgr;
611
612         if (getSceneNode() != NULL) {
613                 return;
614         }
615
616         m_visuals_expired = false;
617
618         if (!m_prop.is_visible)
619                 return;
620
621         infostream << "GenericCAO::addToScene(): " << m_prop.visual << std::endl;
622
623         if (m_enable_shaders) {
624                 IShaderSource *shader_source = m_client->getShaderSource();
625                 MaterialType material_type;
626
627                 if (m_prop.shaded && m_prop.glow == 0)
628                         material_type = (m_prop.use_texture_alpha) ?
629                                 TILE_MATERIAL_ALPHA : TILE_MATERIAL_BASIC;
630                 else
631                         material_type = (m_prop.use_texture_alpha) ?
632                                 TILE_MATERIAL_PLAIN_ALPHA : TILE_MATERIAL_PLAIN;
633
634                 u32 shader_id = shader_source->getShader("object_shader", material_type, NDT_NORMAL);
635                 m_material_type = shader_source->getShaderInfo(shader_id).material;
636         } else {
637                 m_material_type = (m_prop.use_texture_alpha) ?
638                         video::EMT_TRANSPARENT_ALPHA_CHANNEL : video::EMT_TRANSPARENT_ALPHA_CHANNEL_REF;
639         }
640
641         auto grabMatrixNode = [this] {
642                 m_matrixnode = m_smgr->addDummyTransformationSceneNode();
643                 m_matrixnode->grab();
644         };
645
646         auto setSceneNodeMaterial = [this] (scene::ISceneNode *node) {
647                 node->setMaterialFlag(video::EMF_LIGHTING, false);
648                 node->setMaterialFlag(video::EMF_BILINEAR_FILTER, false);
649                 node->setMaterialFlag(video::EMF_FOG_ENABLE, true);
650                 node->setMaterialType(m_material_type);
651
652                 if (m_enable_shaders) {
653                         node->setMaterialFlag(video::EMF_GOURAUD_SHADING, false);
654                         node->setMaterialFlag(video::EMF_NORMALIZE_NORMALS, true);
655                 }
656         };
657
658         if (m_prop.visual == "sprite") {
659                 grabMatrixNode();
660                 m_spritenode = m_smgr->addBillboardSceneNode(
661                                 m_matrixnode, v2f(1, 1), v3f(0,0,0), -1);
662                 m_spritenode->grab();
663                 m_spritenode->setMaterialTexture(0,
664                                 tsrc->getTextureForMesh("no_texture.png"));
665
666                 setSceneNodeMaterial(m_spritenode);
667
668                 m_spritenode->setSize(v2f(m_prop.visual_size.X,
669                                 m_prop.visual_size.Y) * BS);
670                 {
671                         const float txs = 1.0 / 1;
672                         const float tys = 1.0 / 1;
673                         setBillboardTextureMatrix(m_spritenode,
674                                         txs, tys, 0, 0);
675                 }
676         } else if (m_prop.visual == "upright_sprite") {
677                 grabMatrixNode();
678                 scene::SMesh *mesh = new scene::SMesh();
679                 double dx = BS * m_prop.visual_size.X / 2;
680                 double dy = BS * m_prop.visual_size.Y / 2;
681                 video::SColor c(0xFFFFFFFF);
682
683                 { // Front
684                         scene::IMeshBuffer *buf = new scene::SMeshBuffer();
685                         video::S3DVertex vertices[4] = {
686                                 video::S3DVertex(-dx, -dy, 0, 0,0,1, c, 1,1),
687                                 video::S3DVertex( dx, -dy, 0, 0,0,1, c, 0,1),
688                                 video::S3DVertex( dx,  dy, 0, 0,0,1, c, 0,0),
689                                 video::S3DVertex(-dx,  dy, 0, 0,0,1, c, 1,0),
690                         };
691                         if (m_is_player) {
692                                 // Move minimal Y position to 0 (feet position)
693                                 for (video::S3DVertex &vertex : vertices)
694                                         vertex.Pos.Y += dy;
695                         }
696                         u16 indices[] = {0,1,2,2,3,0};
697                         buf->append(vertices, 4, indices, 6);
698                         // Set material
699                         buf->getMaterial().setFlag(video::EMF_LIGHTING, false);
700                         buf->getMaterial().setFlag(video::EMF_BILINEAR_FILTER, false);
701                         buf->getMaterial().setFlag(video::EMF_FOG_ENABLE, true);
702                         buf->getMaterial().MaterialType = m_material_type;
703
704                         if (m_enable_shaders) {
705                                 buf->getMaterial().EmissiveColor = c;
706                                 buf->getMaterial().setFlag(video::EMF_GOURAUD_SHADING, false);
707                                 buf->getMaterial().setFlag(video::EMF_NORMALIZE_NORMALS, true);
708                         }
709
710                         // Add to mesh
711                         mesh->addMeshBuffer(buf);
712                         buf->drop();
713                 }
714                 { // Back
715                         scene::IMeshBuffer *buf = new scene::SMeshBuffer();
716                         video::S3DVertex vertices[4] = {
717                                 video::S3DVertex( dx,-dy, 0, 0,0,-1, c, 1,1),
718                                 video::S3DVertex(-dx,-dy, 0, 0,0,-1, c, 0,1),
719                                 video::S3DVertex(-dx, dy, 0, 0,0,-1, c, 0,0),
720                                 video::S3DVertex( dx, dy, 0, 0,0,-1, c, 1,0),
721                         };
722                         if (m_is_player) {
723                                 // Move minimal Y position to 0 (feet position)
724                                 for (video::S3DVertex &vertex : vertices)
725                                         vertex.Pos.Y += dy;
726                         }
727                         u16 indices[] = {0,1,2,2,3,0};
728                         buf->append(vertices, 4, indices, 6);
729                         // Set material
730                         buf->getMaterial().setFlag(video::EMF_LIGHTING, false);
731                         buf->getMaterial().setFlag(video::EMF_BILINEAR_FILTER, false);
732                         buf->getMaterial().setFlag(video::EMF_FOG_ENABLE, true);
733                         buf->getMaterial().MaterialType = m_material_type;
734
735                         if (m_enable_shaders) {
736                                 buf->getMaterial().EmissiveColor = c;
737                                 buf->getMaterial().setFlag(video::EMF_GOURAUD_SHADING, false);
738                                 buf->getMaterial().setFlag(video::EMF_NORMALIZE_NORMALS, true);
739                         }
740
741                         // Add to mesh
742                         mesh->addMeshBuffer(buf);
743                         buf->drop();
744                 }
745                 m_meshnode = m_smgr->addMeshSceneNode(mesh, m_matrixnode);
746                 m_meshnode->grab();
747                 mesh->drop();
748                 // Set it to use the materials of the meshbuffers directly.
749                 // This is needed for changing the texture in the future
750                 m_meshnode->setReadOnlyMaterials(true);
751         } else if (m_prop.visual == "cube") {
752                 grabMatrixNode();
753                 scene::IMesh *mesh = createCubeMesh(v3f(BS,BS,BS));
754                 m_meshnode = m_smgr->addMeshSceneNode(mesh, m_matrixnode);
755                 m_meshnode->grab();
756                 mesh->drop();
757
758                 m_meshnode->setScale(m_prop.visual_size);
759                 m_meshnode->setMaterialFlag(video::EMF_BACK_FACE_CULLING,
760                         m_prop.backface_culling);
761
762                 setSceneNodeMaterial(m_meshnode);
763         } else if (m_prop.visual == "mesh") {
764                 grabMatrixNode();
765                 scene::IAnimatedMesh *mesh = m_client->getMesh(m_prop.mesh, true);
766                 if (mesh) {
767                         m_animated_meshnode = m_smgr->addAnimatedMeshSceneNode(mesh, m_matrixnode);
768                         m_animated_meshnode->grab();
769                         mesh->drop(); // The scene node took hold of it
770
771                         if (!checkMeshNormals(mesh)) {
772                                 infostream << "GenericCAO: recalculating normals for mesh "
773                                         << m_prop.mesh << std::endl;
774                                 m_smgr->getMeshManipulator()->
775                                                 recalculateNormals(mesh, true, false);
776                         }
777
778                         m_animated_meshnode->animateJoints(); // Needed for some animations
779                         m_animated_meshnode->setScale(m_prop.visual_size);
780
781                         // set vertex colors to ensure alpha is set
782                         setMeshColor(m_animated_meshnode->getMesh(), video::SColor(0xFFFFFFFF));
783
784                         setAnimatedMeshColor(m_animated_meshnode, video::SColor(0xFFFFFFFF));
785
786                         setSceneNodeMaterial(m_animated_meshnode);
787
788                         m_animated_meshnode->setMaterialFlag(video::EMF_BACK_FACE_CULLING,
789                                 m_prop.backface_culling);
790                 } else
791                         errorstream<<"GenericCAO::addToScene(): Could not load mesh "<<m_prop.mesh<<std::endl;
792         } else if (m_prop.visual == "wielditem" || m_prop.visual == "item") {
793                 grabMatrixNode();
794                 ItemStack item;
795                 if (m_prop.wield_item.empty()) {
796                         // Old format, only textures are specified.
797                         infostream << "textures: " << m_prop.textures.size() << std::endl;
798                         if (!m_prop.textures.empty()) {
799                                 infostream << "textures[0]: " << m_prop.textures[0]
800                                         << std::endl;
801                                 IItemDefManager *idef = m_client->idef();
802                                 item = ItemStack(m_prop.textures[0], 1, 0, idef);
803                         }
804                 } else {
805                         infostream << "serialized form: " << m_prop.wield_item << std::endl;
806                         item.deSerialize(m_prop.wield_item, m_client->idef());
807                 }
808                 m_wield_meshnode = new WieldMeshSceneNode(m_smgr, -1);
809                 m_wield_meshnode->setItem(item, m_client,
810                         (m_prop.visual == "wielditem"));
811
812                 m_wield_meshnode->setScale(m_prop.visual_size / 2.0f);
813                 m_wield_meshnode->setColor(video::SColor(0xFFFFFFFF));
814         } else {
815                 infostream<<"GenericCAO::addToScene(): \""<<m_prop.visual
816                                 <<"\" not supported"<<std::endl;
817         }
818
819         /* don't update while punch texture modifier is active */
820         if (m_reset_textures_timer < 0)
821                 updateTextures(m_current_texture_modifier);
822
823         if (scene::ISceneNode *node = getSceneNode()) {
824                 if (m_matrixnode)
825                         node->setParent(m_matrixnode);
826
827                 if (auto shadow = RenderingEngine::get_shadow_renderer())
828                         shadow->addNodeToShadowList(node);
829         }
830
831         updateNametag();
832         updateMarker();
833         updateNodePos();
834         updateAnimation();
835         updateBonePosition();
836         updateAttachments();
837         setNodeLight(m_last_light);
838         updateMeshCulling();
839
840         if (m_animated_meshnode) {
841                 u32 mat_count = m_animated_meshnode->getMaterialCount();
842                 if (mat_count == 0 || m_prop.textures.empty()) {
843                         // nothing
844                 } else if (mat_count > m_prop.textures.size()) {
845                         std::ostringstream oss;
846                         oss << "GenericCAO::addToScene(): Model "
847                                 << m_prop.mesh << " loaded with " << mat_count
848                                 << " mesh buffers but only " << m_prop.textures.size()
849                                 << " texture(s) specifed, this is deprecated.";
850                         logOnce(oss, warningstream);
851
852                         video::ITexture *last = m_animated_meshnode->getMaterial(0).TextureLayer[0].Texture;
853                         for (u32 i = 1; i < mat_count; i++) {
854                                 auto &layer = m_animated_meshnode->getMaterial(i).TextureLayer[0];
855                                 if (!layer.Texture)
856                                         layer.Texture = last;
857                                 last = layer.Texture;
858                         }
859                 }
860         }
861 }
862
863 void GenericCAO::updateLight(u32 day_night_ratio)
864 {
865         if (m_glow < 0)
866                 return;
867
868         u8 light_at_pos = 0;
869         bool pos_ok = false;
870
871         v3s16 pos[3];
872         u16 npos = getLightPosition(pos);
873         for (u16 i = 0; i < npos; i++) {
874                 bool this_ok;
875                 MapNode n = m_env->getMap().getNode(pos[i], &this_ok);
876                 if (this_ok) {
877                         u8 this_light = n.getLightBlend(day_night_ratio, m_client->ndef());
878                         light_at_pos = MYMAX(light_at_pos, this_light);
879                         pos_ok = true;
880                 }
881         }
882         if (!pos_ok)
883                 light_at_pos = blend_light(day_night_ratio, LIGHT_SUN, 0);
884
885         u8 light = decode_light(light_at_pos + m_glow);
886         if (light != m_last_light) {
887                 m_last_light = light;
888                 setNodeLight(light);
889         }
890 }
891
892 void GenericCAO::setNodeLight(u8 light)
893 {
894         video::SColor color(255, light, light, light);
895
896         if (m_prop.visual == "wielditem" || m_prop.visual == "item") {
897                 if (m_wield_meshnode)
898                         m_wield_meshnode->setNodeLightColor(color);
899                 return;
900         }
901
902         if (m_enable_shaders) {
903                 if (m_prop.visual == "upright_sprite") {
904                         if (!m_meshnode)
905                                 return;
906
907                         scene::IMesh *mesh = m_meshnode->getMesh();
908                         for (u32 i = 0; i < mesh->getMeshBufferCount(); ++i) {
909                                 scene::IMeshBuffer *buf = mesh->getMeshBuffer(i);
910                                 buf->getMaterial().EmissiveColor = color;
911                         }
912                 } else {
913                         scene::ISceneNode *node = getSceneNode();
914                         if (!node)
915                                 return;
916
917                         for (u32 i = 0; i < node->getMaterialCount(); ++i) {
918                                 video::SMaterial &material = node->getMaterial(i);
919                                 material.EmissiveColor = color;
920                         }
921                 }
922         } else {
923                 if (m_meshnode) {
924                         setMeshColor(m_meshnode->getMesh(), color);
925                 } else if (m_animated_meshnode) {
926                         setAnimatedMeshColor(m_animated_meshnode, color);
927                 } else if (m_spritenode) {
928                         m_spritenode->setColor(color);
929                 }
930         }
931 }
932
933 u16 GenericCAO::getLightPosition(v3s16 *pos)
934 {
935         const auto &box = m_prop.collisionbox;
936         pos[0] = floatToInt(m_position + box.MinEdge * BS, BS);
937         pos[1] = floatToInt(m_position + box.MaxEdge * BS, BS);
938
939         // Skip center pos if it falls into the same node as Min or MaxEdge
940         if ((box.MaxEdge - box.MinEdge).getLengthSQ() < 3.0f)
941                 return 2;
942         pos[2] = floatToInt(m_position + box.getCenter() * BS, BS);
943         return 3;
944 }
945
946 void GenericCAO::updateMarker()
947 {
948         if (!m_client->getMinimap())
949                 return;
950
951         if (!m_prop.show_on_minimap) {
952                 if (m_marker)
953                         m_client->getMinimap()->removeMarker(&m_marker);
954                 return;
955         }
956
957         if (m_marker)
958                 return;
959
960         scene::ISceneNode *node = getSceneNode();
961         if (!node)
962                 return;
963         m_marker = m_client->getMinimap()->addMarker(node);
964 }
965
966 void GenericCAO::updateNametag()
967 {
968         if (m_is_local_player) // No nametag for local player
969                 return;
970
971         if (m_prop.nametag.empty() || m_prop.nametag_color.getAlpha() == 0) {
972                 // Delete nametag
973                 if (m_nametag) {
974                         m_client->getCamera()->removeNametag(m_nametag);
975                         m_nametag = nullptr;
976                 }
977                 return;
978         }
979
980         scene::ISceneNode *node = getSceneNode();
981         if (!node)
982                 return;
983
984         v3f pos;
985         pos.Y = m_prop.selectionbox.MaxEdge.Y + 0.3f;
986         if (!m_nametag) {
987                 // Add nametag
988                 m_nametag = m_client->getCamera()->addNametag(node,
989                         m_prop.nametag, m_prop.nametag_color,
990                         m_prop.nametag_bgcolor, pos);
991         } else {
992                 // Update nametag
993                 m_nametag->text = m_prop.nametag;
994                 m_nametag->textcolor = m_prop.nametag_color;
995                 m_nametag->bgcolor = m_prop.nametag_bgcolor;
996                 m_nametag->pos = pos;
997         }
998 }
999
1000 void GenericCAO::updateNodePos()
1001 {
1002         if (getParent() != NULL)
1003                 return;
1004
1005         scene::ISceneNode *node = getSceneNode();
1006
1007         if (node) {
1008                 v3s16 camera_offset = m_env->getCameraOffset();
1009                 v3f pos = pos_translator.val_current -
1010                                 intToFloat(camera_offset, BS);
1011                 getPosRotMatrix().setTranslation(pos);
1012                 if (node != m_spritenode) { // rotate if not a sprite
1013                         v3f rot = m_is_local_player ? -m_rotation : -rot_translator.val_current;
1014                         setPitchYawRoll(getPosRotMatrix(), rot);
1015                 }
1016         }
1017 }
1018
1019 void GenericCAO::step(float dtime, ClientEnvironment *env)
1020 {
1021         // Handle model animations and update positions instantly to prevent lags
1022         if (m_is_local_player) {
1023                 LocalPlayer *player = m_env->getLocalPlayer();
1024                 m_position = player->getPosition();
1025                 pos_translator.val_current = m_position;
1026                 m_rotation.Y = wrapDegrees_0_360(player->getYaw());
1027                 rot_translator.val_current = m_rotation;
1028
1029                 if (m_is_visible) {
1030                         int old_anim = player->last_animation;
1031                         float old_anim_speed = player->last_animation_speed;
1032                         m_velocity = v3f(0,0,0);
1033                         m_acceleration = v3f(0,0,0);
1034                         const PlayerControl &controls = player->getPlayerControl();
1035                         f32 new_speed = player->local_animation_speed;
1036
1037                         bool walking = false;
1038                         if (controls.movement_speed > 0.001f) {
1039                                 new_speed *= controls.movement_speed;
1040                                 walking = true;
1041                         }
1042
1043                         v2s32 new_anim = v2s32(0,0);
1044                         bool allow_update = false;
1045
1046                         // increase speed if using fast or flying fast
1047                         if((g_settings->getBool("fast_move") &&
1048                                         m_client->checkLocalPrivilege("fast")) &&
1049                                         (controls.aux1 ||
1050                                         (!player->touching_ground &&
1051                                         g_settings->getBool("free_move") &&
1052                                         m_client->checkLocalPrivilege("fly"))))
1053                                         new_speed *= 1.5;
1054                         // slowdown speed if sneaking
1055                         if (controls.sneak && walking)
1056                                 new_speed /= 2;
1057
1058                         if (walking && (controls.dig || controls.place)) {
1059                                 new_anim = player->local_animations[3];
1060                                 player->last_animation = WD_ANIM;
1061                         } else if (walking) {
1062                                 new_anim = player->local_animations[1];
1063                                 player->last_animation = WALK_ANIM;
1064                         } else if (controls.dig || controls.place) {
1065                                 new_anim = player->local_animations[2];
1066                                 player->last_animation = DIG_ANIM;
1067                         }
1068
1069                         // Apply animations if input detected and not attached
1070                         // or set idle animation
1071                         if ((new_anim.X + new_anim.Y) > 0 && !getParent()) {
1072                                 allow_update = true;
1073                                 m_animation_range = new_anim;
1074                                 m_animation_speed = new_speed;
1075                                 player->last_animation_speed = m_animation_speed;
1076                         } else {
1077                                 player->last_animation = NO_ANIM;
1078
1079                                 if (old_anim != NO_ANIM) {
1080                                         m_animation_range = player->local_animations[0];
1081                                         updateAnimation();
1082                                 }
1083                         }
1084
1085                         // Update local player animations
1086                         if ((player->last_animation != old_anim ||
1087                                         m_animation_speed != old_anim_speed) &&
1088                                         player->last_animation != NO_ANIM && allow_update)
1089                                 updateAnimation();
1090
1091                 }
1092         }
1093
1094         if (m_visuals_expired && m_smgr) {
1095                 m_visuals_expired = false;
1096
1097                 // Attachments, part 1: All attached objects must be unparented first,
1098                 // or Irrlicht causes a segmentation fault
1099                 for (u16 cao_id : m_attachment_child_ids) {
1100                         ClientActiveObject *obj = m_env->getActiveObject(cao_id);
1101                         if (obj) {
1102                                 scene::ISceneNode *child_node = obj->getSceneNode();
1103                                 // The node's parent is always an IDummyTraformationSceneNode,
1104                                 // so we need to reparent that one instead.
1105                                 if (child_node)
1106                                         child_node->getParent()->setParent(m_smgr->getRootSceneNode());
1107                         }
1108                 }
1109
1110                 removeFromScene(false);
1111                 addToScene(m_client->tsrc(), m_smgr);
1112
1113                 // Attachments, part 2: Now that the parent has been refreshed, put its attachments back
1114                 for (u16 cao_id : m_attachment_child_ids) {
1115                         ClientActiveObject *obj = m_env->getActiveObject(cao_id);
1116                         if (obj)
1117                                 obj->updateAttachments();
1118                 }
1119         }
1120
1121         // Make sure m_is_visible is always applied
1122         scene::ISceneNode *node = getSceneNode();
1123         if (node)
1124                 node->setVisible(m_is_visible);
1125
1126         if(getParent() != NULL) // Attachments should be glued to their parent by Irrlicht
1127         {
1128                 // Set these for later
1129                 m_position = getPosition();
1130                 m_velocity = v3f(0,0,0);
1131                 m_acceleration = v3f(0,0,0);
1132                 pos_translator.val_current = m_position;
1133                 pos_translator.val_target = m_position;
1134         } else {
1135                 rot_translator.translate(dtime);
1136                 v3f lastpos = pos_translator.val_current;
1137
1138                 if(m_prop.physical)
1139                 {
1140                         aabb3f box = m_prop.collisionbox;
1141                         box.MinEdge *= BS;
1142                         box.MaxEdge *= BS;
1143                         collisionMoveResult moveresult;
1144                         f32 pos_max_d = BS*0.125; // Distance per iteration
1145                         v3f p_pos = m_position;
1146                         v3f p_velocity = m_velocity;
1147                         moveresult = collisionMoveSimple(env,env->getGameDef(),
1148                                         pos_max_d, box, m_prop.stepheight, dtime,
1149                                         &p_pos, &p_velocity, m_acceleration,
1150                                         this, m_prop.collideWithObjects);
1151                         // Apply results
1152                         m_position = p_pos;
1153                         m_velocity = p_velocity;
1154
1155                         bool is_end_position = moveresult.collides;
1156                         pos_translator.update(m_position, is_end_position, dtime);
1157                 } else {
1158                         m_position += dtime * m_velocity + 0.5 * dtime * dtime * m_acceleration;
1159                         m_velocity += dtime * m_acceleration;
1160                         pos_translator.update(m_position, pos_translator.aim_is_end,
1161                                         pos_translator.anim_time);
1162                 }
1163                 pos_translator.translate(dtime);
1164                 updateNodePos();
1165
1166                 float moved = lastpos.getDistanceFrom(pos_translator.val_current);
1167                 m_step_distance_counter += moved;
1168                 if (m_step_distance_counter > 1.5f * BS) {
1169                         m_step_distance_counter = 0.0f;
1170                         if (!m_is_local_player && m_prop.makes_footstep_sound) {
1171                                 const NodeDefManager *ndef = m_client->ndef();
1172                                 v3s16 p = floatToInt(getPosition() +
1173                                         v3f(0.0f, (m_prop.collisionbox.MinEdge.Y - 0.5f) * BS, 0.0f), BS);
1174                                 MapNode n = m_env->getMap().getNode(p);
1175                                 SimpleSoundSpec spec = ndef->get(n).sound_footstep;
1176                                 // Reduce footstep gain, as non-local-player footsteps are
1177                                 // somehow louder.
1178                                 spec.gain *= 0.6f;
1179                                 m_client->sound()->playSoundAt(spec, false, getPosition());
1180                         }
1181                 }
1182         }
1183
1184         m_anim_timer += dtime;
1185         if(m_anim_timer >= m_anim_framelength)
1186         {
1187                 m_anim_timer -= m_anim_framelength;
1188                 m_anim_frame++;
1189                 if(m_anim_frame >= m_anim_num_frames)
1190                         m_anim_frame = 0;
1191         }
1192
1193         updateTexturePos();
1194
1195         if(m_reset_textures_timer >= 0)
1196         {
1197                 m_reset_textures_timer -= dtime;
1198                 if(m_reset_textures_timer <= 0) {
1199                         m_reset_textures_timer = -1;
1200                         updateTextures(m_previous_texture_modifier);
1201                 }
1202         }
1203
1204         if (!getParent() && node && fabs(m_prop.automatic_rotate) > 0.001f) {
1205                 // This is the child node's rotation. It is only used for automatic_rotate.
1206                 v3f local_rot = node->getRotation();
1207                 local_rot.Y = modulo360f(local_rot.Y - dtime * core::RADTODEG *
1208                                 m_prop.automatic_rotate);
1209                 node->setRotation(local_rot);
1210         }
1211
1212         if (!getParent() && m_prop.automatic_face_movement_dir &&
1213                         (fabs(m_velocity.Z) > 0.001f || fabs(m_velocity.X) > 0.001f)) {
1214                 float target_yaw = atan2(m_velocity.Z, m_velocity.X) * 180 / M_PI
1215                                 + m_prop.automatic_face_movement_dir_offset;
1216                 float max_rotation_per_sec =
1217                                 m_prop.automatic_face_movement_max_rotation_per_sec;
1218
1219                 if (max_rotation_per_sec > 0) {
1220                         wrappedApproachShortest(m_rotation.Y, target_yaw,
1221                                 dtime * max_rotation_per_sec, 360.f);
1222                 } else {
1223                         // Negative values of max_rotation_per_sec mean disabled.
1224                         m_rotation.Y = target_yaw;
1225                 }
1226
1227                 rot_translator.val_current = m_rotation;
1228                 updateNodePos();
1229         }
1230
1231         if (m_animated_meshnode) {
1232                 // Everything must be updated; the whole transform
1233                 // chain as well as the animated mesh node.
1234                 // Otherwise, bone attachments would be relative to
1235                 // a position that's one frame old.
1236                 if (m_matrixnode)
1237                         updatePositionRecursive(m_matrixnode);
1238                 m_animated_meshnode->updateAbsolutePosition();
1239                 m_animated_meshnode->animateJoints();
1240                 updateBonePosition();
1241         }
1242 }
1243
1244 void GenericCAO::updateTexturePos()
1245 {
1246         if(m_spritenode)
1247         {
1248                 scene::ICameraSceneNode* camera =
1249                                 m_spritenode->getSceneManager()->getActiveCamera();
1250                 if(!camera)
1251                         return;
1252                 v3f cam_to_entity = m_spritenode->getAbsolutePosition()
1253                                 - camera->getAbsolutePosition();
1254                 cam_to_entity.normalize();
1255
1256                 int row = m_tx_basepos.Y;
1257                 int col = m_tx_basepos.X;
1258
1259                 // Yawpitch goes rightwards
1260                 if (m_tx_select_horiz_by_yawpitch) {
1261                         if (cam_to_entity.Y > 0.75)
1262                                 col += 5;
1263                         else if (cam_to_entity.Y < -0.75)
1264                                 col += 4;
1265                         else {
1266                                 float mob_dir =
1267                                                 atan2(cam_to_entity.Z, cam_to_entity.X) / M_PI * 180.;
1268                                 float dir = mob_dir - m_rotation.Y;
1269                                 dir = wrapDegrees_180(dir);
1270                                 if (std::fabs(wrapDegrees_180(dir - 0)) <= 45.1f)
1271                                         col += 2;
1272                                 else if(std::fabs(wrapDegrees_180(dir - 90)) <= 45.1f)
1273                                         col += 3;
1274                                 else if(std::fabs(wrapDegrees_180(dir - 180)) <= 45.1f)
1275                                         col += 0;
1276                                 else if(std::fabs(wrapDegrees_180(dir + 90)) <= 45.1f)
1277                                         col += 1;
1278                                 else
1279                                         col += 4;
1280                         }
1281                 }
1282
1283                 // Animation goes downwards
1284                 row += m_anim_frame;
1285
1286                 float txs = m_tx_size.X;
1287                 float tys = m_tx_size.Y;
1288                 setBillboardTextureMatrix(m_spritenode, txs, tys, col, row);
1289         }
1290
1291         else if (m_meshnode) {
1292                 if (m_prop.visual == "upright_sprite") {
1293                         int row = m_tx_basepos.Y;
1294                         int col = m_tx_basepos.X;
1295
1296                         // Animation goes downwards
1297                         row += m_anim_frame;
1298
1299                         const auto &tx = m_tx_size;
1300                         v2f t[4] = { // cf. vertices in GenericCAO::addToScene()
1301                                 tx * v2f(col+1, row+1),
1302                                 tx * v2f(col, row+1),
1303                                 tx * v2f(col, row),
1304                                 tx * v2f(col+1, row),
1305                         };
1306                         auto mesh = m_meshnode->getMesh();
1307                         setMeshBufferTextureCoords(mesh->getMeshBuffer(0), t, 4);
1308                         setMeshBufferTextureCoords(mesh->getMeshBuffer(1), t, 4);
1309                 }
1310         }
1311 }
1312
1313 // Do not pass by reference, see header.
1314 void GenericCAO::updateTextures(std::string mod)
1315 {
1316         ITextureSource *tsrc = m_client->tsrc();
1317
1318         bool use_trilinear_filter = g_settings->getBool("trilinear_filter");
1319         bool use_bilinear_filter = g_settings->getBool("bilinear_filter");
1320         bool use_anisotropic_filter = g_settings->getBool("anisotropic_filter");
1321
1322         m_previous_texture_modifier = m_current_texture_modifier;
1323         m_current_texture_modifier = mod;
1324         m_glow = m_prop.glow;
1325
1326         if (m_spritenode) {
1327                 if (m_prop.visual == "sprite") {
1328                         std::string texturestring = "no_texture.png";
1329                         if (!m_prop.textures.empty())
1330                                 texturestring = m_prop.textures[0];
1331                         texturestring += mod;
1332                         m_spritenode->getMaterial(0).MaterialType = m_material_type;
1333                         m_spritenode->getMaterial(0).MaterialTypeParam = 0.5f;
1334                         m_spritenode->setMaterialTexture(0,
1335                                         tsrc->getTextureForMesh(texturestring));
1336
1337                         // This allows setting per-material colors. However, until a real lighting
1338                         // system is added, the code below will have no effect. Once MineTest
1339                         // has directional lighting, it should work automatically.
1340                         if (!m_prop.colors.empty()) {
1341                                 m_spritenode->getMaterial(0).AmbientColor = m_prop.colors[0];
1342                                 m_spritenode->getMaterial(0).DiffuseColor = m_prop.colors[0];
1343                                 m_spritenode->getMaterial(0).SpecularColor = m_prop.colors[0];
1344                         }
1345
1346                         m_spritenode->getMaterial(0).setFlag(video::EMF_TRILINEAR_FILTER, use_trilinear_filter);
1347                         m_spritenode->getMaterial(0).setFlag(video::EMF_BILINEAR_FILTER, use_bilinear_filter);
1348                         m_spritenode->getMaterial(0).setFlag(video::EMF_ANISOTROPIC_FILTER, use_anisotropic_filter);
1349                 }
1350         }
1351
1352         else if (m_animated_meshnode) {
1353                 if (m_prop.visual == "mesh") {
1354                         for (u32 i = 0; i < m_prop.textures.size() &&
1355                                         i < m_animated_meshnode->getMaterialCount(); ++i) {
1356                                 std::string texturestring = m_prop.textures[i];
1357                                 if (texturestring.empty())
1358                                         continue; // Empty texture string means don't modify that material
1359                                 texturestring += mod;
1360                                 video::ITexture* texture = tsrc->getTextureForMesh(texturestring);
1361                                 if (!texture) {
1362                                         errorstream<<"GenericCAO::updateTextures(): Could not load texture "<<texturestring<<std::endl;
1363                                         continue;
1364                                 }
1365
1366                                 // Set material flags and texture
1367                                 video::SMaterial& material = m_animated_meshnode->getMaterial(i);
1368                                 material.MaterialType = m_material_type;
1369                                 material.MaterialTypeParam = 0.5f;
1370                                 material.TextureLayer[0].Texture = texture;
1371                                 material.setFlag(video::EMF_LIGHTING, true);
1372                                 material.setFlag(video::EMF_BILINEAR_FILTER, false);
1373                                 material.setFlag(video::EMF_BACK_FACE_CULLING, m_prop.backface_culling);
1374
1375                                 // don't filter low-res textures, makes them look blurry
1376                                 // player models have a res of 64
1377                                 const core::dimension2d<u32> &size = texture->getOriginalSize();
1378                                 const u32 res = std::min(size.Height, size.Width);
1379                                 use_trilinear_filter &= res > 64;
1380                                 use_bilinear_filter &= res > 64;
1381
1382                                 m_animated_meshnode->getMaterial(i)
1383                                                 .setFlag(video::EMF_TRILINEAR_FILTER, use_trilinear_filter);
1384                                 m_animated_meshnode->getMaterial(i)
1385                                                 .setFlag(video::EMF_BILINEAR_FILTER, use_bilinear_filter);
1386                                 m_animated_meshnode->getMaterial(i)
1387                                                 .setFlag(video::EMF_ANISOTROPIC_FILTER, use_anisotropic_filter);
1388                         }
1389                         for (u32 i = 0; i < m_prop.colors.size() &&
1390                         i < m_animated_meshnode->getMaterialCount(); ++i)
1391                         {
1392                                 // This allows setting per-material colors. However, until a real lighting
1393                                 // system is added, the code below will have no effect. Once MineTest
1394                                 // has directional lighting, it should work automatically.
1395                                 m_animated_meshnode->getMaterial(i).AmbientColor = m_prop.colors[i];
1396                                 m_animated_meshnode->getMaterial(i).DiffuseColor = m_prop.colors[i];
1397                                 m_animated_meshnode->getMaterial(i).SpecularColor = m_prop.colors[i];
1398                         }
1399                 }
1400         }
1401
1402         else if (m_meshnode) {
1403                 if(m_prop.visual == "cube")
1404                 {
1405                         for (u32 i = 0; i < 6; ++i)
1406                         {
1407                                 std::string texturestring = "no_texture.png";
1408                                 if(m_prop.textures.size() > i)
1409                                         texturestring = m_prop.textures[i];
1410                                 texturestring += mod;
1411
1412
1413                                 // Set material flags and texture
1414                                 video::SMaterial& material = m_meshnode->getMaterial(i);
1415                                 material.MaterialType = m_material_type;
1416                                 material.MaterialTypeParam = 0.5f;
1417                                 material.setFlag(video::EMF_LIGHTING, false);
1418                                 material.setFlag(video::EMF_BILINEAR_FILTER, false);
1419                                 material.setTexture(0,
1420                                                 tsrc->getTextureForMesh(texturestring));
1421                                 material.getTextureMatrix(0).makeIdentity();
1422
1423                                 // This allows setting per-material colors. However, until a real lighting
1424                                 // system is added, the code below will have no effect. Once MineTest
1425                                 // has directional lighting, it should work automatically.
1426                                 if(m_prop.colors.size() > i)
1427                                 {
1428                                         m_meshnode->getMaterial(i).AmbientColor = m_prop.colors[i];
1429                                         m_meshnode->getMaterial(i).DiffuseColor = m_prop.colors[i];
1430                                         m_meshnode->getMaterial(i).SpecularColor = m_prop.colors[i];
1431                                 }
1432
1433                                 m_meshnode->getMaterial(i).setFlag(video::EMF_TRILINEAR_FILTER, use_trilinear_filter);
1434                                 m_meshnode->getMaterial(i).setFlag(video::EMF_BILINEAR_FILTER, use_bilinear_filter);
1435                                 m_meshnode->getMaterial(i).setFlag(video::EMF_ANISOTROPIC_FILTER, use_anisotropic_filter);
1436                         }
1437                 } else if (m_prop.visual == "upright_sprite") {
1438                         scene::IMesh *mesh = m_meshnode->getMesh();
1439                         {
1440                                 std::string tname = "no_texture.png";
1441                                 if (!m_prop.textures.empty())
1442                                         tname = m_prop.textures[0];
1443                                 tname += mod;
1444                                 scene::IMeshBuffer *buf = mesh->getMeshBuffer(0);
1445                                 buf->getMaterial().setTexture(0,
1446                                                 tsrc->getTextureForMesh(tname));
1447
1448                                 // This allows setting per-material colors. However, until a real lighting
1449                                 // system is added, the code below will have no effect. Once MineTest
1450                                 // has directional lighting, it should work automatically.
1451                                 if(!m_prop.colors.empty()) {
1452                                         buf->getMaterial().AmbientColor = m_prop.colors[0];
1453                                         buf->getMaterial().DiffuseColor = m_prop.colors[0];
1454                                         buf->getMaterial().SpecularColor = m_prop.colors[0];
1455                                 }
1456
1457                                 buf->getMaterial().setFlag(video::EMF_TRILINEAR_FILTER, use_trilinear_filter);
1458                                 buf->getMaterial().setFlag(video::EMF_BILINEAR_FILTER, use_bilinear_filter);
1459                                 buf->getMaterial().setFlag(video::EMF_ANISOTROPIC_FILTER, use_anisotropic_filter);
1460                         }
1461                         {
1462                                 std::string tname = "no_texture.png";
1463                                 if (m_prop.textures.size() >= 2)
1464                                         tname = m_prop.textures[1];
1465                                 else if (!m_prop.textures.empty())
1466                                         tname = m_prop.textures[0];
1467                                 tname += mod;
1468                                 scene::IMeshBuffer *buf = mesh->getMeshBuffer(1);
1469                                 buf->getMaterial().setTexture(0,
1470                                                 tsrc->getTextureForMesh(tname));
1471
1472                                 // This allows setting per-material colors. However, until a real lighting
1473                                 // system is added, the code below will have no effect. Once MineTest
1474                                 // has directional lighting, it should work automatically.
1475                                 if (m_prop.colors.size() >= 2) {
1476                                         buf->getMaterial().AmbientColor = m_prop.colors[1];
1477                                         buf->getMaterial().DiffuseColor = m_prop.colors[1];
1478                                         buf->getMaterial().SpecularColor = m_prop.colors[1];
1479                                 } else if (!m_prop.colors.empty()) {
1480                                         buf->getMaterial().AmbientColor = m_prop.colors[0];
1481                                         buf->getMaterial().DiffuseColor = m_prop.colors[0];
1482                                         buf->getMaterial().SpecularColor = m_prop.colors[0];
1483                                 }
1484
1485                                 buf->getMaterial().setFlag(video::EMF_TRILINEAR_FILTER, use_trilinear_filter);
1486                                 buf->getMaterial().setFlag(video::EMF_BILINEAR_FILTER, use_bilinear_filter);
1487                                 buf->getMaterial().setFlag(video::EMF_ANISOTROPIC_FILTER, use_anisotropic_filter);
1488                         }
1489                         // Set mesh color (only if lighting is disabled)
1490                         if (!m_prop.colors.empty() && m_glow < 0)
1491                                 setMeshColor(mesh, m_prop.colors[0]);
1492                 }
1493         }
1494         // Prevent showing the player after changing texture
1495         if (m_is_local_player)
1496                 updateMeshCulling();
1497 }
1498
1499 void GenericCAO::updateAnimation()
1500 {
1501         if (!m_animated_meshnode)
1502                 return;
1503
1504         if (m_animated_meshnode->getStartFrame() != m_animation_range.X ||
1505                 m_animated_meshnode->getEndFrame() != m_animation_range.Y)
1506                         m_animated_meshnode->setFrameLoop(m_animation_range.X, m_animation_range.Y);
1507         if (m_animated_meshnode->getAnimationSpeed() != m_animation_speed)
1508                 m_animated_meshnode->setAnimationSpeed(m_animation_speed);
1509         m_animated_meshnode->setTransitionTime(m_animation_blend);
1510         if (m_animated_meshnode->getLoopMode() != m_animation_loop)
1511                 m_animated_meshnode->setLoopMode(m_animation_loop);
1512 }
1513
1514 void GenericCAO::updateAnimationSpeed()
1515 {
1516         if (!m_animated_meshnode)
1517                 return;
1518
1519         m_animated_meshnode->setAnimationSpeed(m_animation_speed);
1520 }
1521
1522 void GenericCAO::updateBonePosition()
1523 {
1524         if (m_bone_position.empty() || !m_animated_meshnode)
1525                 return;
1526
1527         m_animated_meshnode->setJointMode(scene::EJUOR_CONTROL); // To write positions to the mesh on render
1528         for (auto &it : m_bone_position) {
1529                 std::string bone_name = it.first;
1530                 scene::IBoneSceneNode* bone = m_animated_meshnode->getJointNode(bone_name.c_str());
1531                 if (bone) {
1532                         bone->setPosition(it.second.X);
1533                         bone->setRotation(it.second.Y);
1534                 }
1535         }
1536
1537         // search through bones to find mistakenly rotated bones due to bug in Irrlicht
1538         for (u32 i = 0; i < m_animated_meshnode->getJointCount(); ++i) {
1539                 scene::IBoneSceneNode *bone = m_animated_meshnode->getJointNode(i);
1540                 if (!bone)
1541                         continue;
1542
1543                 //If bone is manually positioned there is no need to perform the bug check
1544                 bool skip = false;
1545                 for (auto &it : m_bone_position) {
1546                         if (it.first == bone->getName()) {
1547                                 skip = true;
1548                                 break;
1549                         }
1550                 }
1551                 if (skip)
1552                         continue;
1553
1554                 // Workaround for Irrlicht bug
1555                 // We check each bone to see if it has been rotated ~180deg from its expected position due to a bug in Irricht
1556                 // when using EJUOR_CONTROL joint control. If the bug is detected we update the bone to the proper position
1557                 // and update the bones transformation.
1558                 v3f bone_rot = bone->getRelativeTransformation().getRotationDegrees();
1559                 float offset = fabsf(bone_rot.X - bone->getRotation().X);
1560                 if (offset > 179.9f && offset < 180.1f) {
1561                         bone->setRotation(bone_rot);
1562                         bone->updateAbsolutePosition();
1563                 }
1564         }
1565         // The following is needed for set_bone_pos to propagate to
1566         // attached objects correctly.
1567         // Irrlicht ought to do this, but doesn't when using EJUOR_CONTROL.
1568         for (u32 i = 0; i < m_animated_meshnode->getJointCount(); ++i) {
1569                 auto bone = m_animated_meshnode->getJointNode(i);
1570                 // Look for the root bone.
1571                 if (bone && bone->getParent() == m_animated_meshnode) {
1572                         // Update entire skeleton.
1573                         bone->updateAbsolutePositionOfAllChildren();
1574                         break;
1575                 }
1576         }
1577 }
1578
1579 void GenericCAO::updateAttachments()
1580 {
1581         ClientActiveObject *parent = getParent();
1582
1583         m_attached_to_local = parent && parent->isLocalPlayer();
1584
1585         /*
1586         Following cases exist:
1587                 m_attachment_parent_id == 0 && !parent
1588                         This object is not attached
1589                 m_attachment_parent_id != 0 && parent
1590                         This object is attached
1591                 m_attachment_parent_id != 0 && !parent
1592                         This object will be attached as soon the parent is known
1593                 m_attachment_parent_id == 0 && parent
1594                         Impossible case
1595         */
1596
1597         if (!parent) { // Detach or don't attach
1598                 if (m_matrixnode) {
1599                         v3s16 camera_offset = m_env->getCameraOffset();
1600                         v3f old_pos = getPosition();
1601
1602                         m_matrixnode->setParent(m_smgr->getRootSceneNode());
1603                         getPosRotMatrix().setTranslation(old_pos - intToFloat(camera_offset, BS));
1604                         m_matrixnode->updateAbsolutePosition();
1605                 }
1606         }
1607         else // Attach
1608         {
1609                 parent->updateAttachments();
1610                 scene::ISceneNode *parent_node = parent->getSceneNode();
1611                 scene::IAnimatedMeshSceneNode *parent_animated_mesh_node =
1612                                 parent->getAnimatedMeshSceneNode();
1613                 if (parent_animated_mesh_node && !m_attachment_bone.empty()) {
1614                         parent_node = parent_animated_mesh_node->getJointNode(m_attachment_bone.c_str());
1615                 }
1616
1617                 if (m_matrixnode && parent_node) {
1618                         m_matrixnode->setParent(parent_node);
1619                         parent_node->updateAbsolutePosition();
1620                         getPosRotMatrix().setTranslation(m_attachment_position);
1621                         //setPitchYawRoll(getPosRotMatrix(), m_attachment_rotation);
1622                         // use Irrlicht eulers instead
1623                         getPosRotMatrix().setRotationDegrees(m_attachment_rotation);
1624                         m_matrixnode->updateAbsolutePosition();
1625                 }
1626         }
1627 }
1628
1629 bool GenericCAO::visualExpiryRequired(const ObjectProperties &new_) const
1630 {
1631         const ObjectProperties &old = m_prop;
1632         /* Visuals do not need to be expired for:
1633          * - nametag props: handled by updateNametag()
1634          * - textures:      handled by updateTextures()
1635          * - sprite props:  handled by updateTexturePos()
1636          * - glow:          handled by updateLight()
1637          * - any other properties that do not change appearance
1638          */
1639
1640         bool uses_legacy_texture = new_.wield_item.empty() &&
1641                 (new_.visual == "wielditem" || new_.visual == "item");
1642         // Ordered to compare primitive types before std::vectors
1643         return old.backface_culling != new_.backface_culling ||
1644                 old.is_visible != new_.is_visible ||
1645                 old.mesh != new_.mesh ||
1646                 old.shaded != new_.shaded ||
1647                 old.use_texture_alpha != new_.use_texture_alpha ||
1648                 old.visual != new_.visual ||
1649                 old.visual_size != new_.visual_size ||
1650                 old.wield_item != new_.wield_item ||
1651                 old.colors != new_.colors ||
1652                 (uses_legacy_texture && old.textures != new_.textures);
1653 }
1654
1655 void GenericCAO::processMessage(const std::string &data)
1656 {
1657         //infostream<<"GenericCAO: Got message"<<std::endl;
1658         std::istringstream is(data, std::ios::binary);
1659         // command
1660         u8 cmd = readU8(is);
1661         if (cmd == AO_CMD_SET_PROPERTIES) {
1662                 ObjectProperties newprops;
1663                 newprops.show_on_minimap = m_is_player; // default
1664
1665                 newprops.deSerialize(is);
1666
1667                 // Check what exactly changed
1668                 bool expire_visuals = visualExpiryRequired(newprops);
1669                 bool textures_changed = m_prop.textures != newprops.textures;
1670
1671                 // Apply changes
1672                 m_prop = std::move(newprops);
1673
1674                 m_selection_box = m_prop.selectionbox;
1675                 m_selection_box.MinEdge *= BS;
1676                 m_selection_box.MaxEdge *= BS;
1677
1678                 m_tx_size.X = 1.0f / m_prop.spritediv.X;
1679                 m_tx_size.Y = 1.0f / m_prop.spritediv.Y;
1680
1681                 if(!m_initial_tx_basepos_set){
1682                         m_initial_tx_basepos_set = true;
1683                         m_tx_basepos = m_prop.initial_sprite_basepos;
1684                 }
1685                 if (m_is_local_player) {
1686                         LocalPlayer *player = m_env->getLocalPlayer();
1687                         player->makes_footstep_sound = m_prop.makes_footstep_sound;
1688                         aabb3f collision_box = m_prop.collisionbox;
1689                         collision_box.MinEdge *= BS;
1690                         collision_box.MaxEdge *= BS;
1691                         player->setCollisionbox(collision_box);
1692                         player->setEyeHeight(m_prop.eye_height);
1693                         player->setZoomFOV(m_prop.zoom_fov);
1694                 }
1695
1696                 if ((m_is_player && !m_is_local_player) && m_prop.nametag.empty())
1697                         m_prop.nametag = m_name;
1698                 if (m_is_local_player)
1699                         m_prop.show_on_minimap = false;
1700
1701                 if (expire_visuals) {
1702                         expireVisuals();
1703                 } else {
1704                         infostream << "GenericCAO: properties updated but expiring visuals"
1705                                 << " not necessary" << std::endl;
1706                         if (textures_changed) {
1707                                 // don't update while punch texture modifier is active
1708                                 if (m_reset_textures_timer < 0)
1709                                         updateTextures(m_current_texture_modifier);
1710                         }
1711                         updateNametag();
1712                         updateMarker();
1713                 }
1714         } else if (cmd == AO_CMD_UPDATE_POSITION) {
1715                 // Not sent by the server if this object is an attachment.
1716                 // We might however get here if the server notices the object being detached before the client.
1717                 m_position = readV3F32(is);
1718                 m_velocity = readV3F32(is);
1719                 m_acceleration = readV3F32(is);
1720                 m_rotation = readV3F32(is);
1721
1722                 m_rotation = wrapDegrees_0_360_v3f(m_rotation);
1723                 bool do_interpolate = readU8(is);
1724                 bool is_end_position = readU8(is);
1725                 float update_interval = readF32(is);
1726
1727                 // Place us a bit higher if we're physical, to not sink into
1728                 // the ground due to sucky collision detection...
1729                 if(m_prop.physical)
1730                         m_position += v3f(0,0.002,0);
1731
1732                 if(getParent() != NULL) // Just in case
1733                         return;
1734
1735                 if(do_interpolate)
1736                 {
1737                         if(!m_prop.physical)
1738                                 pos_translator.update(m_position, is_end_position, update_interval);
1739                 } else {
1740                         pos_translator.init(m_position);
1741                 }
1742                 rot_translator.update(m_rotation, false, update_interval);
1743                 updateNodePos();
1744         } else if (cmd == AO_CMD_SET_TEXTURE_MOD) {
1745                 std::string mod = deSerializeString16(is);
1746
1747                 // immediately reset a engine issued texture modifier if a mod sends a different one
1748                 if (m_reset_textures_timer > 0) {
1749                         m_reset_textures_timer = -1;
1750                         updateTextures(m_previous_texture_modifier);
1751                 }
1752                 updateTextures(mod);
1753         } else if (cmd == AO_CMD_SET_SPRITE) {
1754                 v2s16 p = readV2S16(is);
1755                 int num_frames = readU16(is);
1756                 float framelength = readF32(is);
1757                 bool select_horiz_by_yawpitch = readU8(is);
1758
1759                 m_tx_basepos = p;
1760                 m_anim_num_frames = num_frames;
1761                 m_anim_frame = 0;
1762                 m_anim_framelength = framelength;
1763                 m_tx_select_horiz_by_yawpitch = select_horiz_by_yawpitch;
1764
1765                 updateTexturePos();
1766         } else if (cmd == AO_CMD_SET_PHYSICS_OVERRIDE) {
1767                 float override_speed = readF32(is);
1768                 float override_jump = readF32(is);
1769                 float override_gravity = readF32(is);
1770                 // these are sent inverted so we get true when the server sends nothing
1771                 bool sneak = !readU8(is);
1772                 bool sneak_glitch = !readU8(is);
1773                 bool new_move = !readU8(is);
1774
1775
1776                 if(m_is_local_player)
1777                 {
1778                         LocalPlayer *player = m_env->getLocalPlayer();
1779                         player->physics_override_speed = override_speed;
1780                         player->physics_override_jump = override_jump;
1781                         player->physics_override_gravity = override_gravity;
1782                         player->physics_override_sneak = sneak;
1783                         player->physics_override_sneak_glitch = sneak_glitch;
1784                         player->physics_override_new_move = new_move;
1785                 }
1786         } else if (cmd == AO_CMD_SET_ANIMATION) {
1787                 // TODO: change frames send as v2s32 value
1788                 v2f range = readV2F32(is);
1789                 if (!m_is_local_player) {
1790                         m_animation_range = v2s32((s32)range.X, (s32)range.Y);
1791                         m_animation_speed = readF32(is);
1792                         m_animation_blend = readF32(is);
1793                         // these are sent inverted so we get true when the server sends nothing
1794                         m_animation_loop = !readU8(is);
1795                         updateAnimation();
1796                 } else {
1797                         LocalPlayer *player = m_env->getLocalPlayer();
1798                         if(player->last_animation == NO_ANIM)
1799                         {
1800                                 m_animation_range = v2s32((s32)range.X, (s32)range.Y);
1801                                 m_animation_speed = readF32(is);
1802                                 m_animation_blend = readF32(is);
1803                                 // these are sent inverted so we get true when the server sends nothing
1804                                 m_animation_loop = !readU8(is);
1805                         }
1806                         // update animation only if local animations present
1807                         // and received animation is unknown (except idle animation)
1808                         bool is_known = false;
1809                         for (int i = 1;i<4;i++)
1810                         {
1811                                 if(m_animation_range.Y == player->local_animations[i].Y)
1812                                         is_known = true;
1813                         }
1814                         if(!is_known ||
1815                                         (player->local_animations[1].Y + player->local_animations[2].Y < 1))
1816                         {
1817                                         updateAnimation();
1818                         }
1819                 }
1820         } else if (cmd == AO_CMD_SET_ANIMATION_SPEED) {
1821                 m_animation_speed = readF32(is);
1822                 updateAnimationSpeed();
1823         } else if (cmd == AO_CMD_SET_BONE_POSITION) {
1824                 std::string bone = deSerializeString16(is);
1825                 v3f position = readV3F32(is);
1826                 v3f rotation = readV3F32(is);
1827                 m_bone_position[bone] = core::vector2d<v3f>(position, rotation);
1828
1829                 // updateBonePosition(); now called every step
1830         } else if (cmd == AO_CMD_ATTACH_TO) {
1831                 u16 parent_id = readS16(is);
1832                 std::string bone = deSerializeString16(is);
1833                 v3f position = readV3F32(is);
1834                 v3f rotation = readV3F32(is);
1835                 bool force_visible = readU8(is); // Returns false for EOF
1836
1837                 setAttachment(parent_id, bone, position, rotation, force_visible);
1838         } else if (cmd == AO_CMD_PUNCHED) {
1839                 u16 result_hp = readU16(is);
1840
1841                 // Use this instead of the send damage to not interfere with prediction
1842                 s32 damage = (s32)m_hp - (s32)result_hp;
1843
1844                 m_hp = result_hp;
1845
1846                 if (m_is_local_player)
1847                         m_env->getLocalPlayer()->hp = m_hp;
1848
1849                 if (damage > 0)
1850                 {
1851                         if (m_hp == 0)
1852                         {
1853                                 // TODO: Execute defined fast response
1854                                 // As there is no definition, make a smoke puff
1855                                 ClientSimpleObject *simple = createSmokePuff(
1856                                                 m_smgr, m_env, m_position,
1857                                                 v2f(m_prop.visual_size.X, m_prop.visual_size.Y) * BS);
1858                                 m_env->addSimpleObject(simple);
1859                         } else if (m_reset_textures_timer < 0 && !m_prop.damage_texture_modifier.empty()) {
1860                                 m_reset_textures_timer = 0.05;
1861                                 if(damage >= 2)
1862                                         m_reset_textures_timer += 0.05 * damage;
1863                                 updateTextures(m_current_texture_modifier + m_prop.damage_texture_modifier);
1864                         }
1865                 }
1866
1867                 if (m_hp == 0) {
1868                         // Same as 'Server::DiePlayer'
1869                         clearParentAttachment();
1870                         // Same as 'ObjectRef::l_remove'
1871                         if (!m_is_player)
1872                                 clearChildAttachments();
1873                 }
1874         } else if (cmd == AO_CMD_UPDATE_ARMOR_GROUPS) {
1875                 m_armor_groups.clear();
1876                 int armor_groups_size = readU16(is);
1877                 for(int i=0; i<armor_groups_size; i++)
1878                 {
1879                         std::string name = deSerializeString16(is);
1880                         int rating = readS16(is);
1881                         m_armor_groups[name] = rating;
1882                 }
1883         } else if (cmd == AO_CMD_SPAWN_INFANT) {
1884                 u16 child_id = readU16(is);
1885                 u8 type = readU8(is); // maybe this will be useful later
1886                 (void)type;
1887
1888                 addAttachmentChild(child_id);
1889         } else if (cmd == AO_CMD_OBSOLETE1) {
1890                 // Don't do anything and also don't log a warning
1891         } else {
1892                 warningstream << FUNCTION_NAME
1893                         << ": unknown command or outdated client \""
1894                         << +cmd << "\"" << std::endl;
1895         }
1896 }
1897
1898 /* \pre punchitem != NULL
1899  */
1900 bool GenericCAO::directReportPunch(v3f dir, const ItemStack *punchitem,
1901                 float time_from_last_punch)
1902 {
1903         assert(punchitem);      // pre-condition
1904         const ToolCapabilities *toolcap =
1905                         &punchitem->getToolCapabilities(m_client->idef());
1906         PunchDamageResult result = getPunchDamage(
1907                         m_armor_groups,
1908                         toolcap,
1909                         punchitem,
1910                         time_from_last_punch,
1911                         punchitem->wear);
1912
1913         if(result.did_punch && result.damage != 0)
1914         {
1915                 if(result.damage < m_hp)
1916                 {
1917                         m_hp -= result.damage;
1918                 } else {
1919                         m_hp = 0;
1920                         // TODO: Execute defined fast response
1921                         // As there is no definition, make a smoke puff
1922                         ClientSimpleObject *simple = createSmokePuff(
1923                                         m_smgr, m_env, m_position,
1924                                         v2f(m_prop.visual_size.X, m_prop.visual_size.Y) * BS);
1925                         m_env->addSimpleObject(simple);
1926                 }
1927                 if (m_reset_textures_timer < 0 && !m_prop.damage_texture_modifier.empty()) {
1928                         m_reset_textures_timer = 0.05;
1929                         if (result.damage >= 2)
1930                                 m_reset_textures_timer += 0.05 * result.damage;
1931                         updateTextures(m_current_texture_modifier + m_prop.damage_texture_modifier);
1932                 }
1933         }
1934
1935         return false;
1936 }
1937
1938 std::string GenericCAO::debugInfoText()
1939 {
1940         std::ostringstream os(std::ios::binary);
1941         os<<"GenericCAO hp="<<m_hp<<"\n";
1942         os<<"armor={";
1943         for(ItemGroupList::const_iterator i = m_armor_groups.begin();
1944                         i != m_armor_groups.end(); ++i)
1945         {
1946                 os<<i->first<<"="<<i->second<<", ";
1947         }
1948         os<<"}";
1949         return os.str();
1950 }
1951
1952 void GenericCAO::updateMeshCulling()
1953 {
1954         if (!m_is_local_player)
1955                 return;
1956
1957         const bool hidden = m_client->getCamera()->getCameraMode() == CAMERA_MODE_FIRST;
1958
1959         if (m_meshnode && m_prop.visual == "upright_sprite") {
1960                 u32 buffers = m_meshnode->getMesh()->getMeshBufferCount();
1961                 for (u32 i = 0; i < buffers; i++) {
1962                         video::SMaterial &mat = m_meshnode->getMesh()->getMeshBuffer(i)->getMaterial();
1963                         // upright sprite has no backface culling
1964                         mat.setFlag(video::EMF_FRONT_FACE_CULLING, hidden);
1965                 }
1966                 return;
1967         }
1968
1969         scene::ISceneNode *node = getSceneNode();
1970         if (!node)
1971                 return;
1972
1973         if (hidden) {
1974                 // Hide the mesh by culling both front and
1975                 // back faces. Serious hackyness but it works for our
1976                 // purposes. This also preserves the skeletal armature.
1977                 node->setMaterialFlag(video::EMF_BACK_FACE_CULLING,
1978                         true);
1979                 node->setMaterialFlag(video::EMF_FRONT_FACE_CULLING,
1980                         true);
1981         } else {
1982                 // Restore mesh visibility.
1983                 node->setMaterialFlag(video::EMF_BACK_FACE_CULLING,
1984                         m_prop.backface_culling);
1985                 node->setMaterialFlag(video::EMF_FRONT_FACE_CULLING,
1986                         false);
1987         }
1988 }
1989
1990 // Prototype
1991 GenericCAO proto_GenericCAO(NULL, NULL);