forked from Unity-Technologies/UnityCsReference
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAwaitable.DelayedCall.cs
More file actions
166 lines (148 loc) · 5.97 KB
/
Copy pathAwaitable.DelayedCall.cs
File metadata and controls
166 lines (148 loc) · 5.97 KB
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
// Unity C# reference source
// Copyright (c) Unity Technologies. For terms of use, see
// https://unity3d.com/legal/licenses/Unity_Reference_Only_License
using System;
using System.Collections.Generic;
using System.Runtime.CompilerServices;
using System.Threading;
using UnityEngine.Bindings;
using UnityEngine.Scripting;
namespace UnityEngine
{
[NativeHeader("Runtime/Mono/DelayedCallAwaitable.h")]
public partial class Awaitable
{
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public static Awaitable NextFrameAsync(CancellationToken cancellationToken = default)
{
cancellationToken.ThrowIfCancellationRequested();
EnsureDelayedCallWiredUp();
var awaitable = Awaitable.NewManagedAwaitable();
_nextFrameAwaitables.Add(awaitable, Time.frameCount + 1);
if (cancellationToken.CanBeCanceled)
{
WireupCancellation(awaitable, cancellationToken);
}
return awaitable;
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public static Awaitable WaitForSecondsAsync(float seconds, CancellationToken cancellationToken = default)
{
cancellationToken.ThrowIfCancellationRequested();
var ptr = WaitForScondsInternal(seconds);
return FromNativeAwaitableHandle(ptr, cancellationToken);
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public static Awaitable FixedUpdateAsync(CancellationToken cancellationToken = default)
{
cancellationToken.ThrowIfCancellationRequested();
var ptr = FixedUpdateInternal();
return FromNativeAwaitableHandle(ptr, cancellationToken);
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public static Awaitable EndOfFrameAsync(CancellationToken cancellationToken = default)
{
cancellationToken.ThrowIfCancellationRequested();
EnsureDelayedCallWiredUp();
var awaitable = Awaitable.NewManagedAwaitable();
_endOfFrameAwaitables.Add(awaitable, -1);
if (cancellationToken.CanBeCanceled)
{
WireupCancellation(awaitable, cancellationToken);
}
return awaitable;
}
private static bool _nextFrameAndEndOfFrameWiredUp = false;
static CancellationTokenRegistration _nextFrameAndEndOfFrameWiredUpCTRegistration = default;
static void EnsureDelayedCallWiredUp()
{
if (_nextFrameAndEndOfFrameWiredUp)
{
return;
}
_nextFrameAndEndOfFrameWiredUp = true;
WireupNextFrameAndEndOfFrameCallbacks();
_nextFrameAndEndOfFrameWiredUpCTRegistration = Application.exitCancellationToken.Register(OnDelayedCallManagerCleared);
}
[RequiredByNativeCode]
static void OnDelayedCallManagerCleared()
{
_nextFrameAndEndOfFrameWiredUp = false;
_nextFrameAwaitables.Clear();
_endOfFrameAwaitables.Clear();
}
private static readonly DoubleBufferedAwaitableList _nextFrameAwaitables = new();
private static readonly DoubleBufferedAwaitableList _endOfFrameAwaitables = new();
private struct AwaitableAndFrameIndex
{
public Awaitable Awaitable { get; }
public int FrameIndex { get; }
public AwaitableAndFrameIndex(Awaitable awaitable, int frameIndex)
{
Awaitable = awaitable;
FrameIndex = frameIndex;
}
}
class DoubleBufferedAwaitableList
{
private List<AwaitableAndFrameIndex> _awaitables = new();
private List<AwaitableAndFrameIndex> _scratch = new();
public void SwapAndComplete()
{
var oldScratch = _scratch;
var toIterate = _awaitables;
_awaitables = oldScratch;
_scratch = toIterate;
try
{
foreach (var item in toIterate)
{
if (!item.Awaitable.IsDettachedOrCompleted)
{
if (Time.frameCount >= item.FrameIndex || item.FrameIndex == -1)
{
item.Awaitable.RaiseManagedCompletion();
}
else
{
oldScratch.Add(item);
}
}
}
}
finally
{
toIterate.Clear();
}
}
public void Add(Awaitable item, int frameIndex)
{
_awaitables.Add(new AwaitableAndFrameIndex(item, frameIndex));
}
public void Clear()
{
_awaitables.Clear();
}
}
[RequiredByNativeCode]
private static void OnUpdate()
{
_nextFrameAwaitables.SwapAndComplete();
}
[RequiredByNativeCode]
private static void OnEndOfFrame()
{
_endOfFrameAwaitables.SwapAndComplete();
}
[FreeFunction("Scripting::Awaitables::NextFrameAwaitable")]
private static extern IntPtr NextFrameInternal();
[FreeFunction("Scripting::Awaitables::WaitForSecondsAwaitable")]
private static extern IntPtr WaitForScondsInternal(float seconds);
[FreeFunction("Scripting::Awaitables::FixedUpdateAwaitable")]
private static extern IntPtr FixedUpdateInternal();
[FreeFunction("Scripting::Awaitables::EndOfFrameAwaitable")]
private static extern IntPtr EndOfFrameInternal();
[FreeFunction("Scripting::Awaitables::WireupNextFrameAndEndOfFrameCallbacks")]
private static extern void WireupNextFrameAndEndOfFrameCallbacks();
}
}