-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathAsyncCallbackHelper.cs
105 lines (92 loc) · 2.37 KB
/
AsyncCallbackHelper.cs
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
using System;
using System.Collections.Generic;
using UnityEngine;
namespace PurchaselyRuntime
{
public class AsyncCallbackHelper : MonoBehaviour
{
private static AsyncCallbackHelper _instance;
private static readonly object InitLock = new object();
private readonly object _queueLock = new object();
private readonly List<Action> _queuedActions = new List<Action>();
private readonly List<Action> _executingActions = new List<Action>();
public static AsyncCallbackHelper Instance
{
get
{
if (_instance == null)
{
Init();
}
return _instance;
}
}
[RuntimeInitializeOnLoadMethod(RuntimeInitializeLoadType.AfterSceneLoad)]
private static void Init()
{
lock (InitLock)
{
if (!ReferenceEquals(_instance, null))
{
return;
}
var instances = FindObjectsOfType<AsyncCallbackHelper>();
if (instances.Length > 1)
{
Debug.LogError(typeof(AsyncCallbackHelper) + " Something went really wrong " +
" - there should never be more than 1 " + typeof(AsyncCallbackHelper) +
" Reopening the scene might fix it.");
}
else if (instances.Length == 0)
{
var singleton = new GameObject();
_instance = singleton.AddComponent<AsyncCallbackHelper>();
singleton.name = "AsyncCallbackHelper";
singleton.hideFlags = HideFlags.HideAndDontSave;
DontDestroyOnLoad(singleton);
Debug.Log("[Singleton] An _instance of " + typeof(AsyncCallbackHelper) +
" is needed in the scene, so '" + singleton.name +
"' was created with DontDestroyOnLoad.");
}
else
{
Debug.Log("[Singleton] Using _instance already created: " + _instance.gameObject.name);
}
}
}
internal void Queue(Action action)
{
if (action == null)
{
Debug.LogWarning("Trying to queue null action");
return;
}
lock (Instance._queueLock)
{
Instance._queuedActions.Add(action);
}
}
private void Update()
{
MoveQueuedActionsToExecuting();
while (_executingActions.Count > 0)
{
var action = _executingActions[0];
_executingActions.RemoveAt(0);
action();
}
}
private void MoveQueuedActionsToExecuting()
{
lock (_queueLock)
{
while (_queuedActions.Count > 0)
{
var action = _queuedActions[0];
_executingActions.Add(action);
_queuedActions.RemoveAt(0);
}
}
}
}
}