]> git.lizzy.rs Git - minetest.git/blob - src/server.h
Dungeongen: Fix out-of-voxelmanip access segfault
[minetest.git] / src / server.h
1 /*
2 Minetest
3 Copyright (C) 2010-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 #ifndef SERVER_HEADER
21 #define SERVER_HEADER
22
23 #include "network/connection.h"
24 #include "irr_v3d.h"
25 #include "map.h"
26 #include "hud.h"
27 #include "gamedef.h"
28 #include "serialization.h" // For SER_FMT_VER_INVALID
29 #include "mods.h"
30 #include "inventorymanager.h"
31 #include "subgame.h"
32 #include "tileanimation.h" // struct TileAnimationParams
33 #include "util/numeric.h"
34 #include "util/thread.h"
35 #include "util/basic_macros.h"
36 #include "serverenvironment.h"
37 #include "chat_interface.h"
38 #include "clientiface.h"
39 #include "remoteplayer.h"
40 #include "network/networkpacket.h"
41 #include <string>
42 #include <list>
43 #include <map>
44 #include <vector>
45
46 class IWritableItemDefManager;
47 class IWritableNodeDefManager;
48 class IWritableCraftDefManager;
49 class BanManager;
50 class EventManager;
51 class Inventory;
52 class PlayerSAO;
53 class IRollbackManager;
54 struct RollbackAction;
55 class EmergeManager;
56 class GameScripting;
57 class ServerEnvironment;
58 struct SimpleSoundSpec;
59 class ServerThread;
60
61 enum ClientDeletionReason {
62         CDR_LEAVE,
63         CDR_TIMEOUT,
64         CDR_DENY
65 };
66
67 class MapEditEventAreaIgnorer
68 {
69 public:
70         MapEditEventAreaIgnorer(VoxelArea *ignorevariable, const VoxelArea &a):
71                 m_ignorevariable(ignorevariable)
72         {
73                 if(m_ignorevariable->getVolume() == 0)
74                         *m_ignorevariable = a;
75                 else
76                         m_ignorevariable = NULL;
77         }
78
79         ~MapEditEventAreaIgnorer()
80         {
81                 if(m_ignorevariable)
82                 {
83                         assert(m_ignorevariable->getVolume() != 0);
84                         *m_ignorevariable = VoxelArea();
85                 }
86         }
87
88 private:
89         VoxelArea *m_ignorevariable;
90 };
91
92 struct MediaInfo
93 {
94         std::string path;
95         std::string sha1_digest;
96
97         MediaInfo(const std::string &path_="",
98                   const std::string &sha1_digest_=""):
99                 path(path_),
100                 sha1_digest(sha1_digest_)
101         {
102         }
103 };
104
105 struct ServerSoundParams
106 {
107         float gain;
108         std::string to_player;
109         enum Type{
110                 SSP_LOCAL=0,
111                 SSP_POSITIONAL=1,
112                 SSP_OBJECT=2
113         } type;
114         v3f pos;
115         u16 object;
116         float max_hear_distance;
117         bool loop;
118
119         ServerSoundParams():
120                 gain(1.0),
121                 to_player(""),
122                 type(SSP_LOCAL),
123                 pos(0,0,0),
124                 object(0),
125                 max_hear_distance(32*BS),
126                 loop(false)
127         {}
128
129         v3f getPos(ServerEnvironment *env, bool *pos_exists) const;
130 };
131
132 struct ServerPlayingSound
133 {
134         ServerSoundParams params;
135         UNORDERED_SET<u16> clients; // peer ids
136 };
137
138 class Server : public con::PeerHandler, public MapEventReceiver,
139                 public InventoryManager, public IGameDef
140 {
141 public:
142         /*
143                 NOTE: Every public method should be thread-safe
144         */
145
146         Server(
147                 const std::string &path_world,
148                 const SubgameSpec &gamespec,
149                 bool simple_singleplayer_mode,
150                 bool ipv6,
151                 ChatInterface *iface = NULL
152         );
153         ~Server();
154         void start(Address bind_addr);
155         void stop();
156         // This is mainly a way to pass the time to the server.
157         // Actual processing is done in an another thread.
158         void step(float dtime);
159         // This is run by ServerThread and does the actual processing
160         void AsyncRunStep(bool initial_step=false);
161         void Receive();
162         PlayerSAO* StageTwoClientInit(u16 peer_id);
163
164         /*
165          * Command Handlers
166          */
167
168         void handleCommand(NetworkPacket* pkt);
169
170         void handleCommand_Null(NetworkPacket* pkt) {};
171         void handleCommand_Deprecated(NetworkPacket* pkt);
172         void handleCommand_Init(NetworkPacket* pkt);
173         void handleCommand_Init_Legacy(NetworkPacket* pkt);
174         void handleCommand_Init2(NetworkPacket* pkt);
175         void handleCommand_RequestMedia(NetworkPacket* pkt);
176         void handleCommand_ReceivedMedia(NetworkPacket* pkt);
177         void handleCommand_ClientReady(NetworkPacket* pkt);
178         void handleCommand_GotBlocks(NetworkPacket* pkt);
179         void handleCommand_PlayerPos(NetworkPacket* pkt);
180         void handleCommand_DeletedBlocks(NetworkPacket* pkt);
181         void handleCommand_InventoryAction(NetworkPacket* pkt);
182         void handleCommand_ChatMessage(NetworkPacket* pkt);
183         void handleCommand_Damage(NetworkPacket* pkt);
184         void handleCommand_Password(NetworkPacket* pkt);
185         void handleCommand_PlayerItem(NetworkPacket* pkt);
186         void handleCommand_Respawn(NetworkPacket* pkt);
187         void handleCommand_Interact(NetworkPacket* pkt);
188         void handleCommand_RemovedSounds(NetworkPacket* pkt);
189         void handleCommand_NodeMetaFields(NetworkPacket* pkt);
190         void handleCommand_InventoryFields(NetworkPacket* pkt);
191         void handleCommand_FirstSrp(NetworkPacket* pkt);
192         void handleCommand_SrpBytesA(NetworkPacket* pkt);
193         void handleCommand_SrpBytesM(NetworkPacket* pkt);
194
195         void ProcessData(NetworkPacket *pkt);
196
197         void Send(NetworkPacket* pkt);
198
199         // Helper for handleCommand_PlayerPos and handleCommand_Interact
200         void process_PlayerPos(RemotePlayer *player, PlayerSAO *playersao,
201                 NetworkPacket *pkt);
202
203         // Both setter and getter need no envlock,
204         // can be called freely from threads
205         void setTimeOfDay(u32 time);
206
207         /*
208                 Shall be called with the environment locked.
209                 This is accessed by the map, which is inside the environment,
210                 so it shouldn't be a problem.
211         */
212         void onMapEditEvent(MapEditEvent *event);
213
214         /*
215                 Shall be called with the environment and the connection locked.
216         */
217         Inventory* getInventory(const InventoryLocation &loc);
218         void setInventoryModified(const InventoryLocation &loc, bool playerSend = true);
219
220         // Connection must be locked when called
221         std::wstring getStatusString();
222         inline double getUptime() const { return m_uptime.m_value; }
223
224         // read shutdown state
225         inline bool getShutdownRequested() const { return m_shutdown_requested; }
226
227         // request server to shutdown
228         void requestShutdown(const std::string &msg, bool reconnect)
229         {
230                 m_shutdown_requested = true;
231                 m_shutdown_msg = msg;
232                 m_shutdown_ask_reconnect = reconnect;
233         }
234
235         // Returns -1 if failed, sound handle on success
236         // Envlock
237         s32 playSound(const SimpleSoundSpec &spec, const ServerSoundParams &params);
238         void stopSound(s32 handle);
239
240         // Envlock
241         std::set<std::string> getPlayerEffectivePrivs(const std::string &name);
242         bool checkPriv(const std::string &name, const std::string &priv);
243         void reportPrivsModified(const std::string &name=""); // ""=all
244         void reportInventoryFormspecModified(const std::string &name);
245
246         void setIpBanned(const std::string &ip, const std::string &name);
247         void unsetIpBanned(const std::string &ip_or_name);
248         std::string getBanDescription(const std::string &ip_or_name);
249
250         void notifyPlayer(const char *name, const std::wstring &msg);
251         void notifyPlayers(const std::wstring &msg);
252         void spawnParticle(const std::string &playername,
253                 v3f pos, v3f velocity, v3f acceleration,
254                 float expirationtime, float size,
255                 bool collisiondetection, bool collision_removal,
256                 bool vertical, const std::string &texture,
257                 const struct TileAnimationParams &animation, u8 glow);
258
259         u32 addParticleSpawner(u16 amount, float spawntime,
260                 v3f minpos, v3f maxpos,
261                 v3f minvel, v3f maxvel,
262                 v3f minacc, v3f maxacc,
263                 float minexptime, float maxexptime,
264                 float minsize, float maxsize,
265                 bool collisiondetection, bool collision_removal,
266                 ServerActiveObject *attached,
267                 bool vertical, const std::string &texture,
268                 const std::string &playername, const struct TileAnimationParams &animation,
269                 u8 glow);
270
271         void deleteParticleSpawner(const std::string &playername, u32 id);
272
273         // Creates or resets inventory
274         Inventory* createDetachedInventory(const std::string &name, const std::string &player="");
275
276         // Envlock and conlock should be locked when using scriptapi
277         GameScripting *getScriptIface(){ return m_script; }
278
279         // actions: time-reversed list
280         // Return value: success/failure
281         bool rollbackRevertActions(const std::list<RollbackAction> &actions,
282                         std::list<std::string> *log);
283
284         // IGameDef interface
285         // Under envlock
286         virtual IItemDefManager* getItemDefManager();
287         virtual INodeDefManager* getNodeDefManager();
288         virtual ICraftDefManager* getCraftDefManager();
289         virtual u16 allocateUnknownNodeId(const std::string &name);
290         virtual MtEventManager* getEventManager();
291         IRollbackManager *getRollbackManager() { return m_rollback; }
292         virtual EmergeManager *getEmergeManager() { return m_emerge; }
293
294         IWritableItemDefManager* getWritableItemDefManager();
295         IWritableNodeDefManager* getWritableNodeDefManager();
296         IWritableCraftDefManager* getWritableCraftDefManager();
297
298         const std::vector<ModSpec> &getMods() const { return m_mods; }
299         const ModSpec* getModSpec(const std::string &modname) const;
300         void getModNames(std::vector<std::string> &modlist);
301         std::string getBuiltinLuaPath();
302         inline std::string getWorldPath() const { return m_path_world; }
303
304         inline bool isSingleplayer()
305                         { return m_simple_singleplayer_mode; }
306
307         inline void setAsyncFatalError(const std::string &error)
308                         { m_async_fatal_error.set(error); }
309
310         bool showFormspec(const char *name, const std::string &formspec, const std::string &formname);
311         Map & getMap() { return m_env->getMap(); }
312         ServerEnvironment & getEnv() { return *m_env; }
313
314         u32 hudAdd(RemotePlayer *player, HudElement *element);
315         bool hudRemove(RemotePlayer *player, u32 id);
316         bool hudChange(RemotePlayer *player, u32 id, HudElementStat stat, void *value);
317         bool hudSetFlags(RemotePlayer *player, u32 flags, u32 mask);
318         bool hudSetHotbarItemcount(RemotePlayer *player, s32 hotbar_itemcount);
319         s32 hudGetHotbarItemcount(RemotePlayer *player) const
320                         { return player->getHotbarItemcount(); }
321         void hudSetHotbarImage(RemotePlayer *player, std::string name);
322         std::string hudGetHotbarImage(RemotePlayer *player);
323         void hudSetHotbarSelectedImage(RemotePlayer *player, std::string name);
324         const std::string &hudGetHotbarSelectedImage(RemotePlayer *player) const
325         {
326                 return player->getHotbarSelectedImage();
327         }
328
329         inline Address getPeerAddress(u16 peer_id)
330                         { return m_con.GetPeerAddress(peer_id); }
331
332         bool setLocalPlayerAnimations(RemotePlayer *player, v2s32 animation_frames[4],
333                         f32 frame_speed);
334         bool setPlayerEyeOffset(RemotePlayer *player, v3f first, v3f third);
335
336         bool setSky(RemotePlayer *player, const video::SColor &bgcolor,
337                         const std::string &type, const std::vector<std::string> &params);
338
339         bool overrideDayNightRatio(RemotePlayer *player, bool do_override, float brightness);
340
341         /* con::PeerHandler implementation. */
342         void peerAdded(con::Peer *peer);
343         void deletingPeer(con::Peer *peer, bool timeout);
344
345         void DenySudoAccess(u16 peer_id);
346         void DenyAccessVerCompliant(u16 peer_id, u16 proto_ver, AccessDeniedCode reason,
347                 const std::string &str_reason = "", bool reconnect = false);
348         void DenyAccess(u16 peer_id, AccessDeniedCode reason, const std::string &custom_reason="");
349         void acceptAuth(u16 peer_id, bool forSudoMode);
350         void DenyAccess_Legacy(u16 peer_id, const std::wstring &reason);
351         bool getClientConInfo(u16 peer_id, con::rtt_stat_type type,float* retval);
352         bool getClientInfo(u16 peer_id,ClientState* state, u32* uptime,
353                         u8* ser_vers, u16* prot_vers, u8* major, u8* minor, u8* patch,
354                         std::string* vers_string);
355
356         void printToConsoleOnly(const std::string &text);
357
358         void SendPlayerHPOrDie(PlayerSAO *player);
359         void SendPlayerBreath(PlayerSAO *sao);
360         void SendInventory(PlayerSAO* playerSAO);
361         void SendMovePlayer(u16 peer_id);
362
363         // Bind address
364         Address m_bind_addr;
365
366         // Environment mutex (envlock)
367         Mutex m_env_mutex;
368
369 private:
370
371         friend class EmergeThread;
372         friend class RemoteClient;
373
374         void SendMovement(u16 peer_id);
375         void SendHP(u16 peer_id, u8 hp);
376         void SendBreath(u16 peer_id, u16 breath);
377         void SendAccessDenied(u16 peer_id, AccessDeniedCode reason,
378                 const std::string &custom_reason, bool reconnect = false);
379         void SendAccessDenied_Legacy(u16 peer_id, const std::wstring &reason);
380         void SendDeathscreen(u16 peer_id,bool set_camera_point_target, v3f camera_point_target);
381         void SendItemDef(u16 peer_id,IItemDefManager *itemdef, u16 protocol_version);
382         void SendNodeDef(u16 peer_id,INodeDefManager *nodedef, u16 protocol_version);
383
384         /* mark blocks not sent for all clients */
385         void SetBlocksNotSent(std::map<v3s16, MapBlock *>& block);
386
387
388         void SendChatMessage(u16 peer_id, const std::wstring &message);
389         void SendTimeOfDay(u16 peer_id, u16 time, f32 time_speed);
390         void SendPlayerHP(u16 peer_id);
391
392         void SendLocalPlayerAnimations(u16 peer_id, v2s32 animation_frames[4], f32 animation_speed);
393         void SendEyeOffset(u16 peer_id, v3f first, v3f third);
394         void SendPlayerPrivileges(u16 peer_id);
395         void SendPlayerInventoryFormspec(u16 peer_id);
396         void SendShowFormspecMessage(u16 peer_id, const std::string &formspec, const std::string &formname);
397         void SendHUDAdd(u16 peer_id, u32 id, HudElement *form);
398         void SendHUDRemove(u16 peer_id, u32 id);
399         void SendHUDChange(u16 peer_id, u32 id, HudElementStat stat, void *value);
400         void SendHUDSetFlags(u16 peer_id, u32 flags, u32 mask);
401         void SendHUDSetParam(u16 peer_id, u16 param, const std::string &value);
402         void SendSetSky(u16 peer_id, const video::SColor &bgcolor,
403                         const std::string &type, const std::vector<std::string> &params);
404         void SendOverrideDayNightRatio(u16 peer_id, bool do_override, float ratio);
405
406         /*
407                 Send a node removal/addition event to all clients except ignore_id.
408                 Additionally, if far_players!=NULL, players further away than
409                 far_d_nodes are ignored and their peer_ids are added to far_players
410         */
411         // Envlock and conlock should be locked when calling these
412         void sendRemoveNode(v3s16 p, u16 ignore_id=0,
413                         std::vector<u16> *far_players=NULL, float far_d_nodes=100);
414         void sendAddNode(v3s16 p, MapNode n, u16 ignore_id=0,
415                         std::vector<u16> *far_players=NULL, float far_d_nodes=100,
416                         bool remove_metadata=true);
417         void setBlockNotSent(v3s16 p);
418
419         // Environment and Connection must be locked when called
420         void SendBlockNoLock(u16 peer_id, MapBlock *block, u8 ver, u16 net_proto_version);
421
422         // Sends blocks to clients (locks env and con on its own)
423         void SendBlocks(float dtime);
424
425         void fillMediaCache();
426         void sendMediaAnnouncement(u16 peer_id);
427         void sendRequestedMedia(u16 peer_id,
428                         const std::vector<std::string> &tosend);
429
430         void sendDetachedInventory(const std::string &name, u16 peer_id);
431         void sendDetachedInventories(u16 peer_id);
432
433         // Adds a ParticleSpawner on peer with peer_id (PEER_ID_INEXISTENT == all)
434         void SendAddParticleSpawner(u16 peer_id, u16 protocol_version,
435                 u16 amount, float spawntime,
436                 v3f minpos, v3f maxpos,
437                 v3f minvel, v3f maxvel,
438                 v3f minacc, v3f maxacc,
439                 float minexptime, float maxexptime,
440                 float minsize, float maxsize,
441                 bool collisiondetection, bool collision_removal,
442                 u16 attached_id,
443                 bool vertical, const std::string &texture, u32 id,
444                 const struct TileAnimationParams &animation, u8 glow);
445
446         void SendDeleteParticleSpawner(u16 peer_id, u32 id);
447
448         // Spawns particle on peer with peer_id (PEER_ID_INEXISTENT == all)
449         void SendSpawnParticle(u16 peer_id, u16 protocol_version,
450                 v3f pos, v3f velocity, v3f acceleration,
451                 float expirationtime, float size,
452                 bool collisiondetection, bool collision_removal,
453                 bool vertical, const std::string &texture,
454                 const struct TileAnimationParams &animation, u8 glow);
455
456         u32 SendActiveObjectRemoveAdd(u16 peer_id, const std::string &datas);
457         void SendActiveObjectMessages(u16 peer_id, const std::string &datas, bool reliable = true);
458         /*
459                 Something random
460         */
461
462         void DiePlayer(u16 peer_id);
463         void RespawnPlayer(u16 peer_id);
464         void DeleteClient(u16 peer_id, ClientDeletionReason reason);
465         void UpdateCrafting(RemotePlayer *player);
466
467         void handleChatInterfaceEvent(ChatEvent *evt);
468
469         // This returns the answer to the sender of wmessage, or "" if there is none
470         std::wstring handleChat(const std::string &name, const std::wstring &wname,
471                 const std::wstring &wmessage,
472                 bool check_shout_priv = false,
473                 RemotePlayer *player = NULL);
474         void handleAdminChat(const ChatEventChat *evt);
475
476         v3f findSpawnPos();
477
478         // When called, connection mutex should be locked
479         RemoteClient* getClient(u16 peer_id,ClientState state_min=CS_Active);
480         RemoteClient* getClientNoEx(u16 peer_id,ClientState state_min=CS_Active);
481
482         // When called, environment mutex should be locked
483         std::string getPlayerName(u16 peer_id);
484         PlayerSAO* getPlayerSAO(u16 peer_id);
485
486         /*
487                 Get a player from memory or creates one.
488                 If player is already connected, return NULL
489                 Does not verify/modify auth info and password.
490
491                 Call with env and con locked.
492         */
493         PlayerSAO *emergePlayer(const char *name, u16 peer_id, u16 proto_version);
494
495         void handlePeerChanges();
496
497         /*
498                 Variables
499         */
500
501         // World directory
502         std::string m_path_world;
503         // Subgame specification
504         SubgameSpec m_gamespec;
505         // If true, do not allow multiple players and hide some multiplayer
506         // functionality
507         bool m_simple_singleplayer_mode;
508         u16 m_max_chatmessage_length;
509
510         // Thread can set; step() will throw as ServerError
511         MutexedVariable<std::string> m_async_fatal_error;
512
513         // Some timers
514         float m_liquid_transform_timer;
515         float m_liquid_transform_every;
516         float m_masterserver_timer;
517         float m_emergethread_trigger_timer;
518         float m_savemap_timer;
519         IntervalLimiter m_map_timer_and_unload_interval;
520
521         // Environment
522         ServerEnvironment *m_env;
523
524         // server connection
525         con::Connection m_con;
526
527         // Ban checking
528         BanManager *m_banmanager;
529
530         // Rollback manager (behind m_env_mutex)
531         IRollbackManager *m_rollback;
532         bool m_enable_rollback_recording; // Updated once in a while
533
534         // Emerge manager
535         EmergeManager *m_emerge;
536
537         // Scripting
538         // Envlock and conlock should be locked when using Lua
539         GameScripting *m_script;
540
541         // Item definition manager
542         IWritableItemDefManager *m_itemdef;
543
544         // Node definition manager
545         IWritableNodeDefManager *m_nodedef;
546
547         // Craft definition manager
548         IWritableCraftDefManager *m_craftdef;
549
550         // Event manager
551         EventManager *m_event;
552
553         // Mods
554         std::vector<ModSpec> m_mods;
555
556         /*
557                 Threads
558         */
559
560         // A buffer for time steps
561         // step() increments and AsyncRunStep() run by m_thread reads it.
562         float m_step_dtime;
563         Mutex m_step_dtime_mutex;
564
565         // current server step lag counter
566         float m_lag;
567
568         // The server mainly operates in this thread
569         ServerThread *m_thread;
570
571         /*
572                 Time related stuff
573         */
574
575         // Timer for sending time of day over network
576         float m_time_of_day_send_timer;
577         // Uptime of server in seconds
578         MutexedVariable<double> m_uptime;
579
580         /*
581          Client interface
582          */
583         ClientInterface m_clients;
584
585         /*
586                 Peer change queue.
587                 Queues stuff from peerAdded() and deletingPeer() to
588                 handlePeerChanges()
589         */
590         std::queue<con::PeerChange> m_peer_change_queue;
591
592         /*
593                 Random stuff
594         */
595
596         bool m_shutdown_requested;
597         std::string m_shutdown_msg;
598         bool m_shutdown_ask_reconnect;
599
600         ChatInterface *m_admin_chat;
601         std::string m_admin_nick;
602
603         /*
604                 Map edit event queue. Automatically receives all map edits.
605                 The constructor of this class registers us to receive them through
606                 onMapEditEvent
607
608                 NOTE: Should these be moved to actually be members of
609                 ServerEnvironment?
610         */
611
612         /*
613                 Queue of map edits from the environment for sending to the clients
614                 This is behind m_env_mutex
615         */
616         std::queue<MapEditEvent*> m_unsent_map_edit_queue;
617         /*
618                 Set to true when the server itself is modifying the map and does
619                 all sending of information by itself.
620                 This is behind m_env_mutex
621         */
622         bool m_ignore_map_edit_events;
623         /*
624                 If a non-empty area, map edit events contained within are left
625                 unsent. Done at map generation time to speed up editing of the
626                 generated area, as it will be sent anyway.
627                 This is behind m_env_mutex
628         */
629         VoxelArea m_ignore_map_edit_events_area;
630         /*
631                 If set to !=0, the incoming MapEditEvents are modified to have
632                 this peed id as the disabled recipient
633                 This is behind m_env_mutex
634         */
635         u16 m_ignore_map_edit_events_peer_id;
636
637         // media files known to server
638         UNORDERED_MAP<std::string, MediaInfo> m_media;
639
640         /*
641                 Sounds
642         */
643         UNORDERED_MAP<s32, ServerPlayingSound> m_playing_sounds;
644         s32 m_next_sound_id;
645
646         /*
647                 Detached inventories (behind m_env_mutex)
648         */
649         // key = name
650         std::map<std::string, Inventory*> m_detached_inventories;
651         // value = "" (visible to all players) or player name
652         std::map<std::string, std::string> m_detached_inventories_player;
653
654         DISABLE_CLASS_COPY(Server);
655 };
656
657 /*
658         Runs a simple dedicated server loop.
659
660         Shuts down when kill is set to true.
661 */
662 void dedicated_server_loop(Server &server, bool &kill);
663
664 #endif
665