using System; using System.Collections.Generic; using System.Globalization; using System.IO; using System.Linq; using Microsoft.Xna.Framework; using Microsoft.Xna.Framework.Content; using Microsoft.Xna.Framework.Graphics; using StardewModdingAPI.AssemblyRewriters; using StardewModdingAPI.Framework.Content; using StardewModdingAPI.Framework.Reflection; using StardewValley; using StardewValley.BellsAndWhistles; using StardewValley.Objects; using StardewValley.Projectiles; namespace StardewModdingAPI.Framework { /// SMAPI's implementation of the game's content manager which lets it raise content events. internal class SContentManager : LocalizedContentManager { /********* ** Properties *********/ /// The possible directory separator characters in an asset key. private static readonly char[] PossiblePathSeparators = new[] { '/', '\\', Path.DirectorySeparatorChar, Path.AltDirectorySeparatorChar }.Distinct().ToArray(); /// The preferred directory separator chaeacter in an asset key. private static readonly string PreferredPathSeparator = Path.DirectorySeparatorChar.ToString(); /// Encapsulates monitoring and logging. private readonly IMonitor Monitor; /// The underlying content manager's asset cache. private readonly IDictionary Cache; /// Applies platform-specific asset key normalisation so it's consistent with the underlying cache. private readonly Func NormaliseAssetNameForPlatform; /// The private method which generates the locale portion of an asset name. private readonly IPrivateMethod GetKeyLocale; /********* ** Accessors *********/ /// Implementations which change assets after they're loaded. internal IDictionary> Editors { get; } = new Dictionary>(); /// The absolute path to the . public string FullRootDirectory => Path.Combine(Constants.ExecutionPath, this.RootDirectory); /********* ** Public methods *********/ /// Construct an instance. /// The service provider to use to locate services. /// The root directory to search for content. /// The current culture for which to localise content. /// The current language code for which to localise content. /// Encapsulates monitoring and logging. public SContentManager(IServiceProvider serviceProvider, string rootDirectory, CultureInfo currentCulture, string languageCodeOverride, IMonitor monitor) : base(serviceProvider, rootDirectory, currentCulture, languageCodeOverride) { // validate if (monitor == null) throw new ArgumentNullException(nameof(monitor)); // initialise IReflectionHelper reflection = new ReflectionHelper(); this.Monitor = monitor; // get underlying fields for interception this.Cache = reflection.GetPrivateField>(this, "loadedAssets").GetValue(); this.GetKeyLocale = reflection.GetPrivateMethod(this, "languageCode"); // get asset key normalisation logic if (Constants.TargetPlatform == Platform.Windows) { IPrivateMethod method = reflection.GetPrivateMethod(typeof(TitleContainer), "GetCleanPath"); this.NormaliseAssetNameForPlatform = path => method.Invoke(path); } else this.NormaliseAssetNameForPlatform = key => key.Replace('\\', '/'); // based on MonoGame's ContentManager.Load logic } /// Normalise path separators in a file path. For asset keys, see instead. /// The file path to normalise. public string NormalisePathSeparators(string path) { string[] parts = path.Split(SContentManager.PossiblePathSeparators, StringSplitOptions.RemoveEmptyEntries); string normalised = string.Join(SContentManager.PreferredPathSeparator, parts); if (path.StartsWith(SContentManager.PreferredPathSeparator)) normalised = SContentManager.PreferredPathSeparator + normalised; // keep root slash return normalised; } /// Normalise an asset name so it's consistent with the underlying cache. /// The asset key. public string NormaliseAssetName(string assetName) { assetName = this.NormalisePathSeparators(assetName); if (assetName.EndsWith(".xnb", StringComparison.InvariantCultureIgnoreCase)) return assetName.Substring(0, assetName.Length - 4); return this.NormaliseAssetNameForPlatform(assetName); } /// Get whether the content manager has already loaded and cached the given asset. /// The asset path relative to the loader root directory, not including the .xnb extension. public bool IsLoaded(string assetName) { assetName = this.NormaliseAssetName(assetName); return this.IsNormalisedKeyLoaded(assetName); } /// Load an asset that has been processed by the content pipeline. /// The type of asset to load. /// The asset path relative to the loader root directory, not including the .xnb extension. public override T Load(string assetName) { assetName = this.NormaliseAssetName(assetName); // skip if already loaded if (this.IsNormalisedKeyLoaded(assetName)) return base.Load(assetName); // load asset T asset = this.GetAssetWithInterceptors(this.GetLocale(), assetName, () => base.Load(assetName)); this.Cache[assetName] = asset; return asset; } /// Inject an asset into the cache. /// The type of asset to inject. /// The asset path relative to the loader root directory, not including the .xnb extension. /// The asset value. public void Inject(string assetName, T value) { assetName = this.NormaliseAssetName(assetName); this.Cache[assetName] = value; } /// Get the current content locale. public string GetLocale() { return this.GetKeyLocale.Invoke(); } /// Reset the asset cache and reload the game's static assets. /// This implementation is derived from . public void Reset() { this.Monitor.Log("Resetting asset cache...", LogLevel.Trace); this.Cache.Clear(); // from Game1.LoadContent Game1.daybg = this.Load("LooseSprites\\daybg"); Game1.nightbg = this.Load("LooseSprites\\nightbg"); Game1.menuTexture = this.Load("Maps\\MenuTiles"); Game1.lantern = this.Load("LooseSprites\\Lighting\\lantern"); Game1.windowLight = this.Load("LooseSprites\\Lighting\\windowLight"); Game1.sconceLight = this.Load("LooseSprites\\Lighting\\sconceLight"); Game1.cauldronLight = this.Load("LooseSprites\\Lighting\\greenLight"); Game1.indoorWindowLight = this.Load("LooseSprites\\Lighting\\indoorWindowLight"); Game1.shadowTexture = this.Load("LooseSprites\\shadow"); Game1.mouseCursors = this.Load("LooseSprites\\Cursors"); Game1.controllerMaps = this.Load("LooseSprites\\ControllerMaps"); Game1.animations = this.Load("TileSheets\\animations"); Game1.achievements = this.Load>("Data\\Achievements"); Game1.NPCGiftTastes = this.Load>("Data\\NPCGiftTastes"); Game1.dialogueFont = this.Load("Fonts\\SpriteFont1"); Game1.smallFont = this.Load("Fonts\\SmallFont"); Game1.tinyFont = this.Load("Fonts\\tinyFont"); Game1.tinyFontBorder = this.Load("Fonts\\tinyFontBorder"); Game1.objectSpriteSheet = this.Load("Maps\\springobjects"); Game1.cropSpriteSheet = this.Load("TileSheets\\crops"); Game1.emoteSpriteSheet = this.Load("TileSheets\\emotes"); Game1.debrisSpriteSheet = this.Load("TileSheets\\debris"); Game1.bigCraftableSpriteSheet = this.Load("TileSheets\\Craftables"); Game1.rainTexture = this.Load("TileSheets\\rain"); Game1.buffsIcons = this.Load("TileSheets\\BuffsIcons"); Game1.objectInformation = this.Load>("Data\\ObjectInformation"); Game1.bigCraftablesInformation = this.Load>("Data\\BigCraftablesInformation"); FarmerRenderer.hairStylesTexture = this.Load("Characters\\Farmer\\hairstyles"); FarmerRenderer.shirtsTexture = this.Load("Characters\\Farmer\\shirts"); FarmerRenderer.hatsTexture = this.Load("Characters\\Farmer\\hats"); FarmerRenderer.accessoriesTexture = this.Load("Characters\\Farmer\\accessories"); Furniture.furnitureTexture = this.Load("TileSheets\\furniture"); SpriteText.spriteTexture = this.Load("LooseSprites\\font_bold"); SpriteText.coloredTexture = this.Load("LooseSprites\\font_colored"); Tool.weaponsTexture = this.Load("TileSheets\\weapons"); Projectile.projectileSheet = this.Load("TileSheets\\Projectiles"); // from Farmer constructor if (Game1.player != null) Game1.player.FarmerRenderer = new FarmerRenderer(this.Load($"Characters\\Farmer\\farmer_" + (Game1.player.isMale ? "" : "girl_") + "base")); } /********* ** Private methods *********/ /// Get whether an asset has already been loaded. /// The normalised asset name. private bool IsNormalisedKeyLoaded(string normalisedAssetName) { return this.Cache.ContainsKey(normalisedAssetName) || this.Cache.ContainsKey($"{normalisedAssetName}.{this.GetKeyLocale.Invoke()}"); // translated asset } /// Read an asset with support for asset interceptors. /// The asset type. /// The current content locale. /// The normalised asset path relative to the loader root directory, not including the .xnb extension. /// Get the asset from the underlying content manager. private T GetAssetWithInterceptors(string locale, string normalisedKey, Func getData) { // get metadata IAssetInfo info = new AssetInfo(locale, normalisedKey, typeof(T), this.NormaliseAssetName); // edit asset IAssetData data = this.GetAssetData(info, getData()); foreach (var entry in this.GetAssetEditors()) { // check for match IModMetadata mod = entry.Mod; IAssetEditor editor = entry.Editor; if (!editor.CanEdit(info)) continue; // try edit this.Monitor.Log($"{mod.DisplayName} intercepted {info.AssetName}.", LogLevel.Trace); object prevAsset = data.Data; editor.Edit(data); // validate edit if (data.Data == null) { data = this.GetAssetData(info, prevAsset); this.Monitor.Log($"{mod.DisplayName} incorrectly set asset '{normalisedKey}' to a null value; ignoring override.", LogLevel.Warn); } else if (!(data.Data is T)) { data = this.GetAssetData(info, prevAsset); this.Monitor.Log($"{mod.DisplayName} incorrectly set asset '{normalisedKey}' to incompatible type '{data.Data.GetType()}', expected '{typeof(T)}'; ignoring override.", LogLevel.Warn); } } // return result return (T)data.Data; } /// Get an asset edit helper. /// The asset info. /// The loaded asset data. private IAssetData GetAssetData(IAssetInfo info, object asset) { return new AssetDataForObject(info.Locale, info.AssetName, asset, this.NormaliseAssetName); } /// Get all registered asset editors. private IEnumerable<(IModMetadata Mod, IAssetEditor Editor)> GetAssetEditors() { foreach (var entry in this.Editors) { IModMetadata metadata = entry.Key; IList editors = entry.Value; // special case if mod implements interface // ReSharper disable once SuspiciousTypeConversion.Global if (metadata.Mod is IAssetEditor modAsEditor) yield return (metadata, modAsEditor); // registered editors foreach (IAssetEditor editor in editors) yield return (metadata, editor); } } } }