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, ArgumentParser args) { // no-argument mode if (!args.Any()) { monitor.Log($"The current season is {Game1.currentSeason}. Specify a value to change it.", LogLevel.Info); return; } // parse arguments if (!args.TryGet(0, "season", out string season, oneOf: this.ValidSeasons)) return; // handle Game1.currentSeason = season; monitor.Log($"OK, the date is now {Game1.currentSeason} {Game1.dayOfMonth}.", LogLevel.Info); } } }