-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAsyncObjectFinder.cs
50 lines (44 loc) · 1.85 KB
/
AsyncObjectFinder.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
using RSG;
using UnityEngine;
namespace TinyMatter.Core {
public class AsyncObjectFinder : Singleton<AsyncObjectFinder> {
private readonly IPromiseTimer promiseTimer = new PromiseTimer();
private void Update() {
promiseTimer.Update(Time.deltaTime);
}
/// <summary>
/// Find an object in the scene by type.
///
/// For example: FindObjectOfTypeAsync<CardSlotGridBehavior>().Then(grid => Debug.Log("Found grid!"));
/// </summary>
/// <param name="timeout">in seconds</param>
/// <typeparam name="T">The type of Component to find in the scene</typeparam>
/// <returns>A promise that will resolve to the Component</returns>
public IPromise<T> FindObjectOfTypeAsync<T>(float timeout = 1.0f) where T : Object {
return new Promise<T>((resolve, reject) => {
Promise.Race(
WaitUntilFoundObjectOfType<T>(),
TimeoutPromise(timeout)
).Then(() => {
resolve((T) Object.FindObjectOfType(typeof(T)));
});
});
}
public IPromise<T[]> FindObjectsOfTypeAsync<T>(float timeout = 1.0f) where T : Object {
return new Promise<T[]>((resolve, reject) => {
Promise.Race(
WaitUntilFoundObjectOfType<T>(),
TimeoutPromise(timeout)
).Then(() => {
resolve((T[]) Object.FindObjectsOfType(typeof(T)));
});
});
}
private IPromise TimeoutPromise(float seconds) {
return promiseTimer.WaitFor(seconds);
}
public IPromise WaitUntilFoundObjectOfType<T>() where T : Object {
return promiseTimer.WaitUntil(timeData => (T) Object.FindObjectOfType(typeof(T)));
}
}
}