blob: e4219dda9f7d7a7b1c67dbc7c2549cbd9531ef35 (
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
|
using Netcode;
namespace StardewModdingAPI.Framework.StateTracking.FieldWatchers
{
/// <summary>A watcher which detects changes to a net value field.</summary>
/// <typeparam name="TValue">The value type wrapped by the net field.</typeparam>
/// <typeparam name="TNetField">The net field type.</typeparam>
internal class NetValueWatcher<TValue, TNetField> : BaseDisposableWatcher, IValueWatcher<TValue> where TNetField : NetFieldBase<TValue, TNetField>
{
/*********
** Fields
*********/
/// <summary>The field being watched.</summary>
private readonly NetFieldBase<TValue, TNetField> Field;
/*********
** Accessors
*********/
/// <inheritdoc />
public string Name { get; }
/// <inheritdoc />
public bool IsChanged { get; private set; }
/// <inheritdoc />
public TValue PreviousValue { get; private set; }
/// <inheritdoc />
public TValue CurrentValue { get; private set; }
/*********
** Public methods
*********/
/// <summary>Construct an instance.</summary>
/// <param name="name">A name which identifies what the watcher is watching, used for troubleshooting.</param>
/// <param name="field">The field to watch.</param>
public NetValueWatcher(string name, NetFieldBase<TValue, TNetField> field)
{
this.Name = name;
this.Field = field;
this.PreviousValue = field.Value;
this.CurrentValue = field.Value;
field.fieldChangeVisibleEvent += this.OnValueChanged;
field.fieldChangeEvent += this.OnValueChanged;
}
/// <inheritdoc />
public void Update()
{
this.AssertNotDisposed();
}
/// <inheritdoc />
public void Reset()
{
this.AssertNotDisposed();
this.PreviousValue = this.CurrentValue;
this.IsChanged = false;
}
/// <inheritdoc />
public override void Dispose()
{
if (!this.IsDisposed)
{
this.Field.fieldChangeEvent -= this.OnValueChanged;
this.Field.fieldChangeVisibleEvent -= this.OnValueChanged;
}
base.Dispose();
}
/*********
** Private methods
*********/
/// <summary>A callback invoked when the field's value changes.</summary>
/// <param name="field">The field being watched.</param>
/// <param name="oldValue">The old field value.</param>
/// <param name="newValue">The new field value.</param>
private void OnValueChanged(TNetField field, TValue oldValue, TValue newValue)
{
this.CurrentValue = newValue;
this.IsChanged = true;
}
}
}
|