Translated using Weblate (Chinese (Simplified))
[oweals/minetest.git] / src / client / 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 <cmath>
24 #include <IFileSystem.h>
25 #include "client.h"
26 #include "network/clientopcodes.h"
27 #include "network/connection.h"
28 #include "network/networkpacket.h"
29 #include "threading/mutex_auto_lock.h"
30 #include "client/clientevent.h"
31 #include "client/gameui.h"
32 #include "client/renderingengine.h"
33 #include "client/sound.h"
34 #include "client/tile.h"
35 #include "util/auth.h"
36 #include "util/directiontables.h"
37 #include "util/pointedthing.h"
38 #include "util/serialize.h"
39 #include "util/string.h"
40 #include "util/srp.h"
41 #include "filesys.h"
42 #include "mapblock_mesh.h"
43 #include "mapblock.h"
44 #include "minimap.h"
45 #include "modchannels.h"
46 #include "content/mods.h"
47 #include "profiler.h"
48 #include "shader.h"
49 #include "gettext.h"
50 #include "clientmap.h"
51 #include "clientmedia.h"
52 #include "version.h"
53 #include "database/database-sqlite3.h"
54 #include "serialization.h"
55 #include "guiscalingfilter.h"
56 #include "script/scripting_client.h"
57 #include "game.h"
58 #include "chatmessage.h"
59 #include "translation.h"
60
61 extern gui::IGUIEnvironment* guienv;
62
63 /*
64         Utility classes
65 */
66
67 u32 PacketCounter::sum() const
68 {
69         u32 n = 0;
70         for (const auto &it : m_packets)
71                 n += it.second;
72         return n;
73 }
74
75 void PacketCounter::print(std::ostream &o) const
76 {
77         for (const auto &it : m_packets) {
78                 auto name = it.first >= TOCLIENT_NUM_MSG_TYPES ? "?"
79                         : toClientCommandTable[it.first].name;
80                 o << "cmd " << it.first << " (" << name << ") count "
81                         << it.second << std::endl;
82         }
83 }
84
85 /*
86         Client
87 */
88
89 Client::Client(
90                 const char *playername,
91                 const std::string &password,
92                 const std::string &address_name,
93                 MapDrawControl &control,
94                 IWritableTextureSource *tsrc,
95                 IWritableShaderSource *shsrc,
96                 IWritableItemDefManager *itemdef,
97                 NodeDefManager *nodedef,
98                 ISoundManager *sound,
99                 MtEventManager *event,
100                 bool ipv6,
101                 GameUI *game_ui
102 ):
103         m_tsrc(tsrc),
104         m_shsrc(shsrc),
105         m_itemdef(itemdef),
106         m_nodedef(nodedef),
107         m_sound(sound),
108         m_event(event),
109         m_mesh_update_thread(this),
110         m_env(
111                 new ClientMap(this, control, 666),
112                 tsrc, this
113         ),
114         m_particle_manager(&m_env),
115         m_con(new con::Connection(PROTOCOL_ID, 512, CONNECTION_TIMEOUT, ipv6, this)),
116         m_address_name(address_name),
117         m_server_ser_ver(SER_FMT_VER_INVALID),
118         m_last_chat_message_sent(time(NULL)),
119         m_password(password),
120         m_chosen_auth_mech(AUTH_MECHANISM_NONE),
121         m_media_downloader(new ClientMediaDownloader()),
122         m_state(LC_Created),
123         m_game_ui(game_ui),
124         m_modchannel_mgr(new ModChannelMgr())
125 {
126         // Add local player
127         m_env.setLocalPlayer(new LocalPlayer(this, playername));
128
129         if (g_settings->getBool("enable_minimap")) {
130                 m_minimap = new Minimap(this);
131         }
132         m_cache_save_interval = g_settings->getU16("server_map_save_interval");
133 }
134
135 void Client::loadMods()
136 {
137         // Don't load mods twice.
138         // If client scripting is disabled by the client, don't load builtin or
139         // client-provided mods.
140         if (m_mods_loaded || !g_settings->getBool("enable_client_modding"))
141                 return;
142
143         // If client scripting is disabled by the server, don't load builtin or
144         // client-provided mods.
145         // TODO Delete this code block when server-sent CSM and verifying of builtin are
146         // complete.
147         if (checkCSMRestrictionFlag(CSMRestrictionFlags::CSM_RF_LOAD_CLIENT_MODS)) {
148                 warningstream << "Client-provided mod loading is disabled by server." <<
149                         std::endl;
150                 return;
151         }
152
153         m_script = new ClientScripting(this);
154         m_env.setScript(m_script);
155         m_script->setEnv(&m_env);
156
157         // Load builtin
158         scanModIntoMemory(BUILTIN_MOD_NAME, getBuiltinLuaPath());
159         m_script->loadModFromMemory(BUILTIN_MOD_NAME);
160
161         // TODO Uncomment when server-sent CSM and verifying of builtin are complete
162         /*
163         // Don't load client-provided mods if disabled by server
164         if (checkCSMRestrictionFlag(CSMRestrictionFlags::CSM_RF_LOAD_CLIENT_MODS)) {
165                 warningstream << "Client-provided mod loading is disabled by server." <<
166                         std::endl;
167                 // If builtin integrity is wrong, disconnect user
168                 if (!checkBuiltinIntegrity()) {
169                         // TODO disconnect user
170                 }
171                 return;
172         }
173         */
174
175         ClientModConfiguration modconf(getClientModsLuaPath());
176         m_mods = modconf.getMods();
177         // complain about mods with unsatisfied dependencies
178         if (!modconf.isConsistent()) {
179                 modconf.printUnsatisfiedModsError();
180                 return;
181         }
182
183         // Print mods
184         infostream << "Client loading mods: ";
185         for (const ModSpec &mod : m_mods)
186                 infostream << mod.name << " ";
187         infostream << std::endl;
188
189         // Load "mod" scripts
190         for (const ModSpec &mod : m_mods) {
191                 if (!string_allowed(mod.name, MODNAME_ALLOWED_CHARS)) {
192                         throw ModError("Error loading mod \"" + mod.name +
193                                 "\": Mod name does not follow naming conventions: "
194                                         "Only characters [a-z0-9_] are allowed.");
195                 }
196                 scanModIntoMemory(mod.name, mod.path);
197         }
198
199         // Run them
200         for (const ModSpec &mod : m_mods)
201                 m_script->loadModFromMemory(mod.name);
202
203         // Mods are done loading. Unlock callbacks
204         m_mods_loaded = true;
205
206         // Run a callback when mods are loaded
207         m_script->on_mods_loaded();
208
209         // Create objects if they're ready
210         if (m_state == LC_Ready)
211                 m_script->on_client_ready(m_env.getLocalPlayer());
212         if (m_camera)
213                 m_script->on_camera_ready(m_camera);
214         if (m_minimap)
215                 m_script->on_minimap_ready(m_minimap);
216 }
217
218 bool Client::checkBuiltinIntegrity()
219 {
220         // TODO
221         return true;
222 }
223
224 void Client::scanModSubfolder(const std::string &mod_name, const std::string &mod_path,
225                         std::string mod_subpath)
226 {
227         std::string full_path = mod_path + DIR_DELIM + mod_subpath;
228         std::vector<fs::DirListNode> mod = fs::GetDirListing(full_path);
229         for (const fs::DirListNode &j : mod) {
230                 if (j.dir) {
231                         scanModSubfolder(mod_name, mod_path, mod_subpath + j.name + DIR_DELIM);
232                         continue;
233                 }
234                 std::replace(mod_subpath.begin(), mod_subpath.end(), DIR_DELIM_CHAR, '/');
235
236                 std::string real_path = full_path + j.name;
237                 std::string vfs_path = mod_name + ":" + mod_subpath + j.name;
238                 infostream << "Client::scanModSubfolder(): Loading \"" << real_path
239                                 << "\" as \"" << vfs_path << "\"." << std::endl;
240
241                 std::ifstream is(real_path, std::ios::binary | std::ios::ate);
242                 if(!is.good()) {
243                         errorstream << "Client::scanModSubfolder(): Can't read file \""
244                                         << real_path << "\"." << std::endl;
245                         continue;
246                 }
247                 auto size = is.tellg();
248                 std::string contents(size, '\0');
249                 is.seekg(0);
250                 is.read(&contents[0], size);
251
252                 infostream << "  size: " << size << " bytes" << std::endl;
253                 m_mod_vfs.emplace(vfs_path, contents);
254         }
255 }
256
257 const std::string &Client::getBuiltinLuaPath()
258 {
259         static const std::string builtin_dir = porting::path_share + DIR_DELIM + "builtin";
260         return builtin_dir;
261 }
262
263 const std::string &Client::getClientModsLuaPath()
264 {
265         static const std::string clientmods_dir = porting::path_share + DIR_DELIM + "clientmods";
266         return clientmods_dir;
267 }
268
269 const std::vector<ModSpec>& Client::getMods() const
270 {
271         static std::vector<ModSpec> client_modspec_temp;
272         return client_modspec_temp;
273 }
274
275 const ModSpec* Client::getModSpec(const std::string &modname) const
276 {
277         return NULL;
278 }
279
280 void Client::Stop()
281 {
282         m_shutdown = true;
283         if (m_mods_loaded)
284                 m_script->on_shutdown();
285         //request all client managed threads to stop
286         m_mesh_update_thread.stop();
287         // Save local server map
288         if (m_localdb) {
289                 infostream << "Local map saving ended." << std::endl;
290                 m_localdb->endSave();
291         }
292
293         if (m_mods_loaded)
294                 delete m_script;
295 }
296
297 bool Client::isShutdown()
298 {
299         return m_shutdown || !m_mesh_update_thread.isRunning();
300 }
301
302 Client::~Client()
303 {
304         m_shutdown = true;
305         m_con->Disconnect();
306
307         deleteAuthData();
308
309         m_mesh_update_thread.stop();
310         m_mesh_update_thread.wait();
311         while (!m_mesh_update_thread.m_queue_out.empty()) {
312                 MeshUpdateResult r = m_mesh_update_thread.m_queue_out.pop_frontNoEx();
313                 delete r.mesh;
314         }
315
316
317         delete m_inventory_from_server;
318
319         // Delete detached inventories
320         for (auto &m_detached_inventorie : m_detached_inventories) {
321                 delete m_detached_inventorie.second;
322         }
323
324         // cleanup 3d model meshes on client shutdown
325         while (RenderingEngine::get_mesh_cache()->getMeshCount() != 0) {
326                 scene::IAnimatedMesh *mesh = RenderingEngine::get_mesh_cache()->getMeshByIndex(0);
327
328                 if (mesh)
329                         RenderingEngine::get_mesh_cache()->removeMesh(mesh);
330         }
331
332         delete m_minimap;
333         delete m_media_downloader;
334 }
335
336 void Client::connect(Address address, bool is_local_server)
337 {
338         initLocalMapSaving(address, m_address_name, is_local_server);
339
340         // Since we use TryReceive() a timeout here would be ineffective anyway
341         m_con->SetTimeoutMs(0);
342         m_con->Connect(address);
343 }
344
345 void Client::step(float dtime)
346 {
347         // Limit a bit
348         if (dtime > 2.0)
349                 dtime = 2.0;
350
351         m_animation_time += dtime;
352         if(m_animation_time > 60.0)
353                 m_animation_time -= 60.0;
354
355         m_time_of_day_update_timer += dtime;
356
357         ReceiveAll();
358
359         /*
360                 Packet counter
361         */
362         {
363                 float &counter = m_packetcounter_timer;
364                 counter -= dtime;
365                 if(counter <= 0.0f)
366                 {
367                         counter = 30.0f;
368                         u32 sum = m_packetcounter.sum();
369                         float avg = sum / counter;
370
371                         infostream << "Client packetcounter (" << counter << "s): "
372                                         << "sum=" << sum << " avg=" << avg << "/s" << std::endl;
373                         m_packetcounter.print(infostream);
374                         m_packetcounter.clear();
375                 }
376         }
377
378         // UGLY hack to fix 2 second startup delay caused by non existent
379         // server client startup synchronization in local server or singleplayer mode
380         static bool initial_step = true;
381         if (initial_step) {
382                 initial_step = false;
383         }
384         else if(m_state == LC_Created) {
385                 if (m_is_registration_confirmation_state) {
386                         // Waiting confirmation
387                         return;
388                 }
389                 float &counter = m_connection_reinit_timer;
390                 counter -= dtime;
391                 if(counter <= 0.0) {
392                         counter = 2.0;
393
394                         LocalPlayer *myplayer = m_env.getLocalPlayer();
395                         FATAL_ERROR_IF(myplayer == NULL, "Local player not found in environment.");
396
397                         sendInit(myplayer->getName());
398                 }
399
400                 // Not connected, return
401                 return;
402         }
403
404         /*
405                 Do stuff if connected
406         */
407
408         /*
409                 Run Map's timers and unload unused data
410         */
411         const float map_timer_and_unload_dtime = 5.25;
412         if(m_map_timer_and_unload_interval.step(dtime, map_timer_and_unload_dtime)) {
413                 std::vector<v3s16> deleted_blocks;
414                 m_env.getMap().timerUpdate(map_timer_and_unload_dtime,
415                         g_settings->getFloat("client_unload_unused_data_timeout"),
416                         g_settings->getS32("client_mapblock_limit"),
417                         &deleted_blocks);
418
419                 /*
420                         Send info to server
421                         NOTE: This loop is intentionally iterated the way it is.
422                 */
423
424                 std::vector<v3s16>::iterator i = deleted_blocks.begin();
425                 std::vector<v3s16> sendlist;
426                 for(;;) {
427                         if(sendlist.size() == 255 || i == deleted_blocks.end()) {
428                                 if(sendlist.empty())
429                                         break;
430                                 /*
431                                         [0] u16 command
432                                         [2] u8 count
433                                         [3] v3s16 pos_0
434                                         [3+6] v3s16 pos_1
435                                         ...
436                                 */
437
438                                 sendDeletedBlocks(sendlist);
439
440                                 if(i == deleted_blocks.end())
441                                         break;
442
443                                 sendlist.clear();
444                         }
445
446                         sendlist.push_back(*i);
447                         ++i;
448                 }
449         }
450
451         /*
452                 Send pending messages on out chat queue
453         */
454         if (!m_out_chat_queue.empty() && canSendChatMessage()) {
455                 sendChatMessage(m_out_chat_queue.front());
456                 m_out_chat_queue.pop();
457         }
458
459         /*
460                 Handle environment
461         */
462         // Control local player (0ms)
463         LocalPlayer *player = m_env.getLocalPlayer();
464         assert(player);
465         player->applyControl(dtime, &m_env);
466
467         // Step environment
468         m_env.step(dtime);
469         m_sound->step(dtime);
470
471         /*
472                 Get events
473         */
474         while (m_env.hasClientEnvEvents()) {
475                 ClientEnvEvent envEvent = m_env.getClientEnvEvent();
476
477                 if (envEvent.type == CEE_PLAYER_DAMAGE) {
478                         u16 damage = envEvent.player_damage.amount;
479
480                         if (envEvent.player_damage.send_to_server)
481                                 sendDamage(damage);
482
483                         // Add to ClientEvent queue
484                         ClientEvent *event = new ClientEvent();
485                         event->type = CE_PLAYER_DAMAGE;
486                         event->player_damage.amount = damage;
487                         m_client_event_queue.push(event);
488                 }
489         }
490
491         /*
492                 Print some info
493         */
494         float &counter = m_avg_rtt_timer;
495         counter += dtime;
496         if(counter >= 10) {
497                 counter = 0.0;
498                 // connectedAndInitialized() is true, peer exists.
499                 float avg_rtt = getRTT();
500                 infostream << "Client: avg_rtt=" << avg_rtt << std::endl;
501         }
502
503         /*
504                 Send player position to server
505         */
506         {
507                 float &counter = m_playerpos_send_timer;
508                 counter += dtime;
509                 if((m_state == LC_Ready) && (counter >= m_recommended_send_interval))
510                 {
511                         counter = 0.0;
512                         sendPlayerPos();
513                 }
514         }
515
516         /*
517                 Replace updated meshes
518         */
519         {
520                 int num_processed_meshes = 0;
521                 std::vector<v3s16> blocks_to_ack;
522                 while (!m_mesh_update_thread.m_queue_out.empty())
523                 {
524                         num_processed_meshes++;
525
526                         MinimapMapblock *minimap_mapblock = NULL;
527                         bool do_mapper_update = true;
528
529                         MeshUpdateResult r = m_mesh_update_thread.m_queue_out.pop_frontNoEx();
530                         MapBlock *block = m_env.getMap().getBlockNoCreateNoEx(r.p);
531                         if (block) {
532                                 // Delete the old mesh
533                                 delete block->mesh;
534                                 block->mesh = nullptr;
535
536                                 if (r.mesh) {
537                                         minimap_mapblock = r.mesh->moveMinimapMapblock();
538                                         if (minimap_mapblock == NULL)
539                                                 do_mapper_update = false;
540
541                                         bool is_empty = true;
542                                         for (int l = 0; l < MAX_TILE_LAYERS; l++)
543                                                 if (r.mesh->getMesh(l)->getMeshBufferCount() != 0)
544                                                         is_empty = false;
545
546                                         if (is_empty)
547                                                 delete r.mesh;
548                                         else
549                                                 // Replace with the new mesh
550                                                 block->mesh = r.mesh;
551                                 }
552                         } else {
553                                 delete r.mesh;
554                         }
555
556                         if (m_minimap && do_mapper_update)
557                                 m_minimap->addBlock(r.p, minimap_mapblock);
558
559                         if (r.ack_block_to_server) {
560                                 if (blocks_to_ack.size() == 255) {
561                                         sendGotBlocks(blocks_to_ack);
562                                         blocks_to_ack.clear();
563                                 }
564
565                                 blocks_to_ack.emplace_back(r.p);
566                         }
567                 }
568                 if (blocks_to_ack.size() > 0) {
569                                 // Acknowledge block(s)
570                                 sendGotBlocks(blocks_to_ack);
571                 }
572
573                 if (num_processed_meshes > 0)
574                         g_profiler->graphAdd("num_processed_meshes", num_processed_meshes);
575         }
576
577         /*
578                 Load fetched media
579         */
580         if (m_media_downloader && m_media_downloader->isStarted()) {
581                 m_media_downloader->step(this);
582                 if (m_media_downloader->isDone()) {
583                         delete m_media_downloader;
584                         m_media_downloader = NULL;
585                 }
586         }
587
588         /*
589                 If the server didn't update the inventory in a while, revert
590                 the local inventory (so the player notices the lag problem
591                 and knows something is wrong).
592         */
593         if (m_inventory_from_server) {
594                 float interval = 10.0f;
595                 float count_before = std::floor(m_inventory_from_server_age / interval);
596
597                 m_inventory_from_server_age += dtime;
598
599                 float count_after = std::floor(m_inventory_from_server_age / interval);
600
601                 if (count_after != count_before) {
602                         // Do this every <interval> seconds after TOCLIENT_INVENTORY
603                         // Reset the locally changed inventory to the authoritative inventory
604                         player->inventory = *m_inventory_from_server;
605                         m_update_wielded_item = true;
606                 }
607         }
608
609         /*
610                 Update positions of sounds attached to objects
611         */
612         {
613                 for (auto &m_sounds_to_object : m_sounds_to_objects) {
614                         int client_id = m_sounds_to_object.first;
615                         u16 object_id = m_sounds_to_object.second;
616                         ClientActiveObject *cao = m_env.getActiveObject(object_id);
617                         if (!cao)
618                                 continue;
619                         m_sound->updateSoundPosition(client_id, cao->getPosition());
620                 }
621         }
622
623         /*
624                 Handle removed remotely initiated sounds
625         */
626         m_removed_sounds_check_timer += dtime;
627         if(m_removed_sounds_check_timer >= 2.32) {
628                 m_removed_sounds_check_timer = 0;
629                 // Find removed sounds and clear references to them
630                 std::vector<s32> removed_server_ids;
631                 for (std::unordered_map<s32, int>::iterator i = m_sounds_server_to_client.begin();
632                                 i != m_sounds_server_to_client.end();) {
633                         s32 server_id = i->first;
634                         int client_id = i->second;
635                         ++i;
636                         if(!m_sound->soundExists(client_id)) {
637                                 m_sounds_server_to_client.erase(server_id);
638                                 m_sounds_client_to_server.erase(client_id);
639                                 m_sounds_to_objects.erase(client_id);
640                                 removed_server_ids.push_back(server_id);
641                         }
642                 }
643
644                 // Sync to server
645                 if(!removed_server_ids.empty()) {
646                         sendRemovedSounds(removed_server_ids);
647                 }
648         }
649
650         m_mod_storage_save_timer -= dtime;
651         if (m_mod_storage_save_timer <= 0.0f) {
652                 m_mod_storage_save_timer = g_settings->getFloat("server_map_save_interval");
653                 int n = 0;
654                 for (std::unordered_map<std::string, ModMetadata *>::const_iterator
655                                 it = m_mod_storages.begin(); it != m_mod_storages.end(); ++it) {
656                         if (it->second->isModified()) {
657                                 it->second->save(getModStoragePath());
658                                 n++;
659                         }
660                 }
661                 if (n > 0)
662                         infostream << "Saved " << n << " modified mod storages." << std::endl;
663         }
664
665         // Write server map
666         if (m_localdb && m_localdb_save_interval.step(dtime,
667                         m_cache_save_interval)) {
668                 m_localdb->endSave();
669                 m_localdb->beginSave();
670         }
671 }
672
673 bool Client::loadMedia(const std::string &data, const std::string &filename,
674         bool from_media_push)
675 {
676         std::string name;
677
678         const char *image_ext[] = {
679                 ".png", ".jpg", ".bmp", ".tga",
680                 ".pcx", ".ppm", ".psd", ".wal", ".rgb",
681                 NULL
682         };
683         name = removeStringEnd(filename, image_ext);
684         if (!name.empty()) {
685                 TRACESTREAM(<< "Client: Attempting to load image "
686                         << "file \"" << filename << "\"" << std::endl);
687
688                 io::IFileSystem *irrfs = RenderingEngine::get_filesystem();
689                 video::IVideoDriver *vdrv = RenderingEngine::get_video_driver();
690
691                 // Silly irrlicht's const-incorrectness
692                 Buffer<char> data_rw(data.c_str(), data.size());
693
694                 // Create an irrlicht memory file
695                 io::IReadFile *rfile = irrfs->createMemoryReadFile(
696                                 *data_rw, data_rw.getSize(), "_tempreadfile");
697
698                 FATAL_ERROR_IF(!rfile, "Could not create irrlicht memory file.");
699
700                 // Read image
701                 video::IImage *img = vdrv->createImageFromFile(rfile);
702                 if (!img) {
703                         errorstream<<"Client: Cannot create image from data of "
704                                         <<"file \""<<filename<<"\""<<std::endl;
705                         rfile->drop();
706                         return false;
707                 }
708
709                 m_tsrc->insertSourceImage(filename, img);
710                 img->drop();
711                 rfile->drop();
712                 return true;
713         }
714
715         const char *sound_ext[] = {
716                 ".0.ogg", ".1.ogg", ".2.ogg", ".3.ogg", ".4.ogg",
717                 ".5.ogg", ".6.ogg", ".7.ogg", ".8.ogg", ".9.ogg",
718                 ".ogg", NULL
719         };
720         name = removeStringEnd(filename, sound_ext);
721         if (!name.empty()) {
722                 TRACESTREAM(<< "Client: Attempting to load sound "
723                         << "file \"" << filename << "\"" << std::endl);
724                 return m_sound->loadSoundData(name, data);
725         }
726
727         const char *model_ext[] = {
728                 ".x", ".b3d", ".md2", ".obj",
729                 NULL
730         };
731         name = removeStringEnd(filename, model_ext);
732         if (!name.empty()) {
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         const char *translate_ext[] = {
743                 ".tr", NULL
744         };
745         name = removeStringEnd(filename, translate_ext);
746         if (!name.empty()) {
747                 if (from_media_push)
748                         return false;
749                 TRACESTREAM(<< "Client: Loading translation: "
750                                 << "\"" << filename << "\"" << std::endl);
751                 g_client_translations->loadTranslation(data);
752                 return true;
753         }
754
755         errorstream << "Client: Don't know how to load file \""
756                 << filename << "\"" << std::endl;
757         return false;
758 }
759
760 // Virtual methods from con::PeerHandler
761 void Client::peerAdded(con::Peer *peer)
762 {
763         infostream << "Client::peerAdded(): peer->id="
764                         << peer->id << std::endl;
765 }
766 void Client::deletingPeer(con::Peer *peer, bool timeout)
767 {
768         infostream << "Client::deletingPeer(): "
769                         "Server Peer is getting deleted "
770                         << "(timeout=" << timeout << ")" << std::endl;
771
772         if (timeout) {
773                 m_access_denied = true;
774                 m_access_denied_reason = gettext("Connection timed out.");
775         }
776 }
777
778 /*
779         u16 command
780         u16 number of files requested
781         for each file {
782                 u16 length of name
783                 string name
784         }
785 */
786 void Client::request_media(const std::vector<std::string> &file_requests)
787 {
788         std::ostringstream os(std::ios_base::binary);
789         writeU16(os, TOSERVER_REQUEST_MEDIA);
790         size_t file_requests_size = file_requests.size();
791
792         FATAL_ERROR_IF(file_requests_size > 0xFFFF, "Unsupported number of file requests");
793
794         // Packet dynamicly resized
795         NetworkPacket pkt(TOSERVER_REQUEST_MEDIA, 2 + 0);
796
797         pkt << (u16) (file_requests_size & 0xFFFF);
798
799         for (const std::string &file_request : file_requests) {
800                 pkt << file_request;
801         }
802
803         Send(&pkt);
804
805         infostream << "Client: Sending media request list to server ("
806                         << file_requests.size() << " files. packet size)" << std::endl;
807 }
808
809 void Client::initLocalMapSaving(const Address &address,
810                 const std::string &hostname,
811                 bool is_local_server)
812 {
813         if (!g_settings->getBool("enable_local_map_saving") || is_local_server) {
814                 return;
815         }
816
817         std::string world_path;
818 #define set_world_path(hostname) \
819         world_path = porting::path_user \
820                 + DIR_DELIM + "worlds" \
821                 + DIR_DELIM + "server_" \
822                 + hostname + "_" + std::to_string(address.getPort());
823
824         set_world_path(hostname);
825         if (!fs::IsDir(world_path)) {
826                 std::string hostname_escaped = hostname;
827                 str_replace(hostname_escaped, ':', '_');
828                 set_world_path(hostname_escaped);
829         }
830 #undef set_world_path
831         fs::CreateAllDirs(world_path);
832
833         m_localdb = new MapDatabaseSQLite3(world_path);
834         m_localdb->beginSave();
835         actionstream << "Local map saving started, map will be saved at '" << world_path << "'" << std::endl;
836 }
837
838 void Client::ReceiveAll()
839 {
840         NetworkPacket pkt;
841         u64 start_ms = porting::getTimeMs();
842         const u64 budget = 100;
843         for(;;) {
844                 // Limit time even if there would be huge amounts of data to
845                 // process
846                 if (porting::getTimeMs() > start_ms + budget) {
847                         infostream << "Client::ReceiveAll(): "
848                                         "Packet processing budget exceeded." << std::endl;
849                         break;
850                 }
851
852                 pkt.clear();
853                 try {
854                         if (!m_con->TryReceive(&pkt))
855                                 break;
856                         ProcessData(&pkt);
857                 } catch (const con::InvalidIncomingDataException &e) {
858                         infostream << "Client::ReceiveAll(): "
859                                         "InvalidIncomingDataException: what()="
860                                          << e.what() << std::endl;
861                 }
862         }
863 }
864
865 inline void Client::handleCommand(NetworkPacket* pkt)
866 {
867         const ToClientCommandHandler& opHandle = toClientCommandTable[pkt->getCommand()];
868         (this->*opHandle.handler)(pkt);
869 }
870
871 /*
872         sender_peer_id given to this shall be quaranteed to be a valid peer
873 */
874 void Client::ProcessData(NetworkPacket *pkt)
875 {
876         ToClientCommand command = (ToClientCommand) pkt->getCommand();
877         u32 sender_peer_id = pkt->getPeerId();
878
879         //infostream<<"Client: received command="<<command<<std::endl;
880         m_packetcounter.add((u16)command);
881         g_profiler->graphAdd("client_received_packets", 1);
882
883         /*
884                 If this check is removed, be sure to change the queue
885                 system to know the ids
886         */
887         if(sender_peer_id != PEER_ID_SERVER) {
888                 infostream << "Client::ProcessData(): Discarding data not "
889                         "coming from server: peer_id=" << sender_peer_id
890                         << std::endl;
891                 return;
892         }
893
894         // Command must be handled into ToClientCommandHandler
895         if (command >= TOCLIENT_NUM_MSG_TYPES) {
896                 infostream << "Client: Ignoring unknown command "
897                         << command << std::endl;
898                 return;
899         }
900
901         /*
902          * Those packets are handled before m_server_ser_ver is set, it's normal
903          * But we must use the new ToClientConnectionState in the future,
904          * as a byte mask
905          */
906         if(toClientCommandTable[command].state == TOCLIENT_STATE_NOT_CONNECTED) {
907                 handleCommand(pkt);
908                 return;
909         }
910
911         if(m_server_ser_ver == SER_FMT_VER_INVALID) {
912                 infostream << "Client: Server serialization"
913                                 " format invalid or not initialized."
914                                 " Skipping incoming command=" << command << std::endl;
915                 return;
916         }
917
918         /*
919           Handle runtime commands
920         */
921
922         handleCommand(pkt);
923 }
924
925 void Client::Send(NetworkPacket* pkt)
926 {
927         m_con->Send(PEER_ID_SERVER,
928                 serverCommandFactoryTable[pkt->getCommand()].channel,
929                 pkt,
930                 serverCommandFactoryTable[pkt->getCommand()].reliable);
931 }
932
933 // Will fill up 12 + 12 + 4 + 4 + 4 bytes
934 void writePlayerPos(LocalPlayer *myplayer, ClientMap *clientMap, NetworkPacket *pkt)
935 {
936         v3f pf           = myplayer->getPosition() * 100;
937         v3f sf           = myplayer->getSpeed() * 100;
938         s32 pitch        = myplayer->getPitch() * 100;
939         s32 yaw          = myplayer->getYaw() * 100;
940         u32 keyPressed   = myplayer->keyPressed;
941         // scaled by 80, so that pi can fit into a u8
942         u8 fov           = clientMap->getCameraFov() * 80;
943         u8 wanted_range  = MYMIN(255,
944                         std::ceil(clientMap->getControl().wanted_range / MAP_BLOCKSIZE));
945
946         v3s32 position(pf.X, pf.Y, pf.Z);
947         v3s32 speed(sf.X, sf.Y, sf.Z);
948
949         /*
950                 Format:
951                 [0] v3s32 position*100
952                 [12] v3s32 speed*100
953                 [12+12] s32 pitch*100
954                 [12+12+4] s32 yaw*100
955                 [12+12+4+4] u32 keyPressed
956                 [12+12+4+4+4] u8 fov*80
957                 [12+12+4+4+4+1] u8 ceil(wanted_range / MAP_BLOCKSIZE)
958         */
959         *pkt << position << speed << pitch << yaw << keyPressed;
960         *pkt << fov << wanted_range;
961 }
962
963 void Client::interact(InteractAction action, const PointedThing& pointed)
964 {
965         if(m_state != LC_Ready) {
966                 errorstream << "Client::interact() "
967                                 "Canceled (not connected)"
968                                 << std::endl;
969                 return;
970         }
971
972         LocalPlayer *myplayer = m_env.getLocalPlayer();
973         if (myplayer == NULL)
974                 return;
975
976         /*
977                 [0] u16 command
978                 [2] u8 action
979                 [3] u16 item
980                 [5] u32 length of the next item (plen)
981                 [9] serialized PointedThing
982                 [9 + plen] player position information
983         */
984
985         NetworkPacket pkt(TOSERVER_INTERACT, 1 + 2 + 0);
986
987         pkt << (u8)action;
988         pkt << myplayer->getWieldIndex();
989
990         std::ostringstream tmp_os(std::ios::binary);
991         pointed.serialize(tmp_os);
992
993         pkt.putLongString(tmp_os.str());
994
995         writePlayerPos(myplayer, &m_env.getClientMap(), &pkt);
996
997         Send(&pkt);
998 }
999
1000 void Client::deleteAuthData()
1001 {
1002         if (!m_auth_data)
1003                 return;
1004
1005         switch (m_chosen_auth_mech) {
1006                 case AUTH_MECHANISM_FIRST_SRP:
1007                         break;
1008                 case AUTH_MECHANISM_SRP:
1009                 case AUTH_MECHANISM_LEGACY_PASSWORD:
1010                         srp_user_delete((SRPUser *) m_auth_data);
1011                         m_auth_data = NULL;
1012                         break;
1013                 case AUTH_MECHANISM_NONE:
1014                         break;
1015         }
1016         m_chosen_auth_mech = AUTH_MECHANISM_NONE;
1017 }
1018
1019
1020 AuthMechanism Client::choseAuthMech(const u32 mechs)
1021 {
1022         if (mechs & AUTH_MECHANISM_SRP)
1023                 return AUTH_MECHANISM_SRP;
1024
1025         if (mechs & AUTH_MECHANISM_FIRST_SRP)
1026                 return AUTH_MECHANISM_FIRST_SRP;
1027
1028         if (mechs & AUTH_MECHANISM_LEGACY_PASSWORD)
1029                 return AUTH_MECHANISM_LEGACY_PASSWORD;
1030
1031         return AUTH_MECHANISM_NONE;
1032 }
1033
1034 void Client::sendInit(const std::string &playerName)
1035 {
1036         NetworkPacket pkt(TOSERVER_INIT, 1 + 2 + 2 + (1 + playerName.size()));
1037
1038         // we don't support network compression yet
1039         u16 supp_comp_modes = NETPROTO_COMPRESSION_NONE;
1040
1041         pkt << (u8) SER_FMT_VER_HIGHEST_READ << (u16) supp_comp_modes;
1042         pkt << (u16) CLIENT_PROTOCOL_VERSION_MIN << (u16) CLIENT_PROTOCOL_VERSION_MAX;
1043         pkt << playerName;
1044
1045         Send(&pkt);
1046 }
1047
1048 void Client::promptConfirmRegistration(AuthMechanism chosen_auth_mechanism)
1049 {
1050         m_chosen_auth_mech = chosen_auth_mechanism;
1051         m_is_registration_confirmation_state = true;
1052 }
1053
1054 void Client::confirmRegistration()
1055 {
1056         m_is_registration_confirmation_state = false;
1057         startAuth(m_chosen_auth_mech);
1058 }
1059
1060 void Client::startAuth(AuthMechanism chosen_auth_mechanism)
1061 {
1062         m_chosen_auth_mech = chosen_auth_mechanism;
1063
1064         switch (chosen_auth_mechanism) {
1065                 case AUTH_MECHANISM_FIRST_SRP: {
1066                         // send srp verifier to server
1067                         std::string verifier;
1068                         std::string salt;
1069                         generate_srp_verifier_and_salt(getPlayerName(), m_password,
1070                                 &verifier, &salt);
1071
1072                         NetworkPacket resp_pkt(TOSERVER_FIRST_SRP, 0);
1073                         resp_pkt << salt << verifier << (u8)((m_password.empty()) ? 1 : 0);
1074
1075                         Send(&resp_pkt);
1076                         break;
1077                 }
1078                 case AUTH_MECHANISM_SRP:
1079                 case AUTH_MECHANISM_LEGACY_PASSWORD: {
1080                         u8 based_on = 1;
1081
1082                         if (chosen_auth_mechanism == AUTH_MECHANISM_LEGACY_PASSWORD) {
1083                                 m_password = translate_password(getPlayerName(), m_password);
1084                                 based_on = 0;
1085                         }
1086
1087                         std::string playername_u = lowercase(getPlayerName());
1088                         m_auth_data = srp_user_new(SRP_SHA256, SRP_NG_2048,
1089                                 getPlayerName().c_str(), playername_u.c_str(),
1090                                 (const unsigned char *) m_password.c_str(),
1091                                 m_password.length(), NULL, NULL);
1092                         char *bytes_A = 0;
1093                         size_t len_A = 0;
1094                         SRP_Result res = srp_user_start_authentication(
1095                                 (struct SRPUser *) m_auth_data, NULL, NULL, 0,
1096                                 (unsigned char **) &bytes_A, &len_A);
1097                         FATAL_ERROR_IF(res != SRP_OK, "Creating local SRP user failed.");
1098
1099                         NetworkPacket resp_pkt(TOSERVER_SRP_BYTES_A, 0);
1100                         resp_pkt << std::string(bytes_A, len_A) << based_on;
1101                         Send(&resp_pkt);
1102                         break;
1103                 }
1104                 case AUTH_MECHANISM_NONE:
1105                         break; // not handled in this method
1106         }
1107 }
1108
1109 void Client::sendDeletedBlocks(std::vector<v3s16> &blocks)
1110 {
1111         NetworkPacket pkt(TOSERVER_DELETEDBLOCKS, 1 + sizeof(v3s16) * blocks.size());
1112
1113         pkt << (u8) blocks.size();
1114
1115         for (const v3s16 &block : blocks) {
1116                 pkt << block;
1117         }
1118
1119         Send(&pkt);
1120 }
1121
1122 void Client::sendGotBlocks(const std::vector<v3s16> &blocks)
1123 {
1124         NetworkPacket pkt(TOSERVER_GOTBLOCKS, 1 + 6 * blocks.size());
1125         pkt << (u8) blocks.size();
1126         for (const v3s16 &block : blocks)
1127                 pkt << block;
1128
1129         Send(&pkt);
1130 }
1131
1132 void Client::sendRemovedSounds(std::vector<s32> &soundList)
1133 {
1134         size_t server_ids = soundList.size();
1135         assert(server_ids <= 0xFFFF);
1136
1137         NetworkPacket pkt(TOSERVER_REMOVED_SOUNDS, 2 + server_ids * 4);
1138
1139         pkt << (u16) (server_ids & 0xFFFF);
1140
1141         for (s32 sound_id : soundList)
1142                 pkt << sound_id;
1143
1144         Send(&pkt);
1145 }
1146
1147 void Client::sendNodemetaFields(v3s16 p, const std::string &formname,
1148                 const StringMap &fields)
1149 {
1150         size_t fields_size = fields.size();
1151
1152         FATAL_ERROR_IF(fields_size > 0xFFFF, "Unsupported number of nodemeta fields");
1153
1154         NetworkPacket pkt(TOSERVER_NODEMETA_FIELDS, 0);
1155
1156         pkt << p << formname << (u16) (fields_size & 0xFFFF);
1157
1158         StringMap::const_iterator it;
1159         for (it = fields.begin(); it != fields.end(); ++it) {
1160                 const std::string &name = it->first;
1161                 const std::string &value = it->second;
1162                 pkt << name;
1163                 pkt.putLongString(value);
1164         }
1165
1166         Send(&pkt);
1167 }
1168
1169 void Client::sendInventoryFields(const std::string &formname,
1170                 const StringMap &fields)
1171 {
1172         size_t fields_size = fields.size();
1173         FATAL_ERROR_IF(fields_size > 0xFFFF, "Unsupported number of inventory fields");
1174
1175         NetworkPacket pkt(TOSERVER_INVENTORY_FIELDS, 0);
1176         pkt << formname << (u16) (fields_size & 0xFFFF);
1177
1178         StringMap::const_iterator it;
1179         for (it = fields.begin(); it != fields.end(); ++it) {
1180                 const std::string &name  = it->first;
1181                 const std::string &value = it->second;
1182                 pkt << name;
1183                 pkt.putLongString(value);
1184         }
1185
1186         Send(&pkt);
1187 }
1188
1189 void Client::sendInventoryAction(InventoryAction *a)
1190 {
1191         std::ostringstream os(std::ios_base::binary);
1192
1193         a->serialize(os);
1194
1195         // Make data buffer
1196         std::string s = os.str();
1197
1198         NetworkPacket pkt(TOSERVER_INVENTORY_ACTION, s.size());
1199         pkt.putRawString(s.c_str(),s.size());
1200
1201         Send(&pkt);
1202 }
1203
1204 bool Client::canSendChatMessage() const
1205 {
1206         u32 now = time(NULL);
1207         float time_passed = now - m_last_chat_message_sent;
1208
1209         float virt_chat_message_allowance = m_chat_message_allowance + time_passed *
1210                         (CLIENT_CHAT_MESSAGE_LIMIT_PER_10S / 8.0f);
1211
1212         if (virt_chat_message_allowance < 1.0f)
1213                 return false;
1214
1215         return true;
1216 }
1217
1218 void Client::sendChatMessage(const std::wstring &message)
1219 {
1220         const s16 max_queue_size = g_settings->getS16("max_out_chat_queue_size");
1221         if (canSendChatMessage()) {
1222                 u32 now = time(NULL);
1223                 float time_passed = now - m_last_chat_message_sent;
1224                 m_last_chat_message_sent = time(NULL);
1225
1226                 m_chat_message_allowance += time_passed * (CLIENT_CHAT_MESSAGE_LIMIT_PER_10S / 8.0f);
1227                 if (m_chat_message_allowance > CLIENT_CHAT_MESSAGE_LIMIT_PER_10S)
1228                         m_chat_message_allowance = CLIENT_CHAT_MESSAGE_LIMIT_PER_10S;
1229
1230                 m_chat_message_allowance -= 1.0f;
1231
1232                 NetworkPacket pkt(TOSERVER_CHAT_MESSAGE, 2 + message.size() * sizeof(u16));
1233
1234                 pkt << message;
1235
1236                 Send(&pkt);
1237         } else if (m_out_chat_queue.size() < (u16) max_queue_size || max_queue_size == -1) {
1238                 m_out_chat_queue.push(message);
1239         } else {
1240                 infostream << "Could not queue chat message because maximum out chat queue size ("
1241                                 << max_queue_size << ") is reached." << std::endl;
1242         }
1243 }
1244
1245 void Client::clearOutChatQueue()
1246 {
1247         m_out_chat_queue = std::queue<std::wstring>();
1248 }
1249
1250 void Client::sendChangePassword(const std::string &oldpassword,
1251         const std::string &newpassword)
1252 {
1253         LocalPlayer *player = m_env.getLocalPlayer();
1254         if (player == NULL)
1255                 return;
1256
1257         // get into sudo mode and then send new password to server
1258         m_password = oldpassword;
1259         m_new_password = newpassword;
1260         startAuth(choseAuthMech(m_sudo_auth_methods));
1261 }
1262
1263
1264 void Client::sendDamage(u16 damage)
1265 {
1266         NetworkPacket pkt(TOSERVER_DAMAGE, sizeof(u16));
1267         pkt << damage;
1268         Send(&pkt);
1269 }
1270
1271 void Client::sendRespawn()
1272 {
1273         NetworkPacket pkt(TOSERVER_RESPAWN, 0);
1274         Send(&pkt);
1275 }
1276
1277 void Client::sendReady()
1278 {
1279         NetworkPacket pkt(TOSERVER_CLIENT_READY,
1280                         1 + 1 + 1 + 1 + 2 + sizeof(char) * strlen(g_version_hash) + 2);
1281
1282         pkt << (u8) VERSION_MAJOR << (u8) VERSION_MINOR << (u8) VERSION_PATCH
1283                 << (u8) 0 << (u16) strlen(g_version_hash);
1284
1285         pkt.putRawString(g_version_hash, (u16) strlen(g_version_hash));
1286         pkt << (u16)FORMSPEC_API_VERSION;
1287         Send(&pkt);
1288 }
1289
1290 void Client::sendPlayerPos()
1291 {
1292         LocalPlayer *player = m_env.getLocalPlayer();
1293         if (!player)
1294                 return;
1295
1296         ClientMap &map = m_env.getClientMap();
1297         u8 camera_fov   = map.getCameraFov();
1298         u8 wanted_range = map.getControl().wanted_range;
1299
1300         // Save bandwidth by only updating position when
1301         // player is not dead and something changed
1302
1303         // FIXME: This part causes breakages in mods like 3d_armor, and has been commented for now
1304         // if (m_activeobjects_received && player->isDead())
1305         //      return;
1306
1307         if (
1308                         player->last_position     == player->getPosition() &&
1309                         player->last_speed        == player->getSpeed()    &&
1310                         player->last_pitch        == player->getPitch()    &&
1311                         player->last_yaw          == player->getYaw()      &&
1312                         player->last_keyPressed   == player->keyPressed    &&
1313                         player->last_camera_fov   == camera_fov              &&
1314                         player->last_wanted_range == wanted_range)
1315                 return;
1316
1317         player->last_position     = player->getPosition();
1318         player->last_speed        = player->getSpeed();
1319         player->last_pitch        = player->getPitch();
1320         player->last_yaw          = player->getYaw();
1321         player->last_keyPressed   = player->keyPressed;
1322         player->last_camera_fov   = camera_fov;
1323         player->last_wanted_range = wanted_range;
1324
1325         NetworkPacket pkt(TOSERVER_PLAYERPOS, 12 + 12 + 4 + 4 + 4 + 1 + 1);
1326
1327         writePlayerPos(player, &map, &pkt);
1328
1329         Send(&pkt);
1330 }
1331
1332 void Client::removeNode(v3s16 p)
1333 {
1334         std::map<v3s16, MapBlock*> modified_blocks;
1335
1336         try {
1337                 m_env.getMap().removeNodeAndUpdate(p, modified_blocks);
1338         }
1339         catch(InvalidPositionException &e) {
1340         }
1341
1342         for (const auto &modified_block : modified_blocks) {
1343                 addUpdateMeshTaskWithEdge(modified_block.first, false, true);
1344         }
1345 }
1346
1347 /**
1348  * Helper function for Client Side Modding
1349  * CSM restrictions are applied there, this should not be used for core engine
1350  * @param p
1351  * @param is_valid_position
1352  * @return
1353  */
1354 MapNode Client::CSMGetNode(v3s16 p, bool *is_valid_position)
1355 {
1356         if (checkCSMRestrictionFlag(CSMRestrictionFlags::CSM_RF_LOOKUP_NODES)) {
1357                 v3s16 ppos = floatToInt(m_env.getLocalPlayer()->getPosition(), BS);
1358                 if ((u32) ppos.getDistanceFrom(p) > m_csm_restriction_noderange) {
1359                         *is_valid_position = false;
1360                         return {};
1361                 }
1362         }
1363         return m_env.getMap().getNode(p, is_valid_position);
1364 }
1365
1366 int Client::CSMClampRadius(v3s16 pos, int radius)
1367 {
1368         if (!checkCSMRestrictionFlag(CSMRestrictionFlags::CSM_RF_LOOKUP_NODES))
1369                 return radius;
1370         // This is approximate and will cause some allowed nodes to be excluded
1371         v3s16 ppos = floatToInt(m_env.getLocalPlayer()->getPosition(), BS);
1372         u32 distance = ppos.getDistanceFrom(pos);
1373         if (distance >= m_csm_restriction_noderange)
1374                 return 0;
1375         return std::min<int>(radius, m_csm_restriction_noderange - distance);
1376 }
1377
1378 v3s16 Client::CSMClampPos(v3s16 pos)
1379 {
1380         if (!checkCSMRestrictionFlag(CSMRestrictionFlags::CSM_RF_LOOKUP_NODES))
1381                 return pos;
1382         v3s16 ppos = floatToInt(m_env.getLocalPlayer()->getPosition(), BS);
1383         const int range = m_csm_restriction_noderange;
1384         return v3s16(
1385                 core::clamp<int>(pos.X, (int)ppos.X - range, (int)ppos.X + range),
1386                 core::clamp<int>(pos.Y, (int)ppos.Y - range, (int)ppos.Y + range),
1387                 core::clamp<int>(pos.Z, (int)ppos.Z - range, (int)ppos.Z + range)
1388         );
1389 }
1390
1391 void Client::addNode(v3s16 p, MapNode n, bool remove_metadata)
1392 {
1393         //TimeTaker timer1("Client::addNode()");
1394
1395         std::map<v3s16, MapBlock*> modified_blocks;
1396
1397         try {
1398                 //TimeTaker timer3("Client::addNode(): addNodeAndUpdate");
1399                 m_env.getMap().addNodeAndUpdate(p, n, modified_blocks, remove_metadata);
1400         }
1401         catch(InvalidPositionException &e) {
1402         }
1403
1404         for (const auto &modified_block : modified_blocks) {
1405                 addUpdateMeshTaskWithEdge(modified_block.first, false, true);
1406         }
1407 }
1408
1409 void Client::setPlayerControl(PlayerControl &control)
1410 {
1411         LocalPlayer *player = m_env.getLocalPlayer();
1412         assert(player);
1413         player->control = control;
1414 }
1415
1416 void Client::setPlayerItem(u16 item)
1417 {
1418         m_env.getLocalPlayer()->setWieldIndex(item);
1419         m_update_wielded_item = true;
1420
1421         NetworkPacket pkt(TOSERVER_PLAYERITEM, 2);
1422         pkt << item;
1423         Send(&pkt);
1424 }
1425
1426 // Returns true once after the inventory of the local player
1427 // has been updated from the server.
1428 bool Client::updateWieldedItem()
1429 {
1430         if (!m_update_wielded_item)
1431                 return false;
1432
1433         m_update_wielded_item = false;
1434
1435         LocalPlayer *player = m_env.getLocalPlayer();
1436         assert(player);
1437         if (auto *list = player->inventory.getList("main"))
1438                 list->setModified(false);
1439         if (auto *list = player->inventory.getList("hand"))
1440                 list->setModified(false);
1441
1442         return true;
1443 }
1444
1445 Inventory* Client::getInventory(const InventoryLocation &loc)
1446 {
1447         switch(loc.type){
1448         case InventoryLocation::UNDEFINED:
1449         {}
1450         break;
1451         case InventoryLocation::CURRENT_PLAYER:
1452         {
1453                 LocalPlayer *player = m_env.getLocalPlayer();
1454                 assert(player);
1455                 return &player->inventory;
1456         }
1457         break;
1458         case InventoryLocation::PLAYER:
1459         {
1460                 // Check if we are working with local player inventory
1461                 LocalPlayer *player = m_env.getLocalPlayer();
1462                 if (!player || strcmp(player->getName(), loc.name.c_str()) != 0)
1463                         return NULL;
1464                 return &player->inventory;
1465         }
1466         break;
1467         case InventoryLocation::NODEMETA:
1468         {
1469                 NodeMetadata *meta = m_env.getMap().getNodeMetadata(loc.p);
1470                 if(!meta)
1471                         return NULL;
1472                 return meta->getInventory();
1473         }
1474         break;
1475         case InventoryLocation::DETACHED:
1476         {
1477                 if (m_detached_inventories.count(loc.name) == 0)
1478                         return NULL;
1479                 return m_detached_inventories[loc.name];
1480         }
1481         break;
1482         default:
1483                 FATAL_ERROR("Invalid inventory location type.");
1484                 break;
1485         }
1486         return NULL;
1487 }
1488
1489 void Client::inventoryAction(InventoryAction *a)
1490 {
1491         /*
1492                 Send it to the server
1493         */
1494         sendInventoryAction(a);
1495
1496         /*
1497                 Predict some local inventory changes
1498         */
1499         a->clientApply(this, this);
1500
1501         // Remove it
1502         delete a;
1503 }
1504
1505 float Client::getAnimationTime()
1506 {
1507         return m_animation_time;
1508 }
1509
1510 int Client::getCrackLevel()
1511 {
1512         return m_crack_level;
1513 }
1514
1515 v3s16 Client::getCrackPos()
1516 {
1517         return m_crack_pos;
1518 }
1519
1520 void Client::setCrack(int level, v3s16 pos)
1521 {
1522         int old_crack_level = m_crack_level;
1523         v3s16 old_crack_pos = m_crack_pos;
1524
1525         m_crack_level = level;
1526         m_crack_pos = pos;
1527
1528         if(old_crack_level >= 0 && (level < 0 || pos != old_crack_pos))
1529         {
1530                 // remove old crack
1531                 addUpdateMeshTaskForNode(old_crack_pos, false, true);
1532         }
1533         if(level >= 0 && (old_crack_level < 0 || pos != old_crack_pos))
1534         {
1535                 // add new crack
1536                 addUpdateMeshTaskForNode(pos, false, true);
1537         }
1538 }
1539
1540 u16 Client::getHP()
1541 {
1542         LocalPlayer *player = m_env.getLocalPlayer();
1543         assert(player);
1544         return player->hp;
1545 }
1546
1547 bool Client::getChatMessage(std::wstring &res)
1548 {
1549         if (m_chat_queue.empty())
1550                 return false;
1551
1552         ChatMessage *chatMessage = m_chat_queue.front();
1553         m_chat_queue.pop();
1554
1555         res = L"";
1556
1557         switch (chatMessage->type) {
1558                 case CHATMESSAGE_TYPE_RAW:
1559                 case CHATMESSAGE_TYPE_ANNOUNCE:
1560                 case CHATMESSAGE_TYPE_SYSTEM:
1561                         res = chatMessage->message;
1562                         break;
1563                 case CHATMESSAGE_TYPE_NORMAL: {
1564                         if (!chatMessage->sender.empty())
1565                                 res = L"<" + chatMessage->sender + L"> " + chatMessage->message;
1566                         else
1567                                 res = chatMessage->message;
1568                         break;
1569                 }
1570                 default:
1571                         break;
1572         }
1573
1574         delete chatMessage;
1575         return true;
1576 }
1577
1578 void Client::typeChatMessage(const std::wstring &message)
1579 {
1580         // Discard empty line
1581         if (message.empty())
1582                 return;
1583
1584         // If message was consumed by script API, don't send it to server
1585         if (m_mods_loaded && m_script->on_sending_message(wide_to_utf8(message)))
1586                 return;
1587
1588         // Send to others
1589         sendChatMessage(message);
1590 }
1591
1592 void Client::addUpdateMeshTask(v3s16 p, bool ack_to_server, bool urgent)
1593 {
1594         // Check if the block exists to begin with. In the case when a non-existing
1595         // neighbor is automatically added, it may not. In that case we don't want
1596         // to tell the mesh update thread about it.
1597         MapBlock *b = m_env.getMap().getBlockNoCreateNoEx(p);
1598         if (b == NULL)
1599                 return;
1600
1601         m_mesh_update_thread.updateBlock(&m_env.getMap(), p, ack_to_server, urgent);
1602 }
1603
1604 void Client::addUpdateMeshTaskWithEdge(v3s16 blockpos, bool ack_to_server, bool urgent)
1605 {
1606         try{
1607                 addUpdateMeshTask(blockpos, ack_to_server, urgent);
1608         }
1609         catch(InvalidPositionException &e){}
1610
1611         // Leading edge
1612         for (int i=0;i<6;i++)
1613         {
1614                 try{
1615                         v3s16 p = blockpos + g_6dirs[i];
1616                         addUpdateMeshTask(p, false, urgent);
1617                 }
1618                 catch(InvalidPositionException &e){}
1619         }
1620 }
1621
1622 void Client::addUpdateMeshTaskForNode(v3s16 nodepos, bool ack_to_server, bool urgent)
1623 {
1624         {
1625                 v3s16 p = nodepos;
1626                 infostream<<"Client::addUpdateMeshTaskForNode(): "
1627                                 <<"("<<p.X<<","<<p.Y<<","<<p.Z<<")"
1628                                 <<std::endl;
1629         }
1630
1631         v3s16 blockpos          = getNodeBlockPos(nodepos);
1632         v3s16 blockpos_relative = blockpos * MAP_BLOCKSIZE;
1633
1634         try{
1635                 addUpdateMeshTask(blockpos, ack_to_server, urgent);
1636         }
1637         catch(InvalidPositionException &e) {}
1638
1639         // Leading edge
1640         if(nodepos.X == blockpos_relative.X){
1641                 try{
1642                         v3s16 p = blockpos + v3s16(-1,0,0);
1643                         addUpdateMeshTask(p, false, urgent);
1644                 }
1645                 catch(InvalidPositionException &e){}
1646         }
1647
1648         if(nodepos.Y == blockpos_relative.Y){
1649                 try{
1650                         v3s16 p = blockpos + v3s16(0,-1,0);
1651                         addUpdateMeshTask(p, false, urgent);
1652                 }
1653                 catch(InvalidPositionException &e){}
1654         }
1655
1656         if(nodepos.Z == blockpos_relative.Z){
1657                 try{
1658                         v3s16 p = blockpos + v3s16(0,0,-1);
1659                         addUpdateMeshTask(p, false, urgent);
1660                 }
1661                 catch(InvalidPositionException &e){}
1662         }
1663 }
1664
1665 ClientEvent *Client::getClientEvent()
1666 {
1667         FATAL_ERROR_IF(m_client_event_queue.empty(),
1668                         "Cannot getClientEvent, queue is empty.");
1669
1670         ClientEvent *event = m_client_event_queue.front();
1671         m_client_event_queue.pop();
1672         return event;
1673 }
1674
1675 bool Client::connectedToServer()
1676 {
1677         return m_con->Connected();
1678 }
1679
1680 const Address Client::getServerAddress()
1681 {
1682         return m_con->GetPeerAddress(PEER_ID_SERVER);
1683 }
1684
1685 float Client::mediaReceiveProgress()
1686 {
1687         if (m_media_downloader)
1688                 return m_media_downloader->getProgress();
1689
1690         return 1.0; // downloader only exists when not yet done
1691 }
1692
1693 typedef struct TextureUpdateArgs {
1694         gui::IGUIEnvironment *guienv;
1695         u64 last_time_ms;
1696         u16 last_percent;
1697         const wchar_t* text_base;
1698         ITextureSource *tsrc;
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                 u64 time_ms = targs->last_time_ms;
1709                 if (cur_percent != targs->last_percent) {
1710                         targs->last_percent = cur_percent;
1711                         time_ms = porting::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                         RenderingEngine::draw_load_screen(strm.str(), targs->guienv, targs->tsrc, 0,
1721                                 72 + (u16) ((18. / 100.) * (double) targs->last_percent), true);
1722                 }
1723 }
1724
1725 void Client::afterContentReceived()
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();
1738
1739         // Rebuild inherited images and recreate textures
1740         infostream<<"- Rebuilding images and textures"<<std::endl;
1741         RenderingEngine::draw_load_screen(text, guienv, m_tsrc, 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         RenderingEngine::draw_load_screen(text, guienv, m_tsrc, 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         RenderingEngine::draw_load_screen(text, guienv, m_tsrc, 0, 72);
1756         m_nodedef->updateAliases(m_itemdef);
1757         for (const auto &path : getTextureDirs()) {
1758                 TextureOverrideSource override_source(path + DIR_DELIM + "override.txt");
1759                 m_nodedef->applyTextureOverrides(override_source.getNodeTileOverrides());
1760                 m_itemdef->applyTextureOverrides(override_source.getItemTextureOverrides());
1761         }
1762         m_nodedef->setNodeRegistrationStatus(true);
1763         m_nodedef->runNodeResolveCallbacks();
1764         delete[] text;
1765
1766         // Update node textures and assign shaders to each tile
1767         infostream<<"- Updating node textures"<<std::endl;
1768         TextureUpdateArgs tu_args;
1769         tu_args.guienv = guienv;
1770         tu_args.last_time_ms = porting::getTimeMs();
1771         tu_args.last_percent = 0;
1772         tu_args.text_base =  wgettext("Initializing nodes");
1773         tu_args.tsrc = m_tsrc;
1774         m_nodedef->updateTextures(this, texture_update_progress, &tu_args);
1775         delete[] tu_args.text_base;
1776
1777         // Start mesh update thread after setting up content definitions
1778         infostream<<"- Starting mesh update thread"<<std::endl;
1779         m_mesh_update_thread.start();
1780
1781         m_state = LC_Ready;
1782         sendReady();
1783
1784         if (m_mods_loaded)
1785                 m_script->on_client_ready(m_env.getLocalPlayer());
1786
1787         text = wgettext("Done!");
1788         RenderingEngine::draw_load_screen(text, guienv, m_tsrc, 0, 100);
1789         infostream<<"Client::afterContentReceived() done"<<std::endl;
1790         delete[] text;
1791 }
1792
1793 float Client::getRTT()
1794 {
1795         return m_con->getPeerStat(PEER_ID_SERVER,con::AVG_RTT);
1796 }
1797
1798 float Client::getCurRate()
1799 {
1800         return (m_con->getLocalStat(con::CUR_INC_RATE) +
1801                         m_con->getLocalStat(con::CUR_DL_RATE));
1802 }
1803
1804 void Client::makeScreenshot()
1805 {
1806         irr::video::IVideoDriver *driver = RenderingEngine::get_video_driver();
1807         irr::video::IImage* const raw_image = driver->createScreenShot();
1808
1809         if (!raw_image)
1810                 return;
1811
1812         time_t t = time(NULL);
1813         struct tm *tm = localtime(&t);
1814
1815         char timetstamp_c[64];
1816         strftime(timetstamp_c, sizeof(timetstamp_c), "%Y%m%d_%H%M%S", tm);
1817
1818         std::string screenshot_dir;
1819
1820         if (fs::IsPathAbsolute(g_settings->get("screenshot_path")))
1821                 screenshot_dir = g_settings->get("screenshot_path");
1822         else
1823                 screenshot_dir = porting::path_user + DIR_DELIM + g_settings->get("screenshot_path");
1824
1825         std::string filename_base = screenshot_dir
1826                         + DIR_DELIM
1827                         + std::string("screenshot_")
1828                         + std::string(timetstamp_c);
1829         std::string filename_ext = "." + g_settings->get("screenshot_format");
1830         std::string filename;
1831
1832         // Create the directory if it doesn't already exist.
1833         // Otherwise, saving the screenshot would fail.
1834         fs::CreateDir(screenshot_dir);
1835
1836         u32 quality = (u32)g_settings->getS32("screenshot_quality");
1837         quality = MYMIN(MYMAX(quality, 0), 100) / 100.0 * 255;
1838
1839         // Try to find a unique filename
1840         unsigned serial = 0;
1841
1842         while (serial < SCREENSHOT_MAX_SERIAL_TRIES) {
1843                 filename = filename_base + (serial > 0 ? ("_" + itos(serial)) : "") + filename_ext;
1844                 std::ifstream tmp(filename.c_str());
1845                 if (!tmp.good())
1846                         break;  // File did not apparently exist, we'll go with it
1847                 serial++;
1848         }
1849
1850         if (serial == SCREENSHOT_MAX_SERIAL_TRIES) {
1851                 infostream << "Could not find suitable filename for screenshot" << std::endl;
1852         } else {
1853                 irr::video::IImage* const image =
1854                                 driver->createImage(video::ECF_R8G8B8, raw_image->getDimension());
1855
1856                 if (image) {
1857                         raw_image->copyTo(image);
1858
1859                         std::ostringstream sstr;
1860                         if (driver->writeImageToFile(image, filename.c_str(), quality)) {
1861                                 sstr << "Saved screenshot to '" << filename << "'";
1862                         } else {
1863                                 sstr << "Failed to save screenshot '" << filename << "'";
1864                         }
1865                         pushToChatQueue(new ChatMessage(CHATMESSAGE_TYPE_SYSTEM,
1866                                         narrow_to_wide(sstr.str())));
1867                         infostream << sstr.str() << std::endl;
1868                         image->drop();
1869                 }
1870         }
1871
1872         raw_image->drop();
1873 }
1874
1875 bool Client::shouldShowMinimap() const
1876 {
1877         return !m_minimap_disabled_by_server;
1878 }
1879
1880 void Client::pushToEventQueue(ClientEvent *event)
1881 {
1882         m_client_event_queue.push(event);
1883 }
1884
1885 void Client::showMinimap(const bool show)
1886 {
1887         m_game_ui->showMinimap(show);
1888 }
1889
1890 // IGameDef interface
1891 // Under envlock
1892 IItemDefManager* Client::getItemDefManager()
1893 {
1894         return m_itemdef;
1895 }
1896 const NodeDefManager* Client::getNodeDefManager()
1897 {
1898         return m_nodedef;
1899 }
1900 ICraftDefManager* Client::getCraftDefManager()
1901 {
1902         return NULL;
1903         //return m_craftdef;
1904 }
1905 ITextureSource* Client::getTextureSource()
1906 {
1907         return m_tsrc;
1908 }
1909 IWritableShaderSource* Client::getShaderSource()
1910 {
1911         return m_shsrc;
1912 }
1913
1914 u16 Client::allocateUnknownNodeId(const std::string &name)
1915 {
1916         errorstream << "Client::allocateUnknownNodeId(): "
1917                         << "Client cannot allocate node IDs" << std::endl;
1918         FATAL_ERROR("Client allocated unknown node");
1919
1920         return CONTENT_IGNORE;
1921 }
1922 ISoundManager* Client::getSoundManager()
1923 {
1924         return m_sound;
1925 }
1926 MtEventManager* Client::getEventManager()
1927 {
1928         return m_event;
1929 }
1930
1931 ParticleManager* Client::getParticleManager()
1932 {
1933         return &m_particle_manager;
1934 }
1935
1936 scene::IAnimatedMesh* Client::getMesh(const std::string &filename, bool cache)
1937 {
1938         StringMap::const_iterator it = m_mesh_data.find(filename);
1939         if (it == m_mesh_data.end()) {
1940                 errorstream << "Client::getMesh(): Mesh not found: \"" << filename
1941                         << "\"" << std::endl;
1942                 return NULL;
1943         }
1944         const std::string &data    = it->second;
1945
1946         // Create the mesh, remove it from cache and return it
1947         // This allows unique vertex colors and other properties for each instance
1948         Buffer<char> data_rw(data.c_str(), data.size()); // Const-incorrect Irrlicht
1949         io::IReadFile *rfile   = RenderingEngine::get_filesystem()->createMemoryReadFile(
1950                         *data_rw, data_rw.getSize(), filename.c_str());
1951         FATAL_ERROR_IF(!rfile, "Could not create/open RAM file");
1952
1953         scene::IAnimatedMesh *mesh = RenderingEngine::get_scene_manager()->getMesh(rfile);
1954         rfile->drop();
1955         mesh->grab();
1956         if (!cache)
1957                 RenderingEngine::get_mesh_cache()->removeMesh(mesh);
1958         return mesh;
1959 }
1960
1961 const std::string* Client::getModFile(std::string filename)
1962 {
1963         // strip dir delimiter from beginning of path
1964         auto pos = filename.find_first_of(':');
1965         if (pos == std::string::npos)
1966                 return nullptr;
1967         pos++;
1968         auto pos2 = filename.find_first_not_of('/', pos);
1969         if (pos2 > pos)
1970                 filename.erase(pos, pos2 - pos);
1971
1972         StringMap::const_iterator it = m_mod_vfs.find(filename);
1973         if (it == m_mod_vfs.end())
1974                 return nullptr;
1975         return &it->second;
1976 }
1977
1978 bool Client::registerModStorage(ModMetadata *storage)
1979 {
1980         if (m_mod_storages.find(storage->getModName()) != m_mod_storages.end()) {
1981                 errorstream << "Unable to register same mod storage twice. Storage name: "
1982                                 << storage->getModName() << std::endl;
1983                 return false;
1984         }
1985
1986         m_mod_storages[storage->getModName()] = storage;
1987         return true;
1988 }
1989
1990 void Client::unregisterModStorage(const std::string &name)
1991 {
1992         std::unordered_map<std::string, ModMetadata *>::const_iterator it =
1993                 m_mod_storages.find(name);
1994         if (it != m_mod_storages.end()) {
1995                 // Save unconditionaly on unregistration
1996                 it->second->save(getModStoragePath());
1997                 m_mod_storages.erase(name);
1998         }
1999 }
2000
2001 std::string Client::getModStoragePath() const
2002 {
2003         return porting::path_user + DIR_DELIM + "client" + DIR_DELIM + "mod_storage";
2004 }
2005
2006 /*
2007  * Mod channels
2008  */
2009
2010 bool Client::joinModChannel(const std::string &channel)
2011 {
2012         if (m_modchannel_mgr->channelRegistered(channel))
2013                 return false;
2014
2015         NetworkPacket pkt(TOSERVER_MODCHANNEL_JOIN, 2 + channel.size());
2016         pkt << channel;
2017         Send(&pkt);
2018
2019         m_modchannel_mgr->joinChannel(channel, 0);
2020         return true;
2021 }
2022
2023 bool Client::leaveModChannel(const std::string &channel)
2024 {
2025         if (!m_modchannel_mgr->channelRegistered(channel))
2026                 return false;
2027
2028         NetworkPacket pkt(TOSERVER_MODCHANNEL_LEAVE, 2 + channel.size());
2029         pkt << channel;
2030         Send(&pkt);
2031
2032         m_modchannel_mgr->leaveChannel(channel, 0);
2033         return true;
2034 }
2035
2036 bool Client::sendModChannelMessage(const std::string &channel, const std::string &message)
2037 {
2038         if (!m_modchannel_mgr->canWriteOnChannel(channel))
2039                 return false;
2040
2041         if (message.size() > STRING_MAX_LEN) {
2042                 warningstream << "ModChannel message too long, dropping before sending "
2043                                 << " (" << message.size() << " > " << STRING_MAX_LEN << ", channel: "
2044                                 << channel << ")" << std::endl;
2045                 return false;
2046         }
2047
2048         // @TODO: do some client rate limiting
2049         NetworkPacket pkt(TOSERVER_MODCHANNEL_MSG, 2 + channel.size() + 2 + message.size());
2050         pkt << channel << message;
2051         Send(&pkt);
2052         return true;
2053 }
2054
2055 ModChannel* Client::getModChannel(const std::string &channel)
2056 {
2057         return m_modchannel_mgr->getModChannel(channel);
2058 }