2016-03-07 05:58:40 +08:00
|
|
|
|
using System;
|
|
|
|
|
using System.IO;
|
|
|
|
|
using System.Reflection;
|
2016-03-23 08:36:04 +08:00
|
|
|
|
using StardewValley;
|
2016-03-07 05:58:40 +08:00
|
|
|
|
|
|
|
|
|
namespace StardewModdingAPI
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Static class containing readonly values.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public static class Constants
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
2016-03-23 08:36:04 +08:00
|
|
|
|
/// Stardew Valley's roaming app data location.
|
|
|
|
|
/// %AppData%//StardewValley
|
2016-03-07 05:58:40 +08:00
|
|
|
|
/// </summary>
|
2016-03-07 06:04:22 +08:00
|
|
|
|
public static string DataPath => Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData), "StardewValley");
|
2016-03-07 05:58:40 +08:00
|
|
|
|
|
2016-03-23 08:36:04 +08:00
|
|
|
|
public static string SavesPath => Path.Combine(DataPath, "Saves");
|
|
|
|
|
|
|
|
|
|
private static string saveFolderName => PlayerNull ? string.Empty : Game1.player.name.RemoveNumerics() + "_" + Game1.uniqueIDForThisGame;
|
|
|
|
|
public static string SaveFolderName => CurrentSavePathExists ? saveFolderName : "";
|
|
|
|
|
|
|
|
|
|
private static string currentSavePath => PlayerNull ? string.Empty : Path.Combine(SavesPath, saveFolderName);
|
|
|
|
|
public static string CurrentSavePath => CurrentSavePathExists ? currentSavePath : "";
|
|
|
|
|
|
|
|
|
|
public static bool CurrentSavePathExists => Directory.Exists(currentSavePath);
|
|
|
|
|
|
|
|
|
|
public static bool PlayerNull => !Game1.hasLoadedGame || Game1.player == null || string.IsNullOrEmpty(Game1.player.name);
|
|
|
|
|
|
2016-03-07 05:58:40 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Execution path to execute the code.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public static string ExecutionPath => Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location);
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Title for the API console
|
|
|
|
|
/// </summary>
|
2016-03-24 01:43:11 +08:00
|
|
|
|
public static string ConsoleTitle => $"Stardew Modding API Console - Version {Version.VersionString} - Mods Loaded: {ModsLoaded}";
|
2016-03-07 05:58:40 +08:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Path for log files to be output to.
|
|
|
|
|
/// %LocalAppData%//StardewValley//ErrorLogs
|
|
|
|
|
/// </summary>
|
2016-03-07 06:04:22 +08:00
|
|
|
|
public static string LogPath => Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData), "StardewValley", "ErrorLogs");
|
2016-03-07 05:58:40 +08:00
|
|
|
|
|
2016-03-24 04:43:36 +08:00
|
|
|
|
public static readonly Version Version = new Version(0, 39, 2, "Alpha");
|
2016-03-23 08:36:04 +08:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Not quite "constant", but it makes more sense for it to be here, at least for now
|
|
|
|
|
/// </summary>
|
|
|
|
|
public static int ModsLoaded = 0;
|
2016-03-07 05:58:40 +08:00
|
|
|
|
}
|
|
|
|
|
}
|