-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPVPSound_DataShare.lua
More file actions
140 lines (127 loc) · 4.5 KB
/
PVPSound_DataShare.lua
File metadata and controls
140 lines (127 loc) · 4.5 KB
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
local addon, ns = ...
local PVPSound = ns.PVPSound
local L = ns.L
local PVPSoundDataFrame = CreateFrame("Frame", nil)
PVPSoundDataFrame:RegisterEvent("ADDON_LOADED")
function PVPSound:DataOnLoad()
if PS_EnableAddon then
PVPSoundDataFrame:RegisterEvent("CHAT_MSG_ADDON")
PVPSoundDataFrame:RegisterEvent("ZONE_CHANGED_NEW_AREA")
end
end
function PVPSound:RegisterDataEvents()
if not PS_DataShare then
return
end
PVPSoundDataFrame:RegisterEvent("CHAT_MSG_ADDON")
PVPSoundDataFrame:RegisterEvent("ZONE_CHANGED_NEW_AREA")
end
function PVPSound:UnregisterDataEvents()
PVPSoundDataFrame:UnregisterEvent("CHAT_MSG_ADDON")
PVPSoundDataFrame:UnregisterEvent("ZONE_CHANGED_NEW_AREA")
end
-- Sprees
local DeathSpree
-- Names
local SenderName
local KillerName
local KillerNameServer
local print, select, tostring, string = print, select, tostring, string
local UnitName = UnitName
-- PVPSound Addon Data Sharing
function PVPSound:DataOnEvent(event, prefix, message, channel, sender, ...)
if PS_DataShare then
if event == "ADDON_LOADED" then
local Addon = select(1, ...)
if Addon == "PVPSound" then
if PS_EnableAddon then
PVPSound:DataOnLoad()
end
end
end
if event == "CHAT_MSG_ADDON" then
-- If the Sent Data is from the registered prefix
if prefix == "PVPSound" then
-- If the sender is not nil and its not the player
if sender ~= nil and sender ~= UnitName("player") then
-- If the message is not nil
if message ~= nil then
-- Death Data Share
if string.find(message, ":") then
DeathSpree = tostring(string.match(message, "(.+):"))
KillerNameServer = tostring(string.match(message, ":(.+)"))
if KillerNameServer ~= nil then
-- If the killer is NPC
if string.sub(KillerNameServer, - 1) == "!" then
KillerName = KillerNameServer
-- If the killer is from CrossRealm
else
-- If not suicide
if KillerNameServer ~= sender then
if string.find(KillerNameServer, "-") and PS_HideServerName ~= false then
KillerName = tostring(string.match(KillerNameServer, "(.+)-"))
-- If from -Azjol-Nerub
if string.find(KillerNameServer, "-") and PS_HideServerName ~= false then
KillerName = tostring(string.match(KillerNameServer, "(.+)-"))
end
else
KillerName = tostring(KillerNameServer)
end
end
end
if DeathSpree ~= nil then
if KillerName ~= nil then
-- If the killer is NPC
if string.sub(KillerName, - 1) == "!" then
KillerName = string.sub(KillerName, 1, string.len(KillerName) - 1)
if SenderName ~= nil and DeathSpree ~= nil and KillerName ~= nil then
PVPSound:PrintDeath(SenderName, DeathSpree, KillerName)
end
else
-- If sender is from CrossRealm
if string.find(sender, "-") and PS_HideServerName ~= false then
SenderName = tostring(string.match(sender, "(.+)-"))
-- If from -Azjol-Nerub
if string.find(SenderName, "-") and PS_HideServerName ~= false then
SenderName = tostring(string.match(SenderName, "(.+)-"))
if SenderName ~= nil and DeathSpree ~= nil and KillerName ~= nil then
PVPSound:PrintDeath(SenderName, DeathSpree, KillerName)
end
else
if SenderName ~= nil and DeathSpree ~= nil and KillerName ~= nil then
PVPSound:PrintDeath(SenderName, DeathSpree, KillerName)
end
end
else
SenderName = tostring(sender)
if SenderName ~= nil and DeathSpree ~= nil and KillerName ~= nil then
PVPSound:PrintDeath(SenderName, DeathSpree, KillerName)
end
end
end
end
end
end
else
-- Nil everything
DeathSpree = nil
SenderName = nil
KillerName = nil
KillerNameServer = nil
end
end
end
end
elseif event == "ZONE_CHANGED_NEW_AREA" then
-- Nil everything
DeathSpree = nil
SenderName = nil
KillerName = nil
KillerNameServer = nil
end
end
end
PVPSoundDataFrame:SetScript("OnEvent", PVPSound.DataOnEvent)
function PVPSound:PrintDeath(sender, message, killer)
print("|cFFFF4500"..sender..L["'s"].." "..message.." "..L["was over by"].." "..killer..".|cFFFFFFFF")
end