10aa22e7e02f2dc568478a013133e12a765aa576
[oweals/minetest.git] / src / 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 "tile.h"
22 #include "environment.h"
23 #include "collision.h"
24 #include "settings.h"
25 #include <ICameraSceneNode.h>
26 #include <ITextSceneNode.h>
27 #include <IBillboardSceneNode.h>
28 #include "serialization.h" // For decompressZlib
29 #include "gamedef.h"
30 #include "clientobject.h"
31 #include "content_object.h"
32 #include "mesh.h"
33 #include "itemdef.h"
34 #include "tool.h"
35 #include "content_cso.h"
36 #include "sound.h"
37 #include "nodedef.h"
38 #include "localplayer.h"
39 #include "util/numeric.h" // For IntervalLimiter
40 #include "util/serialize.h"
41 #include "util/mathconstants.h"
42 #include "map.h"
43 #include "main.h" // g_settings
44 #include "camera.h" // CameraModes
45 #include <IMeshManipulator.h>
46 #include <IAnimatedMeshSceneNode.h>
47 #include <IBoneSceneNode.h>
48
49 class Settings;
50 struct ToolCapabilities;
51
52 #define PP(x) "("<<(x).X<<","<<(x).Y<<","<<(x).Z<<")"
53
54 std::map<u16, ClientActiveObject::Factory> ClientActiveObject::m_types;
55
56 /*
57         SmoothTranslator
58 */
59
60 struct SmoothTranslator
61 {
62         v3f vect_old;
63         v3f vect_show;
64         v3f vect_aim;
65         f32 anim_counter;
66         f32 anim_time;
67         f32 anim_time_counter;
68         bool aim_is_end;
69
70         SmoothTranslator():
71                 vect_old(0,0,0),
72                 vect_show(0,0,0),
73                 vect_aim(0,0,0),
74                 anim_counter(0),
75                 anim_time(0),
76                 anim_time_counter(0),
77                 aim_is_end(true)
78         {}
79
80         void init(v3f vect)
81         {
82                 vect_old = vect;
83                 vect_show = vect;
84                 vect_aim = vect;
85                 anim_counter = 0;
86                 anim_time = 0;
87                 anim_time_counter = 0;
88                 aim_is_end = true;
89         }
90
91         void sharpen()
92         {
93                 init(vect_show);
94         }
95
96         void update(v3f vect_new, bool is_end_position=false, float update_interval=-1)
97         {
98                 aim_is_end = is_end_position;
99                 vect_old = vect_show;
100                 vect_aim = vect_new;
101                 if(update_interval > 0){
102                         anim_time = update_interval;
103                 } else {
104                         if(anim_time < 0.001 || anim_time > 1.0)
105                                 anim_time = anim_time_counter;
106                         else
107                                 anim_time = anim_time * 0.9 + anim_time_counter * 0.1;
108                 }
109                 anim_time_counter = 0;
110                 anim_counter = 0;
111         }
112
113         void translate(f32 dtime)
114         {
115                 anim_time_counter = anim_time_counter + dtime;
116                 anim_counter = anim_counter + dtime;
117                 v3f vect_move = vect_aim - vect_old;
118                 f32 moveratio = 1.0;
119                 if(anim_time > 0.001)
120                         moveratio = anim_time_counter / anim_time;
121                 // Move a bit less than should, to avoid oscillation
122                 moveratio = moveratio * 0.8;
123                 float move_end = 1.5;
124                 if(aim_is_end)
125                         move_end = 1.0;
126                 if(moveratio > move_end)
127                         moveratio = move_end;
128                 vect_show = vect_old + vect_move * moveratio;
129         }
130
131         bool is_moving()
132         {
133                 return ((anim_time_counter / anim_time) < 1.4);
134         }
135 };
136
137 /*
138         Other stuff
139 */
140
141 static void setBillboardTextureMatrix(scene::IBillboardSceneNode *bill,
142                 float txs, float tys, int col, int row)
143 {
144         video::SMaterial& material = bill->getMaterial(0);
145         core::matrix4& matrix = material.getTextureMatrix(0);
146         matrix.setTextureTranslate(txs*col, tys*row);
147         matrix.setTextureScale(txs, tys);
148 }
149
150 /*
151         TestCAO
152 */
153
154 class TestCAO : public ClientActiveObject
155 {
156 public:
157         TestCAO(IGameDef *gamedef, ClientEnvironment *env);
158         virtual ~TestCAO();
159         
160         u8 getType() const
161         {
162                 return ACTIVEOBJECT_TYPE_TEST;
163         }
164         
165         static ClientActiveObject* create(IGameDef *gamedef, ClientEnvironment *env);
166
167         void addToScene(scene::ISceneManager *smgr, ITextureSource *tsrc,
168                         IrrlichtDevice *irr);
169         void removeFromScene(bool permanent);
170         void updateLight(u8 light_at_pos);
171         v3s16 getLightPosition();
172         void updateNodePos();
173
174         void step(float dtime, ClientEnvironment *env);
175
176         void processMessage(const std::string &data);
177
178         bool getCollisionBox(aabb3f *toset) { return false; }
179 private:
180         scene::IMeshSceneNode *m_node;
181         v3f m_position;
182 };
183
184 // Prototype
185 TestCAO proto_TestCAO(NULL, NULL);
186
187 TestCAO::TestCAO(IGameDef *gamedef, ClientEnvironment *env):
188         ClientActiveObject(0, gamedef, env),
189         m_node(NULL),
190         m_position(v3f(0,10*BS,0))
191 {
192         ClientActiveObject::registerType(getType(), create);
193 }
194
195 TestCAO::~TestCAO()
196 {
197 }
198
199 ClientActiveObject* TestCAO::create(IGameDef *gamedef, ClientEnvironment *env)
200 {
201         return new TestCAO(gamedef, env);
202 }
203
204 void TestCAO::addToScene(scene::ISceneManager *smgr, ITextureSource *tsrc,
205                         IrrlichtDevice *irr)
206 {
207         if(m_node != NULL)
208                 return;
209         
210         //video::IVideoDriver* driver = smgr->getVideoDriver();
211         
212         scene::SMesh *mesh = new scene::SMesh();
213         scene::IMeshBuffer *buf = new scene::SMeshBuffer();
214         video::SColor c(255,255,255,255);
215         video::S3DVertex vertices[4] =
216         {
217                 video::S3DVertex(-BS/2,-BS/4,0, 0,0,0, c, 0,1),
218                 video::S3DVertex(BS/2,-BS/4,0, 0,0,0, c, 1,1),
219                 video::S3DVertex(BS/2,BS/4,0, 0,0,0, c, 1,0),
220                 video::S3DVertex(-BS/2,BS/4,0, 0,0,0, c, 0,0),
221         };
222         u16 indices[] = {0,1,2,2,3,0};
223         buf->append(vertices, 4, indices, 6);
224         // Set material
225         buf->getMaterial().setFlag(video::EMF_LIGHTING, false);
226         buf->getMaterial().setFlag(video::EMF_BACK_FACE_CULLING, false);
227         buf->getMaterial().setTexture(0, tsrc->getTexture("rat.png"));
228         buf->getMaterial().setFlag(video::EMF_BILINEAR_FILTER, false);
229         buf->getMaterial().setFlag(video::EMF_FOG_ENABLE, true);
230         buf->getMaterial().MaterialType = video::EMT_TRANSPARENT_ALPHA_CHANNEL;
231         // Add to mesh
232         mesh->addMeshBuffer(buf);
233         buf->drop();
234         m_node = smgr->addMeshSceneNode(mesh, NULL);
235         mesh->drop();
236         updateNodePos();
237 }
238
239 void TestCAO::removeFromScene(bool permanent)
240 {
241         if(m_node == NULL)
242                 return;
243
244         m_node->remove();
245         m_node = NULL;
246 }
247
248 void TestCAO::updateLight(u8 light_at_pos)
249 {
250 }
251
252 v3s16 TestCAO::getLightPosition()
253 {
254         return floatToInt(m_position, BS);
255 }
256
257 void TestCAO::updateNodePos()
258 {
259         if(m_node == NULL)
260                 return;
261
262         m_node->setPosition(m_position);
263         //m_node->setRotation(v3f(0, 45, 0));
264 }
265
266 void TestCAO::step(float dtime, ClientEnvironment *env)
267 {
268         if(m_node)
269         {
270                 v3f rot = m_node->getRotation();
271                 //infostream<<"dtime="<<dtime<<", rot.Y="<<rot.Y<<std::endl;
272                 rot.Y += dtime * 180;
273                 m_node->setRotation(rot);
274         }
275 }
276
277 void TestCAO::processMessage(const std::string &data)
278 {
279         infostream<<"TestCAO: Got data: "<<data<<std::endl;
280         std::istringstream is(data, std::ios::binary);
281         u16 cmd;
282         is>>cmd;
283         if(cmd == 0)
284         {
285                 v3f newpos;
286                 is>>newpos.X;
287                 is>>newpos.Y;
288                 is>>newpos.Z;
289                 m_position = newpos;
290                 updateNodePos();
291         }
292 }
293
294 /*
295         ItemCAO
296 */
297
298 class ItemCAO : public ClientActiveObject
299 {
300 public:
301         ItemCAO(IGameDef *gamedef, ClientEnvironment *env);
302         virtual ~ItemCAO();
303         
304         u8 getType() const
305         {
306                 return ACTIVEOBJECT_TYPE_ITEM;
307         }
308         
309         static ClientActiveObject* create(IGameDef *gamedef, ClientEnvironment *env);
310
311         void addToScene(scene::ISceneManager *smgr, ITextureSource *tsrc,
312                         IrrlichtDevice *irr);
313         void removeFromScene(bool permanent);
314         void updateLight(u8 light_at_pos);
315         v3s16 getLightPosition();
316         void updateNodePos();
317         void updateInfoText();
318         void updateTexture();
319
320         void step(float dtime, ClientEnvironment *env);
321
322         void processMessage(const std::string &data);
323
324         void initialize(const std::string &data);
325         
326         core::aabbox3d<f32>* getSelectionBox()
327                 {return &m_selection_box;}
328         v3f getPosition()
329                 {return m_position;}
330         
331         std::string infoText()
332                 {return m_infotext;}
333
334         bool getCollisionBox(aabb3f *toset) { return false; }
335 private:
336         core::aabbox3d<f32> m_selection_box;
337         scene::IMeshSceneNode *m_node;
338         v3f m_position;
339         std::string m_itemstring;
340         std::string m_infotext;
341 };
342
343 #include "inventory.h"
344
345 // Prototype
346 ItemCAO proto_ItemCAO(NULL, NULL);
347
348 ItemCAO::ItemCAO(IGameDef *gamedef, ClientEnvironment *env):
349         ClientActiveObject(0, gamedef, env),
350         m_selection_box(-BS/3.,0.0,-BS/3., BS/3.,BS*2./3.,BS/3.),
351         m_node(NULL),
352         m_position(v3f(0,10*BS,0))
353 {
354         if(!gamedef && !env)
355         {
356                 ClientActiveObject::registerType(getType(), create);
357         }
358 }
359
360 ItemCAO::~ItemCAO()
361 {
362 }
363
364 ClientActiveObject* ItemCAO::create(IGameDef *gamedef, ClientEnvironment *env)
365 {
366         return new ItemCAO(gamedef, env);
367 }
368
369 void ItemCAO::addToScene(scene::ISceneManager *smgr, ITextureSource *tsrc,
370                         IrrlichtDevice *irr)
371 {
372         if(m_node != NULL)
373                 return;
374         
375         //video::IVideoDriver* driver = smgr->getVideoDriver();
376         
377         scene::SMesh *mesh = new scene::SMesh();
378         scene::IMeshBuffer *buf = new scene::SMeshBuffer();
379         video::SColor c(255,255,255,255);
380         video::S3DVertex vertices[4] =
381         {
382                 /*video::S3DVertex(-BS/2,-BS/4,0, 0,0,0, c, 0,1),
383                 video::S3DVertex(BS/2,-BS/4,0, 0,0,0, c, 1,1),
384                 video::S3DVertex(BS/2,BS/4,0, 0,0,0, c, 1,0),
385                 video::S3DVertex(-BS/2,BS/4,0, 0,0,0, c, 0,0),*/
386                 video::S3DVertex(BS/3.,0,0, 0,0,0, c, 0,1),
387                 video::S3DVertex(-BS/3.,0,0, 0,0,0, c, 1,1),
388                 video::S3DVertex(-BS/3.,0+BS*2./3.,0, 0,0,0, c, 1,0),
389                 video::S3DVertex(BS/3.,0+BS*2./3.,0, 0,0,0, c, 0,0),
390         };
391         u16 indices[] = {0,1,2,2,3,0};
392         buf->append(vertices, 4, indices, 6);
393         // Set material
394         buf->getMaterial().setFlag(video::EMF_LIGHTING, false);
395         buf->getMaterial().setFlag(video::EMF_BACK_FACE_CULLING, false);
396         // Initialize with a generated placeholder texture
397         buf->getMaterial().setTexture(0, tsrc->getTexture(""));
398         buf->getMaterial().setFlag(video::EMF_BILINEAR_FILTER, false);
399         buf->getMaterial().setFlag(video::EMF_FOG_ENABLE, true);
400         buf->getMaterial().MaterialType = video::EMT_TRANSPARENT_ALPHA_CHANNEL;
401         // Add to mesh
402         mesh->addMeshBuffer(buf);
403         buf->drop();
404         m_node = smgr->addMeshSceneNode(mesh, NULL);
405         mesh->drop();
406         updateNodePos();
407
408         /*
409                 Update image of node
410         */
411
412         updateTexture();
413 }
414
415 void ItemCAO::removeFromScene(bool permanent)
416 {
417         if(m_node == NULL)
418                 return;
419
420         m_node->remove();
421         m_node = NULL;
422 }
423
424 void ItemCAO::updateLight(u8 light_at_pos)
425 {
426         if(m_node == NULL)
427                 return;
428
429         u8 li = decode_light(light_at_pos);
430         video::SColor color(255,li,li,li);
431         setMeshColor(m_node->getMesh(), color);
432 }
433
434 v3s16 ItemCAO::getLightPosition()
435 {
436         return floatToInt(m_position + v3f(0,0.5*BS,0), BS);
437 }
438
439 void ItemCAO::updateNodePos()
440 {
441         if(m_node == NULL)
442                 return;
443
444         m_node->setPosition(m_position);
445 }
446
447 void ItemCAO::updateInfoText()
448 {
449         try{
450                 IItemDefManager *idef = m_gamedef->idef();
451                 ItemStack item;
452                 item.deSerialize(m_itemstring, idef);
453                 if(item.isKnown(idef))
454                         m_infotext = item.getDefinition(idef).description;
455                 else
456                         m_infotext = "Unknown item: '" + m_itemstring + "'";
457                 if(item.count >= 2)
458                         m_infotext += " (" + itos(item.count) + ")";
459         }
460         catch(SerializationError &e)
461         {
462                 m_infotext = "Unknown item: '" + m_itemstring + "'";
463         }
464 }
465
466 void ItemCAO::updateTexture()
467 {
468         if(m_node == NULL)
469                 return;
470
471         // Create an inventory item to see what is its image
472         std::istringstream is(m_itemstring, std::ios_base::binary);
473         video::ITexture *texture = NULL;
474         try{
475                 IItemDefManager *idef = m_gamedef->idef();
476                 ItemStack item;
477                 item.deSerialize(is, idef);
478                 texture = idef->getInventoryTexture(item.getDefinition(idef).name, m_gamedef);
479         }
480         catch(SerializationError &e)
481         {
482                 infostream<<"WARNING: "<<__FUNCTION_NAME
483                                 <<": error deSerializing itemstring \""
484                                 <<m_itemstring<<std::endl;
485         }
486         
487         // Set meshbuffer texture
488         m_node->getMaterial(0).setTexture(0, texture);
489 }
490
491
492 void ItemCAO::step(float dtime, ClientEnvironment *env)
493 {
494         if(m_node)
495         {
496                 /*v3f rot = m_node->getRotation();
497                 rot.Y += dtime * 120;
498                 m_node->setRotation(rot);*/
499                 LocalPlayer *player = env->getLocalPlayer();
500                 assert(player);
501                 v3f rot = m_node->getRotation();
502                 rot.Y = 180.0 - (player->getYaw());
503                 m_node->setRotation(rot);
504         }
505 }
506
507 void ItemCAO::processMessage(const std::string &data)
508 {
509         //infostream<<"ItemCAO: Got message"<<std::endl;
510         std::istringstream is(data, std::ios::binary);
511         // command
512         u8 cmd = readU8(is);
513         if(cmd == 0)
514         {
515                 // pos
516                 m_position = readV3F1000(is);
517                 updateNodePos();
518         }
519         if(cmd == 1)
520         {
521                 // itemstring
522                 m_itemstring = deSerializeString(is);
523                 updateInfoText();
524                 updateTexture();
525         }
526 }
527
528 void ItemCAO::initialize(const std::string &data)
529 {
530         infostream<<"ItemCAO: Got init data"<<std::endl;
531         
532         {
533                 std::istringstream is(data, std::ios::binary);
534                 // version
535                 u8 version = readU8(is);
536                 // check version
537                 if(version != 0)
538                         return;
539                 // pos
540                 m_position = readV3F1000(is);
541                 // itemstring
542                 m_itemstring = deSerializeString(is);
543         }
544         
545         updateNodePos();
546         updateInfoText();
547 }
548
549 /*
550         GenericCAO
551 */
552
553 #include "genericobject.h"
554
555 class GenericCAO : public ClientActiveObject
556 {
557 private:
558         // Only set at initialization
559         std::string m_name;
560         bool m_is_player;
561         bool m_is_local_player;
562         int m_id;
563         // Property-ish things
564         ObjectProperties m_prop;
565         //
566         scene::ISceneManager *m_smgr;
567         IrrlichtDevice *m_irr;
568         core::aabbox3d<f32> m_selection_box;
569         scene::IMeshSceneNode *m_meshnode;
570         scene::IAnimatedMeshSceneNode *m_animated_meshnode;
571         scene::IBillboardSceneNode *m_spritenode;
572         scene::ITextSceneNode* m_textnode;
573         v3f m_position;
574         v3f m_velocity;
575         v3f m_acceleration;
576         float m_yaw;
577         s16 m_hp;
578         SmoothTranslator pos_translator;
579         // Spritesheet/animation stuff
580         v2f m_tx_size;
581         v2s16 m_tx_basepos;
582         bool m_initial_tx_basepos_set;
583         bool m_tx_select_horiz_by_yawpitch;
584         v2s32 m_animation_range;
585         int m_animation_speed;
586         int m_animation_blend;
587         std::map<std::string, core::vector2d<v3f> > m_bone_position; // stores position and rotation for each bone name
588         std::string m_attachment_bone;
589         v3f m_attachment_position;
590         v3f m_attachment_rotation;
591         bool m_attached_to_local;
592         int m_anim_frame;
593         int m_anim_num_frames;
594         float m_anim_framelength;
595         float m_anim_timer;
596         ItemGroupList m_armor_groups;
597         float m_reset_textures_timer;
598         bool m_visuals_expired;
599         float m_step_distance_counter;
600         u8 m_last_light;
601         bool m_is_visible;
602
603 public:
604         GenericCAO(IGameDef *gamedef, ClientEnvironment *env):
605                 ClientActiveObject(0, gamedef, env),
606                 //
607                 m_is_player(false),
608                 m_is_local_player(false),
609                 m_id(0),
610                 //
611                 m_smgr(NULL),
612                 m_irr(NULL),
613                 m_selection_box(-BS/3.,-BS/3.,-BS/3., BS/3.,BS/3.,BS/3.),
614                 m_meshnode(NULL),
615                 m_animated_meshnode(NULL),
616                 m_spritenode(NULL),
617                 m_textnode(NULL),
618                 m_position(v3f(0,10*BS,0)),
619                 m_velocity(v3f(0,0,0)),
620                 m_acceleration(v3f(0,0,0)),
621                 m_yaw(0),
622                 m_hp(1),
623                 m_tx_size(1,1),
624                 m_tx_basepos(0,0),
625                 m_initial_tx_basepos_set(false),
626                 m_tx_select_horiz_by_yawpitch(false),
627                 m_animation_range(v2s32(0,0)),
628                 m_animation_speed(15),
629                 m_animation_blend(0),
630                 m_bone_position(std::map<std::string, core::vector2d<v3f> >()),
631                 m_attachment_bone(""),
632                 m_attachment_position(v3f(0,0,0)),
633                 m_attachment_rotation(v3f(0,0,0)),
634                 m_attached_to_local(false),
635                 m_anim_frame(0),
636                 m_anim_num_frames(1),
637                 m_anim_framelength(0.2),
638                 m_anim_timer(0),
639                 m_reset_textures_timer(-1),
640                 m_visuals_expired(false),
641                 m_step_distance_counter(0),
642                 m_last_light(255),
643                 m_is_visible(false)
644         {
645                 if(gamedef == NULL)
646                         ClientActiveObject::registerType(getType(), create);
647         }
648
649         bool getCollisionBox(aabb3f *toset) {
650                 if (m_prop.physical) {
651                         //update collision box
652                         toset->MinEdge = m_prop.collisionbox.MinEdge * BS;
653                         toset->MaxEdge = m_prop.collisionbox.MaxEdge * BS;
654
655                         toset->MinEdge += m_position;
656                         toset->MaxEdge += m_position;
657
658                         return true;
659                 }
660
661                 return false;
662         }
663
664         bool collideWithObjects() {
665                 return m_prop.collideWithObjects;
666         }
667
668         void initialize(const std::string &data)
669         {
670                 infostream<<"GenericCAO: Got init data"<<std::endl;
671                 std::istringstream is(data, std::ios::binary);
672                 int num_messages = 0;
673                 // version
674                 u8 version = readU8(is);
675                 // check version
676                 if(version == 1) // In PROTOCOL_VERSION 14
677                 {
678                         m_name = deSerializeString(is);
679                         m_is_player = readU8(is);
680                         m_id = readS16(is);
681                         m_position = readV3F1000(is);
682                         m_yaw = readF1000(is);
683                         m_hp = readS16(is);
684                         num_messages = readU8(is);
685                 }
686                 else if(version == 0) // In PROTOCOL_VERSION 13
687                 {
688                         m_name = deSerializeString(is);
689                         m_is_player = readU8(is);
690                         m_position = readV3F1000(is);
691                         m_yaw = readF1000(is);
692                         m_hp = readS16(is);
693                         num_messages = readU8(is);
694                 }
695                 else
696                 {
697                         errorstream<<"GenericCAO: Unsupported init data version"
698                                         <<std::endl;
699                         return;
700                 }
701
702                 for(int i=0; i<num_messages; i++){
703                         std::string message = deSerializeLongString(is);
704                         processMessage(message);
705                 }
706
707                 pos_translator.init(m_position);
708                 updateNodePos();
709                 
710                 if(m_is_player){
711                         Player *player = m_env->getPlayer(m_name.c_str());
712                         if(player && player->isLocal()){
713                                 m_is_local_player = true;
714                         }
715                         m_env->addPlayerName(m_name.c_str());
716                 }
717         }
718
719         ~GenericCAO()
720         {
721                 if(m_is_player){
722                         m_env->removePlayerName(m_name.c_str());
723                 }
724         }
725
726         static ClientActiveObject* create(IGameDef *gamedef, ClientEnvironment *env)
727         {
728                 return new GenericCAO(gamedef, env);
729         }
730
731         u8 getType() const
732         {
733                 return ACTIVEOBJECT_TYPE_GENERIC;
734         }
735         core::aabbox3d<f32>* getSelectionBox()
736         {
737                 if(!m_prop.is_visible || !m_is_visible || m_is_local_player || getParent() != NULL)
738                         return NULL;
739                 return &m_selection_box;
740         }
741         v3f getPosition()
742         {
743                 if(getParent() != NULL){
744                         if(m_meshnode)
745                                 return m_meshnode->getAbsolutePosition();
746                         if(m_animated_meshnode)
747                                 return m_animated_meshnode->getAbsolutePosition();
748                         if(m_spritenode)
749                                 return m_spritenode->getAbsolutePosition();
750                         return m_position;
751                 }
752                 return pos_translator.vect_show;
753         }
754
755         scene::IMeshSceneNode *getMeshSceneNode()
756         {
757                 if(m_meshnode)
758                         return m_meshnode;
759                 return NULL;
760         }
761
762         scene::IAnimatedMeshSceneNode *getAnimatedMeshSceneNode()
763         {
764                 if(m_animated_meshnode)
765                         return m_animated_meshnode;
766                 return NULL;
767         }
768
769         scene::IBillboardSceneNode *getSpriteSceneNode()
770         {
771                 if(m_spritenode)
772                         return m_spritenode;
773                 return NULL;
774         }
775
776         bool isPlayer()
777         {
778                 return m_is_player;
779         }
780
781         bool isLocalPlayer()
782         {
783                 return m_is_local_player;
784         }
785
786         void setAttachments()
787         {
788                 updateAttachments();
789         }
790
791         ClientActiveObject *getParent()
792         {
793                 ClientActiveObject *obj = NULL;
794                 for(std::vector<core::vector2d<int> >::const_iterator cii = m_env->attachment_list.begin(); cii != m_env->attachment_list.end(); cii++)
795                 {
796                         if(cii->X == getId()){ // This ID is our child
797                                 if(cii->Y > 0){ // A parent ID exists for our child
798                                         if(cii->X != cii->Y){ // The parent and child ID are not the same
799                                                 obj = m_env->getActiveObject(cii->Y);
800                                         }
801                                 }
802                                 break;
803                         }
804                 }
805                 if(obj)
806                         return obj;
807                 return NULL;
808         }
809
810         void removeFromScene(bool permanent)
811         {
812                 if(permanent) // Should be true when removing the object permanently and false when refreshing (eg: updating visuals)
813                 {
814                         // Detach this object's children
815                         for(std::vector<core::vector2d<int> >::iterator ii = m_env->attachment_list.begin(); ii != m_env->attachment_list.end(); ii++)
816                         {
817                                 if(ii->Y == getId()) // Is a child of our object
818                                 {
819                                         ii->Y = 0;
820                                         ClientActiveObject *obj = m_env->getActiveObject(ii->X); // Get the object of the child
821                                         if(obj)
822                                                 obj->setAttachments();
823                                 }
824                         }
825                         // Delete this object from the attachments list
826                         for(std::vector<core::vector2d<int> >::iterator ii = m_env->attachment_list.begin(); ii != m_env->attachment_list.end(); ii++)
827                         {
828                                 if(ii->X == getId()) // Is our object
829                                 {
830                                         m_env->attachment_list.erase(ii);
831                                         break;
832                                 }
833                         }
834                 }
835
836                 if(m_meshnode){
837                         m_meshnode->remove();
838                         m_meshnode = NULL;
839                 }
840                 if(m_animated_meshnode){
841                         m_animated_meshnode->remove();
842                         m_animated_meshnode = NULL;
843                 }
844                 if(m_spritenode){
845                         m_spritenode->remove();
846                         m_spritenode = NULL;
847                 }
848         }
849
850         void addToScene(scene::ISceneManager *smgr, ITextureSource *tsrc,
851                         IrrlichtDevice *irr)
852         {
853                 m_smgr = smgr;
854                 m_irr = irr;
855
856                 if(m_meshnode != NULL || m_animated_meshnode != NULL || m_spritenode != NULL)
857                         return;
858                 
859                 m_visuals_expired = false;
860
861                 if(!m_prop.is_visible)
862                         return;
863         
864                 //video::IVideoDriver* driver = smgr->getVideoDriver();
865
866                 if(m_prop.visual == "sprite"){
867                         infostream<<"GenericCAO::addToScene(): single_sprite"<<std::endl;
868                         m_spritenode = smgr->addBillboardSceneNode(
869                                         NULL, v2f(1, 1), v3f(0,0,0), -1);
870                         m_spritenode->setMaterialTexture(0,
871                                         tsrc->getTexture("unknown_node.png"));
872                         m_spritenode->setMaterialFlag(video::EMF_LIGHTING, false);
873                         m_spritenode->setMaterialFlag(video::EMF_BILINEAR_FILTER, false);
874                         m_spritenode->setMaterialType(video::EMT_TRANSPARENT_ALPHA_CHANNEL_REF);
875                         m_spritenode->setMaterialFlag(video::EMF_FOG_ENABLE, true);
876                         u8 li = m_last_light;
877                         m_spritenode->setColor(video::SColor(255,li,li,li));
878                         m_spritenode->setSize(m_prop.visual_size*BS);
879                         {
880                                 const float txs = 1.0 / 1;
881                                 const float tys = 1.0 / 1;
882                                 setBillboardTextureMatrix(m_spritenode,
883                                                 txs, tys, 0, 0);
884                         }
885                 }
886                 else if(m_prop.visual == "upright_sprite")
887                 {
888                         scene::SMesh *mesh = new scene::SMesh();
889                         double dx = BS*m_prop.visual_size.X/2;
890                         double dy = BS*m_prop.visual_size.Y/2;
891                         { // Front
892                         scene::IMeshBuffer *buf = new scene::SMeshBuffer();
893                         u8 li = m_last_light;
894                         video::SColor c(255,li,li,li);
895                         video::S3DVertex vertices[4] =
896                         {
897                                 video::S3DVertex(-dx,-dy,0, 0,0,0, c, 0,1),
898                                 video::S3DVertex(dx,-dy,0, 0,0,0, c, 1,1),
899                                 video::S3DVertex(dx,dy,0, 0,0,0, c, 1,0),
900                                 video::S3DVertex(-dx,dy,0, 0,0,0, c, 0,0),
901                         };
902                         u16 indices[] = {0,1,2,2,3,0};
903                         buf->append(vertices, 4, indices, 6);
904                         // Set material
905                         buf->getMaterial().setFlag(video::EMF_LIGHTING, false);
906                         buf->getMaterial().setFlag(video::EMF_BILINEAR_FILTER, false);
907                         buf->getMaterial().setFlag(video::EMF_FOG_ENABLE, true);
908                         buf->getMaterial().MaterialType = video::EMT_TRANSPARENT_ALPHA_CHANNEL;
909                         // Add to mesh
910                         mesh->addMeshBuffer(buf);
911                         buf->drop();
912                         }
913                         { // Back
914                         scene::IMeshBuffer *buf = new scene::SMeshBuffer();
915                         u8 li = m_last_light;
916                         video::SColor c(255,li,li,li);
917                         video::S3DVertex vertices[4] =
918                         {
919                                 video::S3DVertex(dx,-dy,0, 0,0,0, c, 1,1),
920                                 video::S3DVertex(-dx,-dy,0, 0,0,0, c, 0,1),
921                                 video::S3DVertex(-dx,dy,0, 0,0,0, c, 0,0),
922                                 video::S3DVertex(dx,dy,0, 0,0,0, c, 1,0),
923                         };
924                         u16 indices[] = {0,1,2,2,3,0};
925                         buf->append(vertices, 4, indices, 6);
926                         // Set material
927                         buf->getMaterial().setFlag(video::EMF_LIGHTING, false);
928                         buf->getMaterial().setFlag(video::EMF_BILINEAR_FILTER, false);
929                         buf->getMaterial().setFlag(video::EMF_FOG_ENABLE, true);
930                         buf->getMaterial().MaterialType = video::EMT_TRANSPARENT_ALPHA_CHANNEL_REF;
931                         // Add to mesh
932                         mesh->addMeshBuffer(buf);
933                         buf->drop();
934                         }
935                         m_meshnode = smgr->addMeshSceneNode(mesh, NULL);
936                         mesh->drop();
937                         // Set it to use the materials of the meshbuffers directly.
938                         // This is needed for changing the texture in the future
939                         m_meshnode->setReadOnlyMaterials(true);
940                 }
941                 else if(m_prop.visual == "cube"){
942                         infostream<<"GenericCAO::addToScene(): cube"<<std::endl;
943                         scene::IMesh *mesh = createCubeMesh(v3f(BS,BS,BS));
944                         m_meshnode = smgr->addMeshSceneNode(mesh, NULL);
945                         mesh->drop();
946                         
947                         m_meshnode->setScale(v3f(m_prop.visual_size.X,
948                                         m_prop.visual_size.Y,
949                                         m_prop.visual_size.X));
950                         u8 li = m_last_light;
951                         setMeshColor(m_meshnode->getMesh(), video::SColor(255,li,li,li));
952
953                         m_meshnode->setMaterialFlag(video::EMF_LIGHTING, false);
954                         m_meshnode->setMaterialFlag(video::EMF_BILINEAR_FILTER, false);
955                         m_meshnode->setMaterialType(video::EMT_TRANSPARENT_ALPHA_CHANNEL_REF);
956                         m_meshnode->setMaterialFlag(video::EMF_FOG_ENABLE, true);
957                 }
958                 else if(m_prop.visual == "mesh"){
959                         infostream<<"GenericCAO::addToScene(): mesh"<<std::endl;
960                         scene::IAnimatedMesh *mesh = m_gamedef->getMesh(m_prop.mesh);
961                         if(mesh)
962                         {
963                                 m_animated_meshnode = smgr->addAnimatedMeshSceneNode(mesh, NULL);
964                                 mesh->drop(); // The scene node took hold of it
965                                 m_animated_meshnode->animateJoints(); // Needed for some animations
966                                 m_animated_meshnode->setScale(v3f(m_prop.visual_size.X,
967                                                 m_prop.visual_size.Y,
968                                                 m_prop.visual_size.X));
969                                 u8 li = m_last_light;
970                                 setMeshColor(m_animated_meshnode->getMesh(), video::SColor(255,li,li,li));
971
972                                 m_animated_meshnode->setMaterialFlag(video::EMF_LIGHTING, false);
973                                 m_animated_meshnode->setMaterialFlag(video::EMF_BILINEAR_FILTER, false);
974                                 m_animated_meshnode->setMaterialType(video::EMT_TRANSPARENT_ALPHA_CHANNEL_REF);
975                                 m_animated_meshnode->setMaterialFlag(video::EMF_FOG_ENABLE, true);
976                         }
977                         else
978                                 errorstream<<"GenericCAO::addToScene(): Could not load mesh "<<m_prop.mesh<<std::endl;
979                 }
980                 else if(m_prop.visual == "wielditem"){
981                         infostream<<"GenericCAO::addToScene(): node"<<std::endl;
982                         infostream<<"textures: "<<m_prop.textures.size()<<std::endl;
983                         if(m_prop.textures.size() >= 1){
984                                 infostream<<"textures[0]: "<<m_prop.textures[0]<<std::endl;
985                                 IItemDefManager *idef = m_gamedef->idef();
986                                 ItemStack item(m_prop.textures[0], 1, 0, "", idef);
987                                 scene::IMesh *item_mesh = idef->getWieldMesh(item.getDefinition(idef).name, m_gamedef);
988                                 
989                                 // Copy mesh to be able to set unique vertex colors
990                                 scene::IMeshManipulator *manip =
991                                                 irr->getVideoDriver()->getMeshManipulator();
992                                 scene::IMesh *mesh = manip->createMeshUniquePrimitives(item_mesh);
993
994                                 m_meshnode = smgr->addMeshSceneNode(mesh, NULL);
995                                 mesh->drop();
996                                 
997                                 m_meshnode->setScale(v3f(m_prop.visual_size.X/2,
998                                                 m_prop.visual_size.Y/2,
999                                                 m_prop.visual_size.X/2));
1000                                 u8 li = m_last_light;
1001                                 setMeshColor(m_meshnode->getMesh(), video::SColor(255,li,li,li));
1002                         }
1003                 } else {
1004                         infostream<<"GenericCAO::addToScene(): \""<<m_prop.visual
1005                                         <<"\" not supported"<<std::endl;
1006                 }
1007                 updateTextures("");
1008                 
1009                 scene::ISceneNode *node = NULL;
1010                 if(m_spritenode)
1011                         node = m_spritenode;
1012                 else if(m_animated_meshnode)
1013                         node = m_animated_meshnode;
1014                 else if(m_meshnode)
1015                         node = m_meshnode;
1016                 if(node && m_is_player && !m_is_local_player){
1017                         // Add a text node for showing the name
1018                         gui::IGUIEnvironment* gui = irr->getGUIEnvironment();
1019                         std::wstring wname = narrow_to_wide(m_name);
1020                         m_textnode = smgr->addTextSceneNode(gui->getBuiltInFont(),
1021                                         wname.c_str(), video::SColor(255,255,255,255), node);
1022                         m_textnode->setPosition(v3f(0, BS*1.1, 0));
1023                 }
1024
1025                 updateNodePos();
1026                 updateAnimation();
1027                 updateBonePosition();
1028                 updateAttachments();
1029         }
1030
1031         void expireVisuals()
1032         {
1033                 m_visuals_expired = true;
1034         }
1035                 
1036         void updateLight(u8 light_at_pos)
1037         {
1038                 u8 li = decode_light(light_at_pos);
1039                 if(li != m_last_light){
1040                         m_last_light = li;
1041                         video::SColor color(255,li,li,li);
1042                         if(m_meshnode)
1043                                 setMeshColor(m_meshnode->getMesh(), color);
1044                         if(m_animated_meshnode)
1045                                 setMeshColor(m_animated_meshnode->getMesh(), color);
1046                         if(m_spritenode)
1047                                 m_spritenode->setColor(color);
1048                 }
1049         }
1050
1051         v3s16 getLightPosition()
1052         {
1053                 return floatToInt(m_position, BS);
1054         }
1055
1056         void updateNodePos()
1057         {
1058                 if(getParent() != NULL)
1059                         return;
1060
1061                 v3s16 camera_offset = m_env->getCameraOffset();
1062                 if(m_meshnode){
1063                         m_meshnode->setPosition(pos_translator.vect_show-intToFloat(camera_offset, BS));
1064                         v3f rot = m_meshnode->getRotation();
1065                         rot.Y = -m_yaw;
1066                         m_meshnode->setRotation(rot);
1067                 }
1068                 if(m_animated_meshnode){
1069                         m_animated_meshnode->setPosition(pos_translator.vect_show-intToFloat(camera_offset, BS));
1070                         v3f rot = m_animated_meshnode->getRotation();
1071                         rot.Y = -m_yaw;
1072                         m_animated_meshnode->setRotation(rot);
1073                 }
1074                 if(m_spritenode){
1075                         m_spritenode->setPosition(pos_translator.vect_show-intToFloat(camera_offset, BS));
1076                 }
1077         }
1078         
1079         void step(float dtime, ClientEnvironment *env)
1080         {
1081                 // Handel model of local player instantly to prevent lags
1082                 if(m_is_local_player) {
1083                         LocalPlayer *player = m_env->getLocalPlayer();
1084
1085                         if (player->camera_mode > CAMERA_MODE_FIRST) {
1086                                 int old_anim = player->last_animation;
1087                                 float old_anim_speed = player->last_animation_speed;
1088                                 m_is_visible = true;
1089                                 m_position = player->getPosition() + v3f(0,BS,0);
1090                                 m_velocity = v3f(0,0,0);
1091                                 m_acceleration = v3f(0,0,0);
1092                                 pos_translator.vect_show = m_position;
1093                                 m_yaw = player->getYaw();
1094                                 PlayerControl controls = player->getPlayerControl();
1095
1096                                 bool walking = false;
1097                                 if(controls.up || controls.down || controls.left || controls.right)
1098                                         walking = true;
1099
1100                                 f32 new_speed = player->local_animation_speed;
1101                                 v2s32 new_anim = v2s32(0,0);
1102                                 bool allow_update = false;
1103
1104                                 if(!player->touching_ground &&
1105                                         g_settings->getBool("free_move") &&
1106                                 m_gamedef->checkLocalPrivilege("fly") &&
1107                                         g_settings->getBool("fast_move") &&
1108                                 m_gamedef->checkLocalPrivilege("fast"))
1109                                         new_speed *= 1.5;
1110                                 if(controls.sneak && walking)
1111                                         new_speed /= 2;
1112
1113                                 if(walking && (controls.LMB || controls.RMB)) {
1114                                         new_anim = player->local_animations[3];
1115                                         player->last_animation = WD_ANIM;
1116                                 } else if(walking) {
1117                                         new_anim = player->local_animations[1];
1118                                         player->last_animation = WALK_ANIM;
1119                                 } else if(controls.LMB || controls.RMB) {
1120                                         new_anim = player->local_animations[2];
1121                                         player->last_animation = DIG_ANIM;
1122                                 }
1123
1124                                 if ((new_anim.X + new_anim.Y) > 0) {
1125                                         allow_update = true;
1126                                         m_animation_range = new_anim;
1127                                         m_animation_speed = new_speed;
1128                                         player->last_animation_speed = m_animation_speed;
1129                                 } else {
1130                                         player->last_animation = NO_ANIM;
1131                                 }
1132                                 // reset animation when no input detected
1133                                 if (!walking && !controls.LMB && !controls.RMB) {
1134                                         player->last_animation = NO_ANIM;
1135                                         if (old_anim != NO_ANIM) {
1136                                                 m_animation_range = player->local_animations[0];
1137                                                         updateAnimation();
1138                                         }
1139                                 }
1140
1141                                 // Update local player animations
1142                                 if ((player->last_animation != old_anim || m_animation_speed != old_anim_speed) &&
1143                                         player->last_animation != NO_ANIM && allow_update)
1144                                                 updateAnimation();
1145
1146                         } else {
1147                                 m_is_visible = false;
1148                         }
1149         }
1150
1151                 if(m_visuals_expired && m_smgr && m_irr){
1152                         m_visuals_expired = false;
1153
1154                         // Attachments, part 1: All attached objects must be unparented first, or Irrlicht causes a segmentation fault
1155                         for(std::vector<core::vector2d<int> >::iterator ii = m_env->attachment_list.begin(); ii != m_env->attachment_list.end(); ii++)
1156                         {
1157                                 if(ii->Y == getId()) // This is a child of our parent
1158                                 {
1159                                         ClientActiveObject *obj = m_env->getActiveObject(ii->X); // Get the object of the child
1160                                         if(obj)
1161                                         {
1162                                                 scene::IMeshSceneNode *m_child_meshnode = obj->getMeshSceneNode();
1163                                                 scene::IAnimatedMeshSceneNode *m_child_animated_meshnode = obj->getAnimatedMeshSceneNode();
1164                                                 scene::IBillboardSceneNode *m_child_spritenode = obj->getSpriteSceneNode();
1165                                                 if(m_child_meshnode)
1166                                                         m_child_meshnode->setParent(m_smgr->getRootSceneNode());
1167                                                 if(m_child_animated_meshnode)
1168                                                         m_child_animated_meshnode->setParent(m_smgr->getRootSceneNode());
1169                                                 if(m_child_spritenode)
1170                                                         m_child_spritenode->setParent(m_smgr->getRootSceneNode());
1171                                         }
1172                                 }
1173                         }
1174
1175                         removeFromScene(false);
1176                         addToScene(m_smgr, m_gamedef->tsrc(), m_irr);
1177
1178                         // Attachments, part 2: Now that the parent has been refreshed, put its attachments back
1179                         for(std::vector<core::vector2d<int> >::iterator ii = m_env->attachment_list.begin(); ii != m_env->attachment_list.end(); ii++)
1180                         {
1181                                 if(ii->Y == getId()) // This is a child of our parent
1182                                 {
1183                                         ClientActiveObject *obj = m_env->getActiveObject(ii->X); // Get the object of the child
1184                                         if(obj)
1185                                                 obj->setAttachments();
1186                                 }
1187                         }
1188                 }
1189
1190                 // Make sure m_is_visible is always applied
1191                 if(m_meshnode)
1192                         m_meshnode->setVisible(m_is_visible);
1193                 if(m_animated_meshnode)
1194                         m_animated_meshnode->setVisible(m_is_visible);
1195                 if(m_spritenode)
1196                         m_spritenode->setVisible(m_is_visible);
1197                 if(m_textnode)
1198                         m_textnode->setVisible(m_is_visible);
1199
1200                 if(getParent() != NULL) // Attachments should be glued to their parent by Irrlicht
1201                 {
1202                         // Set these for later
1203                         m_position = getPosition();
1204                         m_velocity = v3f(0,0,0);
1205                         m_acceleration = v3f(0,0,0);
1206                         pos_translator.vect_show = m_position;
1207
1208                         if(m_is_local_player) // Update local player attachment position
1209                         {
1210                                 LocalPlayer *player = m_env->getLocalPlayer();
1211                                 player->overridePosition = getParent()->getPosition();
1212                                 m_env->getLocalPlayer()->parent = getParent();
1213                         }
1214                 }
1215                 else
1216                 {
1217                         v3f lastpos = pos_translator.vect_show;
1218
1219                         if(m_prop.physical){
1220                                 core::aabbox3d<f32> box = m_prop.collisionbox;
1221                                 box.MinEdge *= BS;
1222                                 box.MaxEdge *= BS;
1223                                 collisionMoveResult moveresult;
1224                                 f32 pos_max_d = BS*0.125; // Distance per iteration
1225                                 v3f p_pos = m_position;
1226                                 v3f p_velocity = m_velocity;
1227                                 v3f p_acceleration = m_acceleration;
1228                                 moveresult = collisionMoveSimple(env,env->getGameDef(),
1229                                                 pos_max_d, box, m_prop.stepheight, dtime,
1230                                                 p_pos, p_velocity, p_acceleration,
1231                                                 this, m_prop.collideWithObjects);
1232                                 // Apply results
1233                                 m_position = p_pos;
1234                                 m_velocity = p_velocity;
1235                                 m_acceleration = p_acceleration;
1236                                 
1237                                 bool is_end_position = moveresult.collides;
1238                                 pos_translator.update(m_position, is_end_position, dtime);
1239                                 pos_translator.translate(dtime);
1240                                 updateNodePos();
1241                         } else {
1242                                 m_position += dtime * m_velocity + 0.5 * dtime * dtime * m_acceleration;
1243                                 m_velocity += dtime * m_acceleration;
1244                                 pos_translator.update(m_position, pos_translator.aim_is_end, pos_translator.anim_time);
1245                                 pos_translator.translate(dtime);
1246                                 updateNodePos();
1247                         }
1248
1249                         float moved = lastpos.getDistanceFrom(pos_translator.vect_show);
1250                         m_step_distance_counter += moved;
1251                         if(m_step_distance_counter > 1.5*BS){
1252                                 m_step_distance_counter = 0;
1253                                 if(!m_is_local_player && m_prop.makes_footstep_sound){
1254                                         INodeDefManager *ndef = m_gamedef->ndef();
1255                                         v3s16 p = floatToInt(getPosition() + v3f(0,
1256                                                         (m_prop.collisionbox.MinEdge.Y-0.5)*BS, 0), BS);
1257                                         MapNode n = m_env->getMap().getNodeNoEx(p);
1258                                         SimpleSoundSpec spec = ndef->get(n).sound_footstep;
1259                                         m_gamedef->sound()->playSoundAt(spec, false, getPosition());
1260                                 }
1261                         }
1262                 }
1263
1264                 m_anim_timer += dtime;
1265                 if(m_anim_timer >= m_anim_framelength){
1266                         m_anim_timer -= m_anim_framelength;
1267                         m_anim_frame++;
1268                         if(m_anim_frame >= m_anim_num_frames)
1269                                 m_anim_frame = 0;
1270                 }
1271
1272                 updateTexturePos();
1273
1274                 if(m_reset_textures_timer >= 0){
1275                         m_reset_textures_timer -= dtime;
1276                         if(m_reset_textures_timer <= 0){
1277                                 m_reset_textures_timer = -1;
1278                                 updateTextures("");
1279                         }
1280                 }
1281                 if(getParent() == NULL && fabs(m_prop.automatic_rotate) > 0.001){
1282                         m_yaw += dtime * m_prop.automatic_rotate * 180 / M_PI;
1283                         updateNodePos();
1284                 }
1285
1286                 if (getParent() == NULL && m_prop.automatic_face_movement_dir &&
1287                                 (fabs(m_velocity.Z) > 0.001 || fabs(m_velocity.X) > 0.001)){
1288                         m_yaw = atan2(m_velocity.Z,m_velocity.X) * 180 / M_PI + m_prop.automatic_face_movement_dir_offset;
1289                         updateNodePos();
1290                 }
1291         }
1292
1293         void updateTexturePos()
1294         {
1295                 if(m_spritenode){
1296                         scene::ICameraSceneNode* camera =
1297                                         m_spritenode->getSceneManager()->getActiveCamera();
1298                         if(!camera)
1299                                 return;
1300                         v3f cam_to_entity = m_spritenode->getAbsolutePosition()
1301                                         - camera->getAbsolutePosition();
1302                         cam_to_entity.normalize();
1303
1304                         int row = m_tx_basepos.Y;
1305                         int col = m_tx_basepos.X;
1306                         
1307                         if(m_tx_select_horiz_by_yawpitch)
1308                         {
1309                                 if(cam_to_entity.Y > 0.75)
1310                                         col += 5;
1311                                 else if(cam_to_entity.Y < -0.75)
1312                                         col += 4;
1313                                 else{
1314                                         float mob_dir = atan2(cam_to_entity.Z, cam_to_entity.X) / M_PI * 180.;
1315                                         float dir = mob_dir - m_yaw;
1316                                         dir = wrapDegrees_180(dir);
1317                                         //infostream<<"id="<<m_id<<" dir="<<dir<<std::endl;
1318                                         if(fabs(wrapDegrees_180(dir - 0)) <= 45.1)
1319                                                 col += 2;
1320                                         else if(fabs(wrapDegrees_180(dir - 90)) <= 45.1)
1321                                                 col += 3;
1322                                         else if(fabs(wrapDegrees_180(dir - 180)) <= 45.1)
1323                                                 col += 0;
1324                                         else if(fabs(wrapDegrees_180(dir + 90)) <= 45.1)
1325                                                 col += 1;
1326                                         else
1327                                                 col += 4;
1328                                 }
1329                         }
1330                         
1331                         // Animation goes downwards
1332                         row += m_anim_frame;
1333
1334                         float txs = m_tx_size.X;
1335                         float tys = m_tx_size.Y;
1336                         setBillboardTextureMatrix(m_spritenode,
1337                                         txs, tys, col, row);
1338                 }
1339         }
1340
1341         void updateTextures(const std::string &mod)
1342         {
1343                 ITextureSource *tsrc = m_gamedef->tsrc();
1344
1345                 bool use_trilinear_filter = g_settings->getBool("trilinear_filter");
1346                 bool use_bilinear_filter = g_settings->getBool("bilinear_filter");
1347                 bool use_anisotropic_filter = g_settings->getBool("anisotropic_filter");
1348
1349                 if(m_spritenode)
1350                 {
1351                         if(m_prop.visual == "sprite")
1352                         {
1353                                 std::string texturestring = "unknown_node.png";
1354                                 if(m_prop.textures.size() >= 1)
1355                                         texturestring = m_prop.textures[0];
1356                                 texturestring += mod;
1357                                 m_spritenode->setMaterialTexture(0,
1358                                                 tsrc->getTexture(texturestring));
1359
1360                                 // This allows setting per-material colors. However, until a real lighting
1361                                 // system is added, the code below will have no effect. Once MineTest
1362                                 // has directional lighting, it should work automatically.
1363                                 if(m_prop.colors.size() >= 1)
1364                                 {
1365                                         m_spritenode->getMaterial(0).AmbientColor = m_prop.colors[0];
1366                                         m_spritenode->getMaterial(0).DiffuseColor = m_prop.colors[0];
1367                                         m_spritenode->getMaterial(0).SpecularColor = m_prop.colors[0];
1368                                 }
1369
1370                                 m_spritenode->getMaterial(0).setFlag(video::EMF_TRILINEAR_FILTER, use_trilinear_filter);
1371                                 m_spritenode->getMaterial(0).setFlag(video::EMF_BILINEAR_FILTER, use_bilinear_filter);
1372                                 m_spritenode->getMaterial(0).setFlag(video::EMF_ANISOTROPIC_FILTER, use_anisotropic_filter);
1373                         }
1374                 }
1375                 if(m_animated_meshnode)
1376                 {
1377                         if(m_prop.visual == "mesh")
1378                         {
1379                                 for (u32 i = 0; i < m_prop.textures.size() && i < m_animated_meshnode->getMaterialCount(); ++i)
1380                                 {
1381                                         std::string texturestring = m_prop.textures[i];
1382                                         if(texturestring == "")
1383                                                 continue; // Empty texture string means don't modify that material
1384                                         texturestring += mod;
1385                                         video::ITexture* texture = tsrc->getTexture(texturestring);
1386                                         if(!texture)
1387                                         {
1388                                                 errorstream<<"GenericCAO::updateTextures(): Could not load texture "<<texturestring<<std::endl;
1389                                                 continue;
1390                                         }
1391
1392                                         // Set material flags and texture
1393                                         video::SMaterial& material = m_animated_meshnode->getMaterial(i);
1394                                         material.TextureLayer[0].Texture = texture;
1395                                         material.setFlag(video::EMF_LIGHTING, false);
1396                                         material.setFlag(video::EMF_BILINEAR_FILTER, false);
1397
1398                                         m_animated_meshnode->getMaterial(i).setFlag(video::EMF_TRILINEAR_FILTER, use_trilinear_filter);
1399                                         m_animated_meshnode->getMaterial(i).setFlag(video::EMF_BILINEAR_FILTER, use_bilinear_filter);
1400                                         m_animated_meshnode->getMaterial(i).setFlag(video::EMF_ANISOTROPIC_FILTER, use_anisotropic_filter);
1401                                 }
1402                                 for (u32 i = 0; i < m_prop.colors.size() && i < m_animated_meshnode->getMaterialCount(); ++i)
1403                                 {
1404                                         // This allows setting per-material colors. However, until a real lighting
1405                                         // system is added, the code below will have no effect. Once MineTest
1406                                         // has directional lighting, it should work automatically.
1407                                         m_animated_meshnode->getMaterial(i).AmbientColor = m_prop.colors[i];
1408                                         m_animated_meshnode->getMaterial(i).DiffuseColor = m_prop.colors[i];
1409                                         m_animated_meshnode->getMaterial(i).SpecularColor = m_prop.colors[i];
1410                                 }
1411                         }
1412                 }
1413                 if(m_meshnode)
1414                 {
1415                         if(m_prop.visual == "cube")
1416                         {
1417                                 for (u32 i = 0; i < 6; ++i)
1418                                 {
1419                                         std::string texturestring = "unknown_node.png";
1420                                         if(m_prop.textures.size() > i)
1421                                                 texturestring = m_prop.textures[i];
1422                                         texturestring += mod;
1423
1424
1425                                         // Set material flags and texture
1426                                         video::SMaterial& material = m_meshnode->getMaterial(i);
1427                                         material.setFlag(video::EMF_LIGHTING, false);
1428                                         material.setFlag(video::EMF_BILINEAR_FILTER, false);
1429                                         material.setTexture(0,
1430                                                         tsrc->getTexture(texturestring));
1431                                         material.getTextureMatrix(0).makeIdentity();
1432
1433                                         // This allows setting per-material colors. However, until a real lighting
1434                                         // system is added, the code below will have no effect. Once MineTest
1435                                         // has directional lighting, it should work automatically.
1436                                         if(m_prop.colors.size() > i)
1437                                         {
1438                                                 m_meshnode->getMaterial(i).AmbientColor = m_prop.colors[i];
1439                                                 m_meshnode->getMaterial(i).DiffuseColor = m_prop.colors[i];
1440                                                 m_meshnode->getMaterial(i).SpecularColor = m_prop.colors[i];
1441                                         }
1442
1443                                         m_meshnode->getMaterial(i).setFlag(video::EMF_TRILINEAR_FILTER, use_trilinear_filter);
1444                                         m_meshnode->getMaterial(i).setFlag(video::EMF_BILINEAR_FILTER, use_bilinear_filter);
1445                                         m_meshnode->getMaterial(i).setFlag(video::EMF_ANISOTROPIC_FILTER, use_anisotropic_filter);
1446                                 }
1447                         }
1448                         else if(m_prop.visual == "upright_sprite")
1449                         {
1450                                 scene::IMesh *mesh = m_meshnode->getMesh();
1451                                 {
1452                                         std::string tname = "unknown_object.png";
1453                                         if(m_prop.textures.size() >= 1)
1454                                                 tname = m_prop.textures[0];
1455                                         tname += mod;
1456                                         scene::IMeshBuffer *buf = mesh->getMeshBuffer(0);
1457                                         buf->getMaterial().setTexture(0,
1458                                                         tsrc->getTexture(tname));
1459                                         
1460                                         // This allows setting per-material colors. However, until a real lighting
1461                                         // system is added, the code below will have no effect. Once MineTest
1462                                         // has directional lighting, it should work automatically.
1463                                         if(m_prop.colors.size() >= 1)
1464                                         {
1465                                                 buf->getMaterial().AmbientColor = m_prop.colors[0];
1466                                                 buf->getMaterial().DiffuseColor = m_prop.colors[0];
1467                                                 buf->getMaterial().SpecularColor = m_prop.colors[0];
1468                                         }
1469
1470                                         buf->getMaterial().setFlag(video::EMF_TRILINEAR_FILTER, use_trilinear_filter);
1471                                         buf->getMaterial().setFlag(video::EMF_BILINEAR_FILTER, use_bilinear_filter);
1472                                         buf->getMaterial().setFlag(video::EMF_ANISOTROPIC_FILTER, use_anisotropic_filter);
1473                                 }
1474                                 {
1475                                         std::string tname = "unknown_object.png";
1476                                         if(m_prop.textures.size() >= 2)
1477                                                 tname = m_prop.textures[1];
1478                                         else if(m_prop.textures.size() >= 1)
1479                                                 tname = m_prop.textures[0];
1480                                         tname += mod;
1481                                         scene::IMeshBuffer *buf = mesh->getMeshBuffer(1);
1482                                         buf->getMaterial().setTexture(0,
1483                                                         tsrc->getTexture(tname));
1484
1485                                         // This allows setting per-material colors. However, until a real lighting
1486                                         // system is added, the code below will have no effect. Once MineTest
1487                                         // has directional lighting, it should work automatically.
1488                                         if(m_prop.colors.size() >= 2)
1489                                         {
1490                                                 buf->getMaterial().AmbientColor = m_prop.colors[1];
1491                                                 buf->getMaterial().DiffuseColor = m_prop.colors[1];
1492                                                 buf->getMaterial().SpecularColor = m_prop.colors[1];
1493                                         }
1494                                         else if(m_prop.colors.size() >= 1)
1495                                         {
1496                                                 buf->getMaterial().AmbientColor = m_prop.colors[0];
1497                                                 buf->getMaterial().DiffuseColor = m_prop.colors[0];
1498                                                 buf->getMaterial().SpecularColor = m_prop.colors[0];
1499                                         }
1500
1501                                         buf->getMaterial().setFlag(video::EMF_TRILINEAR_FILTER, use_trilinear_filter);
1502                                         buf->getMaterial().setFlag(video::EMF_BILINEAR_FILTER, use_bilinear_filter);
1503                                         buf->getMaterial().setFlag(video::EMF_ANISOTROPIC_FILTER, use_anisotropic_filter);
1504                                 }
1505                         }
1506                 }
1507         }
1508
1509         void updateAnimation()
1510         {
1511                 if(m_animated_meshnode == NULL)
1512                         return;
1513                 m_animated_meshnode->setFrameLoop(m_animation_range.X, m_animation_range.Y);
1514                 m_animated_meshnode->setAnimationSpeed(m_animation_speed);
1515                 m_animated_meshnode->setTransitionTime(m_animation_blend);
1516         }
1517
1518         void updateBonePosition()
1519         {
1520                 if(!m_bone_position.size() || m_animated_meshnode == NULL)
1521                         return;
1522
1523                 m_animated_meshnode->setJointMode(irr::scene::EJUOR_CONTROL); // To write positions to the mesh on render
1524                 for(std::map<std::string, core::vector2d<v3f> >::const_iterator ii = m_bone_position.begin(); ii != m_bone_position.end(); ++ii){
1525                         std::string bone_name = (*ii).first;
1526                         v3f bone_pos = (*ii).second.X;
1527                         v3f bone_rot = (*ii).second.Y;
1528                         irr::scene::IBoneSceneNode* bone = m_animated_meshnode->getJointNode(bone_name.c_str());
1529                         if(bone)
1530                         {
1531                                 bone->setPosition(bone_pos);
1532                                 bone->setRotation(bone_rot);
1533                         }
1534                 }
1535         }
1536         
1537         void updateAttachments()
1538         {
1539                 m_attached_to_local = getParent() != NULL && getParent()->isLocalPlayer();
1540                 m_is_visible = !m_attached_to_local; // Objects attached to the local player should always be hidden
1541
1542                 if(getParent() == NULL || m_attached_to_local) // Detach or don't attach
1543                 {
1544                         if(m_meshnode)
1545                         {
1546                                 v3f old_position = m_meshnode->getAbsolutePosition();
1547                                 v3f old_rotation = m_meshnode->getRotation();
1548                                 m_meshnode->setParent(m_smgr->getRootSceneNode());
1549                                 m_meshnode->setPosition(old_position);
1550                                 m_meshnode->setRotation(old_rotation);
1551                                 m_meshnode->updateAbsolutePosition();
1552                         }
1553                         if(m_animated_meshnode)
1554                         {
1555                                 v3f old_position = m_animated_meshnode->getAbsolutePosition();
1556                                 v3f old_rotation = m_animated_meshnode->getRotation();
1557                                 m_animated_meshnode->setParent(m_smgr->getRootSceneNode());
1558                                 m_animated_meshnode->setPosition(old_position);
1559                                 m_animated_meshnode->setRotation(old_rotation);
1560                                 m_animated_meshnode->updateAbsolutePosition();
1561                         }
1562                         if(m_spritenode)
1563                         {
1564                                 v3f old_position = m_spritenode->getAbsolutePosition();
1565                                 v3f old_rotation = m_spritenode->getRotation();
1566                                 m_spritenode->setParent(m_smgr->getRootSceneNode());
1567                                 m_spritenode->setPosition(old_position);
1568                                 m_spritenode->setRotation(old_rotation);
1569                                 m_spritenode->updateAbsolutePosition();
1570                         }
1571                         if(m_is_local_player)
1572                         {
1573                                 LocalPlayer *player = m_env->getLocalPlayer();
1574                                 player->isAttached = false;
1575                         }
1576                 }
1577                 else // Attach
1578                 {
1579                         scene::IMeshSceneNode *parent_mesh = NULL;
1580                         if(getParent()->getMeshSceneNode())
1581                                 parent_mesh = getParent()->getMeshSceneNode();
1582                         scene::IAnimatedMeshSceneNode *parent_animated_mesh = NULL;
1583                         if(getParent()->getAnimatedMeshSceneNode())
1584                                 parent_animated_mesh = getParent()->getAnimatedMeshSceneNode();
1585                         scene::IBillboardSceneNode *parent_sprite = NULL;
1586                         if(getParent()->getSpriteSceneNode())
1587                                 parent_sprite = getParent()->getSpriteSceneNode();
1588
1589                         scene::IBoneSceneNode *parent_bone = NULL;
1590                         if(parent_animated_mesh && m_attachment_bone != "")
1591                                 parent_bone = parent_animated_mesh->getJointNode(m_attachment_bone.c_str());
1592
1593                         // The spaghetti code below makes sure attaching works if either the parent or child is a spritenode, meshnode, or animatedmeshnode
1594                         // TODO: Perhaps use polymorphism here to save code duplication
1595                         if(m_meshnode){
1596                                 if(parent_bone){
1597                                         m_meshnode->setParent(parent_bone);
1598                                         m_meshnode->setPosition(m_attachment_position);
1599                                         m_meshnode->setRotation(m_attachment_rotation);
1600                                         m_meshnode->updateAbsolutePosition();
1601                                 }
1602                                 else
1603                                 {
1604                                         if(parent_mesh){
1605                                                 m_meshnode->setParent(parent_mesh);
1606                                                 m_meshnode->setPosition(m_attachment_position);
1607                                                 m_meshnode->setRotation(m_attachment_rotation);
1608                                                 m_meshnode->updateAbsolutePosition();
1609                                         }
1610                                         else if(parent_animated_mesh){
1611                                                 m_meshnode->setParent(parent_animated_mesh);
1612                                                 m_meshnode->setPosition(m_attachment_position);
1613                                                 m_meshnode->setRotation(m_attachment_rotation);
1614                                                 m_meshnode->updateAbsolutePosition();
1615                                         }
1616                                         else if(parent_sprite){
1617                                                 m_meshnode->setParent(parent_sprite);
1618                                                 m_meshnode->setPosition(m_attachment_position);
1619                                                 m_meshnode->setRotation(m_attachment_rotation);
1620                                                 m_meshnode->updateAbsolutePosition();
1621                                         }
1622                                 }
1623                         }
1624                         if(m_animated_meshnode){
1625                                 if(parent_bone){
1626                                         m_animated_meshnode->setParent(parent_bone);
1627                                         m_animated_meshnode->setPosition(m_attachment_position);
1628                                         m_animated_meshnode->setRotation(m_attachment_rotation);
1629                                         m_animated_meshnode->updateAbsolutePosition();
1630                                 }
1631                                 else
1632                                 {
1633                                         if(parent_mesh){
1634                                                 m_animated_meshnode->setParent(parent_mesh);
1635                                                 m_animated_meshnode->setPosition(m_attachment_position);
1636                                                 m_animated_meshnode->setRotation(m_attachment_rotation);
1637                                                 m_animated_meshnode->updateAbsolutePosition();
1638                                         }
1639                                         else if(parent_animated_mesh){
1640                                                 m_animated_meshnode->setParent(parent_animated_mesh);
1641                                                 m_animated_meshnode->setPosition(m_attachment_position);
1642                                                 m_animated_meshnode->setRotation(m_attachment_rotation);
1643                                                 m_animated_meshnode->updateAbsolutePosition();
1644                                         }
1645                                         else if(parent_sprite){
1646                                                 m_animated_meshnode->setParent(parent_sprite);
1647                                                 m_animated_meshnode->setPosition(m_attachment_position);
1648                                                 m_animated_meshnode->setRotation(m_attachment_rotation);
1649                                                 m_animated_meshnode->updateAbsolutePosition();
1650                                         }
1651                                 }
1652                         }
1653                         if(m_spritenode){
1654                                 if(parent_bone){
1655                                         m_spritenode->setParent(parent_bone);
1656                                         m_spritenode->setPosition(m_attachment_position);
1657                                         m_spritenode->setRotation(m_attachment_rotation);
1658                                         m_spritenode->updateAbsolutePosition();
1659                                 }
1660                                 else
1661                                 {
1662                                         if(parent_mesh){
1663                                                 m_spritenode->setParent(parent_mesh);
1664                                                 m_spritenode->setPosition(m_attachment_position);
1665                                                 m_spritenode->setRotation(m_attachment_rotation);
1666                                                 m_spritenode->updateAbsolutePosition();
1667                                         }
1668                                         else if(parent_animated_mesh){
1669                                                 m_spritenode->setParent(parent_animated_mesh);
1670                                                 m_spritenode->setPosition(m_attachment_position);
1671                                                 m_spritenode->setRotation(m_attachment_rotation);
1672                                                 m_spritenode->updateAbsolutePosition();
1673                                         }
1674                                         else if(parent_sprite){
1675                                                 m_spritenode->setParent(parent_sprite);
1676                                                 m_spritenode->setPosition(m_attachment_position);
1677                                                 m_spritenode->setRotation(m_attachment_rotation);
1678                                                 m_spritenode->updateAbsolutePosition();
1679                                         }
1680                                 }
1681                         }
1682                         if(m_is_local_player)
1683                         {
1684                                 LocalPlayer *player = m_env->getLocalPlayer();
1685                                 player->isAttached = true;
1686                         }
1687                 }
1688         }
1689
1690         void processMessage(const std::string &data)
1691         {
1692                 //infostream<<"GenericCAO: Got message"<<std::endl;
1693                 std::istringstream is(data, std::ios::binary);
1694                 // command
1695                 u8 cmd = readU8(is);
1696                 if(cmd == GENERIC_CMD_SET_PROPERTIES)
1697                 {
1698                         m_prop = gob_read_set_properties(is);
1699
1700                         m_selection_box = m_prop.collisionbox;
1701                         m_selection_box.MinEdge *= BS;
1702                         m_selection_box.MaxEdge *= BS;
1703                                 
1704                         m_tx_size.X = 1.0 / m_prop.spritediv.X;
1705                         m_tx_size.Y = 1.0 / m_prop.spritediv.Y;
1706
1707                         if(!m_initial_tx_basepos_set){
1708                                 m_initial_tx_basepos_set = true;
1709                                 m_tx_basepos = m_prop.initial_sprite_basepos;
1710                         }
1711                         
1712                         expireVisuals();
1713                 }
1714                 else if(cmd == GENERIC_CMD_UPDATE_POSITION)
1715                 {
1716                         // Not sent by the server if this object is an attachment.
1717                         // We might however get here if the server notices the object being detached before the client.
1718                         m_position = readV3F1000(is);
1719                         m_velocity = readV3F1000(is);
1720                         m_acceleration = readV3F1000(is);
1721                         if(fabs(m_prop.automatic_rotate) < 0.001)
1722                                 m_yaw = readF1000(is);
1723                         else
1724                                 readF1000(is);
1725                         bool do_interpolate = readU8(is);
1726                         bool is_end_position = readU8(is);
1727                         float update_interval = readF1000(is);
1728
1729                         // Place us a bit higher if we're physical, to not sink into
1730                         // the ground due to sucky collision detection...
1731                         if(m_prop.physical)
1732                                 m_position += v3f(0,0.002,0);
1733
1734                         if(getParent() != NULL) // Just in case
1735                                 return;
1736
1737                         if(do_interpolate){
1738                                 if(!m_prop.physical)
1739                                         pos_translator.update(m_position, is_end_position, update_interval);
1740                         } else {
1741                                 pos_translator.init(m_position);
1742                         }
1743                         updateNodePos();
1744                 }
1745                 else if(cmd == GENERIC_CMD_SET_TEXTURE_MOD)
1746                 {
1747                         std::string mod = deSerializeString(is);
1748                         updateTextures(mod);
1749                 }
1750                 else if(cmd == GENERIC_CMD_SET_SPRITE)
1751                 {
1752                         v2s16 p = readV2S16(is);
1753                         int num_frames = readU16(is);
1754                         float framelength = readF1000(is);
1755                         bool select_horiz_by_yawpitch = readU8(is);
1756                         
1757                         m_tx_basepos = p;
1758                         m_anim_num_frames = num_frames;
1759                         m_anim_framelength = framelength;
1760                         m_tx_select_horiz_by_yawpitch = select_horiz_by_yawpitch;
1761
1762                         updateTexturePos();
1763                 }
1764                 else if(cmd == GENERIC_CMD_SET_PHYSICS_OVERRIDE)
1765                 {
1766                         float override_speed = readF1000(is);
1767                         float override_jump = readF1000(is);
1768                         float override_gravity = readF1000(is);
1769                         // these are sent inverted so we get true when the server sends nothing
1770                         bool sneak = !readU8(is);
1771                         bool sneak_glitch = !readU8(is);
1772                         
1773
1774                         if(m_is_local_player)
1775                         {
1776                                 LocalPlayer *player = m_env->getLocalPlayer();
1777                                 player->physics_override_speed = override_speed;
1778                                 player->physics_override_jump = override_jump;
1779                                 player->physics_override_gravity = override_gravity;
1780                                 player->physics_override_sneak = sneak;
1781                                 player->physics_override_sneak_glitch = sneak_glitch;
1782                         }
1783                 }
1784                 else if(cmd == GENERIC_CMD_SET_ANIMATION)
1785                 {
1786                         // TODO: change frames send as v2s32 value
1787                         v2f range = readV2F1000(is);
1788                         if (!m_is_local_player) {
1789                                 m_animation_range = v2s32((s32)range.X, (s32)range.Y);
1790                                 m_animation_speed = readF1000(is);
1791                                 m_animation_blend = readF1000(is);
1792                                 updateAnimation();
1793                         } else {
1794                                 LocalPlayer *player = m_env->getLocalPlayer();
1795                                 if(player->last_animation == NO_ANIM) {
1796                                         m_animation_range = v2s32((s32)range.X, (s32)range.Y);
1797                                         m_animation_speed = readF1000(is);
1798                                         m_animation_blend = readF1000(is);
1799                                 }
1800                                 // update animation only if local animations present
1801                                 // and received animation is not unknown
1802                                 int frames = 0;
1803                                 for (int i = 0;i<4;i++) {
1804                                         frames += (int)player->local_animations[i].Y;
1805                                 }
1806                                 if(frames < 1) {
1807                                         player->last_animation = NO_ANIM;
1808                                         updateAnimation();
1809                                 }
1810                         }
1811                 }
1812                 else if(cmd == GENERIC_CMD_SET_BONE_POSITION)
1813                 {
1814                         std::string bone = deSerializeString(is);
1815                         v3f position = readV3F1000(is);
1816                         v3f rotation = readV3F1000(is);
1817                         m_bone_position[bone] = core::vector2d<v3f>(position, rotation);
1818
1819                         updateBonePosition();
1820                 }
1821                 else if(cmd == GENERIC_CMD_SET_ATTACHMENT)
1822                 {
1823                         // If an entry already exists for this object, delete it first to avoid duplicates
1824                         for(std::vector<core::vector2d<int> >::iterator ii = m_env->attachment_list.begin(); ii != m_env->attachment_list.end(); ii++)
1825                         {
1826                                 if(ii->X == getId()) // This is the ID of our object
1827                                 {
1828                                         m_env->attachment_list.erase(ii);
1829                                         break;
1830                                 }
1831                         }
1832                         m_env->attachment_list.push_back(core::vector2d<int>(getId(), readS16(is)));
1833                         m_attachment_bone = deSerializeString(is);
1834                         m_attachment_position = readV3F1000(is);
1835                         m_attachment_rotation = readV3F1000(is);
1836
1837                         updateAttachments();
1838                 }
1839                 else if(cmd == GENERIC_CMD_PUNCHED)
1840                 {
1841                         /*s16 damage =*/ readS16(is);
1842                         s16 result_hp = readS16(is);
1843
1844                         // Use this instead of the send damage to not interfere with prediction
1845                         s16 damage = m_hp - result_hp;
1846
1847                         m_hp = result_hp;
1848
1849                         if (damage > 0) {
1850                                 if (m_hp <= 0) {
1851                                         // TODO: Execute defined fast response
1852                                         // As there is no definition, make a smoke puff
1853                                         ClientSimpleObject *simple = createSmokePuff(
1854                                                         m_smgr, m_env, m_position,
1855                                                         m_prop.visual_size * BS);
1856                                         m_env->addSimpleObject(simple);
1857                                 } else {
1858                                         // TODO: Execute defined fast response
1859                                         // Flashing shall suffice as there is no definition
1860                                         m_reset_textures_timer = 0.05;
1861                                         if(damage >= 2)
1862                                                 m_reset_textures_timer += 0.05 * damage;
1863                                         updateTextures("^[brighten");
1864                                 }
1865                         }
1866                 }
1867                 else if(cmd == GENERIC_CMD_UPDATE_ARMOR_GROUPS)
1868                 {
1869                         m_armor_groups.clear();
1870                         int armor_groups_size = readU16(is);
1871                         for(int i=0; i<armor_groups_size; i++){
1872                                 std::string name = deSerializeString(is);
1873                                 int rating = readS16(is);
1874                                 m_armor_groups[name] = rating;
1875                         }
1876                 }
1877         }
1878         
1879         bool directReportPunch(v3f dir, const ItemStack *punchitem=NULL,
1880                         float time_from_last_punch=1000000)
1881         {
1882                 assert(punchitem);
1883                 const ToolCapabilities *toolcap =
1884                                 &punchitem->getToolCapabilities(m_gamedef->idef());
1885                 PunchDamageResult result = getPunchDamage(
1886                                 m_armor_groups,
1887                                 toolcap,
1888                                 punchitem,
1889                                 time_from_last_punch);
1890
1891                 if(result.did_punch && result.damage != 0)
1892                 {
1893                         if(result.damage < m_hp){
1894                                 m_hp -= result.damage;
1895                         } else {
1896                                 m_hp = 0;
1897                                 // TODO: Execute defined fast response
1898                                 // As there is no definition, make a smoke puff
1899                                 ClientSimpleObject *simple = createSmokePuff(
1900                                                 m_smgr, m_env, m_position,
1901                                                 m_prop.visual_size * BS);
1902                                 m_env->addSimpleObject(simple);
1903                         }
1904                         // TODO: Execute defined fast response
1905                         // Flashing shall suffice as there is no definition
1906                         m_reset_textures_timer = 0.05;
1907                         if(result.damage >= 2)
1908                                 m_reset_textures_timer += 0.05 * result.damage;
1909                         updateTextures("^[brighten");
1910                 }
1911                 
1912                 return false;
1913         }
1914         
1915         std::string debugInfoText()
1916         {
1917                 std::ostringstream os(std::ios::binary);
1918                 os<<"GenericCAO hp="<<m_hp<<"\n";
1919                 os<<"armor={";
1920                 for(ItemGroupList::const_iterator i = m_armor_groups.begin();
1921                                 i != m_armor_groups.end(); i++){
1922                         os<<i->first<<"="<<i->second<<", ";
1923                 }
1924                 os<<"}";
1925                 return os.str();
1926         }
1927 };
1928
1929 // Prototype
1930 GenericCAO proto_GenericCAO(NULL, NULL);
1931
1932