forked from XINCGer/Unity3DTraining
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEventMgr.lua
86 lines (78 loc) · 2.1 KB
/
EventMgr.lua
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
require("Class")
local bit = require "bit"
EventMgr = {
--实例对象
_instance = nil,
--观察值列表
_listeners = nil
}
EventMgr.__index = EventMgr
setmetatable(EventMgr, Class)
-- 构造器
function EventMgr:new()
local t = {}
t = Class:new()
setmetatable(t, EventMgr)
return t
end
-- 获取单例接口
function EventMgr:Instance()
if EventMgr._instance == nil then
EventMgr._instance = EventMgr:new()
EventMgr._listeners = {}
end
return EventMgr._instance
end
function EventMgr:RegisterEvent(moduleId, eventId, func)
local key = bit.lshift(moduleId, 16) + eventId
self:AddEventListener(key, func, nil)
end
function EventMgr:UnRegisterEvent(moduleId, eventId, func)
local key = bit.lshift(moduleId, 16) + eventId
self:RemoveEventListener(key, func)
end
function EventMgr:DispatchEvent(moduleId, eventId, param)
local key = bit.lshift(moduleId, 16) + eventId
local listeners = self._listeners[key]
if nil == listeners then
return
end
for _, v in ipairs(listeners) do
if v.p then
v.f(v.p, param)
else
v.f(param)
end
end
end
function EventMgr:AddEventListener(eventId, func, param)
local listeners = self._listeners[eventId]
-- 获取key对应的监听者列表,结构为{func,para},如果没有就新建
if listeners == nil then
listeners = {}
self._listeners[eventId] = listeners -- 保存监听者
end
--过滤掉已经注册过的消息,防止重复注册
for _, v in pairs(listeners) do
if (v and v.f == func) then
return
end
end
--if func == nil then
-- print("func is nil!")
--end
--加入监听者的回调和参数
table.insert(listeners, { f = func, p = param })
end
function EventMgr:RemoveEventListener(eventId, func)
local listeners = self._listeners[eventId]
if nil == listeners then
return
end
for k, v in pairs(listeners) do
if (v and v.f == func) then
table.remove(listeners, k)
return
end
end
end