summaryrefslogtreecommitdiff
path: root/src/SMAPI/Enums/LoadStage.cs
blob: 302c263bd8a61798132f1a00700aa7e886ec9986 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
namespace StardewModdingAPI.Enums
{
    /// <summary>A low-level stage in the game's loading process.</summary>
    public enum LoadStage
    {
        /// <summary>A save is not loaded or loading.</summary>
        None = 0,

        /// <summary>The game is creating a new save slot, and has initialized the basic save info.</summary>
        CreatedBasicInfo = 1,

        /// <summary>The game is creating a new save slot, and has added the location instances but hasn't fully initialized them yet.</summary>
        CreatedInitialLocations = 10,

        /// <summary>The game is creating a new save slot, and has initialized the in-game locations.</summary>
        CreatedLocations = 2,

        /// <summary>The game is creating a new save slot, and has created the physical save files.</summary>
        CreatedSaveFile = 3,

        /// <summary>The game is loading a save slot, and has read the raw save data into <see cref="StardewValley.SaveGame.loaded"/>. Not applicable when connecting to a multiplayer host. This is equivalent to <see cref="StardewValley.SaveGame.getLoadEnumerator"/> value 20.</summary>
        SaveParsed = 4,

        /// <summary>The game is loading a save slot, and has applied the basic save info (including player data). Not applicable when connecting to a multiplayer host. Note that some basic info (like daily luck) is not initialized at this point. This is equivalent to <see cref="StardewValley.SaveGame.getLoadEnumerator"/> value 36.</summary>
        SaveLoadedBasicInfo = 5,

        /// <summary>The game is loading a save slot and has added the location instances, but hasn't restored their save data yet. Not applicable when connecting to a multiplayer host.</summary>
        SaveAddedLocations = 11,

        /// <summary>The game is loading a save slot, and has restored the in-game location data. Not applicable when connecting to a multiplayer host. This is equivalent to <see cref="StardewValley.SaveGame.getLoadEnumerator"/> value 50.</summary>
        SaveLoadedLocations = 6,

        /// <summary>The final metadata has been loaded from the save file. This happens before the game applies problem fixes, checks for achievements, starts music, etc. Not applicable when connecting to a multiplayer host.</summary>
        Preloaded = 7,

        /// <summary>The save is fully loaded, but the world may not be fully initialized yet.</summary>
        Loaded = 8,

        /// <summary>The save is fully loaded, the world has been initialized, and <see cref="Context.IsWorldReady"/> is now true.</summary>
        Ready = 9,

        /// <summary>The game is exiting the loaded save and returning to the title screen. This happens before it returns to title; see <see cref="None"/> after it returns.</summary>
        ReturningToTitle = 12
    }
}