From f9482906ae7ce4dfd41bb4236e094be5d4fa7689 Mon Sep 17 00:00:00 2001 From: Jesse Plamondon-Willard Date: Sun, 2 Jul 2017 01:32:07 -0400 Subject: split TrainerMod commands into separate classes (#302) --- .../Framework/Commands/ITrainerCommand.cs | 34 + .../Framework/Commands/Other/DebugCommand.cs | 33 + .../Commands/Other/ShowDataFilesCommand.cs | 26 + .../Commands/Other/ShowGameFilesCommand.cs | 26 + .../Commands/Player/AddFlooringCommand.cs | 47 ++ .../Framework/Commands/Player/AddItemCommand.cs | 68 ++ .../Framework/Commands/Player/AddRingCommand.cs | 47 ++ .../Commands/Player/AddWallpaperCommand.cs | 47 ++ .../Framework/Commands/Player/AddWeaponCommand.cs | 88 +++ .../Framework/Commands/Player/ListItemsCommand.cs | 120 +++ .../Framework/Commands/Player/SetColorCommand.cs | 79 ++ .../Framework/Commands/Player/SetHealthCommand.cs | 72 ++ .../Commands/Player/SetImmunityCommand.cs | 40 + .../Framework/Commands/Player/SetLevelCommand.cs | 73 ++ .../Commands/Player/SetMaxHealthCommand.cs | 40 + .../Commands/Player/SetMaxStaminaCommand.cs | 40 + .../Framework/Commands/Player/SetMoneyCommand.cs | 72 ++ .../Framework/Commands/Player/SetNameCommand.cs | 47 ++ .../Framework/Commands/Player/SetSpeedCommand.cs | 40 + .../Framework/Commands/Player/SetStaminaCommand.cs | 72 ++ .../Framework/Commands/Player/SetStyleCommand.cs | 102 +++ .../Framework/Commands/Saves/LoadCommand.cs | 28 + .../Framework/Commands/Saves/SaveCommand.cs | 27 + .../Framework/Commands/TrainerCommand.cs | 72 ++ .../Commands/World/DownMineLevelCommand.cs | 28 + .../Framework/Commands/World/FreezeTimeCommand.cs | 72 ++ .../Framework/Commands/World/SetDayCommand.cs | 45 ++ .../Commands/World/SetMineLevelCommand.cs | 42 + .../Framework/Commands/World/SetSeasonCommand.cs | 47 ++ .../Framework/Commands/World/SetTimeCommand.cs | 46 ++ .../Framework/Commands/World/SetYearCommand.cs | 45 ++ src/TrainerMod/Framework/ItemData/ISearchItem.cs | 21 + src/TrainerMod/Framework/ItemData/ItemType.cs | 15 + .../Framework/ItemData/SearchableObject.cs | 48 ++ .../Framework/ItemData/SearchableRing.cs | 48 ++ .../Framework/ItemData/SearchableWeapon.cs | 48 ++ src/TrainerMod/ItemData/ISearchItem.cs | 21 - src/TrainerMod/ItemData/ItemType.cs | 15 - src/TrainerMod/ItemData/SearchableObject.cs | 48 -- src/TrainerMod/ItemData/SearchableRing.cs | 48 -- src/TrainerMod/ItemData/SearchableWeapon.cs | 48 -- src/TrainerMod/TrainerMod.cs | 877 +-------------------- src/TrainerMod/TrainerMod.csproj | 41 +- 43 files changed, 1907 insertions(+), 1036 deletions(-) create mode 100644 src/TrainerMod/Framework/Commands/ITrainerCommand.cs create mode 100644 src/TrainerMod/Framework/Commands/Other/DebugCommand.cs create mode 100644 src/TrainerMod/Framework/Commands/Other/ShowDataFilesCommand.cs create mode 100644 src/TrainerMod/Framework/Commands/Other/ShowGameFilesCommand.cs create mode 100644 src/TrainerMod/Framework/Commands/Player/AddFlooringCommand.cs create mode 100644 src/TrainerMod/Framework/Commands/Player/AddItemCommand.cs create mode 100644 src/TrainerMod/Framework/Commands/Player/AddRingCommand.cs create mode 100644 src/TrainerMod/Framework/Commands/Player/AddWallpaperCommand.cs create mode 100644 src/TrainerMod/Framework/Commands/Player/AddWeaponCommand.cs create mode 100644 src/TrainerMod/Framework/Commands/Player/ListItemsCommand.cs create mode 100644 src/TrainerMod/Framework/Commands/Player/SetColorCommand.cs create mode 100644 src/TrainerMod/Framework/Commands/Player/SetHealthCommand.cs create mode 100644 src/TrainerMod/Framework/Commands/Player/SetImmunityCommand.cs create mode 100644 src/TrainerMod/Framework/Commands/Player/SetLevelCommand.cs create mode 100644 src/TrainerMod/Framework/Commands/Player/SetMaxHealthCommand.cs create mode 100644 src/TrainerMod/Framework/Commands/Player/SetMaxStaminaCommand.cs create mode 100644 src/TrainerMod/Framework/Commands/Player/SetMoneyCommand.cs create mode 100644 src/TrainerMod/Framework/Commands/Player/SetNameCommand.cs create mode 100644 src/TrainerMod/Framework/Commands/Player/SetSpeedCommand.cs create mode 100644 src/TrainerMod/Framework/Commands/Player/SetStaminaCommand.cs create mode 100644 src/TrainerMod/Framework/Commands/Player/SetStyleCommand.cs create mode 100644 src/TrainerMod/Framework/Commands/Saves/LoadCommand.cs create mode 100644 src/TrainerMod/Framework/Commands/Saves/SaveCommand.cs create mode 100644 src/TrainerMod/Framework/Commands/TrainerCommand.cs create mode 100644 src/TrainerMod/Framework/Commands/World/DownMineLevelCommand.cs create mode 100644 src/TrainerMod/Framework/Commands/World/FreezeTimeCommand.cs create mode 100644 src/TrainerMod/Framework/Commands/World/SetDayCommand.cs create mode 100644 src/TrainerMod/Framework/Commands/World/SetMineLevelCommand.cs create mode 100644 src/TrainerMod/Framework/Commands/World/SetSeasonCommand.cs create mode 100644 src/TrainerMod/Framework/Commands/World/SetTimeCommand.cs create mode 100644 src/TrainerMod/Framework/Commands/World/SetYearCommand.cs create mode 100644 src/TrainerMod/Framework/ItemData/ISearchItem.cs create mode 100644 src/TrainerMod/Framework/ItemData/ItemType.cs create mode 100644 src/TrainerMod/Framework/ItemData/SearchableObject.cs create mode 100644 src/TrainerMod/Framework/ItemData/SearchableRing.cs create mode 100644 src/TrainerMod/Framework/ItemData/SearchableWeapon.cs delete mode 100644 src/TrainerMod/ItemData/ISearchItem.cs delete mode 100644 src/TrainerMod/ItemData/ItemType.cs delete mode 100644 src/TrainerMod/ItemData/SearchableObject.cs delete mode 100644 src/TrainerMod/ItemData/SearchableRing.cs delete mode 100644 src/TrainerMod/ItemData/SearchableWeapon.cs diff --git a/src/TrainerMod/Framework/Commands/ITrainerCommand.cs b/src/TrainerMod/Framework/Commands/ITrainerCommand.cs new file mode 100644 index 00000000..55f36ceb --- /dev/null +++ b/src/TrainerMod/Framework/Commands/ITrainerCommand.cs @@ -0,0 +1,34 @@ +using StardewModdingAPI; + +namespace TrainerMod.Framework.Commands +{ + /// A TrainerMod command to register. + internal interface ITrainerCommand + { + /********* + ** Accessors + *********/ + /// The command name the user must type. + string Name { get; } + + /// The command description. + string Description { get; } + + /// Whether the command needs to perform logic when the game updates. + bool NeedsUpdate { get; } + + + /********* + ** Public methods + *********/ + /// Handle the command. + /// Writes messages to the console and log file. + /// The command name. + /// The command arguments. + void Handle(IMonitor monitor, string command, string[] args); + + /// Perform any logic needed on update tick. + /// Writes messages to the console and log file. + void Update(IMonitor monitor); + } +} diff --git a/src/TrainerMod/Framework/Commands/Other/DebugCommand.cs b/src/TrainerMod/Framework/Commands/Other/DebugCommand.cs new file mode 100644 index 00000000..ad38d1ba --- /dev/null +++ b/src/TrainerMod/Framework/Commands/Other/DebugCommand.cs @@ -0,0 +1,33 @@ +using StardewModdingAPI; +using StardewValley; + +namespace TrainerMod.Framework.Commands.Other +{ + /// A command which sends a debug command to the game. + internal class DebugCommand : TrainerCommand + { + /********* + ** Public methods + *********/ + /// Construct an instance. + public DebugCommand() + : base("debug", "Run one of the game's debug commands; for example, 'debug warp FarmHouse 1 1' warps the player to the farmhouse.") { } + + /// Handle the command. + /// Writes messages to the console and log file. + /// The command name. + /// The command arguments. + public override void Handle(IMonitor monitor, string command, string[] args) + { + // submit command + string debugCommand = string.Join(" ", args); + string oldOutput = Game1.debugOutput; + Game1.game1.parseDebugInput(debugCommand); + + // show result + monitor.Log(Game1.debugOutput != oldOutput + ? $"> {Game1.debugOutput}" + : "Sent debug command to the game, but there was no output.", LogLevel.Info); + } + } +} diff --git a/src/TrainerMod/Framework/Commands/Other/ShowDataFilesCommand.cs b/src/TrainerMod/Framework/Commands/Other/ShowDataFilesCommand.cs new file mode 100644 index 00000000..b2985bb1 --- /dev/null +++ b/src/TrainerMod/Framework/Commands/Other/ShowDataFilesCommand.cs @@ -0,0 +1,26 @@ +using System.Diagnostics; +using StardewModdingAPI; + +namespace TrainerMod.Framework.Commands.Other +{ + /// A command which shows the data files. + internal class ShowDataFilesCommand : TrainerCommand + { + /********* + ** Public methods + *********/ + /// Construct an instance. + public ShowDataFilesCommand() + : base("show_data_files", "Opens the folder containing the save and log files.") { } + + /// Handle the command. + /// Writes messages to the console and log file. + /// The command name. + /// The command arguments. + public override void Handle(IMonitor monitor, string command, string[] args) + { + Process.Start(Constants.DataPath); + monitor.Log($"OK, opening {Constants.DataPath}.", LogLevel.Info); + } + } +} diff --git a/src/TrainerMod/Framework/Commands/Other/ShowGameFilesCommand.cs b/src/TrainerMod/Framework/Commands/Other/ShowGameFilesCommand.cs new file mode 100644 index 00000000..5695ce9a --- /dev/null +++ b/src/TrainerMod/Framework/Commands/Other/ShowGameFilesCommand.cs @@ -0,0 +1,26 @@ +using System.Diagnostics; +using StardewModdingAPI; + +namespace TrainerMod.Framework.Commands.Other +{ + /// A command which shows the game files. + internal class ShowGameFilesCommand : TrainerCommand + { + /********* + ** Public methods + *********/ + /// Construct an instance. + public ShowGameFilesCommand() + : base("show_game_files", "Opens the game folder.") { } + + /// Handle the command. + /// Writes messages to the console and log file. + /// The command name. + /// The command arguments. + public override void Handle(IMonitor monitor, string command, string[] args) + { + Process.Start(Constants.ExecutionPath); + monitor.Log($"OK, opening {Constants.ExecutionPath}.", LogLevel.Info); + } + } +} diff --git a/src/TrainerMod/Framework/Commands/Player/AddFlooringCommand.cs b/src/TrainerMod/Framework/Commands/Player/AddFlooringCommand.cs new file mode 100644 index 00000000..57bd39e3 --- /dev/null +++ b/src/TrainerMod/Framework/Commands/Player/AddFlooringCommand.cs @@ -0,0 +1,47 @@ +using System.Linq; +using StardewModdingAPI; +using StardewValley; +using StardewValley.Objects; + +namespace TrainerMod.Framework.Commands.Player +{ + /// A command which adds a floor item to the player inventory. + internal class AddFlooringCommand : TrainerCommand + { + /********* + ** Public methods + *********/ + /// Construct an instance. + public AddFlooringCommand() + : base("player_addflooring", "Gives the player a flooring item.\n\nUsage: player_addflooring \n- flooring: the flooring ID (ranges from 0 to 39).") { } + + /// Handle the command. + /// Writes messages to the console and log file. + /// The command name. + /// The command arguments. + public override void Handle(IMonitor monitor, string command, string[] args) + { + // validate + if (!args.Any()) + { + this.LogArgumentsInvalid(monitor, command); + return; + } + if (!int.TryParse(args[0], out int floorID)) + { + this.LogArgumentNotInt(monitor, command); + return; + } + if (floorID < 0 || floorID > 39) + { + monitor.Log("There is no such flooring ID (must be between 0 and 39).", LogLevel.Error); + return; + } + + // handle + Wallpaper wallpaper = new Wallpaper(floorID, isFloor: true); + Game1.player.addItemByMenuIfNecessary(wallpaper); + monitor.Log($"OK, added flooring {floorID} to your inventory.", LogLevel.Info); + } + } +} diff --git a/src/TrainerMod/Framework/Commands/Player/AddItemCommand.cs b/src/TrainerMod/Framework/Commands/Player/AddItemCommand.cs new file mode 100644 index 00000000..6d3cf968 --- /dev/null +++ b/src/TrainerMod/Framework/Commands/Player/AddItemCommand.cs @@ -0,0 +1,68 @@ +using System.Linq; +using StardewModdingAPI; +using StardewValley; + +namespace TrainerMod.Framework.Commands.Player +{ + /// A command which adds an item to the player inventory. + internal class AddItemCommand : TrainerCommand + { + /********* + ** Public methods + *********/ + /// Construct an instance. + public AddItemCommand() + : base("player_additem", $"Gives the player an item.\n\nUsage: player_additem [count] [quality]\n- item: the item ID (use the 'list_items' command to see a list).\n- count (optional): how many of the item to give.\n- quality (optional): one of {Object.lowQuality} (normal), {Object.medQuality} (silver), {Object.highQuality} (gold), or {Object.bestQuality} (iridium).") { } + + /// Handle the command. + /// Writes messages to the console and log file. + /// The command name. + /// The command arguments. + public override void Handle(IMonitor monitor, string command, string[] args) + { + // validate + if (!args.Any()) + { + this.LogArgumentsInvalid(monitor, command); + return; + } + if (!int.TryParse(args[0], out int itemID)) + { + this.LogUsageError(monitor, "The item ID must be an integer.", command); + return; + } + + // parse arguments + int count = 1; + int quality = 0; + if (args.Length > 1) + { + if (!int.TryParse(args[1], out count)) + { + this.LogUsageError(monitor, "The optional count is invalid.", command); + return; + } + } + if (args.Length > 2) + { + if (!int.TryParse(args[2], out quality)) + { + this.LogUsageError(monitor, "The optional quality is invalid.", command); + return; + } + } + + // spawn item + var item = new Object(itemID, count) { quality = quality }; + if (item.Name == "Error Item") + { + monitor.Log("There is no such item ID.", LogLevel.Error); + return; + } + + // add to inventory + Game1.player.addItemByMenuIfNecessary(item); + monitor.Log($"OK, added {item.Name} to your inventory.", LogLevel.Info); + } + } +} diff --git a/src/TrainerMod/Framework/Commands/Player/AddRingCommand.cs b/src/TrainerMod/Framework/Commands/Player/AddRingCommand.cs new file mode 100644 index 00000000..d62d8b5b --- /dev/null +++ b/src/TrainerMod/Framework/Commands/Player/AddRingCommand.cs @@ -0,0 +1,47 @@ +using System.Linq; +using StardewModdingAPI; +using StardewValley; +using StardewValley.Objects; + +namespace TrainerMod.Framework.Commands.Player +{ + /// A command which adds a ring to the player inventory. + internal class AddRingCommand : TrainerCommand + { + /********* + ** Public methods + *********/ + /// Construct an instance. + public AddRingCommand() + : base("player_addring", "Gives the player a ring.\n\nUsage: player_addring \n- item: the ring ID (use the 'list_items' command to see a list).") { } + + /// Handle the command. + /// Writes messages to the console and log file. + /// The command name. + /// The command arguments. + public override void Handle(IMonitor monitor, string command, string[] args) + { + // validate + if (!args.Any()) + { + this.LogArgumentsInvalid(monitor, command); + return; + } + if (!int.TryParse(args[0], out int ringID)) + { + monitor.Log(" is invalid", LogLevel.Error); + return; + } + if (ringID < Ring.ringLowerIndexRange || ringID > Ring.ringUpperIndexRange) + { + monitor.Log($"There is no such ring ID (must be between {Ring.ringLowerIndexRange} and {Ring.ringUpperIndexRange}).", LogLevel.Error); + return; + } + + // handle + Ring ring = new Ring(ringID); + Game1.player.addItemByMenuIfNecessary(ring); + monitor.Log($"OK, added {ring.Name} to your inventory.", LogLevel.Info); + } + } +} diff --git a/src/TrainerMod/Framework/Commands/Player/AddWallpaperCommand.cs b/src/TrainerMod/Framework/Commands/Player/AddWallpaperCommand.cs new file mode 100644 index 00000000..e02b05a4 --- /dev/null +++ b/src/TrainerMod/Framework/Commands/Player/AddWallpaperCommand.cs @@ -0,0 +1,47 @@ +using System.Linq; +using StardewModdingAPI; +using StardewValley; +using StardewValley.Objects; + +namespace TrainerMod.Framework.Commands.Player +{ + /// A command which adds a wallpaper item to the player inventory. + internal class AddWallpaperCommand : TrainerCommand + { + /********* + ** Public methods + *********/ + /// Construct an instance. + public AddWallpaperCommand() + : base("player_addwallpaper", "Gives the player a wallpaper.\n\nUsage: player_addwallpaper \n- wallpaper: the wallpaper ID (ranges from 0 to 111).") { } + + /// Handle the command. + /// Writes messages to the console and log file. + /// The command name. + /// The command arguments. + public override void Handle(IMonitor monitor, string command, string[] args) + { + // validate + if (!args.Any()) + { + this.LogArgumentsInvalid(monitor, command); + return; + } + if (!int.TryParse(args[0], out int wallpaperID)) + { + this.LogArgumentNotInt(monitor, command); + return; + } + if (wallpaperID < 0 || wallpaperID > 111) + { + monitor.Log("There is no such wallpaper ID (must be between 0 and 111).", LogLevel.Error); + return; + } + + // handle + Wallpaper wallpaper = new Wallpaper(wallpaperID); + Game1.player.addItemByMenuIfNecessary(wallpaper); + monitor.Log($"OK, added wallpaper {wallpaperID} to your inventory.", LogLevel.Info); + } + } +} diff --git a/src/TrainerMod/Framework/Commands/Player/AddWeaponCommand.cs b/src/TrainerMod/Framework/Commands/Player/AddWeaponCommand.cs new file mode 100644 index 00000000..ee94093f --- /dev/null +++ b/src/TrainerMod/Framework/Commands/Player/AddWeaponCommand.cs @@ -0,0 +1,88 @@ +using System.Collections.Generic; +using System.Linq; +using StardewModdingAPI; +using StardewValley; +using StardewValley.Tools; + +namespace TrainerMod.Framework.Commands.Player +{ + /// A command which adds a weapon to the player inventory. + internal class AddWeaponCommand : TrainerCommand + { + /********* + ** Public methods + *********/ + /// Construct an instance. + public AddWeaponCommand() + : base("player_addweapon", "Gives the player a weapon.\n\nUsage: player_addweapon \n- item: the weapon ID (use the 'list_items' command to see a list).") { } + + /// Handle the command. + /// Writes messages to the console and log file. + /// The command name. + /// The command arguments. + public override void Handle(IMonitor monitor, string command, string[] args) + { + // validate + if (!args.Any()) + { + this.LogArgumentsInvalid(monitor, command); + return; + } + if (!int.TryParse(args[0], out int weaponID)) + { + this.LogUsageError(monitor, "The weapon ID must be an integer.", command); + return; + } + + // get raw weapon data + if (!Game1.content.Load>("Data\\weapons").TryGetValue(weaponID, out string data)) + { + monitor.Log("There is no such weapon ID.", LogLevel.Error); + return; + } + + // get raw weapon type + int type; + { + string[] fields = data.Split('/'); + string typeStr = fields.Length > 8 ? fields[8] : null; + if (!int.TryParse(typeStr, out type)) + { + monitor.Log("Could not parse the data for the weapon with that ID.", LogLevel.Error); + return; + } + } + + // get weapon + Tool weapon; + switch (type) + { + case MeleeWeapon.stabbingSword: + case MeleeWeapon.dagger: + case MeleeWeapon.club: + case MeleeWeapon.defenseSword: + weapon = new MeleeWeapon(weaponID); + break; + + case 4: + weapon = new Slingshot(weaponID); + break; + + default: + monitor.Log($"The specified weapon has unknown type '{type}' in the game data.", LogLevel.Error); + return; + } + + // validate weapon + if (weapon.Name == null) + { + monitor.Log("That weapon doesn't seem to be valid.", LogLevel.Error); + return; + } + + // add weapon + Game1.player.addItemByMenuIfNecessary(weapon); + monitor.Log($"OK, added {weapon.Name} to your inventory.", LogLevel.Info); + } + } +} diff --git a/src/TrainerMod/Framework/Commands/Player/ListItemsCommand.cs b/src/TrainerMod/Framework/Commands/Player/ListItemsCommand.cs new file mode 100644 index 00000000..a1b9aceb --- /dev/null +++ b/src/TrainerMod/Framework/Commands/Player/ListItemsCommand.cs @@ -0,0 +1,120 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using StardewModdingAPI; +using StardewValley; +using StardewValley.Objects; +using TrainerMod.Framework.ItemData; + +namespace TrainerMod.Framework.Commands.Player +{ + /// A command which list items available to spawn. + internal class ListItemsCommand : TrainerCommand + { + /********* + ** Public methods + *********/ + /// Construct an instance. + public ListItemsCommand() + : base("list_items", "Lists and searches items in the game data.\n\nUsage: list_items [search]\n- search (optional): an arbitrary search string to filter by.") { } + + /// Handle the command. + /// Writes messages to the console and log file. + /// The command name. + /// The command arguments. + public override void Handle(IMonitor monitor, string command, string[] args) + { + var matches = this.GetItems(args).ToArray(); + + // show matches + string summary = "Searching...\n"; + if (matches.Any()) + monitor.Log(summary + this.GetTableString(matches, new[] { "type", "id", "name" }, val => new[] { val.Type.ToString(), val.ID.ToString(), val.Name }), LogLevel.Info); + else + monitor.Log(summary + "No items found", LogLevel.Info); + } + + + /********* + ** Private methods + *********/ + /// Get all items which can be searched and added to the player's inventory through the console. + /// The search string to find. + private IEnumerable GetItems(string[] searchWords) + { + // normalise search term + searchWords = searchWords?.Where(word => !string.IsNullOrWhiteSpace(word)).ToArray(); + if (searchWords?.Any() == false) + searchWords = null; + + // find matches + return ( + from item in this.GetItems() + let term = $"{item.ID}|{item.Type}|{item.Name}" + where searchWords == null || searchWords.All(word => term.IndexOf(word, StringComparison.CurrentCultureIgnoreCase) != -1) + select item + ); + } + + /// Get all items which can be searched and added to the player's inventory through the console. + private IEnumerable GetItems() + { + // objects + foreach (int id in Game1.objectInformation.Keys) + { + ISearchItem obj = id >= Ring.ringLowerIndexRange && id <= Ring.ringUpperIndexRange + ? new SearchableRing(id) + : (ISearchItem)new SearchableObject(id); + if (obj.IsValid) + yield return obj; + } + + // weapons + foreach (int id in Game1.content.Load>("Data\\weapons").Keys) + { + ISearchItem weapon = new SearchableWeapon(id); + if (weapon.IsValid) + yield return weapon; + } + } + + /// Get an ASCII table for a set of tabular data. + /// The data type. + /// The data to display. + /// The table header. + /// Returns a set of fields for a data value. + private string GetTableString(IEnumerable data, string[] header, Func getRow) + { + // get table data + int[] widths = header.Select(p => p.Length).ToArray(); + string[][] rows = data + .Select(item => + { + string[] fields = getRow(item); + if (fields.Length != widths.Length) + throw new InvalidOperationException($"Expected {widths.Length} columns, but found {fields.Length}: {string.Join(", ", fields)}"); + + for (int i = 0; i < fields.Length; i++) + widths[i] = Math.Max(widths[i], fields[i].Length); + + return fields; + }) + .ToArray(); + + // render fields + List lines = new List(rows.Length + 2) + { + header, + header.Select((value, i) => "".PadRight(widths[i], '-')).ToArray() + }; + lines.AddRange(rows); + + return string.Join( + Environment.NewLine, + lines.Select(line => string.Join(" | ", + line.Select((field, i) => field.PadRight(widths[i], ' ')).ToArray()) + ) + ); + } + } +} diff --git a/src/TrainerMod/Framework/Commands/Player/SetColorCommand.cs b/src/TrainerMod/Framework/Commands/Player/SetColorCommand.cs new file mode 100644 index 00000000..00907fba --- /dev/null +++ b/src/TrainerMod/Framework/Commands/Player/SetColorCommand.cs @@ -0,0 +1,79 @@ +using Microsoft.Xna.Framework; +using StardewModdingAPI; +using StardewValley; + +namespace TrainerMod.Framework.Commands.Player +{ + /// A command which edits the color of a player feature. + internal class SetColorCommand : TrainerCommand + { + /********* + ** Public methods + *********/ + /// Construct an instance. + public SetColorCommand() + : base("player_changecolor", "Sets the color of a player feature.\n\nUsage: player_changecolor \n- target: what to change (one of 'hair', 'eyes', or 'pants').\n- color: a color value in RGB format, like (255,255,255).") { } + + /// Handle the command. + /// Writes messages to the console and log file. + /// The command name. + /// The command arguments. + public override void Handle(IMonitor monitor, string command, string[] args) + { + // validate + if (args.Length <= 2) + { + this.LogArgumentsInvalid(monitor, command); + return; + } + if (!this.TryParseColor(args[1], out Color color)) + { + this.LogUsageError(monitor, "The color should be an RBG value like '255,150,0'.", command); + return; + } + + // handle + switch (args[0]) + { + case "hair": + Game1.player.hairstyleColor = color; + monitor.Log("OK, your hair color is updated.", LogLevel.Info); + break; + + case "eyes": + Game1.player.changeEyeColor(color); + monitor.Log("OK, your eye color is updated.", LogLevel.Info); + break; + + case "pants": + Game1.player.pantsColor = color; + monitor.Log("OK, your pants color is updated.", LogLevel.Info); + break; + + default: + this.LogArgumentsInvalid(monitor, command); + break; + } + } + + + /********* + ** Private methods + *********/ + /// Try to parse a color from a string. + /// The input string. + /// The color to set. + private bool TryParseColor(string input, out Color color) + { + string[] colorHexes = input.Split(new[] { ',' }, 3); + if (int.TryParse(colorHexes[0], out int r) && int.TryParse(colorHexes[1], out int g) && int.TryParse(colorHexes[2], out int b)) + { + color = new Color(r, g, b); + return true; + } + + color = Color.Transparent; + return false; + } + } +} diff --git a/src/TrainerMod/Framework/Commands/Player/SetHealthCommand.cs b/src/TrainerMod/Framework/Commands/Player/SetHealthCommand.cs new file mode 100644 index 00000000..d3f06459 --- /dev/null +++ b/src/TrainerMod/Framework/Commands/Player/SetHealthCommand.cs @@ -0,0 +1,72 @@ +using System.Linq; +using StardewModdingAPI; +using StardewValley; + +namespace TrainerMod.Framework.Commands.Player +{ + /// A command which edits the player's current health. + internal class SetHealthCommand : TrainerCommand + { + /********* + ** Properties + *********/ + /// Whether to keep the player's health at its maximum. + private bool InfiniteHealth; + + + /********* + ** Accessors + *********/ + /// Whether the command needs to perform logic when the game updates. + public override bool NeedsUpdate => this.InfiniteHealth; + + + /********* + ** Public methods + *********/ + /// Construct an instance. + public SetHealthCommand() + : base("player_sethealth", "Sets the player's health.\n\nUsage: player_sethealth [value]\n- value: an integer amount, or 'inf' for infinite health.") { } + + /// Handle the command. + /// Writes messages to the console and log file. + /// The command name. + /// The command arguments. + public override void Handle(IMonitor monitor, string command, string[] args) + { + // validate + if (!args.Any()) + { + monitor.Log($"You currently have {(this.InfiniteHealth ? "infinite" : Game1.player.health.ToString())} health. Specify a value to change it.", LogLevel.Info); + return; + } + + // handle + string amountStr = args[0]; + if (amountStr == "inf") + { + this.InfiniteHealth = true; + monitor.Log("OK, you now have infinite health.", LogLevel.Info); + } + else + { + this.InfiniteHealth = false; + if (int.TryParse(amountStr, out int amount)) + { + Game1.player.health = amount; + monitor.Log($"OK, you now have {Game1.player.health} health.", LogLevel.Info); + } + else + this.LogArgumentNotInt(monitor, command); + } + } + + /// Perform any logic needed on update tick. + /// Writes messages to the console and log file. + public override void Update(IMonitor monitor) + { + if (this.InfiniteHealth) + Game1.player.health = Game1.player.maxHealth; + } + } +} diff --git a/src/TrainerMod/Framework/Commands/Player/SetImmunityCommand.cs b/src/TrainerMod/Framework/Commands/Player/SetImmunityCommand.cs new file mode 100644 index 00000000..ff74f981 --- /dev/null +++ b/src/TrainerMod/Framework/Commands/Player/SetImmunityCommand.cs @@ -0,0 +1,40 @@ +using System.Linq; +using StardewModdingAPI; +using StardewValley; + +namespace TrainerMod.Framework.Commands.Player +{ + /// A command which edits the player's current immunity. + internal class SetImmunityCommand : TrainerCommand + { + /********* + ** Public methods + *********/ + /// Construct an instance. + public SetImmunityCommand() + : base("player_setimmunity", "Sets the player's immunity.\n\nUsage: player_setimmunity [value]\n- value: an integer amount.") { } + + /// Handle the command. + /// Writes messages to the console and log file. + /// The command name. + /// The command arguments. + public override void Handle(IMonitor monitor, string command, string[] args) + { + // validate + if (!args.Any()) + { + monitor.Log($"You currently have {Game1.player.immunity} immunity. Specify a value to change it.", LogLevel.Info); + return; + } + + // handle + if (int.TryParse(args[0], out int amount)) + { + Game1.player.immunity = amount; + monitor.Log($"OK, you now have {Game1.player.immunity} immunity.", LogLevel.Info); + } + else + this.LogArgumentNotInt(monitor, command); + } + } +} diff --git a/src/TrainerMod/Framework/Commands/Player/SetLevelCommand.cs b/src/TrainerMod/Framework/Commands/Player/SetLevelCommand.cs new file mode 100644 index 00000000..4982a0b8 --- /dev/null +++ b/src/TrainerMod/Framework/Commands/Player/SetLevelCommand.cs @@ -0,0 +1,73 @@ +using StardewModdingAPI; +using StardewValley; + +namespace TrainerMod.Framework.Commands.Player +{ + /// A command which edits the player's current level for a skill. + internal class SetLevelCommand : TrainerCommand + { + /********* + ** Public methods + *********/ + /// Construct an instance. + public SetLevelCommand() + : base("player_setlevel", "Sets the player's specified skill to the specified value.\n\nUsage: player_setlevel \n- skill: the skill to set (one of 'luck', 'mining', 'combat', 'farming', 'fishing', or 'foraging').\n- value: the target level (a number from 1 to 10).") { } + + /// Handle the command. + /// Writes messages to the console and log file. + /// The command name. + /// The command arguments. + public override void Handle(IMonitor monitor, string command, string[] args) + { + // validate + if (args.Length <= 2) + { + this.LogArgumentsInvalid(monitor, command); + return; + } + if (!int.TryParse(args[1], out int level)) + { + this.LogArgumentNotInt(monitor, command); + return; + } + + // handle + switch (args[0]) + { + case "luck": + Game1.player.LuckLevel = level; + monitor.Log($"OK, your luck skill is now {Game1.player.LuckLevel}.", LogLevel.Info); + break; + + case "mining": + Game1.player.MiningLevel = level; + monitor.Log($"OK, your mining skill is now {Game1.player.MiningLevel}.", LogLevel.Info); + break; + + case "combat": + Game1.player.CombatLevel = level; + monitor.Log($"OK, your combat skill is now {Game1.player.CombatLevel}.", LogLevel.Info); + break; + + case "farming": + Game1.player.FarmingLevel = level; + monitor.Log($"OK, your farming skill is now {Game1.player.FarmingLevel}.", LogLevel.Info); + break; + + case "fishing": + Game1.player.FishingLevel = level; + monitor.Log($"OK, your fishing skill is now {Game1.player.FishingLevel}.", LogLevel.Info); + break; + + case "foraging": + Game1.player.ForagingLevel = level; + monitor.Log($"OK, your foraging skill is now {Game1.player.ForagingLevel}.", LogLevel.Info); + break; + + default: + this.LogUsageError(monitor, "That isn't a valid skill.", command); + break; + } + } + } +} diff --git a/src/TrainerMod/Framework/Commands/Player/SetMaxHealthCommand.cs b/src/TrainerMod/Framework/Commands/Player/SetMaxHealthCommand.cs new file mode 100644 index 00000000..73ba252a --- /dev/null +++ b/src/TrainerMod/Framework/Commands/Player/SetMaxHealthCommand.cs @@ -0,0 +1,40 @@ +using System.Linq; +using StardewModdingAPI; +using StardewValley; + +namespace TrainerMod.Framework.Commands.Player +{ + /// A command which edits the player's maximum health. + internal class SetMaxHealthCommand : TrainerCommand + { + /********* + ** Public methods + *********/ + /// Construct an instance. + public SetMaxHealthCommand() + : base("player_setmaxhealth", "Sets the player's max health.\n\nUsage: player_setmaxhealth [value]\n- value: an integer amount.") { } + + /// Handle the command. + /// Writes messages to the console and log file. + /// The command name. + /// The command arguments. + public override void Handle(IMonitor monitor, string command, string[] args) + { + // validate + if (!args.Any()) + { + monitor.Log($"You currently have {Game1.player.maxHealth} max health. Specify a value to change it.", LogLevel.Info); + return; + } + + // handle + if (int.TryParse(args[0], out int maxHealth)) + { + Game1.player.maxHealth = maxHealth; + monitor.Log($"OK, you now have {Game1.player.maxHealth} max health.", LogLevel.Info); + } + else + this.LogArgumentNotInt(monitor, command); + } + } +} diff --git a/src/TrainerMod/Framework/Commands/Player/SetMaxStaminaCommand.cs b/src/TrainerMod/Framework/Commands/Player/SetMaxStaminaCommand.cs new file mode 100644 index 00000000..c21f6592 --- /dev/null +++ b/src/TrainerMod/Framework/Commands/Player/SetMaxStaminaCommand.cs @@ -0,0 +1,40 @@ +using System.Linq; +using StardewModdingAPI; +using StardewValley; + +namespace TrainerMod.Framework.Commands.Player +{ + /// A command which edits the player's maximum stamina. + internal class SetMaxStaminaCommand : TrainerCommand + { + /********* + ** Public methods + *********/ + /// Construct an instance. + public SetMaxStaminaCommand() + : base("player_setmaxstamina", "Sets the player's max stamina.\n\nUsage: player_setmaxstamina [value]\n- value: an integer amount.") { } + + /// Handle the command. + /// Writes messages to the console and log file. + /// The command name. + /// The command arguments. + public override void Handle(IMonitor monitor, string command, string[] args) + { + // validate + if (!args.Any()) + { + monitor.Log($"You currently have {Game1.player.MaxStamina} max stamina. Specify a value to change it.", LogLevel.Info); + return; + } + + // handle + if (int.TryParse(args[0], out int amount)) + { + Game1.player.MaxStamina = amount; + monitor.Log($"OK, you now have {Game1.player.MaxStamina} max stamina.", LogLevel.Info); + } + else + this.LogArgumentNotInt(monitor, command); + } + } +} diff --git a/src/TrainerMod/Framework/Commands/Player/SetMoneyCommand.cs b/src/TrainerMod/Framework/Commands/Player/SetMoneyCommand.cs new file mode 100644 index 00000000..ad74499d --- /dev/null +++ b/src/TrainerMod/Framework/Commands/Player/SetMoneyCommand.cs @@ -0,0 +1,72 @@ +using System.Linq; +using StardewModdingAPI; +using StardewValley; + +namespace TrainerMod.Framework.Commands.Player +{ + /// A command which edits the player's current money. + internal class SetMoneyCommand : TrainerCommand + { + /********* + ** Properties + *********/ + /// Whether to keep the player's money at a set value. + private bool InfiniteMoney; + + + /********* + ** Accessors + *********/ + /// Whether the command needs to perform logic when the game updates. + public override bool NeedsUpdate => this.InfiniteMoney; + + + /********* + ** Public methods + *********/ + /// Construct an instance. + public SetMoneyCommand() + : base("player_setmoney", "Sets the player's money.\n\nUsage: player_setmoney \n- value: an integer amount, or 'inf' for infinite money.") { } + + /// Handle the command. + /// Writes messages to the console and log file. + /// The command name. + /// The command arguments. + public override void Handle(IMonitor monitor, string command, string[] args) + { + // validate + if (!args.Any()) + { + monitor.Log($"You currently have {(this.InfiniteMoney ? "infinite" : Game1.player.Money.ToString())} gold. Specify a value to change it.", LogLevel.Info); + return; + } + + // handle + string amountStr = args[0]; + if (amountStr == "inf") + { + this.InfiniteMoney = true; + monitor.Log("OK, you now have infinite money.", LogLevel.Info); + } + else + { + this.InfiniteMoney = false; + if (int.TryParse(amountStr, out int amount)) + { + Game1.player.Money = amount; + monitor.Log($"OK, you now have {Game1.player.Money} gold.", LogLevel.Info); + } + else + this.LogArgumentNotInt(monitor, command); + } + } + + /// Perform any logic needed on update tick. + /// Writes messages to the console and log file. + public override void Update(IMonitor monitor) + { + if (this.InfiniteMoney) + Game1.player.money = 999999; + } + } +} diff --git a/src/TrainerMod/Framework/Commands/Player/SetNameCommand.cs b/src/TrainerMod/Framework/Commands/Player/SetNameCommand.cs new file mode 100644 index 00000000..8284d882 --- /dev/null +++ b/src/TrainerMod/Framework/Commands/Player/SetNameCommand.cs @@ -0,0 +1,47 @@ +using StardewModdingAPI; +using StardewValley; + +namespace TrainerMod.Framework.Commands.Player +{ + /// A command which edits the player's name. + internal class SetNameCommand : TrainerCommand + { + /********* + ** Public methods + *********/ + /// Construct an instance. + public SetNameCommand() + : base("player_setname", "Sets the player's name.\n\nUsage: player_setname \n- target: what to rename (one of 'player' or 'farm').\n- name: the new name to set.") { } + + /// Handle the command. + /// Writes messages to the console and log file. + /// The command name. + /// The command arguments. + public override void Handle(IMonitor monitor, string command, string[] args) + { + // validate + if (args.Length <= 1) + { + monitor.Log($"Your name is currently '{Game1.player.Name}'. Type 'help player_setname' for usage.", LogLevel.Info); + return; + } + + // handle + string target = args[0]; + switch (target) + { + case "player": + Game1.player.Name = args[1]; + monitor.Log($"OK, your player's name is now {Game1.player.Name}.", LogLevel.Info); + break; + case "farm": + Game1.player.farmName = args[1]; + monitor.Log($"OK, your farm's name is now {Game1.player.Name}.", LogLevel.Info); + break; + default: + this.LogArgumentsInvalid(monitor, command); + break; + } + } + } +} diff --git a/src/TrainerMod/Framework/Commands/Player/SetSpeedCommand.cs b/src/TrainerMod/Framework/Commands/Player/SetSpeedCommand.cs new file mode 100644 index 00000000..a8c05d0c --- /dev/null +++ b/src/TrainerMod/Framework/Commands/Player/SetSpeedCommand.cs @@ -0,0 +1,40 @@ +using System.Linq; +using StardewModdingAPI; +using StardewValley; + +namespace TrainerMod.Framework.Commands.Player +{ + /// A command which edits the player's current added speed. + internal class SetSpeedCommand : TrainerCommand + { + /********* + ** Public methods + *********/ + /// Construct an instance. + public SetSpeedCommand() + : base("player_setspeed", "Sets the player's added speed to the specified value.\n\nUsage: player_setspeed \n- value: an integer amount (0 is normal).") { } + + /// Handle the command. + /// Writes messages to the console and log file. + /// The command name. + /// The command arguments. + public override void Handle(IMonitor monitor, string command, string[] args) + { + // validate + if (!args.Any()) + { + monitor.Log($"You currently have {Game1.player.addedSpeed} added speed. Specify a value to change it.", LogLevel.Info); + return; + } + if (!int.TryParse(args[0], out int addedSpeed)) + { + this.LogArgumentNotInt(monitor, command); + return; + } + + // handle + Game1.player.addedSpeed = addedSpeed; + monitor.Log($"OK, your added speed is now {Game1.player.addedSpeed}.", LogLevel.Info); + } + } +} diff --git a/src/TrainerMod/Framework/Commands/Player/SetStaminaCommand.cs b/src/TrainerMod/Framework/Commands/Player/SetStaminaCommand.cs new file mode 100644 index 00000000..55a55eab --- /dev/null +++ b/src/TrainerMod/Framework/Commands/Player/SetStaminaCommand.cs @@ -0,0 +1,72 @@ +using System.Linq; +using StardewModdingAPI; +using StardewValley; + +namespace TrainerMod.Framework.Commands.Player +{ + /// A command which edits the player's current stamina. + internal class SetStaminaCommand : TrainerCommand + { + /********* + ** Properties + *********/ + /// Whether to keep the player's stamina at its maximum. + private bool InfiniteStamina; + + + /********* + ** Accessors + *********/ + /// Whether the command needs to perform logic when the game updates. + public override bool NeedsUpdate => this.InfiniteStamina; + + + /********* + ** Public methods + *********/ + /// Construct an instance. + public SetStaminaCommand() + : base("player_setstamina", "Sets the player's stamina.\n\nUsage: player_setstamina [value]\n- value: an integer amount, or 'inf' for infinite stamina.") { } + + /// Handle the command. + /// Writes messages to the console and log file. + /// The command name. + /// The command arguments. + public override void Handle(IMonitor monitor, string command, string[] args) + { + // validate + if (!args.Any()) + { + monitor.Log($"You currently have {(this.InfiniteStamina ? "infinite" : Game1.player.Stamina.ToString())} stamina. Specify a value to change it.", LogLevel.Info); + return; + } + + // handle + string amountStr = args[0]; + if (amountStr == "inf") + { + this.InfiniteStamina = true; + monitor.Log("OK, you now have infinite stamina.", LogLevel.Info); + } + else + { + this.InfiniteStamina = false; + if (int.TryParse(amountStr, out int amount)) + { + Game1.player.Stamina = amount; + monitor.Log($"OK, you now have {Game1.player.Stamina} stamina.", LogLevel.Info); + } + else + this.LogArgumentNotInt(monitor, command); + } + } + + /// Perform any logic needed on update tick. + /// Writes messages to the console and log file. + public override void Update(IMonitor monitor) + { + if (this.InfiniteStamina) + Game1.player.stamina = Game1.player.MaxStamina; + } + } +} diff --git a/src/TrainerMod/Framework/Commands/Player/SetStyleCommand.cs b/src/TrainerMod/Framework/Commands/Player/SetStyleCommand.cs new file mode 100644 index 00000000..9ef5f88b --- /dev/null +++ b/src/TrainerMod/Framework/Commands/Player/SetStyleCommand.cs @@ -0,0 +1,102 @@ +using StardewModdingAPI; +using StardewValley; + +namespace TrainerMod.Framework.Commands.Player +{ + /// A command which edits a player style. + internal class SetStyleCommand : TrainerCommand + { + /********* + ** Public methods + *********/ + /// Construct an instance. + public SetStyleCommand() + : base("player_changestyle", "Sets the style of a player feature.\n\nUsage: player_changecolor .\n- target: what to change (one of 'hair', 'shirt', 'skin', 'acc', 'shoe', 'swim', or 'gender').\n- value: the integer style ID.") { } + + /// Handle the command. + /// Writes messages to the console and log file. + /// The command name. + /// The command arguments. + public override void Handle(IMonitor monitor, string command, string[] args) + { + // validate + if (args.Length <= 1) + { + this.LogArgumentsInvalid(monitor, command); + return; + } + if (!int.TryParse(args[1], out int styleID)) + { + this.LogArgumentsInvalid(monitor, command); + return; + } + + // handle + switch (args[0]) + { + case "hair": + Game1.player.changeHairStyle(styleID); + monitor.Log("OK, your hair style is updated.", LogLevel.Info); + break; + + case "shirt": + Game1.player.changeShirt(styleID); + monitor.Log("OK, your shirt style is updated.", LogLevel.Info); + break; + + case "acc": + Game1.player.changeAccessory(styleID); + monitor.Log("OK, your accessory style is updated.", LogLevel.Info); + break; + + case "skin": + Game1.player.changeSkinColor(styleID); + monitor.Log("OK, your skin color is updated.", LogLevel.Info); + break; + + case "shoe": + Game1.player.changeShoeColor(styleID); + monitor.Log("OK, your shoe style is updated.", LogLevel.Info); + break; + + case "swim": + switch (styleID) + { + case 0: + Game1.player.changeOutOfSwimSuit(); + monitor.Log("OK, you're no longer in your swimming suit.", LogLevel.Info); + break; + case 1: + Game1.player.changeIntoSwimsuit(); + monitor.Log("OK, you're now in your swimming suit.", LogLevel.Info); + break; + default: + this.LogUsageError(monitor, "The swim value should be 0 (no swimming suit) or 1 (swimming suit).", command); + break; + } + break; + + case "gender": + switch (styleID) + { + case 0: + Game1.player.changeGender(true); + monitor.Log("OK, you're now male.", LogLevel.Info); + break; + case 1: + Game1.player.changeGender(false); + monitor.Log("OK, you're now female.", LogLevel.Info); + break; + default: + this.LogUsageError(monitor, "The gender value should be 0 (male) or 1 (female).", command); + break; + } + break; + + default: + this.LogArgumentsInvalid(monitor, command); + break; + } + } + } +} diff --git a/src/TrainerMod/Framework/Commands/Saves/LoadCommand.cs b/src/TrainerMod/Framework/Commands/Saves/LoadCommand.cs new file mode 100644 index 00000000..1a70b54c --- /dev/null +++ b/src/TrainerMod/Framework/Commands/Saves/LoadCommand.cs @@ -0,0 +1,28 @@ +using StardewModdingAPI; +using StardewValley; +using StardewValley.Menus; + +namespace TrainerMod.Framework.Commands.Saves +{ + /// A command which shows the load screen. + internal class LoadCommand : TrainerCommand + { + /********* + ** Public methods + *********/ + /// Construct an instance. + public LoadCommand() + : base("load", "Shows the load screen.") { } + + /// Handle the command. + /// Writes messages to the console and log file. + /// The command name. + /// The command arguments. + public override void Handle(IMonitor monitor, string command, string[] args) + { + monitor.Log("Triggering load menu...", LogLevel.Info); + Game1.hasLoadedGame = false; + Game1.activeClickableMenu = new LoadGameMenu(); + } + } +} diff --git a/src/TrainerMod/Framework/Commands/Saves/SaveCommand.cs b/src/TrainerMod/Framework/Commands/Saves/SaveCommand.cs new file mode 100644 index 00000000..8ce9738d --- /dev/null +++ b/src/TrainerMod/Framework/Commands/Saves/SaveCommand.cs @@ -0,0 +1,27 @@ +using StardewModdingAPI; +using StardewValley; + +namespace TrainerMod.Framework.Commands.Saves +{ + /// A command which saves the game. + internal class SaveCommand : TrainerCommand + { + /********* + ** Public methods + *********/ + /// Construct an instance. + public SaveCommand() + : base("save", "Saves the game? Doesn't seem to work.") { } + + + /// Handle the command. + /// Writes messages to the console and log file. + /// The command name. + /// The command arguments. + public override void Handle(IMonitor monitor, string command, string[] args) + { + monitor.Log("Saving the game...", LogLevel.Info); + SaveGame.Save(); + } + } +} diff --git a/src/TrainerMod/Framework/Commands/TrainerCommand.cs b/src/TrainerMod/Framework/Commands/TrainerCommand.cs new file mode 100644 index 00000000..1b18b44b --- /dev/null +++ b/src/TrainerMod/Framework/Commands/TrainerCommand.cs @@ -0,0 +1,72 @@ +using StardewModdingAPI; + +namespace TrainerMod.Framework.Commands +{ + /// The base implementation for a trainer command. + internal abstract class TrainerCommand : ITrainerCommand + { + /********* + ** Accessors + *********/ + /// The command name the user must type. + public string Name { get; } + + /// The command description. + public string Description { get; } + + /// Whether the command needs to perform logic when the game updates. + public virtual bool NeedsUpdate { get; } = false; + + + /********* + ** Public methods + *********/ + /// Handle the command. + /// Writes messages to the console and log file. + /// The command name. + /// The command arguments. + public abstract void Handle(IMonitor monitor, string command, string[] args); + + /// Perform any logic needed on update tick. + /// Writes messages to the console and log file. + public virtual void Update(IMonitor monitor) { } + + + /********* + ** Protected methods + *********/ + /// Construct an instance. + /// The command name the user must type. + /// The command description. + protected TrainerCommand(string name, string description) + { + this.Name = name; + this.Description = description; + } + + /// Log an error indicating incorrect usage. + /// Writes messages to the console and log file. + /// A sentence explaining the problem. + /// The name of the command. + protected void LogUsageError(IMonitor monitor, string error, string command) + { + monitor.Log($"{error} Type 'help {command}' for usage.", LogLevel.Error); + } + + /// Log an error indicating a value must be an integer. + /// Writes messages to the console and log file. + /// The name of the command. + protected void LogArgumentNotInt(IMonitor monitor, string command) + { + this.LogUsageError(monitor, "The value must be a whole number.", command); + } + + /// Log an error indicating a value is invalid. + /// Writes messages to the console and log file. + /// The name of the command. + protected void LogArgumentsInvalid(IMonitor monitor, string command) + { + this.LogUsageError(monitor, "The arguments are invalid.", command); + } + } +} diff --git a/src/TrainerMod/Framework/Commands/World/DownMineLevelCommand.cs b/src/TrainerMod/Framework/Commands/World/DownMineLevelCommand.cs new file mode 100644 index 00000000..2700a0dc --- /dev/null +++ b/src/TrainerMod/Framework/Commands/World/DownMineLevelCommand.cs @@ -0,0 +1,28 @@ +using StardewModdingAPI; +using StardewValley; +using StardewValley.Locations; + +namespace TrainerMod.Framework.Commands.World +{ + /// A command which moves the player to the next mine level. + internal class DownMineLevelCommand : TrainerCommand + { + /********* + ** Public methods + *********/ + /// Construct an instance. + public DownMineLevelCommand() + : base("world_downminelevel", "Goes down one mine level.") { } + + /// Handle the command. + /// Writes messages to the console and log file. + /// The command name. + /// The command arguments. + public override void Handle(IMonitor monitor, string command, string[] args) + { + int level = (Game1.currentLocation as MineShaft)?.mineLevel ?? 0; + monitor.Log($"OK, warping you to mine level {level + 1}.", LogLevel.Info); + Game1.enterMine(false, level + 1, ""); + } + } +} diff --git a/src/TrainerMod/Framework/Commands/World/FreezeTimeCommand.cs b/src/TrainerMod/Framework/Commands/World/FreezeTimeCommand.cs new file mode 100644 index 00000000..89cd68cb --- /dev/null +++ b/src/TrainerMod/Framework/Commands/World/FreezeTimeCommand.cs @@ -0,0 +1,72 @@ +using System.Linq; +using StardewModdingAPI; +using StardewValley; + +namespace TrainerMod.Framework.Commands.World +{ + /// A command which freezes the current time. + internal class FreezeTimeCommand : TrainerCommand + { + /********* + ** Properties + *********/ + /// The time of day at which to freeze time. + internal static int FrozenTime; + + /// Whether to freeze time. + private bool FreezeTime; + + + /********* + ** Accessors + *********/ + /// Whether the command needs to perform logic when the game updates. + public override bool NeedsUpdate => this.FreezeTime; + + + /********* + ** Public methods + *********/ + /// Construct an instance. + public FreezeTimeCommand() + : base("world_freezetime", "Freezes or resumes time.\n\nUsage: world_freezetime [value]\n- value: one of 0 (resume), 1 (freeze), or blank (toggle).") { } + + /// Handle the command. + /// Writes messages to the console and log file. + /// The command name. + /// The command arguments. + public override void Handle(IMonitor monitor, string command, string[] args) + { + if (args.Any()) + { + if (int.TryParse(args[0], out int value)) + { + if (value == 0 || value == 1) + { + this.FreezeTime = value == 1; + FreezeTimeCommand.FrozenTime = Game1.timeOfDay; + monitor.Log($"OK, time is now {(this.FreezeTime ? "frozen" : "resumed")}.", LogLevel.Info); + } + else + this.LogUsageError(monitor, "The value should be 0 (not frozen), 1 (frozen), or empty (toggle).", command); + } + else + this.LogArgumentNotInt(monitor, command); + } + else + { + this.FreezeTime = !this.FreezeTime; + FreezeTimeCommand.FrozenTime = Game1.timeOfDay; + monitor.Log($"OK, time is now {(this.FreezeTime ? "frozen" : "resumed")}.", LogLevel.Info); + } + } + + /// Perform any logic needed on update tick. + /// Writes messages to the console and log file. + public override void Update(IMonitor monitor) + { + if (this.FreezeTime) + Game1.timeOfDay = FreezeTimeCommand.FrozenTime; + } + } +} diff --git a/src/TrainerMod/Framework/Commands/World/SetDayCommand.cs b/src/TrainerMod/Framework/Commands/World/SetDayCommand.cs new file mode 100644 index 00000000..e47b76a7 --- /dev/null +++ b/src/TrainerMod/Framework/Commands/World/SetDayCommand.cs @@ -0,0 +1,45 @@ +using System.Linq; +using StardewModdingAPI; +using StardewValley; + +namespace TrainerMod.Framework.Commands.World +{ + /// A command which sets the current day. + internal class SetDayCommand : TrainerCommand + { + /********* + ** Public methods + *********/ + /// Construct an instance. + public SetDayCommand() + : base("world_setday", "Sets the day to the specified value.\n\nUsage: world_setday .\n- value: the target day (a number from 1 to 28).") { } + + /// Handle the command. + /// Writes messages to the console and log file. + /// The command name. + /// The command arguments. + public override void Handle(IMonitor monitor, string command, string[] args) + { + // validate + if (!args.Any()) + { + monitor.Log($"The current date is {Game1.currentSeason} {Game1.dayOfMonth}. Specify a value to change the day.", LogLevel.Info); + return; + } + if (!int.TryParse(args[0], out int day)) + { + this.LogArgumentNotInt(monitor, command); + return; + } + if (day > 28 || day <= 0) + { + this.LogUsageError(monitor, "That isn't a valid day.", command); + return; + } + + // handle + Game1.dayOfMonth = day; + monitor.Log($"OK, the date is now {Game1.currentSeason} {Game1.dayOfMonth}.", LogLevel.Info); + } + } +} diff --git a/src/TrainerMod/Framework/Commands/World/SetMineLevelCommand.cs b/src/TrainerMod/Framework/Commands/World/SetMineLevelCommand.cs new file mode 100644 index 00000000..bfcc566f --- /dev/null +++ b/src/TrainerMod/Framework/Commands/World/SetMineLevelCommand.cs @@ -0,0 +1,42 @@ +using System; +using System.Linq; +using StardewModdingAPI; +using StardewValley; + +namespace TrainerMod.Framework.Commands.World +{ + /// A command which moves the player to the given mine level. + internal class SetMineLevelCommand : TrainerCommand + { + /********* + ** Public methods + *********/ + /// Construct an instance. + public SetMineLevelCommand() + : base("world_setminelevel", "Sets the mine level?\n\nUsage: world_setminelevel \n- value: The target level (a number starting at 1).") { } + + /// Handle the command. + /// Writes messages to the console and log file. + /// The command name. + /// The command arguments. + public override void Handle(IMonitor monitor, string command, string[] args) + { + // validate + if (!args.Any()) + { + this.LogArgumentsInvalid(monitor, command); + return; + } + if (!int.TryParse(args[0], out int level)) + { + this.LogArgumentNotInt(monitor, command); + return; + } + + // handle + level = Math.Max(1, level); + monitor.Log($"OK, warping you to mine level {level}.", LogLevel.Info); + Game1.enterMine(true, level, ""); + } + } +} diff --git a/src/TrainerMod/Framework/Commands/World/SetSeasonCommand.cs b/src/TrainerMod/Framework/Commands/World/SetSeasonCommand.cs new file mode 100644 index 00000000..d60f8601 --- /dev/null +++ b/src/TrainerMod/Framework/Commands/World/SetSeasonCommand.cs @@ -0,0 +1,47 @@ +using System.Linq; +using StardewModdingAPI; +using StardewValley; + +namespace TrainerMod.Framework.Commands.World +{ + /// A command which sets the current season. + internal class SetSeasonCommand : TrainerCommand + { + /********* + ** Properties + *********/ + /// The valid season names. + private readonly string[] ValidSeasons = { "winter", "spring", "summer", "fall" }; + + + /********* + ** Public methods + *********/ + /// Construct an instance. + public SetSeasonCommand() + : base("world_setseason", "Sets the season to the specified value.\n\nUsage: world_setseason \n- season: the target season (one of 'spring', 'summer', 'fall', 'winter').") { } + + /// Handle the command. + /// Writes messages to the console and log file. + /// The command name. + /// The command arguments. + public override void Handle(IMonitor monitor, string command, string[] args) + { + // validate + if (!args.Any()) + { + monitor.Log($"The current season is {Game1.currentSeason}. Specify a value to change it.", LogLevel.Info); + return; + } + if (!this.ValidSeasons.Contains(args[0])) + { + this.LogUsageError(monitor, "That isn't a valid season name.", command); + return; + } + + // handle + Game1.currentSeason = args[0]; + monitor.Log($"OK, the date is now {Game1.currentSeason} {Game1.dayOfMonth}.", LogLevel.Info); + } + } +} diff --git a/src/TrainerMod/Framework/Commands/World/SetTimeCommand.cs b/src/TrainerMod/Framework/Commands/World/SetTimeCommand.cs new file mode 100644 index 00000000..4ecff485 --- /dev/null +++ b/src/TrainerMod/Framework/Commands/World/SetTimeCommand.cs @@ -0,0 +1,46 @@ +using System.Linq; +using StardewModdingAPI; +using StardewValley; + +namespace TrainerMod.Framework.Commands.World +{ + /// A command which sets the current time. + internal class SetTimeCommand : TrainerCommand + { + /********* + ** Public methods + *********/ + /// Construct an instance. + public SetTimeCommand() + : base("world_settime", "Sets the time to the specified value.\n\nUsage: world_settime \n- value: the target time in military time (like 0600 for 6am and 1800 for 6pm).") { } + + /// Handle the command. + /// Writes messages to the console and log file. + /// The command name. + /// The command arguments. + public override void Handle(IMonitor monitor, string command, string[] args) + { + // validate + if (!args.Any()) + { + monitor.Log($"The current time is {Game1.timeOfDay}. Specify a value to change it.", LogLevel.Info); + return; + } + if (!int.TryParse(args[0], out int time)) + { + this.LogArgumentNotInt(monitor, command); + return; + } + if (time > 2600 || time < 600) + { + this.LogUsageError(monitor, "That isn't a valid time.", command); + return; + } + + // handle + Game1.timeOfDay = time; + FreezeTimeCommand.FrozenTime = Game1.timeOfDay; + monitor.Log($"OK, the time is now {Game1.timeOfDay.ToString().PadLeft(4, '0')}.", LogLevel.Info); + } + } +} diff --git a/src/TrainerMod/Framework/Commands/World/SetYearCommand.cs b/src/TrainerMod/Framework/Commands/World/SetYearCommand.cs new file mode 100644 index 00000000..6b2b0d93 --- /dev/null +++ b/src/TrainerMod/Framework/Commands/World/SetYearCommand.cs @@ -0,0 +1,45 @@ +using System.Linq; +using StardewModdingAPI; +using StardewValley; + +namespace TrainerMod.Framework.Commands.World +{ + /// A command which sets the current year. + internal class SetYearCommand : TrainerCommand + { + /********* + ** Public methods + *********/ + /// Construct an instance. + public SetYearCommand() + : base("world_setyear", "Sets the year to the specified value.\n\nUsage: world_setyear \n- year: the target year (a number starting from 1).") { } + + /// Handle the command. + /// Writes messages to the console and log file. + /// The command name. + /// The command arguments. + public override void Handle(IMonitor monitor, string command, string[] args) + { + // validate + if (!args.Any()) + { + monitor.Log($"The current year is {Game1.year}. Specify a value to change the year.", LogLevel.Info); + return; + } + if (!int.TryParse(args[0], out int year)) + { + this.LogArgumentNotInt(monitor, command); + return; + } + if (year < 1) + { + this.LogUsageError(monitor, "That isn't a valid year.", command); + return; + } + + // handle + Game1.year = year; + monitor.Log($"OK, the year is now {Game1.year}.", LogLevel.Info); + } + } +} diff --git a/src/TrainerMod/Framework/ItemData/ISearchItem.cs b/src/TrainerMod/Framework/ItemData/ISearchItem.cs new file mode 100644 index 00000000..db30da77 --- /dev/null +++ b/src/TrainerMod/Framework/ItemData/ISearchItem.cs @@ -0,0 +1,21 @@ +namespace TrainerMod.Framework.ItemData +{ + /// An item that can be searched and added to the player's inventory through the console. + internal interface ISearchItem + { + /********* + ** Accessors + *********/ + /// Whether the item is valid. + bool IsValid { get; } + + /// The item ID. + int ID { get; } + + /// The item name. + string Name { get; } + + /// The item type. + ItemType Type { get; } + } +} \ No newline at end of file diff --git a/src/TrainerMod/Framework/ItemData/ItemType.cs b/src/TrainerMod/Framework/ItemData/ItemType.cs new file mode 100644 index 00000000..f93160a2 --- /dev/null +++ b/src/TrainerMod/Framework/ItemData/ItemType.cs @@ -0,0 +1,15 @@ +namespace TrainerMod.Framework.ItemData +{ + /// An item type that can be searched and added to the player through the console. + internal enum ItemType + { + /// Any object in (except rings). + Object, + + /// A ring in . + Ring, + + /// A weapon from Data\weapons. + Weapon + } +} diff --git a/src/TrainerMod/Framework/ItemData/SearchableObject.cs b/src/TrainerMod/Framework/ItemData/SearchableObject.cs new file mode 100644 index 00000000..7e44a315 --- /dev/null +++ b/src/TrainerMod/Framework/ItemData/SearchableObject.cs @@ -0,0 +1,48 @@ +using StardewValley; + +namespace TrainerMod.Framework.ItemData +{ + /// An object that can be searched and added to the player's inventory through the console. + internal class SearchableObject : ISearchItem + { + /********* + ** Properties + *********/ + /// The underlying item. + private readonly Item Item; + + + /********* + ** Accessors + *********/ + /// Whether the item is valid. + public bool IsValid => this.Item != null && this.Item.Name != "Broken Item"; + + /// The item ID. + public int ID => this.Item.parentSheetIndex; + + /// The item name. + public string Name => this.Item.Name; + + /// The item type. + public ItemType Type => ItemType.Object; + + + /********* + ** Accessors + *********/ + /// Construct an instance. + /// The item ID. + public SearchableObject(int id) + { + try + { + this.Item = new Object(id, 1); + } + catch + { + // invalid + } + } + } +} \ No newline at end of file diff --git a/src/TrainerMod/Framework/ItemData/SearchableRing.cs b/src/TrainerMod/Framework/ItemData/SearchableRing.cs new file mode 100644 index 00000000..20b6aef2 --- /dev/null +++ b/src/TrainerMod/Framework/ItemData/SearchableRing.cs @@ -0,0 +1,48 @@ +using StardewValley.Objects; + +namespace TrainerMod.Framework.ItemData +{ + /// A ring that can be searched and added to the player's inventory through the console. + internal class SearchableRing : ISearchItem + { + /********* + ** Properties + *********/ + /// The underlying item. + private readonly Ring Ring; + + + /********* + ** Accessors + *********/ + /// Whether the item is valid. + public bool IsValid => this.Ring != null; + + /// The item ID. + public int ID => this.Ring.parentSheetIndex; + + /// The item name. + public string Name => this.Ring.Name; + + /// The item type. + public ItemType Type => ItemType.Ring; + + + /********* + ** Accessors + *********/ + /// Construct an instance. + /// The ring ID. + public SearchableRing(int id) + { + try + { + this.Ring = new Ring(id); + } + catch + { + // invalid + } + } + } +} \ No newline at end of file diff --git a/src/TrainerMod/Framework/ItemData/SearchableWeapon.cs b/src/TrainerMod/Framework/ItemData/SearchableWeapon.cs new file mode 100644 index 00000000..70d659ee --- /dev/null +++ b/src/TrainerMod/Framework/ItemData/SearchableWeapon.cs @@ -0,0 +1,48 @@ +using StardewValley.Tools; + +namespace TrainerMod.Framework.ItemData +{ + /// A weapon that can be searched and added to the player's inventory through the console. + internal class SearchableWeapon : ISearchItem + { + /********* + ** Properties + *********/ + /// The underlying item. + private readonly MeleeWeapon Weapon; + + + /********* + ** Accessors + *********/ + /// Whether the item is valid. + public bool IsValid => this.Weapon != null; + + /// The item ID. + public int ID => this.Weapon.initialParentTileIndex; + + /// The item name. + public string Name => this.Weapon.Name; + + /// The item type. + public ItemType Type => ItemType.Weapon; + + + /********* + ** Accessors + *********/ + /// Construct an instance. + /// The weapon ID. + public SearchableWeapon(int id) + { + try + { + this.Weapon = new MeleeWeapon(id); + } + catch + { + // invalid + } + } + } +} \ No newline at end of file diff --git a/src/TrainerMod/ItemData/ISearchItem.cs b/src/TrainerMod/ItemData/ISearchItem.cs deleted file mode 100644 index b2f7c2b8..00000000 --- a/src/TrainerMod/ItemData/ISearchItem.cs +++ /dev/null @@ -1,21 +0,0 @@ -namespace TrainerMod.ItemData -{ - /// An item that can be searched and added to the player's inventory through the console. - internal interface ISearchItem - { - /********* - ** Accessors - *********/ - /// Whether the item is valid. - bool IsValid { get; } - - /// The item ID. - int ID { get; } - - /// The item name. - string Name { get; } - - /// The item type. - ItemType Type { get; } - } -} \ No newline at end of file diff --git a/src/TrainerMod/ItemData/ItemType.cs b/src/TrainerMod/ItemData/ItemType.cs deleted file mode 100644 index 2e049aa1..00000000 --- a/src/TrainerMod/ItemData/ItemType.cs +++ /dev/null @@ -1,15 +0,0 @@ -namespace TrainerMod.ItemData -{ - /// An item type that can be searched and added to the player through the console. - internal enum ItemType - { - /// Any object in (except rings). - Object, - - /// A ring in . - Ring, - - /// A weapon from Data\weapons. - Weapon - } -} diff --git a/src/TrainerMod/ItemData/SearchableObject.cs b/src/TrainerMod/ItemData/SearchableObject.cs deleted file mode 100644 index 30362f54..00000000 --- a/src/TrainerMod/ItemData/SearchableObject.cs +++ /dev/null @@ -1,48 +0,0 @@ -using StardewValley; - -namespace TrainerMod.ItemData -{ - /// An object that can be searched and added to the player's inventory through the console. - internal class SearchableObject : ISearchItem - { - /********* - ** Properties - *********/ - /// The underlying item. - private readonly Item Item; - - - /********* - ** Accessors - *********/ - /// Whether the item is valid. - public bool IsValid => this.Item != null && this.Item.Name != "Broken Item"; - - /// The item ID. - public int ID => this.Item.parentSheetIndex; - - /// The item name. - public string Name => this.Item.Name; - - /// The item type. - public ItemType Type => ItemType.Object; - - - /********* - ** Accessors - *********/ - /// Construct an instance. - /// The item ID. - public SearchableObject(int id) - { - try - { - this.Item = new Object(id, 1); - } - catch - { - // invalid - } - } - } -} \ No newline at end of file diff --git a/src/TrainerMod/ItemData/SearchableRing.cs b/src/TrainerMod/ItemData/SearchableRing.cs deleted file mode 100644 index 7751e6aa..00000000 --- a/src/TrainerMod/ItemData/SearchableRing.cs +++ /dev/null @@ -1,48 +0,0 @@ -using StardewValley.Objects; - -namespace TrainerMod.ItemData -{ - /// A ring that can be searched and added to the player's inventory through the console. - internal class SearchableRing : ISearchItem - { - /********* - ** Properties - *********/ - /// The underlying item. - private readonly Ring Ring; - - - /********* - ** Accessors - *********/ - /// Whether the item is valid. - public bool IsValid => this.Ring != null; - - /// The item ID. - public int ID => this.Ring.parentSheetIndex; - - /// The item name. - public string Name => this.Ring.Name; - - /// The item type. - public ItemType Type => ItemType.Ring; - - - /********* - ** Accessors - *********/ - /// Construct an instance. - /// The ring ID. - public SearchableRing(int id) - { - try - { - this.Ring = new Ring(id); - } - catch - { - // invalid - } - } - } -} \ No newline at end of file diff --git a/src/TrainerMod/ItemData/SearchableWeapon.cs b/src/TrainerMod/ItemData/SearchableWeapon.cs deleted file mode 100644 index cc9ef459..00000000 --- a/src/TrainerMod/ItemData/SearchableWeapon.cs +++ /dev/null @@ -1,48 +0,0 @@ -using StardewValley.Tools; - -namespace TrainerMod.ItemData -{ - /// A weapon that can be searched and added to the player's inventory through the console. - internal class SearchableWeapon : ISearchItem - { - /********* - ** Properties - *********/ - /// The underlying item. - private readonly MeleeWeapon Weapon; - - - /********* - ** Accessors - *********/ - /// Whether the item is valid. - public bool IsValid => this.Weapon != null; - - /// The item ID. - public int ID => this.Weapon.initialParentTileIndex; - - /// The item name. - public string Name => this.Weapon.Name; - - /// The item type. - public ItemType Type => ItemType.Weapon; - - - /********* - ** Accessors - *********/ - /// Construct an instance. - /// The weapon ID. - public SearchableWeapon(int id) - { - try - { - this.Weapon = new MeleeWeapon(id); - } - catch - { - // invalid - } - } - } -} \ No newline at end of file diff --git a/src/TrainerMod/TrainerMod.cs b/src/TrainerMod/TrainerMod.cs index 0cafd51f..047bbbfe 100644 --- a/src/TrainerMod/TrainerMod.cs +++ b/src/TrainerMod/TrainerMod.cs @@ -1,17 +1,9 @@ using System; using System.Collections.Generic; -using System.Diagnostics; using System.Linq; -using Microsoft.Xna.Framework; using StardewModdingAPI; using StardewModdingAPI.Events; -using StardewValley; -using StardewValley.Locations; -using StardewValley.Menus; -using StardewValley.Objects; -using StardewValley.Tools; -using TrainerMod.ItemData; -using Object = StardewValley.Object; +using TrainerMod.Framework.Commands; namespace TrainerMod { @@ -21,20 +13,8 @@ namespace TrainerMod /********* ** Properties *********/ - /// The time of day at which to freeze time. - private int FrozenTime; - - /// Whether to keep the player's health at its maximum. - private bool InfiniteHealth; - - /// Whether to keep the player's stamina at its maximum. - private bool InfiniteStamina; - - /// Whether to keep the player's money at a set value. - private bool InfiniteMoney; - - /// Whether to freeze time. - private bool FreezeTime; + /// The commands to handle. + private ITrainerCommand[] Commands; /********* @@ -44,856 +24,51 @@ namespace TrainerMod /// Provides simplified APIs for writing mods. public override void Entry(IModHelper helper) { - this.RegisterCommands(helper); - GameEvents.UpdateTick += this.ReceiveUpdateTick; + // register commands + this.Commands = this.ScanForCommands().ToArray(); + foreach (ITrainerCommand command in this.Commands) + helper.ConsoleCommands.Add(command.Name, command.Description, (name, args) => this.HandleCommand(command, name, args)); + + // hook events + GameEvents.UpdateTick += this.GameEvents_UpdateTick; } /********* ** Private methods *********/ - /**** - ** Implementation - ****/ /// The method invoked when the game updates its state. /// The event sender. /// The event arguments. - private void ReceiveUpdateTick(object sender, EventArgs e) + private void GameEvents_UpdateTick(object sender, EventArgs e) { - if (Game1.player == null) + if (!Context.IsWorldReady) return; - if (this.InfiniteHealth) - Game1.player.health = Game1.player.maxHealth; - if (this.InfiniteStamina) - Game1.player.stamina = Game1.player.MaxStamina; - if (this.InfiniteMoney) - Game1.player.money = 999999; - if (this.FreezeTime) - Game1.timeOfDay = this.FrozenTime; - } - - /**** - ** Command definitions - ****/ - /// Register all trainer commands. - /// Provides simplified APIs for writing mods. - private void RegisterCommands(IModHelper helper) - { - helper.ConsoleCommands - .Add("save", "Saves the game? Doesn't seem to work.", this.HandleCommand) - .Add("load", "Shows the load screen.", this.HandleCommand) - .Add("player_setname", "Sets the player's name.\n\nUsage: player_setname \n- target: what to rename (one of 'player' or 'farm').\n- name: the new name to set.", this.HandleCommand) - .Add("player_setmoney", "Sets the player's money.\n\nUsage: player_setmoney \n- value: an integer amount, or 'inf' for infinite money.", this.HandleCommand) - .Add("player_setstamina", "Sets the player's stamina.\n\nUsage: player_setstamina [value]\n- value: an integer amount, or 'inf' for infinite stamina.", this.HandleCommand) - .Add("player_setmaxstamina", "Sets the player's max stamina.\n\nUsage: player_setmaxstamina [value]\n- value: an integer amount.", this.HandleCommand) - .Add("player_sethealth", "Sets the player's health.\n\nUsage: player_sethealth [value]\n- value: an integer amount, or 'inf' for infinite health.", this.HandleCommand) - .Add("player_setmaxhealth", "Sets the player's max health.\n\nUsage: player_setmaxhealth [value]\n- value: an integer amount.", this.HandleCommand) - .Add("player_setimmunity", "Sets the player's immunity.\n\nUsage: player_setimmunity [value]\n- value: an integer amount.", this.HandleCommand) - - .Add("player_setlevel", "Sets the player's specified skill to the specified value.\n\nUsage: player_setlevel \n- skill: the skill to set (one of 'luck', 'mining', 'combat', 'farming', 'fishing', or 'foraging').\n- value: the target level (a number from 1 to 10).", this.HandleCommand) - .Add("player_setspeed", "Sets the player's speed to the specified value?\n\nUsage: player_setspeed \n- value: an integer amount (0 is normal).", this.HandleCommand) - .Add("player_changecolor", "Sets the color of a player feature.\n\nUsage: player_changecolor \n- target: what to change (one of 'hair', 'eyes', or 'pants').\n- color: a color value in RGB format, like (255,255,255).", this.HandleCommand) - .Add("player_changestyle", "Sets the style of a player feature.\n\nUsage: player_changecolor .\n- target: what to change (one of 'hair', 'shirt', 'skin', 'acc', 'shoe', 'swim', or 'gender').\n- value: the integer style ID.", this.HandleCommand) - - .Add("player_additem", $"Gives the player an item.\n\nUsage: player_additem [count] [quality]\n- item: the item ID (use the 'list_items' command to see a list).\n- count (optional): how many of the item to give.\n- quality (optional): one of {Object.lowQuality} (normal), {Object.medQuality} (silver), {Object.highQuality} (gold), or {Object.bestQuality} (iridium).", this.HandleCommand) - .Add("player_addweapon", "Gives the player a weapon.\n\nUsage: player_addweapon \n- item: the weapon ID (use the 'list_items' command to see a list).", this.HandleCommand) - .Add("player_addring", "Gives the player a ring.\n\nUsage: player_addring \n- item: the ring ID (use the 'list_items' command to see a list).", this.HandleCommand) - .Add("player_addwallpaper", "Gives the player a wallpaper.\n\nUsage: player_addwallpaper \n- wallpaper: the wallpaper ID (ranges from 0 to 111).", this.HandleCommand) - .Add("player_addflooring", "Gives the player a flooring.\n\nUsage: player_addflooring \n- flooring: the flooring ID (ranges from 0 to 39).", this.HandleCommand) - - .Add("list_items", "Lists and searches items in the game data.\n\nUsage: list_items [search]\n- search (optional): an arbitrary search string to filter by.", this.HandleCommand) - - .Add("world_freezetime", "Freezes or resumes time.\n\nUsage: world_freezetime [value]\n- value: one of 0 (resume), 1 (freeze), or blank (toggle).", this.HandleCommand) - .Add("world_settime", "Sets the time to the specified value.\n\nUsage: world_settime \n- value: the target time in military time (like 0600 for 6am and 1800 for 6pm)", this.HandleCommand) - .Add("world_setday", "Sets the day to the specified value.\n\nUsage: world_setday .\n- value: the target day (a number from 1 to 28).", this.HandleCommand) - .Add("world_setseason", "Sets the season to the specified value.\n\nUsage: world_setseason \n- season: the target season (one of 'spring', 'summer', 'fall', 'winter').", this.HandleCommand) - .Add("world_setyear", "Sets the year to the specified value.\n\nUsage: world_setyear \n- year: the target year (a number starting from 1).", this.HandleCommand) - .Add("world_downminelevel", "Goes down one mine level?", this.HandleCommand) - .Add("world_setminelevel", "Sets the mine level?\n\nUsage: world_setminelevel \n- value: The target level (a number between 1 and 120).", this.HandleCommand) - - .Add("show_game_files", "Opens the game folder.", this.HandleCommand) - .Add("show_data_files", "Opens the folder containing the save and log files.", this.HandleCommand) - - .Add("debug", "Run one of the game's debug commands; for example, 'debug warp FarmHouse 1 1' warps the player to the farmhouse.", this.HandleCommand); + foreach (ITrainerCommand command in this.Commands) + { + if (command.NeedsUpdate) + command.Update(this.Monitor); + } } /// Handle a TrainerMod command. - /// The command name. + /// The command to invoke. + /// The command name specified by the user. /// The command arguments. - private void HandleCommand(string command, string[] args) + private void HandleCommand(ITrainerCommand command, string commandName, string[] args) { - switch (command) - { - case "debug": - // submit command - string debugCommand = string.Join(" ", args); - string oldOutput = Game1.debugOutput; - Game1.game1.parseDebugInput(debugCommand); - - // show result - this.Monitor.Log(Game1.debugOutput != oldOutput - ? $"> {Game1.debugOutput}" - : "Sent debug command to the game, but there was no output.", LogLevel.Info); - break; - - case "save": - this.Monitor.Log("Saving the game...", LogLevel.Info); - SaveGame.Save(); - break; - - case "load": - this.Monitor.Log("Triggering load menu...", LogLevel.Info); - Game1.hasLoadedGame = false; - Game1.activeClickableMenu = new LoadGameMenu(); - break; - - case "player_setname": - if (args.Length > 1) - { - string target = args[0]; - string[] validTargets = { "player", "farm" }; - if (validTargets.Contains(target)) - { - switch (target) - { - case "player": - Game1.player.Name = args[1]; - this.Monitor.Log($"OK, your player's name is now {Game1.player.Name}.", LogLevel.Info); - break; - case "farm": - Game1.player.farmName = args[1]; - this.Monitor.Log($"OK, your farm's name is now {Game1.player.Name}.", LogLevel.Info); - break; - } - } - else - this.LogArgumentsInvalid(command); - } - else - this.Monitor.Log($"Your name is currently '{Game1.player.Name}'. Type 'help player_setname' for usage.", LogLevel.Info); - break; - - case "player_setmoney": - if (args.Any()) - { - string amountStr = args[0]; - if (amountStr == "inf") - { - this.InfiniteMoney = true; - this.Monitor.Log("OK, you now have infinite money.", LogLevel.Info); - } - else - { - this.InfiniteMoney = false; - int amount; - if (int.TryParse(amountStr, out amount)) - { - Game1.player.Money = amount; - this.Monitor.Log($"OK, you now have {Game1.player.Money} gold.", LogLevel.Info); - } - else - this.LogArgumentNotInt(command); - } - } - else - this.Monitor.Log($"You currently have {(this.InfiniteMoney ? "infinite" : Game1.player.Money.ToString())} gold. Specify a value to change it.", LogLevel.Info); - break; - - case "player_setstamina": - if (args.Any()) - { - string amountStr = args[0]; - if (amountStr == "inf") - { - this.InfiniteStamina = true; - this.Monitor.Log("OK, you now have infinite stamina.", LogLevel.Info); - } - else - { - this.InfiniteStamina = false; - int amount; - if (int.TryParse(amountStr, out amount)) - { - Game1.player.Stamina = amount; - this.Monitor.Log($"OK, you now have {Game1.player.Stamina} stamina.", LogLevel.Info); - } - else - this.LogArgumentNotInt(command); - } - } - else - this.Monitor.Log($"You currently have {(this.InfiniteStamina ? "infinite" : Game1.player.Stamina.ToString())} stamina. Specify a value to change it.", LogLevel.Info); - break; - - case "player_setmaxstamina": - if (args.Any()) - { - int amount; - if (int.TryParse(args[0], out amount)) - { - Game1.player.MaxStamina = amount; - this.Monitor.Log($"OK, you now have {Game1.player.MaxStamina} max stamina.", LogLevel.Info); - } - else - this.LogArgumentNotInt(command); - } - else - this.Monitor.Log($"You currently have {Game1.player.MaxStamina} max stamina. Specify a value to change it.", LogLevel.Info); - break; - - case "player_setlevel": - if (args.Length > 1) - { - string skill = args[0]; - string[] skills = { "luck", "mining", "combat", "farming", "fishing", "foraging" }; - if (skills.Contains(skill)) - { - int level; - if (int.TryParse(args[1], out level)) - { - switch (skill) - { - case "luck": - Game1.player.LuckLevel = level; - this.Monitor.Log($"OK, your luck skill is now {Game1.player.LuckLevel}.", LogLevel.Info); - break; - case "mining": - Game1.player.MiningLevel = level; - this.Monitor.Log($"OK, your mining skill is now {Game1.player.MiningLevel}.", LogLevel.Info); - break; - case "combat": - Game1.player.CombatLevel = level; - this.Monitor.Log($"OK, your combat skill is now {Game1.player.CombatLevel}.", LogLevel.Info); - break; - case "farming": - Game1.player.FarmingLevel = level; - this.Monitor.Log($"OK, your farming skill is now {Game1.player.FarmingLevel}.", LogLevel.Info); - break; - case "fishing": - Game1.player.FishingLevel = level; - this.Monitor.Log($"OK, your fishing skill is now {Game1.player.FishingLevel}.", LogLevel.Info); - break; - case "foraging": - Game1.player.ForagingLevel = level; - this.Monitor.Log($"OK, your foraging skill is now {Game1.player.ForagingLevel}.", LogLevel.Info); - break; - } - } - else - this.LogArgumentNotInt(command); - } - else - this.LogUsageError("That isn't a valid skill.", command); - } - else - this.LogArgumentsInvalid(command); - break; - - case "player_setspeed": - if (args.Any()) - { - int addedSpeed; - if (int.TryParse(args[0], out addedSpeed)) - { - Game1.player.addedSpeed = addedSpeed; - this.Monitor.Log($"OK, your added speed is now {Game1.player.addedSpeed}.", LogLevel.Info); - } - else - this.LogArgumentNotInt(command); - } - else - this.Monitor.Log($"You currently have {Game1.player.addedSpeed} added speed. Specify a value to change it.", LogLevel.Info); - break; - - case "player_changecolor": - if (args.Length > 1) - { - string target = args[0]; - string[] validTargets = { "hair", "eyes", "pants" }; - if (validTargets.Contains(target)) - { - string[] colorHexes = args[1].Split(new[] { ',' }, 3); - int r, g, b; - if (int.TryParse(colorHexes[0], out r) && int.TryParse(colorHexes[1], out g) && int.TryParse(colorHexes[2], out b)) - { - Color color = new Color(r, g, b); - switch (target) - { - case "hair": - Game1.player.hairstyleColor = color; - this.Monitor.Log("OK, your hair color is updated.", LogLevel.Info); - break; - case "eyes": - Game1.player.changeEyeColor(color); - this.Monitor.Log("OK, your eye color is updated.", LogLevel.Info); - break; - case "pants": - Game1.player.pantsColor = color; - this.Monitor.Log("OK, your pants color is updated.", LogLevel.Info); - break; - } - } - else - this.LogUsageError("The color should be an RBG value like '255,150,0'.", command); - } - else - this.LogArgumentsInvalid(command); - } - else - this.LogArgumentsInvalid(command); - break; - - case "player_changestyle": - if (args.Length > 1) - { - string target = args[0]; - string[] validTargets = { "hair", "shirt", "skin", "acc", "shoe", "swim", "gender" }; - if (validTargets.Contains(target)) - { - int styleID; - if (int.TryParse(args[1], out styleID)) - { - switch (target) - { - case "hair": - Game1.player.changeHairStyle(styleID); - this.Monitor.Log("OK, your hair style is updated.", LogLevel.Info); - break; - case "shirt": - Game1.player.changeShirt(styleID); - this.Monitor.Log("OK, your shirt style is updated.", LogLevel.Info); - break; - case "acc": - Game1.player.changeAccessory(styleID); - this.Monitor.Log("OK, your accessory style is updated.", LogLevel.Info); - break; - case "skin": - Game1.player.changeSkinColor(styleID); - this.Monitor.Log("OK, your skin color is updated.", LogLevel.Info); - break; - case "shoe": - Game1.player.changeShoeColor(styleID); - this.Monitor.Log("OK, your shoe style is updated.", LogLevel.Info); - break; - case "swim": - switch (styleID) - { - case 0: - Game1.player.changeOutOfSwimSuit(); - this.Monitor.Log("OK, you're no longer in your swimming suit.", LogLevel.Info); - break; - case 1: - Game1.player.changeIntoSwimsuit(); - this.Monitor.Log("OK, you're now in your swimming suit.", LogLevel.Info); - break; - default: - this.LogUsageError("The swim value should be 0 (no swimming suit) or 1 (swimming suit).", command); - break; - } - break; - case "gender": - switch (styleID) - { - case 0: - Game1.player.changeGender(true); - this.Monitor.Log("OK, you're now male.", LogLevel.Info); - break; - case 1: - Game1.player.changeGender(false); - this.Monitor.Log("OK, you're now female.", LogLevel.Info); - break; - default: - this.LogUsageError("The gender value should be 0 (male) or 1 (female).", command); - break; - } - break; - } - } - else - this.LogArgumentsInvalid(command); - } - else - this.LogArgumentsInvalid(command); - } - else - this.LogArgumentsInvalid(command); - break; - - case "world_freezetime": - if (args.Any()) - { - int value; - if (int.TryParse(args[0], out value)) - { - if (value == 0 || value == 1) - { - this.FreezeTime = value == 1; - this.FrozenTime = this.FreezeTime ? Game1.timeOfDay : 0; - this.Monitor.Log($"OK, time is now {(this.FreezeTime ? "frozen" : "resumed")}.", LogLevel.Info); - } - else - this.LogUsageError("The value should be 0 (not frozen), 1 (frozen), or empty (toggle).", command); - } - else - this.LogArgumentNotInt(command); - } - else - { - this.FreezeTime = !this.FreezeTime; - this.FrozenTime = this.FreezeTime ? Game1.timeOfDay : 0; - this.Monitor.Log($"OK, time is now {(this.FreezeTime ? "frozen" : "resumed")}.", LogLevel.Info); - } - break; - - case "world_settime": - if (args.Any()) - { - int time; - if (int.TryParse(args[0], out time)) - { - if (time <= 2600 && time >= 600) - { - Game1.timeOfDay = time; - this.FrozenTime = this.FreezeTime ? Game1.timeOfDay : 0; - this.Monitor.Log($"OK, the time is now {Game1.timeOfDay.ToString().PadLeft(4, '0')}.", LogLevel.Info); - } - else - this.LogUsageError("That isn't a valid time.", command); - } - else - this.LogArgumentNotInt(command); - } - else - this.Monitor.Log($"The current time is {Game1.timeOfDay}. Specify a value to change it.", LogLevel.Info); - break; - - case "world_setday": - if (args.Any()) - { - int day; - if (int.TryParse(args[0], out day)) - { - if (day <= 28 && day > 0) - { - Game1.dayOfMonth = day; - this.Monitor.Log($"OK, the date is now {Game1.currentSeason} {Game1.dayOfMonth}.", LogLevel.Info); - } - else - this.LogUsageError("That isn't a valid day.", command); - } - else - this.LogArgumentNotInt(command); - } - else - this.Monitor.Log($"The current date is {Game1.currentSeason} {Game1.dayOfMonth}. Specify a value to change the day.", LogLevel.Info); - break; - - case "world_setseason": - if (args.Any()) - { - string season = args[0]; - string[] validSeasons = { "winter", "spring", "summer", "fall" }; - if (validSeasons.Contains(season)) - { - Game1.currentSeason = season; - this.Monitor.Log($"OK, the date is now {Game1.currentSeason} {Game1.dayOfMonth}.", LogLevel.Info); - } - else - this.LogUsageError("That isn't a valid season name.", command); - } - else - this.Monitor.Log($"The current season is {Game1.currentSeason}. Specify a value to change it.", LogLevel.Info); - break; - - case "world_setyear": - if (args.Any()) - { - int year; - if (int.TryParse(args[0], out year)) - { - if (year >= 1) - { - Game1.year = year; - this.Monitor.Log($"OK, the year is now {Game1.year}.", LogLevel.Info); - } - else - this.LogUsageError("That isn't a valid year.", command); - } - else - this.LogArgumentNotInt(command); - } - else - this.Monitor.Log($"The current year is {Game1.year}. Specify a value to change the year.", LogLevel.Info); - break; - - case "player_sethealth": - if (args.Any()) - { - string amountStr = args[0]; - - if (amountStr == "inf") - { - this.InfiniteHealth = true; - this.Monitor.Log("OK, you now have infinite health.", LogLevel.Info); - } - else - { - this.InfiniteHealth = false; - int amount; - if (int.TryParse(amountStr, out amount)) - { - Game1.player.health = amount; - this.Monitor.Log($"OK, you now have {Game1.player.health} health.", LogLevel.Info); - } - else - this.LogArgumentNotInt(command); - } - } - else - this.Monitor.Log($"You currently have {(this.InfiniteHealth ? "infinite" : Game1.player.health.ToString())} health. Specify a value to change it.", LogLevel.Info); - break; - - case "player_setmaxhealth": - if (args.Any()) - { - int maxHealth; - if (int.TryParse(args[0], out maxHealth)) - { - Game1.player.maxHealth = maxHealth; - this.Monitor.Log($"OK, you now have {Game1.player.maxHealth} max health.", LogLevel.Info); - } - else - this.LogArgumentNotInt(command); - } - else - this.Monitor.Log($"You currently have {Game1.player.maxHealth} max health. Specify a value to change it.", LogLevel.Info); - break; - - case "player_setimmunity": - if (args.Any()) - { - int amount; - if (int.TryParse(args[0], out amount)) - { - Game1.player.immunity = amount; - this.Monitor.Log($"OK, you now have {Game1.player.immunity} immunity.", LogLevel.Info); - } - else - this.LogArgumentNotInt(command); - } - else - this.Monitor.Log($"You currently have {Game1.player.immunity} immunity. Specify a value to change it.", LogLevel.Info); - break; - - case "player_additem": - if (args.Any()) - { - int itemID; - if (int.TryParse(args[0], out itemID)) - { - int count = 1; - int quality = 0; - if (args.Length > 1) - { - if (!int.TryParse(args[1], out count)) - { - this.LogUsageError("The optional count is invalid.", command); - return; - } - - if (args.Length > 2 && !int.TryParse(args[2], out quality)) - { - this.LogUsageError("The optional quality is invalid.", command); - return; - } - } - - var item = new Object(itemID, count) { quality = quality }; - if (item.Name == "Error Item") - this.Monitor.Log("There is no such item ID.", LogLevel.Error); - else - { - Game1.player.addItemByMenuIfNecessary(item); - this.Monitor.Log($"OK, added {item.Name} to your inventory.", LogLevel.Info); - } - } - else - this.LogUsageError("The item ID must be an integer.", command); - } - else - this.LogArgumentsInvalid(command); - break; - - case "player_addweapon": - if (args.Any()) - { - int weaponID; - if (int.TryParse(args[0], out weaponID)) - { - // get raw weapon data - string data; - if (!Game1.content.Load>("Data\\weapons").TryGetValue(weaponID, out data)) - { - this.Monitor.Log("There is no such weapon ID.", LogLevel.Error); - return; - } - - // get raw weapon type - int type; - { - string[] fields = data.Split('/'); - string typeStr = fields.Length > 8 ? fields[8] : null; - if (!int.TryParse(typeStr, out type)) - { - this.Monitor.Log("Could not parse the data for the weapon with that ID.", LogLevel.Error); - return; - } - } - - // get weapon - Tool weapon; - switch (type) - { - case MeleeWeapon.stabbingSword: - case MeleeWeapon.dagger: - case MeleeWeapon.club: - case MeleeWeapon.defenseSword: - weapon = new MeleeWeapon(weaponID); - break; - - case 4: - weapon = new Slingshot(weaponID); - break; - - default: - this.Monitor.Log($"The specified weapon has unknown type '{type}' in the game data.", LogLevel.Error); - return; - } - - // validate - if (weapon.Name == null) - { - this.Monitor.Log("That weapon doesn't seem to be valid.", LogLevel.Error); - return; - } - - // add weapon - Game1.player.addItemByMenuIfNecessary(weapon); - this.Monitor.Log($"OK, added {weapon.Name} to your inventory.", LogLevel.Info); - } - else - this.LogUsageError("The weapon ID must be an integer.", command); - } - else - this.LogArgumentsInvalid(command); - break; - - case "player_addring": - if (args.Any()) - { - int ringID; - if (int.TryParse(args[0], out ringID)) - { - if (ringID < Ring.ringLowerIndexRange || ringID > Ring.ringUpperIndexRange) - this.Monitor.Log($"There is no such ring ID (must be between {Ring.ringLowerIndexRange} and {Ring.ringUpperIndexRange}).", LogLevel.Error); - else - { - Ring ring = new Ring(ringID); - Game1.player.addItemByMenuIfNecessary(ring); - this.Monitor.Log($"OK, added {ring.Name} to your inventory.", LogLevel.Info); - } - } - else - this.Monitor.Log(" is invalid", LogLevel.Error); - } - else - this.LogArgumentsInvalid(command); - break; - - case "player_addwallpaper": - case "player_addflooring": - if (args.Any()) - { - string type = command.Substring(10); - int wallpaperID; - if (int.TryParse(args[0], out wallpaperID)) - { - int upperID = type == "wallpaper" ? 111 : 39; - if (wallpaperID < 0 || wallpaperID > upperID) - this.Monitor.Log($"There is no such {type} ID (must be between 0 and {upperID}).", LogLevel.Error); - else - { - Wallpaper wallpaper = new Wallpaper(wallpaperID, type == "flooring" ); - Game1.player.addItemByMenuIfNecessary(wallpaper); - this.Monitor.Log($"OK, added {type} {wallpaperID} to your inventory.", LogLevel.Info); - } - } - else - this.Monitor.Log($"<{type}> is invalid", LogLevel.Error); - } - else - this.LogArgumentsInvalid(command); - break; - - case "list_items": - { - var matches = this.GetItems(args).ToArray(); - - // show matches - string summary = "Searching...\n"; - if (matches.Any()) - this.Monitor.Log(summary + this.GetTableString(matches, new[] { "type", "id", "name" }, val => new[] { val.Type.ToString(), val.ID.ToString(), val.Name }), LogLevel.Info); - else - this.Monitor.Log(summary + "No items found", LogLevel.Info); - } - break; - - case "world_downminelevel": - { - int level = (Game1.currentLocation as MineShaft)?.mineLevel ?? 0; - this.Monitor.Log($"OK, warping you to mine level {level + 1}.", LogLevel.Info); - Game1.enterMine(false, level + 1, ""); - break; - } - - case "world_setminelevel": - if (args.Any()) - { - int level; - if (int.TryParse(args[0], out level)) - { - level = Math.Max(1, level); - this.Monitor.Log($"OK, warping you to mine level {level}.", LogLevel.Info); - Game1.enterMine(true, level, ""); - } - else - this.LogArgumentNotInt(command); - } - else - this.LogArgumentsInvalid(command); - break; - - case "show_game_files": - Process.Start(Constants.ExecutionPath); - this.Monitor.Log($"OK, opening {Constants.ExecutionPath}.", LogLevel.Info); - break; - - case "show_data_files": - Process.Start(Constants.DataPath); - this.Monitor.Log($"OK, opening {Constants.DataPath}.", LogLevel.Info); - break; - - default: - throw new NotImplementedException($"TrainerMod received unknown command '{command}'."); - } + command.Handle(this.Monitor, commandName, args); } - /**** - ** Helpers - ****/ - /// Get all items which can be searched and added to the player's inventory through the console. - /// The search string to find. - private IEnumerable GetItems(string[] searchWords) + /// Find all commands in the assembly. + private IEnumerable ScanForCommands() { - // normalise search term - searchWords = searchWords?.Where(word => !string.IsNullOrWhiteSpace(word)).ToArray(); - if (searchWords?.Any() == false) - searchWords = null; - - // find matches return ( - from item in this.GetItems() - let term = $"{item.ID}|{item.Type}|{item.Name}" - where searchWords == null || searchWords.All(word => term.IndexOf(word, StringComparison.CurrentCultureIgnoreCase) != -1) - select item - ); - } - - /// Get all items which can be searched and added to the player's inventory through the console. - private IEnumerable GetItems() - { - // objects - foreach (int id in Game1.objectInformation.Keys) - { - ISearchItem obj = id >= Ring.ringLowerIndexRange && id <= Ring.ringUpperIndexRange - ? new SearchableRing(id) - : (ISearchItem)new SearchableObject(id); - if (obj.IsValid) - yield return obj; - } - - // weapons - foreach (int id in Game1.content.Load>("Data\\weapons").Keys) - { - ISearchItem weapon = new SearchableWeapon(id); - if (weapon.IsValid) - yield return weapon; - } - } - - /// Get an ASCII table for a set of tabular data. - /// The data type. - /// The data to display. - /// The table header. - /// Returns a set of fields for a data value. - private string GetTableString(IEnumerable data, string[] header, Func getRow) - { - // get table data - int[] widths = header.Select(p => p.Length).ToArray(); - string[][] rows = data - .Select(item => - { - string[] fields = getRow(item); - if (fields.Length != widths.Length) - throw new InvalidOperationException($"Expected {widths.Length} columns, but found {fields.Length}: {string.Join(", ", fields)}"); - - for (int i = 0; i < fields.Length; i++) - widths[i] = Math.Max(widths[i], fields[i].Length); - - return fields; - }) - .ToArray(); - - // render fields - List lines = new List(rows.Length + 2) - { - header, - header.Select((value, i) => "".PadRight(widths[i], '-')).ToArray() - }; - lines.AddRange(rows); - - return string.Join( - Environment.NewLine, - lines.Select(line => string.Join(" | ", - line.Select((field, i) => field.PadRight(widths[i], ' ')).ToArray()) - ) + from type in this.GetType().Assembly.GetTypes() + where !type.IsAbstract && typeof(ITrainerCommand).IsAssignableFrom(type) + select (ITrainerCommand)Activator.CreateInstance(type) ); } - - /**** - ** Logging - ****/ - /// Log an error indicating incorrect usage. - /// A sentence explaining the problem. - /// The name of the command. - private void LogUsageError(string error, string command) - { - this.Monitor.Log($"{error} Type 'help {command}' for usage.", LogLevel.Error); - } - - /// Log an error indicating a value must be an integer. - /// The name of the command. - private void LogArgumentNotInt(string command) - { - this.LogUsageError("The value must be a whole number.", command); - } - - /// Log an error indicating a value is invalid. - /// The name of the command. - private void LogArgumentsInvalid(string command) - { - this.LogUsageError("The arguments are invalid.", command); - } } } diff --git a/src/TrainerMod/TrainerMod.csproj b/src/TrainerMod/TrainerMod.csproj index 46d8bef9..1702c577 100644 --- a/src/TrainerMod/TrainerMod.csproj +++ b/src/TrainerMod/TrainerMod.csproj @@ -51,11 +51,42 @@ Properties\GlobalAssemblyInfo.cs - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + -- cgit