Ignore:
Timestamp:
Sep 4, 2018, 1:00:48 PM (6 years ago)
Author:
alloc
Message:

Code style cleanup (mostly whitespace changes, enforcing braces, using cleanup)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • binary-improvements/AllocsCommands/Commands/ListKnownPlayers.cs

    r284 r325  
    1 using AllocsFixes.PersistentData;
    21using System;
    32using System.Collections.Generic;
     3using AllocsFixes.PersistentData;
    44
    5 namespace AllocsFixes.CustomCommands
    6 {
    7         public class ListKnownPlayers : ConsoleCmdAbstract
    8         {
    9                 public override string GetDescription ()
    10                 {
     5namespace AllocsFixes.CustomCommands {
     6        public class ListKnownPlayers : ConsoleCmdAbstract {
     7                public override string GetDescription () {
    118                        return "lists all players that were ever online";
    129                }
     
    1411                public override string GetHelp () {
    1512                        return "Usage:\n" +
    16                                    "  1. listknownplayers\n" +
    17                                    "  2. listknownplayers -online\n" +
    18                                    "  3. listknownplayers -notbanned\n" +
    19                                    "  4. listknownplayers <player name / steamid>\n" +
    20                                    "1. Lists all players that have ever been online\n" +
    21                                    "2. Lists only the players that are currently online\n" +
    22                                    "3. Lists only the players that are not banned\n" +
    23                                    "4. Lists all players whose name contains the given string or matches the given SteamID";
     13                               "  1. listknownplayers\n" +
     14                               "  2. listknownplayers -online\n" +
     15                               "  3. listknownplayers -notbanned\n" +
     16                               "  4. listknownplayers <player name / steamid>\n" +
     17                               "1. Lists all players that have ever been online\n" +
     18                               "2. Lists only the players that are currently online\n" +
     19                               "3. Lists only the players that are not banned\n" +
     20                               "4. Lists all players whose name contains the given string or matches the given SteamID";
    2421                }
    2522
    26                 public override string[] GetCommands ()
    27                 {
    28                         return new string[] { "listknownplayers", "lkp" };
     23                public override string[] GetCommands () {
     24                        return new[] {"listknownplayers", "lkp"};
    2925                }
    3026
    31                 public override void Execute (List<string> _params, CommandSenderInfo _senderInfo)
    32                 {
     27                public override void Execute (List<string> _params, CommandSenderInfo _senderInfo) {
    3328                        try {
    3429                                AdminTools admTools = GameManager.Instance.adminTools;
     
    5651
    5752                                        if (p != null) {
    58                                                 SdtdConsole.Instance.Output (String.Format ("{0}. {1}, id={2}, steamid={3}, online={4}, ip={5}, playtime={6} m, seen={7}",
     53                                                SdtdConsole.Instance.Output (string.Format (
     54                                                        "{0}. {1}, id={2}, steamid={3}, online={4}, ip={5}, playtime={6} m, seen={7}",
    5955                                                        0, p.Name, p.EntityID, nameFilter, p.IsOnline, p.IP,
    6056                                                        p.TotalPlayTime / 60,
     
    6258                                                );
    6359                                        } else {
    64                                                 SdtdConsole.Instance.Output (String.Format ("SteamID {0} unknown!", nameFilter));
     60                                                SdtdConsole.Instance.Output (string.Format ("SteamID {0} unknown!", nameFilter));
    6561                                        }
    6662                                } else {
     
    7470                                                        && (nameFilter.Length == 0 || p.Name.ToLower ().Contains (nameFilter))
    7571                                                ) {
    76                                                         SdtdConsole.Instance.Output (String.Format ("{0}. {1}, id={2}, steamid={3}, online={4}, ip={5}, playtime={6} m, seen={7}",
    77                                                                                             ++num, p.Name, p.EntityID, sid, p.IsOnline, p.IP,
    78                                                                                             p.TotalPlayTime / 60,
    79                                                                                             p.LastOnline.ToString ("yyyy-MM-dd HH:mm"))
     72                                                        SdtdConsole.Instance.Output (string.Format (
     73                                                                "{0}. {1}, id={2}, steamid={3}, online={4}, ip={5}, playtime={6} m, seen={7}",
     74                                                                ++num, p.Name, p.EntityID, sid, p.IsOnline, p.IP,
     75                                                                p.TotalPlayTime / 60,
     76                                                                p.LastOnline.ToString ("yyyy-MM-dd HH:mm"))
    8077                                                        );
    8178                                                }
    8279                                        }
     80
    8381                                        SdtdConsole.Instance.Output ("Total of " + PersistentContainer.Instance.Players.Count + " known");
    8482                                }
Note: See TracChangeset for help on using the changeset viewer.