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
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
|
-- Scoreboard addon for Windower4. See readme.md for a complete description.
_addon.name = 'Scoreboard'
_addon.author = 'Suji'
_addon.version = '1.14'
_addon.commands = {'sb', 'scoreboard'}
require('tables')
require('strings')
require('maths')
require('logger')
require('actions')
local file = require('files')
config = require('config')
local Display = require('display')
local display
dps_clock = require('dpsclock'):new() -- global for now
dps_db = require('damagedb'):new() -- global for now
-------------------------------------------------------
-- Conventional settings layout
local default_settings = {}
default_settings.numplayers = 8
default_settings.sbcolor = 204
default_settings.showallidps = true
default_settings.resetfilters = true
default_settings.visible = true
default_settings.showfellow = true
default_settings.UpdateFrequency = 0.5
default_settings.combinepets = true
default_settings.display = {}
default_settings.display.pos = {}
default_settings.display.pos.x = 500
default_settings.display.pos.y = 100
default_settings.display.bg = {}
default_settings.display.bg.alpha = 200
default_settings.display.bg.red = 0
default_settings.display.bg.green = 0
default_settings.display.bg.blue = 0
default_settings.display.text = {}
default_settings.display.text.size = 10
default_settings.display.text.font = 'Courier New'
default_settings.display.text.fonts = {}
default_settings.display.text.alpha = 255
default_settings.display.text.red = 255
default_settings.display.text.green = 255
default_settings.display.text.blue = 255
settings = config.load(default_settings)
-- Accepts msg as a string or a table
function sb_output(msg)
local prefix = 'SB: '
local color = settings['sbcolor']
if type(msg) == 'table' then
for _, line in ipairs(msg) do
windower.add_to_chat(color, prefix .. line)
end
else
windower.add_to_chat(color, prefix .. msg)
end
end
-- Handle addon args
windower.register_event('addon command', function()
local chatmodes = S{'s', 'l', 'l2', 'p', 't', 'say', 'linkshell', 'linkshell2', 'party', 'tell', 'echo'}
return function(command, ...)
if command == 'e' then
assert(loadstring(table.concat({...}, ' ')))()
return
end
command = (command or 'help'):lower()
local params = {...}
if command == 'help' then
sb_output('Scoreboard v' .. _addon.version .. '. Author: Suji')
sb_output('sb help : Shows help message')
sb_output('sb pos <x> <y> : Positions the scoreboard')
sb_output('sb reset : Reset damage')
sb_output('sb report [<target>] : Reports damage. Can take standard chatmode target options.')
sb_output('sb reportstat <stat> [<player>] [<target>] : Reports the given stat. Can take standard chatmode target options. Ex: //sb rs acc p')
sb_output('Valid chatmode targets are: ' .. chatmodes:concat(', '))
sb_output('sb filter show : Shows current filter settings')
sb_output('sb filter add <mob1> <mob2> ... : Add mob patterns to the filter (substrings ok)')
sb_output('sb filter clear : Clears mob filter')
sb_output('sb visible : Toggles scoreboard visibility')
sb_output('sb stat <stat> [<player>]: Shows specific damage stats. Respects filters. If player isn\'t specified, ' ..
'stats for everyone are displayed. Valid stats are:')
sb_output(dps_db.player_stat_fields:tostring():stripchars('{}"'))
elseif command == 'pos' then
if params[2] then
local posx, posy = tonumber(params[1]), tonumber(params[2])
settings.display.pos.x = posx
settings.display.pos.y = posy
config.save(settings)
display:set_position(posx, posy)
end
elseif command == 'set' then
if not params[2] then
return
end
local setting = params[1]
if setting == 'combinepets' then
if params[2] == 'true' then
settings.combinepets = true
elseif params[2] == 'false' then
settings.combinepets = false
else
error("Invalid value for 'combinepets'. Must be true or false.")
return
end
settings:save()
sb_output("Setting 'combinepets' set to " .. tostring(settings.combinepets))
elseif setting == 'numplayers' then
settings.numplayers = tonumber(params[2])
settings:save()
display:update()
sb_output("Setting 'numplayers' set to " .. settings.numplayers)
elseif setting == 'bgtransparency' then
settings.display.bg.alpha = tonumber(params[2])
settings:save()
display:update()
sb_output("Setting 'bgtransparency' set to " .. settings.display.bg.alpha)
elseif setting == 'font' then
settings.display.text.font = params[2]
settings:save()
display:update()
sb_output("Setting 'font' set to " .. settings.display.text.font)
elseif setting == 'sbcolor' then
settings.sbcolor = tonumber(params[2])
settings:save()
sb_output("Setting 'sbcolor' set to " .. settings.sbcolor)
elseif setting == 'showallidps' then
if params[2] == 'true' then
settings.showallidps = true
elseif params[2] == 'false' then
settings.showallidps = false
else
error("Invalid value for 'showallidps'. Must be true or false.")
return
end
settings:save()
sb_output("Setting 'showalldps' set to " .. tostring(settings.showallidps))
elseif setting == 'resetfilters' then
if params[2] == 'true' then
settings.resetfilters = true
elseif params[2] == 'false' then
settings.resetfilters = false
else
error("Invalid value for 'resetfilters'. Must be true or false.")
return
end
settings:save()
sb_output("Setting 'resetfilters' set to " .. tostring(settings.resetfilters))
elseif setting == 'showfellow' then
if params[2] == 'true' then
settings.showfellow = true
elseif params[2] == 'false' then
settings.showfellow = false
else
error("Invalid value for 'showfellow'. Must be true or false.")
return
end
settings:save()
sb_output("Setting 'showfellow' set to " .. tostring(settings.showfellow))
end
elseif command == 'reset' then
reset()
elseif command == 'report' then
local arg = params[1]
local arg2 = params[2]
if arg then
if chatmodes:contains(arg) then
if arg == 't' or arg == 'tell' then
if not arg2 then
-- should be a valid player name
error('Invalid argument for report t: Please include player target name.')
return
elseif not arg2:match('^[a-zA-Z]+$') then
error('Invalid argument for report t: ' .. arg2)
end
end
else
error('Invalid parameter passed to report: ' .. arg)
return
end
end
display:report_summary(arg, arg2)
elseif command == 'visible' then
display:update()
display:visibility(not settings.visible)
elseif command == 'filter' then
local subcmd
if params[1] then
subcmd = params[1]:lower()
else
error('Invalid option to //sb filter. See //sb help')
return
end
if subcmd == 'add' then
for i=2, #params do
dps_db:add_filter(params[i])
end
display:update()
elseif subcmd == 'clear' then
dps_db:clear_filters()
display:update()
elseif subcmd == 'show' then
display:report_filters()
else
error('Invalid argument to //sb filter')
end
elseif command == 'stat' then
if not params[1] or not dps_db.player_stat_fields:contains(params[1]:lower()) then
error('Must pass a stat specifier to //sb stat. Valid arguments: ' ..
dps_db.player_stat_fields:tostring():stripchars('{}"'))
else
local stat = params[1]:lower()
local player = params[2]
display:show_stat(stat, player)
end
elseif command == 'reportstat' or command == 'rs' then
if not params[1] or not dps_db.player_stat_fields:contains(params[1]:lower()) then
error('Must pass a stat specifier to //sb reportstat. Valid arguments: ' ..
dps_db.player_stat_fields:tostring():stripchars('{}"'))
return
end
local stat = params[1]:lower()
local arg2 = params[2] -- either a player name or a chatmode
local arg3 = params[3] -- can only be a chatmode
-- The below logic is obviously bugged if there happens to be a player named "say",
-- "party", "linkshell" etc but I don't care enough to account for those people!
if chatmodes:contains(arg2) then
-- Arg2 is a chatmode so we assume this is a 3-arg version (no player specified)
display:report_stat(stat, {chatmode = arg2, telltarget = arg3})
else
-- Arg2 is not a chatmode, so we assume it's a player name and then see
-- if arg3 looks like an optional chatmode.
if arg2 and not arg2:match('^[a-zA-Z]+$') then
-- should be a valid player name
error('Invalid argument for reportstat t ' .. arg2)
return
end
if arg3 and not chatmodes:contains(arg3) then
error('Invalid argument for reportstat t ' .. arg2 .. ', must be a valid chatmode.')
return
end
display:report_stat(stat, {player = arg2, chatmode = arg3, telltarget = params[4]})
end
elseif command == 'fields' then
error("Not implemented yet.")
return
elseif command == 'save' then
if params[1] then
if not params[1]:match('^[a-ZA-Z0-9_-,.:]+$') then
error("Invalid filename: " .. params[1])
return
end
save(params[1])
else
save()
end
else
error('Unrecognized command. See //sb help')
end
end
end())
local months = {
'jan', 'feb', 'mar', 'apr',
'may', 'jun', 'jul', 'aug',
'sep', 'oct', 'nov', 'dec'
}
function save(filename)
if not filename then
local date = os.date("*t", os.time())
filename = string.format("sb_%s-%d-%d-%d-%d.txt",
months[date.month],
date.day,
date.year,
date.hour,
date.min)
end
local parse = file.new('data/parses/' .. filename)
if parse:exists() then
local dup_path = file.new(parse.path)
local dup = 0
while dup_path:exists() do
dup_path = file.new(parse.path .. '.' .. dup)
dup = dup + 1
end
parse = dup_path
end
parse:create()
end
-- Resets application state
function reset()
if settings.resetfilters then
dps_db:clear_filters()
end
display:reset()
dps_clock:reset()
dps_db:reset()
end
display = Display:new(settings, dps_db)
-- Keep updates flowing
local function update_dps_clock()
local player = windower.ffxi.get_player()
local pet
if player ~= nil then
local player_mob = windower.ffxi.get_mob_by_id(player.id)
if player_mob ~= nil then
local pet_index = player_mob.pet_index
if pet_index ~= nil then
pet = windower.ffxi.get_mob_by_index(pet_index)
end
end
end
if player and (player.in_combat or (pet ~= nil and pet.status == 1)) then
dps_clock:advance()
else
dps_clock:pause()
end
display:update()
end
-- Returns all mob IDs for anyone in your alliance, including their pets.
function get_ally_mob_ids()
local allies = T{}
local party = windower.ffxi.get_party()
for _, member in pairs(party) do
if type(member) == 'table' and member.mob then
allies:append(member.mob.id)
if member.mob.pet_index and member.mob.pet_index> 0 and windower.ffxi.get_mob_by_index(member.mob.pet_index) then
allies:append(windower.ffxi.get_mob_by_index(member.mob.pet_index).id)
end
end
end
if settings.showfellow then
local fellow = windower.ffxi.get_mob_by_target("ft")
if fellow ~= nil then
allies:append(fellow.id)
end
end
return allies
end
-- Returns true if is someone (or a pet of someone) in your alliance.
function mob_is_ally(mob_id)
-- get zone-local ids of all allies and their pets
return get_ally_mob_ids():contains(mob_id)
end
function action_handler(raw_actionpacket)
local actionpacket = ActionPacket.new(raw_actionpacket)
local category = actionpacket:get_category_string()
local player = windower.ffxi.get_player()
local pet
if player ~= nil then
local player_mob = windower.ffxi.get_mob_by_id(player.id)
if player_mob ~= nil then
local pet_index = player_mob.pet_index
if pet_index ~= nil then
pet = windower.ffxi.get_mob_by_index(pet_index)
end
end
end
if not player or not (windower.ffxi.get_player().in_combat or (pet ~= nil and pet.status == 1)) then
-- nothing to do
return
end
for target in actionpacket:get_targets() do
for subactionpacket in target:get_actions() do
if (mob_is_ally(actionpacket.raw.actor_id) and not mob_is_ally(target.raw.id)) then
-- Ignore actions within the alliance, but parse all alliance-outwards or outwards-alliance packets.
local main = subactionpacket:get_basic_info()
local add = subactionpacket:get_add_effect()
local spike = subactionpacket:get_spike_effect()
if main.message_id == 1 then
dps_db:add_m_hit(target:get_name(), create_mob_name(actionpacket), main.param)
elseif main.message_id == 67 then
dps_db:add_m_crit(target:get_name(), create_mob_name(actionpacket), main.param)
elseif main.message_id == 15 or main.message_id == 63 then
dps_db:incr_misses(target:get_name(), create_mob_name(actionpacket))
elseif main.message_id == 353 then
dps_db:add_r_crit(target:get_name(), create_mob_name(actionpacket), main.param)
elseif T{157, 352, 576, 577}:contains(main.message_id) then
dps_db:add_r_hit(target:get_name(), create_mob_name(actionpacket), main.param)
elseif main.message_id == 353 then
dps_db:add_r_crit(target:get_name(), create_mob_name(actionpacket), main.param)
elseif main.message_id == 354 then
dps_db:incr_r_misses(target:get_name(), create_mob_name(actionpacket))
elseif main.message_id == 188 then
dps_db:incr_ws_misses(target:get_name(), create_mob_name(actionpacket))
elseif main.resource and main.resource == 'weapon_skills' and main.conclusion then
dps_db:add_ws_damage(target:get_name(), create_mob_name(actionpacket), main.param, main.spell_id)
-- Siren's Hysteric Assault does HP drain and falls under message_id 802
elseif main.message_id == 802 then
dps_db:add_damage(target:get_name(), create_mob_name(actionpacket), main.param)
elseif main.conclusion then
if main.conclusion.subject == 'target' and T(main.conclusion.objects):contains('HP') and main.param ~= 0 then
dps_db:add_damage(target:get_name(), create_mob_name(actionpacket), (main.conclusion.verb == 'gains' and -1 or 1)*main.param)
end
end
if add and add.conclusion then
local actor_name = create_mob_name(actionpacket)
if T{196,223,288,289,290,291,292,
293,294,295,296,297,298,299,
300,301,302,385,386,387,388,
389,390,391,392,393,394,395,
396,397,398,732,767,768,769,770}:contains(add.message_id) then
actor_name = string.format("Skillchain(%s%s)", actor_name:sub(1, 3),
actor_name:len() > 3 and '.' or '')
end
if add.conclusion.subject == 'target' and T(add.conclusion.objects):contains('HP') and add.param ~= 0 then
dps_db:add_damage(target:get_name(), actor_name, (add.conclusion.verb == 'gains' and -1 or 1)*add.param)
end
end
if spike and spike.conclusion then
if spike.conclusion.subject == 'target' and T(spike.conclusion.objects):contains('HP') and spike.param ~= 0 then
dps_db:add_damage(target:get_name(), create_mob_name(actionpacket), (spike.conclusion.verb == 'gains' and -1 or 1)*spike.param)
end
end
elseif (mob_is_ally(target.raw.id) and not mob_is_ally(actionpacket.raw.actor_id)) then
local spike = subactionpacket:get_spike_effect()
if spike and spike.conclusion then
if spike.conclusion.subject == 'actor' and T(spike.conclusion.objects):contains('HP') and spike.param ~= 0 then
dps_db:add_damage(create_mob_name(actionpacket), target:get_name(), (spike.conclusion.verb == 'loses' and 1 or -1)*spike.param)
end
end
end
end
end
end
ActionPacket.open_listener(action_handler)
function find_pet_owner_name(actionpacket)
local pet = windower.ffxi.get_mob_by_id(actionpacket:get_id())
local party = windower.ffxi.get_party()
local name = nil
for _, member in pairs(party) do
if type(member) == 'table' and member.mob then
if member.mob.pet_index and member.mob.pet_index> 0 and pet.index == member.mob.pet_index then
name = member.mob.name
break
end
end
end
return name, pet.name
end
function create_mob_name(actionpacket)
local actor = actionpacket:get_actor_name()
local result = ''
local owner, pet = find_pet_owner_name(actionpacket)
if owner ~= nil then
if string.len(actor) > 8 then
result = string.sub(actor, 1, 7)..'.'
else
result = actor
end
if settings.combinepets then
result = ''
else
result = actor
end
if pet then
result = '('..owner..')'..' '..pet
end
else
return actor
end
return result
end
config.register(settings, function(settings)
update_dps_clock:loop(settings.UpdateFrequency)
display:visibility(display.visible and windower.ffxi.get_info().logged_in)
end)
--[[
Copyright � 2013-2014, Jerry Hebert
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
* Neither the name of Scoreboard nor the
names of its contributors may be used to endorse or promote products
derived from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL JERRY HEBERT BE LIABLE FOR ANY
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
]]
|