summaryrefslogtreecommitdiff
path: root/src/SMAPI/Framework/StateTracking/FieldWatchers/WatcherFactory.cs
blob: a4982faa513733b3764991494a7eb34afba47c6c (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
60
61
62
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using Netcode;
using StardewModdingAPI.Framework.StateTracking.Comparers;

namespace StardewModdingAPI.Framework.StateTracking.FieldWatchers
{
    /// <summary>Provides convenience wrappers for creating watchers.</summary>
    internal static class WatcherFactory
    {
        /*********
        ** Public methods
        *********/
        /// <summary>Get a watcher for an <see cref="IEquatable{T}"/> value.</summary>
        /// <typeparam name="T">The value type.</typeparam>
        /// <param name="getValue">Get the current value.</param>
        public static ComparableWatcher<T> ForEquatable<T>(Func<T> getValue) where T : IEquatable<T>
        {
            return new ComparableWatcher<T>(getValue, new EquatableComparer<T>());
        }

        /// <summary>Get a watcher which detects when an object reference changes.</summary>
        /// <typeparam name="T">The value type.</typeparam>
        /// <param name="getValue">Get the current value.</param>
        public static ComparableWatcher<T> ForReference<T>(Func<T> getValue)
        {
            return new ComparableWatcher<T>(getValue, new ObjectReferenceComparer<T>());
        }

        /// <summary>Get a watcher for an observable collection.</summary>
        /// <typeparam name="T">The value type.</typeparam>
        /// <param name="collection">The observable collection.</param>
        public static ObservableCollectionWatcher<T> ForObservableCollection<T>(ObservableCollection<T> collection)
        {
            return new ObservableCollectionWatcher<T>(collection);
        }

        /// <summary>Get a watcher for a net collection.</summary>
        /// <typeparam name="T">The value type.</typeparam>
        /// <param name="collection">The net collection.</param>
        public static NetCollectionWatcher<T> ForNetCollection<T>(NetCollection<T> collection) where T : INetObject<INetSerializable>
        {
            return new NetCollectionWatcher<T>(collection);
        }

        /// <summary>Get a watcher for a net dictionary.</summary>
        /// <typeparam name="TKey">The dictionary key type.</typeparam>
        /// <typeparam name="TValue">The dictionary value type.</typeparam>
        /// <typeparam name="TField">The net type equivalent to <typeparamref name="TValue"/>.</typeparam>
        /// <typeparam name="TSerialDict">The serializable dictionary type that can store the keys and values.</typeparam>
        /// <typeparam name="TSelf">The net field instance type.</typeparam>
        /// <param name="field">The net field.</param>
        public static NetDictionaryWatcher<TKey, TValue, TField, TSerialDict, TSelf> ForNetDictionary<TKey, TValue, TField, TSerialDict, TSelf>(NetDictionary<TKey, TValue, TField, TSerialDict, TSelf> field)
            where TField : class, INetObject<INetSerializable>, new()
            where TSerialDict : IDictionary<TKey, TValue>, new()
            where TSelf : NetDictionary<TKey, TValue, TField, TSerialDict, TSelf>
        {
            return new NetDictionaryWatcher<TKey, TValue, TField, TSerialDict, TSelf>(field);
        }
    }
}