summaryrefslogtreecommitdiff
path: root/src/SMAPI/Events/TimeEvents.cs
blob: cca6a0568ae03576422ce54e403720b9bdae7d80 (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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
using System;
using StardewModdingAPI.Framework;
using StardewModdingAPI.Framework.Events;

namespace StardewModdingAPI.Events
{
    /// <summary>Events raised when the in-game date or time changes.</summary>
    [Obsolete("Use " + nameof(Mod.Helper) + "." + nameof(IModHelper.Events) + " instead. See https://smapi.io/3.0 for more info.")]
    public static class TimeEvents
    {
        /*********
        ** Properties
        *********/
        /// <summary>The core event manager.</summary>
        private static EventManager EventManager;

        /// <summary>Manages deprecation warnings.</summary>
        private static DeprecationManager DeprecationManager;


        /*********
        ** Events
        *********/
        /// <summary>Raised after the game begins a new day, including when loading a save.</summary>
        public static event EventHandler AfterDayStarted
        {
            add
            {
                TimeEvents.DeprecationManager.WarnForOldEvents();
                TimeEvents.EventManager.Legacy_AfterDayStarted.Add(value);
            }
            remove => TimeEvents.EventManager.Legacy_AfterDayStarted.Remove(value);
        }

        /// <summary>Raised after the in-game clock changes.</summary>
        public static event EventHandler<EventArgsIntChanged> TimeOfDayChanged
        {
            add
            {
                TimeEvents.DeprecationManager.WarnForOldEvents();
                TimeEvents.EventManager.Legacy_TimeOfDayChanged.Add(value);
            }
            remove => TimeEvents.EventManager.Legacy_TimeOfDayChanged.Remove(value);
        }


        /*********
        ** Public methods
        *********/
        /// <summary>Initialise the events.</summary>
        /// <param name="eventManager">The core event manager.</param>
        /// <param name="deprecationManager">Manages deprecation warnings.</param>
        internal static void Init(EventManager eventManager, DeprecationManager deprecationManager)
        {
            TimeEvents.EventManager = eventManager;
            TimeEvents.DeprecationManager = deprecationManager;
        }
    }
}