-
Notifications
You must be signed in to change notification settings - Fork 0
/
ToolTips.lua
executable file
·143 lines (126 loc) · 5.48 KB
/
ToolTips.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
-- Copyright © 2008 - 2012 Xianghar <[email protected]>
-- All Rights Reserved.
-- This code is not to be modified or distributed without written permission by the author.
-- Current distribution permissions only include curse.com, wowinterface.com and their respective addon updaters
if select(2,UnitClass("player")) ~= "SHAMAN" then return end
local L = LibStub("AceLocale-3.0"):GetLocale("TotemTimers", true)
local SpellNames = TotemTimers.SpellNames
local r = 0
local g = 0.9
local b = 1
local function SetTooltipSpellID(id)
local name = GetSpellInfo(id)
local _,_,_,_,_,_,maxSpellID = GetSpellInfo(name)
if GetCVar("UberTooltips") == "1" then
GameTooltip:SetSpellByID(maxSpellID)
else
GameTooltip:ClearLines()
GameTooltip:AddLine(SpellNames[id],1,1,1)
end
end
function TotemTimers.PositionTooltip(self)
if not TotemTimers.ActiveProfile.TooltipsAtButtons then
GameTooltip_SetDefaultAnchor(GameTooltip, self)
else
local left = self:GetLeft()
if left<UIParent:GetWidth()/2 then
GameTooltip:SetOwner(self, "ANCHOR_RIGHT")
else
GameTooltip:SetOwner(self, "ANCHOR_LEFT")
end
end
end
function TotemTimers.HideTooltip(self)
GameTooltip:Hide()
end
function TotemTimers.timerTooltip(self)
if false and self.timer and self.element and not IsModifierKeyDown() and TotemTimers.ActiveProfile.ShowRaidRangeTooltip then
if self.timer.timers[1] <= 0 then return end
local count = TotemTimers.GetOutOfRange(self.element)
if count <= 0 then return end
local missingBuffGUIDs, names, classes = TotemTimers.GetOutOfRangePlayers(self.element)
GameTooltip:ClearLines()
TotemTimers.PositionTooltip(self)
for guid,_ in pairs(missingBuffGUIDs) do
GameTooltip:AddLine(names[guid], RAID_CLASS_COLORS[classes[guid]].r, RAID_CLASS_COLORS[classes[guid]].g, RAID_CLASS_COLORS[classes[guid]].b)
end
GameTooltip:Show()
elseif self:GetAttribute("tooltip") then
local spell = self:GetAttribute("*spell1")
if spell and type(spell) == "string" then spell = TotemTimers.NameToSpellID[spell] end
if spell and spell > 0 then
TotemTimers.PositionTooltip(self)
SetTooltipSpellID(spell)
end
end
end
function TotemTimers.TotemTooltip(self)
local spell = self:GetAttribute("*spell1")
if spell and type(spell) == "string" then spell = TotemTimers.NameToSpellID[spell] end
TotemTimers.PositionTooltip(self)
if spell and spell > 0 then
SetTooltipSpellID(spell)
end
GameTooltip:AddLine(" ")
GameTooltip:AddLine(L["Leftclick to cast spell"],r,g,b,1)
local button = L["Fire Button"]
if self.bar.order == 2 then button = L["Earth Button"]
elseif self.bar.order == 3 then button = L["Water Button"]
elseif self.bar.order == 4 then button = L["Air Button"] end
GameTooltip:AddLine(L["Rightclick to assign totem to timer button"],r,g,b,1)
GameTooltip:Show()
end
function TotemTimers.SetTooltip(self)
if not TotemTimers.ActiveProfile.Tooltips then return end
TotemTimers.PositionTooltip(self)
GameTooltip:AddLine(L["Leftclick to open totem set menu"],r,g,b,1)
GameTooltip:AddLine(L["Rightclick to save active totem configuration as set"],r,g,b,1)
GameTooltip:Show()
end
function TotemTimers.SetButtonTooltip(self)
TotemTimers.PositionTooltip(self)
GameTooltip:AddLine(L["Leftclick to load totem set"],r,g,b,1)
GameTooltip:AddLine(L["Rightclick to delete totem set"],r,g,b,1)
GameTooltip:Show()
end
function TotemTimers.WeaponButtonTooltip(self)
if not TotemTimers.ActiveProfile.Tooltips then return end
GameTooltip:ClearLines()
TotemTimers.PositionTooltip(self)
local text = "-"
if self.timer.timers[1]>0 and TotemTimers.ActiveProfile.LastMainEnchants[TotemTimers.MainHand] then
text = TotemTimers.ActiveProfile.LastMainEnchants[TotemTimers.MainHand][1] or "?"
end
if self.timer.nrOfTimers == 2 and self.timer.timers[2] > 0 and TotemTimers.ActiveProfile.LastOffEnchants[TotemTimers.OffHand] then
text = text..", "..(TotemTimers.ActiveProfile.LastOffEnchants[TotemTimers.OffHand][1])
elseif self.timer.nrOfTimers > 1 then
text = text..", ?"
end
if not text then text = " " end
GameTooltip:AddLine(text)
local s = self:GetAttribute("spell1")
if s and not self:GetAttribute("doublespell1") then
local n = GetSpellInfo(s)
text = format(L["Leftclick to cast %s"], n)
GameTooltip:AddLine(text,r,g,b,1)
else
local ds = self:GetAttribute("ds")
if ds then
local ds1 = self:GetAttribute("doublespell1")
local ds2 = self:GetAttribute("doublespell2")
if ds == 2 then ds1, ds2 = ds2, ds1 end
if ds1 and ds2 then
GameTooltip:AddLine(format(L["Leftclick to cast %s"], ds1),r,g,b,1)
GameTooltip:AddLine(format(L["Next leftclick casts %s"], ds2),r,g,b,1)
end
end
end
--[[s = self:GetAttribute("spell2")
if s then GameTooltip:AddLine(format(L["Rightclick to cast %s"],s),r,g,b,1)
else
s = self:GetAttribute("spell3")
GameTooltip:AddLine(format(L["Middleclick to cast %s"],s),r,g,b,1)
end --]]
--GameTooltip:AddLine(L["Ctrl-Leftclick to remove weapon buffs"],r,g,b,1)
GameTooltip:Show()
end