mirror of
https://github.com/Ellpeck/Coroutine.git
synced 2024-12-14 13:59:23 +01:00
36 lines
977 B
C#
36 lines
977 B
C#
|
using System.Collections.Generic;
|
||
|
|
||
|
namespace Coroutine {
|
||
|
internal class Coroutine {
|
||
|
|
||
|
private readonly IEnumerator<Wait> enumerator;
|
||
|
|
||
|
public Coroutine(IEnumerator<Wait> enumerator) {
|
||
|
this.enumerator = enumerator;
|
||
|
this.enumerator.MoveNext();
|
||
|
}
|
||
|
|
||
|
public bool Tick(double deltaSeconds) {
|
||
|
var curr = this.enumerator.Current;
|
||
|
if (curr != null && curr.Tick(deltaSeconds)) {
|
||
|
if (!this.enumerator.MoveNext())
|
||
|
return true;
|
||
|
}
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
public bool OnEvent(Event evt) {
|
||
|
var curr = this.enumerator.Current;
|
||
|
if (curr != null && curr.OnEvent(evt)) {
|
||
|
if (!this.enumerator.MoveNext())
|
||
|
return true;
|
||
|
}
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
public WaitType GetCurrentType() {
|
||
|
return this.enumerator.Current.GetWaitType();
|
||
|
}
|
||
|
|
||
|
}
|
||
|
}
|