Callback.cs
4.52 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
167
168
169
170
171
172
namespace Oculus.Platform
{
using UnityEngine;
using System;
using System.Collections.Generic;
public static class Callback
{
#region Notification Callbacks: Exposed through Oculus.Platform.Platform
internal static void SetNotificationCallback<T>(Message.MessageType type, Message<T>.Callback callback)
{
if (callback == null) {
throw new Exception ("Cannot provide a null notification callback.");
}
notificationCallbacks[type] = new RequestCallback<T>(callback);
if (type == Message.MessageType.Notification_Room_InviteAccepted)
{
FlushRoomInviteNotificationQueue();
}
}
internal static void SetNotificationCallback(Message.MessageType type, Message.Callback callback)
{
if (callback == null) {
throw new Exception ("Cannot provide a null notification callback.");
}
notificationCallbacks[type] = new RequestCallback(callback);
}
#endregion
#region Adding and running request handlers
internal static void AddRequest(Request request)
{
if (request.RequestID == 0)
{
// An early out error happened in the C SDK. Do not add it to the mapping of callbacks
Debug.LogError("An unknown error occurred. Request failed.");
return;
}
requestIDsToRequests[request.RequestID] = request;
}
internal static void RunCallbacks()
{
while (true)
{
var msg = Platform.Message.PopMessage();
if (msg == null)
{
break;
}
HandleMessage(msg);
}
}
internal static void RunLimitedCallbacks(uint limit)
{
for (var i = 0; i < limit; ++i)
{
var msg = Platform.Message.PopMessage();
if (msg == null)
{
break;
}
HandleMessage(msg);
}
}
internal static void OnApplicationQuit()
{
// Clear out all outstanding callbacks
requestIDsToRequests.Clear();
notificationCallbacks.Clear();
}
#endregion
#region Callback Internals
private static Dictionary<ulong, Request> requestIDsToRequests = new Dictionary<ulong, Request>();
private static Dictionary<Message.MessageType, RequestCallback> notificationCallbacks = new Dictionary<Message.MessageType, RequestCallback>();
private static bool hasRegisteredRoomInviteNotificationHandler = false;
private static List<Message> pendingRoomInviteNotifications = new List<Message>();
private static void FlushRoomInviteNotificationQueue() {
hasRegisteredRoomInviteNotificationHandler = true;
foreach (Message msg in pendingRoomInviteNotifications) {
HandleMessage(msg);
}
pendingRoomInviteNotifications.Clear();
}
private class RequestCallback
{
private Message.Callback messageCallback;
public RequestCallback() { }
public RequestCallback(Message.Callback callback)
{
this.messageCallback = callback;
}
public virtual void HandleMessage(Message msg)
{
if (messageCallback != null)
{
messageCallback(msg);
}
}
}
private sealed class RequestCallback<T> : RequestCallback
{
private Message<T>.Callback callback;
public RequestCallback(Message<T>.Callback callback)
{
this.callback = callback;
}
public override void HandleMessage(Message msg)
{
if (callback != null)
{
// We need to queue up GameInvites because the callback runner will be called before a handler has beeen set.
if (!hasRegisteredRoomInviteNotificationHandler && msg.Type == Message.MessageType.Notification_Room_InviteAccepted)
{
pendingRoomInviteNotifications.Add(msg);
return;
}
if (msg is Message<T>)
{
callback((Message<T>)msg);
}
else
{
Debug.LogError("Unable to handle message: " + msg.GetType());
}
}
}
}
internal static void HandleMessage(Message msg)
{
Request request;
if (msg.RequestID != 0 && requestIDsToRequests.TryGetValue(msg.RequestID, out request)) {
try {
request.HandleMessage(msg);
} finally {
requestIDsToRequests.Remove(msg.RequestID);
}
return;
}
RequestCallback callbackHolder;
if (notificationCallbacks.TryGetValue(msg.Type, out callbackHolder))
{
callbackHolder.HandleMessage(msg);
}
}
#endregion
}
}