forked from HearthSim/Hearthstone-Deck-Tracker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChoicesWatcher.cs
53 lines (46 loc) · 1.12 KB
/
ChoicesWatcher.cs
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
using HearthWatcher.EventArgs;
using HearthWatcher.Providers;
using System;
using System.Threading.Tasks;
namespace HearthWatcher
{
public class ChoicesWatcher
{
public delegate void ChoicesEventHandler(object sender, EventArgs.ChoicesWatcher args);
private readonly IChoicesProvider _provider;
private readonly int _delay;
private bool _running;
private bool _watch;
private EventArgs.ChoicesWatcher? _prev = null;
public ChoicesWatcher(IChoicesProvider choicesProvider, int delay = 16)
{
_provider = choicesProvider ?? throw new ArgumentNullException(nameof(choicesProvider));
_delay = delay;
}
public event ChoicesEventHandler? Change;
public void Run()
{
_watch = true;
if(!_running)
Update();
}
public void Stop() => _watch = false;
private async void Update()
{
_running = true;
while(_watch)
{
await Task.Delay(_delay);
if(!_watch)
break;
var curr = new EventArgs.ChoicesWatcher(_provider.CurrentChoice);
if(curr.Equals(_prev))
continue;
Change?.Invoke(this, curr);
_prev = curr;
}
_prev = null;
_running = false;
}
}
}