-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEventDispatcher.cs
185 lines (153 loc) · 4.83 KB
/
EventDispatcher.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
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
173
174
175
176
177
178
179
180
181
182
183
184
185
using UnityEngine;
using System.Collections.Generic;
using System;
public class EventDispatcher : MonoBehaviour
{
#region Singleton
private static EventDispatcher m_instance;
public static EventDispatcher Instance
{
get
{
// instance not exist, then create new one
if (m_instance == null)
{
// create new Gameobject, and add EventDispatcher component
var singletonObject = new GameObject();
m_instance = singletonObject.AddComponent<EventDispatcher>();
singletonObject.name = "Singleton - EventDispatcher";
//Common.Log("Create singleton : {0}", singletonObject.name);
}
return m_instance;
}
}
public static bool HasInstance()
{
return m_instance != null;
}
private void Awake()
{
// check if there's another instance already exist in scene
if (m_instance != null && m_instance.GetInstanceID() != GetInstanceID())
{
// Destroy this instances because already exist the singleton of EventsDispatcer
// Common.Log("An instance of EventDispatcher already exist : <{1}>, So destroy this instance : <{2}>!!", m_instance.name, name);
Destroy(gameObject);
}
else
{
// set instance
m_instance = this;
DontDestroyOnLoad(gameObject);
}
}
private void OnDestroy()
{
ClearAllListener();
//m_instance = null;
// reset this static var to null if it's the singleton instance
//if (m_instance == this)
//{
// ClearAllListener();
// m_instance = null;
//}
}
#endregion
#region Fields
/// Store all "listener"
private Dictionary<EventID, Action<object>> _listeners = new Dictionary<EventID, Action<object>>();
#endregion
#region Add Listeners, Post events, Remove listener
public void RegisterListener(EventID eventID, Action<object> callback)
{
// check if listener exist in distionary
if (_listeners.ContainsKey(eventID))
{
// add callback to our collection
_listeners[eventID] += callback;
}
else
{
// add new key-value pair
_listeners.Add(eventID, null);
_listeners[eventID] += callback;
}
}
public void PostEvent(EventID eventID, object param = null)
{
if (!_listeners.ContainsKey(eventID))
//Common.Log("No listeners for this event : {0}", eventID);
return;
// posting event
var callbacks = _listeners[eventID];
// if there's no listener remain, then do nothing
if (callbacks != null)
callbacks(param);
else
//Common.Log("PostEvent {0}, but no listener remain, Remove this key", eventID);
_listeners.Remove(eventID);
}
/// <summary>
/// Removes the listener. Use to Unregister listener
/// </summary>
/// <param name="eventID">EventID.</param>
/// <param name="callback">Callback.</param>
public void RemoveListener(EventID eventID, Action<object> callback)
{
// checking params
// Common.Assert(callback != null, "RemoveListener, event {0}, callback = null !!", eventID.ToString());
// Common.Assert(eventID != EventID.None, "AddListener, event = None !!");
if (_listeners.ContainsKey(eventID))
{
_listeners[eventID] -= callback;
}
else
{
// Common.Warning(false, "RemoveListener, not found key : " + eventID);
}
}
/// <summary>
/// Clears all the listener.
/// </summary>
public void ClearAllListener()
{
_listeners = new Dictionary<EventID, Action<object>>();
}
#endregion
#if UNITY_EDITOR
private void OnApplicationQuit()
{
ClearAllListener();
}
#endif
}
#region Extension class
/// <summary>
/// Delare some "shortcut" for using EventDispatcher easier
/// </summary>
public static class EventDispatcherExtension
{
/// Use for registering with EventsManager
public static void RegisterListener(this MonoBehaviour listener, EventID eventID, Action<object> callback)
{
EventDispatcher.Instance.RegisterListener(eventID, callback);
}
/// Post event with param
public static void PostEvent(this MonoBehaviour listener, EventID eventID, object param)
{
EventDispatcher.Instance.PostEvent(eventID, param);
}
/// Post event with no param (param = null)
public static void PostEvent(this MonoBehaviour sender, EventID eventID)
{
EventDispatcher.Instance.PostEvent(eventID, null);
}
}
#endregion
#region eventID
[Serializable]
public enum EventID
{
None = 0,
}
#endregion