]> git.lizzy.rs Git - minetest.git/blob - src/server.h
Make m_media_fetch_threads to contain MediaFetchThread* instead of MediaFetchThread
[minetest.git] / src / server.h
1 /*
2 Minetest-c55
3 Copyright (C) 2010-2011 celeron55, Perttu Ahola <celeron55@gmail.com>
4
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU 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 #ifndef SERVER_HEADER
21 #define SERVER_HEADER
22
23 #include "connection.h"
24 #include "environment.h"
25 #include "irrlichttypes_bloated.h"
26 #include <string>
27 #include "porting.h"
28 #include "map.h"
29 #include "inventory.h"
30 #include "ban.h"
31 #include "gamedef.h"
32 #include "serialization.h" // For SER_FMT_VER_INVALID
33 #include "mods.h"
34 #include "inventorymanager.h"
35 #include "subgame.h"
36 #include "sound.h"
37 #include "util/thread.h"
38 #include "util/string.h"
39 #include "rollback_interface.h" // Needed for rollbackRevertActions()
40 #include <list> // Needed for rollbackRevertActions()
41
42 struct LuaState;
43 typedef struct lua_State lua_State;
44 class IWritableItemDefManager;
45 class IWritableNodeDefManager;
46 class IWritableCraftDefManager;
47 class EventManager;
48 class PlayerSAO;
49 class IRollbackManager;
50
51 class ServerError : public std::exception
52 {
53 public:
54         ServerError(const std::string &s)
55         {
56                 m_s = "ServerError: ";
57                 m_s += s;
58         }
59         virtual ~ServerError() throw()
60         {}
61         virtual const char * what() const throw()
62         {
63                 return m_s.c_str();
64         }
65         std::string m_s;
66 };
67
68 /*
69         Some random functions
70 */
71 v3f findSpawnPos(ServerMap &map);
72
73 /*
74         A structure containing the data needed for queueing the fetching
75         of blocks.
76 */
77 struct QueuedBlockEmerge
78 {
79         v3s16 pos;
80         // key = peer_id, value = flags
81         core::map<u16, u8> peer_ids;
82 };
83
84 /*
85         This is a thread-safe class.
86 */
87 class BlockEmergeQueue
88 {
89 public:
90         BlockEmergeQueue()
91         {
92                 m_mutex.Init();
93         }
94
95         ~BlockEmergeQueue()
96         {
97                 JMutexAutoLock lock(m_mutex);
98
99                 core::list<QueuedBlockEmerge*>::Iterator i;
100                 for(i=m_queue.begin(); i!=m_queue.end(); i++)
101                 {
102                         QueuedBlockEmerge *q = *i;
103                         delete q;
104                 }
105         }
106         
107         /*
108                 peer_id=0 adds with nobody to send to
109         */
110         void addBlock(u16 peer_id, v3s16 pos, u8 flags)
111         {
112                 DSTACK(__FUNCTION_NAME);
113         
114                 JMutexAutoLock lock(m_mutex);
115
116                 if(peer_id != 0)
117                 {
118                         /*
119                                 Find if block is already in queue.
120                                 If it is, update the peer to it and quit.
121                         */
122                         core::list<QueuedBlockEmerge*>::Iterator i;
123                         for(i=m_queue.begin(); i!=m_queue.end(); i++)
124                         {
125                                 QueuedBlockEmerge *q = *i;
126                                 if(q->pos == pos)
127                                 {
128                                         q->peer_ids[peer_id] = flags;
129                                         return;
130                                 }
131                         }
132                 }
133                 
134                 /*
135                         Add the block
136                 */
137                 QueuedBlockEmerge *q = new QueuedBlockEmerge;
138                 q->pos = pos;
139                 if(peer_id != 0)
140                         q->peer_ids[peer_id] = flags;
141                 m_queue.push_back(q);
142         }
143
144         // Returned pointer must be deleted
145         // Returns NULL if queue is empty
146         QueuedBlockEmerge * pop()
147         {
148                 JMutexAutoLock lock(m_mutex);
149
150                 core::list<QueuedBlockEmerge*>::Iterator i = m_queue.begin();
151                 if(i == m_queue.end())
152                         return NULL;
153                 QueuedBlockEmerge *q = *i;
154                 m_queue.erase(i);
155                 return q;
156         }
157
158         u32 size()
159         {
160                 JMutexAutoLock lock(m_mutex);
161                 return m_queue.size();
162         }
163         
164         u32 peerItemCount(u16 peer_id)
165         {
166                 JMutexAutoLock lock(m_mutex);
167
168                 u32 count = 0;
169
170                 core::list<QueuedBlockEmerge*>::Iterator i;
171                 for(i=m_queue.begin(); i!=m_queue.end(); i++)
172                 {
173                         QueuedBlockEmerge *q = *i;
174                         if(q->peer_ids.find(peer_id) != NULL)
175                                 count++;
176                 }
177
178                 return count;
179         }
180
181 private:
182         core::list<QueuedBlockEmerge*> m_queue;
183         JMutex m_mutex;
184 };
185
186 class Server;
187
188 class ServerThread : public SimpleThread
189 {
190         Server *m_server;
191
192 public:
193
194         ServerThread(Server *server):
195                 SimpleThread(),
196                 m_server(server)
197         {
198         }
199
200         void * Thread();
201 };
202
203 class EmergeThread : public SimpleThread
204 {
205         Server *m_server;
206
207 public:
208
209         EmergeThread(Server *server):
210                 SimpleThread(),
211                 m_server(server)
212         {
213         }
214
215         void * Thread();
216
217         void trigger()
218         {
219                 setRun(true);
220                 if(IsRunning() == false)
221                 {
222                         Start();
223                 }
224         }
225 };
226
227 struct PlayerInfo
228 {
229         u16 id;
230         char name[PLAYERNAME_SIZE];
231         v3f position;
232         Address address;
233         float avg_rtt;
234
235         PlayerInfo();
236         void PrintLine(std::ostream *s);
237 };
238
239 /*
240         Used for queueing and sorting block transfers in containers
241         
242         Lower priority number means higher priority.
243 */
244 struct PrioritySortedBlockTransfer
245 {
246         PrioritySortedBlockTransfer(float a_priority, v3s16 a_pos, u16 a_peer_id)
247         {
248                 priority = a_priority;
249                 pos = a_pos;
250                 peer_id = a_peer_id;
251         }
252         bool operator < (PrioritySortedBlockTransfer &other)
253         {
254                 return priority < other.priority;
255         }
256         float priority;
257         v3s16 pos;
258         u16 peer_id;
259 };
260
261 struct MediaRequest
262 {
263         std::string name;
264
265         MediaRequest(const std::string &name_=""):
266                 name(name_)
267         {}
268 };
269
270 struct MediaInfo
271 {
272         std::string path;
273         std::string sha1_digest;
274
275         MediaInfo(const std::string path_="",
276                         const std::string sha1_digest_=""):
277                 path(path_),
278                 sha1_digest(sha1_digest_)
279         {
280         }
281 };
282
283 struct ServerSoundParams
284 {
285         float gain;
286         std::string to_player;
287         enum Type{
288                 SSP_LOCAL=0,
289                 SSP_POSITIONAL=1,
290                 SSP_OBJECT=2
291         } type;
292         v3f pos;
293         u16 object;
294         float max_hear_distance;
295         bool loop;
296
297         ServerSoundParams():
298                 gain(1.0),
299                 to_player(""),
300                 type(SSP_LOCAL),
301                 pos(0,0,0),
302                 object(0),
303                 max_hear_distance(32*BS),
304                 loop(false)
305         {}
306         
307         v3f getPos(ServerEnvironment *env, bool *pos_exists) const;
308 };
309
310 struct ServerPlayingSound
311 {
312         ServerSoundParams params;
313         std::set<u16> clients; // peer ids
314 };
315
316 class RemoteClient
317 {
318 public:
319         // peer_id=0 means this client has no associated peer
320         // NOTE: If client is made allowed to exist while peer doesn't,
321         //       this has to be set to 0 when there is no peer.
322         //       Also, the client must be moved to some other container.
323         u16 peer_id;
324         // The serialization version to use with the client
325         u8 serialization_version;
326         //
327         u16 net_proto_version;
328         // Version is stored in here after INIT before INIT2
329         u8 pending_serialization_version;
330
331         bool definitions_sent;
332
333         RemoteClient():
334                 m_time_from_building(9999),
335                 m_excess_gotblocks(0)
336         {
337                 peer_id = 0;
338                 serialization_version = SER_FMT_VER_INVALID;
339                 net_proto_version = 0;
340                 pending_serialization_version = SER_FMT_VER_INVALID;
341                 definitions_sent = false;
342                 m_nearest_unsent_d = 0;
343                 m_nearest_unsent_reset_timer = 0.0;
344                 m_nothing_to_send_counter = 0;
345                 m_nothing_to_send_pause_timer = 0;
346         }
347         ~RemoteClient()
348         {
349         }
350         
351         /*
352                 Finds block that should be sent next to the client.
353                 Environment should be locked when this is called.
354                 dtime is used for resetting send radius at slow interval
355         */
356         void GetNextBlocks(Server *server, float dtime,
357                         core::array<PrioritySortedBlockTransfer> &dest);
358
359         void GotBlock(v3s16 p);
360
361         void SentBlock(v3s16 p);
362
363         void SetBlockNotSent(v3s16 p);
364         void SetBlocksNotSent(core::map<v3s16, MapBlock*> &blocks);
365
366         s32 SendingCount()
367         {
368                 return m_blocks_sending.size();
369         }
370         
371         // Increments timeouts and removes timed-out blocks from list
372         // NOTE: This doesn't fix the server-not-sending-block bug
373         //       because it is related to emerging, not sending.
374         //void RunSendingTimeouts(float dtime, float timeout);
375
376         void PrintInfo(std::ostream &o)
377         {
378                 o<<"RemoteClient "<<peer_id<<": "
379                                 <<"m_blocks_sent.size()="<<m_blocks_sent.size()
380                                 <<", m_blocks_sending.size()="<<m_blocks_sending.size()
381                                 <<", m_nearest_unsent_d="<<m_nearest_unsent_d
382                                 <<", m_excess_gotblocks="<<m_excess_gotblocks
383                                 <<std::endl;
384                 m_excess_gotblocks = 0;
385         }
386
387         // Time from last placing or removing blocks
388         float m_time_from_building;
389         
390         /*JMutex m_dig_mutex;
391         float m_dig_time_remaining;
392         // -1 = not digging
393         s16 m_dig_tool_item;
394         v3s16 m_dig_position;*/
395         
396         /*
397                 List of active objects that the client knows of.
398                 Value is dummy.
399         */
400         core::map<u16, bool> m_known_objects;
401
402 private:
403         /*
404                 Blocks that have been sent to client.
405                 - These don't have to be sent again.
406                 - A block is cleared from here when client says it has
407                   deleted it from it's memory
408                 
409                 Key is position, value is dummy.
410                 No MapBlock* is stored here because the blocks can get deleted.
411         */
412         core::map<v3s16, bool> m_blocks_sent;
413         s16 m_nearest_unsent_d;
414         v3s16 m_last_center;
415         float m_nearest_unsent_reset_timer;
416         
417         /*
418                 Blocks that are currently on the line.
419                 This is used for throttling the sending of blocks.
420                 - The size of this list is limited to some value
421                 Block is added when it is sent with BLOCKDATA.
422                 Block is removed when GOTBLOCKS is received.
423                 Value is time from sending. (not used at the moment)
424         */
425         core::map<v3s16, float> m_blocks_sending;
426
427         /*
428                 Count of excess GotBlocks().
429                 There is an excess amount because the client sometimes
430                 gets a block so late that the server sends it again,
431                 and the client then sends two GOTBLOCKs.
432                 This is resetted by PrintInfo()
433         */
434         u32 m_excess_gotblocks;
435         
436         // CPU usage optimization
437         u32 m_nothing_to_send_counter;
438         float m_nothing_to_send_pause_timer;
439 };
440
441 class Server : public con::PeerHandler, public MapEventReceiver,
442                 public InventoryManager, public IGameDef,
443                 public IBackgroundBlockEmerger
444 {
445 public:
446         /*
447                 NOTE: Every public method should be thread-safe
448         */
449         
450         Server(
451                 const std::string &path_world,
452                 const std::string &path_config,
453                 const SubgameSpec &gamespec,
454                 bool simple_singleplayer_mode
455         );
456         ~Server();
457         void start(unsigned short port);
458         void stop();
459         // This is mainly a way to pass the time to the server.
460         // Actual processing is done in an another thread.
461         void step(float dtime);
462         // This is run by ServerThread and does the actual processing
463         void AsyncRunStep();
464         void Receive();
465         void ProcessData(u8 *data, u32 datasize, u16 peer_id);
466
467         core::list<PlayerInfo> getPlayerInfo();
468
469         // Environment must be locked when called
470         void setTimeOfDay(u32 time)
471         {
472                 m_env->setTimeOfDay(time);
473                 m_time_of_day_send_timer = 0;
474         }
475
476         bool getShutdownRequested()
477         {
478                 return m_shutdown_requested;
479         }
480         
481         /*
482                 Shall be called with the environment locked.
483                 This is accessed by the map, which is inside the environment,
484                 so it shouldn't be a problem.
485         */
486         void onMapEditEvent(MapEditEvent *event);
487
488         /*
489                 Shall be called with the environment and the connection locked.
490         */
491         Inventory* getInventory(const InventoryLocation &loc);
492         void setInventoryModified(const InventoryLocation &loc);
493
494         // Connection must be locked when called
495         std::wstring getStatusString();
496
497         void requestShutdown(void)
498         {
499                 m_shutdown_requested = true;
500         }
501
502         // Returns -1 if failed, sound handle on success
503         // Envlock + conlock
504         s32 playSound(const SimpleSoundSpec &spec, const ServerSoundParams &params);
505         void stopSound(s32 handle);
506         
507         // Envlock + conlock
508         std::set<std::string> getPlayerEffectivePrivs(const std::string &name);
509         bool checkPriv(const std::string &name, const std::string &priv);
510         void reportPrivsModified(const std::string &name=""); // ""=all
511         void reportInventoryFormspecModified(const std::string &name);
512
513         // Saves g_settings to configpath given at initialization
514         void saveConfig();
515
516         void setIpBanned(const std::string &ip, const std::string &name)
517         {
518                 m_banmanager.add(ip, name);
519                 return;
520         }
521
522         void unsetIpBanned(const std::string &ip_or_name)
523         {
524                 m_banmanager.remove(ip_or_name);
525                 return;
526         }
527
528         std::string getBanDescription(const std::string &ip_or_name)
529         {
530                 return m_banmanager.getBanDescription(ip_or_name);
531         }
532
533         Address getPeerAddress(u16 peer_id)
534         {
535                 return m_con.GetPeerAddress(peer_id);
536         }
537         
538         // Envlock and conlock should be locked when calling this
539         void notifyPlayer(const char *name, const std::wstring msg);
540         void notifyPlayers(const std::wstring msg);
541
542         void queueBlockEmerge(v3s16 blockpos, bool allow_generate);
543         
544         // Creates or resets inventory
545         Inventory* createDetachedInventory(const std::string &name);
546         
547         // Envlock and conlock should be locked when using Lua
548         lua_State *getLua(){ return m_lua; }
549
550         // Envlock should be locked when using the rollback manager
551         IRollbackManager *getRollbackManager(){ return m_rollback; }
552         // actions: time-reversed list
553         // Return value: success/failure
554         bool rollbackRevertActions(const std::list<RollbackAction> &actions,
555                         std::list<std::string> *log);
556         
557         // IGameDef interface
558         // Under envlock
559         virtual IItemDefManager* getItemDefManager();
560         virtual INodeDefManager* getNodeDefManager();
561         virtual ICraftDefManager* getCraftDefManager();
562         virtual ITextureSource* getTextureSource();
563         virtual IShaderSource* getShaderSource();
564         virtual u16 allocateUnknownNodeId(const std::string &name);
565         virtual ISoundManager* getSoundManager();
566         virtual MtEventManager* getEventManager();
567         virtual IRollbackReportSink* getRollbackReportSink();
568         
569         IWritableItemDefManager* getWritableItemDefManager();
570         IWritableNodeDefManager* getWritableNodeDefManager();
571         IWritableCraftDefManager* getWritableCraftDefManager();
572
573         const ModSpec* getModSpec(const std::string &modname);
574         void getModNames(core::list<std::string> &modlist);
575         std::string getBuiltinLuaPath();
576         
577         std::string getWorldPath(){ return m_path_world; }
578
579         bool isSingleplayer(){ return m_simple_singleplayer_mode; }
580
581         void setAsyncFatalError(const std::string &error)
582         {
583                 m_async_fatal_error.set(error);
584         }
585
586 private:
587
588         // con::PeerHandler implementation.
589         // These queue stuff to be processed by handlePeerChanges().
590         // As of now, these create and remove clients and players.
591         void peerAdded(con::Peer *peer);
592         void deletingPeer(con::Peer *peer, bool timeout);
593         
594         /*
595                 Static send methods
596         */
597         
598         static void SendHP(con::Connection &con, u16 peer_id, u8 hp);
599         static void SendAccessDenied(con::Connection &con, u16 peer_id,
600                         const std::wstring &reason);
601         static void SendDeathscreen(con::Connection &con, u16 peer_id,
602                         bool set_camera_point_target, v3f camera_point_target);
603         static void SendItemDef(con::Connection &con, u16 peer_id,
604                         IItemDefManager *itemdef);
605         static void SendNodeDef(con::Connection &con, u16 peer_id,
606                         INodeDefManager *nodedef, u16 protocol_version);
607         
608         /*
609                 Non-static send methods.
610                 Conlock should be always used.
611                 Envlock usage is documented badly but it's easy to figure out
612                 which ones access the environment.
613         */
614
615         // Envlock and conlock should be locked when calling these
616         void SendInventory(u16 peer_id);
617         void SendChatMessage(u16 peer_id, const std::wstring &message);
618         void BroadcastChatMessage(const std::wstring &message);
619         void SendPlayerHP(u16 peer_id);
620         void SendMovePlayer(u16 peer_id);
621         void SendPlayerPrivileges(u16 peer_id);
622         void SendPlayerInventoryFormspec(u16 peer_id);
623         /*
624                 Send a node removal/addition event to all clients except ignore_id.
625                 Additionally, if far_players!=NULL, players further away than
626                 far_d_nodes are ignored and their peer_ids are added to far_players
627         */
628         // Envlock and conlock should be locked when calling these
629         void sendRemoveNode(v3s16 p, u16 ignore_id=0,
630                         core::list<u16> *far_players=NULL, float far_d_nodes=100);
631         void sendAddNode(v3s16 p, MapNode n, u16 ignore_id=0,
632                         core::list<u16> *far_players=NULL, float far_d_nodes=100);
633         void setBlockNotSent(v3s16 p);
634         
635         // Environment and Connection must be locked when called
636         void SendBlockNoLock(u16 peer_id, MapBlock *block, u8 ver);
637         
638         // Sends blocks to clients (locks env and con on its own)
639         void SendBlocks(float dtime);
640         
641         void fillMediaCache();
642         void sendMediaAnnouncement(u16 peer_id);
643         void sendRequestedMedia(u16 peer_id,
644                         const core::list<MediaRequest> &tosend);
645         
646         void sendDetachedInventory(const std::string &name, u16 peer_id);
647         void sendDetachedInventoryToAll(const std::string &name);
648         void sendDetachedInventories(u16 peer_id);
649
650         /*
651                 Something random
652         */
653         
654         void DiePlayer(u16 peer_id);
655         void RespawnPlayer(u16 peer_id);
656         
657         void UpdateCrafting(u16 peer_id);
658         
659         // When called, connection mutex should be locked
660         RemoteClient* getClient(u16 peer_id);
661         
662         // When called, environment mutex should be locked
663         std::string getPlayerName(u16 peer_id)
664         {
665                 Player *player = m_env->getPlayer(peer_id);
666                 if(player == NULL)
667                         return "[id="+itos(peer_id)+"]";
668                 return player->getName();
669         }
670
671         // When called, environment mutex should be locked
672         PlayerSAO* getPlayerSAO(u16 peer_id)
673         {
674                 Player *player = m_env->getPlayer(peer_id);
675                 if(player == NULL)
676                         return NULL;
677                 return player->getPlayerSAO();
678         }
679
680         /*
681                 Get a player from memory or creates one.
682                 If player is already connected, return NULL
683                 Does not verify/modify auth info and password.
684
685                 Call with env and con locked.
686         */
687         PlayerSAO *emergePlayer(const char *name, u16 peer_id);
688         
689         // Locks environment and connection by its own
690         struct PeerChange;
691         void handlePeerChange(PeerChange &c);
692         void handlePeerChanges();
693
694         /*
695                 Variables
696         */
697         
698         // World directory
699         std::string m_path_world;
700         // Path to user's configuration file ("" = no configuration file)
701         std::string m_path_config;
702         // Subgame specification
703         SubgameSpec m_gamespec;
704         // If true, do not allow multiple players and hide some multiplayer
705         // functionality
706         bool m_simple_singleplayer_mode;
707
708         // Thread can set; step() will throw as ServerError
709         MutexedVariable<std::string> m_async_fatal_error;
710         
711         // Some timers
712         float m_liquid_transform_timer;
713         float m_print_info_timer;
714         float m_objectdata_timer;
715         float m_emergethread_trigger_timer;
716         float m_savemap_timer;
717         IntervalLimiter m_map_timer_and_unload_interval;
718         
719         // NOTE: If connection and environment are both to be locked,
720         // environment shall be locked first.
721
722         // Environment
723         ServerEnvironment *m_env;
724         JMutex m_env_mutex;
725         
726         // Connection
727         con::Connection m_con;
728         JMutex m_con_mutex;
729         // Connected clients (behind the con mutex)
730         core::map<u16, RemoteClient*> m_clients;
731
732         // Bann checking
733         BanManager m_banmanager;
734
735         // Rollback manager (behind m_env_mutex)
736         IRollbackManager *m_rollback;
737         bool m_rollback_sink_enabled;
738         bool m_enable_rollback_recording; // Updated once in a while
739
740         // Scripting
741         // Envlock and conlock should be locked when using Lua
742         lua_State *m_lua;
743
744         // Item definition manager
745         IWritableItemDefManager *m_itemdef;
746         
747         // Node definition manager
748         IWritableNodeDefManager *m_nodedef;
749         
750         // Craft definition manager
751         IWritableCraftDefManager *m_craftdef;
752         
753         // Event manager
754         EventManager *m_event;
755         
756         // Mods
757         core::list<ModSpec> m_mods;
758         
759         /*
760                 Threads
761         */
762         
763         // A buffer for time steps
764         // step() increments and AsyncRunStep() run by m_thread reads it.
765         float m_step_dtime;
766         JMutex m_step_dtime_mutex;
767
768         // The server mainly operates in this thread
769         ServerThread m_thread;
770         // This thread fetches and generates map
771         EmergeThread m_emergethread;
772         // Queue of block coordinates to be processed by the emerge thread
773         BlockEmergeQueue m_emerge_queue;
774         
775         /*
776                 Time related stuff
777         */
778
779         // Timer for sending time of day over network
780         float m_time_of_day_send_timer;
781         // Uptime of server in seconds
782         MutexedVariable<double> m_uptime;
783         
784         /*
785                 Peer change queue.
786                 Queues stuff from peerAdded() and deletingPeer() to
787                 handlePeerChanges()
788         */
789         enum PeerChangeType
790         {
791                 PEER_ADDED,
792                 PEER_REMOVED
793         };
794         struct PeerChange
795         {
796                 PeerChangeType type;
797                 u16 peer_id;
798                 bool timeout;
799         };
800         Queue<PeerChange> m_peer_change_queue;
801
802         /*
803                 Random stuff
804         */
805         
806         // Mod parent directory paths
807         core::list<std::string> m_modspaths;
808
809         bool m_shutdown_requested;
810
811         /*
812                 Map edit event queue. Automatically receives all map edits.
813                 The constructor of this class registers us to receive them through
814                 onMapEditEvent
815
816                 NOTE: Should these be moved to actually be members of
817                 ServerEnvironment?
818         */
819
820         /*
821                 Queue of map edits from the environment for sending to the clients
822                 This is behind m_env_mutex
823         */
824         Queue<MapEditEvent*> m_unsent_map_edit_queue;
825         /*
826                 Set to true when the server itself is modifying the map and does
827                 all sending of information by itself.
828                 This is behind m_env_mutex
829         */
830         bool m_ignore_map_edit_events;
831         /*
832                 If a non-empty area, map edit events contained within are left
833                 unsent. Done at map generation time to speed up editing of the
834                 generated area, as it will be sent anyway.
835                 This is behind m_env_mutex
836         */
837         VoxelArea m_ignore_map_edit_events_area;
838         /*
839                 If set to !=0, the incoming MapEditEvents are modified to have
840                 this peed id as the disabled recipient
841                 This is behind m_env_mutex
842         */
843         u16 m_ignore_map_edit_events_peer_id;
844
845         friend class EmergeThread;
846         friend class RemoteClient;
847
848         std::map<std::string,MediaInfo> m_media;
849
850         /*
851                 Sounds
852         */
853         std::map<s32, ServerPlayingSound> m_playing_sounds;
854         s32 m_next_sound_id;
855
856         /*
857                 Detached inventories (behind m_env_mutex)
858         */
859         // key = name
860         std::map<std::string, Inventory*> m_detached_inventories;
861 };
862
863 /*
864         Runs a simple dedicated server loop.
865
866         Shuts down when run is set to false.
867 */
868 void dedicated_server_loop(Server &server, bool &run);
869
870 #endif
871