-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathXpCounter.lua
413 lines (392 loc) · 13.2 KB
/
XpCounter.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
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
XpCounter_Config = { }
-- "version"
-- "tooltip"
-- "overlay_show"
-- "overlay_locked"
-- "overlay_tooltip
-- "overlay_tooltip_anchor"
-- "overlay_text"
-- "xp_count"
-- "time"
-- "time_update"
-- "played_hours"
-- "played_minutes"
-- "kills"
-- "avg_kill_xp"
local XpCounter_Version = "1.13.2"
local XpCounter_time_hours = 0
local XpCounter_time_minutes = 0
local XpCounter_time_lvlup_hours = 0
local XpCounter_time_lvlup_minutes = 0
local XpCounter_xp = 0
local XpCounter_xp_max = 0
local XpCounter_xp_left = 0
local XpCounter_xp_percent = 0
local XpCounter_xp_rest = 0
local XpCounter_xp_epm = 0
local XpCounter_kills_left = 0
local XpCounter_Old_ExhaustionToolTipText = ""
-- local XpCounter_msg_Help = "help im missing"
function XpCounter_OnLoad(self)
-- hide overlay
-- XpCounter_Overlay:Hide()
-- register slash commands
SLASH_XpCounter1 = "/XpCounter"
SLASH_XpCounter2 = "/xpc"
SlashCmdList["XpCounter"] = XpCounter_SlashCmd
-- register events
self:RegisterEvent("VARIABLES_LOADED")
self:RegisterEvent("PLAYER_ENTERING_WORLD")
self:RegisterEvent("PLAYER_XP_UPDATE")
self:RegisterEvent("PLAYER_LEVEL_UP")
self:RegisterEvent("CHAT_MSG_COMBAT_XP_GAIN")
-- register drag (-Lavitz)
self:RegisterForDrag("LeftButton");
-- hook functions
XpCounter_Old_ExhaustionToolTipText = ExhaustionToolTipText
ExhaustionToolTipText = XpCounter_ExhaustionToolTipText
end
function XpCounter_Event(self, event, ...)
local arg1, arg2, arg3 = ...
if ((event == "PLAYER_XP_UPDATE") or (event == "PLAYER_LEVEL_UP")) then
XpCounter_Update()
elseif (event == "CHAT_MSG_COMBAT_XP_GAIN") then
XpCounter_Config["kills"] = XpCounter_Config["kills"] + 1
local x = strsub(arg1, strfind(arg1, "%d+"))
if (XpCounter_Config["avg_kill_xp"] == 0) then
XpCounter_Config["avg_kill_xp"] = x
else
XpCounter_Config["avg_kill_xp"] = ceil((XpCounter_Config["avg_kill_xp"] + x) / 2)
end
XpCounter_Update()
elseif (event == "VARIABLES_LOADED") then
-- display about message
XpCounter_print(format(XpCounter_msg_Loaded, XpCounter_Version, GetLocale()))
-- check profile
if (XpCounter_Config["version"] == nil) then
XpCounter_CreateProfile()
elseif (XpCounter_Config["version"] < XpCounter_Version) then
XpCounter_UpdateProfile()
end
-- set time
XpCounter_time_hours = 0
XpCounter_time_minutes = 0
local seconds = XpCounter_Config["time_update"] - XpCounter_Config["time"]
local minutes = (floor(seconds / 60)) + XpCounter_Config["played_minutes"]
XpCounter_Config["played_hours"] = (floor(minutes / 60)) + XpCounter_Config["played_hours"]
XpCounter_Config["played_minutes"] = math.fmod(minutes, 60)
XpCounter_Config["time"] = GetTime()
if ( (XpCounter_Config["played_hours"] ~= 0) or (XpCounter_Config["played_minutes"] ~= 0) ) then
XpCounter_print(format(XpCounter_msg_Time, XpCounter_Config["played_hours"], XpCounter_Config["played_minutes"]))
end
-- show overlay
if (XpCounter_Config["overlay_show"] == 1) then
XpCounter_Overlay:Show()
end
elseif (event == "PLAYER_ENTERING_WORLD") then
-- set some values
XpCounter_xp = UnitXP("player")
XpCounter_Update()
end
end
function XpCounter_SlashCmd(msg)
if (msg == "show") then
XpCounter_Config["overlay_show"] = 1
XpCounter_Overlay:Show()
XpCounter_Update()
XpCounter_print(XpCounter_msg_Cmd_Show)
elseif (msg == "hide") then
XpCounter_Config["overlay_show"] = 0
XpCounter_Overlay:Hide()
XpCounter_print(XpCounter_msg_Cmd_Hide)
elseif (msg == "lock") then
XpCounter_Config["overlay_locked"] = 1
XpCounter_print(XpCounter_msg_Cmd_Lock)
elseif (msg == "unlock") then
XpCounter_Config["overlay_locked"] = 0
XpCounter_print(XpCounter_msg_Cmd_Unlock)
elseif (msg == "reset") then
XpCounter_Config["time"] = GetTime()
XpCounter_Config["time_update"] = XpCounter_Config["time"]
XpCounter_Config["played_hours"] = 0
XpCounter_Config["played_minutes"] = 0
XpCounter_Config["xp_count"] = 0
XpCounter_Config["kills"] = 0
XpCounter_Config["avg_kill_xp"] = 0
XpCounter_Config["style"] = 0
XpCounter_Update()
XpCounter_print(XpCounter_msg_Cmd_Reset)
elseif (msg == "update") then
XpCounter_Update()
XpCounter_print(XpCounter_msg_Cmd_Update)
elseif (msg == "tooltip_show") then
if (XpCounter_Config["tooltip"] == 1) then
XpCounter_Config["tooltip"] = 0
XpCounter_print(XpCounter_msg_Cmd_Tooltip_off)
else
XpCounter_Config["tooltip"] = 1
XpCounter_print(XpCounter_msg_Cmd_Tooltip_on)
end
-- elseif (msg == "style") then
-- if (XpCounter_Config["style"] == 1) then
-- XpCounter_Config["style"] = 0
-- XpCounter_UpdateOverlay()
-- XpCounter_print(XpCounter_msg_Style_Horizontal)
-- else
-- XpCounter_Config["style"] = 1
-- XpCounter_UpdateOverlay()
-- XpCounter_print(XpCounter_msg_Style_Vertical)
-- end
elseif (msg == "tooltip_show_overlay") then
if (XpCounter_Config["overlay_tooltip"] == 1) then
XpCounter_Config["overlay_tooltip"] = 0
XpCounter_print(XpCounter_msg_Cmd_Overlay_Tooltip_off)
else
XpCounter_Config["overlay_tooltip"] = 1
XpCounter_print(XpCounter_msg_Cmd_Overlay_Tooltip_on)
end
elseif (msg == "tooltip_anchor_overlay") then
if (XpCounter_Config["overlay_tooltip_anchor"] == 1) then
XpCounter_Config["overlay_tooltip_anchor"] = 0
XpCounter_print(XpCounter_msg_Cmd_Anchor_Overerlay_Tooltip_off)
else
XpCounter_Config["overlay_tooltip_anchor"] = 1
XpCounter_print(XpCounter_msg_Cmd_Anchor_Overerlay_Tooltip_on)
end
elseif ((msg == "set_overlay_text") or (msg == "sot")) then
XpCounter_Config["overlay_text"] = arg
XpCounter_print(format(XpCounter_msg_Cmd_Anchor_Overerlay_SetText, XpCounter_Config["overlay_text"]))
XpCounter_UpdateOverlay()
elseif ((msg == "set_overlay_text_help") or (msg == "sot_help")) then
XpCounter_help(XpCounter_msg_Help_Format_Overlay, 1, 1)
else
XpCounter_help(XpCounter_msg_Help, 1)
end
end
function XpCounter_SetDefaultValues()
if (XpCounter_Config["version"] == nil) then
XpCounter_CreateProfile()
elseif (XpCounter_Config["version"] < XpCounter_Version) then
XpCounter_UpdateProfile()
end
end
function XpCounter_Update()
XpCounter_SetDefaultValues()
XpCounter_Config["time_update"] = GetTime()
-- xp count
local xpplus = (UnitXP("player") - XpCounter_xp)
if (xpplus < 0) then
xpplus = XpCounter_xp_max - XpCounter_xp
xpplus = xpplus + UnitXP("player")
end
XpCounter_Config["xp_count"] = XpCounter_Config["xp_count"] + xpplus
-- xp, xpmax & xp left
XpCounter_xp = UnitXP("player")
XpCounter_xp_max = UnitXPMax("player")
XpCounter_xp_left = XpCounter_xp_max - XpCounter_xp
if (XpCounter_xp_left < 0) then
XpCounter_xp_left = 0
end
-- xp percent
XpCounter_xp_percent = (XpCounter_xp / XpCounter_xp_max) * 1000
XpCounter_xp_percent = floor(XpCounter_xp_percent + 0.5)
XpCounter_xp_percent = XpCounter_xp_percent / 10
if (XpCounter_xp_percent < 0) then
XpCounter_xp_percent = 0
end
-- time
local seconds = GetTime() - XpCounter_Config["time"]
local minutes = (floor(seconds / 60)) + XpCounter_Config["played_minutes"]
XpCounter_time_hours = (floor(minutes / 60)) + XpCounter_Config["played_hours"]
XpCounter_time_minutes = math.fmod(minutes, 60)
if (XpCounter_time_minutes < 10) then
XpCounter_time_minutes = "0"..XpCounter_time_minutes
end
-- epm
minutes = minutes + (XpCounter_Config["played_hours"] * 60)
if (minutes <= 1) then
minutes = 1
end
XpCounter_xp_epm = XpCounter_Config["xp_count"] / (minutes)
XpCounter_xp_epm = XpCounter_xp_epm * 100
XpCounter_xp_epm = floor(XpCounter_xp_epm +0.5)
XpCounter_xp_epm = XpCounter_xp_epm / 100
XpCounter_xp_eph = XpCounter_xp_epm * 60
-- time to levelup
if (XpCounter_xp_epm <= 0) then
XpCounter_time_lvlup_minutes = 0
XpCounter_time_lvlup_hours = 0
else
XpCounter_time_lvlup_minutes = floor(XpCounter_xp_left / XpCounter_xp_epm)
XpCounter_time_lvlup_hours = floor(XpCounter_time_lvlup_minutes / 60)
XpCounter_time_lvlup_minutes = math.fmod(XpCounter_time_lvlup_minutes, 60)
end
-- bonus xp
XpCounter_xp_rest = GetXPExhaustion();
if ( (not XpCounter_xp_rest) or (XpCounter_xp_rest <= 0) ) then
XpCounter_xp_rest = 0;
end
-- kills left
if ((XpCounter_Config["avg_kill_xp"] == nil) or (XpCounter_Config["avg_kill_xp"] == 0)) then
XpCounter_kills_left = "n.a."
else
XpCounter_kills_left = ceil(XpCounter_xp_left / XpCounter_Config["avg_kill_xp"])
end
-- update
if (XpCounter_Config["overlay_show"] == 1) then
XpCounter_UpdateOverlay()
end
end
function XpCounter_UpdateOverlay()
msg = XpCounter_Config["overlay_text"]
if (strfind(msg, "#xp_act#")) then
msg = gsub(msg, "#xp_act#", tostring(XpCounter_xp))
end
if (strfind(msg, "#xp_max#")) then
msg = gsub(msg, "#xp_max#", tostring(XpCounter_xp_max))
end
if (strfind(msg, "#xp_perc#")) then
msg = gsub(msg, "#xp_perc#", tostring(XpCounter_xp_percent))
end
if (strfind(msg, "#xp_left#")) then
msg = gsub(msg, "#xp_left#", tostring(XpCounter_xp_left))
end
if (strfind(msg, "#xp_rested#")) then
msg = gsub(msg, "#xp_rested#", tostring(XpCounter_xp_rest))
end
if (strfind(msg, "#xp#")) then
msg = gsub(msg, "#xp#", tostring(XpCounter_Config["xp_count"]))
end
if (strfind(msg, "#time_played#")) then
msg = gsub(msg, "#time_played#", tostring(XpCounter_time_hours.."h"..tostring(XpCounter_time_minutes.."m")))
end
if (strfind(msg, "#time_left#")) then
msg = gsub(msg, "#time_left#", tostring(XpCounter_time_lvlup_hours.."h"..tostring(XpCounter_time_lvlup_minutes.."m")))
end
if (strfind(msg, "#eph#")) then
msg = gsub(msg, "#eph#", tostring(XpCounter_xp_eph))
end
if (strfind(msg, "#epm#")) then
msg = gsub(msg, "#epm#", tostring(XpCounter_xp_epm))
end
if (strfind(msg, "#kills#")) then
msg = gsub(msg, "#kills#", tostring(XpCounter_Config["kills"]))
end
if (strfind(msg, "#avg_kill_xp#")) then
msg = gsub(msg, "#avg_kill_xp#", tostring(XpCounter_Config["avg_kill_xp"]))
end
if (strfind(msg, "#kills_left#")) then
msg = gsub(msg, "#kills_left#", tostring(XpCounter_kills_left))
end
XpCounter_Overlay_ExpText:SetText(msg)
end
function XpCounter_CreateProfile(options)
XpCounter_Config = {}
XpCounter_Config["version"] = XpCounter_Version
XpCounter_Config["tooltip"] = 1
XpCounter_Config["overlay_show"] = 1
XpCounter_Config["overlay_locked"] = 0
XpCounter_Config["overlay_tooltip"] = 1
XpCounter_Config["overlay_tooltip_anchor"] = 0
XpCounter_Config["overlay_text"] = "#xp_act#/#xp_max# (#xp_perc#% +#xp_rested#) #xp_left# XP left :: #kills# kills (#avg_kill_xp# XP) #kills_left# left :: #XP in #time_played# (#eph# / #epm#) #time_left# left"
XpCounter_Config["xp_count"] = 0
XpCounter_Config["time"] = GetTime()
XpCounter_Config["time_update"] = XpCounter_Config["time"]
XpCounter_Config["played_hours"] = 0
XpCounter_Config["played_minutes"] = 0
XpCounter_Config["kills"] = 0
XpCounter_Config["avg_kill_xp"] = 0
XpCounter_Config["style"] = 0
if (options ~= 'silent') then
XpCounter_print(format(XpCounter_msg_CreateProfile, UnitName("player")))
end
end
function XpCounter_UpdateProfile()
old = XpCounter_Config
XpCounter_CreateProfile('silent')
for key,value in old do
if (key ~= 'version') then
XpCounter_Config[key] = value
end
end
XpCounter_print(format(XpCounter_msg_UpdateProfile, UnitName("player")))
end
function XpCounter_locked()
return XpCounter_Config["overlay_locked"];
end
function XpCounter_startMoving(self)
if XpCounter_locked() == 0 then
self:StartMoving()
end
end
function XpCounter_stopMoving(self)
self:StopMovingOrSizing()
end
function XpCounter_ToolTip_show()
if (XpCounter_Config["overlay_tooltip"] == 1) then
if (XpCounter_Config["overlay_tooltip_anchor"] == 1) then
GameTooltip:SetOwner(XpCounter_Overlay, "ANCHOR_CURSOR")
else
GameTooltip_SetDefaultAnchor(GameTooltip, XpCounter_Overlay);
end
GameTooltip:SetText(XpCounter_GetToolTipText())
GameTooltip:Show()
end
end
function XpCounter_ToolTip_hide()
GameTooltip:Hide()
end
function XpCounter_ExhaustionToolTipText()
XpCounter_Old_ExhaustionToolTipText()
if (XpCounter_Config["tooltip"] == 1) then
GameTooltip:SetText(XpCounter_GetToolTipText())
GameTooltip:Show()
else
XpCounter_Old_ExhaustionToolTipText()
end
end
function XpCounter_GetToolTipText()
-- xp, xpmax, xpproc, xpleft, xprest, hours, minutes, xpcount, epm, eph, kills, avg_kill_xp, kills_left, lvlup_hours, lvlup_minutes
return format(XpCounter_msg_ToolTip,
XpCounter_xp,
XpCounter_xp_max,
XpCounter_xp_percent,
XpCounter_xp_left,
XpCounter_xp_rest,
XpCounter_time_hours,
XpCounter_time_minutes,
XpCounter_Config["xp_count"],
XpCounter_xp_eph,
XpCounter_xp_epm,
XpCounter_Config["kills"],
XpCounter_Config["avg_kill_xp"],
XpCounter_kills_left,
XpCounter_time_lvlup_hours,
XpCounter_time_lvlup_minutes )
end
function XpCounter_help(msg, parse, masked)
for i=1,XpCounter_msg_Help_SIZE,1 do
local msg = msg[i]
if (parse ~= nil) then
local x, y = strfind(msg, "%[[^%]]+%]")
if (y ~= nil) then
x = strsub(msg, x+1, y-1)
x = "|cff666666"..strupper(x).."|cffffffff"
if (masked ~= nil) then
x = "|cffffcc00#|cffffffff"..x.."|cffffcc00#|cffffffff"
else
x = x.." - "
end
msg = gsub(msg, "%[[^%]]+%]", x, 1)
end
end
XpCounter_print(msg)
end
end
function XpCounter_print(msg)
if(DEFAULT_CHAT_FRAME) then
print("|cffff33cc[XpCounter]|c00000000 "..msg)
else
print("|cffff33cc[XpCounter]|c00000000 "..msg)
end
end