public
Description: WoW Addon - LDB Guild data feed
Homepage: http://www.tekkub.net/
Clone URL: git://github.com/tekkub/picoguild.git
Click here to lend your support to: picoguild and make a donation at www.pledgie.com !
picoguild / picoGuild.lua
100644 151 lines (110 sloc) 4.253 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
141
142
143
144
145
146
147
148
149
150
151
----------------------------
-- Localization --
----------------------------
 
local L = {
  offline = "(.+) has gone offline.";
  online = "|Hplayer:%s|h[%s]|h has come online.";  ["has come online"] = "has come online",
  ["has gone offline"] = "has gone offline",
 
  ["No Guild"] = "No Guild",
  ["Not in a guild"] = "Not in a guild",
}
 
 
------------------------------
-- Are you local? --
------------------------------
 
local mejoin = UnitName("player").." has joined the guild."
local friends, colors = {}, {}
for class,color in pairs(RAID_CLASS_COLORS) do colors[class] = string.format("%02x%02x%02x", color.r*255, color.g*255, color.b*255) end
 
 
-------------------------------------------
-- Namespace and all that shit --
-------------------------------------------
 
local dataobj = LibStub:GetLibrary("LibDataBroker-1.1"):NewDataObject("picoGuild", {icon = "Interface\\Addons\\picoGuild\\icon", text = L["No Guild"]})
local f = CreateFrame("Frame")
f:SetScript("OnEvent", function(self, event, ...) if self[event] then return self[event](self, event, ...) end end)
 
 
----------------------------------
-- Server query timer --
----------------------------------
 
local MINDELAY, DELAY = 15, 300
local elapsed, dirty = 0, false
f:Hide()
f:SetScript("OnUpdate", function(self, elap)
  elapsed = elapsed + elap
  if (dirty and elapsed >= MINDELAY) or elapsed >= DELAY then
    if IsInGuild() then GuildRoster() else elapsed, dirty = 0, false end
  end
end)
 
 
local orig = GuildRoster
GuildRoster = function(...)
  elapsed, dirty = 0, false
  return orig(...)
end
 
 
---------------------------
-- Init/Enable --
---------------------------
 
function f:PLAYER_LOGIN()
  LibStub("tekKonfig-AboutPanel").new(nil, "picoGuild")
 
  self:Show()
  self:RegisterEvent("GUILD_ROSTER_UPDATE")
  self:RegisterEvent("CHAT_MSG_SYSTEM")
 
  SortGuildRoster("class")
  if IsInGuild() then GuildRoster() end
 
  self:UnregisterEvent("PLAYER_LOGIN")
  self.PLAYER_LOGIN = nil
end
 
 
------------------------------
-- Event Handlers --
------------------------------
 
function f:CHAT_MSG_SYSTEM(event, msg)
  if string.find(msg, L["has come online"]) or string.find(msg, L["has gone offline"]) or msg == mejoin then dirty = true end
end
 
 
function f:GUILD_ROSTER_UPDATE()
  local online = 0
 
  if IsInGuild() then
    for i = 1,GetNumGuildMembers(true) do if select(9, GetGuildRosterInfo(i)) then online = online + 1 end end
    dataobj.text = string.format("%d/%d", online, GetNumGuildMembers(true))
  else dataobj.text = L["No Guild"] end
end
 
 
------------------------
-- Tooltip! --
------------------------
 
local tip = LibStub("tektip-1.0").new(6, "LEFT", "LEFT", "CENTER", "RIGHT", "RIGHT", "RIGHT")
function dataobj.OnLeave() tip:Hide() end
function dataobj.OnEnter(self)
  tip:AnchorTo(self)
 
  tip:AddLine("picoGuild")
 
  if IsInGuild() then
    tip:AddLine("<"..GetGuildInfo("player")..">", 1, 1, 1)
    tip:AddLine(GetGuildRosterMOTD(), 0, 1, 0, true)
    tip:AddLine(" ")
 
    local mylevel = UnitLevel("player")
    for i=1,GetNumGuildMembers(true) do
      local name, rank, rankIndex, level, class, area, note, officernote, connected, status, engclass = GetGuildRosterInfo(i)
      if connected then
        local cc = RAID_CLASS_COLORS[engclass]
        local lr, lg, lb = 0, 1, 0
        if level < (mylevel - 5) then lr, lg, lb = .6, .6, .6
        elseif level > (mylevel + 5) then lr, lg, lb = 1, 0, 0 end
        local levelcolor = (level >= (mylevel - 5) and level <= (mylevel + 5)) and "|cff00ff00" or ""
        tip:AddMultiLine((level < 10 and "0" or "")..level, name, area or "???", note, officernote, rank,
          lr,lg,lb, cc.r,cc.g,cc.b, 1,1,1, nil,nil,nil, 1,1,0, .7,.7,1)
      end
    end
  else
    tip:AddLine(L["Not in a guild"])
  end
 
  tip:Show()
end
 
 
-----------------------------------------
-- Click to open guild panel --
-----------------------------------------
 
function dataobj.OnClick()
  if FriendsFrame:IsVisible() then HideUIPanel(FriendsFrame)
  else
    ToggleFriendsFrame(3)
    FriendsFrame_Update()
    GameTooltip:Hide()
  end
end
 
 
-----------------------------------
-- Make rocket go now! --
-----------------------------------
 
if IsLoggedIn() then f:PLAYER_LOGIN() else f:RegisterEvent("PLAYER_LOGIN") end