-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEvents_Chat.lua
209 lines (187 loc) · 6.53 KB
/
Events_Chat.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
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
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
--[[
* Copyright (c) 2011-2012 by Adam Hellberg.
*
* This file is part of Command.
*
* Command is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Command is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Command. If not, see <http://www.gnu.org/licenses/>.
--]]
-- Upvalues
local select = select
-- API Upvalues
local BNET_CLIENT_WOW = BNET_CLIENT_WOW
local UnitFactionGroup = UnitFactionGroup
local C = Command
local CM = C.ChatManager
local AC = C.AddonComm
local BNT = C.BattleNetTools
function C.Events.CHAT_MSG_SYSTEM(self, event, message, ...)
if C.RollManager.Running then
C.RollManager:ParseMessage(message)
end
C.PlayerManager:ParseMessage(message)
end
function C.Events.CHAT_MSG_ADDON(self, event, type, msg, channel, sender)
AC:Receive(type, msg, channel, sender)
end
--[[
function C.Events.CHAT_MSG_BATTLEGROUND(self, event, ...)
local chan = CM:GetRespondChannelByEvent(event)
local msg = (select(1, ...))
local sender = (select(2, ...))
CM:HandleMessage(msg, sender, chan)
end
function C.Events.CHAT_MSG_BATTLEGROUND_LEADER(self, event, ...)
local chan = CM:GetRespondChannelByEvent(event)
local msg = (select(1, ...))
local sender = (select(2, ...))
CM:HandleMessage(msg, sender, chan)
end
function C.Events.CHAT_MSG_BN_CONVERSATION(self, event, ...)
end
--]]
--- Event handler for CHAT_MSG_BN_WHISPER.
-- @name Command.Events.CHAT_MSG_BN_WHISPER
-- @param self Reference to Command object.
-- @param event Full name of event.
-- @param ... Event arguments.
--
function C.Events.CHAT_MSG_BN_WHISPER(self, event, msg, ...)
local chan = "BNET"
local id = (select(12, ...))
local toon = BNT:GetToon(id)
if not toon then return end
if toon.Client ~= BNET_CLIENT_WOW then return end
if toon.Realm:lower() == GetRealmName():lower() and toon.Faction:lower() == (select(1, UnitFactionGroup("player"))):lower() then
CM:HandleMessage(msg, toon.Name, chan, id, chan, true, id)
end
end
--[[
--- Event handler for CHAT_MSG_CHANNEL.
-- @name Command.Events.CHAT_MSG_CHANNEL
-- @param self Reference to Command object.
-- @param event Full name of event.
-- @param ... Event arguments.
--
function C.Events.CHAT_MSG_CHANNEL(self, event, ...)
local chan = CM:GetRespondChannelByEvent(event)
local msg = (select(1, ...))
local sender = (select(2, ...))
local target = (select(8, ...))
CM:HandleMessage(msg, sender, chan, nil, "CHANNEL")
end
--]]
--- Event handler for CHAT_MSG_GUILD.
-- @name Command.Events.CHAT_MSG_GUILD
-- @param self Reference to Command object.
-- @param event Full name of event.
-- @param ... Event arguments.
--
function C.Events.CHAT_MSG_GUILD(self, event, msg, sender, ...)
local chan = CM:GetRespondChannelByEvent(event)
CM:HandleMessage(msg, sender, chan, nil, "GUILD")
end
--- Event handler for CHAT_MSG_OFFICER.
-- @name Command.Events.CHAT_MSG_OFFICER
-- @param self Reference to Command object.
-- @param event Full name of event.
-- @param ... Event arguments.
--
function C.Events.CHAT_MSG_OFFICER(self, event, msg, sender, ...)
local chan = CM:GetRespondChannelByEvent(event)
CM:HandleMessage(msg, sender, chan, nil, "GUILD")
end
--- Event handler for CHAT_MSG_PARTY.
-- @name Command.Events.CHAT_MSG_PARTY
-- @param self Reference to Command object.
-- @param event Full name of event.
-- @param ... Event arguments.
--
function C.Events.CHAT_MSG_PARTY(self, event, msg, sender, ...)
local chan = CM:GetRespondChannelByEvent(event)
CM:HandleMessage(msg, sender, chan, nil, "PARTY")
end
--- Event handler for CHAT_MSG_PARTY_LEADER.
-- @name Command.Events.CHAT_MSG_PARTY_LEADER
-- @param self Reference to Command object.
-- @param event Full name of event.
-- @param ... Event arguments.
--
function C.Events.CHAT_MSG_PARTY_LEADER(self, event, msg, sender, ...)
local chan = CM:GetRespondChannelByEvent(event)
CM:HandleMessage(msg, sender, chan, nil, "PARTY")
end
--- Event handler for CHAT_MSG_RAID.
-- @name Command.Events.CHAT_MSG_RAID
-- @param self Reference to Command object.
-- @param event Full name of event.
-- @param ... Event arguments.
--
function C.Events.CHAT_MSG_RAID(self, event, msg, sender, ...)
local chan = CM:GetRespondChannelByEvent(event)
CM:HandleMessage(msg, sender, chan, nil, "RAID")
end
--- Event handler for CHAT_MSG_RAID_LEADER.
-- @name Command.Events.CHAT_MSG_RAID_LEADER
-- @param self Reference to Command object.
-- @param event Full name of event.
-- @param ... Event arguments.
--
function C.Events.CHAT_MSG_RAID_LEADER(self, event, msg, sender, ...)
local chan = CM:GetRespondChannelByEvent(event)
CM:HandleMessage(msg, sender, chan, nil, "RAID")
end
--- Event handler for CHAT_MSG_RAID_WARNING.
-- @name Command.Events.CHAT_MSG_RAID_WARNING
-- @param self Reference to Command object.
-- @param event Full name of event.
-- @param ... Event arguments.
--
function C.Events.CHAT_MSG_RAID_WARNING(self, event, msg, sender, ...)
local chan = CM:GetRespondChannelByEvent(event)
CM:HandleMessage(msg, sender, chan, nil, "RAID")
end
function C.Events.CHAT_MSG_INSTANCE_CHAT(self, event, msg, sender, ...)
local chan = CM:GetRespondChannelByEvent(event)
CM:HandleMessage(msg, sender, chan, nil, "INSTANCE_CHAT")
end
--- Event handler for CHAT_MSG_SAY.
-- @name Command.Events.CHAT_MSG_SAY
-- @param self Reference to Command object.
-- @param event Full name of event.
-- @param ... Event arguments.
--
function C.Events.CHAT_MSG_SAY(self, event, msg, sender, ...)
local chan = CM:GetRespondChannelByEvent(event)
CM:HandleMessage(msg, sender, chan, nil, "SAY")
end
--- Event handler for CHAT_MSG_WHISPER.
-- @name Command.Events.CHAT_MSG_WHISPER
-- @param self Reference to Command object.
-- @param event Full name of event.
-- @param ... Event arguments.
--
function C.Events.CHAT_MSG_WHISPER(self, event, msg, sender, ...)
local chan = CM:GetRespondChannelByEvent(event)
CM:HandleMessage(msg, sender, chan, sender, "WHISPER")
end
--- Event handler for CHAT_MSG_YELL.
-- @name Command.Events.CHAT_MSG_YELL
-- @param self Reference to Command object.
-- @param event Full name of event.
-- @param ... Event arguments.
--
function C.Events.CHAT_MSG_YELL(self, event, msg, sender, ...)
local chan = CM:GetRespondChannelByEvent(event)
CM:HandleMessage(msg, sender, chan, nil, "YELL")
end