]> git.lizzy.rs Git - minetest.git/blob - src/client.cpp
Rename macros with two leading underscores
[minetest.git] / src / client.cpp
1 /*
2 Minetest
3 Copyright (C) 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 <iostream>
21 #include <algorithm>
22 #include <sstream>
23 #include <IFileSystem.h>
24 #include "threading/mutex_auto_lock.h"
25 #include "util/auth.h"
26 #include "util/directiontables.h"
27 #include "util/pointedthing.h"
28 #include "util/serialize.h"
29 #include "util/string.h"
30 #include "util/srp.h"
31 #include "client.h"
32 #include "network/clientopcodes.h"
33 #include "filesys.h"
34 #include "porting.h"
35 #include "mapblock_mesh.h"
36 #include "mapblock.h"
37 #include "minimap.h"
38 #include "settings.h"
39 #include "profiler.h"
40 #include "gettext.h"
41 #include "log.h"
42 #include "nodemetadata.h"
43 #include "itemdef.h"
44 #include "shader.h"
45 #include "clientmap.h"
46 #include "clientmedia.h"
47 #include "sound.h"
48 #include "IMeshCache.h"
49 #include "config.h"
50 #include "version.h"
51 #include "drawscene.h"
52 #include "database-sqlite3.h"
53 #include "serialization.h"
54 #include "guiscalingfilter.h"
55
56 extern gui::IGUIEnvironment* guienv;
57
58 /*
59         QueuedMeshUpdate
60 */
61
62 QueuedMeshUpdate::QueuedMeshUpdate():
63         p(-1337,-1337,-1337),
64         data(NULL),
65         ack_block_to_server(false)
66 {
67 }
68
69 QueuedMeshUpdate::~QueuedMeshUpdate()
70 {
71         if(data)
72                 delete data;
73 }
74
75 /*
76         MeshUpdateQueue
77 */
78
79 MeshUpdateQueue::MeshUpdateQueue()
80 {
81 }
82
83 MeshUpdateQueue::~MeshUpdateQueue()
84 {
85         MutexAutoLock lock(m_mutex);
86
87         for(std::vector<QueuedMeshUpdate*>::iterator
88                         i = m_queue.begin();
89                         i != m_queue.end(); ++i)
90         {
91                 QueuedMeshUpdate *q = *i;
92                 delete q;
93         }
94 }
95
96 /*
97         peer_id=0 adds with nobody to send to
98 */
99 void MeshUpdateQueue::addBlock(v3s16 p, MeshMakeData *data, bool ack_block_to_server, bool urgent)
100 {
101         DSTACK(FUNCTION_NAME);
102
103         assert(data);   // pre-condition
104
105         MutexAutoLock lock(m_mutex);
106
107         if(urgent)
108                 m_urgents.insert(p);
109
110         /*
111                 Find if block is already in queue.
112                 If it is, update the data and quit.
113         */
114         for(std::vector<QueuedMeshUpdate*>::iterator
115                         i = m_queue.begin();
116                         i != m_queue.end(); ++i)
117         {
118                 QueuedMeshUpdate *q = *i;
119                 if(q->p == p)
120                 {
121                         if(q->data)
122                                 delete q->data;
123                         q->data = data;
124                         if(ack_block_to_server)
125                                 q->ack_block_to_server = true;
126                         return;
127                 }
128         }
129
130         /*
131                 Add the block
132         */
133         QueuedMeshUpdate *q = new QueuedMeshUpdate;
134         q->p = p;
135         q->data = data;
136         q->ack_block_to_server = ack_block_to_server;
137         m_queue.push_back(q);
138 }
139
140 // Returned pointer must be deleted
141 // Returns NULL if queue is empty
142 QueuedMeshUpdate *MeshUpdateQueue::pop()
143 {
144         MutexAutoLock lock(m_mutex);
145
146         bool must_be_urgent = !m_urgents.empty();
147         for(std::vector<QueuedMeshUpdate*>::iterator
148                         i = m_queue.begin();
149                         i != m_queue.end(); ++i)
150         {
151                 QueuedMeshUpdate *q = *i;
152                 if(must_be_urgent && m_urgents.count(q->p) == 0)
153                         continue;
154                 m_queue.erase(i);
155                 m_urgents.erase(q->p);
156                 return q;
157         }
158         return NULL;
159 }
160
161 /*
162         MeshUpdateThread
163 */
164
165 void MeshUpdateThread::enqueueUpdate(v3s16 p, MeshMakeData *data,
166                 bool ack_block_to_server, bool urgent)
167 {
168         m_queue_in.addBlock(p, data, ack_block_to_server, urgent);
169         deferUpdate();
170 }
171
172 void MeshUpdateThread::doUpdate()
173 {
174         QueuedMeshUpdate *q;
175         while ((q = m_queue_in.pop())) {
176
177                 ScopeProfiler sp(g_profiler, "Client: Mesh making");
178
179                 MapBlockMesh *mesh_new = new MapBlockMesh(q->data, m_camera_offset);
180
181                 MeshUpdateResult r;
182                 r.p = q->p;
183                 r.mesh = mesh_new;
184                 r.ack_block_to_server = q->ack_block_to_server;
185
186                 m_queue_out.push_back(r);
187
188                 delete q;
189         }
190 }
191
192 /*
193         Client
194 */
195
196 Client::Client(
197                 IrrlichtDevice *device,
198                 const char *playername,
199                 std::string password,
200                 MapDrawControl &control,
201                 IWritableTextureSource *tsrc,
202                 IWritableShaderSource *shsrc,
203                 IWritableItemDefManager *itemdef,
204                 IWritableNodeDefManager *nodedef,
205                 ISoundManager *sound,
206                 MtEventManager *event,
207                 bool ipv6
208 ):
209         m_packetcounter_timer(0.0),
210         m_connection_reinit_timer(0.1),
211         m_avg_rtt_timer(0.0),
212         m_playerpos_send_timer(0.0),
213         m_ignore_damage_timer(0.0),
214         m_tsrc(tsrc),
215         m_shsrc(shsrc),
216         m_itemdef(itemdef),
217         m_nodedef(nodedef),
218         m_sound(sound),
219         m_event(event),
220         m_mesh_update_thread(),
221         m_env(
222                 new ClientMap(this, this, control,
223                         device->getSceneManager()->getRootSceneNode(),
224                         device->getSceneManager(), 666),
225                 device->getSceneManager(),
226                 tsrc, this, device
227         ),
228         m_particle_manager(&m_env),
229         m_con(PROTOCOL_ID, 512, CONNECTION_TIMEOUT, ipv6, this),
230         m_device(device),
231         m_minimap_disabled_by_server(false),
232         m_server_ser_ver(SER_FMT_VER_INVALID),
233         m_proto_ver(0),
234         m_playeritem(0),
235         m_inventory_updated(false),
236         m_inventory_from_server(NULL),
237         m_inventory_from_server_age(0.0),
238         m_show_highlighted(false),
239         m_animation_time(0),
240         m_crack_level(-1),
241         m_crack_pos(0,0,0),
242         m_highlighted_pos(0,0,0),
243         m_map_seed(0),
244         m_password(password),
245         m_chosen_auth_mech(AUTH_MECHANISM_NONE),
246         m_auth_data(NULL),
247         m_access_denied(false),
248         m_access_denied_reconnect(false),
249         m_itemdef_received(false),
250         m_nodedef_received(false),
251         m_media_downloader(new ClientMediaDownloader()),
252         m_time_of_day_set(false),
253         m_last_time_of_day_f(-1),
254         m_time_of_day_update_timer(0),
255         m_recommended_send_interval(0.1),
256         m_removed_sounds_check_timer(0),
257         m_state(LC_Created),
258         m_localdb(NULL)
259 {
260         // Add local player
261         m_env.addPlayer(new LocalPlayer(this, playername));
262
263         m_mapper = new Mapper(device, this);
264         m_cache_save_interval = g_settings->getU16("server_map_save_interval");
265
266         m_cache_smooth_lighting = g_settings->getBool("smooth_lighting");
267         m_cache_enable_shaders  = g_settings->getBool("enable_shaders");
268 }
269
270 void Client::Stop()
271 {
272         //request all client managed threads to stop
273         m_mesh_update_thread.stop();
274         // Save local server map
275         if (m_localdb) {
276                 infostream << "Local map saving ended." << std::endl;
277                 m_localdb->endSave();
278         }
279 }
280
281 bool Client::isShutdown()
282 {
283
284         if (!m_mesh_update_thread.isRunning()) return true;
285
286         return false;
287 }
288
289 Client::~Client()
290 {
291         m_con.Disconnect();
292
293         m_mesh_update_thread.stop();
294         m_mesh_update_thread.wait();
295         while (!m_mesh_update_thread.m_queue_out.empty()) {
296                 MeshUpdateResult r = m_mesh_update_thread.m_queue_out.pop_frontNoEx();
297                 delete r.mesh;
298         }
299
300
301         delete m_inventory_from_server;
302
303         // Delete detached inventories
304         for (std::map<std::string, Inventory*>::iterator
305                         i = m_detached_inventories.begin();
306                         i != m_detached_inventories.end(); ++i) {
307                 delete i->second;
308         }
309
310         // cleanup 3d model meshes on client shutdown
311         while (m_device->getSceneManager()->getMeshCache()->getMeshCount() != 0) {
312                 scene::IAnimatedMesh *mesh =
313                         m_device->getSceneManager()->getMeshCache()->getMeshByIndex(0);
314
315                 if (mesh != NULL)
316                         m_device->getSceneManager()->getMeshCache()->removeMesh(mesh);
317         }
318
319         delete m_mapper;
320 }
321
322 void Client::connect(Address address,
323                 const std::string &address_name,
324                 bool is_local_server)
325 {
326         DSTACK(FUNCTION_NAME);
327
328         initLocalMapSaving(address, address_name, is_local_server);
329
330         m_con.SetTimeoutMs(0);
331         m_con.Connect(address);
332 }
333
334 void Client::step(float dtime)
335 {
336         DSTACK(FUNCTION_NAME);
337
338         // Limit a bit
339         if(dtime > 2.0)
340                 dtime = 2.0;
341
342         if(m_ignore_damage_timer > dtime)
343                 m_ignore_damage_timer -= dtime;
344         else
345                 m_ignore_damage_timer = 0.0;
346
347         m_animation_time += dtime;
348         if(m_animation_time > 60.0)
349                 m_animation_time -= 60.0;
350
351         m_time_of_day_update_timer += dtime;
352
353         ReceiveAll();
354
355         /*
356                 Packet counter
357         */
358         {
359                 float &counter = m_packetcounter_timer;
360                 counter -= dtime;
361                 if(counter <= 0.0)
362                 {
363                         counter = 20.0;
364
365                         infostream << "Client packetcounter (" << m_packetcounter_timer
366                                         << "):"<<std::endl;
367                         m_packetcounter.print(infostream);
368                         m_packetcounter.clear();
369                 }
370         }
371
372         // UGLY hack to fix 2 second startup delay caused by non existent
373         // server client startup synchronization in local server or singleplayer mode
374         static bool initial_step = true;
375         if (initial_step) {
376                 initial_step = false;
377         }
378         else if(m_state == LC_Created) {
379                 float &counter = m_connection_reinit_timer;
380                 counter -= dtime;
381                 if(counter <= 0.0) {
382                         counter = 2.0;
383
384                         Player *myplayer = m_env.getLocalPlayer();
385                         FATAL_ERROR_IF(myplayer == NULL, "Local player not found in environment.");
386
387                         // Send TOSERVER_INIT_LEGACY
388                         // [0] u16 TOSERVER_INIT_LEGACY
389                         // [2] u8 SER_FMT_VER_HIGHEST_READ
390                         // [3] u8[20] player_name
391                         // [23] u8[28] password (new in some version)
392                         // [51] u16 minimum supported network protocol version (added sometime)
393                         // [53] u16 maximum supported network protocol version (added later than the previous one)
394
395                         char pName[PLAYERNAME_SIZE];
396                         char pPassword[PASSWORD_SIZE];
397                         memset(pName, 0, PLAYERNAME_SIZE * sizeof(char));
398                         memset(pPassword, 0, PASSWORD_SIZE * sizeof(char));
399
400                         std::string hashed_password = translatePassword(myplayer->getName(), m_password);
401                         snprintf(pName, PLAYERNAME_SIZE, "%s", myplayer->getName());
402                         snprintf(pPassword, PASSWORD_SIZE, "%s", hashed_password.c_str());
403
404                         sendLegacyInit(pName, pPassword);
405                         if (LATEST_PROTOCOL_VERSION >= 25)
406                                 sendInit(myplayer->getName());
407                 }
408
409                 // Not connected, return
410                 return;
411         }
412
413         /*
414                 Do stuff if connected
415         */
416
417         /*
418                 Run Map's timers and unload unused data
419         */
420         const float map_timer_and_unload_dtime = 5.25;
421         if(m_map_timer_and_unload_interval.step(dtime, map_timer_and_unload_dtime)) {
422                 ScopeProfiler sp(g_profiler, "Client: map timer and unload");
423                 std::vector<v3s16> deleted_blocks;
424                 m_env.getMap().timerUpdate(map_timer_and_unload_dtime,
425                         g_settings->getFloat("client_unload_unused_data_timeout"),
426                         g_settings->getS32("client_mapblock_limit"),
427                         &deleted_blocks);
428
429                 /*
430                         Send info to server
431                         NOTE: This loop is intentionally iterated the way it is.
432                 */
433
434                 std::vector<v3s16>::iterator i = deleted_blocks.begin();
435                 std::vector<v3s16> sendlist;
436                 for(;;) {
437                         if(sendlist.size() == 255 || i == deleted_blocks.end()) {
438                                 if(sendlist.empty())
439                                         break;
440                                 /*
441                                         [0] u16 command
442                                         [2] u8 count
443                                         [3] v3s16 pos_0
444                                         [3+6] v3s16 pos_1
445                                         ...
446                                 */
447
448                                 sendDeletedBlocks(sendlist);
449
450                                 if(i == deleted_blocks.end())
451                                         break;
452
453                                 sendlist.clear();
454                         }
455
456                         sendlist.push_back(*i);
457                         ++i;
458                 }
459         }
460
461         /*
462                 Handle environment
463         */
464         // Control local player (0ms)
465         LocalPlayer *player = m_env.getLocalPlayer();
466         assert(player != NULL);
467         player->applyControl(dtime);
468
469         // Step environment
470         m_env.step(dtime);
471
472         /*
473                 Get events
474         */
475         for(;;) {
476                 ClientEnvEvent event = m_env.getClientEvent();
477                 if(event.type == CEE_NONE) {
478                         break;
479                 }
480                 else if(event.type == CEE_PLAYER_DAMAGE) {
481                         if(m_ignore_damage_timer <= 0) {
482                                 u8 damage = event.player_damage.amount;
483
484                                 if(event.player_damage.send_to_server)
485                                         sendDamage(damage);
486
487                                 // Add to ClientEvent queue
488                                 ClientEvent event;
489                                 event.type = CE_PLAYER_DAMAGE;
490                                 event.player_damage.amount = damage;
491                                 m_client_event_queue.push(event);
492                         }
493                 }
494                 else if(event.type == CEE_PLAYER_BREATH) {
495                                 u16 breath = event.player_breath.amount;
496                                 sendBreath(breath);
497                 }
498         }
499
500         /*
501                 Print some info
502         */
503         float &counter = m_avg_rtt_timer;
504         counter += dtime;
505         if(counter >= 10) {
506                 counter = 0.0;
507                 // connectedAndInitialized() is true, peer exists.
508                 float avg_rtt = getRTT();
509                 infostream << "Client: avg_rtt=" << avg_rtt << std::endl;
510         }
511
512         /*
513                 Send player position to server
514         */
515         {
516                 float &counter = m_playerpos_send_timer;
517                 counter += dtime;
518                 if((m_state == LC_Ready) && (counter >= m_recommended_send_interval))
519                 {
520                         counter = 0.0;
521                         sendPlayerPos();
522                 }
523         }
524
525         /*
526                 Replace updated meshes
527         */
528         {
529                 int num_processed_meshes = 0;
530                 while (!m_mesh_update_thread.m_queue_out.empty())
531                 {
532                         num_processed_meshes++;
533
534                         MinimapMapblock *minimap_mapblock = NULL;
535                         bool do_mapper_update = true;
536
537                         MeshUpdateResult r = m_mesh_update_thread.m_queue_out.pop_frontNoEx();
538                         MapBlock *block = m_env.getMap().getBlockNoCreateNoEx(r.p);
539                         if (block) {
540                                 // Delete the old mesh
541                                 if (block->mesh != NULL) {
542                                         delete block->mesh;
543                                         block->mesh = NULL;
544                                 }
545
546                                 if (r.mesh) {
547                                         minimap_mapblock = r.mesh->moveMinimapMapblock();
548                                         if (minimap_mapblock == NULL)
549                                                 do_mapper_update = false;
550                                 }
551
552                                 if (r.mesh && r.mesh->getMesh()->getMeshBufferCount() == 0) {
553                                         delete r.mesh;
554                                 } else {
555                                         // Replace with the new mesh
556                                         block->mesh = r.mesh;
557                                 }
558                         } else {
559                                 delete r.mesh;
560                         }
561
562                         if (do_mapper_update)
563                                 m_mapper->addBlock(r.p, minimap_mapblock);
564
565                         if (r.ack_block_to_server) {
566                                 /*
567                                         Acknowledge block
568                                         [0] u8 count
569                                         [1] v3s16 pos_0
570                                 */
571                                 sendGotBlocks(r.p);
572                         }
573                 }
574
575                 if (num_processed_meshes > 0)
576                         g_profiler->graphAdd("num_processed_meshes", num_processed_meshes);
577         }
578
579         /*
580                 Load fetched media
581         */
582         if (m_media_downloader && m_media_downloader->isStarted()) {
583                 m_media_downloader->step(this);
584                 if (m_media_downloader->isDone()) {
585                         received_media();
586                         delete m_media_downloader;
587                         m_media_downloader = NULL;
588                 }
589         }
590
591         /*
592                 If the server didn't update the inventory in a while, revert
593                 the local inventory (so the player notices the lag problem
594                 and knows something is wrong).
595         */
596         if(m_inventory_from_server)
597         {
598                 float interval = 10.0;
599                 float count_before = floor(m_inventory_from_server_age / interval);
600
601                 m_inventory_from_server_age += dtime;
602
603                 float count_after = floor(m_inventory_from_server_age / interval);
604
605                 if(count_after != count_before)
606                 {
607                         // Do this every <interval> seconds after TOCLIENT_INVENTORY
608                         // Reset the locally changed inventory to the authoritative inventory
609                         Player *player = m_env.getLocalPlayer();
610                         player->inventory = *m_inventory_from_server;
611                         m_inventory_updated = true;
612                 }
613         }
614
615         /*
616                 Update positions of sounds attached to objects
617         */
618         {
619                 for(std::map<int, u16>::iterator
620                                 i = m_sounds_to_objects.begin();
621                                 i != m_sounds_to_objects.end(); ++i)
622                 {
623                         int client_id = i->first;
624                         u16 object_id = i->second;
625                         ClientActiveObject *cao = m_env.getActiveObject(object_id);
626                         if(!cao)
627                                 continue;
628                         v3f pos = cao->getPosition();
629                         m_sound->updateSoundPosition(client_id, pos);
630                 }
631         }
632
633         /*
634                 Handle removed remotely initiated sounds
635         */
636         m_removed_sounds_check_timer += dtime;
637         if(m_removed_sounds_check_timer >= 2.32) {
638                 m_removed_sounds_check_timer = 0;
639                 // Find removed sounds and clear references to them
640                 std::vector<s32> removed_server_ids;
641                 for(std::map<s32, int>::iterator
642                                 i = m_sounds_server_to_client.begin();
643                                 i != m_sounds_server_to_client.end();) {
644                         s32 server_id = i->first;
645                         int client_id = i->second;
646                         ++i;
647                         if(!m_sound->soundExists(client_id)) {
648                                 m_sounds_server_to_client.erase(server_id);
649                                 m_sounds_client_to_server.erase(client_id);
650                                 m_sounds_to_objects.erase(client_id);
651                                 removed_server_ids.push_back(server_id);
652                         }
653                 }
654
655                 // Sync to server
656                 if(!removed_server_ids.empty()) {
657                         sendRemovedSounds(removed_server_ids);
658                 }
659         }
660
661         // Write server map
662         if (m_localdb && m_localdb_save_interval.step(dtime,
663                         m_cache_save_interval)) {
664                 m_localdb->endSave();
665                 m_localdb->beginSave();
666         }
667 }
668
669 bool Client::loadMedia(const std::string &data, const std::string &filename)
670 {
671         // Silly irrlicht's const-incorrectness
672         Buffer<char> data_rw(data.c_str(), data.size());
673
674         std::string name;
675
676         const char *image_ext[] = {
677                 ".png", ".jpg", ".bmp", ".tga",
678                 ".pcx", ".ppm", ".psd", ".wal", ".rgb",
679                 NULL
680         };
681         name = removeStringEnd(filename, image_ext);
682         if(name != "")
683         {
684                 verbosestream<<"Client: Attempting to load image "
685                 <<"file \""<<filename<<"\""<<std::endl;
686
687                 io::IFileSystem *irrfs = m_device->getFileSystem();
688                 video::IVideoDriver *vdrv = m_device->getVideoDriver();
689
690                 // Create an irrlicht memory file
691                 io::IReadFile *rfile = irrfs->createMemoryReadFile(
692                                 *data_rw, data_rw.getSize(), "_tempreadfile");
693
694                 FATAL_ERROR_IF(!rfile, "Could not create irrlicht memory file.");
695
696                 // Read image
697                 video::IImage *img = vdrv->createImageFromFile(rfile);
698                 if(!img){
699                         errorstream<<"Client: Cannot create image from data of "
700                                         <<"file \""<<filename<<"\""<<std::endl;
701                         rfile->drop();
702                         return false;
703                 }
704                 else {
705                         m_tsrc->insertSourceImage(filename, img);
706                         img->drop();
707                         rfile->drop();
708                         return true;
709                 }
710         }
711
712         const char *sound_ext[] = {
713                 ".0.ogg", ".1.ogg", ".2.ogg", ".3.ogg", ".4.ogg",
714                 ".5.ogg", ".6.ogg", ".7.ogg", ".8.ogg", ".9.ogg",
715                 ".ogg", NULL
716         };
717         name = removeStringEnd(filename, sound_ext);
718         if(name != "")
719         {
720                 verbosestream<<"Client: Attempting to load sound "
721                 <<"file \""<<filename<<"\""<<std::endl;
722                 m_sound->loadSoundData(name, data);
723                 return true;
724         }
725
726         const char *model_ext[] = {
727                 ".x", ".b3d", ".md2", ".obj",
728                 NULL
729         };
730         name = removeStringEnd(filename, model_ext);
731         if(name != "")
732         {
733                 verbosestream<<"Client: Storing model into memory: "
734                                 <<"\""<<filename<<"\""<<std::endl;
735                 if(m_mesh_data.count(filename))
736                         errorstream<<"Multiple models with name \""<<filename.c_str()
737                                         <<"\" found; replacing previous model"<<std::endl;
738                 m_mesh_data[filename] = data;
739                 return true;
740         }
741
742         errorstream<<"Client: Don't know how to load file \""
743                         <<filename<<"\""<<std::endl;
744         return false;
745 }
746
747 // Virtual methods from con::PeerHandler
748 void Client::peerAdded(con::Peer *peer)
749 {
750         infostream << "Client::peerAdded(): peer->id="
751                         << peer->id << std::endl;
752 }
753 void Client::deletingPeer(con::Peer *peer, bool timeout)
754 {
755         infostream << "Client::deletingPeer(): "
756                         "Server Peer is getting deleted "
757                         << "(timeout=" << timeout << ")" << std::endl;
758
759         if (timeout) {
760                 m_access_denied = true;
761                 m_access_denied_reason = gettext("Connection timed out.");
762         }
763 }
764
765 /*
766         u16 command
767         u16 number of files requested
768         for each file {
769                 u16 length of name
770                 string name
771         }
772 */
773 void Client::request_media(const std::vector<std::string> &file_requests)
774 {
775         std::ostringstream os(std::ios_base::binary);
776         writeU16(os, TOSERVER_REQUEST_MEDIA);
777         size_t file_requests_size = file_requests.size();
778
779         FATAL_ERROR_IF(file_requests_size > 0xFFFF, "Unsupported number of file requests");
780
781         // Packet dynamicly resized
782         NetworkPacket pkt(TOSERVER_REQUEST_MEDIA, 2 + 0);
783
784         pkt << (u16) (file_requests_size & 0xFFFF);
785
786         for(std::vector<std::string>::const_iterator i = file_requests.begin();
787                         i != file_requests.end(); ++i) {
788                 pkt << (*i);
789         }
790
791         Send(&pkt);
792
793         infostream << "Client: Sending media request list to server ("
794                         << file_requests.size() << " files. packet size)" << std::endl;
795 }
796
797 void Client::received_media()
798 {
799         NetworkPacket pkt(TOSERVER_RECEIVED_MEDIA, 0);
800         Send(&pkt);
801         infostream << "Client: Notifying server that we received all media"
802                         << std::endl;
803 }
804
805 void Client::initLocalMapSaving(const Address &address,
806                 const std::string &hostname,
807                 bool is_local_server)
808 {
809         if (!g_settings->getBool("enable_local_map_saving") || is_local_server) {
810                 return;
811         }
812
813         const std::string world_path = porting::path_user
814                 + DIR_DELIM + "worlds"
815                 + DIR_DELIM + "server_"
816                 + hostname + "_" + to_string(address.getPort());
817
818         fs::CreateAllDirs(world_path);
819
820         m_localdb = new Database_SQLite3(world_path);
821         m_localdb->beginSave();
822         actionstream << "Local map saving started, map will be saved at '" << world_path << "'" << std::endl;
823 }
824
825 void Client::ReceiveAll()
826 {
827         DSTACK(FUNCTION_NAME);
828         u32 start_ms = porting::getTimeMs();
829         for(;;)
830         {
831                 // Limit time even if there would be huge amounts of data to
832                 // process
833                 if(porting::getTimeMs() > start_ms + 100)
834                         break;
835
836                 try {
837                         Receive();
838                         g_profiler->graphAdd("client_received_packets", 1);
839                 }
840                 catch(con::NoIncomingDataException &e) {
841                         break;
842                 }
843                 catch(con::InvalidIncomingDataException &e) {
844                         infostream<<"Client::ReceiveAll(): "
845                                         "InvalidIncomingDataException: what()="
846                                         <<e.what()<<std::endl;
847                 }
848         }
849 }
850
851 void Client::Receive()
852 {
853         DSTACK(FUNCTION_NAME);
854         NetworkPacket pkt;
855         m_con.Receive(&pkt);
856         ProcessData(&pkt);
857 }
858
859 inline void Client::handleCommand(NetworkPacket* pkt)
860 {
861         const ToClientCommandHandler& opHandle = toClientCommandTable[pkt->getCommand()];
862         (this->*opHandle.handler)(pkt);
863 }
864
865 /*
866         sender_peer_id given to this shall be quaranteed to be a valid peer
867 */
868 void Client::ProcessData(NetworkPacket *pkt)
869 {
870         DSTACK(FUNCTION_NAME);
871
872         ToClientCommand command = (ToClientCommand) pkt->getCommand();
873         u32 sender_peer_id = pkt->getPeerId();
874
875         //infostream<<"Client: received command="<<command<<std::endl;
876         m_packetcounter.add((u16)command);
877
878         /*
879                 If this check is removed, be sure to change the queue
880                 system to know the ids
881         */
882         if(sender_peer_id != PEER_ID_SERVER) {
883                 infostream << "Client::ProcessData(): Discarding data not "
884                         "coming from server: peer_id=" << sender_peer_id
885                         << std::endl;
886                 return;
887         }
888
889         // Command must be handled into ToClientCommandHandler
890         if (command >= TOCLIENT_NUM_MSG_TYPES) {
891                 infostream << "Client: Ignoring unknown command "
892                         << command << std::endl;
893                 return;
894         }
895
896         /*
897          * Those packets are handled before m_server_ser_ver is set, it's normal
898          * But we must use the new ToClientConnectionState in the future,
899          * as a byte mask
900          */
901         if(toClientCommandTable[command].state == TOCLIENT_STATE_NOT_CONNECTED) {
902                 handleCommand(pkt);
903                 return;
904         }
905
906         if(m_server_ser_ver == SER_FMT_VER_INVALID) {
907                 infostream << "Client: Server serialization"
908                                 " format invalid or not initialized."
909                                 " Skipping incoming command=" << command << std::endl;
910                 return;
911         }
912
913         /*
914           Handle runtime commands
915         */
916
917         handleCommand(pkt);
918 }
919
920 void Client::Send(NetworkPacket* pkt)
921 {
922         m_con.Send(PEER_ID_SERVER,
923                 serverCommandFactoryTable[pkt->getCommand()].channel,
924                 pkt,
925                 serverCommandFactoryTable[pkt->getCommand()].reliable);
926 }
927
928 void Client::interact(u8 action, const PointedThing& pointed)
929 {
930         if(m_state != LC_Ready) {
931                 errorstream << "Client::interact() "
932                                 "Canceled (not connected)"
933                                 << std::endl;
934                 return;
935         }
936
937         /*
938                 [0] u16 command
939                 [2] u8 action
940                 [3] u16 item
941                 [5] u32 length of the next item
942                 [9] serialized PointedThing
943                 actions:
944                 0: start digging (from undersurface) or use
945                 1: stop digging (all parameters ignored)
946                 2: digging completed
947                 3: place block or item (to abovesurface)
948                 4: use item
949         */
950
951         NetworkPacket pkt(TOSERVER_INTERACT, 1 + 2 + 0);
952
953         pkt << action;
954         pkt << (u16)getPlayerItem();
955
956         std::ostringstream tmp_os(std::ios::binary);
957         pointed.serialize(tmp_os);
958
959         pkt.putLongString(tmp_os.str());
960
961         Send(&pkt);
962 }
963
964 void Client::deleteAuthData()
965 {
966         if (!m_auth_data)
967                 return;
968
969         switch (m_chosen_auth_mech) {
970                 case AUTH_MECHANISM_FIRST_SRP:
971                         break;
972                 case AUTH_MECHANISM_SRP:
973                 case AUTH_MECHANISM_LEGACY_PASSWORD:
974                         srp_user_delete((SRPUser *) m_auth_data);
975                         m_auth_data = NULL;
976                         break;
977                 case AUTH_MECHANISM_NONE:
978                         break;
979         }
980         m_chosen_auth_mech = AUTH_MECHANISM_NONE;
981 }
982
983
984 AuthMechanism Client::choseAuthMech(const u32 mechs)
985 {
986         if (mechs & AUTH_MECHANISM_SRP)
987                 return AUTH_MECHANISM_SRP;
988
989         if (mechs & AUTH_MECHANISM_FIRST_SRP)
990                 return AUTH_MECHANISM_FIRST_SRP;
991
992         if (mechs & AUTH_MECHANISM_LEGACY_PASSWORD)
993                 return AUTH_MECHANISM_LEGACY_PASSWORD;
994
995         return AUTH_MECHANISM_NONE;
996 }
997
998 void Client::sendLegacyInit(const char* playerName, const char* playerPassword)
999 {
1000         NetworkPacket pkt(TOSERVER_INIT_LEGACY,
1001                         1 + PLAYERNAME_SIZE + PASSWORD_SIZE + 2 + 2);
1002
1003         pkt << (u8) SER_FMT_VER_HIGHEST_READ;
1004         pkt.putRawString(playerName,PLAYERNAME_SIZE);
1005         pkt.putRawString(playerPassword, PASSWORD_SIZE);
1006         pkt << (u16) CLIENT_PROTOCOL_VERSION_MIN << (u16) CLIENT_PROTOCOL_VERSION_MAX;
1007
1008         Send(&pkt);
1009 }
1010
1011 void Client::sendInit(const std::string &playerName)
1012 {
1013         NetworkPacket pkt(TOSERVER_INIT, 1 + 2 + 2 + (1 + playerName.size()));
1014
1015         // we don't support network compression yet
1016         u16 supp_comp_modes = NETPROTO_COMPRESSION_NONE;
1017         pkt << (u8) SER_FMT_VER_HIGHEST_READ << (u16) supp_comp_modes;
1018         pkt << (u16) CLIENT_PROTOCOL_VERSION_MIN << (u16) CLIENT_PROTOCOL_VERSION_MAX;
1019         pkt << playerName;
1020
1021         Send(&pkt);
1022 }
1023
1024 void Client::startAuth(AuthMechanism chosen_auth_mechanism)
1025 {
1026         m_chosen_auth_mech = chosen_auth_mechanism;
1027
1028         switch (chosen_auth_mechanism) {
1029                 case AUTH_MECHANISM_FIRST_SRP: {
1030                         // send srp verifier to server
1031                         NetworkPacket resp_pkt(TOSERVER_FIRST_SRP, 0);
1032                         char *salt, *bytes_v;
1033                         std::size_t len_salt, len_v;
1034                         salt = NULL;
1035                         getSRPVerifier(getPlayerName(), m_password,
1036                                 &salt, &len_salt, &bytes_v, &len_v);
1037                         resp_pkt
1038                                 << std::string((char*)salt, len_salt)
1039                                 << std::string((char*)bytes_v, len_v)
1040                                 << (u8)((m_password == "") ? 1 : 0);
1041                         free(salt);
1042                         free(bytes_v);
1043                         Send(&resp_pkt);
1044                         break;
1045                 }
1046                 case AUTH_MECHANISM_SRP:
1047                 case AUTH_MECHANISM_LEGACY_PASSWORD: {
1048                         u8 based_on = 1;
1049
1050                         if (chosen_auth_mechanism == AUTH_MECHANISM_LEGACY_PASSWORD) {
1051                                 m_password = translatePassword(getPlayerName(), m_password);
1052                                 based_on = 0;
1053                         }
1054
1055                         std::string playername_u = lowercase(getPlayerName());
1056                         m_auth_data = srp_user_new(SRP_SHA256, SRP_NG_2048,
1057                                 getPlayerName().c_str(), playername_u.c_str(),
1058                                 (const unsigned char *) m_password.c_str(),
1059                                 m_password.length(), NULL, NULL);
1060                         char *bytes_A = 0;
1061                         size_t len_A = 0;
1062                         SRP_Result res = srp_user_start_authentication(
1063                                 (struct SRPUser *) m_auth_data, NULL, NULL, 0,
1064                                 (unsigned char **) &bytes_A, &len_A);
1065                         FATAL_ERROR_IF(res != SRP_OK, "Creating local SRP user failed.");
1066
1067                         NetworkPacket resp_pkt(TOSERVER_SRP_BYTES_A, 0);
1068                         resp_pkt << std::string(bytes_A, len_A) << based_on;
1069                         Send(&resp_pkt);
1070                         break;
1071                 }
1072                 case AUTH_MECHANISM_NONE:
1073                         break; // not handled in this method
1074         }
1075 }
1076
1077 void Client::sendDeletedBlocks(std::vector<v3s16> &blocks)
1078 {
1079         NetworkPacket pkt(TOSERVER_DELETEDBLOCKS, 1 + sizeof(v3s16) * blocks.size());
1080
1081         pkt << (u8) blocks.size();
1082
1083         u32 k = 0;
1084         for(std::vector<v3s16>::iterator
1085                         j = blocks.begin();
1086                         j != blocks.end(); ++j) {
1087                 pkt << *j;
1088                 k++;
1089         }
1090
1091         Send(&pkt);
1092 }
1093
1094 void Client::sendGotBlocks(v3s16 block)
1095 {
1096         NetworkPacket pkt(TOSERVER_GOTBLOCKS, 1 + 6);
1097         pkt << (u8) 1 << block;
1098         Send(&pkt);
1099 }
1100
1101 void Client::sendRemovedSounds(std::vector<s32> &soundList)
1102 {
1103         size_t server_ids = soundList.size();
1104         assert(server_ids <= 0xFFFF);
1105
1106         NetworkPacket pkt(TOSERVER_REMOVED_SOUNDS, 2 + server_ids * 4);
1107
1108         pkt << (u16) (server_ids & 0xFFFF);
1109
1110         for(std::vector<s32>::iterator i = soundList.begin();
1111                         i != soundList.end(); ++i)
1112                 pkt << *i;
1113
1114         Send(&pkt);
1115 }
1116
1117 void Client::sendNodemetaFields(v3s16 p, const std::string &formname,
1118                 const StringMap &fields)
1119 {
1120         size_t fields_size = fields.size();
1121
1122         FATAL_ERROR_IF(fields_size > 0xFFFF, "Unsupported number of nodemeta fields");
1123
1124         NetworkPacket pkt(TOSERVER_NODEMETA_FIELDS, 0);
1125
1126         pkt << p << formname << (u16) (fields_size & 0xFFFF);
1127
1128         StringMap::const_iterator it;
1129         for (it = fields.begin(); it != fields.end(); ++it) {
1130                 const std::string &name = it->first;
1131                 const std::string &value = it->second;
1132                 pkt << name;
1133                 pkt.putLongString(value);
1134         }
1135
1136         Send(&pkt);
1137 }
1138
1139 void Client::sendInventoryFields(const std::string &formname,
1140                 const StringMap &fields)
1141 {
1142         size_t fields_size = fields.size();
1143         FATAL_ERROR_IF(fields_size > 0xFFFF, "Unsupported number of inventory fields");
1144
1145         NetworkPacket pkt(TOSERVER_INVENTORY_FIELDS, 0);
1146         pkt << formname << (u16) (fields_size & 0xFFFF);
1147
1148         StringMap::const_iterator it;
1149         for (it = fields.begin(); it != fields.end(); ++it) {
1150                 const std::string &name  = it->first;
1151                 const std::string &value = it->second;
1152                 pkt << name;
1153                 pkt.putLongString(value);
1154         }
1155
1156         Send(&pkt);
1157 }
1158
1159 void Client::sendInventoryAction(InventoryAction *a)
1160 {
1161         std::ostringstream os(std::ios_base::binary);
1162
1163         a->serialize(os);
1164
1165         // Make data buffer
1166         std::string s = os.str();
1167
1168         NetworkPacket pkt(TOSERVER_INVENTORY_ACTION, s.size());
1169         pkt.putRawString(s.c_str(),s.size());
1170
1171         Send(&pkt);
1172 }
1173
1174 void Client::sendChatMessage(const std::wstring &message)
1175 {
1176         NetworkPacket pkt(TOSERVER_CHAT_MESSAGE, 2 + message.size() * sizeof(u16));
1177
1178         pkt << message;
1179
1180         Send(&pkt);
1181 }
1182
1183 void Client::sendChangePassword(const std::string &oldpassword,
1184         const std::string &newpassword)
1185 {
1186         Player *player = m_env.getLocalPlayer();
1187         if (player == NULL)
1188                 return;
1189
1190         std::string playername = player->getName();
1191         if (m_proto_ver >= 25) {
1192                 // get into sudo mode and then send new password to server
1193                 m_password = oldpassword;
1194                 m_new_password = newpassword;
1195                 startAuth(choseAuthMech(m_sudo_auth_methods));
1196         } else {
1197                 std::string oldpwd = translatePassword(playername, oldpassword);
1198                 std::string newpwd = translatePassword(playername, newpassword);
1199
1200                 NetworkPacket pkt(TOSERVER_PASSWORD_LEGACY, 2 * PASSWORD_SIZE);
1201
1202                 for (u8 i = 0; i < PASSWORD_SIZE; i++) {
1203                         pkt << (u8) (i < oldpwd.length() ? oldpwd[i] : 0);
1204                 }
1205
1206                 for (u8 i = 0; i < PASSWORD_SIZE; i++) {
1207                         pkt << (u8) (i < newpwd.length() ? newpwd[i] : 0);
1208                 }
1209                 Send(&pkt);
1210         }
1211 }
1212
1213
1214 void Client::sendDamage(u8 damage)
1215 {
1216         DSTACK(FUNCTION_NAME);
1217
1218         NetworkPacket pkt(TOSERVER_DAMAGE, sizeof(u8));
1219         pkt << damage;
1220         Send(&pkt);
1221 }
1222
1223 void Client::sendBreath(u16 breath)
1224 {
1225         DSTACK(FUNCTION_NAME);
1226
1227         NetworkPacket pkt(TOSERVER_BREATH, sizeof(u16));
1228         pkt << breath;
1229         Send(&pkt);
1230 }
1231
1232 void Client::sendRespawn()
1233 {
1234         DSTACK(FUNCTION_NAME);
1235
1236         NetworkPacket pkt(TOSERVER_RESPAWN, 0);
1237         Send(&pkt);
1238 }
1239
1240 void Client::sendReady()
1241 {
1242         DSTACK(FUNCTION_NAME);
1243
1244         NetworkPacket pkt(TOSERVER_CLIENT_READY,
1245                         1 + 1 + 1 + 1 + 2 + sizeof(char) * strlen(g_version_hash));
1246
1247         pkt << (u8) VERSION_MAJOR << (u8) VERSION_MINOR << (u8) VERSION_PATCH
1248                 << (u8) 0 << (u16) strlen(g_version_hash);
1249
1250         pkt.putRawString(g_version_hash, (u16) strlen(g_version_hash));
1251         Send(&pkt);
1252 }
1253
1254 void Client::sendPlayerPos()
1255 {
1256         LocalPlayer *myplayer = m_env.getLocalPlayer();
1257         if(myplayer == NULL)
1258                 return;
1259
1260         // Save bandwidth by only updating position when something changed
1261         if(myplayer->last_position        == myplayer->getPosition() &&
1262                         myplayer->last_speed      == myplayer->getSpeed()    &&
1263                         myplayer->last_pitch      == myplayer->getPitch()    &&
1264                         myplayer->last_yaw        == myplayer->getYaw()      &&
1265                         myplayer->last_keyPressed == myplayer->keyPressed)
1266                 return;
1267
1268         myplayer->last_position   = myplayer->getPosition();
1269         myplayer->last_speed      = myplayer->getSpeed();
1270         myplayer->last_pitch      = myplayer->getPitch();
1271         myplayer->last_yaw        = myplayer->getYaw();
1272         myplayer->last_keyPressed = myplayer->keyPressed;
1273
1274         u16 our_peer_id;
1275         {
1276                 //MutexAutoLock lock(m_con_mutex); //bulk comment-out
1277                 our_peer_id = m_con.GetPeerID();
1278         }
1279
1280         // Set peer id if not set already
1281         if(myplayer->peer_id == PEER_ID_INEXISTENT)
1282                 myplayer->peer_id = our_peer_id;
1283
1284         assert(myplayer->peer_id == our_peer_id);
1285
1286         v3f pf         = myplayer->getPosition();
1287         v3f sf         = myplayer->getSpeed();
1288         s32 pitch      = myplayer->getPitch() * 100;
1289         s32 yaw        = myplayer->getYaw() * 100;
1290         u32 keyPressed = myplayer->keyPressed;
1291
1292         v3s32 position(pf.X*100, pf.Y*100, pf.Z*100);
1293         v3s32 speed(sf.X*100, sf.Y*100, sf.Z*100);
1294         /*
1295                 Format:
1296                 [0] v3s32 position*100
1297                 [12] v3s32 speed*100
1298                 [12+12] s32 pitch*100
1299                 [12+12+4] s32 yaw*100
1300                 [12+12+4+4] u32 keyPressed
1301         */
1302
1303         NetworkPacket pkt(TOSERVER_PLAYERPOS, 12 + 12 + 4 + 4 + 4);
1304
1305         pkt << position << speed << pitch << yaw << keyPressed;
1306
1307         Send(&pkt);
1308 }
1309
1310 void Client::sendPlayerItem(u16 item)
1311 {
1312         Player *myplayer = m_env.getLocalPlayer();
1313         if(myplayer == NULL)
1314                 return;
1315
1316         u16 our_peer_id = m_con.GetPeerID();
1317
1318         // Set peer id if not set already
1319         if(myplayer->peer_id == PEER_ID_INEXISTENT)
1320                 myplayer->peer_id = our_peer_id;
1321         assert(myplayer->peer_id == our_peer_id);
1322
1323         NetworkPacket pkt(TOSERVER_PLAYERITEM, 2);
1324
1325         pkt << item;
1326
1327         Send(&pkt);
1328 }
1329
1330 void Client::removeNode(v3s16 p)
1331 {
1332         std::map<v3s16, MapBlock*> modified_blocks;
1333
1334         try {
1335                 m_env.getMap().removeNodeAndUpdate(p, modified_blocks);
1336         }
1337         catch(InvalidPositionException &e) {
1338         }
1339
1340         for(std::map<v3s16, MapBlock *>::iterator
1341                         i = modified_blocks.begin();
1342                         i != modified_blocks.end(); ++i) {
1343                 addUpdateMeshTaskWithEdge(i->first, false, true);
1344         }
1345 }
1346
1347 void Client::addNode(v3s16 p, MapNode n, bool remove_metadata)
1348 {
1349         //TimeTaker timer1("Client::addNode()");
1350
1351         std::map<v3s16, MapBlock*> modified_blocks;
1352
1353         try {
1354                 //TimeTaker timer3("Client::addNode(): addNodeAndUpdate");
1355                 m_env.getMap().addNodeAndUpdate(p, n, modified_blocks, remove_metadata);
1356         }
1357         catch(InvalidPositionException &e) {
1358         }
1359
1360         for(std::map<v3s16, MapBlock *>::iterator
1361                         i = modified_blocks.begin();
1362                         i != modified_blocks.end(); ++i) {
1363                 addUpdateMeshTaskWithEdge(i->first, false, true);
1364         }
1365 }
1366
1367 void Client::setPlayerControl(PlayerControl &control)
1368 {
1369         LocalPlayer *player = m_env.getLocalPlayer();
1370         assert(player != NULL);
1371         player->control = control;
1372 }
1373
1374 void Client::selectPlayerItem(u16 item)
1375 {
1376         m_playeritem = item;
1377         m_inventory_updated = true;
1378         sendPlayerItem(item);
1379 }
1380
1381 // Returns true if the inventory of the local player has been
1382 // updated from the server. If it is true, it is set to false.
1383 bool Client::getLocalInventoryUpdated()
1384 {
1385         bool updated = m_inventory_updated;
1386         m_inventory_updated = false;
1387         return updated;
1388 }
1389
1390 // Copies the inventory of the local player to parameter
1391 void Client::getLocalInventory(Inventory &dst)
1392 {
1393         Player *player = m_env.getLocalPlayer();
1394         assert(player != NULL);
1395         dst = player->inventory;
1396 }
1397
1398 Inventory* Client::getInventory(const InventoryLocation &loc)
1399 {
1400         switch(loc.type){
1401         case InventoryLocation::UNDEFINED:
1402         {}
1403         break;
1404         case InventoryLocation::CURRENT_PLAYER:
1405         {
1406                 Player *player = m_env.getLocalPlayer();
1407                 assert(player != NULL);
1408                 return &player->inventory;
1409         }
1410         break;
1411         case InventoryLocation::PLAYER:
1412         {
1413                 Player *player = m_env.getPlayer(loc.name.c_str());
1414                 if(!player)
1415                         return NULL;
1416                 return &player->inventory;
1417         }
1418         break;
1419         case InventoryLocation::NODEMETA:
1420         {
1421                 NodeMetadata *meta = m_env.getMap().getNodeMetadata(loc.p);
1422                 if(!meta)
1423                         return NULL;
1424                 return meta->getInventory();
1425         }
1426         break;
1427         case InventoryLocation::DETACHED:
1428         {
1429                 if(m_detached_inventories.count(loc.name) == 0)
1430                         return NULL;
1431                 return m_detached_inventories[loc.name];
1432         }
1433         break;
1434         default:
1435                 FATAL_ERROR("Invalid inventory location type.");
1436                 break;
1437         }
1438         return NULL;
1439 }
1440
1441 void Client::inventoryAction(InventoryAction *a)
1442 {
1443         /*
1444                 Send it to the server
1445         */
1446         sendInventoryAction(a);
1447
1448         /*
1449                 Predict some local inventory changes
1450         */
1451         a->clientApply(this, this);
1452
1453         // Remove it
1454         delete a;
1455 }
1456
1457 ClientActiveObject * Client::getSelectedActiveObject(
1458                 f32 max_d,
1459                 v3f from_pos_f_on_map,
1460                 core::line3d<f32> shootline_on_map
1461         )
1462 {
1463         std::vector<DistanceSortedActiveObject> objects;
1464
1465         m_env.getActiveObjects(from_pos_f_on_map, max_d, objects);
1466
1467         // Sort them.
1468         // After this, the closest object is the first in the array.
1469         std::sort(objects.begin(), objects.end());
1470
1471         for(unsigned int i=0; i<objects.size(); i++)
1472         {
1473                 ClientActiveObject *obj = objects[i].obj;
1474
1475                 core::aabbox3d<f32> *selection_box = obj->getSelectionBox();
1476                 if(selection_box == NULL)
1477                         continue;
1478
1479                 v3f pos = obj->getPosition();
1480
1481                 core::aabbox3d<f32> offsetted_box(
1482                                 selection_box->MinEdge + pos,
1483                                 selection_box->MaxEdge + pos
1484                 );
1485
1486                 if(offsetted_box.intersectsWithLine(shootline_on_map))
1487                 {
1488                         return obj;
1489                 }
1490         }
1491
1492         return NULL;
1493 }
1494
1495 std::list<std::string> Client::getConnectedPlayerNames()
1496 {
1497         return m_env.getPlayerNames();
1498 }
1499
1500 float Client::getAnimationTime()
1501 {
1502         return m_animation_time;
1503 }
1504
1505 int Client::getCrackLevel()
1506 {
1507         return m_crack_level;
1508 }
1509
1510 void Client::setHighlighted(v3s16 pos, bool show_highlighted)
1511 {
1512         m_show_highlighted = show_highlighted;
1513         v3s16 old_highlighted_pos = m_highlighted_pos;
1514         m_highlighted_pos = pos;
1515         addUpdateMeshTaskForNode(old_highlighted_pos, false, true);
1516         addUpdateMeshTaskForNode(m_highlighted_pos, false, true);
1517 }
1518
1519 void Client::setCrack(int level, v3s16 pos)
1520 {
1521         int old_crack_level = m_crack_level;
1522         v3s16 old_crack_pos = m_crack_pos;
1523
1524         m_crack_level = level;
1525         m_crack_pos = pos;
1526
1527         if(old_crack_level >= 0 && (level < 0 || pos != old_crack_pos))
1528         {
1529                 // remove old crack
1530                 addUpdateMeshTaskForNode(old_crack_pos, false, true);
1531         }
1532         if(level >= 0 && (old_crack_level < 0 || pos != old_crack_pos))
1533         {
1534                 // add new crack
1535                 addUpdateMeshTaskForNode(pos, false, true);
1536         }
1537 }
1538
1539 u16 Client::getHP()
1540 {
1541         Player *player = m_env.getLocalPlayer();
1542         assert(player != NULL);
1543         return player->hp;
1544 }
1545
1546 u16 Client::getBreath()
1547 {
1548         Player *player = m_env.getLocalPlayer();
1549         assert(player != NULL);
1550         return player->getBreath();
1551 }
1552
1553 bool Client::getChatMessage(std::wstring &message)
1554 {
1555         if(m_chat_queue.size() == 0)
1556                 return false;
1557         message = m_chat_queue.front();
1558         m_chat_queue.pop();
1559         return true;
1560 }
1561
1562 void Client::typeChatMessage(const std::wstring &message)
1563 {
1564         // Discard empty line
1565         if(message == L"")
1566                 return;
1567
1568         // Send to others
1569         sendChatMessage(message);
1570
1571         // Show locally
1572         if (message[0] == L'/')
1573         {
1574                 m_chat_queue.push((std::wstring)L"issued command: " + message);
1575         }
1576         else
1577         {
1578                 LocalPlayer *player = m_env.getLocalPlayer();
1579                 assert(player != NULL);
1580                 std::wstring name = narrow_to_wide(player->getName());
1581                 m_chat_queue.push((std::wstring)L"<" + name + L"> " + message);
1582         }
1583 }
1584
1585 void Client::addUpdateMeshTask(v3s16 p, bool ack_to_server, bool urgent)
1586 {
1587         MapBlock *b = m_env.getMap().getBlockNoCreateNoEx(p);
1588         if(b == NULL)
1589                 return;
1590
1591         /*
1592                 Create a task to update the mesh of the block
1593         */
1594
1595         MeshMakeData *data = new MeshMakeData(this, m_cache_enable_shaders);
1596
1597         {
1598                 //TimeTaker timer("data fill");
1599                 // Release: ~0ms
1600                 // Debug: 1-6ms, avg=2ms
1601                 data->fill(b);
1602                 data->setCrack(m_crack_level, m_crack_pos);
1603                 data->setHighlighted(m_highlighted_pos, m_show_highlighted);
1604                 data->setSmoothLighting(m_cache_smooth_lighting);
1605         }
1606
1607         // Add task to queue
1608         m_mesh_update_thread.enqueueUpdate(p, data, ack_to_server, urgent);
1609 }
1610
1611 void Client::addUpdateMeshTaskWithEdge(v3s16 blockpos, bool ack_to_server, bool urgent)
1612 {
1613         try{
1614                 addUpdateMeshTask(blockpos, ack_to_server, urgent);
1615         }
1616         catch(InvalidPositionException &e){}
1617
1618         // Leading edge
1619         for (int i=0;i<6;i++)
1620         {
1621                 try{
1622                         v3s16 p = blockpos + g_6dirs[i];
1623                         addUpdateMeshTask(p, false, urgent);
1624                 }
1625                 catch(InvalidPositionException &e){}
1626         }
1627 }
1628
1629 void Client::addUpdateMeshTaskForNode(v3s16 nodepos, bool ack_to_server, bool urgent)
1630 {
1631         {
1632                 v3s16 p = nodepos;
1633                 infostream<<"Client::addUpdateMeshTaskForNode(): "
1634                                 <<"("<<p.X<<","<<p.Y<<","<<p.Z<<")"
1635                                 <<std::endl;
1636         }
1637
1638         v3s16 blockpos          = getNodeBlockPos(nodepos);
1639         v3s16 blockpos_relative = blockpos * MAP_BLOCKSIZE;
1640
1641         try{
1642                 addUpdateMeshTask(blockpos, ack_to_server, urgent);
1643         }
1644         catch(InvalidPositionException &e) {}
1645
1646         // Leading edge
1647         if(nodepos.X == blockpos_relative.X){
1648                 try{
1649                         v3s16 p = blockpos + v3s16(-1,0,0);
1650                         addUpdateMeshTask(p, false, urgent);
1651                 }
1652                 catch(InvalidPositionException &e){}
1653         }
1654
1655         if(nodepos.Y == blockpos_relative.Y){
1656                 try{
1657                         v3s16 p = blockpos + v3s16(0,-1,0);
1658                         addUpdateMeshTask(p, false, urgent);
1659                 }
1660                 catch(InvalidPositionException &e){}
1661         }
1662
1663         if(nodepos.Z == blockpos_relative.Z){
1664                 try{
1665                         v3s16 p = blockpos + v3s16(0,0,-1);
1666                         addUpdateMeshTask(p, false, urgent);
1667                 }
1668                 catch(InvalidPositionException &e){}
1669         }
1670 }
1671
1672 ClientEvent Client::getClientEvent()
1673 {
1674         ClientEvent event;
1675         if(m_client_event_queue.size() == 0) {
1676                 event.type = CE_NONE;
1677         }
1678         else {
1679                 event = m_client_event_queue.front();
1680                 m_client_event_queue.pop();
1681         }
1682         return event;
1683 }
1684
1685 float Client::mediaReceiveProgress()
1686 {
1687         if (m_media_downloader)
1688                 return m_media_downloader->getProgress();
1689         else
1690                 return 1.0; // downloader only exists when not yet done
1691 }
1692
1693 typedef struct TextureUpdateArgs {
1694         IrrlichtDevice *device;
1695         gui::IGUIEnvironment *guienv;
1696         u32 last_time_ms;
1697         u16 last_percent;
1698         const wchar_t* text_base;
1699 } TextureUpdateArgs;
1700
1701 void texture_update_progress(void *args, u32 progress, u32 max_progress)
1702 {
1703                 TextureUpdateArgs* targs = (TextureUpdateArgs*) args;
1704                 u16 cur_percent = ceil(progress / (double) max_progress * 100.);
1705
1706                 // update the loading menu -- if neccessary
1707                 bool do_draw = false;
1708                 u32 time_ms = targs->last_time_ms;
1709                 if (cur_percent != targs->last_percent) {
1710                         targs->last_percent = cur_percent;
1711                         time_ms = getTimeMs();
1712                         // only draw when the user will notice something:
1713                         do_draw = (time_ms - targs->last_time_ms > 100);
1714                 }
1715
1716                 if (do_draw) {
1717                         targs->last_time_ms = time_ms;
1718                         std::basic_stringstream<wchar_t> strm;
1719                         strm << targs->text_base << " " << targs->last_percent << "%...";
1720                         draw_load_screen(strm.str(), targs->device, targs->guienv, 0,
1721                                 72 + (u16) ((18. / 100.) * (double) targs->last_percent));
1722                 }
1723 }
1724
1725 void Client::afterContentReceived(IrrlichtDevice *device)
1726 {
1727         infostream<<"Client::afterContentReceived() started"<<std::endl;
1728         assert(m_itemdef_received); // pre-condition
1729         assert(m_nodedef_received); // pre-condition
1730         assert(mediaReceived()); // pre-condition
1731
1732         const wchar_t* text = wgettext("Loading textures...");
1733
1734         // Clear cached pre-scaled 2D GUI images, as this cache
1735         // might have images with the same name but different
1736         // content from previous sessions.
1737         guiScalingCacheClear(device->getVideoDriver());
1738
1739         // Rebuild inherited images and recreate textures
1740         infostream<<"- Rebuilding images and textures"<<std::endl;
1741         draw_load_screen(text,device, guienv, 0, 70);
1742         m_tsrc->rebuildImagesAndTextures();
1743         delete[] text;
1744
1745         // Rebuild shaders
1746         infostream<<"- Rebuilding shaders"<<std::endl;
1747         text = wgettext("Rebuilding shaders...");
1748         draw_load_screen(text, device, guienv, 0, 71);
1749         m_shsrc->rebuildShaders();
1750         delete[] text;
1751
1752         // Update node aliases
1753         infostream<<"- Updating node aliases"<<std::endl;
1754         text = wgettext("Initializing nodes...");
1755         draw_load_screen(text, device, guienv, 0, 72);
1756         m_nodedef->updateAliases(m_itemdef);
1757         std::string texture_path = g_settings->get("texture_path");
1758         if (texture_path != "" && fs::IsDir(texture_path))
1759                 m_nodedef->applyTextureOverrides(texture_path + DIR_DELIM + "override.txt");
1760         m_nodedef->setNodeRegistrationStatus(true);
1761         m_nodedef->runNodeResolveCallbacks();
1762         delete[] text;
1763
1764         // Update node textures and assign shaders to each tile
1765         infostream<<"- Updating node textures"<<std::endl;
1766         TextureUpdateArgs tu_args;
1767         tu_args.device = device;
1768         tu_args.guienv = guienv;
1769         tu_args.last_time_ms = getTimeMs();
1770         tu_args.last_percent = 0;
1771         tu_args.text_base =  wgettext("Initializing nodes");
1772         m_nodedef->updateTextures(this, texture_update_progress, &tu_args);
1773         delete[] tu_args.text_base;
1774
1775         // Preload item textures and meshes if configured to
1776         if(g_settings->getBool("preload_item_visuals"))
1777         {
1778                 verbosestream<<"Updating item textures and meshes"<<std::endl;
1779                 text = wgettext("Item textures...");
1780                 draw_load_screen(text, device, guienv, 0, 0);
1781                 std::set<std::string> names = m_itemdef->getAll();
1782                 size_t size = names.size();
1783                 size_t count = 0;
1784                 int percent = 0;
1785                 for(std::set<std::string>::const_iterator
1786                                 i = names.begin(); i != names.end(); ++i)
1787                 {
1788                         // Asking for these caches the result
1789                         m_itemdef->getInventoryTexture(*i, this);
1790                         m_itemdef->getWieldMesh(*i, this);
1791                         count++;
1792                         percent = (count * 100 / size * 0.2) + 80;
1793                         draw_load_screen(text, device, guienv, 0, percent);
1794                 }
1795                 delete[] text;
1796         }
1797
1798         // Start mesh update thread after setting up content definitions
1799         infostream<<"- Starting mesh update thread"<<std::endl;
1800         m_mesh_update_thread.start();
1801
1802         m_state = LC_Ready;
1803         sendReady();
1804         text = wgettext("Done!");
1805         draw_load_screen(text, device, guienv, 0, 100);
1806         infostream<<"Client::afterContentReceived() done"<<std::endl;
1807         delete[] text;
1808 }
1809
1810 float Client::getRTT(void)
1811 {
1812         return m_con.getPeerStat(PEER_ID_SERVER,con::AVG_RTT);
1813 }
1814
1815 float Client::getCurRate(void)
1816 {
1817         return ( m_con.getLocalStat(con::CUR_INC_RATE) +
1818                         m_con.getLocalStat(con::CUR_DL_RATE));
1819 }
1820
1821 float Client::getAvgRate(void)
1822 {
1823         return ( m_con.getLocalStat(con::AVG_INC_RATE) +
1824                         m_con.getLocalStat(con::AVG_DL_RATE));
1825 }
1826
1827 void Client::makeScreenshot(IrrlichtDevice *device)
1828 {
1829         irr::video::IVideoDriver *driver = device->getVideoDriver();
1830         irr::video::IImage* const raw_image = driver->createScreenShot();
1831
1832         if (!raw_image)
1833                 return;
1834
1835         time_t t = time(NULL);
1836         struct tm *tm = localtime(&t);
1837
1838         char timetstamp_c[64];
1839         strftime(timetstamp_c, sizeof(timetstamp_c), "%Y%m%d_%H%M%S", tm);
1840
1841         std::string filename_base = g_settings->get("screenshot_path")
1842                         + DIR_DELIM
1843                         + std::string("screenshot_")
1844                         + std::string(timetstamp_c);
1845         std::string filename_ext = ".png";
1846         std::string filename;
1847
1848         // Try to find a unique filename
1849         unsigned serial = 0;
1850
1851         while (serial < SCREENSHOT_MAX_SERIAL_TRIES) {
1852                 filename = filename_base + (serial > 0 ? ("_" + itos(serial)) : "") + filename_ext;
1853                 std::ifstream tmp(filename.c_str());
1854                 if (!tmp.good())
1855                         break;  // File did not apparently exist, we'll go with it
1856                 serial++;
1857         }
1858
1859         if (serial == SCREENSHOT_MAX_SERIAL_TRIES) {
1860                 infostream << "Could not find suitable filename for screenshot" << std::endl;
1861         } else {
1862                 irr::video::IImage* const image =
1863                                 driver->createImage(video::ECF_R8G8B8, raw_image->getDimension());
1864
1865                 if (image) {
1866                         raw_image->copyTo(image);
1867
1868                         std::ostringstream sstr;
1869                         if (driver->writeImageToFile(image, filename.c_str())) {
1870                                 sstr << "Saved screenshot to '" << filename << "'";
1871                         } else {
1872                                 sstr << "Failed to save screenshot '" << filename << "'";
1873                         }
1874                         m_chat_queue.push(narrow_to_wide(sstr.str()));
1875                         infostream << sstr.str() << std::endl;
1876                         image->drop();
1877                 }
1878         }
1879
1880         raw_image->drop();
1881 }
1882
1883 // IGameDef interface
1884 // Under envlock
1885 IItemDefManager* Client::getItemDefManager()
1886 {
1887         return m_itemdef;
1888 }
1889 INodeDefManager* Client::getNodeDefManager()
1890 {
1891         return m_nodedef;
1892 }
1893 ICraftDefManager* Client::getCraftDefManager()
1894 {
1895         return NULL;
1896         //return m_craftdef;
1897 }
1898 ITextureSource* Client::getTextureSource()
1899 {
1900         return m_tsrc;
1901 }
1902 IShaderSource* Client::getShaderSource()
1903 {
1904         return m_shsrc;
1905 }
1906 scene::ISceneManager* Client::getSceneManager()
1907 {
1908         return m_device->getSceneManager();
1909 }
1910 u16 Client::allocateUnknownNodeId(const std::string &name)
1911 {
1912         errorstream << "Client::allocateUnknownNodeId(): "
1913                         << "Client cannot allocate node IDs" << std::endl;
1914         FATAL_ERROR("Client allocated unknown node");
1915
1916         return CONTENT_IGNORE;
1917 }
1918 ISoundManager* Client::getSoundManager()
1919 {
1920         return m_sound;
1921 }
1922 MtEventManager* Client::getEventManager()
1923 {
1924         return m_event;
1925 }
1926
1927 ParticleManager* Client::getParticleManager()
1928 {
1929         return &m_particle_manager;
1930 }
1931
1932 scene::IAnimatedMesh* Client::getMesh(const std::string &filename)
1933 {
1934         StringMap::const_iterator it = m_mesh_data.find(filename);
1935         if (it == m_mesh_data.end()) {
1936                 errorstream << "Client::getMesh(): Mesh not found: \"" << filename
1937                         << "\"" << std::endl;
1938                 return NULL;
1939         }
1940         const std::string &data    = it->second;
1941         scene::ISceneManager *smgr = m_device->getSceneManager();
1942
1943         // Create the mesh, remove it from cache and return it
1944         // This allows unique vertex colors and other properties for each instance
1945         Buffer<char> data_rw(data.c_str(), data.size()); // Const-incorrect Irrlicht
1946         io::IFileSystem *irrfs = m_device->getFileSystem();
1947         io::IReadFile *rfile   = irrfs->createMemoryReadFile(
1948                         *data_rw, data_rw.getSize(), filename.c_str());
1949         FATAL_ERROR_IF(!rfile, "Could not create/open RAM file");
1950
1951         scene::IAnimatedMesh *mesh = smgr->getMesh(rfile);
1952         rfile->drop();
1953         // NOTE: By playing with Irrlicht refcounts, maybe we could cache a bunch
1954         // of uniquely named instances and re-use them
1955         mesh->grab();
1956         smgr->getMeshCache()->removeMesh(mesh);
1957         return mesh;
1958 }