godot/modules/mono/glue/GodotSharp/GodotSharp/Core/SignalAwaiter.cs

55 lines
1.3 KiB
C#
Raw Normal View History

2017-10-02 23:24:00 +02:00
using System;
using System.Runtime.CompilerServices;
2017-10-02 23:24:00 +02:00
namespace Godot
{
public class SignalAwaiter : IAwaiter<object[]>, IAwaitable<object[]>
{
private bool completed;
private object[] result;
private Action action;
2017-10-02 23:24:00 +02:00
public SignalAwaiter(Object source, StringName signal, Object target)
2017-10-02 23:24:00 +02:00
{
godot_icall_SignalAwaiter_connect(Object.GetPtr(source), StringName.GetPtr(signal), Object.GetPtr(target), this);
2017-10-02 23:24:00 +02:00
}
[MethodImpl(MethodImplOptions.InternalCall)]
internal extern static Error godot_icall_SignalAwaiter_connect(IntPtr source, IntPtr signal, IntPtr target, SignalAwaiter awaiter);
2017-10-02 23:24:00 +02:00
public bool IsCompleted
{
get
{
return completed;
}
}
public void OnCompleted(Action action)
{
this.action = action;
}
public object[] GetResult()
{
return result;
}
public IAwaiter<object[]> GetAwaiter()
{
return this;
}
internal void SignalCallback(object[] args)
{
completed = true;
result = args;
if (action != null)
{
action();
}
}
}
}