Ignore:
Timestamp:
Apr 18, 2015, 4:27:57 PM (10 years ago)
Author:
alloc
Message:

Binary improvements

Location:
binary-improvements/MapRendering/Commands
Files:
1 added
2 edited

Legend:

Unmodified
Added
Removed
  • binary-improvements/MapRendering/Commands/EnableRendering.cs

    r224 r230  
    44namespace AllocsFixes.CustomCommands
    55{
    6         public class EnableRendering : ConsoleCommand
     6        public class EnableRendering : ConsoleCmdAbstract
    77        {
    8                 public EnableRendering (ConsoleSdtd cons) : base(cons)
    9                 {
    10                 }
    11 
    12                 public override string Description ()
     8                public override string GetDescription ()
    139                {
    1410                        return "enable/disable live map rendering";
    1511                }
    1612
    17                 public override string[] Names ()
     13                public override string[] GetCommands ()
    1814                {
    19                         return new string[] { "enablerendering", string.Empty };
     15                        return new string[] { "enablerendering" };
    2016                }
    2117
    22                 public override void Run (string[] _params)
     18                public override void Execute (List<string> _params, CommandSenderInfo _senderInfo)
    2319                {
    2420                        try {
    25                                 if (_params.Length != 1) {
    26                                         m_Console.SendResult ("Current state: " + AllocsFixes.MapRendering.MapRendering.renderingEnabled);
     21                                if (_params.Count != 1) {
     22                                        SdtdConsole.Instance.Output ("Current state: " + AllocsFixes.MapRendering.MapRendering.renderingEnabled);
    2723                                        return;
    2824                                }
    2925
    3026                                AllocsFixes.MapRendering.MapRendering.renderingEnabled = _params[0].Equals("1");
    31                                 m_Console.SendResult ("Set live map rendering to " + _params [0].Equals ("1"));
     27                                SdtdConsole.Instance.Output ("Set live map rendering to " + _params [0].Equals ("1"));
    3228                        } catch (Exception e) {
    3329                                Log.Out ("Error in EnableRendering.Run: " + e);
  • binary-improvements/MapRendering/Commands/RenderMap.cs

    r224 r230  
    66namespace AllocsFixes.CustomCommands
    77{
    8         public class RenderMap : ConsoleCommand
     8        public class RenderMap : ConsoleCmdAbstract
    99        {
    10                 public RenderMap (ConsoleSdtd cons) : base(cons)
    11                 {
    12                 }
    13 
    14                 public override string Description ()
     10                public override string GetDescription ()
    1511                {
    1612                        return "render the current map to a file";
    1713                }
    1814
    19                 public override string[] Names ()
     15                public override string[] GetCommands ()
    2016                {
    21                         return new string[] { "rendermap", "rm" };
     17                        return new string[] { "rendermap" };
    2218                }
    2319
    24                 public override void Run (string[] _params)
     20                public override void Execute (List<string> _params, CommandSenderInfo _senderInfo)
    2521                {
    2622                        try {
    2723                                AllocsFixes.MapRendering.MapRendering.Instance.RenderFullMap ();
    2824
    29                                 m_Console.SendResult ("Render map done");
     25                                SdtdConsole.Instance.Output ("Render map done");
    3026                        } catch (Exception e) {
    3127                                Log.Out ("Error in RenderMap.Run: " + e);
Note: See TracChangeset for help on using the changeset viewer.