blob: 8ca7a5bc5f4ffca92806352d135911bd1e5412b1 (
plain)
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
|
-- <event, {callbacks}>
local _broadcast = {}
local EventMsgCenter = {}
EventMsgCenter.registerMsg = function(e, callback, first)
if _broadcast[e] == nil then
_broadcast[e] = {}
end
first = first or false
if not first then
table.insert(_broadcast[e], callback)
else
table.insert(_broadcast[e], 1, callback)
end
end
EventMsgCenter.unRegisterMsg = function(e, callback)
if _broadcast[e] == nil or callback == nil then
return
end
table.remove(_broadcast[e], callback)
end
EventMsgCenter.unRegisterAllMsgByEvent = function(e)
if _broadcast[e] == nil then
return
end
_broadcast[e] = nil
end
EventMsgCenter.unRegisterAllMsg = function()
_broadcast = {}
end
EventMsgCenter.sendMsg = function(e, ...)
local callbacks = _broadcast[e]
if callbacks == nil then
return
end
for _, f in ipairs(callbacks) do
if f ~= nil then
f(...)
end
end
end
return EventMsgCenter
|