forked from secretrob/BanditsUserInterface
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBUI_Statistics.lua
2226 lines (2167 loc) · 115 KB
/
BUI_Statistics.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
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
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
--DAMAGE STATISTICS COMPONENT
local PingConfirmed=0
local StatShare_Code=74
local DamageTimeout=5000
local ReportToShow, LastSection, LastTarget, TargetBuffsIsExpanded
local BuffsSection=true
local BUFF_W=355
local ChampionDisciplineColor={[CHAMPION_DISCIPLINE_TYPE_CONDITIONING]={.7,.2,.2,1},[CHAMPION_DISCIPLINE_TYPE_COMBAT]={.4,.4,.9,1},[CHAMPION_DISCIPLINE_TYPE_WORLD]={.2,.7,.2,1}}
local _seconds=BUI.language=="ru" and "|r сек." or BUI.language=="de" and "|r Sekunden" or BUI.language=="fr" and "|r secondes" or BUI.language=="br" and "|r segundos" or "|r seconds"
local AbilityIcons={
[103]="esoui/art/tutorial/swap_button_up.dds", --Swap
--Resource gain
[62796]='/esoui/art/icons/ability_mage_013.dds', --Minor Magickasteal
[63114]='/esoui/art/icons/ability_mage_013.dds', --Arcane Well
[45223]='/esoui/art/icons/consumable_potion_002_type_005.dds', --Restore Magicka
[45225]='/esoui/art/icons/consumable_potion_003_type_005.dds', --Restore Stamina
[55400]='/esoui/art/icons/ability_undaunted_004.dds', --Magicka Restore (orb)
[87876]='/esoui/art/icons/ability_warden_017.dds', --Bety Netch
[88483]='/esoui/art/icons/passive_warden_006.dds', --Natures Give
[63110]='/esoui/art/champion/champion_points_health_icon.dds', --Spell Absorption
[34813]='/esoui/art/icons/gear_dunmer_light_shirt_a.dds', --Magicka Furnace
[16270]='/esoui/art/icons/ability_mage_057.dds', --Brace Cost
[55678]='/esoui/art/icons/passive_templar_002.dds', --Undaunted Commando
[55679]='/esoui/art/icons/passive_templar_002.dds', --Undaunted Commando
[32760]='/esoui/art/icons/death_recap_magic_ranged.dds', --Heavy Attack (Restoration)
[60763]='/esoui/art/icons/death_recap_fire_ranged.dds', --Heavy Attack (Fire)
[60764]='/esoui/art/icons/death_recap_shock_ranged.dds', --Heavy Attack (Shock)
[60762]='/esoui/art/icons/death_recap_cold_ranged.dds', --Heavy Attack (Frost)
[58430]='/esoui/art/icons/passive_armor_014.dds', --Constitution
[45382]='/esoui/art/icons/consumable_potion_001_type_005.dds', --Restore Health
[44986]='/esoui/art/icons/ability_dragonknight_031.dds', --Battle Roar
[33733]='/esoui/art/icons/ability_dragonknight_012_b.dds', --Draw Essence
--Ultimate gain
[37555]='/esoui/art/icons/ability_nightblade_007_b.dds', --Soul Harvest
[63707]='/esoui/art/icons/passive_sorcerer_046.dds', --Amhibious Regen
[42495]='/esoui/art/icons/ability_mageguild_005_a.dds', --Shooting Star
}
BUI.Stats.Defaults={
EnableStats =true,
BUI_MiniMeter ={TOPRIGHT,TOP,-400,0},
BUI_GroupDPS ={TOPLEFT,TOP,-400,120},
-- BUI_Targets ={TOPRIGHT,TOPRIGHT,-260,0},
-- BUI_BuffsUp ={TOPLEFT,TOPLEFT,260,0},
ReportScale =1,
StatTriggerHeals =false,
StatsShareDPS =true,
StatsUpdateDPS =false,
StatsGroupDPS =false,
StatsGroupDPSframe =false,
-- CalculateGroupDPS =true,
StatsMiniMeter =true,
ReticleDpS =false,
MiniMeterAplha =.8,
-- GroupDPS =true,
StatsMiniHealing =false,
StatsMiniGroupDps =true,
StatsMiniSpeed =false,
StatsFontSize =18,
StatsTransparent =true,
StatsSplitElements =true,
StatsBuffs =true,
Reports ={},
}
BUI:JoinTables(BUI.Defaults,BUI.Stats.Defaults)
local SLOTS={
EQUIP_SLOT_HEAD,
EQUIP_SLOT_SHOULDERS,
EQUIP_SLOT_CHEST,
EQUIP_SLOT_WAIST,
EQUIP_SLOT_HAND,
EQUIP_SLOT_LEGS,
EQUIP_SLOT_FEET,
EQUIP_SLOT_NECK,
EQUIP_SLOT_RING1,
EQUIP_SLOT_RING2,
EQUIP_SLOT_MAIN_HAND,
EQUIP_SLOT_OFF_HAND,
EQUIP_SLOT_POISON,
EQUIP_SLOT_BACKUP_MAIN,
EQUIP_SLOT_BACKUP_OFF,
EQUIP_SLOT_BACKUP_POISON,
}
local RaceIcon={
"breton_01",
"redguard_01",
"orc_01",
"dunmer_01",
"nord_01",
"argonian_01",
"altmer_01",
"bosmer_01",
"khajiit_01",
"imperial_01",
}
-- /script for i=0,11 do d("["..i.."]"..tostring(GetRaceName(nil,i))) end
--[[
function BUI.Stats:BuffsUp_Init() --BuffsUp REPORT
local fs=BUI.Vars.StatsFontSize
local BuffsUp =BUI.UI.Control( "BUI_BuffsUp", BanditsUI, {270+fs*7,200}, BUI.Vars.BUI_BuffsUp, true)
BuffsUp.backdrop =BUI.UI.Backdrop( "BUI_BuffsUp_BG", BuffsUp, "inherit", {CENTER,CENTER,0,0}, {0,0,0,0.25}, {0,0,0,0}, nil, false)
-- BuffsUp:SetAlpha(1)
BuffsUp:SetMouseEnabled(true)
BuffsUp:SetMovable(true)
BuffsUp:SetHandler("OnMouseUp", function(self) BUI.Menu:SaveAnchor(self) end)
--Headers
BuffsUp.namesH =BUI.UI.Label( "BUI_BuffsUp_NamesHeader", BuffsUp, {270,25}, {TOPLEFT,TOPLEFT,10,5}, BUI.UI.Font("standard",fs,true), {1,1,1,1}, {0,1}, "Buff" , false)
BuffsUp.timeH =BUI.UI.Label( "BUI_BuffsUp_TimeHeader", BuffsUp, {fs*3,25}, {LEFT,RIGHT,0,0,BuffsUp.namesH}, BUI.UI.Font("standard",fs,true), {1,1,1,1}, {0,1}, "Time" , false)
-- BuffsUp.damageH =BUI.UI.Label( "BUI_BuffsUp_DamageHeader", BuffsUp, {90,25}, {LEFT,RIGHT,0,0,BuffsUp.timeH}, BUI.UI.Font("standard",fs,true), {1,1,1,1}, {0,1}, "Damage" , false)
BuffsUp.percentH =BUI.UI.Label( "BUI_BuffsUp_PercentHeader", BuffsUp, {fs*4,25}, {LEFT,RIGHT,0,0,BuffsUp.timeH}, BUI.UI.Font("standard",fs,true), {1,1,1,1}, {0,1}, "%%" , false)
--Divider
BuffsUp.divider =BUI.UI.Texture( "BUI_BuffsUp_Divider", BuffsUp, {270+fs*7-40,8}, {TOPLEFT,TOPLEFT,20,32}, 'EsoUI/Art/Miscellaneous/horizontalDivider.dds', false)
BuffsUp.divider:SetTextureCoords(0.181640625, 0.818359375, 0, 1) BuffsUp:SetDrawLayer(DL_OVERLAY)
--List
local list =BUI.UI.Control( "BUI_BuffsUp_List", BuffsUp, {270,600}, {TOPLEFT,TOPLEFT,10,40}, false)
BuffsUp.names =BUI.UI.Label( "BUI_BuffsUp_Names", list, "inherit", {TOP,TOP,0,0}, BUI.UI.Font("standard",fs,true), {1,1,1,1}, {0,0}, "" , false)
BuffsUp.time =BUI.UI.Label( "BUI_BuffsUp_Time", list, {fs*3,600}, {LEFT,RIGHT,0,0,BuffsUp.names}, BUI.UI.Font("standard",fs,true), {1,1,1,1}, {0,0}, "" , false)
-- BuffsUp.damage =BUI.UI.Label( "BUI_BuffsUp_Damage", list, {90,600}, {LEFT,RIGHT,0,0,BuffsUp.time}, BUI.UI.Font("standard",fs,true), {1,1,1,1}, {0,0}, "damage" , false)
BuffsUp.percent =BUI.UI.Label( "BUI_BuffsUp_Percent", list, {fs*4,600}, {LEFT,RIGHT,0,0,BuffsUp.time}, BUI.UI.Font("standard",fs,true), {1,1,1,1}, {0,0}, "" , false)
end
--]]
function BUI.Stats.Minimeter_Init() --MINI DAMAGE METER
--ReticleDpS
local fs =15
BUI.UI.Label("BUI_ReticleDpS", ZO_ReticleContainerReticle, {fs*2,fs}, {TOPRIGHT,TOPLEFT,0,1}, BUI.UI.Font("esobold",fs), {.8,.8,.67,1}, {2,0}, "", false)
if not BUI.Vars.StatsMiniMeter then return end
local width=171
local damage,healing,GroupDps,speed,time
if BUI.Vars.StatsMiniHealing then width=width+110 end
if BUI.Vars.StatsMiniGroupDps then width=width+90 end
if BUI.Vars.StatsMiniSpeed then width=width+65 end
local ui =BUI.UI.Control( "BUI_MiniMeter", BanditsUI, {width,44}, BUI.Vars.BUI_MiniMeter, not BUI.Vars.StatsMiniMeter)
ui.backdrop =BUI.UI.Backdrop("BUI_MiniMeter_Backdrop", ui,{width,44},{TOPLEFT,TOPLEFT,0,0},{0,0,0,0.4},{0,0,0,1},nil,true) --ui.backdrop:SetEdgeTexture("",16,4,4)
ui.label =BUI.UI.Label("BUI_MiniMeter_Label", ui.backdrop,{width,44},{TOPLEFT,TOPLEFT,0,0},BUI.UI.Font("standard",20,false),nil,{1,1},BUI.Loc("StatMiniHeader"))
ui.base =BUI.UI.Control("BUI_MiniMeter_Base", ui, {width,44}, {TOPLEFT,TOPLEFT,0,0}, false)
-- ui.bg =BUI.UI.Backdrop("BUI_MiniMeter_BG", ui.base, "inherit", {TOPLEFT,TOPLEFT,0,0}, {0,0,0,BUI.Vars.MiniMeterAplha}, {0,0,0,BUI.Vars.MiniMeterAplha+0.1}, nil, false)
ui.bg =BUI.UI.Backdrop("BUI_MiniMeter_BG", ui.base, "inherit", {TOPLEFT,TOPLEFT,0,0}, {1,1,1,0}, {1,1,1,BUI.Vars.MiniMeterAplha}, "/esoui/art/chatwindow/chat_bg_center.dds", false)
ui.bg:SetEdgeTexture("/esoui/art/chatwindow/chat_bg_edge.dds", 256, 128, 22)
ui:SetMovable(true)
ui:SetHandler("OnMoveStop", function(self) BUI.Menu:SaveAnchor(self) end)
damage =BUI.UI.Control( "BUI_MiniMeter_Dam", ui.base, {116,32}, {LEFT,LEFT,5,0}, false)
damage.label =BUI.UI.Label( "BUI_MiniMeter_DamLabel", damage, {98,32}, {LEFT,LEFT,28,0}, BUI.UI.Font(BUI.Vars.FrameFont1,16,true), {1,1,1,1}, {0,1}, "0", false)
damage.icon =BUI.UI.Texture( "BUI_MiniMeter_DamIcon", damage, {30,30}, {LEFT,LEFT,0,0}, '/esoui/art/menubar/gamepad/gp_playermenu_icon_skills.dds', false)
--esoui/art/icons/poi/poi_battlefield_complete.dds
damage:SetMouseEnabled(true)
damage:SetHandler("OnMouseDown", function(self,button)
if button==1 then BUI.Stats.Toggle()
elseif button==2 then BUI.Stats.Post()
elseif button==3 then BUI.Stats.Reset()
end
end)
damage:SetHandler("OnMouseEnter", function(self) ZO_Tooltips_ShowTextTooltip(self, BOTTOMRIGHT, BUI.Loc("MiniMeterDPSToolTip")) end)
damage:SetHandler("OnMouseExit", ZO_Tooltips_HideTextTooltip)
ui.damage =damage
if BUI.Vars.StatsMiniHealing then
healing =BUI.UI.Control( "BUI_MiniMeter_Heal", ui.base, {110,32}, {LEFT,RIGHT,0,0,damage}, false)
healing.label =BUI.UI.Label( "BUI_MiniMeter_HealLabel", healing, {90,32}, {LEFT,LEFT,28,0}, BUI.UI.Font(BUI.Vars.FrameFont1,16,true), {1,1,1,1}, {0,1}, "0", false)
healing.icon =BUI.UI.Texture( "BUI_MiniMeter_HealIcon", healing, {24,24}, {LEFT,LEFT,3,0}, '/esoui/art/buttons/gamepad/pointsplus_up.dds', false)
healing:SetMouseEnabled(true)
healing:SetHandler("OnMouseDown", function(self,button) BUI.Helper_Toggle() end)
healing:SetHandler("OnMouseEnter", function(self) ZO_Tooltips_ShowTextTooltip(self, BOTTOMRIGHT, BUI.Loc("MiniMeterHPSToolTip")) end)
healing:SetHandler("OnMouseExit", ZO_Tooltips_HideTextTooltip)
ui.healing =healing
elseif BUI_MiniMeter_Heal then BUI_MiniMeter_Heal:SetHidden(true) end
if BUI.Vars.StatsMiniGroupDps then
GroupDps =BUI.UI.Control( "BUI_MiniMeter_gDps", ui.base, {90,32}, {LEFT,RIGHT,0,0,healing or damage}, false)
GroupDps.label =BUI.UI.Label( "BUI_MiniMeter_gDpsLabel", GroupDps, {62,32}, {LEFT,LEFT,28,0}, BUI.UI.Font(BUI.Vars.FrameFont1,16,true), {1,1,1,1}, {0,1}, "0", false)
GroupDps.icon =BUI.UI.Texture( "BUI_MiniMeter_gDpsIcon", GroupDps, {30,30}, {LEFT,LEFT,0,0}, '/esoui/art/treeicons/gamepad/gp_tutorial_idexicon_magicweaponsarmor.dds', false)
--esoui/art/lfg/lfg_icon_dps.dds
--esoui/art/icons/poi/poi_battlefield_complete.dds
GroupDps:SetMouseEnabled(true)
GroupDps:SetHandler("OnMouseDown", function(self,button)
if button==1 then LastSection="Group" BUI.Stats.Toggle()
elseif button==2 then
CHAT_SYSTEM.textEntry:SetText("/p"..BUI.GroupDPS_text)
CHAT_SYSTEM:Maximize() CHAT_SYSTEM.textEntry:Open() CHAT_SYSTEM.textEntry:FadeIn()
end
end)
GroupDps:SetHandler("OnMouseEnter", function(self) ZO_Tooltips_ShowTextTooltip(self, BOTTOMRIGHT, (BUI.GroupDPS_tip~="" and BUI.GroupDPS_tip.."\n"..BUI.Loc("MiniMeterGDPSToolTip2").."\n" or "")..BUI.Loc("MiniMeterGDPSToolTip1")) end)
GroupDps:SetHandler("OnMouseExit", ZO_Tooltips_HideTextTooltip)
ui.GroupDps =GroupDps
elseif BUI_MiniMeter_gDps then BUI_MiniMeter_gDps:SetHidden(true) end
if BUI.Vars.StatsMiniSpeed then
speed =BUI.UI.Control( "BUI_MiniMeter_Speed", ui.base, {65,32}, {LEFT,RIGHT,0,0,GroupDps or healing or damage}, false)
speed.label =BUI.UI.Label( "BUI_MiniMeter_SpeedLabel", speed, {37,32}, {RIGHT,RIGHT,0,0}, BUI.UI.Font(BUI.Vars.FrameFont1,16,true), {1,1,1,1}, {0,1}, "0|cAAAAAA%|r", false)
speed.icon =BUI.UI.Texture( "BUI_MiniMeter_SpeedIcon", speed, {28,28}, {LEFT,LEFT,3,1}, '/esoui/art/ava/overview_icon_underdog_score.dds', false)
ui.speed =speed
elseif BUI_MiniMeter_Speed then BUI_MiniMeter_Speed:SetHidden(true) end
time =BUI.UI.Control( "BUI_MiniMeter_Time", ui.base, {60,32}, {LEFT,RIGHT,0,0,speed or GroupDps or healing or damage}, false)
time.label =BUI.UI.Label( "BUI_MiniMeter_TimeLabel", time, {48,32}, {RIGHT,RIGHT,0,0}, BUI.UI.Font(BUI.Vars.FrameFont1,16,true), {1,1,1,1}, {0,1}, "0:00", false)
time.icon =BUI.UI.Texture( "BUI_MiniMeter_TimeIcon", time, {12,15}, {LEFT,LEFT,0,0}, '/esoui/art/journal/journal_quest_repeat.dds', false)
ui.time =time
end
function BUI.Stats.GroupDPS_Init()
local fs=BUI.Vars.RaidFontSize
local w,h=fs*.6*19,fs*1.335*10
local ui =BUI.UI.Control( "BUI_GroupDPS", BanditsUI, {w,h}, BUI.Vars.BUI_GroupDPS, true)
ui.backdrop =BUI.UI.Backdrop( "BUI_GroupDPS_Backdrop", ui, {w,h}, {TOPLEFT,TOPLEFT,0,0},{0,0,0,0.4},{0,0,0,1},nil,true)
ui.label =BUI.UI.Label( "BUI_GroupDPS_Label", ui.backdrop,{w,h}, {TOPLEFT,TOPLEFT,0,0},BUI.UI.Font("standard",20,false),nil,{1,1},BUI.Loc("GroupDPS"))
ui.base =BUI.UI.Control( "BUI_GroupDPS_Base", ui, {w,h}, {TOPLEFT,TOPLEFT,0,0}, false)
ui:SetMovable(true)
-- ui:SetAlpha(0)
ui:SetHandler("OnMoveStop", function(self) BUI.Menu:SaveAnchor(self) end)
BUI.UI.Label("BUI_GroupDPS_Names", ui, {fs*.6*12,h}, {TOPLEFT,TOPLEFT,0,0}, BUI.UI.Font(BUI.Vars.FrameFont1,fs,true), nil, {0,0}, "")
BUI.UI.Label("BUI_GroupDPS_Value", ui, {fs*.6*7,h}, {TOPRIGHT,TOPRIGHT,0,0}, BUI.UI.Font(BUI.Vars.FrameFont1,fs,true), nil, {0,0}, "")
end
local function ResetHeaderButtons()
local buttons={"BUI_Report_Dbutton","BUI_Report_Hbutton","BUI_Report_Rbutton","BUI_Report_Ibutton","BUI_Report_Gbutton"}
for _,button in pairs(buttons) do _G[button]:SetState(BSTATE_NORMAL) end
end
local function EquipmentInfo()
if BUI_Report_Einfo and not BUI_Report_Einfo:IsHidden() then
BUI_Report_Einfo:SetHidden(true)
BUI_Report_Ebutton:SetTextureRotation(0)
return
end
BUI_Report_Ebutton:SetTextureRotation(math.pi)
if BUI_Report_Uptimes and not BUI_Report_Uptimes:IsHidden() then
BUI_Report_Uptimes:SetHidden(true)
BUI_Report_Ubutton:SetTextureRotation(0)
end
local i,fs=0,BUI.Vars.StatsFontSize
local sfs=(BUI.language=="en" or BUI.Vars.ActionsPrecise)and fs or fs-4
local w=720+20+((BUI.language=="en" or BUI.Vars.ActionsPrecise)and 50 or 0)
local w1=20+275+70+160
local w2=(w-w1-22)/7
local w3=BUFF_W-40
local h1=fs*1.5*16 --(math.max(i+1,14))
local weapon={}
local armorTypes={[ARMORTYPE_LIGHT]=" (|c5555EEL|r)",[ARMORTYPE_MEDIUM]=" (|c22DD22M|r)",[ARMORTYPE_HEAVY]=" (|cDD2222H|r)"}
local ui=BUI_Report_Einfo or WINDOW_MANAGER:CreateControl("BUI_Report_Einfo", BUI_Report, CT_BACKDROP)
ui:SetCenterColor(0,0,0,BUI.Vars.StatsTransparent and 0.7 or 1)
ui:SetEdgeColor(.7,.7,.5,.3)
ui:SetEdgeTexture("",8,2,2)
ui:SetHidden(false)
ui:ClearAnchors()
ui:SetAnchor(TOPLEFT,BUI_Report,BOTTOMLEFT,0,-2)
ui:SetAnchor(BOTTOMRIGHT,BUI_Report,BOTTOMRIGHT,0,h1+2)
BUI.UI.Line("BUI_Report_Einfo_L1", ui, {0,h1}, {TOPLEFT,TOPLEFT,w1-1,2}, {.7,.7,.5,.3}, 2)
BUI.UI.Line("BUI_Report_Einfo_L2", ui, {0,h1}, {TOPLEFT,TOPLEFT,w-1,2}, {.7,.7,.5,.3}, 2)
BUI.UI.Texture("BUI_Report_Logo", ui, {128,128}, {CENTER,RIGHT,-BUFF_W/2,0}, "/BanditsUserInterface/textures/Bandits_logo.dds") BUI_Report_Logo:SetAlpha(.5)
--Items header
local header =BUI.UI.Control( "BUI_Report_Items_Header", ui, {w1-20,fs*1.3}, {TOPLEFT,TOPLEFT,10,2})
header.bg =BUI.UI.Backdrop( "BUI_Report_Items_BG", header, {w1-20,fs*1.3}, {TOPLEFT,TOPLEFT,0,0}, {.4,.4,.4,.3}, {0,0,0,0})
header.name =BUI.UI.Label( "BUI_Report_Items_Name", header, {255,fs*1.5}, {LEFT,LEFT,30,0}, BUI.UI.Font("esobold",fs,true), {1,1,1,1}, {1,1}, "Item")
header.trait =BUI.UI.Label( "BUI_Report_Items_Trait", header, {70,fs*1.5}, {LEFT,RIGHT,0,0,header.name}, BUI.UI.Font("esobold",fs,true), {1,1,1,1}, {1,1}, "Trait")
header.ench =BUI.UI.Label( "BUI_Report_Items_Enchant", header, {160,fs*1.5}, {LEFT,RIGHT,0,0,header.trait}, BUI.UI.Font("esobold",fs,true), {1,1,1,1}, {1,1}, "Enchant")
--Items
for _,slot in pairs(SLOTS) do
local itemLink =GetItemLink(BAG_WORN,slot)
if itemLink~="" then
i=i+1
local icon =GetItemLinkInfo(itemLink)
if slot==EQUIP_SLOT_MAIN_HAND then weapon[1]=icon elseif slot==EQUIP_SLOT_BACKUP_MAIN then weapon[2]=icon end
-- local itemType =GetItemLinkItemType(itemLink)
local _,_,enchant =GetItemLinkEnchantInfo(itemLink)
local traitType =GetItemLinkTraitInfo(itemLink)
local armorType =GetItemLinkArmorType(itemLink)
local traitName =traitType==ITEM_TRAIT_TYPE_NONE and "" or GetString("SI_ITEMTRAITTYPE", traitType)
enchant=string.gsub(enchant,"Maximum","Max")
enchant=string.gsub(enchant,"Максимум","Макс")
enchant=string.gsub(enchant,"Increase your","Inc.")
enchant=string.gsub(enchant,"Damage","Dmg")
enchant=string.gsub(enchant,"([0-9]+)|r(%s[^%s]+%sHealth)","|cFF2222%1%2|r")
enchant=string.gsub(enchant,"([0-9]+)|r(%s[^%s]+%sStamina)","|c22FF22%1%2|r")
enchant=string.gsub(enchant,"([0-9]+)|r(%s[^%s]+%sMagicka)","|c5555EE%1%2|r")
enchant=string.gsub(enchant,"([0-9]+)|r(%sHealth)","|cFF2222%1%2|r")
enchant=string.gsub(enchant,"([0-9]+)|r(%sStamina)","|c22FF22%1%2|r")
enchant=string.gsub(enchant,"([0-9]+)|r(%sMagicka)","|c5555EE%1%2|r")
enchant=string.gsub(enchant,"([0-9]+)|r(%sMagick)","|c5555EE%1%2|r")
enchant=string.gsub(enchant,"([0-9]+)|r(%sSpell)","|c5555EE%1%2|r")
enchant=string.gsub(enchant,"([0-9]+)|r(%sFlame)","|cEE3333%1%2|r")
-- enchant=string.gsub(enchant,"([0-9]+)|r(%sWeapon)","|cEEEEEE%1%2|r")
enchant=string.gsub(enchant,"([0-9]+)|r(%s[^%s]+%sCritical)","|cBB33BB%1%2|r")
enchant=string.gsub(enchant,"([0-9]+)|r(%sDisease)","|cBB33BB%1%2|r")
enchant=string.gsub(enchant,"([0-9]+)|r(%sPoison)","|c33BB33%1%2|r")
--Item
local label=_G["BUI_Report_ItemName"..i] or WINDOW_MANAGER:CreateControl("BUI_Report_ItemName"..i, ui, CT_LABEL)
label:SetDimensions(270, fs*1.5)
label:ClearAnchors()
label:SetAnchor(TOPLEFT,ui,TOPLEFT,20,fs*1.5*i)
label:SetFont(BUI.UI.Font("standard",fs,true))
label:SetColor(.65,.6,.5,1)
label:SetHorizontalAlignment(0)
label:SetVerticalAlignment(1)
label:SetText(zo_iconFormat(icon,fs*1.5-2,fs*1.5-2).." "..itemLink..(armorTypes[armorType] and armorTypes[armorType] or ""))
--Trait
local label=_G["BUI_Report_ItemTrait"..i] or WINDOW_MANAGER:CreateControl("BUI_Report_ItemTrait"..i, ui, CT_LABEL)
label:SetDimensions(65, fs*1.5)
label:ClearAnchors()
label:SetAnchor(TOPLEFT,ui,TOPLEFT,20+275,fs*1.5*i)
label:SetFont(BUI.UI.Font("standard",fs-4,true))
label:SetColor(.8,.8,.8,1)
label:SetHorizontalAlignment(0)
label:SetVerticalAlignment(1)
label:SetText(traitName)
--Enchant
local label=_G["BUI_Report_ItemEnchant"..i] or WINDOW_MANAGER:CreateControl("BUI_Report_ItemEnchant"..i, ui, CT_LABEL)
label:SetDimensions(155, fs*1.5)
label:ClearAnchors()
label:SetAnchor(TOPLEFT,ui,TOPLEFT,20+275+70,fs*1.5*i)
label:SetFont(BUI.UI.Font("standard",fs-4,true))
label:SetColor(.8,.8,.8,1)
label:SetHorizontalAlignment(0)
label:SetVerticalAlignment(1)
label:SetText(enchant)
end
end
--Panels
ui.panels=BUI.UI.Control("BUI_Report_Einfo_Panels", ui, {w-w1,w2*2}, {TOPLEFT,TOPLEFT,w1,2})
for pair=1,2 do
for slot=3,8 do
local id=BUI.Actions.AbilitySlots[pair][slot]
if BUI.Actions.AbilityBar[id] then
BUI.UI.Texture("BUI_Report_Einfo_Ab"..pair..slot, ui.panels, {w2-2,w2-2}, {TOPLEFT,TOPLEFT,10+w2*(slot-2)+(slot==8 and 10 or 0),w2*(pair-1)}, BUI.Actions.AbilityBar[id].Texture)
end
end
end
for pair in pairs(weapon) do
BUI.UI.Texture("BUI_Report_Einfo_Weapon"..pair, ui.panels, {w2-2,w2-2}, {TOPLEFT,TOPLEFT,0,w2*(pair-1)}, weapon[pair])
end
BUI.UI.Line("BUI_Report_Einfo_L3", ui.panels, {w-w1-2,0}, {TOPLEFT,BOTTOMLEFT,0,0}, {.7,.7,.5,.3}, 2)
--Stats
for i,data in pairs(BUI.PassiveBuffs) do
if data.id==35792 then --Vampire
BUI.UI.Texture("BUI_Report_Einfo_Buff1", ui, {w2-2,w2-2}, {TOPRIGHT,BOTTOMRIGHT,-2,2,ui.panels}, data.Texture)
end
local _,id=BUI.GetFoodBuff()
if id then --Food
BUI.UI.Texture("BUI_Report_Einfo_Buff2", ui, {w2-2,w2-2}, {TOPRIGHT,BOTTOMRIGHT,-2-w2,2,ui.panels}, GetAbilityIcon(id))
end
end
local name=BUI.UI.Label("BUI_Report_Einfo_Char", ui, {w-w1-10,fs*1.4}, {TOPLEFT,TOPLEFT,w1+5,10+w2*2}, BUI.UI.Font("esobold",fs,true), {1,1,1,1}, {0,0}, BUI.GetIcon("esoui/art/icons/heraldrycrests_race_"..RaceIcon[GetUnitRaceId("player")]..".dds",fs*1.4)..BUI.GetIcon(GetClassIcon(GetUnitClassId("player")),fs*1.4)..BUI.Player.name.." ("..BUI.Player:GetColoredLevel("player")..")")
local mainpower=BUI.Player["stamina"].max>BUI.Player["magicka"].max and "stamina" or "magicka"
-- local s_crit,m_crit=BUI.GetCritDamage()
-- local b_cost,b_mitigation=BUI.GetBlockCost()
local text="|cbb3333"..zo_strformat("<<!aC:1>>",EsoStrings[SI_ATTRIBUTES1]).."|r "..BUI.DisplayNumber(BUI.Player["health"].max).." |cbb3333Recovery|r "..BUI.DisplayNumber(GetPlayerStat(STAT_HEALTH_REGEN_COMBAT)).."\n"
.."|c33bb33"..zo_strformat("<<!aC:1>>",EsoStrings[SI_ATTRIBUTES3]).."|r "..BUI.DisplayNumber(BUI.Player["stamina"].max).." |c33bb33Recovery|r "..BUI.DisplayNumber(GetPlayerStat(STAT_STAMINA_REGEN_COMBAT)).."\n"
.."|c5555ff"..zo_strformat("<<!aC:1>>",EsoStrings[SI_ATTRIBUTES2]).."|r "..BUI.DisplayNumber(BUI.Player["magicka"].max).." |c5555ffRecovery|r "..BUI.DisplayNumber(GetPlayerStat(STAT_MAGICKA_REGEN_COMBAT))
local stat1=BUI.UI.Label("BUI_Report_Einfo_Stats1", ui, {w-w1-10,sfs*1.4*3}, {TOPLEFT,BOTTOMLEFT,0,10,name}, BUI.UI.Font("standard",sfs,true), {.8,.8,.8,1}, {0,0}, text)
local penetr=mainpower=="stamina" and GetPlayerStat(STAT_PHYSICAL_PENETRATION) or GetPlayerStat(STAT_SPELL_PENETRATION)
local text=(mainpower=="stamina" and "|c33bb33"..zo_strformat("<<!aC:1>>",EsoStrings[SI_DERIVEDSTATS33]) or "|c5555ff"..zo_strformat("<<!aC:1>>",EsoStrings[SI_DERIVEDSTATS34])).."|r "..BUI.DisplayNumber(penetr).." |c808080("..math.floor(penetr/66.2)/10 .."%)|r\n"
..(mainpower=="stamina" and "|c33bb33"..zo_strformat("<<!aC:1>>",EsoStrings[SI_DERIVEDSTATS35]).."|r "..BUI.DisplayNumber(GetPlayerStat(STAT_POWER)) or "|c5555ff"..zo_strformat("<<!aC:1>>",EsoStrings[SI_DERIVEDSTATS25]).."|r "..BUI.DisplayNumber(GetPlayerStat(STAT_SPELL_POWER))).."\n"
..(mainpower=="stamina" and "|c33bb33"..zo_strformat("<<!aC:1>>",EsoStrings[SI_DERIVEDSTATS16]).."|r "..math.floor(GetPlayerStat(STAT_CRITICAL_STRIKE)/219*10)/10 or "|c5555ff"..zo_strformat("<<!aC:1>>",EsoStrings[SI_DERIVEDSTATS23]).."|r "..math.floor(GetPlayerStat(STAT_SPELL_CRITICAL)/219*10)/10).."%\n"
-- ..(mainpower=="stamina" and "|c33bb33"..zo_strformat("<<!aC:1>>",EsoStrings[SI_DERIVEDSTATS16]).."|r bonus "..s_crit or "|c5555ff"..zo_strformat("<<!aC:1>>",EsoStrings[SI_DERIVEDSTATS23]).."|r bonus "..m_crit).."%"
local stat2=BUI.UI.Label("BUI_Report_Einfo_Stats2", ui, {w-w1-10,sfs*1.4*4}, {TOPLEFT,BOTTOMLEFT,0,10,stat1}, BUI.UI.Font("standard",sfs,true), {.8,.8,.8,1}, {0,0}, text)
local p_resist,s_resist=GetPlayerStat(STAT_PHYSICAL_RESIST),GetPlayerStat(STAT_SPELL_RESIST)
local text=zo_strformat("<<!aC:1>>",EsoStrings[SI_DERIVEDSTATS38]).." "..BUI.DisplayNumber(p_resist).." |c808080("..math.floor(p_resist/66.2)/10 .."%)|r\n"
..zo_strformat("<<!aC:1>>",EsoStrings[SI_DERIVEDSTATS44]).." "..BUI.DisplayNumber(s_resist).." |c808080("..math.floor(s_resist/66.2)/10 .."%)|r\n"
-- ..zo_strformat("<<!aC:1>>",EsoStrings[SI_DERIVEDSTATS1142]).." "..BUI.DisplayNumber(b_cost).."\n"
-- ..zo_strformat("<<!aC:1>>",EsoStrings[SI_DERIVEDSTATS1143]).." "..b_mitigation.."%"
local stat3=BUI.UI.Label("BUI_Report_Einfo_Stats3", ui, {w-w1-10,sfs*1.4*4}, {TOPLEFT,BOTTOMLEFT,0,10,stat2}, BUI.UI.Font("standard",sfs,true), {.8,.8,.8,1}, {0,0}, text)
--Champion system v2
ui.champ=BUI.UI.Control("BUI_Report_Einfo_Champion", ui, {w3,fs*3.5*9}, {TOPLEFT,TOPLEFT,w+(BUFF_W-w3)/2,0},not(BUI.Vars.StatsBuffs and BuffsSection))
-- BUI.UI.Line("BUI_Report_Einfo_L2", ui.champ, {w-w1-2,0}, {TOPLEFT,TOPLEFT,0,0}, {.7,.7,.5,.3}, 2)
-- for di=1, GetNumChampionDisciplines() do
--Discipline
local di=2 --Warfare
local d_id=GetChampionDisciplineId(di)
local d_name=zo_strformat("<<!aC:1>>",GetChampionDisciplineName(d_id))
local d_label=_G["BUI_Report_Discipline"..di] or WINDOW_MANAGER:CreateControl("BUI_Report_Discipline"..di, ui.champ, CT_LABEL)
d_label:SetDimensions(w3/3, fs)
d_label:ClearAnchors()
d_label:SetAnchor(TOPLEFT,ui.champ,TOPLEFT,0,(fs+(fs-3)*2)*(di-1))
d_label:SetFont(BUI.UI.Font("standard",fs-1,true))
d_label:SetColor(unpack(ChampionDisciplineColor[GetChampionDisciplineType(d_id)]))
d_label:SetHorizontalAlignment(1)
d_label:SetVerticalAlignment(1)
d_label:SetText((BUI.Vars.DeveloperMode and di..". " or "")..d_name)
for si=1,GetNumChampionDisciplineSkills(di) do
local s_id=GetChampionSkillId(di,si)
--Skill
local s_name=zo_strformat("<<!aC:1>>",GetChampionSkillName(s_id))
local s_label=_G["BUI_Report_Skill"..di..si] or WINDOW_MANAGER:CreateControl("BUI_Report_Skill"..di..si, ui.champ, CT_LABEL)
s_label:SetDimensions(w3/2-20, fs-4)
s_label:ClearAnchors()
s_label:SetAnchor(TOPLEFT,d_label,BOTTOMLEFT,math.abs(si%2-1)*w3/2,math.floor((si-1)/2)*(fs-2))
s_label:SetFont(BUI.UI.Font("standard",fs-4,true))
s_label:SetColor(.8,.8,.8,1)
s_label:SetHorizontalAlignment(0)
s_label:SetVerticalAlignment(1)
s_label:SetText((BUI.Vars.DeveloperMode and si..". " or "")..s_name)
--Value
local s_value=GetNumPointsSpentOnChampionSkill(s_id)
local label=_G["BUI_Report_SkillValue"..di..si] or WINDOW_MANAGER:CreateControl("BUI_Report_SkillValue"..di..si, ui.champ, CT_LABEL)
label:SetDimensions(20, fs-4)
label:ClearAnchors()
label:SetAnchor(TOPLEFT,s_label,TOPRIGHT,0,0)
label:SetFont(BUI.UI.Font("standard",fs-4,true))
label:SetColor(1,.9,.8,1)
label:SetHorizontalAlignment(0)
label:SetVerticalAlignment(1)
label:SetText(s_value>0 and s_value or "-")
-- end
end
--[[ Champion system v1
for i=0,8 do
local line=i<8 and i+2 or i-7
--Discipline
local d_name=zo_strformat("<<!aC:1>>",GetChampionDisciplineName(line))
local d_label=_G["BUI_Report_Discipline"..line] or WINDOW_MANAGER:CreateControl("BUI_Report_Discipline"..line, ui.champ, CT_LABEL)
d_label:SetDimensions(w3/3, fs)
d_label:ClearAnchors()
d_label:SetAnchor(TOPLEFT,ui.champ,TOPLEFT,0,(fs+(fs-3)*2)*i)
d_label:SetFont(BUI.UI.Font("standard",fs-1,true))
d_label:SetColor(unpack(AttributeColor[GetChampionDisciplineAttribute(line)]))
d_label:SetHorizontalAlignment(1)
d_label:SetVerticalAlignment(1)
d_label:SetText((BUI.Vars.DeveloperMode and line..". " or "")..d_name)
for skill=1,4 do
--Skill
local s_name=zo_strformat("<<!aC:1>>",GetChampionSkillName(line,skill))
local s_label=_G["BUI_Report_Skill"..line..skill] or WINDOW_MANAGER:CreateControl("BUI_Report_Skill"..line..skill, ui.champ, CT_LABEL)
s_label:SetDimensions(w3/2-20, fs-4)
s_label:ClearAnchors()
s_label:SetAnchor(TOPLEFT,d_label,BOTTOMLEFT,math.abs(skill%2-1)*w3/2,math.floor((skill-1)/2)*(fs-3))
s_label:SetFont(BUI.UI.Font("standard",fs-4,true))
s_label:SetColor(.8,.8,.8,1)
s_label:SetHorizontalAlignment(0)
s_label:SetVerticalAlignment(1)
s_label:SetText((BUI.Vars.DeveloperMode and skill..". " or "")..s_name)
--Value
local s_value=GetNumPointsSpentOnChampionSkill(line,skill)
local label=_G["BUI_Report_SkillValue"..line..skill] or WINDOW_MANAGER:CreateControl("BUI_Report_SkillValue"..line..skill, ui.champ, CT_LABEL)
label:SetDimensions(20, fs-4)
label:ClearAnchors()
label:SetAnchor(TOPLEFT,s_label,TOPRIGHT,0,0)
label:SetFont(BUI.UI.Font("standard",fs-4,true))
label:SetColor(1,.9,.8,1)
label:SetHorizontalAlignment(0)
label:SetVerticalAlignment(1)
label:SetText(s_value>0 and s_value or "-")
end
end
--]]
end
function BUI.Stats.Analistics_Init() --ANALYTICS WINDOW
local fs,s=BUI.Vars.StatsFontSize,1 --BUI.Vars.ReportScale
local buf=BUI.Vars.StatsBuffs and BUFF_W or 0
local w=720+((BUI.language=="en" or BUI.Vars.ActionsPrecise)and 50 or 0)
local head=(fs-4)*1.358*2
local ui =BUI.UI.TopLevelWindow("BUI_Report", GuiRoot, {w+20+buf,200},{TOP,TOP,0,28}, true) ui:SetDrawTier(2)
ui.bg=BUI_Report_Backdrop or WINDOW_MANAGER:CreateControl("BUI_Report_Backdrop", ui, CT_BACKDROP)
ui.bg:SetCenterColor(0,0,0,BUI.Vars.StatsTransparent and 0.7 or 1)
ui.bg:SetEdgeColor(0,0,0,0.9)
ui.bg:SetEdgeTexture("",8,2,2)
ui.bg:SetHidden(false)
ui.bg:ClearAnchors()
ui.bg:SetAnchor(TOPLEFT,ui,TOPLEFT)
ui.bg:SetAnchor(BOTTOMRIGHT,ui,BOTTOMRIGHT)
ui.cont=BUI_Report_Border or WINDOW_MANAGER:CreateControl("BUI_Report_Border", ui, CT_BACKDROP)
ui.cont:SetCenterColor(0,0,0,0)
ui.cont:SetEdgeColor(.7,.7,.5,.3)
ui.cont:SetEdgeTexture("",8,2,2)
ui.cont:SetHidden(false)
ui.cont:ClearAnchors()
ui.cont:SetAnchor(TOPLEFT,ui,TOPLEFT,0,30)
ui.cont:SetAnchor(BOTTOMRIGHT,ui,BOTTOMLEFT,w+20,-22)
ui.top =BUI.UI.Statusbar("BUI_Report_Header", ui, {w+20+buf,30}, {TOPLEFT,TOPLEFT,0,0}, {.5,.5,.5,.7}, nil, false)
ui.top:SetGradientColors(0.4,0.4,0.4,0.7,0,0,0,0) ui.top:SetDrawLayer(0)
ui.title =BUI.UI.Label( "BUI_Report_Title", ui.top, {w,head}, {TOPLEFT,BOTTOMLEFT,10*s,0}, BUI.UI.Font("esobold",fs,true), {1,1,1,1}, {0,1}, BUI.Loc("DReport"), false)
--Character summary
BUI.UI.Label( "BUI_Report_Summary", ui, {220,head*1.2}, {TOPLEFT,TOPLEFT,(w+20-10-220)*s,30}, BUI.UI.Font("standard",fs-4,true), {1,1,1,1}, {0,0}, "", false)
--Buttons right
ui.close =BUI.UI.Button( "BUI_Report_Close", ui, {34,34}, {TOPRIGHT,TOPRIGHT,5*s,5*s}, BSTATE_NORMAL, nil, nil, nil, nil, nil, false)
ui.close:SetNormalTexture('/esoui/art/buttons/closebutton_up.dds')
ui.close:SetMouseOverTexture('/esoui/art/buttons/closebutton_mouseover.dds')
ui.close:SetHandler("OnClicked", function() PlaySound("Click") BUI.Stats.Toggle() end)
BUI.UI.SimpleButton("BUI_Report_Help", ui, {26,26}, {TOP,TOPRIGHT,-45,3*s}, "/esoui/art/miscellaneous/help_icon.dds", false, nil, BUI.Loc("ReportDesc"))
BUI.UI.SimpleButton("BUI_Report_Transparent", ui, {26,26}, {TOP,TOPRIGHT,-75,3*s}, "/esoui/art/inventory/inventory_icon_visible.dds", false,
function()
BUI.Vars.StatsTransparent=not BUI.Vars.StatsTransparent
BUI_Report_Backdrop:SetCenterColor(0,0,0,BUI.Vars.StatsTransparent and 0.7 or 1)
if BUI_Report_Einfo then BUI_Report_Einfo:SetCenterColor(0,0,0,BUI.Vars.StatsTransparent and 0.7 or 1) end
end)
--Buttons left
ui.box =BUI.UI.Button( "BUI_Report_Box", ui.top, {30,30}, {TOPLEFT,TOPLEFT,5*s,3*s}, BSTATE_NORMAL, nil, nil, nil, nil, nil, false)
ui.box:SetNormalTexture('/esoui/art/tradinghouse/tradinghouse_listings_tabicon_up.dds')
ui.box:SetMouseOverTexture('/esoui/art/tradinghouse/tradinghouse_listings_tabicon_over.dds')
BUI.UI.SimpleButton("BUI_Report_Save", ui.top, {24,24}, {LEFT,LEFT,40*s,3*s}, 2, false, BUI.Stats.SaveReport)
BUI.UI.SimpleButton("BUI_Report_Del", ui.top, {24,24}, {LEFT,LEFT,40+25*1*s,3*s}, 4, false, function()BUI.Stats.ClearReport(ReportToShow)end)
BUI.UI.SimpleButton("BUI_Report_Prev", ui.top, {24,24}, {LEFT,LEFT,40+25*2*s,3*s}, 0, false, function()BUI.Stats.NextReport(true)end)
BUI.UI.SimpleButton("BUI_Report_Next", ui.top, {24,24}, {LEFT,LEFT,40+25*3*s,3*s}, 1, false, function()BUI.Stats.NextReport(false)end)
BUI.UI.Label("BUI_Report_Count",ui.top,{60,fs},{LEFT,LEFT,40+25*4*s,0},BUI.UI.Font("standard",fs-2,true), {1,1,1,1}, {0,1}, "", false)
--Tabs
ui.tabs =BUI.UI.Control("BUI_Report_Tabs", ui.top, {350,30}, {TOP,TOP,0,0})
-- local tabs =BUI.UI.Texture("BUI_Report_TabsBg", ui.tabs, {512,32}, {CENTER,CENTER,0,0}, "/BanditsUserInterface/textures/tabs1.dds") tabs:SetColor(.7,.7,.5,.3)
ui.dbutton =BUI.UI.Button( "BUI_Report_Dbutton", ui.tabs, {70,24}, {LEFT,LEFT,70*0*s,0}, BSTATE_DISABLED, BUI.UI.Font("esobold",fs-2,true), {1,1}, {.7,.7,.5,1}, nil, {1,1,1,1}, false)
ui.dbutton:SetText("Damage") ui.dbutton:SetHandler("OnClicked", function(self) PlaySound("Click") BUI.Stats.SetupReport("Damage",self) end)
ui.dbutton.tab =BUI.UI.Texture(nil, ui.dbutton, {128,32}, {CENTER,CENTER,0,0}, "/BanditsUserInterface/textures/tab.dds") ui.dbutton.tab:SetColor(.21,.21,.15,1)
ui.hbutton =BUI.UI.Button( "BUI_Report_Hbutton", ui.tabs, {70,24}, {LEFT,LEFT,70*1*s,0}, BSTATE_NORMAL, BUI.UI.Font("esobold",fs-2,true), {1,1}, {.7,.7,.5,1}, nil, {1,1,1,1}, false)
ui.hbutton:SetText("Healing") ui.hbutton:SetHandler("OnClicked", function(self) PlaySound("Click") BUI.Stats.SetupReport("Healing",self) end)
ui.hbutton.tab =BUI.UI.Texture(nil, ui.hbutton, {128,32}, {CENTER,CENTER,0,0}, "/BanditsUserInterface/textures/tab.dds") ui.hbutton.tab:SetColor(.21,.21,.15,1)
ui.rbutton =BUI.UI.Button( "BUI_Report_Rbutton", ui.tabs, {70,24}, {LEFT,LEFT,70*2*s,0}, BSTATE_NORMAL, BUI.UI.Font("esobold",fs-2,true), {1,1}, {.7,.7,.5,1}, nil, {1,1,1,1}, false)
ui.rbutton:SetText("Resource") ui.rbutton:SetHandler("OnClicked", function(self) PlaySound("Click") BUI.Stats.SetupReport("Power",self) end)
ui.rbutton.tab =BUI.UI.Texture(nil, ui.rbutton, {128,32}, {CENTER,CENTER,0,0}, "/BanditsUserInterface/textures/tab.dds") ui.rbutton.tab:SetColor(.21,.21,.15,1)
ui.ibutton =BUI.UI.Button( "BUI_Report_Ibutton", ui.tabs, {70,24}, {LEFT,LEFT,70*3*s,0}, BSTATE_NORMAL, BUI.UI.Font("esobold",fs-2,true), {1,1}, {.7,.7,.5,1}, nil, {1,1,1,1}, false)
ui.ibutton:SetText("Incoming") ui.ibutton:SetHandler("OnClicked", function(self) PlaySound("Click") BUI.Stats.SetupReport("Incoming",self) end)
ui.ibutton.tab =BUI.UI.Texture(nil, ui.ibutton, {128,32}, {CENTER,CENTER,0,0}, "/BanditsUserInterface/textures/tab.dds") ui.ibutton.tab:SetColor(.21,.21,.15,1)
ui.gbutton =BUI.UI.Button( "BUI_Report_Gbutton", ui.tabs, {70,24}, {LEFT,LEFT,70*4*s,0}, BSTATE_NORMAL, BUI.UI.Font("esobold",fs-2,true), {1,1}, {.7,.7,.5,1}, nil, {1,1,1,1}, false)
ui.gbutton:SetText("Group") ui.gbutton:SetHandler("OnClicked", function(self) PlaySound("Click") BUI.Stats.SetupGroupReport() end)
ui.gbutton.tab =BUI.UI.Texture(nil, ui.gbutton, {128,32}, {CENTER,CENTER,0,0}, "/BanditsUserInterface/textures/tab.dds") ui.gbutton.tab:SetColor(.21,.21,.15,1)
--Abilitys Detail
local abilities =BUI.UI.Control( "BUI_Report_Ability", ui, {w,fs*1.5}, {LEFT,LEFT,10*s,0}, true)
local header =BUI.UI.Control( "BUI_Report_Ability_Header", abilities, {w-20,fs*1.3}, {TOPLEFT,TOPLEFT,10*s,0}, false)
header.bg =BUI.UI.Backdrop( "BUI_Report_Ability_BG", header, {w-20,fs*1.3}, {TOPLEFT,TOPLEFT,0,0}, {.4,.4,.4,.3}, {0,0,0,0}, nil, false)
header.name =BUI.UI.Label( "BUI_Report_Ability_Name", header, {220,fs*1.5}, {LEFT,LEFT,30*s,0}, BUI.UI.Font("esobold",fs,true), {1,1,1,1}, {0,1}, BUI.Loc("Ability"), false)
-- header.uses =BUI.UI.Label( "BUI_Report_Ability_Uses", header, {30,fs*1.5}, {LEFT,RIGHT,0,0,header.name}, BUI.UI.Font("esobold",fs,true), {1,1,1,1}, {0,1}, "#", false)
header.total =BUI.UI.Label( "BUI_Report_Ability_Total", header, {130,fs*1.5}, {LEFT,RIGHT,0,0,header.name}, BUI.UI.Font("esobold",fs,true), {1,1,1,1}, {0,1}, BUI.Loc("Damage"), false)
header.dps =BUI.UI.Label( "BUI_Report_Ability_DPS", header, {70,fs*1.5}, {LEFT,RIGHT,0,0,header.total}, BUI.UI.Font("esobold",fs,true), {1,1,1,1}, {0,1}, BUI.Loc("DPS"), false)
header.count =BUI.UI.Label( "BUI_Report_Ability_Count", header, {70,fs*1.5}, {LEFT,RIGHT,0,0,header.dps}, BUI.UI.Font("esobold",fs,true), {1,1,1,1}, {0,1}, BUI.Loc("Hit"), false)
header.crit =BUI.UI.Label( "BUI_Report_Ability_Crit", header, {50,fs*1.5}, {LEFT,RIGHT,0,0,header.count}, BUI.UI.Font("esobold",fs,true), {1,1,1,1}, {0,1}, BUI.Loc("Crit"), false)
header.avg =BUI.UI.Label( "BUI_Report_Ability_Avg", header, {70,fs*1.5}, {LEFT,RIGHT,0,0,header.crit}, BUI.UI.Font("esobold",fs,true), {1,1,1,1}, {0,1}, BUI.Loc("Average"), false)
header.max =BUI.UI.Label( "BUI_Report_Ability_Max", header, {70,fs*1.5}, {LEFT,RIGHT,0,0,header.avg}, BUI.UI.Font("esobold",fs,true), {1,1,1,1}, {0,1}, BUI.Loc("Max"), false)
if (BUI.language=="en" or BUI.Vars.ActionsPrecise)then
header.perc =BUI.UI.Label( "BUI_Report_Ability_Perc", header, {50,fs*1.5}, {LEFT,RIGHT,0,0,header.max}, BUI.UI.Font("esobold",fs,true), {1,1,1,1}, {0,1}, "Up", false)
end
-- header.min =BUI.UI.Label( "BUI_Report_Ability_Min", header, {70,fs*1.5}, {LEFT,RIGHT,0,0,header.perc}, BUI.UI.Font("esobold",fs,true), {1,1,1,1}, {0,1}, "Min", true)
abilities.header =header
abilities.content =BUI.UI.Control( "BUI_Report_Content", abilities, {w-10,fs*1.5}, {TOPLEFT,TOPLEFT,10*s,fs*1.5}, false)
local scroll =BUI.UI.Scroll(abilities.content)
abilities.list =BUI.UI.Control( "BUI_Report_List", scroll, {w-10,fs*1.5}, {TOP,TOP,0,0}, false)
ui.abilities =abilities
--Bottom
ui.foot=BUI_Report_Foot or WINDOW_MANAGER:CreateControl("BUI_Report_Foot", ui, CT_BACKDROP)
ui.foot:SetCenterColor(.15,.15,.15,1)
ui.foot:SetEdgeColor(.15,.15,.15,1)
ui.foot:SetEdgeTexture("",8,2,2)
ui.foot:SetHidden(false)
ui.foot:ClearAnchors()
ui.foot:SetAnchor(TOPLEFT,ui,BOTTOMLEFT,0,-24)
ui.foot:SetAnchor(BOTTOMRIGHT,ui,BOTTOMRIGHT,0,0)
--EquipmentInfo
ui.ebutton =BUI.UI.Texture("BUI_Report_Ebutton", ui.foot, {fs,fs}, {LEFT,LEFT,10*s,0}, "/esoui/art/icons/mapkey/mapkey_groupmember.dds")
ui.ebutton:SetColor(156/256,147/256,117/256,1)
ui.ebutton:SetMouseEnabled(true)
ui.ebutton:SetHandler("OnMouseDown", function(self) PlaySound("Click")EquipmentInfo()end)
ui.ebutton:SetHandler("OnMouseEnter", function(self)self:SetColor(.9,.9,.8,1)end)
ui.ebutton:SetHandler("OnMouseExit", function(self)self:SetColor(156/256,147/256,117/256,1)end)
ui.ebutton:SetDrawTier(DT_HIGH)
ui.ebutton:SetDrawLayer(DL_CONTROLS)
BUI.UI.Label( "BUI_Report_eDescription", ui.foot, {180,fs*1.5}, {LEFT,LEFT,(20+fs)*s,0}, BUI.UI.Font("standard",fs,true), {.8,.8,.6,1}, {0,1}, BUI.Loc("ReportEinfo"), false)
--Uptimes
ui.ubase =BUI.UI.Control("BUI_Report_Ubutton_Base", ui.foot, {200,24}, {TOPLEFT,TOPLEFT,200*s,0}, true)
ui.ubutton =BUI.UI.Texture("BUI_Report_Ubutton", ui.ubase, {fs,fs}, {LEFT,LEFT,0,0}, "/esoui/art/icons/mapkey/mapkey_groupmember.dds")
ui.ubutton:SetColor(156/256,147/256,117/256,1)
ui.ubutton:SetMouseEnabled(true)
ui.ubutton:SetHandler("OnMouseDown", function(self) PlaySound("Click")BUI.Stats.SetupUptimes()end)
ui.ubutton:SetHandler("OnMouseEnter", function(self)self:SetColor(.9,.9,.8,1)end)
ui.ubutton:SetHandler("OnMouseExit", function(self)self:SetColor(156/256,147/256,117/256,1)end)
ui.ubutton:SetDrawTier(DT_HIGH)
ui.ubutton:SetDrawLayer(DL_CONTROLS)
BUI.UI.Label( "BUI_Report_uDescription", ui.ubase, {180,fs*1.5}, {LEFT,LEFT,(10+fs)*s,0}, BUI.UI.Font("standard",fs,true), {.8,.8,.6,1}, {0,1}, "Uptimes", false)
BUI.UI.Label( "BUI_Report_Version", ui.foot, {345,fs*1.5}, {RIGHT,RIGHT,-10*s,0}, BUI.UI.Font("standard",fs,true), {.8,.8,.6,1}, {2,1}, "" , false)
--Buffs
if BUI.Vars.StatsBuffs then
--Elements
BUI.UI.Label( "BUI_Report_Elements", ui, {300,(fs-4)*1.6*3}, {TOPRIGHT,TOPRIGHT,-40*s,7*s}, BUI.UI.Font("standard",fs-4,true), {1,1,1,1}, {0,0}, "", false)
--Buffs
local control =BUI.UI.Control( "BUI_Report_BuffsUp_Control", ui, {345,fs*1.5}, {TOPRIGHT,TOPRIGHT,-10*s,(30+head)*s}, false)
control.bg =BUI.UI.Backdrop( "BUI_Report_BuffsUp_BG", control, {345,fs*1.5}, {TOP,TOP,0,0}, {.3,.3,.3,.7}, {0,0,0,1}, BUI.Textures["grainy"], false)
control.name =BUI.UI.Label( "BUI_Report_BuffsUp_Name", control, {190,fs*1.5}, {LEFT,LEFT,10*s,0,control}, BUI.UI.Font("esobold",fs,true), {1,1,1,1}, {0,1}, BUI.Loc("ReportPBHeader"), false)
--Buffs Headers
local BuffsUp =BUI.UI.Control( "BUI_Report_BuffsUp", control, {345,fs*1.5*2}, {TOPLEFT,BOTTOMLEFT,0,0}, true)
BuffsUp.namesH =BUI.UI.Label( "BUI_Report_BuffsUp_NamesHeader", BuffsUp, {240,fs*1.5}, {TOPLEFT,TOPLEFT,0,0}, BUI.UI.Font("esobold",fs,true), {1,1,1,1}, {1,1}, BUI.Loc("ReportBuffHeader") , false)
BuffsUp.timeH =BUI.UI.Label( "BUI_Report_BuffsUp_TimeHeader", BuffsUp, {50,fs*1.5}, {LEFT,RIGHT,0,0,BuffsUp.namesH}, BUI.UI.Font("esobold",fs,true), {1,1,1,1}, {1,1}, BUI.Loc("ReportTimeHeader") , false)
BuffsUp.percH =BUI.UI.Label( "BUI_Report_BuffsUp_PercentHeader", BuffsUp, {50,fs*1.5}, {LEFT,RIGHT,0,0,BuffsUp.timeH}, BUI.UI.Font("esobold",fs,true), {1,1,1,1}, {1,1}, "Up " , false)
--Buffs List
local list =BUI.UI.Control( "BUI_Report_BuffsUp_Content", BuffsUp, {345,20}, {TOPLEFT,TOPLEFT,0,(fs*1.5/2+10)*s}, false)
local scroll =BUI.UI.Scroll(list)
BuffsUp.names =BUI.UI.Label( "BUI_Report_BuffsUp_Names", scroll, {240,20}, {TOPLEFT,TOPLEFT,0,0}, BUI.UI.Font("standard",fs,true), {1,1,1,1}, {0,0}, "" , false)
BuffsUp.time =BUI.UI.Label( "BUI_Report_BuffsUp_Time", scroll, {50,20}, {LEFT,RIGHT,0,0,BuffsUp.names}, BUI.UI.Font("standard",fs,true), {1,1,1,1}, {0,0}, "" , false)
BuffsUp.perc =BUI.UI.Label( "BUI_Report_BuffsUp_Percent", scroll, {50,20}, {LEFT,RIGHT,0,0,BuffsUp.time}, BUI.UI.Font("standard",fs,true), {1,1,1,1}, {0,0}, "" , false)
else
control=_G["BUI_Report_Elements"] if control~=nil then control:SetHidden(true) end
control=_G["BUI_Report_BuffsUp_Control"] if control~=nil then control:SetHidden(true) end
control=_G["BUI_Report_Description"] if control~=nil then control:SetHidden(true) end
control=_G["BUI_Report_BuffsUp_Description"] if control~=nil then control:SetHidden(true) end
end
--Setup Pool
if (BUI.Stats.TargetPool==nil) then BUI.Stats.TargetPool=ZO_ObjectPool:New(BUI.Stats.CreateTarget, function(object)object:SetHidden(true)end) end
if (BUI.Stats.AbilityPool==nil) then BUI.Stats.AbilityPool=ZO_ObjectPool:New(BUI.Stats.CreateAbility, function(object)object:SetHidden(true)end) end
ui:SetMouseEnabled(true) ui:SetMovable(true) ui:SetScale(s)
BUI_Report:RegisterForEvent(EVENT_NEW_MOVEMENT_IN_UI_MODE,function() if not BUI_Report:IsHidden() then BUI.Stats.Toggle() end end)
end
local function PostGroupDps(name)
local Report=BUI.Stats.Current[ReportToShow]
local GroupData=Report.GroupDPS
local fighttime=GroupData.Total.time
local GroupDPS=GroupData.Total.dps
local TotalDmg=GroupData.Total.damage or GroupData.Total.dps*GroupData.Total.time
--Retreive primary target
targets={}
for target,abilities in pairs(Report.Damage) do
local damage,bosscount=0,0
for _,stats in pairs(abilities) do damage=damage+stats.total end
if target~="Total" and target~=Report.Char then
if BUI.Stats.Bosses[target] or (Report.Boss and Report.Boss[target]) then bosscount=bosscount+1 target=target.." ("..BUI.Loc("Boss")..")" end
table.insert(targets,{name=target,damage=damage})
end
end
table.sort(targets,BUI.Stats.SortDamage)
local text=#targets>0 and targets[1].name.."+"..#targets-1 .." - "
if name=="Total" then
local members={}
for name,data in pairs(GroupData) do if name~="Total" and data.dps and data.time then table.insert(members,{name=name,damage=data.dps*data.time}) end end
table.sort(members,BUI.Stats.SortDamage)
--Add total
text="Group DPS: "..text..BUI.DisplayNumber(GroupDPS).." ("..ZO_FormatTime(fighttime,SI_TIME_FORMAT_TIMESTAMP)..")"
--Loop over members
for i=1,math.min(#members,12) do
local n=members[i].name
if GroupData[n].average~="~" then
local pct=math.min(math.floor(members[i].damage/TotalDmg*100),100)
if pct>2 then
text=text..", "
..n..": "..BUI.DisplayNumber(GroupData[n].dps).." "..ZO_FormatTime(GroupData[n].time,SI_TIME_FORMAT_TIMESTAMP)
.." ("..pct.."%)"
end
end
end
elseif GroupData[name] then
local damage=GroupData[name].dps*GroupData[name].time
text=text..name.." DPS: "..BUI.DisplayNumber(GroupData[name].dps)..
" ("..ZO_FormatTime(GroupData[name].time,SI_TIME_FORMAT_TIMESTAMP)..") "..
math.min(math.floor(damage/TotalDmg*100),100).."%"
end
if text then
CHAT_SYSTEM:Maximize() CHAT_SYSTEM.primaryContainer:FadeIn()
StartChatInput(text)
end
end
function BUI.Stats.CreateTarget()
local fs,s=BUI.Vars.StatsFontSize,1 --BUI.Vars.ReportScale
local w=720+((BUI.language=="en" or BUI.Vars.ActionsPrecise)and 50 or 0)
local i =BUI.Stats.TargetPool:GetNextControlId()
local parent=BUI_Report
--Create target
local control =BUI.UI.Control( "BUI_Report_Target"..i, parent, {w,fs*1.5}, {LEFT,LEFT,10*s,0}, false)
control.bg =BUI.UI.Backdrop( "BUI_Report_Target"..i.."_BG", control, {w,fs*1.5}, {TOP,TOP,0,0}, {.3,.3,.3,.7}, {0,0,0,1}, BUI.Textures["grainy"], false)
control.name =BUI.UI.Label( "BUI_Report_Target"..i.."_Name", control.bg, {220,fs*1.5}, {LEFT,LEFT,10*s,0}, BUI.UI.Font("esobold",fs,true), {1,1,1,1}, {0,1}, BUI.Loc("ReportTargetName"), false)
control.total =BUI.UI.Label( "BUI_Report_Target"..i.."_Total", control.name, {220,fs*1.5}, {LEFT,RIGHT,0,0}, BUI.UI.Font("esobold",fs,true), {1,1,1,1}, {0,1}, "", false) --BUI.Loc("ReportTotalDamage")
control.dps =BUI.UI.Label( "BUI_Report_Target"..i.."_DPS", control.bg, {100,fs*1.5}, {RIGHT,RIGHT,-fs*6*s,0}, BUI.UI.Font("esobold",fs,true), {1,1,1,1}, {0,1}, "", false) --"DPS"
--Expand button
control.expand =BUI.UI.Button( "BUI_Report_Target"..i.."_Expand", control, {fs,fs}, {RIGHT,RIGHT,-10*s,0,control.bg}, BSTATE_NORMAL, nil, nil, nil, nil, nil, false)
control.expand:SetNormalTexture('/esoui/art/buttons/pointsplus_up.dds')
control.expand:SetMouseOverTexture('/esoui/art/buttons/pointsplus_over.dds')
control.expand:SetPressedTexture('/esoui/art/buttons/pointsminus_up.dds')
control.expand:SetPressedMouseOverTexture('/esoui/art/buttons/pointsminus_over.dds')
control.expand:SetDisabledTexture('/esoui/art/buttons/pointsplus_disabled.dds')
control.expand:SetDisabledPressedTexture('/esoui/art/buttons/pointsminus_disabled.dds')
control.expand:SetHandler("OnClicked", function(self) PlaySound("Click") BUI.Stats.ExpandTarget(self) end)
--Target buff button
control.targetbuffs=BUI.UI.Button( "BUI_Report_Target"..i.."_Debuff", control, {fs*1.2,fs*1.2}, {RIGHT,LEFT,0,0,control.expand}, BSTATE_NORMAL, nil, nil, nil, nil, nil, not BUI.Vars.StatsBuffs)
control.targetbuffs:SetNormalTexture('/esoui/art/tutorial/smithing_rightarrow_up.dds')
control.targetbuffs:SetPressedTexture('/esoui/art/tutorial/smithing_leftarrow_up.dds')
control.targetbuffs.state="collapsed"
control.targetbuffs:SetHandler("OnClicked", function(self) PlaySound("Click") BUI.Stats.ExpandTargetBuffs(self) end)
--Post button
control.post =BUI.UI.Button( "BUI_Report_Target"..i.."_Post", control, {fs*1.5,fs*1.5}, {RIGHT,LEFT,0,0,control.targetbuffs}, BSTATE_NORMAL, nil, nil, nil, nil, nil, false)
control.post:SetNormalTexture('/esoui/art/chatwindow/chat_notification_up.dds')
control.post:SetMouseOverTexture('/esoui/art/chatwindow/chat_notification_over.dds')
control.post:SetDisabledTexture('/esoui/art/chatwindow/chat_notification_disabled.dds')
control.post:SetHandler("OnClicked", BUI.Stats.Post)
--Store some data
control.state ="collapsed"
--DeBuffs Backdrop
control.d =BUI.UI.Control( "BUI_Report_DeBuffs"..i, control, {345,fs*1.5}, {TOPLEFT,TOPRIGHT,10*s,0}, true)
control.d.bg =BUI.UI.Backdrop( "BUI_Report_DeBuffs"..i.."_BG", control.d, {345,fs*1.5}, {TOP,TOP,0,0}, {.3,.3,.3,.7}, {0,0,0,1}, BUI.Textures["grainy"], false)
control.d.name =BUI.UI.Label( "BUI_Report_DeBuffs"..i.."_Name", control.d, {190,fs*1.5}, {LEFT,LEFT,10*s,0}, BUI.UI.Font("esobold",fs,true), {1,1,1,1}, {0,1}, BUI.Loc("ReportTBHeader"), false)
--DeBuffs Headers
control.d.header =BUI.UI.Control( "BUI_Report_DeBuffs"..i.."_Header", control.d, {345,fs*1.5*2}, {TOPLEFT,BOTTOMLEFT,0,0}, false)
control.d.namesH =BUI.UI.Label( "BUI_Report_DeBuffs"..i.."_NamesHeader", control.d.header, {240,fs*1.5}, {TOPLEFT,TOPLEFT,0,0}, BUI.UI.Font("esobold",fs,true), {1,1,1,1}, {1,1}, BUI.Loc("ReportBuffHeader") , false)
control.d.timeH =BUI.UI.Label( "BUI_Report_DeBuffs"..i.."_TimeHeader", control.d.namesH, {50,fs*1.5}, {LEFT,RIGHT,0,0}, BUI.UI.Font("esobold",fs,true), {1,1,1,1}, {1,1}, BUI.Loc("ReportTimeHeader") , false)
control.d.percH =BUI.UI.Label( "BUI_Report_DeBuffs"..i.."_PercHeader", control.d.timeH, {50,fs*1.5}, {LEFT,RIGHT,0,0}, BUI.UI.Font("esobold",fs,true), {1,1,1,1}, {1,1}, "Up " , false)
--Buffs List
control.d.content =BUI.UI.Control( "BUI_Report_DeBuffsUp"..i.."_Content", control.d.header, {345,20}, {TOPLEFT,TOPLEFT,0,(fs*1.5/2+10)*s}, false)
local scroll =BUI.UI.Scroll(control.d.content)
control.d.names =BUI.UI.Label( "BUI_Report_DeBuffsUp"..i.."_Names", scroll, {240,20}, {TOPLEFT,TOPLEFT,0,0},BUI.UI.Font("standard",fs,true), {1,1,1,1}, {0,0}, "" , false)
control.d.time =BUI.UI.Label( "BUI_Report_DeBuffsUp"..i.."_Time", scroll, {50,20}, {LEFT,RIGHT,0,0,control.d.names}, BUI.UI.Font("standard",fs,true), {1,1,1,1}, {0,0}, "" , false)
control.d.perc =BUI.UI.Label( "BUI_Report_DeBuffsUp"..i.."_Perc", scroll, {50,20}, {LEFT,RIGHT,0,0,control.d.time}, BUI.UI.Font("standard",fs,true), {1,1,1,1}, {0,0}, "" , false)
--Summary
control.d.summary =BUI.UI.Label( "BUI_Report_Target"..i.."_Summary", control.d, {345,(fs-4)*1.36*3}, {BOTTOMLEFT,TOPLEFT,20*s,0}, BUI.UI.Font("standard",fs-4,true), {1,1,1,1}, {0,0}, "", false)
return control
end
function BUI.Stats.CreateAbility()
local fs=BUI.Vars.StatsFontSize
local w=720+((BUI.language=="en" or BUI.Vars.ActionsPrecise)and 50 or 0)
local i =BUI.Stats.AbilityPool:GetNextControlId()
local parent=BUI_Report_List
--Create ability
local control =BUI.UI.Control( "BUI_Report_Ability"..i, parent, {w,fs*1.5}, {LEFT,LEFT,10,0}, false)
control.icon =BUI.UI.Texture( "BUI_Report_Ability"..i.."_Icon", control, {fs*1.5-2,fs*1.5-2}, {LEFT,LEFT,0,0}, '/esoui/art/icons/icon_missing.dds', false)
control.bg =BUI.UI.Backdrop( "BUI_Report_Ability"..i.."_BG", control, {220,fs*1.2}, {LEFT,RIGHT,0,0,control.icon}, {.4,.4,.4,.4}, {0,0,0,0}, nil, false)
control.name =BUI.UI.Label( "BUI_Report_Ability"..i.."_Name", control, {220,fs*1.5}, {LEFT,RIGHT,0,0,control.icon}, BUI.UI.Font("standard",fs,true), {1,1,1,1}, {0,1}, BUI.Loc("Ability"), false)
-- control.uses =BUI.UI.Label( "BUI_Report_Ability"..i.."_Uses", control, {30,fs*1.5}, {LEFT,RIGHT,0,0,control.name}, BUI.UI.Font("standard",fs,true), {1,1,1,1}, {0,1}, BUI.Loc("ReportCount"), false)
control.total =BUI.UI.Label( "BUI_Report_Ability"..i.."_Total", control, {130,fs*1.5}, {LEFT,RIGHT,0,0,control.name}, BUI.UI.Font("standard",fs,true), {1,1,1,1}, {0,1}, BUI.Loc("ReportTotal"), false)
control.dps =BUI.UI.Label( "BUI_Report_Ability"..i.."_DPS", control, {70,fs*1.5}, {LEFT,RIGHT,0,0,control.total}, BUI.UI.Font("standard",fs,true), {1,1,1,1}, {0,1}, "DPS", false)
control.count =BUI.UI.Label( "BUI_Report_Ability"..i.."_Count", control, {70,fs*1.5}, {LEFT,RIGHT,0,0,control.dps}, BUI.UI.Font("standard",fs,true), {1,1,1,1}, {0,1}, BUI.Loc("ReportCount"), false)
control.crit =BUI.UI.Label( "BUI_Report_Ability"..i.."_Crit", control, {50,fs*1.5}, {LEFT,RIGHT,0,0,control.count}, BUI.UI.Font("standard",fs,true), {1,1,1,1}, {0,1}, BUI.Loc("Crit"), false)
control.avg =BUI.UI.Label( "BUI_Report_Ability"..i.."_Avg", control, {70,fs*1.5}, {LEFT,RIGHT,0,0,control.crit}, BUI.UI.Font("standard",fs,true), {1,1,1,1}, {0,1}, BUI.Loc("Average"), false)
control.max =BUI.UI.Label( "BUI_Report_Ability"..i.."_Max", control, {70,fs*1.5}, {LEFT,RIGHT,0,0,control.avg}, BUI.UI.Font("standard",fs,true), {1,1,1,1}, {0,1}, BUI.Loc("Max"), false)
if (BUI.language=="en" or BUI.Vars.ActionsPrecise)then
control.perc =BUI.UI.Label( "BUI_Report_Ability"..i.."_Perc", control, {50,fs*1.5}, {LEFT,RIGHT,0,0,control.max}, BUI.UI.Font("standard",fs,true), {1,1,1,1}, {0,1}, "", false)
end
-- control.min =BUI.UI.Label( "BUI_Report_Ability"..i.."_Min", control, {70,fs*1.5}, {LEFT,RIGHT,0,0,control.perc}, BUI.UI.Font("standard",fs,true), {1,1,1,1}, {0,1}, "Min", false)
--Post button
control.post =BUI.UI.Button( "BUI_Report_Ability"..i.."_Post", control, {fs*1.5,fs*1.5}, {LEFT,RIGHT,0,0,control.avg}, BSTATE_NORMAL, nil, nil, nil, nil, nil, true)
control.post:SetNormalTexture('/esoui/art/chatwindow/chat_notification_up.dds')
control.post:SetMouseOverTexture('/esoui/art/chatwindow/chat_notification_over.dds')
control.post:SetDisabledTexture('/esoui/art/chatwindow/chat_notification_disabled.dds')
control.post:SetHandler("OnClicked", function(self)PostGroupDps(self:GetParent().name:GetText())end)
return control
end
function BUI.Stats.NextReport(prev)
if not BUI.init.Stats then return end
if prev then
if ReportToShow>1 then
ReportToShow=ReportToShow-1
if not BUI.Stats.Current[ReportToShow] or BUI.Stats.Current[ReportToShow].damage==0 then BUI.Stats.NextReport(prev) end
end
else
if ReportToShow<BUI.ReportN then
ReportToShow=ReportToShow+1
if not BUI.Stats.Current[ReportToShow] or BUI.Stats.Current[ReportToShow].damage==0 then BUI.Stats.NextReport(prev) end
end
end
BUI.Stats.Toggle(true)
end
local function SetupPlayerBuffs()
local parent=BUI_Report_BuffsUp
if not BUI.Vars.StatsBuffs then
if parent then parent:SetHidden(true) end
return
elseif not parent then return end
local Report=BUI.Stats.Current[ReportToShow]
local data=Report.PlayerBuffs
if data==nil then parent:SetHidden(true) return end
data[62117]=nil data[62118]=nil --Marciless Resolve proc
data[46327]=nil --Crystal Fragment proc
--Setup labels
-- local fighttime=math.max(zo_round((Report.endTime-Report.startTime)/10)/100,1)
local fighttime=math.max((Report.endTime-Report.startTime)/1000,1)
local names,time,percent,t,fs="","","",{},BUI.Vars.StatsFontSize
local penetr_p,penetr_m=0,0
--Print to the BuffsUp window
for name,buff in pairs(data) do
if buff.timeEnding*1000>Report.endTime then buff.timeEnding=Report.endTime/1000 end
local duration=buff.Duration+buff.timeEnding-buff.timeStarted if duration<0 then duration=0 end
local percent=(buff.timeStarted==buff.timeEnding) and 100 or math.min(math.floor(duration*100/fighttime+.5),100)
table.insert(t,{
icon =buff.icon,
id =buff.id,
player =buff.player,
name =name,
duration =duration,
positive =buff.Positive,
percent =percent
})
if BUI.Penetration.Self[buff.id] then penetr_p=penetr_p+BUI.Penetration.Self[buff.id]*5*(percent/100) end
end
table.sort(t, function(x,y) return x.percent>y.percent end)
for i=1, #t do
local id =BUI.Vars.DeveloperMode and zo_strformat("[<<1>>] ",t[i].id) or ""
local name =zo_strformat("<<!aC:1>>",t[i].name)
names =names..(names=="" and "" or "\n")..(t[i].player and "|c33BB33v|r " or " ")..zo_iconFormat(t[i].icon,fs,fs)..(t[i].positive==false and "|cFF3333" or "")..string.sub(id..name,0,23).."|r"
time =time..(time=="" and "" or "\n")..BUI.FormatTime(t[i].duration)
percent =percent..(percent=="" and "|cAAAAAA" or "\n")..t[i].percent.."%"
end
if not Report.penetr then Report.penetr={["stamina"]=0,["magicka"]=0} end --Compatibility
if not Report.penetr.tmp then Report.penetr.tmp={["stamina"]=penetr_p,["magicka"]=penetr_m} end
--Apply labels
parent.names:SetText(names)
parent.time:SetText(time)
parent.perc:SetText(percent)
local h=#t*fs*1.335
parent.names:SetHeight(h)
parent.time:SetHeight(h)
parent.perc:SetHeight(h)
parent:SetHidden(false)
end
local function SetupTargetBuffs(control)
local target=zo_strformat("<<!aC:1>>",control.target)
local parent=control.d
if target=="Total" or target==BUI.Player.name or not BUI.Vars.StatsBuffs then parent:SetHidden(true) return end
--Setup labels
local Report=BUI.Stats.Current[ReportToShow]
local data=Report.TargetBuffs[target]
if data==nil then parent:SetHidden(true) return end
-- local fighttime=math.max(zo_round((Report.endTime-Report.startTime)/10)/100,1)
local fighttime=math.max((Report.endTime-Report.startTime)/1000,1)
local penetr_p_avg,penetr_m_avg,penetr_p_max,penetr_m_max,names,time,percent,t,fs=0,0,0,0,"","","",{},BUI.Vars.StatsFontSize
local ab_Magickasteal=GetAbilityName(39100) --Minor Magickasteal
local ab_Crusher=GetAbilityName(17906) --Crusher
local ab_Alkosh=GetAbilityName(75753) --Line-Breaker
local ab_Breach=GetAbilityName(62787) --Major Breach
local ab_mBreach=GetAbilityName(62588) --Minor Breach
local msteal,crusher,alkosh,Breach,mBreach=0,0,0,0,0
--Print to the BuffsUp window
for name,buff in pairs(data) do
if buff.timeEnding*1000>Report.endTime then buff.timeEnding=Report.endTime/1000 end
local duration=buff.Duration+buff.timeEnding-buff.timeStarted if duration<0 then duration=0 end
local percent=(buff.timeStarted==buff.timeEnding) and 100 or math.min(math.floor(duration*100/fighttime+.45),100)
table.insert(t,{
icon =buff.icon,
id =buff.id,
player =buff.player,
name =name,
duration =duration,
percent =percent
})
--Summary calculation
if BUI.Penetration.Target[name] then
penetr_p_avg=penetr_p_avg+BUI.Penetration.Target[name]*(percent/100)
penetr_p_max=penetr_p_max+BUI.Penetration.Target[name]
penetr_m_avg=penetr_m_avg+BUI.Penetration.Target[name]*(percent/100)
penetr_m_max=penetr_m_max+BUI.Penetration.Target[name]
end
if name==ab_Magickasteal then msteal=msteal+percent
elseif name==ab_Crusher then crusher=crusher+percent
elseif name==ab_Alkosh then alkosh=alkosh+percent
elseif name==ab_Breach then Breach=Breach+percent
elseif name==ab_mBreach then mBreach=mBreach+percent
end
end
table.sort(t, function(x,y) return x.percent>y.percent end)
for i=1, #t do
local id=BUI.Vars.DeveloperMode and zo_strformat("[<<1>>] ",t[i].id) or ""
local name =zo_strformat("<<!aC:1>>",t[i].name)
names =names..(names=="" and "" or "\n")..(t[i].player and "|c33BB33v|r " or " ")..zo_iconFormat(t[i].icon,fs,fs)..string.sub(id..name,0,23)
time =time..(time=="" and "" or "\n")..BUI.FormatTime(t[i].duration)
percent =percent..(percent=="" and "|cAAAAAA" or "\n")..t[i].percent.."%"
end
if not Report.penetr[target] then Report.penetr[target]={avg={["stamina"]=penetr_p_avg,["magicka"]=penetr_m_avg},max={["stamina"]=penetr_p_max,["magicka"]=penetr_m_max}} end
--Apply labels
parent.summary:SetHeight((fs-4)*1.36*(control.index>1 and 4 or 3))
parent.summary:SetText(
"|cbbbbbbCrusher:|r "..crusher.."|cbbbbbb% Line-Breaker:|r "..alkosh.."|cbbbbbb%|r"..
"\n|cbbbbbbMajor/Minor Breach:|r "..Breach.."|cbbbbbb/|r"..mBreach.."|cbbbbbb%|r"..
"\n|cbbbbbbMagickasteal:|r "..msteal.."%"
-- "\n|cbbbbbbPenetration average:|r |c33bb33"..math.floor(penetr_p_avg).."|cbbbbbb/|r|c5555ff"..math.floor(penetr_m_avg).."|r"..
-- (control.index>1 and "\n|cbbbbbbPenetration max phisical/magical:|r |c33bb33"..math.floor(penetr_p_max).."|cbbbbbb/|r|c5555ff"..math.floor(penetr_m_max).."|r" or "")
)
parent.names:SetText(names)
parent.time:SetText(time)
parent.perc:SetText(percent)
local h=#t*fs*1.335
parent.names:SetHeight(h)
parent.time:SetHeight(h)
parent.perc:SetHeight(h)
end
function BUI.Stats.Toggle(redraw)
if not BUI.init.Stats or not BUI.Vars.EnableStats then return end
if redraw~=true then redraw=BUI_Report:IsHidden() ReportToShow=BUI.ReportN end
--Hide additional info
if BUI_Report_Einfo and not BUI_Report_Einfo:IsHidden() then
BUI_Report_Einfo:SetHidden(true)
BUI_Report_Ebutton:SetTextureRotation(0)
end
if BUI_Report_Uptimes and not BUI_Report_Uptimes:IsHidden() then
BUI_Report_Uptimes:SetHidden(true)
BUI_Report_Ubutton:SetTextureRotation(0)
end
if redraw then
if BUI.Stats.Current[ReportToShow].damage>0 then
SetupPlayerBuffs()
if BUI.Stats.Current[ReportToShow].Saved then
BUI_Report_Save:SetDisabled(true)
else BUI_Report_Save:SetDisabled(nil) end
BUI_Report_Del:SetDisabled(nil)
else
BUI_Report_Save:SetDisabled(true)
BUI_Report_Del:SetDisabled(true)
end
if LastSection then
if LastSection=="Group" then BUI.Stats.SetupGroupReport() else BUI.Stats.SetupReport(LastSection) end
else
BUI.Stats.SetupReport("Damage")
end
TargetBuffsIsExpanded=false
if ReportToShow==1 then
BUI_Report_Prev:SetDisabled(true)
else
BUI_Report_Prev:SetDisabled(nil)
end
if ReportToShow==BUI.ReportN then
BUI_Report_Next:SetDisabled(true)
else
BUI_Report_Next:SetDisabled(nil)
end
BUI_Report_Count:SetText("("..ReportToShow.."/"..BUI.ReportN..")")
SetGameCameraUIMode(true)
end
--Toggle visibility
BanditsUI:SetHidden(redraw)
BUI_Report:SetHidden(not redraw)
end
local function CharacterSummary(target)
local Report=BUI.Stats.Current[ReportToShow]
local mainpower=(Report.stamina and Report.magicka) and ((Report.stamina>Report.magicka) and "stamina" or "magicka")
local penetr=(Report.penetr.own and Report.penetr.own[mainpower] or 0)+(Report.penetr.tmp and Report.penetr.tmp[mainpower] or 0)
local text=
(Report.health and "|cbb3333Health|r "..BUI.DisplayNumber(Report.health) or "")..
(mainpower and (mainpower=="stamina" and " |c33bb33Stamina|r "..BUI.DisplayNumber(Report.stamina) or " |c5555ffMagicka|r "..BUI.DisplayNumber(Report.magicka)) or "")..
-- ((mainpower and Report.damagepower) and (mainpower=="stamina" and "\n|c33bb33W dmg|r " or "\n|c5555ffSp dmg|r ")..BUI.DisplayNumber(Report.damagepower[mainpower]) or "")..
-- ((mainpower and Report.crit and Report.crit[mainpower]) and (mainpower=="stamina" and " |c33bb33" or " |c5555ff").."Crit chance|r "..BUI.DisplayNumber(Report.crit[mainpower]).."|cbbbbbb%|r" or "")..
(mainpower and "\n|cbbbbbbPenetration avg/max:|r "..
BUI.DisplayNumber(penetr+(Report.penetr[target] and Report.penetr[target].avg and Report.penetr[target].avg[mainpower] or 0)).."|cbbbbbb/|r"..
BUI.DisplayNumber(penetr+(Report.penetr[target] and Report.penetr[target].max and Report.penetr[target].max[mainpower] or 0)) or "")
-- d("Penetration: "..(Report.penetr.own and Report.penetr.own[mainpower] or 0).."+"..(Report.penetr.tmp and Report.penetr.tmp[mainpower] or 0).."+"..(Report.penetr[target] and Report.penetr[target][mainpower] or 0))
BUI_Report_Summary:SetText(text)
BUI_Report_Summary:SetHidden(false)
end
local function RemoveElementName(name)
local element={" of Fire"," of Storms"," of Ice","Elemental ","'"}
for _,el in pairs(element) do
name=string.gsub(name,el,"")
end
name=string.gsub(name,"Deadly Cloak","Blade Cloak")
return zo_strformat("<<!aC:1>>",name)
end
local function TogleBuffsSection(context)
local visible=(context and context~="Incoming")
BuffsSection=visible
local w=720+((BUI.language=="en" or BUI.Vars.ActionsPrecise)and 50 or 0)
local buf=(BUI.Vars.StatsBuffs and visible) and BUFF_W or 0
control=_G["BUI_Report_Elements"] if control~=nil then control:SetHidden(not visible) end
control=_G["BUI_Report_BuffsUp_Control"] if control~=nil then control:SetHidden(not visible) end
control=_G["BUI_Report_Description"] if control~=nil then control:SetHidden(not visible) end
control=_G["BUI_Report_BuffsUp_Description"] if control~=nil then control:SetHidden(not visible) end
BUI_Report_Summary:SetHidden(not visible)
BUI_Report:SetWidth(w+20+buf)
BUI_Report:SetWidth(w+20+buf)
-- BUI_Report_Backdrop:SetWidth(w+20+buf)
BUI_Report_Header:SetWidth(w+20+buf)
-- BUI_Report_Foot:SetWidth(w+20+buf)
if BUI_Report_Einfo_Champion then BUI_Report_Einfo_Champion:SetHidden(not (BUI.Vars.StatsBuffs and BuffsSection)) end
end
local function IsDoT(id)
return id==18084 --Burning
or id==21481 --Chill
or id==21929 --Poisoned
or id==21925 --Dieseased
or id==80565 --Kragh
or id==80526 --Ilambris
or GetAbilityTargetDescription(id)~=GetString(SI_TARGETTYPE0)
end
local function GetAbilityUptime(id,ab_name,target)
local Report=BUI.Stats.Current[ReportToShow]
local up=target and Report.Damage[target][ab_name].uptime or 0
if up and up>0 then return up end
local name=ab_name and RemoveElementName(ab_name)
local fighttime=math.max(Report.endTime-Report.startTime,1000)
--From buffs
if target and Report.TargetBuffs[target] then
for buff_name,buff in pairs(Report.TargetBuffs[target]) do
if buff_name==name then
-- d("Uptime from buffs: "..buff_name)
if buff.timeEnding*1000>Report.endTime then buff.timeEnding=Report.endTime/1000 end
local duration=math.max(buff.Duration+buff.timeEnding-buff.timeStarted,0)
up=(buff.timeStarted==buff.timeEnding) and 100 or math.min(math.floor(duration*1000/fighttime*100),100)
break
end
end
if up and up>0 then
Report.Damage[target][ab_name].uptime=up
return up
end
end
--From ability used
if Report.Uptimes then
local Uptimes=Report.Uptimes[id]