private void InitializeCMD() { #region Map _cmdList["map"] = (string[] args) => { if (args?.Length >= 1 && args[0] != "?") { switch (args[0]) { case "reload": if (args.Length >= 3) { switch (args[1]) { case "objects": int id; if (int.TryParse(args[2], out id)) { var maps = _maps.Where(x => x.Map.ID == id).ToArray(); if (maps.Length > 0) { foreach (var item in maps) { item.Objects.Reload(); } } else { Console.WriteLine($"Error: can't find maps with id {id}"); } } else { Console.WriteLine("Using: map reload objects mapID"); } break; default: Console.WriteLine("Using: map reload objects mapID"); break; } } else { Console.WriteLine("Using: map reload objects mapID"); } break; } } else { Console.WriteLine("Using: map reload args"); } }; #endregion #region User _cmdList["user"] = (string[] args) => { if (args?.Length >= 1 && args[0] != "?") { switch (args[0]) { case "create": byte access = 1; if (args.Length < 3 || (args.Length > 3 && !byte.TryParse(args[3], out access))) { Console.WriteLine("Using: user create login password <access>"); } else if (!ServerDB.CreateUser(args[1], args[2], access)) { Console.WriteLine($"Error: can't create user {args[1]}:{args[2]}"); } else { Console.WriteLine($"Created user {args[1]}"); } break; case "info": int id = -1; DB_User user; if (args.Length < 2 || (args.Length > 1 && !int.TryParse(args[1], out id))) { Console.WriteLine("Using: user info id"); } else if (!ServerDB.SelectUser(id, out user)) { Console.WriteLine($"Error: can't load user {id}"); } else { Console.WriteLine($"User {id}, {user.Name} access {user.Access}, {(user.SID == null ? "offline" : (_master?.IsOnline(id) ?? false ? "online" : "offline/undefined"))}"); } break; default: Console.WriteLine("Using: user info|create args"); break; } } else { Console.WriteLine("Using: user info|create args"); } }; #endregion #region Data _cmdList["data"] = (string[] args) => { if (args?.Length >= 1 && args[0] != "?") { if (_master != null) { switch (args[0]) { case "create": if (args.Length >= 2) { ushort level, dialog, movement; byte flags, index; int id; switch (args[1]) { case "npc": if (args.Length == 8 && ushort.TryParse(args[2], out level) && byte.TryParse(args[3], out flags) && ushort.TryParse(args[4], out dialog) && byte.TryParse(args[5], out index) && ushort.TryParse(args[6], out movement)) { try { if (ServerDB.CreateNPC(level, flags, dialog, index, movement, args[7].ToPonyData(), out id)) { Console.WriteLine($"new NPC id {id} created!"); } else { Console.WriteLine($"Error: can't create new npc"); } } catch { Console.WriteLine($"Error: bad ponycode"); } } else { Console.WriteLine("Using: data create npc level flags dialogID dialogIndex movementID ponycode"); } break; default: Console.WriteLine("Using: data create npc args"); break; } } else { Console.WriteLine("Using: data create npc args"); } break; } } else { Console.WriteLine("Error: can't find master server in this instance"); } } else { Console.WriteLine("Using: data create args"); } }; #endregion #region Payer _cmdList["player"] = (string[] args) => { if (args?.Length >= 1 && args[0] != "?") { if (_master != null) { ushort id; switch (args[0]) { case "items": if (args.Length >= 2) { switch (args[1]) { case "clear": if (args.Length >= 3 && ushort.TryParse(args[2], out id)) { var pClass = _master[id]; if (pClass != null && pClass.OnMap) { pClass.Object.Player.Items.RemoveAllItems(); } else { Console.WriteLine($"Error: can't find player {id}"); } } else { Console.WriteLine("Using: player items clear playerID"); } break; case "print": if (args.Length >= 3 && ushort.TryParse(args[2], out id)) { var pClass = _master[id]; if (pClass != null && pClass.OnMap) { foreach (var item in pClass.Char.Data.Items) { Console.WriteLine($"{item.Key:X4}[{item.Value.Item.Id:X8}:{item.Value.Amount:X8}]"); } } else { Console.WriteLine($"Error: can't find player {id}"); } } else { Console.WriteLine("Using: player items print playerID"); } break; default: Console.WriteLine("Using: player items clear|print args"); break; } } else { Console.WriteLine("Using: player items clear|print args"); } break; case "dialogs": if (args.Length >= 2) { switch (args[1]) { case "clear": if (args.Length >= 3 && ushort.TryParse(args[2], out id)) { var pClass = _master[id]; if (pClass != null && pClass.OnMap) { pClass.Char.Data.Dialogs.Clear(); } else { Console.WriteLine($"Error: can't find player {id}"); } } else { Console.WriteLine("Using: player dialogs clear playerID"); } break; case "print": if (args.Length >= 3 && ushort.TryParse(args[2], out id)) { var pClass = _master[id]; if (pClass != null && pClass.OnMap) { foreach (var item in pClass.Char.Data.Dialogs) { Console.WriteLine($"{item.Key:X8}:{item.Value:X4}"); } } else { Console.WriteLine($"Error: can't find player {id}"); } } else { Console.WriteLine("Using: player dialogs print playerID"); } break; default: Console.WriteLine("Using: player dialogs clear|print args"); break; } } else { Console.WriteLine("Using: player dialogs clear|print args"); } break; case "kill": if (args.Length >= 1 && ushort.TryParse(args[1], out id)) { var pClass = _master[id]; if (pClass != null && pClass.OnMap) { (pClass.RoomPlayer as MapPlayer).Object.Despawn(); } else { Console.WriteLine($"Error: can't find player {id}"); } } else { Console.WriteLine("Using: player kill playerID"); } break; default: Console.WriteLine("Using: player kill|dialogs|items args"); break; } } else { Console.WriteLine("Error: can't find master server in this instance"); } } else { Console.WriteLine("Using: player kill|dialogs|items args"); } }; #endregion #region Status _cmdList["status"] = (string[] args) => { if (args?.Length >= 1 && args[0] != "?") { switch (args[0]) { case "servers": if (_master != null) { Console.WriteLine(_master.Status); } if (_characters != null) { Console.WriteLine(_characters.Status); } foreach (var item in _maps) { Console.WriteLine(item.Status); } break; case "player": ushort player; if (args.Length >= 2 && ushort.TryParse(args[1], out player)) { if (_master != null) { var pClass = _master[player]; if (pClass != null && pClass.RoomPlayer != null) { Console.WriteLine(pClass.RoomPlayer.Status); } else { Console.WriteLine($"Error: can't determine status for {player}"); } } else { Console.WriteLine("Error: can't find master server in this instance"); } } else { Console.WriteLine("Using: status player id"); } break; default: Console.WriteLine("Using: status servers|player args"); break; } } else { Console.WriteLine("Using: status servers|player args"); } }; #endregion #region Object _cmdList["object"] = (string[] args) => { if (args?.Length >= 1 && args[0] != "?") { if (_master != null) { switch (args[0]) { case "create": if (args.Length >= 3 && args[1] == "at") { ushort id, guid; byte type, flags; float time; int objectID, data01, data02, data03; switch (args[2]) { case "player": if (args.Length >= 9 && ushort.TryParse(args[3], out id) && ushort.TryParse(args[4], out guid) && int.TryParse(args[5], out objectID) && byte.TryParse(args[6], out type) && byte.TryParse(args[7], out flags) && float.TryParse(args[8], out time)) { var pClass = _master[id]; if (pClass != null && pClass.OnMap) { if (args.Length < 10 || !int.TryParse(args[09], out data01)) { data01 = -1; } if (args.Length < 11 || !int.TryParse(args[10], out data02)) { data02 = -1; } if (args.Length < 12 || !int.TryParse(args[11], out data03)) { data03 = -1; } if (ServerDB.CreateObjectAt(pClass.Object, pClass.User.Map, guid, objectID, type, flags, time, data01, data02, data03)) { Console.WriteLine($"Object [{guid}:{objectID}] created at map {pClass.User.Map} pos {pClass.Object.Position}"); } else { Console.WriteLine($"Error: can't create object [{guid}:{objectID}]"); } } else { Console.WriteLine($"Error: can't determine position for {id}"); } } else { Console.WriteLine("Using: object create at player playerID guid objectID type flags time dataArgs"); } break; default: Console.WriteLine("Using: object create at player args"); break; } } else { Console.WriteLine("Using: object create at player args"); } break; } } else { Console.WriteLine("Error: can't find master server in this instance"); } } else { Console.WriteLine("Using: object create args"); } }; #endregion #region Restart _cmdList["restart"] = (string[] args) => { if (args?.Length >= 1 && args[0] != "?") { switch (args[0]) { case "all": foreach (var item in _maps) { item.Restart(); } _characters?.Restart(); _master?.Restart(); break; case "maps": foreach (var item in _maps) { item.Restart(); } break; } } else { Console.WriteLine("Using: restart all|maps"); } }; #endregion #region Small CMD _cmdList["exit"] = (string[] args) => { IsRunning = false; }; _cmdList["clear"] = (string[] args) => { Console.Clear(); }; _cmdList["help"] = (string[] args) => { Console.WriteLine("Available commands:"); foreach (var item in _cmdList.Keys) { Console.WriteLine(item); } }; #endregion }