diff options
author | Jesse Plamondon-Willard <github@jplamondonw.com> | 2018-04-13 22:41:34 -0400 |
---|---|---|
committer | Jesse Plamondon-Willard <github@jplamondonw.com> | 2018-04-13 22:41:34 -0400 |
commit | a3ade7a5126642f42794281057349fa5ff737cdd (patch) | |
tree | 0d0401dc56efe835f58d6001bf3e871e2197418c /src/SMAPI/Framework/Models | |
parent | 5997857064f4d6bb0747e84e1dbd1556c97b7481 (diff) | |
download | SMAPI-a3ade7a5126642f42794281057349fa5ff737cdd.tar.gz SMAPI-a3ade7a5126642f42794281057349fa5ff737cdd.tar.bz2 SMAPI-a3ade7a5126642f42794281057349fa5ff737cdd.zip |
split mod DB into a separate file
The mod metadata has grown over time, and there's no need to keep it in memory after mod loading. This lets us load the config earlier (since it has a smaller impact on memory usage which affects the game's audio code), and lets us discard the mod metadata when we're done with it.
Diffstat (limited to 'src/SMAPI/Framework/Models')
-rw-r--r-- | src/SMAPI/Framework/Models/SConfig.cs | 6 | ||||
-rw-r--r-- | src/SMAPI/Framework/Models/SMetadata.cs | 15 |
2 files changed, 15 insertions, 6 deletions
diff --git a/src/SMAPI/Framework/Models/SConfig.cs b/src/SMAPI/Framework/Models/SConfig.cs index 17169714..2d6da0fa 100644 --- a/src/SMAPI/Framework/Models/SConfig.cs +++ b/src/SMAPI/Framework/Models/SConfig.cs @@ -1,6 +1,3 @@ -using System.Collections.Generic; -using StardewModdingAPI.Framework.ModData; - namespace StardewModdingAPI.Framework.Models { /// <summary>The SMAPI configuration settings.</summary> @@ -23,8 +20,5 @@ namespace StardewModdingAPI.Framework.Models /// <summary>Whether SMAPI should log more information about the game context.</summary> public bool VerboseLogging { get; set; } - - /// <summary>Extra metadata about mods.</summary> - public IDictionary<string, ModDataRecord> ModData { get; set; } } } diff --git a/src/SMAPI/Framework/Models/SMetadata.cs b/src/SMAPI/Framework/Models/SMetadata.cs new file mode 100644 index 00000000..9ff495e9 --- /dev/null +++ b/src/SMAPI/Framework/Models/SMetadata.cs @@ -0,0 +1,15 @@ +using System.Collections.Generic; +using StardewModdingAPI.Framework.ModData; + +namespace StardewModdingAPI.Framework.Models +{ + /// <summary>The SMAPI predefined metadata.</summary> + internal class SMetadata + { + /******** + ** Accessors + ********/ + /// <summary>Extra metadata about mods.</summary> + public IDictionary<string, ModDataRecord> ModData { get; set; } + } +} |