You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
77 lines
2.4 KiB
C#
77 lines
2.4 KiB
C#
using System.Threading;
|
|
|
|
namespace Cysharp.Threading.Tasks.Linq
|
|
{
|
|
public static partial class UniTaskAsyncEnumerable
|
|
{
|
|
public static IUniTaskAsyncEnumerable<AsyncUnit> EveryUpdate(PlayerLoopTiming updateTiming = PlayerLoopTiming.Update)
|
|
{
|
|
return new EveryUpdate(updateTiming);
|
|
}
|
|
}
|
|
|
|
internal class EveryUpdate : IUniTaskAsyncEnumerable<AsyncUnit>
|
|
{
|
|
readonly PlayerLoopTiming updateTiming;
|
|
|
|
public EveryUpdate(PlayerLoopTiming updateTiming)
|
|
{
|
|
this.updateTiming = updateTiming;
|
|
}
|
|
|
|
public IUniTaskAsyncEnumerator<AsyncUnit> GetAsyncEnumerator(CancellationToken cancellationToken = default)
|
|
{
|
|
return new _EveryUpdate(updateTiming, cancellationToken);
|
|
}
|
|
|
|
class _EveryUpdate : MoveNextSource, IUniTaskAsyncEnumerator<AsyncUnit>, IPlayerLoopItem
|
|
{
|
|
readonly PlayerLoopTiming updateTiming;
|
|
CancellationToken cancellationToken;
|
|
|
|
bool disposed;
|
|
|
|
public _EveryUpdate(PlayerLoopTiming updateTiming, CancellationToken cancellationToken)
|
|
{
|
|
this.updateTiming = updateTiming;
|
|
this.cancellationToken = cancellationToken;
|
|
|
|
TaskTracker.TrackActiveTask(this, 2);
|
|
PlayerLoopHelper.AddAction(updateTiming, this);
|
|
}
|
|
|
|
public AsyncUnit Current => default;
|
|
|
|
public UniTask<bool> MoveNextAsync()
|
|
{
|
|
// return false instead of throw
|
|
if (disposed || cancellationToken.IsCancellationRequested) return CompletedTasks.False;
|
|
|
|
completionSource.Reset();
|
|
return new UniTask<bool>(this, completionSource.Version);
|
|
}
|
|
|
|
public UniTask DisposeAsync()
|
|
{
|
|
if (!disposed)
|
|
{
|
|
disposed = true;
|
|
TaskTracker.RemoveTracking(this);
|
|
}
|
|
return default;
|
|
}
|
|
|
|
public bool MoveNext()
|
|
{
|
|
if (disposed || cancellationToken.IsCancellationRequested)
|
|
{
|
|
completionSource.TrySetResult(false);
|
|
return false;
|
|
}
|
|
|
|
completionSource.TrySetResult(true);
|
|
return true;
|
|
}
|
|
}
|
|
}
|
|
} |