]> git.lizzy.rs Git - dragonfireclient.git/blob - src/client/content_cao.cpp
Fix unwanted detaching when damage = 0
[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 <ITextSceneNode.h>
24 #include <IMeshManipulator.h>
25 #include <IAnimatedMeshSceneNode.h>
26 #include "client/client.h"
27 #include "client/renderingengine.h"
28 #include "client/sound.h"
29 #include "client/tile.h"
30 #include "util/basic_macros.h"
31 #include "util/numeric.h" // For IntervalLimiter & setPitchYawRoll
32 #include "util/serialize.h"
33 #include "camera.h" // CameraModes
34 #include "collision.h"
35 #include "content_cso.h"
36 #include "environment.h"
37 #include "itemdef.h"
38 #include "localplayer.h"
39 #include "map.h"
40 #include "mesh.h"
41 #include "nodedef.h"
42 #include "serialization.h" // For decompressZlib
43 #include "settings.h"
44 #include "sound.h"
45 #include "tool.h"
46 #include "wieldmesh.h"
47 #include <algorithm>
48 #include <cmath>
49
50 class Settings;
51 struct ToolCapabilities;
52
53 std::unordered_map<u16, ClientActiveObject::Factory> ClientActiveObject::m_types;
54
55 template<typename T>
56 void SmoothTranslator<T>::init(T current)
57 {
58         val_old = current;
59         val_current = current;
60         val_target = current;
61         anim_time = 0;
62         anim_time_counter = 0;
63         aim_is_end = true;
64 }
65
66 template<typename T>
67 void SmoothTranslator<T>::update(T new_target, bool is_end_position, float update_interval)
68 {
69         aim_is_end = is_end_position;
70         val_old = val_current;
71         val_target = new_target;
72         if (update_interval > 0) {
73                 anim_time = update_interval;
74         } else {
75                 if (anim_time < 0.001 || anim_time > 1.0)
76                         anim_time = anim_time_counter;
77                 else
78                         anim_time = anim_time * 0.9 + anim_time_counter * 0.1;
79         }
80         anim_time_counter = 0;
81 }
82
83 template<typename T>
84 void SmoothTranslator<T>::translate(f32 dtime)
85 {
86         anim_time_counter = anim_time_counter + dtime;
87         T val_diff = val_target - val_old;
88         f32 moveratio = 1.0;
89         if (anim_time > 0.001)
90                 moveratio = anim_time_counter / anim_time;
91         f32 move_end = aim_is_end ? 1.0 : 1.5;
92
93         // Move a bit less than should, to avoid oscillation
94         moveratio = std::min(moveratio * 0.8f, move_end);
95         val_current = val_old + val_diff * moveratio;
96 }
97
98 void SmoothTranslatorWrapped::translate(f32 dtime)
99 {
100         anim_time_counter = anim_time_counter + dtime;
101         f32 val_diff = std::abs(val_target - val_old);
102         if (val_diff > 180.f)
103                 val_diff = 360.f - val_diff;
104
105         f32 moveratio = 1.0;
106         if (anim_time > 0.001)
107                 moveratio = anim_time_counter / anim_time;
108         f32 move_end = aim_is_end ? 1.0 : 1.5;
109
110         // Move a bit less than should, to avoid oscillation
111         moveratio = std::min(moveratio * 0.8f, move_end);
112         wrappedApproachShortest(val_current, val_target,
113                 val_diff * moveratio, 360.f);
114 }
115
116 void SmoothTranslatorWrappedv3f::translate(f32 dtime)
117 {
118         anim_time_counter = anim_time_counter + dtime;
119
120         v3f val_diff_v3f;
121         val_diff_v3f.X = std::abs(val_target.X - val_old.X);
122         val_diff_v3f.Y = std::abs(val_target.Y - val_old.Y);
123         val_diff_v3f.Z = std::abs(val_target.Z - val_old.Z);
124
125         if (val_diff_v3f.X > 180.f)
126                 val_diff_v3f.X = 360.f - val_diff_v3f.X;
127
128         if (val_diff_v3f.Y > 180.f)
129                 val_diff_v3f.Y = 360.f - val_diff_v3f.Y;
130
131         if (val_diff_v3f.Z > 180.f)
132                 val_diff_v3f.Z = 360.f - val_diff_v3f.Z;
133
134         f32 moveratio = 1.0;
135         if (anim_time > 0.001)
136                 moveratio = anim_time_counter / anim_time;
137         f32 move_end = aim_is_end ? 1.0 : 1.5;
138
139         // Move a bit less than should, to avoid oscillation
140         moveratio = std::min(moveratio * 0.8f, move_end);
141         wrappedApproachShortest(val_current.X, val_target.X,
142                 val_diff_v3f.X * moveratio, 360.f);
143
144         wrappedApproachShortest(val_current.Y, val_target.Y,
145                 val_diff_v3f.Y * moveratio, 360.f);
146
147         wrappedApproachShortest(val_current.Z, val_target.Z,
148                 val_diff_v3f.Z * moveratio, 360.f);
149 }
150
151 /*
152         Other stuff
153 */
154
155 static void setBillboardTextureMatrix(scene::IBillboardSceneNode *bill,
156                 float txs, float tys, int col, int row)
157 {
158         video::SMaterial& material = bill->getMaterial(0);
159         core::matrix4& matrix = material.getTextureMatrix(0);
160         matrix.setTextureTranslate(txs*col, tys*row);
161         matrix.setTextureScale(txs, tys);
162 }
163
164 /*
165         TestCAO
166 */
167
168 class TestCAO : public ClientActiveObject
169 {
170 public:
171         TestCAO(Client *client, ClientEnvironment *env);
172         virtual ~TestCAO() = default;
173
174         ActiveObjectType getType() const
175         {
176                 return ACTIVEOBJECT_TYPE_TEST;
177         }
178
179         static ClientActiveObject* create(Client *client, ClientEnvironment *env);
180
181         void addToScene(ITextureSource *tsrc);
182         void removeFromScene(bool permanent);
183         void updateLight(u8 light_at_pos);
184         v3s16 getLightPosition();
185         void updateNodePos();
186
187         void step(float dtime, ClientEnvironment *env);
188
189         void processMessage(const std::string &data);
190
191         bool getCollisionBox(aabb3f *toset) const { return false; }
192 private:
193         scene::IMeshSceneNode *m_node;
194         v3f m_position;
195 };
196
197 // Prototype
198 TestCAO proto_TestCAO(NULL, NULL);
199
200 TestCAO::TestCAO(Client *client, ClientEnvironment *env):
201         ClientActiveObject(0, client, env),
202         m_node(NULL),
203         m_position(v3f(0,10*BS,0))
204 {
205         ClientActiveObject::registerType(getType(), create);
206 }
207
208 ClientActiveObject* TestCAO::create(Client *client, ClientEnvironment *env)
209 {
210         return new TestCAO(client, env);
211 }
212
213 void TestCAO::addToScene(ITextureSource *tsrc)
214 {
215         if(m_node != NULL)
216                 return;
217
218         //video::IVideoDriver* driver = smgr->getVideoDriver();
219
220         scene::SMesh *mesh = new scene::SMesh();
221         scene::IMeshBuffer *buf = new scene::SMeshBuffer();
222         video::SColor c(255,255,255,255);
223         video::S3DVertex vertices[4] =
224         {
225                 video::S3DVertex(-BS/2,-BS/4,0, 0,0,0, c, 0,1),
226                 video::S3DVertex(BS/2,-BS/4,0, 0,0,0, c, 1,1),
227                 video::S3DVertex(BS/2,BS/4,0, 0,0,0, c, 1,0),
228                 video::S3DVertex(-BS/2,BS/4,0, 0,0,0, c, 0,0),
229         };
230         u16 indices[] = {0,1,2,2,3,0};
231         buf->append(vertices, 4, indices, 6);
232         // Set material
233         buf->getMaterial().setFlag(video::EMF_LIGHTING, false);
234         buf->getMaterial().setFlag(video::EMF_BACK_FACE_CULLING, false);
235         buf->getMaterial().setTexture(0, tsrc->getTextureForMesh("rat.png"));
236         buf->getMaterial().setFlag(video::EMF_BILINEAR_FILTER, false);
237         buf->getMaterial().setFlag(video::EMF_FOG_ENABLE, true);
238         buf->getMaterial().MaterialType = video::EMT_TRANSPARENT_ALPHA_CHANNEL;
239         // Add to mesh
240         mesh->addMeshBuffer(buf);
241         buf->drop();
242         m_node = RenderingEngine::get_scene_manager()->addMeshSceneNode(mesh, NULL);
243         mesh->drop();
244         updateNodePos();
245 }
246
247 void TestCAO::removeFromScene(bool permanent)
248 {
249         if (!m_node)
250                 return;
251
252         m_node->remove();
253         m_node = NULL;
254 }
255
256 void TestCAO::updateLight(u8 light_at_pos)
257 {
258 }
259
260 v3s16 TestCAO::getLightPosition()
261 {
262         return floatToInt(m_position, BS);
263 }
264
265 void TestCAO::updateNodePos()
266 {
267         if (!m_node)
268                 return;
269
270         m_node->setPosition(m_position);
271         //m_node->setRotation(v3f(0, 45, 0));
272 }
273
274 void TestCAO::step(float dtime, ClientEnvironment *env)
275 {
276         if(m_node)
277         {
278                 v3f rot = m_node->getRotation();
279                 //infostream<<"dtime="<<dtime<<", rot.Y="<<rot.Y<<std::endl;
280                 rot.Y += dtime * 180;
281                 m_node->setRotation(rot);
282         }
283 }
284
285 void TestCAO::processMessage(const std::string &data)
286 {
287         infostream<<"TestCAO: Got data: "<<data<<std::endl;
288         std::istringstream is(data, std::ios::binary);
289         u16 cmd;
290         is>>cmd;
291         if(cmd == 0)
292         {
293                 v3f newpos;
294                 is>>newpos.X;
295                 is>>newpos.Y;
296                 is>>newpos.Z;
297                 m_position = newpos;
298                 updateNodePos();
299         }
300 }
301
302 /*
303         GenericCAO
304 */
305
306 #include "genericobject.h"
307 #include "clientobject.h"
308
309 GenericCAO::GenericCAO(Client *client, ClientEnvironment *env):
310                 ClientActiveObject(0, client, env)
311 {
312         if (client == NULL) {
313                 ClientActiveObject::registerType(getType(), create);
314         } else {
315                 m_client = client;
316         }
317 }
318
319 bool GenericCAO::getCollisionBox(aabb3f *toset) const
320 {
321         if (m_prop.physical)
322         {
323                 //update collision box
324                 toset->MinEdge = m_prop.collisionbox.MinEdge * BS;
325                 toset->MaxEdge = m_prop.collisionbox.MaxEdge * BS;
326
327                 toset->MinEdge += m_position;
328                 toset->MaxEdge += m_position;
329
330                 return true;
331         }
332
333         return false;
334 }
335
336 bool GenericCAO::collideWithObjects() const
337 {
338         return m_prop.collideWithObjects;
339 }
340
341 void GenericCAO::initialize(const std::string &data)
342 {
343         infostream<<"GenericCAO: Got init data"<<std::endl;
344         processInitData(data);
345
346         if (m_is_player) {
347                 // Check if it's the current player
348                 LocalPlayer *player = m_env->getLocalPlayer();
349                 if (player && strcmp(player->getName(), m_name.c_str()) == 0) {
350                         m_is_local_player = true;
351                         m_is_visible = false;
352                         player->setCAO(this);
353                 }
354         }
355 }
356
357 void GenericCAO::processInitData(const std::string &data)
358 {
359         std::istringstream is(data, std::ios::binary);
360         const u8 version = readU8(is);
361
362         if (version < 1) {
363                 errorstream << "GenericCAO: Unsupported init data version"
364                                 << std::endl;
365                 return;
366         }
367
368         // PROTOCOL_VERSION >= 37
369         m_name = deSerializeString(is);
370         m_is_player = readU8(is);
371         m_id = readU16(is);
372         m_position = readV3F32(is);
373         m_rotation = readV3F32(is);
374         m_hp = readU16(is);
375
376         const u8 num_messages = readU8(is);
377
378         for (int i = 0; i < num_messages; i++) {
379                 std::string message = deSerializeLongString(is);
380                 processMessage(message);
381         }
382
383         m_rotation = wrapDegrees_0_360_v3f(m_rotation);
384         pos_translator.init(m_position);
385         rot_translator.init(m_rotation);
386         updateNodePos();
387 }
388
389 GenericCAO::~GenericCAO()
390 {
391         removeFromScene(true);
392 }
393
394 bool GenericCAO::getSelectionBox(aabb3f *toset) const
395 {
396         if (!m_prop.is_visible || !m_is_visible || m_is_local_player
397                         || !m_prop.pointable) {
398                 return false;
399         }
400         *toset = m_selection_box;
401         return true;
402 }
403
404 const v3f GenericCAO::getPosition() const
405 {
406         if (getParent() != nullptr) {
407                 if (m_matrixnode)
408                         return m_matrixnode->getAbsolutePosition();
409
410                 return m_position;
411         }
412         return pos_translator.val_current;
413 }
414
415 const bool GenericCAO::isImmortal()
416 {
417         return itemgroup_get(getGroups(), "immortal");
418 }
419
420 scene::ISceneNode* GenericCAO::getSceneNode()
421 {
422         if (m_meshnode) {
423                 return m_meshnode;
424         }
425
426         if (m_animated_meshnode) {
427                 return m_animated_meshnode;
428         }
429
430         if (m_wield_meshnode) {
431                 return m_wield_meshnode;
432         }
433
434         if (m_spritenode) {
435                 return m_spritenode;
436         }
437         return NULL;
438 }
439
440 scene::IAnimatedMeshSceneNode* GenericCAO::getAnimatedMeshSceneNode()
441 {
442         return m_animated_meshnode;
443 }
444
445 void GenericCAO::setChildrenVisible(bool toset)
446 {
447         for (u16 cao_id : m_attachment_child_ids) {
448                 GenericCAO *obj = m_env->getGenericCAO(cao_id);
449                 if (obj) {
450                         obj->setVisible(toset);
451                 }
452         }
453 }
454
455 void GenericCAO::setAttachment(int parent_id, const std::string &bone, v3f position, v3f rotation)
456 {
457         int old_parent = m_attachment_parent_id;
458         m_attachment_parent_id = parent_id;
459         m_attachment_bone = bone;
460         m_attachment_position = position;
461         m_attachment_rotation = rotation;
462
463         ClientActiveObject *parent = m_env->getActiveObject(parent_id);
464
465         if (parent_id != old_parent) {
466                 if (auto *o = m_env->getActiveObject(old_parent))
467                         o->removeAttachmentChild(m_id);
468                 if (parent)
469                         parent->addAttachmentChild(m_id);
470         }
471
472         updateAttachments();
473 }
474
475 void GenericCAO::getAttachment(int *parent_id, std::string *bone, v3f *position,
476         v3f *rotation) const
477 {
478         *parent_id = m_attachment_parent_id;
479         *bone = m_attachment_bone;
480         *position = m_attachment_position;
481         *rotation = m_attachment_rotation;
482 }
483
484 void GenericCAO::clearChildAttachments()
485 {
486         // Cannot use for-loop here: setAttachment() modifies 'm_attachment_child_ids'!
487         while (!m_attachment_child_ids.empty()) {
488                 int child_id = *m_attachment_child_ids.begin();
489
490                 if (ClientActiveObject *child = m_env->getActiveObject(child_id))
491                         child->setAttachment(0, "", v3f(), v3f());
492
493                 removeAttachmentChild(child_id);
494         }
495 }
496
497 void GenericCAO::clearParentAttachment()
498 {
499         if (m_attachment_parent_id)
500                 setAttachment(0, "", m_attachment_position, m_attachment_rotation);
501         else
502                 setAttachment(0, "", v3f(), v3f());
503 }
504
505 void GenericCAO::addAttachmentChild(int child_id)
506 {
507         m_attachment_child_ids.insert(child_id);
508 }
509
510 void GenericCAO::removeAttachmentChild(int child_id)
511 {
512         m_attachment_child_ids.erase(child_id);
513 }
514
515 ClientActiveObject* GenericCAO::getParent() const
516 {
517         return m_attachment_parent_id ? m_env->getActiveObject(m_attachment_parent_id) :
518                         nullptr;
519 }
520
521 void GenericCAO::removeFromScene(bool permanent)
522 {
523         // Should be true when removing the object permanently
524         // and false when refreshing (eg: updating visuals)
525         if (m_env && permanent) {
526                 // The client does not know whether this object does re-appear to
527                 // a later time, thus do not clear child attachments.
528
529                 clearParentAttachment();
530         }
531
532         if (m_meshnode) {
533                 m_meshnode->remove();
534                 m_meshnode->drop();
535                 m_meshnode = nullptr;
536         } else if (m_animated_meshnode) {
537                 m_animated_meshnode->remove();
538                 m_animated_meshnode->drop();
539                 m_animated_meshnode = nullptr;
540         } else if (m_wield_meshnode) {
541                 m_wield_meshnode->remove();
542                 m_wield_meshnode->drop();
543                 m_wield_meshnode = nullptr;
544         } else if (m_spritenode) {
545                 m_spritenode->remove();
546                 m_spritenode->drop();
547                 m_spritenode = nullptr;
548         }
549
550         if (m_matrixnode) {
551                 m_matrixnode->remove();
552                 m_matrixnode->drop();
553                 m_matrixnode = nullptr;
554         }
555
556         if (m_nametag) {
557                 m_client->getCamera()->removeNametag(m_nametag);
558                 m_nametag = nullptr;
559         }
560 }
561
562 void GenericCAO::addToScene(ITextureSource *tsrc)
563 {
564         m_smgr = RenderingEngine::get_scene_manager();
565
566         if (getSceneNode() != NULL) {
567                 return;
568         }
569
570         m_visuals_expired = false;
571
572         if (!m_prop.is_visible) {
573                 return;
574         }
575
576         video::E_MATERIAL_TYPE material_type = (m_prop.use_texture_alpha) ?
577                 video::EMT_TRANSPARENT_ALPHA_CHANNEL : video::EMT_TRANSPARENT_ALPHA_CHANNEL_REF;
578
579         if (m_prop.visual == "sprite") {
580                 infostream<<"GenericCAO::addToScene(): single_sprite"<<std::endl;
581                 m_matrixnode = RenderingEngine::get_scene_manager()->
582                                 addDummyTransformationSceneNode();
583                 m_matrixnode->grab();
584                 m_spritenode = RenderingEngine::get_scene_manager()->addBillboardSceneNode(
585                                 m_matrixnode, v2f(1, 1), v3f(0,0,0), -1);
586                 m_spritenode->grab();
587                 m_spritenode->setMaterialTexture(0,
588                                 tsrc->getTextureForMesh("unknown_node.png"));
589                 m_spritenode->setMaterialFlag(video::EMF_LIGHTING, false);
590                 m_spritenode->setMaterialFlag(video::EMF_BILINEAR_FILTER, false);
591                 m_spritenode->setMaterialType(material_type);
592                 m_spritenode->setMaterialFlag(video::EMF_FOG_ENABLE, true);
593                 u8 li = m_last_light;
594                 m_spritenode->setColor(video::SColor(255,li,li,li));
595                 m_spritenode->setSize(v2f(m_prop.visual_size.X,
596                                 m_prop.visual_size.Y) * BS);
597                 {
598                         const float txs = 1.0 / 1;
599                         const float tys = 1.0 / 1;
600                         setBillboardTextureMatrix(m_spritenode,
601                                         txs, tys, 0, 0);
602                 }
603         } else if (m_prop.visual == "upright_sprite") {
604                 scene::SMesh *mesh = new scene::SMesh();
605                 double dx = BS * m_prop.visual_size.X / 2;
606                 double dy = BS * m_prop.visual_size.Y / 2;
607                 u8 li = m_last_light;
608                 video::SColor c(255, li, li, li);
609
610                 { // Front
611                         scene::IMeshBuffer *buf = new scene::SMeshBuffer();
612                         video::S3DVertex vertices[4] = {
613                                 video::S3DVertex(-dx, -dy, 0, 0,0,0, c, 1,1),
614                                 video::S3DVertex( dx, -dy, 0, 0,0,0, c, 0,1),
615                                 video::S3DVertex( dx,  dy, 0, 0,0,0, c, 0,0),
616                                 video::S3DVertex(-dx,  dy, 0, 0,0,0, c, 1,0),
617                         };
618                         if (m_is_player) {
619                                 // Move minimal Y position to 0 (feet position)
620                                 for (video::S3DVertex &vertex : vertices)
621                                         vertex.Pos.Y += dy;
622                         }
623                         u16 indices[] = {0,1,2,2,3,0};
624                         buf->append(vertices, 4, indices, 6);
625                         // Set material
626                         buf->getMaterial().setFlag(video::EMF_LIGHTING, false);
627                         buf->getMaterial().setFlag(video::EMF_BILINEAR_FILTER, false);
628                         buf->getMaterial().setFlag(video::EMF_FOG_ENABLE, true);
629                         buf->getMaterial().MaterialType = video::EMT_TRANSPARENT_ALPHA_CHANNEL;
630                         // Add to mesh
631                         mesh->addMeshBuffer(buf);
632                         buf->drop();
633                 }
634                 { // Back
635                         scene::IMeshBuffer *buf = new scene::SMeshBuffer();
636                         video::S3DVertex vertices[4] = {
637                                 video::S3DVertex( dx,-dy, 0, 0,0,0, c, 1,1),
638                                 video::S3DVertex(-dx,-dy, 0, 0,0,0, c, 0,1),
639                                 video::S3DVertex(-dx, dy, 0, 0,0,0, c, 0,0),
640                                 video::S3DVertex( dx, dy, 0, 0,0,0, c, 1,0),
641                         };
642                         if (m_is_player) {
643                                 // Move minimal Y position to 0 (feet position)
644                                 for (video::S3DVertex &vertex : vertices)
645                                         vertex.Pos.Y += dy;
646                         }
647                         u16 indices[] = {0,1,2,2,3,0};
648                         buf->append(vertices, 4, indices, 6);
649                         // Set material
650                         buf->getMaterial().setFlag(video::EMF_LIGHTING, false);
651                         buf->getMaterial().setFlag(video::EMF_BILINEAR_FILTER, false);
652                         buf->getMaterial().setFlag(video::EMF_FOG_ENABLE, true);
653                         buf->getMaterial().MaterialType = video::EMT_TRANSPARENT_ALPHA_CHANNEL_REF;
654                         // Add to mesh
655                         mesh->addMeshBuffer(buf);
656                         buf->drop();
657                 }
658                 m_matrixnode = RenderingEngine::get_scene_manager()->
659                         addDummyTransformationSceneNode();
660                 m_matrixnode->grab();
661                 m_meshnode = RenderingEngine::get_scene_manager()->
662                         addMeshSceneNode(mesh, m_matrixnode);
663                 m_meshnode->grab();
664                 mesh->drop();
665                 // Set it to use the materials of the meshbuffers directly.
666                 // This is needed for changing the texture in the future
667                 m_meshnode->setReadOnlyMaterials(true);
668         } else if (m_prop.visual == "cube") {
669                 infostream<<"GenericCAO::addToScene(): cube"<<std::endl;
670                 scene::IMesh *mesh = createCubeMesh(v3f(BS,BS,BS));
671                 m_matrixnode = RenderingEngine::get_scene_manager()->
672                         addDummyTransformationSceneNode(nullptr);
673                 m_matrixnode->grab();
674                 m_meshnode = RenderingEngine::get_scene_manager()->
675                         addMeshSceneNode(mesh, m_matrixnode);
676                 m_meshnode->grab();
677                 mesh->drop();
678
679                 m_meshnode->setScale(m_prop.visual_size);
680                 u8 li = m_last_light;
681                 setMeshColor(m_meshnode->getMesh(), video::SColor(255,li,li,li));
682
683                 m_meshnode->setMaterialFlag(video::EMF_LIGHTING, false);
684                 m_meshnode->setMaterialFlag(video::EMF_BILINEAR_FILTER, false);
685                 m_meshnode->setMaterialType(material_type);
686                 m_meshnode->setMaterialFlag(video::EMF_FOG_ENABLE, true);
687         } else if (m_prop.visual == "mesh") {
688                 infostream<<"GenericCAO::addToScene(): mesh"<<std::endl;
689                 scene::IAnimatedMesh *mesh = m_client->getMesh(m_prop.mesh, true);
690                 if (mesh) {
691                         m_matrixnode = RenderingEngine::get_scene_manager()->
692                                 addDummyTransformationSceneNode(nullptr);
693                         m_matrixnode->grab();
694                         m_animated_meshnode = RenderingEngine::get_scene_manager()->
695                                 addAnimatedMeshSceneNode(mesh, m_matrixnode);
696                         m_animated_meshnode->grab();
697                         mesh->drop(); // The scene node took hold of it
698                         m_animated_meshnode->animateJoints(); // Needed for some animations
699                         m_animated_meshnode->setScale(m_prop.visual_size);
700                         u8 li = m_last_light;
701
702                         // set vertex colors to ensure alpha is set
703                         setMeshColor(m_animated_meshnode->getMesh(), video::SColor(255,li,li,li));
704
705                         setAnimatedMeshColor(m_animated_meshnode, video::SColor(255,li,li,li));
706
707                         m_animated_meshnode->setMaterialFlag(video::EMF_LIGHTING, true);
708                         m_animated_meshnode->setMaterialFlag(video::EMF_BILINEAR_FILTER, false);
709                         m_animated_meshnode->setMaterialType(material_type);
710                         m_animated_meshnode->setMaterialFlag(video::EMF_FOG_ENABLE, true);
711                         m_animated_meshnode->setMaterialFlag(video::EMF_BACK_FACE_CULLING,
712                                 m_prop.backface_culling);
713                 } else
714                         errorstream<<"GenericCAO::addToScene(): Could not load mesh "<<m_prop.mesh<<std::endl;
715         } else if (m_prop.visual == "wielditem" || m_prop.visual == "item") {
716                 ItemStack item;
717                 infostream << "GenericCAO::addToScene(): wielditem" << std::endl;
718                 if (m_prop.wield_item.empty()) {
719                         // Old format, only textures are specified.
720                         infostream << "textures: " << m_prop.textures.size() << std::endl;
721                         if (!m_prop.textures.empty()) {
722                                 infostream << "textures[0]: " << m_prop.textures[0]
723                                         << std::endl;
724                                 IItemDefManager *idef = m_client->idef();
725                                 item = ItemStack(m_prop.textures[0], 1, 0, idef);
726                         }
727                 } else {
728                         infostream << "serialized form: " << m_prop.wield_item << std::endl;
729                         item.deSerialize(m_prop.wield_item, m_client->idef());
730                 }
731                 m_matrixnode = RenderingEngine::get_scene_manager()->
732                         addDummyTransformationSceneNode(nullptr);
733                 m_matrixnode->grab();
734                 m_wield_meshnode = new WieldMeshSceneNode(
735                         RenderingEngine::get_scene_manager(), -1);
736                 m_wield_meshnode->setParent(m_matrixnode);
737                 m_wield_meshnode->setItem(item, m_client,
738                         (m_prop.visual == "wielditem"));
739
740                 m_wield_meshnode->setScale(m_prop.visual_size / 2.0f);
741                 u8 li = m_last_light;
742                 m_wield_meshnode->setColor(video::SColor(255, li, li, li));
743         } else {
744                 infostream<<"GenericCAO::addToScene(): \""<<m_prop.visual
745                                 <<"\" not supported"<<std::endl;
746         }
747
748         /* don't update while punch texture modifier is active */
749         if (m_reset_textures_timer < 0)
750                 updateTextures(m_current_texture_modifier);
751
752         scene::ISceneNode *node = getSceneNode();
753
754         if (node && !m_prop.nametag.empty() && !m_is_local_player) {
755                 // Add nametag
756                 v3f pos;
757                 pos.Y = m_prop.selectionbox.MaxEdge.Y + 0.3f;
758                 m_nametag = m_client->getCamera()->addNametag(node,
759                         m_prop.nametag, m_prop.nametag_color,
760                         pos);
761         }
762
763         updateNodePos();
764         updateAnimation();
765         updateBonePosition();
766         updateAttachments();
767 }
768
769 void GenericCAO::updateLight(u8 light_at_pos)
770 {
771         // Don't update light of attached one
772         if (getParent() != NULL) {
773                 return;
774         }
775
776         updateLightNoCheck(light_at_pos);
777
778         // Update light of all children
779         for (u16 i : m_attachment_child_ids) {
780                 ClientActiveObject *obj = m_env->getActiveObject(i);
781                 if (obj) {
782                         obj->updateLightNoCheck(light_at_pos);
783                 }
784         }
785 }
786
787 void GenericCAO::updateLightNoCheck(u8 light_at_pos)
788 {
789         if (m_glow < 0)
790                 return;
791
792         u8 li = decode_light(light_at_pos + m_glow);
793         if (li != m_last_light) {
794                 m_last_light = li;
795                 video::SColor color(255,li,li,li);
796                 if (m_meshnode) {
797                         setMeshColor(m_meshnode->getMesh(), color);
798                 } else if (m_animated_meshnode) {
799                         setAnimatedMeshColor(m_animated_meshnode, color);
800                 } else if (m_wield_meshnode) {
801                         m_wield_meshnode->setColor(color);
802                 } else if (m_spritenode) {
803                         m_spritenode->setColor(color);
804                 }
805         }
806 }
807
808 v3s16 GenericCAO::getLightPosition()
809 {
810         if (m_is_player)
811                 return floatToInt(m_position + v3f(0, 0.5 * BS, 0), BS);
812
813         return floatToInt(m_position, BS);
814 }
815
816 void GenericCAO::updateNodePos()
817 {
818         if (getParent() != NULL)
819                 return;
820
821         scene::ISceneNode *node = getSceneNode();
822
823         if (node) {
824                 v3s16 camera_offset = m_env->getCameraOffset();
825                 v3f pos = pos_translator.val_current -
826                                 intToFloat(camera_offset, BS);
827                 getPosRotMatrix().setTranslation(pos);
828                 if (node != m_spritenode) { // rotate if not a sprite
829                         v3f rot = m_is_local_player ? -m_rotation : -rot_translator.val_current;
830                         setPitchYawRoll(getPosRotMatrix(), rot);
831                 }
832         }
833 }
834
835 void GenericCAO::step(float dtime, ClientEnvironment *env)
836 {
837         // Handel model of local player instantly to prevent lags
838         if (m_is_local_player) {
839                 LocalPlayer *player = m_env->getLocalPlayer();
840                 if (m_is_visible) {
841                         int old_anim = player->last_animation;
842                         float old_anim_speed = player->last_animation_speed;
843                         m_position = player->getPosition();
844                         m_rotation.Y = wrapDegrees_0_360(player->getYaw());
845                         m_velocity = v3f(0,0,0);
846                         m_acceleration = v3f(0,0,0);
847                         pos_translator.val_current = m_position;
848                         rot_translator.val_current = m_rotation;
849                         const PlayerControl &controls = player->getPlayerControl();
850
851                         bool walking = false;
852                         if (controls.up || controls.down || controls.left || controls.right ||
853                                         controls.forw_move_joystick_axis != 0.f ||
854                                         controls.sidew_move_joystick_axis != 0.f)
855                                 walking = true;
856
857                         f32 new_speed = player->local_animation_speed;
858                         v2s32 new_anim = v2s32(0,0);
859                         bool allow_update = false;
860
861                         // increase speed if using fast or flying fast
862                         if((g_settings->getBool("fast_move") &&
863                                         m_client->checkLocalPrivilege("fast")) &&
864                                         (controls.aux1 ||
865                                         (!player->touching_ground &&
866                                         g_settings->getBool("free_move") &&
867                                         m_client->checkLocalPrivilege("fly"))))
868                                         new_speed *= 1.5;
869                         // slowdown speed if sneeking
870                         if (controls.sneak && walking)
871                                 new_speed /= 2;
872
873                         if (walking && (controls.LMB || controls.RMB)) {
874                                 new_anim = player->local_animations[3];
875                                 player->last_animation = WD_ANIM;
876                         } else if(walking) {
877                                 new_anim = player->local_animations[1];
878                                 player->last_animation = WALK_ANIM;
879                         } else if(controls.LMB || controls.RMB) {
880                                 new_anim = player->local_animations[2];
881                                 player->last_animation = DIG_ANIM;
882                         }
883
884                         // Apply animations if input detected and not attached
885                         // or set idle animation
886                         if ((new_anim.X + new_anim.Y) > 0 && !player->isAttached) {
887                                 allow_update = true;
888                                 m_animation_range = new_anim;
889                                 m_animation_speed = new_speed;
890                                 player->last_animation_speed = m_animation_speed;
891                         } else {
892                                 player->last_animation = NO_ANIM;
893
894                                 if (old_anim != NO_ANIM) {
895                                         m_animation_range = player->local_animations[0];
896                                         updateAnimation();
897                                 }
898                         }
899
900                         // Update local player animations
901                         if ((player->last_animation != old_anim ||
902                                 m_animation_speed != old_anim_speed) &&
903                                 player->last_animation != NO_ANIM && allow_update)
904                                         updateAnimation();
905
906                 }
907         }
908
909         if (m_visuals_expired && m_smgr) {
910                 m_visuals_expired = false;
911
912                 // Attachments, part 1: All attached objects must be unparented first,
913                 // or Irrlicht causes a segmentation fault
914                 for (u16 cao_id : m_attachment_child_ids) {
915                         ClientActiveObject *obj = m_env->getActiveObject(cao_id);
916                         if (obj) {
917                                 scene::ISceneNode *child_node = obj->getSceneNode();
918                                 // The node's parent is always an IDummyTraformationSceneNode,
919                                 // so we need to reparent that one instead.
920                                 if (child_node)
921                                         child_node->getParent()->setParent(m_smgr->getRootSceneNode());
922                         }
923                 }
924
925                 removeFromScene(false);
926                 addToScene(m_client->tsrc());
927
928                 // Attachments, part 2: Now that the parent has been refreshed, put its attachments back
929                 for (u16 cao_id : m_attachment_child_ids) {
930                         ClientActiveObject *obj = m_env->getActiveObject(cao_id);
931                         if (obj)
932                                 obj->updateAttachments();
933                 }
934         }
935
936         // Make sure m_is_visible is always applied
937         scene::ISceneNode *node = getSceneNode();
938         if (node)
939                 node->setVisible(m_is_visible);
940
941         if(getParent() != NULL) // Attachments should be glued to their parent by Irrlicht
942         {
943                 // Set these for later
944                 m_position = getPosition();
945                 m_velocity = v3f(0,0,0);
946                 m_acceleration = v3f(0,0,0);
947                 pos_translator.val_current = m_position;
948
949                 if(m_is_local_player) // Update local player attachment position
950                 {
951                         LocalPlayer *player = m_env->getLocalPlayer();
952                         player->overridePosition = getParent()->getPosition();
953                 }
954         } else {
955                 rot_translator.translate(dtime);
956                 v3f lastpos = pos_translator.val_current;
957
958                 if(m_prop.physical)
959                 {
960                         aabb3f box = m_prop.collisionbox;
961                         box.MinEdge *= BS;
962                         box.MaxEdge *= BS;
963                         collisionMoveResult moveresult;
964                         f32 pos_max_d = BS*0.125; // Distance per iteration
965                         v3f p_pos = m_position;
966                         v3f p_velocity = m_velocity;
967                         moveresult = collisionMoveSimple(env,env->getGameDef(),
968                                         pos_max_d, box, m_prop.stepheight, dtime,
969                                         &p_pos, &p_velocity, m_acceleration,
970                                         this, m_prop.collideWithObjects);
971                         // Apply results
972                         m_position = p_pos;
973                         m_velocity = p_velocity;
974
975                         bool is_end_position = moveresult.collides;
976                         pos_translator.update(m_position, is_end_position, dtime);
977                         pos_translator.translate(dtime);
978                         updateNodePos();
979                 } else {
980                         m_position += dtime * m_velocity + 0.5 * dtime * dtime * m_acceleration;
981                         m_velocity += dtime * m_acceleration;
982                         pos_translator.update(m_position, pos_translator.aim_is_end,
983                                         pos_translator.anim_time);
984                         pos_translator.translate(dtime);
985                         updateNodePos();
986                 }
987
988                 float moved = lastpos.getDistanceFrom(pos_translator.val_current);
989                 m_step_distance_counter += moved;
990                 if (m_step_distance_counter > 1.5f * BS) {
991                         m_step_distance_counter = 0.0f;
992                         if (!m_is_local_player && m_prop.makes_footstep_sound) {
993                                 const NodeDefManager *ndef = m_client->ndef();
994                                 v3s16 p = floatToInt(getPosition() +
995                                         v3f(0.0f, (m_prop.collisionbox.MinEdge.Y - 0.5f) * BS, 0.0f), BS);
996                                 MapNode n = m_env->getMap().getNode(p);
997                                 SimpleSoundSpec spec = ndef->get(n).sound_footstep;
998                                 // Reduce footstep gain, as non-local-player footsteps are
999                                 // somehow louder.
1000                                 spec.gain *= 0.6f;
1001                                 m_client->sound()->playSoundAt(spec, false, getPosition());
1002                         }
1003                 }
1004         }
1005
1006         m_anim_timer += dtime;
1007         if(m_anim_timer >= m_anim_framelength)
1008         {
1009                 m_anim_timer -= m_anim_framelength;
1010                 m_anim_frame++;
1011                 if(m_anim_frame >= m_anim_num_frames)
1012                         m_anim_frame = 0;
1013         }
1014
1015         updateTexturePos();
1016
1017         if(m_reset_textures_timer >= 0)
1018         {
1019                 m_reset_textures_timer -= dtime;
1020                 if(m_reset_textures_timer <= 0) {
1021                         m_reset_textures_timer = -1;
1022                         updateTextures(m_previous_texture_modifier);
1023                 }
1024         }
1025         if (!getParent() && std::fabs(m_prop.automatic_rotate) > 0.001) {
1026                 m_rotation.Y += dtime * m_prop.automatic_rotate * 180 / M_PI;
1027                 rot_translator.val_current = m_rotation;
1028                 updateNodePos();
1029         }
1030
1031         if (!getParent() && m_prop.automatic_face_movement_dir &&
1032                         (fabs(m_velocity.Z) > 0.001 || fabs(m_velocity.X) > 0.001)) {
1033                 float target_yaw = atan2(m_velocity.Z, m_velocity.X) * 180 / M_PI
1034                                 + m_prop.automatic_face_movement_dir_offset;
1035                 float max_rotation_per_sec =
1036                                 m_prop.automatic_face_movement_max_rotation_per_sec;
1037
1038                 if (max_rotation_per_sec > 0) {
1039                         wrappedApproachShortest(m_rotation.Y, target_yaw,
1040                                 dtime * max_rotation_per_sec, 360.f);
1041                 } else {
1042                         // Negative values of max_rotation_per_sec mean disabled.
1043                         m_rotation.Y = target_yaw;
1044                 }
1045
1046                 rot_translator.val_current = m_rotation;
1047                 updateNodePos();
1048         }
1049 }
1050
1051 void GenericCAO::updateTexturePos()
1052 {
1053         if(m_spritenode)
1054         {
1055                 scene::ICameraSceneNode* camera =
1056                                 m_spritenode->getSceneManager()->getActiveCamera();
1057                 if(!camera)
1058                         return;
1059                 v3f cam_to_entity = m_spritenode->getAbsolutePosition()
1060                                 - camera->getAbsolutePosition();
1061                 cam_to_entity.normalize();
1062
1063                 int row = m_tx_basepos.Y;
1064                 int col = m_tx_basepos.X;
1065
1066                 if (m_tx_select_horiz_by_yawpitch) {
1067                         if (cam_to_entity.Y > 0.75)
1068                                 col += 5;
1069                         else if (cam_to_entity.Y < -0.75)
1070                                 col += 4;
1071                         else {
1072                                 float mob_dir =
1073                                                 atan2(cam_to_entity.Z, cam_to_entity.X) / M_PI * 180.;
1074                                 float dir = mob_dir - m_rotation.Y;
1075                                 dir = wrapDegrees_180(dir);
1076                                 if (std::fabs(wrapDegrees_180(dir - 0)) <= 45.1f)
1077                                         col += 2;
1078                                 else if(std::fabs(wrapDegrees_180(dir - 90)) <= 45.1f)
1079                                         col += 3;
1080                                 else if(std::fabs(wrapDegrees_180(dir - 180)) <= 45.1f)
1081                                         col += 0;
1082                                 else if(std::fabs(wrapDegrees_180(dir + 90)) <= 45.1f)
1083                                         col += 1;
1084                                 else
1085                                         col += 4;
1086                         }
1087                 }
1088
1089                 // Animation goes downwards
1090                 row += m_anim_frame;
1091
1092                 float txs = m_tx_size.X;
1093                 float tys = m_tx_size.Y;
1094                 setBillboardTextureMatrix(m_spritenode, txs, tys, col, row);
1095         }
1096 }
1097
1098 // Do not pass by reference, see header.
1099 void GenericCAO::updateTextures(std::string mod)
1100 {
1101         ITextureSource *tsrc = m_client->tsrc();
1102
1103         bool use_trilinear_filter = g_settings->getBool("trilinear_filter");
1104         bool use_bilinear_filter = g_settings->getBool("bilinear_filter");
1105         bool use_anisotropic_filter = g_settings->getBool("anisotropic_filter");
1106
1107         m_previous_texture_modifier = m_current_texture_modifier;
1108         m_current_texture_modifier = mod;
1109         m_glow = m_prop.glow;
1110
1111         video::E_MATERIAL_TYPE material_type = (m_prop.use_texture_alpha) ?
1112                 video::EMT_TRANSPARENT_ALPHA_CHANNEL : video::EMT_TRANSPARENT_ALPHA_CHANNEL_REF;
1113
1114         if (m_spritenode) {
1115                 if (m_prop.visual == "sprite") {
1116                         std::string texturestring = "unknown_node.png";
1117                         if (!m_prop.textures.empty())
1118                                 texturestring = m_prop.textures[0];
1119                         texturestring += mod;
1120                         m_spritenode->getMaterial(0).MaterialType = material_type;
1121                         m_spritenode->getMaterial(0).MaterialTypeParam = 0.5f;
1122                         m_spritenode->setMaterialTexture(0,
1123                                         tsrc->getTextureForMesh(texturestring));
1124
1125                         // This allows setting per-material colors. However, until a real lighting
1126                         // system is added, the code below will have no effect. Once MineTest
1127                         // has directional lighting, it should work automatically.
1128                         if (!m_prop.colors.empty()) {
1129                                 m_spritenode->getMaterial(0).AmbientColor = m_prop.colors[0];
1130                                 m_spritenode->getMaterial(0).DiffuseColor = m_prop.colors[0];
1131                                 m_spritenode->getMaterial(0).SpecularColor = m_prop.colors[0];
1132                         }
1133
1134                         m_spritenode->getMaterial(0).setFlag(video::EMF_TRILINEAR_FILTER, use_trilinear_filter);
1135                         m_spritenode->getMaterial(0).setFlag(video::EMF_BILINEAR_FILTER, use_bilinear_filter);
1136                         m_spritenode->getMaterial(0).setFlag(video::EMF_ANISOTROPIC_FILTER, use_anisotropic_filter);
1137                 }
1138         }
1139
1140         if (m_animated_meshnode) {
1141                 if (m_prop.visual == "mesh") {
1142                         for (u32 i = 0; i < m_prop.textures.size() &&
1143                                         i < m_animated_meshnode->getMaterialCount(); ++i) {
1144                                 std::string texturestring = m_prop.textures[i];
1145                                 if (texturestring.empty())
1146                                         continue; // Empty texture string means don't modify that material
1147                                 texturestring += mod;
1148                                 video::ITexture* texture = tsrc->getTextureForMesh(texturestring);
1149                                 if (!texture) {
1150                                         errorstream<<"GenericCAO::updateTextures(): Could not load texture "<<texturestring<<std::endl;
1151                                         continue;
1152                                 }
1153
1154                                 // Set material flags and texture
1155                                 video::SMaterial& material = m_animated_meshnode->getMaterial(i);
1156                                 material.MaterialType = material_type;
1157                                 material.MaterialTypeParam = 0.5f;
1158                                 material.TextureLayer[0].Texture = texture;
1159                                 material.setFlag(video::EMF_LIGHTING, true);
1160                                 material.setFlag(video::EMF_BILINEAR_FILTER, false);
1161                                 material.setFlag(video::EMF_BACK_FACE_CULLING, m_prop.backface_culling);
1162
1163                                 // don't filter low-res textures, makes them look blurry
1164                                 // player models have a res of 64
1165                                 const core::dimension2d<u32> &size = texture->getOriginalSize();
1166                                 const u32 res = std::min(size.Height, size.Width);
1167                                 use_trilinear_filter &= res > 64;
1168                                 use_bilinear_filter &= res > 64;
1169
1170                                 m_animated_meshnode->getMaterial(i)
1171                                                 .setFlag(video::EMF_TRILINEAR_FILTER, use_trilinear_filter);
1172                                 m_animated_meshnode->getMaterial(i)
1173                                                 .setFlag(video::EMF_BILINEAR_FILTER, use_bilinear_filter);
1174                                 m_animated_meshnode->getMaterial(i)
1175                                                 .setFlag(video::EMF_ANISOTROPIC_FILTER, use_anisotropic_filter);
1176                         }
1177                         for (u32 i = 0; i < m_prop.colors.size() &&
1178                         i < m_animated_meshnode->getMaterialCount(); ++i)
1179                         {
1180                                 // This allows setting per-material colors. However, until a real lighting
1181                                 // system is added, the code below will have no effect. Once MineTest
1182                                 // has directional lighting, it should work automatically.
1183                                 m_animated_meshnode->getMaterial(i).AmbientColor = m_prop.colors[i];
1184                                 m_animated_meshnode->getMaterial(i).DiffuseColor = m_prop.colors[i];
1185                                 m_animated_meshnode->getMaterial(i).SpecularColor = m_prop.colors[i];
1186                         }
1187                 }
1188         }
1189         if(m_meshnode)
1190         {
1191                 if(m_prop.visual == "cube")
1192                 {
1193                         for (u32 i = 0; i < 6; ++i)
1194                         {
1195                                 std::string texturestring = "unknown_node.png";
1196                                 if(m_prop.textures.size() > i)
1197                                         texturestring = m_prop.textures[i];
1198                                 texturestring += mod;
1199
1200
1201                                 // Set material flags and texture
1202                                 video::SMaterial& material = m_meshnode->getMaterial(i);
1203                                 material.MaterialType = material_type;
1204                                 material.MaterialTypeParam = 0.5f;
1205                                 material.setFlag(video::EMF_LIGHTING, false);
1206                                 material.setFlag(video::EMF_BILINEAR_FILTER, false);
1207                                 material.setTexture(0,
1208                                                 tsrc->getTextureForMesh(texturestring));
1209                                 material.getTextureMatrix(0).makeIdentity();
1210
1211                                 // This allows setting per-material colors. However, until a real lighting
1212                                 // system is added, the code below will have no effect. Once MineTest
1213                                 // has directional lighting, it should work automatically.
1214                                 if(m_prop.colors.size() > i)
1215                                 {
1216                                         m_meshnode->getMaterial(i).AmbientColor = m_prop.colors[i];
1217                                         m_meshnode->getMaterial(i).DiffuseColor = m_prop.colors[i];
1218                                         m_meshnode->getMaterial(i).SpecularColor = m_prop.colors[i];
1219                                 }
1220
1221                                 m_meshnode->getMaterial(i).setFlag(video::EMF_TRILINEAR_FILTER, use_trilinear_filter);
1222                                 m_meshnode->getMaterial(i).setFlag(video::EMF_BILINEAR_FILTER, use_bilinear_filter);
1223                                 m_meshnode->getMaterial(i).setFlag(video::EMF_ANISOTROPIC_FILTER, use_anisotropic_filter);
1224                         }
1225                 } else if (m_prop.visual == "upright_sprite") {
1226                         scene::IMesh *mesh = m_meshnode->getMesh();
1227                         {
1228                                 std::string tname = "unknown_object.png";
1229                                 if (!m_prop.textures.empty())
1230                                         tname = m_prop.textures[0];
1231                                 tname += mod;
1232                                 scene::IMeshBuffer *buf = mesh->getMeshBuffer(0);
1233                                 buf->getMaterial().setTexture(0,
1234                                                 tsrc->getTextureForMesh(tname));
1235
1236                                 // This allows setting per-material colors. However, until a real lighting
1237                                 // system is added, the code below will have no effect. Once MineTest
1238                                 // has directional lighting, it should work automatically.
1239                                 if(!m_prop.colors.empty()) {
1240                                         buf->getMaterial().AmbientColor = m_prop.colors[0];
1241                                         buf->getMaterial().DiffuseColor = m_prop.colors[0];
1242                                         buf->getMaterial().SpecularColor = m_prop.colors[0];
1243                                 }
1244
1245                                 buf->getMaterial().setFlag(video::EMF_TRILINEAR_FILTER, use_trilinear_filter);
1246                                 buf->getMaterial().setFlag(video::EMF_BILINEAR_FILTER, use_bilinear_filter);
1247                                 buf->getMaterial().setFlag(video::EMF_ANISOTROPIC_FILTER, use_anisotropic_filter);
1248                         }
1249                         {
1250                                 std::string tname = "unknown_object.png";
1251                                 if (m_prop.textures.size() >= 2)
1252                                         tname = m_prop.textures[1];
1253                                 else if (!m_prop.textures.empty())
1254                                         tname = m_prop.textures[0];
1255                                 tname += mod;
1256                                 scene::IMeshBuffer *buf = mesh->getMeshBuffer(1);
1257                                 buf->getMaterial().setTexture(0,
1258                                                 tsrc->getTextureForMesh(tname));
1259
1260                                 // This allows setting per-material colors. However, until a real lighting
1261                                 // system is added, the code below will have no effect. Once MineTest
1262                                 // has directional lighting, it should work automatically.
1263                                 if (m_prop.colors.size() >= 2) {
1264                                         buf->getMaterial().AmbientColor = m_prop.colors[1];
1265                                         buf->getMaterial().DiffuseColor = m_prop.colors[1];
1266                                         buf->getMaterial().SpecularColor = m_prop.colors[1];
1267                                         setMeshColor(mesh, m_prop.colors[1]);
1268                                 } else if (!m_prop.colors.empty()) {
1269                                         buf->getMaterial().AmbientColor = m_prop.colors[0];
1270                                         buf->getMaterial().DiffuseColor = m_prop.colors[0];
1271                                         buf->getMaterial().SpecularColor = m_prop.colors[0];
1272                                         setMeshColor(mesh, m_prop.colors[0]);
1273                                 }
1274
1275                                 buf->getMaterial().setFlag(video::EMF_TRILINEAR_FILTER, use_trilinear_filter);
1276                                 buf->getMaterial().setFlag(video::EMF_BILINEAR_FILTER, use_bilinear_filter);
1277                                 buf->getMaterial().setFlag(video::EMF_ANISOTROPIC_FILTER, use_anisotropic_filter);
1278                         }
1279                 }
1280         }
1281 }
1282
1283 void GenericCAO::updateAnimation()
1284 {
1285         if (!m_animated_meshnode)
1286                 return;
1287
1288         if (m_animated_meshnode->getStartFrame() != m_animation_range.X ||
1289                 m_animated_meshnode->getEndFrame() != m_animation_range.Y)
1290                         m_animated_meshnode->setFrameLoop(m_animation_range.X, m_animation_range.Y);
1291         if (m_animated_meshnode->getAnimationSpeed() != m_animation_speed)
1292                 m_animated_meshnode->setAnimationSpeed(m_animation_speed);
1293         m_animated_meshnode->setTransitionTime(m_animation_blend);
1294 // Requires Irrlicht 1.8 or greater
1295 #if (IRRLICHT_VERSION_MAJOR == 1 && IRRLICHT_VERSION_MINOR >= 8) || IRRLICHT_VERSION_MAJOR > 1
1296         if (m_animated_meshnode->getLoopMode() != m_animation_loop)
1297                 m_animated_meshnode->setLoopMode(m_animation_loop);
1298 #endif
1299 }
1300
1301 void GenericCAO::updateAnimationSpeed()
1302 {
1303         if (!m_animated_meshnode)
1304                 return;
1305
1306         m_animated_meshnode->setAnimationSpeed(m_animation_speed);
1307 }
1308
1309 void GenericCAO::updateBonePosition()
1310 {
1311         if (m_bone_position.empty() || !m_animated_meshnode)
1312                 return;
1313
1314         m_animated_meshnode->setJointMode(irr::scene::EJUOR_CONTROL); // To write positions to the mesh on render
1315         for(std::unordered_map<std::string, core::vector2d<v3f>>::const_iterator
1316                         ii = m_bone_position.begin(); ii != m_bone_position.end(); ++ii) {
1317                 std::string bone_name = (*ii).first;
1318                 v3f bone_pos = (*ii).second.X;
1319                 v3f bone_rot = (*ii).second.Y;
1320                 irr::scene::IBoneSceneNode* bone = m_animated_meshnode->getJointNode(bone_name.c_str());
1321                 if(bone)
1322                 {
1323                         bone->setPosition(bone_pos);
1324                         bone->setRotation(bone_rot);
1325                 }
1326         }
1327 }
1328
1329 void GenericCAO::updateAttachments()
1330 {
1331         ClientActiveObject *parent = getParent();
1332
1333         m_attached_to_local = parent && parent->isLocalPlayer();
1334
1335         /*
1336         Following cases exist:
1337                 m_attachment_parent_id == 0 && !parent
1338                         This object is not attached
1339                 m_attachment_parent_id != 0 && parent
1340                         This object is attached
1341                 m_attachment_parent_id != 0 && !parent
1342                         This object will be attached as soon the parent is known
1343                 m_attachment_parent_id == 0 && parent
1344                         Impossible case
1345         */
1346
1347         if (!parent) { // Detach or don't attach
1348                 if (m_matrixnode) {
1349                         v3f old_pos = m_matrixnode->getAbsolutePosition();
1350                         m_matrixnode->setParent(m_smgr->getRootSceneNode());
1351                         getPosRotMatrix().setTranslation(old_pos);
1352                         m_matrixnode->updateAbsolutePosition();
1353                 }
1354         }
1355         else // Attach
1356         {
1357                 scene::ISceneNode *parent_node = parent->getSceneNode();
1358                 scene::IAnimatedMeshSceneNode *parent_animated_mesh_node =
1359                                 parent->getAnimatedMeshSceneNode();
1360                 if (parent_animated_mesh_node && !m_attachment_bone.empty()) {
1361                         parent_node = parent_animated_mesh_node->getJointNode(m_attachment_bone.c_str());
1362                 }
1363
1364                 if (m_matrixnode && parent_node) {
1365                         m_matrixnode->setParent(parent_node);
1366                         getPosRotMatrix().setTranslation(m_attachment_position);
1367                         //setPitchYawRoll(getPosRotMatrix(), m_attachment_rotation);
1368                         // use Irrlicht eulers instead
1369                         getPosRotMatrix().setRotationDegrees(m_attachment_rotation);
1370                         m_matrixnode->updateAbsolutePosition();
1371                 }
1372         }
1373         if (m_is_local_player) {
1374                 LocalPlayer *player = m_env->getLocalPlayer();
1375                 player->isAttached = parent;
1376                 player->parent = parent;
1377         }
1378 }
1379
1380 void GenericCAO::processMessage(const std::string &data)
1381 {
1382         //infostream<<"GenericCAO: Got message"<<std::endl;
1383         std::istringstream is(data, std::ios::binary);
1384         // command
1385         u8 cmd = readU8(is);
1386         if (cmd == GENERIC_CMD_SET_PROPERTIES) {
1387                 m_prop = gob_read_set_properties(is);
1388
1389                 m_selection_box = m_prop.selectionbox;
1390                 m_selection_box.MinEdge *= BS;
1391                 m_selection_box.MaxEdge *= BS;
1392
1393                 m_tx_size.X = 1.0 / m_prop.spritediv.X;
1394                 m_tx_size.Y = 1.0 / m_prop.spritediv.Y;
1395
1396                 if(!m_initial_tx_basepos_set){
1397                         m_initial_tx_basepos_set = true;
1398                         m_tx_basepos = m_prop.initial_sprite_basepos;
1399                 }
1400                 if (m_is_local_player) {
1401                         LocalPlayer *player = m_env->getLocalPlayer();
1402                         player->makes_footstep_sound = m_prop.makes_footstep_sound;
1403                         aabb3f collision_box = m_prop.collisionbox;
1404                         collision_box.MinEdge *= BS;
1405                         collision_box.MaxEdge *= BS;
1406                         player->setCollisionbox(collision_box);
1407                         player->setEyeHeight(m_prop.eye_height);
1408                         player->setZoomFOV(m_prop.zoom_fov);
1409                 }
1410
1411                 if ((m_is_player && !m_is_local_player) && m_prop.nametag.empty())
1412                         m_prop.nametag = m_name;
1413
1414                 expireVisuals();
1415         } else if (cmd == GENERIC_CMD_UPDATE_POSITION) {
1416                 // Not sent by the server if this object is an attachment.
1417                 // We might however get here if the server notices the object being detached before the client.
1418                 m_position = readV3F32(is);
1419                 m_velocity = readV3F32(is);
1420                 m_acceleration = readV3F32(is);
1421
1422                 if (std::fabs(m_prop.automatic_rotate) < 0.001f)
1423                         m_rotation = readV3F32(is);
1424                 else
1425                         readV3F32(is);
1426
1427                 m_rotation = wrapDegrees_0_360_v3f(m_rotation);
1428                 bool do_interpolate = readU8(is);
1429                 bool is_end_position = readU8(is);
1430                 float update_interval = readF32(is);
1431
1432                 // Place us a bit higher if we're physical, to not sink into
1433                 // the ground due to sucky collision detection...
1434                 if(m_prop.physical)
1435                         m_position += v3f(0,0.002,0);
1436
1437                 if(getParent() != NULL) // Just in case
1438                         return;
1439
1440                 if(do_interpolate)
1441                 {
1442                         if(!m_prop.physical)
1443                                 pos_translator.update(m_position, is_end_position, update_interval);
1444                 } else {
1445                         pos_translator.init(m_position);
1446                 }
1447                 rot_translator.update(m_rotation, false, update_interval);
1448                 updateNodePos();
1449         } else if (cmd == GENERIC_CMD_SET_TEXTURE_MOD) {
1450                 std::string mod = deSerializeString(is);
1451
1452                 // immediatly reset a engine issued texture modifier if a mod sends a different one
1453                 if (m_reset_textures_timer > 0) {
1454                         m_reset_textures_timer = -1;
1455                         updateTextures(m_previous_texture_modifier);
1456                 }
1457                 updateTextures(mod);
1458         } else if (cmd == GENERIC_CMD_SET_SPRITE) {
1459                 v2s16 p = readV2S16(is);
1460                 int num_frames = readU16(is);
1461                 float framelength = readF32(is);
1462                 bool select_horiz_by_yawpitch = readU8(is);
1463
1464                 m_tx_basepos = p;
1465                 m_anim_num_frames = num_frames;
1466                 m_anim_framelength = framelength;
1467                 m_tx_select_horiz_by_yawpitch = select_horiz_by_yawpitch;
1468
1469                 updateTexturePos();
1470         } else if (cmd == GENERIC_CMD_SET_PHYSICS_OVERRIDE) {
1471                 float override_speed = readF32(is);
1472                 float override_jump = readF32(is);
1473                 float override_gravity = readF32(is);
1474                 // these are sent inverted so we get true when the server sends nothing
1475                 bool sneak = !readU8(is);
1476                 bool sneak_glitch = !readU8(is);
1477                 bool new_move = !readU8(is);
1478
1479
1480                 if(m_is_local_player)
1481                 {
1482                         LocalPlayer *player = m_env->getLocalPlayer();
1483                         player->physics_override_speed = override_speed;
1484                         player->physics_override_jump = override_jump;
1485                         player->physics_override_gravity = override_gravity;
1486                         player->physics_override_sneak = sneak;
1487                         player->physics_override_sneak_glitch = sneak_glitch;
1488                         player->physics_override_new_move = new_move;
1489                 }
1490         } else if (cmd == GENERIC_CMD_SET_ANIMATION) {
1491                 // TODO: change frames send as v2s32 value
1492                 v2f range = readV2F32(is);
1493                 if (!m_is_local_player) {
1494                         m_animation_range = v2s32((s32)range.X, (s32)range.Y);
1495                         m_animation_speed = readF32(is);
1496                         m_animation_blend = readF32(is);
1497                         // these are sent inverted so we get true when the server sends nothing
1498                         m_animation_loop = !readU8(is);
1499                         updateAnimation();
1500                 } else {
1501                         LocalPlayer *player = m_env->getLocalPlayer();
1502                         if(player->last_animation == NO_ANIM)
1503                         {
1504                                 m_animation_range = v2s32((s32)range.X, (s32)range.Y);
1505                                 m_animation_speed = readF32(is);
1506                                 m_animation_blend = readF32(is);
1507                                 // these are sent inverted so we get true when the server sends nothing
1508                                 m_animation_loop = !readU8(is);
1509                         }
1510                         // update animation only if local animations present
1511                         // and received animation is unknown (except idle animation)
1512                         bool is_known = false;
1513                         for (int i = 1;i<4;i++)
1514                         {
1515                                 if(m_animation_range.Y == player->local_animations[i].Y)
1516                                         is_known = true;
1517                         }
1518                         if(!is_known ||
1519                                         (player->local_animations[1].Y + player->local_animations[2].Y < 1))
1520                         {
1521                                         updateAnimation();
1522                         }
1523                 }
1524         } else if (cmd == GENERIC_CMD_SET_ANIMATION_SPEED) {
1525                 m_animation_speed = readF32(is);
1526                 updateAnimationSpeed();
1527         } else if (cmd == GENERIC_CMD_SET_BONE_POSITION) {
1528                 std::string bone = deSerializeString(is);
1529                 v3f position = readV3F32(is);
1530                 v3f rotation = readV3F32(is);
1531                 m_bone_position[bone] = core::vector2d<v3f>(position, rotation);
1532
1533                 updateBonePosition();
1534         } else if (cmd == GENERIC_CMD_ATTACH_TO) {
1535                 u16 parent_id = readS16(is);
1536                 std::string bone = deSerializeString(is);
1537                 v3f position = readV3F32(is);
1538                 v3f rotation = readV3F32(is);
1539
1540                 setAttachment(parent_id, bone, position, rotation);
1541
1542                 // localplayer itself can't be attached to localplayer
1543                 if (!m_is_local_player)
1544                         m_is_visible = !m_attached_to_local;
1545         } else if (cmd == GENERIC_CMD_PUNCHED) {
1546                 u16 result_hp = readU16(is);
1547
1548                 // Use this instead of the send damage to not interfere with prediction
1549                 s32 damage = (s32)m_hp - (s32)result_hp;
1550
1551                 m_hp = result_hp;
1552
1553                 if (m_is_local_player)
1554                         m_env->getLocalPlayer()->hp = m_hp;
1555
1556                 if (damage > 0)
1557                 {
1558                         if (m_hp == 0)
1559                         {
1560                                 // TODO: Execute defined fast response
1561                                 // As there is no definition, make a smoke puff
1562                                 ClientSimpleObject *simple = createSmokePuff(
1563                                                 m_smgr, m_env, m_position,
1564                                                 v2f(m_prop.visual_size.X, m_prop.visual_size.Y) * BS);
1565                                 m_env->addSimpleObject(simple);
1566                         } else if (m_reset_textures_timer < 0) {
1567                                 // TODO: Execute defined fast response
1568                                 // Flashing shall suffice as there is no definition
1569                                 m_reset_textures_timer = 0.05;
1570                                 if(damage >= 2)
1571                                         m_reset_textures_timer += 0.05 * damage;
1572                                 updateTextures(m_current_texture_modifier + "^[brighten");
1573                         }
1574                 }
1575
1576                 if (m_hp == 0) {
1577                         // Same as 'Server::DiePlayer'
1578                         clearParentAttachment();
1579                         // Same as 'ObjectRef::l_remove'
1580                         if (!m_is_player)
1581                                 clearChildAttachments();
1582                 }
1583         } else if (cmd == GENERIC_CMD_UPDATE_ARMOR_GROUPS) {
1584                 m_armor_groups.clear();
1585                 int armor_groups_size = readU16(is);
1586                 for(int i=0; i<armor_groups_size; i++)
1587                 {
1588                         std::string name = deSerializeString(is);
1589                         int rating = readS16(is);
1590                         m_armor_groups[name] = rating;
1591                 }
1592         } else if (cmd == GENERIC_CMD_UPDATE_NAMETAG_ATTRIBUTES) {
1593                 // Deprecated, for backwards compatibility only.
1594                 readU8(is); // version
1595                 m_prop.nametag_color = readARGB8(is);
1596                 if (m_nametag != NULL) {
1597                         m_nametag->nametag_color = m_prop.nametag_color;
1598                         v3f pos;
1599                         pos.Y = m_prop.collisionbox.MaxEdge.Y + 0.3f;
1600                         m_nametag->nametag_pos = pos;
1601                 }
1602         } else if (cmd == GENERIC_CMD_SPAWN_INFANT) {
1603                 u16 child_id = readU16(is);
1604                 u8 type = readU8(is); // maybe this will be useful later
1605                 (void)type;
1606
1607                 addAttachmentChild(child_id);
1608         } else {
1609                 warningstream << FUNCTION_NAME
1610                         << ": unknown command or outdated client \""
1611                         << +cmd << "\"" << std::endl;
1612         }
1613 }
1614
1615 /* \pre punchitem != NULL
1616  */
1617 bool GenericCAO::directReportPunch(v3f dir, const ItemStack *punchitem,
1618                 float time_from_last_punch)
1619 {
1620         assert(punchitem);      // pre-condition
1621         const ToolCapabilities *toolcap =
1622                         &punchitem->getToolCapabilities(m_client->idef());
1623         PunchDamageResult result = getPunchDamage(
1624                         m_armor_groups,
1625                         toolcap,
1626                         punchitem,
1627                         time_from_last_punch);
1628
1629         if(result.did_punch && result.damage != 0)
1630         {
1631                 if(result.damage < m_hp)
1632                 {
1633                         m_hp -= result.damage;
1634                 } else {
1635                         m_hp = 0;
1636                         // TODO: Execute defined fast response
1637                         // As there is no definition, make a smoke puff
1638                         ClientSimpleObject *simple = createSmokePuff(
1639                                         m_smgr, m_env, m_position,
1640                                         v2f(m_prop.visual_size.X, m_prop.visual_size.Y) * BS);
1641                         m_env->addSimpleObject(simple);
1642                 }
1643                 // TODO: Execute defined fast response
1644                 // Flashing shall suffice as there is no definition
1645                 if (m_reset_textures_timer < 0) {
1646                         m_reset_textures_timer = 0.05;
1647                         if (result.damage >= 2)
1648                                 m_reset_textures_timer += 0.05 * result.damage;
1649                         updateTextures(m_current_texture_modifier + "^[brighten");
1650                 }
1651         }
1652
1653         return false;
1654 }
1655
1656 std::string GenericCAO::debugInfoText()
1657 {
1658         std::ostringstream os(std::ios::binary);
1659         os<<"GenericCAO hp="<<m_hp<<"\n";
1660         os<<"armor={";
1661         for(ItemGroupList::const_iterator i = m_armor_groups.begin();
1662                         i != m_armor_groups.end(); ++i)
1663         {
1664                 os<<i->first<<"="<<i->second<<", ";
1665         }
1666         os<<"}";
1667         return os.str();
1668 }
1669
1670 // Prototype
1671 GenericCAO proto_GenericCAO(NULL, NULL);