-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathLoader.cs
315 lines (261 loc) · 8.77 KB
/
Loader.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
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
namespace Chickensoft.GameTools;
using System;
using System.Collections.Generic;
using System.Threading.Tasks;
using Godot;
using ThreadLoadStatus = Godot.ResourceLoader.ThreadLoadStatus;
using CacheMode = Godot.ResourceLoader.CacheMode;
/// <summary>
/// A wrapper around Godot's own <see cref="ResourceLoader" /> which makes it
/// really simple to load multiple resources at once while tracking progress
/// and completion.
/// </summary>
public interface ILoader : IDisposable {
/// <summary>Event invoked when the loader begins loading resources.</summary>
event Action? Started;
/// <summary>Event invoked when the loader's progress changes.</summary>
event Action<float>? Progress;
/// <summary>
/// Event invoked when the loader completes loading resources.
/// </summary>
event Action? Completed;
/// <summary>
/// Progress of the loader as a percentage from 0 to 1.
/// </summary>
float ProgressPercentage { get; }
/// <summary>
/// Asynchronous task that completes when the loader completes loading
/// resources (or encounters an error).
/// </summary>
Task Task { get; }
/// <summary>
/// True if the loader has completed loading all resources.
/// </summary>
bool IsCompleted { get; }
/// <summary>
/// Adds a loading job to the loader. Jobs are not run until you call
/// <see cref="Load" />.
/// </summary>
/// <typeparam name="T">Type of resource to load.</typeparam>
/// <param name="resourcePath">Path to the resource.</param>
/// <param name="onComplete">Callback invoked with the resource once it has
/// been loaded. Typically, you want to save the value to a field or property
/// so you can use it.</param>
/// <param name="typeHint">Godot resource type hint.</param>
/// <param name="useSubthreads">True if Godot should use subthreads when
/// loading complex resources. This is false by default, as subthreads can
/// experience issues.</param>
/// <param name="cacheMode">Godot resource loader cache mode.</param>
void AddJob<T>(
string resourcePath,
Action<T> onComplete,
string typeHint = "",
bool useSubthreads = false,
CacheMode cacheMode = CacheMode.Reuse
) where T : Resource;
/// <summary>
/// Begin loading all the resources from the jobs added via
/// <see cref="AddJob" />. Be sure to call <see cref="Update" />
/// every frame to track progress and ensure the events are invoked.
/// </summary>
void Load();
/// <summary>
/// Updates the loader. Call this every frame to track progress and ensure
/// the events are invoked.
/// </summary>
void Update();
}
/// <summary><inheritdoc cref="ILoader" path="/summary"/></summary>
public sealed class Loader : ILoader, IDisposable {
internal abstract class PendingJob(
Action<object> internalOnComplete,
string resourcePath,
string typeHint,
bool useSubthreads,
CacheMode cacheMode
) : IEquatable<PendingJob> {
public Action<object> InternalOnComplete { get; } = internalOnComplete;
public string ResourcePath { get; } = resourcePath;
public string TypeHint { get; } = typeHint;
public bool UseSubthreads { get; } = useSubthreads;
public CacheMode CacheMode { get; } = cacheMode;
public float Progress { get; set; }
public bool Equals(PendingJob? other) =>
other?.ResourcePath == ResourcePath;
public override bool Equals(object? obj) => base.Equals(obj);
public override int GetHashCode() => ResourcePath.GetHashCode();
}
internal sealed class PendingJob<T>(
string resourcePath,
Action<T> onComplete,
string typeHint,
bool useSubthreads,
CacheMode cacheMode
) : PendingJob(
(obj) => onComplete((T)obj),
resourcePath,
typeHint,
useSubthreads,
cacheMode
);
/// <inheritdoc />
public event Action? Started;
/// <inheritdoc />
public event Action<float>? Progress;
/// <inheritdoc />
public event Action? Completed;
/// <inheritdoc />
public float ProgressPercentage { get; private set; }
/// <inheritdoc />
public Task Task => _tcs.Task;
/// <inheritdoc />
public bool IsCompleted => Task.IsCompleted;
private bool _isRunning;
private bool _isDisposed;
private readonly HashSet<PendingJob> _pendingJobs = [];
// Used for tracking completed jobs during a single update to avoid allocs
private readonly HashSet<PendingJob> _completedJobs = [];
private readonly Godot.Collections.Array _progressArray = [0f];
private TaskCompletionSource<object> _tcs = new();
private static readonly object _taskValue = new();
#region Shims for Testing
internal delegate Error LoadThreadedRequestDelegate(
string path,
string typeHint = "",
bool useSubThreads = false,
CacheMode cacheMode = CacheMode.Reuse
);
internal static LoadThreadedRequestDelegate
LoadThreadedRequest { get; set; } = ResourceLoader.LoadThreadedRequest;
internal delegate ThreadLoadStatus LoadThreadedGetStatusDelegate(
string path, Godot.Collections.Array? progress = null
);
internal static LoadThreadedGetStatusDelegate
LoadThreadedGetStatus { get; set; } =
LoadThreadedGetStatus = ResourceLoader.LoadThreadedGetStatus;
internal delegate Resource LoadThreadedGetDelegate(string path);
internal static LoadThreadedGetDelegate
LoadThreadedGet { get; set; } = ResourceLoader.LoadThreadedGet;
#endregion Shims For Testing
/// <inheritdoc />
public void AddJob<T>(
string resourcePath,
Action<T> onComplete,
string typeHint = "",
bool useSubthreads = false,
CacheMode cacheMode = CacheMode.Reuse
) where T : Resource {
ObjectDisposedException.ThrowIf(
_isDisposed, "Cannot add jobs once disposed."
);
if (_isRunning) {
throw new InvalidOperationException("Cannot add jobs while running.");
}
_pendingJobs.Add(
new PendingJob<T>(
resourcePath, onComplete, typeHint, useSubthreads, cacheMode
)
);
}
/// <inheritdoc />
public void Load() {
if (_isRunning || _isDisposed) { return; }
_isRunning = true;
_tcs = new();
foreach (var pendingJob in _pendingJobs) {
LoadThreadedRequest(
pendingJob.ResourcePath,
pendingJob.TypeHint,
pendingJob.UseSubthreads,
pendingJob.CacheMode
);
}
InvokeStarted();
UpdateAndInvokeProgress(0f);
}
/// <inheritdoc />
public void Update() {
if (_isDisposed || !_isRunning) { return; }
UpdateProgress();
}
/// <inheritdoc />
public void Dispose() {
if (_isRunning) {
throw new InvalidOperationException("Cannot dispose while running.");
}
if (_isDisposed) {
return;
}
ProgressPercentage = 0f;
_pendingJobs.Clear();
_completedJobs.Clear();
_progressArray.Dispose();
GC.SuppressFinalize(this);
_isDisposed = true;
}
private void UpdateProgress() {
_completedJobs.Clear();
var hasProgressChanged = false;
foreach (var pendingJob in _pendingJobs) {
var status = LoadThreadedGetStatus(
pendingJob.ResourcePath, _progressArray
);
var progress = _progressArray[0].AsSingle();
if (!Mathf.IsEqualApprox(progress, pendingJob.Progress)) {
pendingJob.Progress = progress;
hasProgressChanged = true;
}
if (status == ThreadLoadStatus.InvalidResource) {
var e = new InvalidOperationException(
$"Failed to load resource '{pendingJob.ResourcePath}' due to an " +
"invalid resource error."
);
_tcs.SetException(e);
throw e;
}
if (status == ThreadLoadStatus.Failed) {
var e = new InvalidOperationException(
$"Failed to load resource '{pendingJob.ResourcePath}'."
);
_tcs.SetException(e);
throw e;
}
if (status == ThreadLoadStatus.Loaded) {
_completedJobs.Add(pendingJob);
}
}
if (hasProgressChanged) {
ProgressChanged();
}
foreach (var job in _completedJobs) {
CompleteJob(job);
}
_completedJobs.Clear();
}
private void ProgressChanged() {
var totalProgress = 0f;
foreach (var pendingJob in _pendingJobs) {
totalProgress += pendingJob.Progress;
}
totalProgress /= _pendingJobs.Count;
UpdateAndInvokeProgress(totalProgress);
}
private void CompleteJob(PendingJob pendingJob) {
_pendingJobs.Remove(pendingJob);
var result = LoadThreadedGet(pendingJob.ResourcePath);
pendingJob.InternalOnComplete(result);
if (_pendingJobs.Count == 0) {
// Done with all jobs.
UpdateAndInvokeProgress(1f);
_isRunning = false;
_tcs.SetResult(_taskValue);
InvokeCompleted();
}
}
internal void InvokeStarted() => Started?.Invoke();
internal void UpdateAndInvokeProgress(float progress) {
ProgressPercentage = progress;
Progress?.Invoke(progress);
}
internal void InvokeCompleted() => Completed?.Invoke();
}