627d3c049e6692fa57efa704d78616040e752ab2
[oweals/minetest.git] / src / content_cao.cpp
1 /*
2 Minetest-c55
3 Copyright (C) 2010-2011 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 General Public License as published by
7 the Free Software Foundation; either version 2 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 General Public License for more details.
14
15 You should have received a copy of the GNU 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 "utility.h" // For IntervalLimiter
34 #include "itemdef.h"
35 #include "tool.h"
36 #include "content_cso.h"
37 #include "sound.h"
38 #include "nodedef.h"
39 class Settings;
40 struct ToolCapabilities;
41
42 #define PP(x) "("<<(x).X<<","<<(x).Y<<","<<(x).Z<<")"
43
44 core::map<u16, ClientActiveObject::Factory> ClientActiveObject::m_types;
45
46 /*
47         SmoothTranslator
48 */
49
50 struct SmoothTranslator
51 {
52         v3f vect_old;
53         v3f vect_show;
54         v3f vect_aim;
55         f32 anim_counter;
56         f32 anim_time;
57         f32 anim_time_counter;
58         bool aim_is_end;
59
60         SmoothTranslator():
61                 vect_old(0,0,0),
62                 vect_show(0,0,0),
63                 vect_aim(0,0,0),
64                 anim_counter(0),
65                 anim_time(0),
66                 anim_time_counter(0),
67                 aim_is_end(true)
68         {}
69
70         void init(v3f vect)
71         {
72                 vect_old = vect;
73                 vect_show = vect;
74                 vect_aim = vect;
75                 anim_counter = 0;
76                 anim_time = 0;
77                 anim_time_counter = 0;
78                 aim_is_end = true;
79         }
80
81         void sharpen()
82         {
83                 init(vect_show);
84         }
85
86         void update(v3f vect_new, bool is_end_position=false, float update_interval=-1)
87         {
88                 aim_is_end = is_end_position;
89                 vect_old = vect_show;
90                 vect_aim = vect_new;
91                 if(update_interval > 0){
92                         anim_time = update_interval;
93                 } else {
94                         if(anim_time < 0.001 || anim_time > 1.0)
95                                 anim_time = anim_time_counter;
96                         else
97                                 anim_time = anim_time * 0.9 + anim_time_counter * 0.1;
98                 }
99                 anim_time_counter = 0;
100                 anim_counter = 0;
101         }
102
103         void translate(f32 dtime)
104         {
105                 anim_time_counter = anim_time_counter + dtime;
106                 anim_counter = anim_counter + dtime;
107                 v3f vect_move = vect_aim - vect_old;
108                 f32 moveratio = 1.0;
109                 if(anim_time > 0.001)
110                         moveratio = anim_time_counter / anim_time;
111                 // Move a bit less than should, to avoid oscillation
112                 moveratio = moveratio * 0.8;
113                 float move_end = 1.5;
114                 if(aim_is_end)
115                         move_end = 1.0;
116                 if(moveratio > move_end)
117                         moveratio = move_end;
118                 vect_show = vect_old + vect_move * moveratio;
119         }
120
121         bool is_moving()
122         {
123                 return ((anim_time_counter / anim_time) < 1.4);
124         }
125 };
126
127 /*
128         Other stuff
129 */
130
131 static void setBillboardTextureMatrix(scene::IBillboardSceneNode *bill,
132                 float txs, float tys, int col, int row)
133 {
134         video::SMaterial& material = bill->getMaterial(0);
135         core::matrix4& matrix = material.getTextureMatrix(0);
136         matrix.setTextureTranslate(txs*col, tys*row);
137         matrix.setTextureScale(txs, tys);
138 }
139
140 /*
141         TestCAO
142 */
143
144 class TestCAO : public ClientActiveObject
145 {
146 public:
147         TestCAO(IGameDef *gamedef, ClientEnvironment *env);
148         virtual ~TestCAO();
149         
150         u8 getType() const
151         {
152                 return ACTIVEOBJECT_TYPE_TEST;
153         }
154         
155         static ClientActiveObject* create(IGameDef *gamedef, ClientEnvironment *env);
156
157         void addToScene(scene::ISceneManager *smgr, ITextureSource *tsrc,
158                         IrrlichtDevice *irr);
159         void removeFromScene();
160         void updateLight(u8 light_at_pos);
161         v3s16 getLightPosition();
162         void updateNodePos();
163
164         void step(float dtime, ClientEnvironment *env);
165
166         void processMessage(const std::string &data);
167
168 private:
169         scene::IMeshSceneNode *m_node;
170         v3f m_position;
171 };
172
173 // Prototype
174 TestCAO proto_TestCAO(NULL, NULL);
175
176 TestCAO::TestCAO(IGameDef *gamedef, ClientEnvironment *env):
177         ClientActiveObject(0, gamedef, env),
178         m_node(NULL),
179         m_position(v3f(0,10*BS,0))
180 {
181         ClientActiveObject::registerType(getType(), create);
182 }
183
184 TestCAO::~TestCAO()
185 {
186 }
187
188 ClientActiveObject* TestCAO::create(IGameDef *gamedef, ClientEnvironment *env)
189 {
190         return new TestCAO(gamedef, env);
191 }
192
193 void TestCAO::addToScene(scene::ISceneManager *smgr, ITextureSource *tsrc,
194                         IrrlichtDevice *irr)
195 {
196         if(m_node != NULL)
197                 return;
198         
199         //video::IVideoDriver* driver = smgr->getVideoDriver();
200         
201         scene::SMesh *mesh = new scene::SMesh();
202         scene::IMeshBuffer *buf = new scene::SMeshBuffer();
203         video::SColor c(255,255,255,255);
204         video::S3DVertex vertices[4] =
205         {
206                 video::S3DVertex(-BS/2,-BS/4,0, 0,0,0, c, 0,1),
207                 video::S3DVertex(BS/2,-BS/4,0, 0,0,0, c, 1,1),
208                 video::S3DVertex(BS/2,BS/4,0, 0,0,0, c, 1,0),
209                 video::S3DVertex(-BS/2,BS/4,0, 0,0,0, c, 0,0),
210         };
211         u16 indices[] = {0,1,2,2,3,0};
212         buf->append(vertices, 4, indices, 6);
213         // Set material
214         buf->getMaterial().setFlag(video::EMF_LIGHTING, false);
215         buf->getMaterial().setFlag(video::EMF_BACK_FACE_CULLING, false);
216         buf->getMaterial().setTexture(0, tsrc->getTextureRaw("rat.png"));
217         buf->getMaterial().setFlag(video::EMF_BILINEAR_FILTER, false);
218         buf->getMaterial().setFlag(video::EMF_FOG_ENABLE, true);
219         buf->getMaterial().MaterialType = video::EMT_TRANSPARENT_ALPHA_CHANNEL;
220         // Add to mesh
221         mesh->addMeshBuffer(buf);
222         buf->drop();
223         m_node = smgr->addMeshSceneNode(mesh, NULL);
224         mesh->drop();
225         updateNodePos();
226 }
227
228 void TestCAO::removeFromScene()
229 {
230         if(m_node == NULL)
231                 return;
232
233         m_node->remove();
234         m_node = NULL;
235 }
236
237 void TestCAO::updateLight(u8 light_at_pos)
238 {
239 }
240
241 v3s16 TestCAO::getLightPosition()
242 {
243         return floatToInt(m_position, BS);
244 }
245
246 void TestCAO::updateNodePos()
247 {
248         if(m_node == NULL)
249                 return;
250
251         m_node->setPosition(m_position);
252         //m_node->setRotation(v3f(0, 45, 0));
253 }
254
255 void TestCAO::step(float dtime, ClientEnvironment *env)
256 {
257         if(m_node)
258         {
259                 v3f rot = m_node->getRotation();
260                 //infostream<<"dtime="<<dtime<<", rot.Y="<<rot.Y<<std::endl;
261                 rot.Y += dtime * 180;
262                 m_node->setRotation(rot);
263         }
264 }
265
266 void TestCAO::processMessage(const std::string &data)
267 {
268         infostream<<"TestCAO: Got data: "<<data<<std::endl;
269         std::istringstream is(data, std::ios::binary);
270         u16 cmd;
271         is>>cmd;
272         if(cmd == 0)
273         {
274                 v3f newpos;
275                 is>>newpos.X;
276                 is>>newpos.Y;
277                 is>>newpos.Z;
278                 m_position = newpos;
279                 updateNodePos();
280         }
281 }
282
283 /*
284         ItemCAO
285 */
286
287 class ItemCAO : public ClientActiveObject
288 {
289 public:
290         ItemCAO(IGameDef *gamedef, ClientEnvironment *env);
291         virtual ~ItemCAO();
292         
293         u8 getType() const
294         {
295                 return ACTIVEOBJECT_TYPE_ITEM;
296         }
297         
298         static ClientActiveObject* create(IGameDef *gamedef, ClientEnvironment *env);
299
300         void addToScene(scene::ISceneManager *smgr, ITextureSource *tsrc,
301                         IrrlichtDevice *irr);
302         void removeFromScene();
303         void updateLight(u8 light_at_pos);
304         v3s16 getLightPosition();
305         void updateNodePos();
306         void updateInfoText();
307         void updateTexture();
308
309         void step(float dtime, ClientEnvironment *env);
310
311         void processMessage(const std::string &data);
312
313         void initialize(const std::string &data);
314         
315         core::aabbox3d<f32>* getSelectionBox()
316                 {return &m_selection_box;}
317         v3f getPosition()
318                 {return m_position;}
319         
320         std::string infoText()
321                 {return m_infotext;}
322
323 private:
324         core::aabbox3d<f32> m_selection_box;
325         scene::IMeshSceneNode *m_node;
326         v3f m_position;
327         std::string m_itemstring;
328         std::string m_infotext;
329 };
330
331 #include "inventory.h"
332
333 // Prototype
334 ItemCAO proto_ItemCAO(NULL, NULL);
335
336 ItemCAO::ItemCAO(IGameDef *gamedef, ClientEnvironment *env):
337         ClientActiveObject(0, gamedef, env),
338         m_selection_box(-BS/3.,0.0,-BS/3., BS/3.,BS*2./3.,BS/3.),
339         m_node(NULL),
340         m_position(v3f(0,10*BS,0))
341 {
342         if(!gamedef && !env)
343         {
344                 ClientActiveObject::registerType(getType(), create);
345         }
346 }
347
348 ItemCAO::~ItemCAO()
349 {
350 }
351
352 ClientActiveObject* ItemCAO::create(IGameDef *gamedef, ClientEnvironment *env)
353 {
354         return new ItemCAO(gamedef, env);
355 }
356
357 void ItemCAO::addToScene(scene::ISceneManager *smgr, ITextureSource *tsrc,
358                         IrrlichtDevice *irr)
359 {
360         if(m_node != NULL)
361                 return;
362         
363         //video::IVideoDriver* driver = smgr->getVideoDriver();
364         
365         scene::SMesh *mesh = new scene::SMesh();
366         scene::IMeshBuffer *buf = new scene::SMeshBuffer();
367         video::SColor c(255,255,255,255);
368         video::S3DVertex vertices[4] =
369         {
370                 /*video::S3DVertex(-BS/2,-BS/4,0, 0,0,0, c, 0,1),
371                 video::S3DVertex(BS/2,-BS/4,0, 0,0,0, c, 1,1),
372                 video::S3DVertex(BS/2,BS/4,0, 0,0,0, c, 1,0),
373                 video::S3DVertex(-BS/2,BS/4,0, 0,0,0, c, 0,0),*/
374                 video::S3DVertex(BS/3.,0,0, 0,0,0, c, 0,1),
375                 video::S3DVertex(-BS/3.,0,0, 0,0,0, c, 1,1),
376                 video::S3DVertex(-BS/3.,0+BS*2./3.,0, 0,0,0, c, 1,0),
377                 video::S3DVertex(BS/3.,0+BS*2./3.,0, 0,0,0, c, 0,0),
378         };
379         u16 indices[] = {0,1,2,2,3,0};
380         buf->append(vertices, 4, indices, 6);
381         // Set material
382         buf->getMaterial().setFlag(video::EMF_LIGHTING, false);
383         buf->getMaterial().setFlag(video::EMF_BACK_FACE_CULLING, false);
384         // Initialize with a generated placeholder texture
385         buf->getMaterial().setTexture(0, tsrc->getTextureRaw(""));
386         buf->getMaterial().setFlag(video::EMF_BILINEAR_FILTER, false);
387         buf->getMaterial().setFlag(video::EMF_FOG_ENABLE, true);
388         buf->getMaterial().MaterialType = video::EMT_TRANSPARENT_ALPHA_CHANNEL;
389         // Add to mesh
390         mesh->addMeshBuffer(buf);
391         buf->drop();
392         m_node = smgr->addMeshSceneNode(mesh, NULL);
393         mesh->drop();
394         updateNodePos();
395
396         /*
397                 Update image of node
398         */
399
400         updateTexture();
401 }
402
403 void ItemCAO::removeFromScene()
404 {
405         if(m_node == NULL)
406                 return;
407
408         m_node->remove();
409         m_node = NULL;
410 }
411
412 void ItemCAO::updateLight(u8 light_at_pos)
413 {
414         if(m_node == NULL)
415                 return;
416
417         u8 li = decode_light(light_at_pos);
418         video::SColor color(255,li,li,li);
419         setMeshColor(m_node->getMesh(), color);
420 }
421
422 v3s16 ItemCAO::getLightPosition()
423 {
424         return floatToInt(m_position + v3f(0,0.5*BS,0), BS);
425 }
426
427 void ItemCAO::updateNodePos()
428 {
429         if(m_node == NULL)
430                 return;
431
432         m_node->setPosition(m_position);
433 }
434
435 void ItemCAO::updateInfoText()
436 {
437         try{
438                 IItemDefManager *idef = m_gamedef->idef();
439                 ItemStack item;
440                 item.deSerialize(m_itemstring, idef);
441                 if(item.isKnown(idef))
442                         m_infotext = item.getDefinition(idef).description;
443                 else
444                         m_infotext = "Unknown item: '" + m_itemstring + "'";
445                 if(item.count >= 2)
446                         m_infotext += " (" + itos(item.count) + ")";
447         }
448         catch(SerializationError &e)
449         {
450                 m_infotext = "Unknown item: '" + m_itemstring + "'";
451         }
452 }
453
454 void ItemCAO::updateTexture()
455 {
456         if(m_node == NULL)
457                 return;
458
459         // Create an inventory item to see what is its image
460         std::istringstream is(m_itemstring, std::ios_base::binary);
461         video::ITexture *texture = NULL;
462         try{
463                 IItemDefManager *idef = m_gamedef->idef();
464                 ItemStack item;
465                 item.deSerialize(is, idef);
466                 texture = item.getDefinition(idef).inventory_texture;
467         }
468         catch(SerializationError &e)
469         {
470                 infostream<<"WARNING: "<<__FUNCTION_NAME
471                                 <<": error deSerializing itemstring \""
472                                 <<m_itemstring<<std::endl;
473         }
474         
475         // Set meshbuffer texture
476         m_node->getMaterial(0).setTexture(0, texture);
477 }
478
479
480 void ItemCAO::step(float dtime, ClientEnvironment *env)
481 {
482         if(m_node)
483         {
484                 /*v3f rot = m_node->getRotation();
485                 rot.Y += dtime * 120;
486                 m_node->setRotation(rot);*/
487                 LocalPlayer *player = env->getLocalPlayer();
488                 assert(player);
489                 v3f rot = m_node->getRotation();
490                 rot.Y = 180.0 - (player->getYaw());
491                 m_node->setRotation(rot);
492         }
493 }
494
495 void ItemCAO::processMessage(const std::string &data)
496 {
497         //infostream<<"ItemCAO: Got message"<<std::endl;
498         std::istringstream is(data, std::ios::binary);
499         // command
500         u8 cmd = readU8(is);
501         if(cmd == 0)
502         {
503                 // pos
504                 m_position = readV3F1000(is);
505                 updateNodePos();
506         }
507         if(cmd == 1)
508         {
509                 // itemstring
510                 m_itemstring = deSerializeString(is);
511                 updateInfoText();
512                 updateTexture();
513         }
514 }
515
516 void ItemCAO::initialize(const std::string &data)
517 {
518         infostream<<"ItemCAO: Got init data"<<std::endl;
519         
520         {
521                 std::istringstream is(data, std::ios::binary);
522                 // version
523                 u8 version = readU8(is);
524                 // check version
525                 if(version != 0)
526                         return;
527                 // pos
528                 m_position = readV3F1000(is);
529                 // itemstring
530                 m_itemstring = deSerializeString(is);
531         }
532         
533         updateNodePos();
534         updateInfoText();
535 }
536
537 /*
538         GenericCAO
539 */
540
541 #include "genericobject.h"
542
543 class GenericCAO : public ClientActiveObject
544 {
545 private:
546         // Only set at initialization
547         std::string m_name;
548         bool m_is_player;
549         bool m_is_local_player; // determined locally
550         // Property-ish things
551         ObjectProperties m_prop;
552         //
553         scene::ISceneManager *m_smgr;
554         IrrlichtDevice *m_irr;
555         core::aabbox3d<f32> m_selection_box;
556         scene::IMeshSceneNode *m_meshnode;
557         scene::IBillboardSceneNode *m_spritenode;
558         scene::ITextSceneNode* m_textnode;
559         v3f m_position;
560         v3f m_velocity;
561         v3f m_acceleration;
562         float m_yaw;
563         s16 m_hp;
564         SmoothTranslator pos_translator;
565         // Spritesheet/animation stuff
566         v2f m_tx_size;
567         v2s16 m_tx_basepos;
568         bool m_initial_tx_basepos_set;
569         bool m_tx_select_horiz_by_yawpitch;
570         int m_anim_frame;
571         int m_anim_num_frames;
572         float m_anim_framelength;
573         float m_anim_timer;
574         ItemGroupList m_armor_groups;
575         float m_reset_textures_timer;
576         bool m_visuals_expired;
577         float m_step_distance_counter;
578         u8 m_last_light;
579
580 public:
581         GenericCAO(IGameDef *gamedef, ClientEnvironment *env):
582                 ClientActiveObject(0, gamedef, env),
583                 //
584                 m_is_player(false),
585                 m_is_local_player(false),
586                 //
587                 m_smgr(NULL),
588                 m_irr(NULL),
589                 m_selection_box(-BS/3.,-BS/3.,-BS/3., BS/3.,BS/3.,BS/3.),
590                 m_meshnode(NULL),
591                 m_spritenode(NULL),
592                 m_textnode(NULL),
593                 m_position(v3f(0,10*BS,0)),
594                 m_velocity(v3f(0,0,0)),
595                 m_acceleration(v3f(0,0,0)),
596                 m_yaw(0),
597                 m_hp(1),
598                 m_tx_size(1,1),
599                 m_tx_basepos(0,0),
600                 m_initial_tx_basepos_set(false),
601                 m_tx_select_horiz_by_yawpitch(false),
602                 m_anim_frame(0),
603                 m_anim_num_frames(1),
604                 m_anim_framelength(0.2),
605                 m_anim_timer(0),
606                 m_reset_textures_timer(-1),
607                 m_visuals_expired(false),
608                 m_step_distance_counter(0),
609                 m_last_light(255)
610         {
611                 if(gamedef == NULL)
612                         ClientActiveObject::registerType(getType(), create);
613         }
614
615         void initialize(const std::string &data)
616         {
617                 infostream<<"GenericCAO: Got init data"<<std::endl;
618                 std::istringstream is(data, std::ios::binary);
619                 // version
620                 u8 version = readU8(is);
621                 // check version
622                 if(version != 0){
623                         errorstream<<"GenericCAO: Unsupported init data version"
624                                         <<std::endl;
625                         return;
626                 }
627                 m_name = deSerializeString(is);
628                 m_is_player = readU8(is);
629                 m_position = readV3F1000(is);
630                 m_yaw = readF1000(is);
631                 m_hp = readS16(is);
632                 
633                 int num_messages = readU8(is);
634                 for(int i=0; i<num_messages; i++){
635                         std::string message = deSerializeLongString(is);
636                         processMessage(message);
637                 }
638
639                 pos_translator.init(m_position);
640                 updateNodePos();
641                 
642                 if(m_is_player){
643                         Player *player = m_env->getPlayer(m_name.c_str());
644                         if(player && player->isLocal()){
645                                 m_is_local_player = true;
646                         }
647                 }
648         }
649
650         ~GenericCAO()
651         {
652         }
653
654         static ClientActiveObject* create(IGameDef *gamedef, ClientEnvironment *env)
655         {
656                 return new GenericCAO(gamedef, env);
657         }
658
659         u8 getType() const
660         {
661                 return ACTIVEOBJECT_TYPE_GENERIC;
662         }
663         core::aabbox3d<f32>* getSelectionBox()
664         {
665                 if(!m_prop.is_visible || m_is_local_player)
666                         return NULL;
667                 return &m_selection_box;
668         }
669         v3f getPosition()
670         {
671                 return pos_translator.vect_show;
672         }
673
674         void removeFromScene()
675         {
676                 if(m_meshnode){
677                         m_meshnode->remove();
678                         m_meshnode = NULL;
679                 }
680                 if(m_spritenode){
681                         m_spritenode->remove();
682                         m_spritenode = NULL;
683                 }
684         }
685
686         void addToScene(scene::ISceneManager *smgr, ITextureSource *tsrc,
687                         IrrlichtDevice *irr)
688         {
689                 m_smgr = smgr;
690                 m_irr = irr;
691
692                 if(m_meshnode != NULL || m_spritenode != NULL)
693                         return;
694                 
695                 m_visuals_expired = false;
696
697                 if(!m_prop.is_visible || m_is_local_player)
698                         return;
699         
700                 //video::IVideoDriver* driver = smgr->getVideoDriver();
701
702                 if(m_prop.visual == "sprite"){
703                         infostream<<"GenericCAO::addToScene(): single_sprite"<<std::endl;
704                         m_spritenode = smgr->addBillboardSceneNode(
705                                         NULL, v2f(1, 1), v3f(0,0,0), -1);
706                         m_spritenode->setMaterialTexture(0,
707                                         tsrc->getTextureRaw("unknown_block.png"));
708                         m_spritenode->setMaterialFlag(video::EMF_LIGHTING, false);
709                         m_spritenode->setMaterialFlag(video::EMF_BILINEAR_FILTER, false);
710                         m_spritenode->setMaterialType(video::EMT_TRANSPARENT_ALPHA_CHANNEL_REF);
711                         m_spritenode->setMaterialFlag(video::EMF_FOG_ENABLE, true);
712                         u8 li = m_last_light;
713                         m_spritenode->setColor(video::SColor(255,li,li,li));
714                         m_spritenode->setSize(m_prop.visual_size*BS);
715                         {
716                                 const float txs = 1.0 / 1;
717                                 const float tys = 1.0 / 1;
718                                 setBillboardTextureMatrix(m_spritenode,
719                                                 txs, tys, 0, 0);
720                         }
721                 }
722                 else if(m_prop.visual == "upright_sprite")
723                 {
724                         scene::SMesh *mesh = new scene::SMesh();
725                         double dx = BS*m_prop.visual_size.X/2;
726                         double dy = BS*m_prop.visual_size.Y/2;
727                         { // Front
728                         scene::IMeshBuffer *buf = new scene::SMeshBuffer();
729                         u8 li = m_last_light;
730                         video::SColor c(255,li,li,li);
731                         video::S3DVertex vertices[4] =
732                         {
733                                 video::S3DVertex(-dx,-dy,0, 0,0,0, c, 0,1),
734                                 video::S3DVertex(dx,-dy,0, 0,0,0, c, 1,1),
735                                 video::S3DVertex(dx,dy,0, 0,0,0, c, 1,0),
736                                 video::S3DVertex(-dx,dy,0, 0,0,0, c, 0,0),
737                         };
738                         u16 indices[] = {0,1,2,2,3,0};
739                         buf->append(vertices, 4, indices, 6);
740                         // Set material
741                         buf->getMaterial().setFlag(video::EMF_LIGHTING, false);
742                         buf->getMaterial().setFlag(video::EMF_BILINEAR_FILTER, false);
743                         buf->getMaterial().setFlag(video::EMF_FOG_ENABLE, true);
744                         buf->getMaterial().MaterialType = video::EMT_TRANSPARENT_ALPHA_CHANNEL;
745                         // Add to mesh
746                         mesh->addMeshBuffer(buf);
747                         buf->drop();
748                         }
749                         { // Back
750                         scene::IMeshBuffer *buf = new scene::SMeshBuffer();
751                         u8 li = m_last_light;
752                         video::SColor c(255,li,li,li);
753                         video::S3DVertex vertices[4] =
754                         {
755                                 video::S3DVertex(dx,-dy,0, 0,0,0, c, 1,1),
756                                 video::S3DVertex(-dx,-dy,0, 0,0,0, c, 0,1),
757                                 video::S3DVertex(-dx,dy,0, 0,0,0, c, 0,0),
758                                 video::S3DVertex(dx,dy,0, 0,0,0, c, 1,0),
759                         };
760                         u16 indices[] = {0,1,2,2,3,0};
761                         buf->append(vertices, 4, indices, 6);
762                         // Set material
763                         buf->getMaterial().setFlag(video::EMF_LIGHTING, false);
764                         buf->getMaterial().setFlag(video::EMF_BILINEAR_FILTER, false);
765                         buf->getMaterial().setFlag(video::EMF_FOG_ENABLE, true);
766                         buf->getMaterial().MaterialType = video::EMT_TRANSPARENT_ALPHA_CHANNEL_REF;
767                         // Add to mesh
768                         mesh->addMeshBuffer(buf);
769                         buf->drop();
770                         }
771                         m_meshnode = smgr->addMeshSceneNode(mesh, NULL);
772                         mesh->drop();
773                         // Set it to use the materials of the meshbuffers directly.
774                         // This is needed for changing the texture in the future
775                         m_meshnode->setReadOnlyMaterials(true);
776                 }
777                 else if(m_prop.visual == "cube"){
778                         infostream<<"GenericCAO::addToScene(): cube"<<std::endl;
779                         scene::IMesh *mesh = createCubeMesh(v3f(BS,BS,BS));
780                         m_meshnode = smgr->addMeshSceneNode(mesh, NULL);
781                         mesh->drop();
782                         
783                         m_meshnode->setScale(v3f(1));
784                         u8 li = m_last_light;
785                         setMeshColor(m_meshnode->getMesh(), video::SColor(255,li,li,li));
786                 } else {
787                         infostream<<"GenericCAO::addToScene(): \""<<m_prop.visual
788                                         <<"\" not supported"<<std::endl;
789                 }
790                 updateTextures("");
791                 
792                 scene::ISceneNode *node = NULL;
793                 if(m_spritenode)
794                         node = m_spritenode;
795                 else if(m_meshnode)
796                         node = m_meshnode;
797                 if(node && m_is_player && !m_is_local_player){
798                         // Add a text node for showing the name
799                         gui::IGUIEnvironment* gui = irr->getGUIEnvironment();
800                         std::wstring wname = narrow_to_wide(m_name);
801                         m_textnode = smgr->addTextSceneNode(gui->getBuiltInFont(),
802                                         wname.c_str(), video::SColor(255,255,255,255), node);
803                         m_textnode->setPosition(v3f(0, BS*1.1, 0));
804                 }
805                 
806                 updateNodePos();
807         }
808
809         void expireVisuals()
810         {
811                 m_visuals_expired = true;
812         }
813                 
814         void updateLight(u8 light_at_pos)
815         {
816                 bool is_visible = (m_hp != 0);
817                 u8 li = decode_light(light_at_pos);
818                 m_last_light = li;
819                 video::SColor color(255,li,li,li);
820                 if(m_meshnode){
821                         setMeshColor(m_meshnode->getMesh(), color);
822                         m_meshnode->setVisible(is_visible);
823                 }
824                 if(m_spritenode){
825                         m_spritenode->setColor(color);
826                         m_spritenode->setVisible(is_visible);
827                 }
828         }
829
830         v3s16 getLightPosition()
831         {
832                 return floatToInt(m_position, BS);
833         }
834
835         void updateNodePos()
836         {
837                 if(m_meshnode){
838                         m_meshnode->setPosition(pos_translator.vect_show);
839                         v3f rot = m_meshnode->getRotation();
840                         rot.Y = -m_yaw;
841                         m_meshnode->setRotation(rot);
842                 }
843                 if(m_spritenode){
844                         m_spritenode->setPosition(pos_translator.vect_show);
845                 }
846         }
847
848         void step(float dtime, ClientEnvironment *env)
849         {
850                 v3f lastpos = pos_translator.vect_show;
851
852                 if(m_visuals_expired && m_smgr && m_irr){
853                         m_visuals_expired = false;
854                         removeFromScene();
855                         addToScene(m_smgr, m_gamedef->tsrc(), m_irr);
856                 }
857
858                 if(m_prop.physical){
859                         core::aabbox3d<f32> box = m_prop.collisionbox;
860                         box.MinEdge *= BS;
861                         box.MaxEdge *= BS;
862                         collisionMoveResult moveresult;
863                         f32 pos_max_d = BS*0.25; // Distance per iteration
864                         v3f p_pos = m_position;
865                         v3f p_velocity = m_velocity;
866                         IGameDef *gamedef = env->getGameDef();
867                         moveresult = collisionMovePrecise(&env->getMap(), gamedef,
868                                         pos_max_d, box, dtime, p_pos, p_velocity);
869                         // Apply results
870                         m_position = p_pos;
871                         m_velocity = p_velocity;
872                         
873                         bool is_end_position = moveresult.collides;
874                         pos_translator.update(m_position, is_end_position, dtime);
875                         pos_translator.translate(dtime);
876                         updateNodePos();
877
878                         m_velocity += dtime * m_acceleration;
879                 } else {
880                         m_position += dtime * m_velocity + 0.5 * dtime * dtime * m_acceleration;
881                         m_velocity += dtime * m_acceleration;
882                         pos_translator.update(m_position, pos_translator.aim_is_end, pos_translator.anim_time);
883                         pos_translator.translate(dtime);
884                         updateNodePos();
885                 }
886
887                 float moved = lastpos.getDistanceFrom(pos_translator.vect_show);
888                 m_step_distance_counter += moved;
889                 if(m_step_distance_counter > 1.5*BS){
890                         m_step_distance_counter = 0;
891                         if(!m_is_local_player && m_prop.makes_footstep_sound){
892                                 INodeDefManager *ndef = m_gamedef->ndef();
893                                 v3s16 p = floatToInt(getPosition() + v3f(0,
894                                                 (m_prop.collisionbox.MinEdge.Y-0.5)*BS, 0), BS);
895                                 MapNode n = m_env->getMap().getNodeNoEx(p);
896                                 SimpleSoundSpec spec = ndef->get(n).sound_footstep;
897                                 m_gamedef->sound()->playSoundAt(spec, false, getPosition());
898                         }
899                 }
900
901                 m_anim_timer += dtime;
902                 if(m_anim_timer >= m_anim_framelength){
903                         m_anim_timer -= m_anim_framelength;
904                         m_anim_frame++;
905                         if(m_anim_frame >= m_anim_num_frames)
906                                 m_anim_frame = 0;
907                 }
908
909                 updateTexturePos();
910
911                 if(m_reset_textures_timer >= 0){
912                         m_reset_textures_timer -= dtime;
913                         if(m_reset_textures_timer <= 0){
914                                 m_reset_textures_timer = -1;
915                                 updateTextures("");
916                         }
917                 }
918         }
919
920         void updateTexturePos()
921         {
922                 if(m_spritenode){
923                         scene::ICameraSceneNode* camera =
924                                         m_spritenode->getSceneManager()->getActiveCamera();
925                         if(!camera)
926                                 return;
927                         v3f cam_to_entity = m_spritenode->getAbsolutePosition()
928                                         - camera->getAbsolutePosition();
929                         cam_to_entity.normalize();
930
931                         int row = m_tx_basepos.Y;
932                         int col = m_tx_basepos.X;
933                         
934                         if(m_tx_select_horiz_by_yawpitch)
935                         {
936                                 if(cam_to_entity.Y > 0.75)
937                                         col += 5;
938                                 else if(cam_to_entity.Y < -0.75)
939                                         col += 4;
940                                 else{
941                                         float mob_dir = atan2(cam_to_entity.Z, cam_to_entity.X) / PI * 180.;
942                                         float dir = mob_dir - m_yaw;
943                                         dir = wrapDegrees_180(dir);
944                                         //infostream<<"id="<<m_id<<" dir="<<dir<<std::endl;
945                                         if(fabs(wrapDegrees_180(dir - 0)) <= 45.1)
946                                                 col += 2;
947                                         else if(fabs(wrapDegrees_180(dir - 90)) <= 45.1)
948                                                 col += 3;
949                                         else if(fabs(wrapDegrees_180(dir - 180)) <= 45.1)
950                                                 col += 0;
951                                         else if(fabs(wrapDegrees_180(dir + 90)) <= 45.1)
952                                                 col += 1;
953                                         else
954                                                 col += 4;
955                                 }
956                         }
957                         
958                         // Animation goes downwards
959                         row += m_anim_frame;
960
961                         float txs = m_tx_size.X;
962                         float tys = m_tx_size.Y;
963                         setBillboardTextureMatrix(m_spritenode,
964                                         txs, tys, col, row);
965                 }
966         }
967
968         void updateTextures(const std::string &mod)
969         {
970                 ITextureSource *tsrc = m_gamedef->tsrc();
971
972                 if(m_spritenode)
973                 {
974                         if(m_prop.visual == "sprite")
975                         {
976                                 std::string texturestring = "unknown_block.png";
977                                 if(m_prop.textures.size() >= 1)
978                                         texturestring = m_prop.textures[0];
979                                 texturestring += mod;
980                                 m_spritenode->setMaterialTexture(0,
981                                                 tsrc->getTextureRaw(texturestring));
982                         }
983                 }
984                 if(m_meshnode)
985                 {
986                         if(m_prop.visual == "cube")
987                         {
988                                 for (u32 i = 0; i < 6; ++i)
989                                 {
990                                         std::string texturestring = "unknown_block.png";
991                                         if(m_prop.textures.size() > i)
992                                                 texturestring = m_prop.textures[i];
993                                         texturestring += mod;
994                                         AtlasPointer ap = tsrc->getTexture(texturestring);
995
996                                         // Get the tile texture and atlas transformation
997                                         video::ITexture* atlas = ap.atlas;
998                                         v2f pos = ap.pos;
999                                         v2f size = ap.size;
1000
1001                                         // Set material flags and texture
1002                                         video::SMaterial& material = m_meshnode->getMaterial(i);
1003                                         material.setFlag(video::EMF_LIGHTING, false);
1004                                         material.setFlag(video::EMF_BILINEAR_FILTER, false);
1005                                         material.setTexture(0, atlas);
1006                                         material.getTextureMatrix(0).setTextureTranslate(pos.X, pos.Y);
1007                                         material.getTextureMatrix(0).setTextureScale(size.X, size.Y);
1008                                 }
1009                         }
1010                         else if(m_prop.visual == "upright_sprite")
1011                         {
1012                                 scene::IMesh *mesh = m_meshnode->getMesh();
1013                                 {
1014                                         std::string tname = "unknown_object.png";
1015                                         if(m_prop.textures.size() >= 1)
1016                                                 tname = m_prop.textures[0];
1017                                         tname += mod;
1018                                         scene::IMeshBuffer *buf = mesh->getMeshBuffer(0);
1019                                         buf->getMaterial().setTexture(0,
1020                                                         tsrc->getTextureRaw(tname));
1021                                 }
1022                                 {
1023                                         std::string tname = "unknown_object.png";
1024                                         if(m_prop.textures.size() >= 2)
1025                                                 tname = m_prop.textures[1];
1026                                         else if(m_prop.textures.size() >= 1)
1027                                                 tname = m_prop.textures[0];
1028                                         tname += mod;
1029                                         scene::IMeshBuffer *buf = mesh->getMeshBuffer(1);
1030                                         buf->getMaterial().setTexture(0,
1031                                                         tsrc->getTextureRaw(tname));
1032                                 }
1033                         }
1034                 }
1035         }
1036
1037         void processMessage(const std::string &data)
1038         {
1039                 //infostream<<"GenericCAO: Got message"<<std::endl;
1040                 std::istringstream is(data, std::ios::binary);
1041                 // command
1042                 u8 cmd = readU8(is);
1043                 if(cmd == GENERIC_CMD_SET_PROPERTIES)
1044                 {
1045                         m_prop = gob_read_set_properties(is);
1046
1047                         m_selection_box = m_prop.collisionbox;
1048                         m_selection_box.MinEdge *= BS;
1049                         m_selection_box.MaxEdge *= BS;
1050                                 
1051                         m_tx_size.X = 1.0 / m_prop.spritediv.X;
1052                         m_tx_size.Y = 1.0 / m_prop.spritediv.Y;
1053
1054                         if(!m_initial_tx_basepos_set){
1055                                 m_initial_tx_basepos_set = true;
1056                                 m_tx_basepos = m_prop.initial_sprite_basepos;
1057                         }
1058                         
1059                         expireVisuals();
1060                 }
1061                 else if(cmd == GENERIC_CMD_UPDATE_POSITION)
1062                 {
1063                         m_position = readV3F1000(is);
1064                         m_velocity = readV3F1000(is);
1065                         m_acceleration = readV3F1000(is);
1066                         m_yaw = readF1000(is);
1067                         bool do_interpolate = readU8(is);
1068                         bool is_end_position = readU8(is);
1069                         float update_interval = readF1000(is);
1070                         
1071                         if(do_interpolate){
1072                                 if(!m_prop.physical)
1073                                         pos_translator.update(m_position, is_end_position, update_interval);
1074                         } else {
1075                                 pos_translator.init(m_position);
1076                         }
1077                         updateNodePos();
1078                 }
1079                 else if(cmd == GENERIC_CMD_SET_TEXTURE_MOD)
1080                 {
1081                         std::string mod = deSerializeString(is);
1082                         updateTextures(mod);
1083                 }
1084                 else if(cmd == GENERIC_CMD_SET_SPRITE)
1085                 {
1086                         v2s16 p = readV2S16(is);
1087                         int num_frames = readU16(is);
1088                         float framelength = readF1000(is);
1089                         bool select_horiz_by_yawpitch = readU8(is);
1090                         
1091                         m_tx_basepos = p;
1092                         m_anim_num_frames = num_frames;
1093                         m_anim_framelength = framelength;
1094                         m_tx_select_horiz_by_yawpitch = select_horiz_by_yawpitch;
1095
1096                         updateTexturePos();
1097                 }
1098                 else if(cmd == GENERIC_CMD_PUNCHED)
1099                 {
1100                         /*s16 damage =*/ readS16(is);
1101                         s16 result_hp = readS16(is);
1102                         
1103                         m_hp = result_hp;
1104                 }
1105                 else if(cmd == GENERIC_CMD_UPDATE_ARMOR_GROUPS)
1106                 {
1107                         m_armor_groups.clear();
1108                         int armor_groups_size = readU16(is);
1109                         for(int i=0; i<armor_groups_size; i++){
1110                                 std::string name = deSerializeString(is);
1111                                 int rating = readS16(is);
1112                                 m_armor_groups[name] = rating;
1113                         }
1114                 }
1115         }
1116         
1117         bool directReportPunch(v3f dir, const ItemStack *punchitem=NULL,
1118                         float time_from_last_punch=1000000)
1119         {
1120                 assert(punchitem);
1121                 const ToolCapabilities *toolcap =
1122                                 &punchitem->getToolCapabilities(m_gamedef->idef());
1123                 PunchDamageResult result = getPunchDamage(
1124                                 m_armor_groups,
1125                                 toolcap,
1126                                 punchitem,
1127                                 time_from_last_punch);
1128
1129                 if(result.did_punch && result.damage != 0)
1130                 {
1131                         if(result.damage < m_hp){
1132                                 m_hp -= result.damage;
1133                         } else {
1134                                 m_hp = 0;
1135                                 // TODO: Execute defined fast response
1136                                 // As there is no definition, make a smoke puff
1137                                 ClientSimpleObject *simple = createSmokePuff(
1138                                                 m_smgr, m_env, m_position,
1139                                                 m_prop.visual_size * BS);
1140                                 m_env->addSimpleObject(simple);
1141                         }
1142                         // TODO: Execute defined fast response
1143                         // Flashing shall suffice as there is no definition
1144                         m_reset_textures_timer = 0.05;
1145                         if(result.damage >= 2)
1146                                 m_reset_textures_timer += 0.05 * result.damage;
1147                         updateTextures("^[brighten");
1148                 }
1149                 
1150                 return false;
1151         }
1152         
1153         std::string debugInfoText()
1154         {
1155                 std::ostringstream os(std::ios::binary);
1156                 os<<"GenericCAO hp="<<m_hp<<"\n";
1157                 os<<"armor={";
1158                 for(ItemGroupList::const_iterator i = m_armor_groups.begin();
1159                                 i != m_armor_groups.end(); i++){
1160                         os<<i->first<<"="<<i->second<<", ";
1161                 }
1162                 os<<"}";
1163                 return os.str();
1164         }
1165 };
1166
1167 // Prototype
1168 GenericCAO proto_GenericCAO(NULL, NULL);
1169
1170