]> git.lizzy.rs Git - dragonfireclient.git/blob - src/clientiface.cpp
Network: Remove large parts of deprecated legacy code (#6404)
[dragonfireclient.git] / src / clientiface.cpp
1 /*
2 Minetest
3 Copyright (C) 2010-2014 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 <sstream>
21 #include "clientiface.h"
22 #include "network/connection.h"
23 #include "network/serveropcodes.h"
24 #include "remoteplayer.h"
25 #include "settings.h"
26 #include "mapblock.h"
27 #include "serverenvironment.h"
28 #include "map.h"
29 #include "emerge.h"
30 #include "content_sao.h"              // TODO this is used for cleanup of only
31 #include "log.h"
32 #include "util/srp.h"
33 #include "face_position_cache.h"
34
35 const char *ClientInterface::statenames[] = {
36         "Invalid",
37         "Disconnecting",
38         "Denied",
39         "Created",
40         "AwaitingInit2",
41         "HelloSent",
42         "InitDone",
43         "DefinitionsSent",
44         "Active",
45         "SudoMode",
46 };
47
48
49
50 std::string ClientInterface::state2Name(ClientState state)
51 {
52         return statenames[state];
53 }
54
55 void RemoteClient::ResendBlockIfOnWire(v3s16 p)
56 {
57         // if this block is on wire, mark it for sending again as soon as possible
58         if (m_blocks_sending.find(p) != m_blocks_sending.end()) {
59                 SetBlockNotSent(p);
60         }
61 }
62
63 void RemoteClient::GetNextBlocks (
64                 ServerEnvironment *env,
65                 EmergeManager * emerge,
66                 float dtime,
67                 std::vector<PrioritySortedBlockTransfer> &dest)
68 {
69         // Increment timers
70         m_nothing_to_send_pause_timer -= dtime;
71         m_nearest_unsent_reset_timer += dtime;
72
73         if(m_nothing_to_send_pause_timer >= 0)
74                 return;
75
76         RemotePlayer *player = env->getPlayer(peer_id);
77         // This can happen sometimes; clients and players are not in perfect sync.
78         if (!player)
79                 return;
80
81         PlayerSAO *sao = player->getPlayerSAO();
82         if (!sao)
83                 return;
84
85         // Won't send anything if already sending
86         if(m_blocks_sending.size() >= g_settings->getU16
87                         ("max_simultaneous_block_sends_per_client"))
88         {
89                 //infostream<<"Not sending any blocks, Queue full."<<std::endl;
90                 return;
91         }
92
93         v3f playerpos = sao->getBasePosition();
94         const v3f &playerspeed = player->getSpeed();
95         v3f playerspeeddir(0,0,0);
96         if(playerspeed.getLength() > 1.0*BS)
97                 playerspeeddir = playerspeed / playerspeed.getLength();
98         // Predict to next block
99         v3f playerpos_predicted = playerpos + playerspeeddir*MAP_BLOCKSIZE*BS;
100
101         v3s16 center_nodepos = floatToInt(playerpos_predicted, BS);
102
103         v3s16 center = getNodeBlockPos(center_nodepos);
104
105         // Camera position and direction
106         v3f camera_pos = sao->getEyePosition();
107         v3f camera_dir = v3f(0,0,1);
108         camera_dir.rotateYZBy(sao->getPitch());
109         camera_dir.rotateXZBy(sao->getYaw());
110
111         /*infostream<<"camera_dir=("<<camera_dir.X<<","<<camera_dir.Y<<","
112                         <<camera_dir.Z<<")"<<std::endl;*/
113
114         /*
115                 Get the starting value of the block finder radius.
116         */
117
118         if(m_last_center != center)
119         {
120                 m_nearest_unsent_d = 0;
121                 m_last_center = center;
122         }
123
124         /*infostream<<"m_nearest_unsent_reset_timer="
125                         <<m_nearest_unsent_reset_timer<<std::endl;*/
126
127         // Reset periodically to workaround for some bugs or stuff
128         if(m_nearest_unsent_reset_timer > 20.0)
129         {
130                 m_nearest_unsent_reset_timer = 0;
131                 m_nearest_unsent_d = 0;
132                 //infostream<<"Resetting m_nearest_unsent_d for "
133                 //              <<server->getPlayerName(peer_id)<<std::endl;
134         }
135
136         //s16 last_nearest_unsent_d = m_nearest_unsent_d;
137         s16 d_start = m_nearest_unsent_d;
138
139         //infostream<<"d_start="<<d_start<<std::endl;
140
141         u16 max_simul_sends_setting = g_settings->getU16
142                         ("max_simultaneous_block_sends_per_client");
143         u16 max_simul_sends_usually = max_simul_sends_setting;
144
145         /*
146                 Check the time from last addNode/removeNode.
147
148                 Decrease send rate if player is building stuff.
149         */
150         m_time_from_building += dtime;
151         if(m_time_from_building < g_settings->getFloat(
152                                 "full_block_send_enable_min_time_from_building"))
153         {
154                 max_simul_sends_usually
155                         = LIMITED_MAX_SIMULTANEOUS_BLOCK_SENDS;
156         }
157
158         /*
159                 Number of blocks sending + number of blocks selected for sending
160         */
161         u32 num_blocks_selected = m_blocks_sending.size();
162
163         /*
164                 next time d will be continued from the d from which the nearest
165                 unsent block was found this time.
166
167                 This is because not necessarily any of the blocks found this
168                 time are actually sent.
169         */
170         s32 new_nearest_unsent_d = -1;
171
172         // get view range and camera fov from the client
173         s16 wanted_range = sao->getWantedRange();
174         float camera_fov = sao->getFov();
175         // if FOV, wanted_range are not available (old client), fall back to old default
176         if (wanted_range <= 0) wanted_range = 1000;
177         if (camera_fov <= 0) camera_fov = (72.0*M_PI/180) * 4./3.;
178
179         const s16 full_d_max = MYMIN(g_settings->getS16("max_block_send_distance"), wanted_range);
180         const s16 d_opt = MYMIN(g_settings->getS16("block_send_optimize_distance"), wanted_range);
181         const s16 d_blocks_in_sight = full_d_max * BS * MAP_BLOCKSIZE;
182         //infostream << "Fov from client " << camera_fov << " full_d_max " << full_d_max << std::endl;
183
184         s16 d_max = full_d_max;
185         s16 d_max_gen = MYMIN(g_settings->getS16("max_block_generate_distance"), wanted_range);
186
187         // Don't loop very much at a time
188         s16 max_d_increment_at_time = 2;
189         if(d_max > d_start + max_d_increment_at_time)
190                 d_max = d_start + max_d_increment_at_time;
191
192         s32 nearest_emerged_d = -1;
193         s32 nearest_emergefull_d = -1;
194         s32 nearest_sent_d = -1;
195         //bool queue_is_full = false;
196
197         const v3s16 cam_pos_nodes = floatToInt(camera_pos, BS);
198         const bool occ_cull = g_settings->getBool("server_side_occlusion_culling");
199
200         s16 d;
201         for(d = d_start; d <= d_max; d++) {
202                 /*
203                         Get the border/face dot coordinates of a "d-radiused"
204                         box
205                 */
206                 std::vector<v3s16> list = FacePositionCache::getFacePositions(d);
207
208                 std::vector<v3s16>::iterator li;
209                 for(li = list.begin(); li != list.end(); ++li) {
210                         v3s16 p = *li + center;
211
212                         /*
213                                 Send throttling
214                                 - Don't allow too many simultaneous transfers
215                                 - EXCEPT when the blocks are very close
216
217                                 Also, don't send blocks that are already flying.
218                         */
219
220                         // Start with the usual maximum
221                         u16 max_simul_dynamic = max_simul_sends_usually;
222
223                         // If block is very close, allow full maximum
224                         if(d <= BLOCK_SEND_DISABLE_LIMITS_MAX_D)
225                                 max_simul_dynamic = max_simul_sends_setting;
226
227                         // Don't select too many blocks for sending
228                         if (num_blocks_selected >= max_simul_dynamic) {
229                                 //queue_is_full = true;
230                                 goto queue_full_break;
231                         }
232
233                         // Don't send blocks that are currently being transferred
234                         if (m_blocks_sending.find(p) != m_blocks_sending.end())
235                                 continue;
236
237                         /*
238                                 Do not go over max mapgen limit
239                         */
240                         if (blockpos_over_max_limit(p))
241                                 continue;
242
243                         // If this is true, inexistent block will be made from scratch
244                         bool generate = d <= d_max_gen;
245
246                         /*
247                                 Don't generate or send if not in sight
248                                 FIXME This only works if the client uses a small enough
249                                 FOV setting. The default of 72 degrees is fine.
250                         */
251
252                         f32 dist;
253                         if (!isBlockInSight(p, camera_pos, camera_dir, camera_fov, d_blocks_in_sight, &dist)) {
254                                 continue;
255                         }
256
257                         /*
258                                 Don't send already sent blocks
259                         */
260                         {
261                                 if(m_blocks_sent.find(p) != m_blocks_sent.end())
262                                 {
263                                         continue;
264                                 }
265                         }
266
267                         /*
268                                 Check if map has this block
269                         */
270                         MapBlock *block = env->getMap().getBlockNoCreateNoEx(p);
271
272                         bool surely_not_found_on_disk = false;
273                         bool block_is_invalid = false;
274                         if (block) {
275                                 // Reset usage timer, this block will be of use in the future.
276                                 block->resetUsageTimer();
277
278                                 // Block is dummy if data doesn't exist.
279                                 // It means it has been not found from disk and not generated
280                                 if (block->isDummy()) {
281                                         surely_not_found_on_disk = true;
282                                 }
283
284                                 if (!block->isGenerated())
285                                         block_is_invalid = true;
286
287                                 /*
288                                         If block is not close, don't send it unless it is near
289                                         ground level.
290
291                                         Block is near ground level if night-time mesh
292                                         differs from day-time mesh.
293                                 */
294                                 if (d >= d_opt) {
295                                         if (!block->getDayNightDiff())
296                                                 continue;
297                                 }
298
299                                 if (occ_cull && !block_is_invalid &&
300                                                 env->getMap().isBlockOccluded(block, cam_pos_nodes)) {
301                                         continue;
302                                 }
303                         }
304
305                         /*
306                                 If block has been marked to not exist on disk (dummy)
307                                 and generating new ones is not wanted, skip block.
308                         */
309                         if (!generate && surely_not_found_on_disk) {
310                                 // get next one.
311                                 continue;
312                         }
313
314                         /*
315                                 Add inexistent block to emerge queue.
316                         */
317                         if(block == NULL || surely_not_found_on_disk || block_is_invalid)
318                         {
319                                 if (emerge->enqueueBlockEmerge(peer_id, p, generate)) {
320                                         if (nearest_emerged_d == -1)
321                                                 nearest_emerged_d = d;
322                                 } else {
323                                         if (nearest_emergefull_d == -1)
324                                                 nearest_emergefull_d = d;
325                                         goto queue_full_break;
326                                 }
327
328                                 // get next one.
329                                 continue;
330                         }
331
332                         if(nearest_sent_d == -1)
333                                 nearest_sent_d = d;
334
335                         /*
336                                 Add block to send queue
337                         */
338                         PrioritySortedBlockTransfer q((float)dist, p, peer_id);
339
340                         dest.push_back(q);
341
342                         num_blocks_selected += 1;
343                 }
344         }
345 queue_full_break:
346
347         // If nothing was found for sending and nothing was queued for
348         // emerging, continue next time browsing from here
349         if(nearest_emerged_d != -1){
350                 new_nearest_unsent_d = nearest_emerged_d;
351         } else if(nearest_emergefull_d != -1){
352                 new_nearest_unsent_d = nearest_emergefull_d;
353         } else {
354                 if(d > full_d_max){
355                         new_nearest_unsent_d = 0;
356                         m_nothing_to_send_pause_timer = 2.0;
357                 } else {
358                         if(nearest_sent_d != -1)
359                                 new_nearest_unsent_d = nearest_sent_d;
360                         else
361                                 new_nearest_unsent_d = d;
362                 }
363         }
364
365         if(new_nearest_unsent_d != -1)
366                 m_nearest_unsent_d = new_nearest_unsent_d;
367 }
368
369 void RemoteClient::GotBlock(v3s16 p)
370 {
371         if (m_blocks_modified.find(p) == m_blocks_modified.end()) {
372                 if (m_blocks_sending.find(p) != m_blocks_sending.end())
373                         m_blocks_sending.erase(p);
374                 else
375                         m_excess_gotblocks++;
376
377                 m_blocks_sent.insert(p);
378         }
379 }
380
381 void RemoteClient::SentBlock(v3s16 p)
382 {
383         if (m_blocks_modified.find(p) != m_blocks_modified.end())
384                 m_blocks_modified.erase(p);
385
386         if(m_blocks_sending.find(p) == m_blocks_sending.end())
387                 m_blocks_sending[p] = 0.0;
388         else
389                 infostream<<"RemoteClient::SentBlock(): Sent block"
390                                 " already in m_blocks_sending"<<std::endl;
391 }
392
393 void RemoteClient::SetBlockNotSent(v3s16 p)
394 {
395         m_nearest_unsent_d = 0;
396         m_nothing_to_send_pause_timer = 0;
397
398         if(m_blocks_sending.find(p) != m_blocks_sending.end())
399                 m_blocks_sending.erase(p);
400         if(m_blocks_sent.find(p) != m_blocks_sent.end())
401                 m_blocks_sent.erase(p);
402         m_blocks_modified.insert(p);
403 }
404
405 void RemoteClient::SetBlocksNotSent(std::map<v3s16, MapBlock*> &blocks)
406 {
407         m_nearest_unsent_d = 0;
408         m_nothing_to_send_pause_timer = 0;
409
410         for (auto &block : blocks) {
411                 v3s16 p = block.first;
412                 m_blocks_modified.insert(p);
413
414                 if(m_blocks_sending.find(p) != m_blocks_sending.end())
415                         m_blocks_sending.erase(p);
416                 if(m_blocks_sent.find(p) != m_blocks_sent.end())
417                         m_blocks_sent.erase(p);
418         }
419 }
420
421 void RemoteClient::notifyEvent(ClientStateEvent event)
422 {
423         std::ostringstream myerror;
424         switch (m_state)
425         {
426         case CS_Invalid:
427                 //intentionally do nothing
428                 break;
429         case CS_Created:
430                 switch (event) {
431                 case CSE_Hello:
432                         m_state = CS_HelloSent;
433                         break;
434                 case CSE_InitLegacy:
435                         m_state = CS_AwaitingInit2;
436                         break;
437                 case CSE_Disconnect:
438                         m_state = CS_Disconnecting;
439                         break;
440                 case CSE_SetDenied:
441                         m_state = CS_Denied;
442                         break;
443                 /* GotInit2 SetDefinitionsSent SetMediaSent */
444                 default:
445                         myerror << "Created: Invalid client state transition! " << event;
446                         throw ClientStateError(myerror.str());
447                 }
448                 break;
449         case CS_Denied:
450                 /* don't do anything if in denied state */
451                 break;
452         case CS_HelloSent:
453                 switch(event)
454                 {
455                 case CSE_AuthAccept:
456                         m_state = CS_AwaitingInit2;
457                         if (chosen_mech == AUTH_MECHANISM_SRP)
458                                 srp_verifier_delete((SRPVerifier *) auth_data);
459                         chosen_mech = AUTH_MECHANISM_NONE;
460                         break;
461                 case CSE_Disconnect:
462                         m_state = CS_Disconnecting;
463                         break;
464                 case CSE_SetDenied:
465                         m_state = CS_Denied;
466                         if (chosen_mech == AUTH_MECHANISM_SRP)
467                                 srp_verifier_delete((SRPVerifier *) auth_data);
468                         chosen_mech = AUTH_MECHANISM_NONE;
469                         break;
470                 default:
471                         myerror << "HelloSent: Invalid client state transition! " << event;
472                         throw ClientStateError(myerror.str());
473                 }
474                 break;
475         case CS_AwaitingInit2:
476                 switch(event)
477                 {
478                 case CSE_GotInit2:
479                         confirmSerializationVersion();
480                         m_state = CS_InitDone;
481                         break;
482                 case CSE_Disconnect:
483                         m_state = CS_Disconnecting;
484                         break;
485                 case CSE_SetDenied:
486                         m_state = CS_Denied;
487                         break;
488
489                 /* Init SetDefinitionsSent SetMediaSent */
490                 default:
491                         myerror << "InitSent: Invalid client state transition! " << event;
492                         throw ClientStateError(myerror.str());
493                 }
494                 break;
495
496         case CS_InitDone:
497                 switch(event)
498                 {
499                 case CSE_SetDefinitionsSent:
500                         m_state = CS_DefinitionsSent;
501                         break;
502                 case CSE_Disconnect:
503                         m_state = CS_Disconnecting;
504                         break;
505                 case CSE_SetDenied:
506                         m_state = CS_Denied;
507                         break;
508
509                 /* Init GotInit2 SetMediaSent */
510                 default:
511                         myerror << "InitDone: Invalid client state transition! " << event;
512                         throw ClientStateError(myerror.str());
513                 }
514                 break;
515         case CS_DefinitionsSent:
516                 switch(event)
517                 {
518                 case CSE_SetClientReady:
519                         m_state = CS_Active;
520                         break;
521                 case CSE_Disconnect:
522                         m_state = CS_Disconnecting;
523                         break;
524                 case CSE_SetDenied:
525                         m_state = CS_Denied;
526                         break;
527                 /* Init GotInit2 SetDefinitionsSent */
528                 default:
529                         myerror << "DefinitionsSent: Invalid client state transition! " << event;
530                         throw ClientStateError(myerror.str());
531                 }
532                 break;
533         case CS_Active:
534                 switch(event)
535                 {
536                 case CSE_SetDenied:
537                         m_state = CS_Denied;
538                         break;
539                 case CSE_Disconnect:
540                         m_state = CS_Disconnecting;
541                         break;
542                 case CSE_SudoSuccess:
543                         m_state = CS_SudoMode;
544                         if (chosen_mech == AUTH_MECHANISM_SRP)
545                                 srp_verifier_delete((SRPVerifier *) auth_data);
546                         chosen_mech = AUTH_MECHANISM_NONE;
547                         break;
548                 /* Init GotInit2 SetDefinitionsSent SetMediaSent SetDenied */
549                 default:
550                         myerror << "Active: Invalid client state transition! " << event;
551                         throw ClientStateError(myerror.str());
552                         break;
553                 }
554                 break;
555         case CS_SudoMode:
556                 switch(event)
557                 {
558                 case CSE_SetDenied:
559                         m_state = CS_Denied;
560                         break;
561                 case CSE_Disconnect:
562                         m_state = CS_Disconnecting;
563                         break;
564                 case CSE_SudoLeave:
565                         m_state = CS_Active;
566                         break;
567                 default:
568                         myerror << "Active: Invalid client state transition! " << event;
569                         throw ClientStateError(myerror.str());
570                         break;
571                 }
572                 break;
573         case CS_Disconnecting:
574                 /* we are already disconnecting */
575                 break;
576         }
577 }
578
579 u64 RemoteClient::uptime() const
580 {
581         return porting::getTimeS() - m_connection_time;
582 }
583
584 ClientInterface::ClientInterface(const std::shared_ptr<con::Connection> & con)
585 :
586         m_con(con),
587         m_env(NULL),
588         m_print_info_timer(0.0)
589 {
590
591 }
592 ClientInterface::~ClientInterface()
593 {
594         /*
595                 Delete clients
596         */
597         {
598                 MutexAutoLock clientslock(m_clients_mutex);
599
600                 for (auto &client_it : m_clients) {
601                         // Delete client
602                         delete client_it.second;
603                 }
604         }
605 }
606
607 std::vector<u16> ClientInterface::getClientIDs(ClientState min_state)
608 {
609         std::vector<u16> reply;
610         MutexAutoLock clientslock(m_clients_mutex);
611
612         for (const auto &m_client : m_clients) {
613                 if (m_client.second->getState() >= min_state)
614                         reply.push_back(m_client.second->peer_id);
615         }
616
617         return reply;
618 }
619
620 /**
621  * Verify if user limit was reached.
622  * User limit count all clients from HelloSent state (MT protocol user) to Active state
623  * @return true if user limit was reached
624  */
625 bool ClientInterface::isUserLimitReached()
626 {
627         return getClientIDs(CS_HelloSent).size() >= g_settings->getU16("max_users");
628 }
629
630 void ClientInterface::step(float dtime)
631 {
632         m_print_info_timer += dtime;
633         if(m_print_info_timer >= 30.0)
634         {
635                 m_print_info_timer = 0.0;
636                 UpdatePlayerList();
637         }
638 }
639
640 void ClientInterface::UpdatePlayerList()
641 {
642         if (m_env) {
643                 std::vector<u16> clients = getClientIDs();
644                 m_clients_names.clear();
645
646
647                 if(!clients.empty())
648                         infostream<<"Players:"<<std::endl;
649
650                 for (u16 i : clients) {
651                         RemotePlayer *player = m_env->getPlayer(i);
652
653                         if (player == NULL)
654                                 continue;
655
656                         infostream << "* " << player->getName() << "\t";
657
658                         {
659                                 MutexAutoLock clientslock(m_clients_mutex);
660                                 RemoteClient* client = lockedGetClientNoEx(i);
661                                 if (client)
662                                         client->PrintInfo(infostream);
663                         }
664
665                         m_clients_names.emplace_back(player->getName());
666                 }
667         }
668 }
669
670 void ClientInterface::send(u16 peer_id, u8 channelnum,
671                 NetworkPacket* pkt, bool reliable)
672 {
673         m_con->Send(peer_id, channelnum, pkt, reliable);
674 }
675
676 void ClientInterface::sendToAll(NetworkPacket *pkt)
677 {
678         MutexAutoLock clientslock(m_clients_mutex);
679         for (auto &client_it : m_clients) {
680                 RemoteClient *client = client_it.second;
681
682                 if (client->net_proto_version != 0) {
683                         m_con->Send(client->peer_id,
684                                         clientCommandFactoryTable[pkt->getCommand()].channel, pkt,
685                                         clientCommandFactoryTable[pkt->getCommand()].reliable);
686                 }
687         }
688 }
689
690 void ClientInterface::sendToAllCompat(NetworkPacket *pkt, NetworkPacket *legacypkt,
691                 u16 min_proto_ver)
692 {
693         MutexAutoLock clientslock(m_clients_mutex);
694         for (auto &client_it : m_clients) {
695                 RemoteClient *client = client_it.second;
696                 NetworkPacket *pkt_to_send = nullptr;
697
698                 if (client->net_proto_version >= min_proto_ver) {
699                         pkt_to_send = pkt;
700                 } else if (client->net_proto_version != 0) {
701                         pkt_to_send = legacypkt;
702                 } else {
703                         warningstream << "Client with unhandled version to handle: '"
704                                 << client->net_proto_version << "'";
705                         continue;
706                 }
707
708                 m_con->Send(client->peer_id,
709                         clientCommandFactoryTable[pkt_to_send->getCommand()].channel,
710                         pkt_to_send,
711                         clientCommandFactoryTable[pkt_to_send->getCommand()].reliable);
712         }
713 }
714
715 RemoteClient* ClientInterface::getClientNoEx(u16 peer_id, ClientState state_min)
716 {
717         MutexAutoLock clientslock(m_clients_mutex);
718         RemoteClientMap::const_iterator n = m_clients.find(peer_id);
719         // The client may not exist; clients are immediately removed if their
720         // access is denied, and this event occurs later then.
721         if (n == m_clients.end())
722                 return NULL;
723
724         if (n->second->getState() >= state_min)
725                 return n->second;
726
727         return NULL;
728 }
729
730 RemoteClient* ClientInterface::lockedGetClientNoEx(u16 peer_id, ClientState state_min)
731 {
732         RemoteClientMap::const_iterator n = m_clients.find(peer_id);
733         // The client may not exist; clients are immediately removed if their
734         // access is denied, and this event occurs later then.
735         if (n == m_clients.end())
736                 return NULL;
737
738         if (n->second->getState() >= state_min)
739                 return n->second;
740
741         return NULL;
742 }
743
744 ClientState ClientInterface::getClientState(u16 peer_id)
745 {
746         MutexAutoLock clientslock(m_clients_mutex);
747         RemoteClientMap::const_iterator n = m_clients.find(peer_id);
748         // The client may not exist; clients are immediately removed if their
749         // access is denied, and this event occurs later then.
750         if (n == m_clients.end())
751                 return CS_Invalid;
752
753         return n->second->getState();
754 }
755
756 void ClientInterface::setPlayerName(u16 peer_id,std::string name)
757 {
758         MutexAutoLock clientslock(m_clients_mutex);
759         RemoteClientMap::iterator n = m_clients.find(peer_id);
760         // The client may not exist; clients are immediately removed if their
761         // access is denied, and this event occurs later then.
762         if (n != m_clients.end())
763                 n->second->setName(name);
764 }
765
766 void ClientInterface::DeleteClient(u16 peer_id)
767 {
768         MutexAutoLock conlock(m_clients_mutex);
769
770         // Error check
771         RemoteClientMap::iterator n = m_clients.find(peer_id);
772         // The client may not exist; clients are immediately removed if their
773         // access is denied, and this event occurs later then.
774         if (n == m_clients.end())
775                 return;
776
777         /*
778                 Mark objects to be not known by the client
779         */
780         //TODO this should be done by client destructor!!!
781         RemoteClient *client = n->second;
782         // Handle objects
783         for (u16 id : client->m_known_objects) {
784                 // Get object
785                 ServerActiveObject* obj = m_env->getActiveObject(id);
786
787                 if(obj && obj->m_known_by_count > 0)
788                         obj->m_known_by_count--;
789         }
790
791         // Delete client
792         delete m_clients[peer_id];
793         m_clients.erase(peer_id);
794 }
795
796 void ClientInterface::CreateClient(u16 peer_id)
797 {
798         MutexAutoLock conlock(m_clients_mutex);
799
800         // Error check
801         RemoteClientMap::iterator n = m_clients.find(peer_id);
802         // The client shouldn't already exist
803         if (n != m_clients.end()) return;
804
805         // Create client
806         RemoteClient *client = new RemoteClient();
807         client->peer_id = peer_id;
808         m_clients[client->peer_id] = client;
809 }
810
811 void ClientInterface::event(u16 peer_id, ClientStateEvent event)
812 {
813         {
814                 MutexAutoLock clientlock(m_clients_mutex);
815
816                 // Error check
817                 RemoteClientMap::iterator n = m_clients.find(peer_id);
818
819                 // No client to deliver event
820                 if (n == m_clients.end())
821                         return;
822                 n->second->notifyEvent(event);
823         }
824
825         if ((event == CSE_SetClientReady) ||
826                 (event == CSE_Disconnect)     ||
827                 (event == CSE_SetDenied))
828         {
829                 UpdatePlayerList();
830         }
831 }
832
833 u16 ClientInterface::getProtocolVersion(u16 peer_id)
834 {
835         MutexAutoLock conlock(m_clients_mutex);
836
837         // Error check
838         RemoteClientMap::iterator n = m_clients.find(peer_id);
839
840         // No client to get version
841         if (n == m_clients.end())
842                 return 0;
843
844         return n->second->net_proto_version;
845 }
846
847 void ClientInterface::setClientVersion(u16 peer_id, u8 major, u8 minor, u8 patch, std::string full)
848 {
849         MutexAutoLock conlock(m_clients_mutex);
850
851         // Error check
852         RemoteClientMap::iterator n = m_clients.find(peer_id);
853
854         // No client to set versions
855         if (n == m_clients.end())
856                 return;
857
858         n->second->setVersionInfo(major,minor,patch,full);
859 }