Back to Home

ESO Lua File v101041

ingame/playerattributebars/playerattributebars.lua

[◄ back to folders ]
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
local PAB_TEMPLATES = {
    [COMBAT_MECHANIC_FLAGS_MAGICKA] = {
        background = {
            Left = "ZO_PlayerAttributeBgLeftArrow",
            Right = "ZO_PlayerAttributeBgRight",
            Center = "ZO_PlayerAttributeBgCenter",
        },
        frame = {
            Left = "ZO_PlayerAttributeFrameLeftArrow",
            Right = "ZO_PlayerAttributeFrameRight",
            Center = "ZO_PlayerAttributeFrameCenter",
        },
        warner = {
            texture = "ZO_PlayerAttributeMagickaWarnerTexture",
            Left = "ZO_PlayerAttributeWarnerLeftArrow",
            Right = "ZO_PlayerAttributeWarnerRight",
            Center = "ZO_PlayerAttributeWarnerCenter",
        },
        anchors = {
            "ZO_PlayerAttributeBarAnchorLeft",
        },
    },
    [COMBAT_MECHANIC_FLAGS_HEALTH] = {
        background = {
            Left = "ZO_PlayerAttributeBgLeftArrow",
            Right = "ZO_PlayerAttributeBgRightArrow",
            Center = "ZO_PlayerAttributeBgCenter",
            small = "ZO_PlayerAttributeBgSmallCenter",
        },
        frame = {
            Left = "ZO_PlayerAttributeFrameLeftArrow",
            Right = "ZO_PlayerAttributeFrameRightArrow",
            Center = "ZO_PlayerAttributeFrameCenter",
            small = "ZO_PlayerAttributeFrameSmallCenter",
        },
        warner = {
            texture = "ZO_PlayerAttributeHealthWarnerTexture",
            Left = "ZO_PlayerAttributeWarnerLeftArrow",
            Right = "ZO_PlayerAttributeWarnerRightArrow",
            Center = "ZO_PlayerAttributeWarnerCenter",
        },
        anchors = {
            "ZO_PlayerAttributeHealthBarAnchorLeft",
            "ZO_PlayerAttributeHealthBarAnchorRight",
        },
        smallAnchors = {
            "ZO_PlayerAttributeHealthBarSmallAnchorLeft",
            "ZO_PlayerAttributeHealthBarSmallAnchorRight",
        },
    },
    [COMBAT_MECHANIC_FLAGS_STAMINA] = {
        background = {
            Left = "ZO_PlayerAttributeBgLeft",
            Right = "ZO_PlayerAttributeBgRightArrow",
            Center = "ZO_PlayerAttributeBgCenter",
        },
        frame = {
            Left = "ZO_PlayerAttributeFrameLeft",
            Right = "ZO_PlayerAttributeFrameRightArrow",
            Center = "ZO_PlayerAttributeFrameCenter",
        },
        warner = {
            texture = "ZO_PlayerAttributeStaminaWarnerTexture",
            Left = "ZO_PlayerAttributeWarnerLeft",
            Right = "ZO_PlayerAttributeWarnerRightArrow",
            Center = "ZO_PlayerAttributeWarnerCenter",
        },
        anchors = {
            "ZO_PlayerAttributeBarAnchorRight",
        },
    },
    [COMBAT_MECHANIC_FLAGS_WEREWOLF] = {
        background = {
            small = "ZO_PlayerAttributeBgSmallLeft",
        },
        frame = {
            small = "ZO_PlayerAttributeFrameSmallLeft",
        },
        smallAnchors = {
            "ZO_PlayerAttributeSmallAnchorLeft",
        },
    },
    [COMBAT_MECHANIC_FLAGS_MOUNT_STAMINA] = {
        background = {
            small = "ZO_PlayerAttributeBgSmallRight",
        },
        frame = {
            small = "ZO_PlayerAttributeFrameSmallRight",
        },
        smallAnchors = {
            "ZO_PlayerAttributeSmallAnchorRight",
        },
    },
    statusBar = "ZO_PlayerAttributeStatusBar",
    statusBarGloss = "ZO_PlayerAttributeStatusBarGloss",
    statusBarSmall = "ZO_PlayerAttributeStatusBarSmall",
    statusBarGlossSmall = "ZO_PlayerAttributeStatusBarGlossSmall",
    resourceNumbersLabel = "ZO_PlayerAttributeResourceNumbers",
}
--Attribute Bar
-------------------
local DELAY_BEFORE_FADING = 1500
local ZO_PlayerAttributeBar = ZO_Object:Subclass()
function ZO_PlayerAttributeBar:New(control, barControls, powerType, unitOverride, secondPriorityUnitTag)
    self.control = control
    local bar = ZO_Object.New(self)
    bar.control = control
    bar.barControls = barControls
    bar.powerType = powerType
    bar.unitTag = unitOverride or "player"
    bar.secondPriorityUnitTag = secondPriorityUnitTag
    bar.current = 0
    bar.max = 0
    bar.effectiveMax = 0
    bar.timeline = ANIMATION_MANAGER:CreateTimelineFromVirtual("PlayerAttributeBarAnimation", control)
    bar.fadeOutDelay = 0
    bar.textEnabled = false
    bar.forcedVisibleReferences = 0
    bar:SetTextEnabled(ZO_PlayerAttributeBar.IsTextEnabled())
    bar:RefreshColor()
    bar:UpdateStatusBar()
    control.playerAttributeBarObject = bar
    control:RegisterForEvent(EVENT_INTERFACE_SETTING_CHANGED, function(_, settingType, settingId) bar:OnInterfaceSettingChanged(settingType, settingId) end)
    control:AddFilterForEvent(EVENT_INTERFACE_SETTING_CHANGED, REGISTER_FILTER_SETTING_SYSTEM_TYPE, SETTING_TYPE_UI)
    control:RegisterForEvent(EVENT_PLAYER_ACTIVATED, function() bar:OnPlayerActivated() end)
    
    control:RegisterForEvent(EVENT_POWER_UPDATE, function(_, unitTag, powerPoolIndex, powerType, current, max, effectiveMax) bar:OnPowerUpdate(unitTag, powerPoolIndex, powerType, current, max, effectiveMax) end)
    control:AddFilterForEvent(EVENT_POWER_UPDATE, REGISTER_FILTER_POWER_TYPE, powerType)
    if unitOverride or secondPriorityUnitTag then
        control:RegisterForEvent(EVENT_UNIT_CREATED, function(_, unitTag) if self:IsUnitTag(unitTag) then self:UpdateStatusBar() end end)
    end
    EVENT_MANAGER:RegisterForUpdate(control:GetName() .. "FadeUpdate", DELAY_BEFORE_FADING, function() bar:UpdateContextualFading() end)
    return bar
end
function ZO_PlayerAttributeBar:GetEffectiveUnitTag()
    if self.secondPriorityUnitTag then
        if not DoesUnitExist(self.unitTag) and DoesUnitExist(self.secondPriorityUnitTag) then
            return self.secondPriorityUnitTag
        end
    end
    return self.unitTag
end
function ZO_PlayerAttributeBar:IsUnitTag(unitTag)
    return self:GetEffectiveUnitTag() == unitTag
end
function ZO_PlayerAttributeBar:RefreshColor()
    local powerType = self.powerType
    local gradient = ZO_POWER_BAR_GRADIENT_COLORS[powerType]
    for i, control in ipairs(self.barControls) do
        ZO_StatusBar_SetGradientColor(control, gradient)
        control:SetFadeOutLossColor(GetInterfaceColor(INTERFACE_COLOR_TYPE_POWER_FADE_OUT, powerType))
        control:SetFadeOutGainColor(GetInterfaceColor(INTERFACE_COLOR_TYPE_POWER_FADE_IN, powerType))
    end
end
function ZO_PlayerAttributeBar:UpdateStatusBar(current, max, effectiveMax)
        return false
    end
    local forceInit = false
    if current == nil or max == nil or effectiveMax == nil then
        current, max, effectiveMax = GetUnitPower(self:GetEffectiveUnitTag(), self.powerType)
        forceInit = true
    end
    if self.current == current and self.max == max and self.effectiveMax == effectiveMax then
        return
    end
    self.current = current
    self.max = max
    self.effectiveMax = effectiveMax
    local barMax = max
    local barCurrent = current
    if #self.barControls > 1 then
        barMax = barMax / 2
        barCurrent = barCurrent / 2
    end
    for _, control in pairs(self.barControls) do
        ZO_StatusBar_SmoothTransition(control, barCurrent, barMax, forceInit)
    end
    if not forceInit then
        self:ResetFadeOutDelay()
    end
    if self.textEnabled then
        self.label:SetText(zo_strformat(SI_UNIT_FRAME_BARVALUE, current, max))
    end
    self:UpdateResourceNumbersLabel(current, effectiveMax)
end
function ZO_PlayerAttributeBar:ResetFadeOutDelay()
    self.fadeOutDelay = GetFrameTimeMilliseconds() + DELAY_BEFORE_FADING
end
local EXCLUDE_LINK_CHECK = true
function ZO_PlayerAttributeBar:ShouldContextuallyShow(excludeLinkCheck)
    -- externalVisibilityRequirement controls when the bar should never show, for example the mount stamina bar
    -- should not show when the player is not mounted
        return false
    end
    if self.max == 0 then
        return false
    end
    local showSetting = ZO_PlayerAttributeBar.GetShowAttributBarsSetting()
    if showSetting == RESOURCE_BARS_SETTING_CHOICE_ALWAYS_SHOW then
        return true
    elseif showSetting == RESOURCE_BARS_SETTING_CHOICE_DONT_SHOW then
        return false
    else -- showSetting is RESOURCE_BARS_SETTING_CHOICE_AUTOMATIC and we'll just use the default behavior
        -- forceVisible is largely controlled by a UnitAttributeVisualizer to show the bars when there is something affecting them
        -- like an armor buff/debuff or a shield applied
        if self.forceVisible then
            return true
        end
        if (self.current < self.effectiveMax) and (self.current ~= 0) then
            return true
        end
        if not self.IsPlayerFrameFadingEnabled() then
            return true
        end
        if self.fadeOutDelay > GetFrameTimeMilliseconds() then
            return true
        end
        if self.linkedVisibility and not excludeLinkCheck then
            return self.linkedVisibility:ShouldContextuallyShow(EXCLUDE_LINK_CHECK)
        end
        return false
    end
end
function ZO_PlayerAttributeBar:LinkVisibility(otherAttributeBar)
    otherAttributeBar.linkedVisibility = self
    self.linkedVisibility = otherAttributeBar
    otherAttributeBar:UpdateContextualFading()
end
end
function ZO_PlayerAttributeBar.IsTextEnabled()
    return GetSetting_Bool(SETTING_TYPE_UI, UI_SETTING_ALWAYS_SHOW_STATUS_TEXT)
end
function ZO_PlayerAttributeBar.IsPlayerFrameFadingEnabled()
    return GetSetting_Bool(SETTING_TYPE_UI, UI_SETTING_FADE_PLAYER_BARS)
end
function ZO_PlayerAttributeBar.GetShowAttributBarsSetting()
    return tonumber(GetSetting(SETTING_TYPE_UI, UI_SETTING_SHOW_RESOURCE_BARS))
end
function ZO_PlayerAttributeBar:UpdateContextualFading()
    local shouldContextuallyShow = self:ShouldContextuallyShow()
    if shouldContextuallyShow ~= self.isContextuallyShown then
        if shouldContextuallyShow then
            self.timeline:PlayForward()
        else
            self.timeline:PlayBackward()
        end
        self.isContextuallyShown = shouldContextuallyShow
        if self.linkedVisibility then
            self.linkedVisibility:UpdateContextualFading()
        end
        self:UpdateResourceNumbersLabel(self.current, self.effectiveMax)
    end
end
function ZO_PlayerAttributeBar:AddForcedVisibleReference()
    self.forcedVisibleReferences = self.forcedVisibleReferences + 1
    self:SetForceVisible(self.forcedVisibleReferences ~= 0)
end
function ZO_PlayerAttributeBar:RemoveForcedVisibleReference()
    self.forcedVisibleReferences = self.forcedVisibleReferences - 1
    self:SetForceVisible(self.forcedVisibleReferences ~= 0)
end
function ZO_PlayerAttributeBar:SetForceVisible(forceVisible)
    if self.forceVisible ~= forceVisible then
        self.forceVisible = forceVisible
        self:UpdateContextualFading()
    end
end
function ZO_PlayerAttributeBar:SetTextEnabled(enabled)
    if self.textEnabled ~= enabled then
        self.textEnabled = enabled
        if enabled then
            if not self.label then
                self.label = CreateControlFromVirtual("$(parent)Label", self.control, "ZO_PlayerAttributeBarText")
            end
            self.label:SetHidden(false)
            self:UpdateStatusBar()
        else
            if self.label then
                self.label:SetHidden(true)
            end
        end
    end
end
function ZO_PlayerAttributeBar:UpdateResourceNumbersLabel(current, maximum)
    if self.control.resourceNumbersLabel then
        self.control.resourceNumbersLabel:SetText(ZO_FormatResourceBarCurrentAndMax(current, maximum))
    end
end
--Events
function ZO_PlayerAttributeBar:OnPowerUpdate(unitTag, powerPoolIndex, powerType, current, max, effectiveMax)
    if((current ~= self.current or max ~= self.max or effectiveMax ~= self.effectiveMax) and self:IsUnitTag(unitTag)) then
        self:UpdateStatusBar(current, max, effectiveMax)
    end
end
function ZO_PlayerAttributeBar:OnPlayerActivated()
end
function ZO_PlayerAttributeBar:OnInterfaceSettingChanged(settingType, settingId)
    if settingType == SETTING_TYPE_UI then
        if settingId == UI_SETTING_FADE_PLAYER_BARS then
            self:UpdateContextualFading()
        elseif settingId == UI_SETTING_ALWAYS_SHOW_STATUS_TEXT then
            self:SetTextEnabled(self.IsTextEnabled())
        elseif settingId == UI_SETTING_RESOURCE_NUMBERS then
            self:UpdateResourceNumbersLabel(self.current, self.effectiveMax)
        elseif settingId ==UI_SETTING_SHOW_RESOURCE_BARS then
            self:UpdateContextualFading()
        end
    end
end
--Attribute Bar Group
-----------------------
local NUM_BARS = 3
local NORMAL_WIDTH = 237
local EXPANDED_WIDTH = 323
local SHRUNK_WIDTH = 141
local BAR_OFFSET_FROM_SCREEN_EDGE = 502
local MIN_BAR_AREA_WIDTH = (EXPANDED_WIDTH + 15) * NUM_BARS
local MAX_BAR_AREA_WIDTH = 1600
local ZO_PlayerAttributeBars = ZO_Object:Subclass()
local PLAYER_ATTRIBUTE_VISUALIZER_SOUNDS = 
{
    [STAT_HEALTH_MAX] = 
    {
        [ATTRIBUTE_BAR_STATE_NORMAL]    = SOUNDS.UAV_MAX_HEALTH_NORMAL,
        [ATTRIBUTE_BAR_STATE_EXPANDED]  = SOUNDS.UAV_MAX_HEALTH_INCREASED,
        [ATTRIBUTE_BAR_STATE_SHRUNK]    = SOUNDS.UAV_MAX_HEALTH_DECREASED,
    },
    [STAT_MAGICKA_MAX] = 
    {
        [ATTRIBUTE_BAR_STATE_NORMAL]    = SOUNDS.UAV_MAX_MAGICKA_NORMAL,
        [ATTRIBUTE_BAR_STATE_EXPANDED]  = SOUNDS.UAV_MAX_MAGICKA_INCREASED,
        [ATTRIBUTE_BAR_STATE_SHRUNK]    = SOUNDS.UAV_MAX_MAGICKA_DECREASED,
    },
    [STAT_STAMINA_MAX] = 
    {
        [ATTRIBUTE_BAR_STATE_NORMAL]    = SOUNDS.UAV_MAX_STAMINA_NORMAL,
        [ATTRIBUTE_BAR_STATE_EXPANDED]  = SOUNDS.UAV_MAX_STAMINA_INCREASED,
        [ATTRIBUTE_BAR_STATE_SHRUNK]    = SOUNDS.UAV_MAX_STAMINA_DECREASED,
    },
    [STAT_HEALTH_REGEN_COMBAT] = 
    {
        [STAT_STATE_INCREASE_GAINED]    = SOUNDS.UAV_INCREASED_HEALTH_REGEN_ADDED,
        [STAT_STATE_INCREASE_LOST]      = SOUNDS.UAV_INCREASED_HEALTH_REGEN_LOST,
        [STAT_STATE_DECREASE_GAINED]    = SOUNDS.UAV_DECREASED_HEALTH_REGEN_ADDED,
        [STAT_STATE_DECREASE_LOST]      = SOUNDS.UAV_DECREASED_HEALTH_REGEN_LOST,
    },
    [STAT_MAGICKA_REGEN_COMBAT] = 
    {
        [STAT_STATE_INCREASE_GAINED]    = SOUNDS.UAV_INCREASED_MAGICKA_REGEN_ADDED,
        [STAT_STATE_INCREASE_LOST]      = SOUNDS.UAV_INCREASED_MAGICKA_REGEN_LOST,
        [STAT_STATE_DECREASE_GAINED]    = SOUNDS.UAV_DECREASED_MAGICKA_REGEN_ADDED,
        [STAT_STATE_DECREASE_LOST]      = SOUNDS.UAV_DECREASED_MAGICKA_REGEN_LOST,
    },
    [STAT_STAMINA_REGEN_COMBAT] = 
    {
        [STAT_STATE_INCREASE_GAINED]    = SOUNDS.UAV_INCREASED_STAMINA_REGEN_ADDED,
        [STAT_STATE_INCREASE_LOST]      = SOUNDS.UAV_INCREASED_STAMINA_REGEN_LOST,
        [STAT_STATE_DECREASE_GAINED]    = SOUNDS.UAV_DECREASED_STAMINA_REGEN_ADDED,
        [STAT_STATE_DECREASE_LOST]      = SOUNDS.UAV_DECREASED_STAMINA_REGEN_LOST,
    },
    [STAT_ARMOR_RATING] = 
    {
        [STAT_STATE_INCREASE_GAINED]    = SOUNDS.UAV_INCREASED_ARMOR_ADDED,
        [STAT_STATE_INCREASE_LOST]      = SOUNDS.UAV_INCREASED_ARMOR_LOST,
        [STAT_STATE_DECREASE_GAINED]    = SOUNDS.UAV_DECREASED_ARMOR_ADDED,
        [STAT_STATE_DECREASE_LOST]      = SOUNDS.UAV_DECREASED_ARMOR_LOST,
    },
    [STAT_POWER] = 
    {
        [STAT_STATE_INCREASE_GAINED]    = SOUNDS.UAV_INCREASED_POWER_ADDED,
        [STAT_STATE_INCREASE_LOST]      = SOUNDS.UAV_INCREASED_POWER_LOST,
        [STAT_STATE_DECREASE_GAINED]    = SOUNDS.UAV_DECREASED_POWER_ADDED,
        [STAT_STATE_DECREASE_LOST]      = SOUNDS.UAV_DECREASED_POWER_LOST,
    },
    [STAT_MITIGATION] =
    {
        [STAT_STATE_IMMUNITY_GAINED]    = SOUNDS.UAV_IMMUNITY_ADDED,
        [STAT_STATE_IMMUNITY_LOST]      = SOUNDS.UAV_IMMUNITY_LOST,
        [STAT_STATE_SHIELD_GAINED]      = SOUNDS.UAV_DAMAGE_SHIELD_ADDED,
        [STAT_STATE_SHIELD_LOST]        = SOUNDS.UAV_DAMAGE_SHIELD_LOST,
        [STAT_STATE_POSSESSION_APPLIED] = SOUNDS.UAV_POSSESSION_APPLIED,
        [STAT_STATE_POSSESSION_REMOVED] = SOUNDS.UAV_POSSESSION_REMOVED,
        [STAT_STATE_TRAUMA_GAINED]      = SOUNDS.UAV_TRAUMA_ADDED,
        [STAT_STATE_TRAUMA_LOST]        = SOUNDS.UAV_TRAUMA_LOST,
    },
}
function ZO_PlayerAttributeBars:New(control)
    local barGroup = ZO_Object.New(self)
    barGroup.control = control
    barGroup.forceVisible = false
    
    local bars = {}
    local healthControl = GetControl(control, "Health")
    local healthBarControls = {GetControl(healthControl, "BarLeft"), GetControl(healthControl, "BarRight")}
    healthControl.barControls = healthBarControls
    healthControl.resourceNumbersLabel = GetControl(healthControl, "ResourceNumbers")
    local healthAttributeBar = ZO_PlayerAttributeBar:New(healthControl, healthBarControls, COMBAT_MECHANIC_FLAGS_HEALTH)
    table.insert(bars, healthAttributeBar)
    healthControl.warner = ZO_HealthWarner:New(healthControl)
    local siegeHealthControl = GetControl(control, "SiegeHealth")
    local siegeHealthBarControls = {GetControl(siegeHealthControl, "BarLeft"), GetControl(siegeHealthControl, "BarRight")}
    siegeHealthControl.barControls = siegeHealthBarControls
    local siegeHealthAttributeBar = ZO_PlayerAttributeBar:New(siegeHealthControl, siegeHealthBarControls, COMBAT_MECHANIC_FLAGS_HEALTH, "controlledsiege", "escortedram")
    table.insert(bars, siegeHealthAttributeBar)
    local function UpdateSiegeHealthBar() 
        siegeHealthAttributeBar:UpdateStatusBar() 
    end
    control:RegisterForEvent(EVENT_BEGIN_SIEGE_CONTROL, UpdateSiegeHealthBar)
    control:RegisterForEvent(EVENT_END_SIEGE_CONTROL, UpdateSiegeHealthBar)
    control:RegisterForEvent(EVENT_LEAVE_RAM_ESCORT, UpdateSiegeHealthBar)
    siegeHealthAttributeBar:SetExternalVisibilityRequirement(function() return IsGameCameraSiegeControlled() or IsPlayerEscortingRam() end)
    healthAttributeBar:LinkVisibility(siegeHealthAttributeBar)
    local magickaControl = GetControl(control, "Magicka")
    local magickaBarControls = {GetControl(magickaControl, "Bar")}
    magickaControl.barControls = magickaBarControls
    magickaControl.resourceNumbersLabel = GetControl(magickaControl, "ResourceNumbers")
    local magickaAttributeBar = ZO_PlayerAttributeBar:New(magickaControl, magickaBarControls, COMBAT_MECHANIC_FLAGS_MAGICKA)
    table.insert(bars, magickaAttributeBar)
    magickaControl.warner = ZO_ResourceWarner:New(magickaControl, COMBAT_MECHANIC_FLAGS_MAGICKA)
    local werewolfControl = GetControl(control, "Werewolf")
    local werewolfBarControls = {GetControl(werewolfControl, "Bar")}
    werewolfControl.barControls = werewolfBarControls
    local werewolfAttributeBar = ZO_PlayerAttributeBar:New(werewolfControl, werewolfBarControls, COMBAT_MECHANIC_FLAGS_WEREWOLF)
    table.insert(bars, werewolfAttributeBar)
    control:RegisterForEvent(EVENT_WEREWOLF_STATE_CHANGED, function() werewolfAttributeBar:UpdateContextualFading() end)
    magickaAttributeBar:LinkVisibility(werewolfAttributeBar)
    local staminaControl = GetControl(control, "Stamina")
    local staminaBarControls = {GetControl(staminaControl, "Bar")}
    staminaControl.barControls = staminaBarControls
    staminaControl.resourceNumbersLabel = GetControl(staminaControl, "ResourceNumbers")
    local staminaAttributeBar = ZO_PlayerAttributeBar:New(staminaControl, staminaBarControls, COMBAT_MECHANIC_FLAGS_STAMINA)
    table.insert(bars, staminaAttributeBar)
    staminaControl.warner = ZO_ResourceWarner:New(staminaControl, COMBAT_MECHANIC_FLAGS_STAMINA)
    local mountStaminaControl = GetControl(control, "MountStamina")
    local mountStaminaBarControls = {GetControl(mountStaminaControl, "Bar")}
    mountStaminaControl.barControls = mountStaminaBarControls
    local mountStaminaAttributeBar = ZO_PlayerAttributeBar:New(mountStaminaControl, mountStaminaBarControls, COMBAT_MECHANIC_FLAGS_MOUNT_STAMINA)
    table.insert(bars, mountStaminaAttributeBar)
    mountStaminaAttributeBar:SetExternalVisibilityRequirement(IsMounted)
    control:RegisterForEvent(EVENT_MOUNTED_STATE_CHANGED, function() mountStaminaAttributeBar:UpdateContextualFading() end)
    staminaAttributeBar:LinkVisibility(mountStaminaAttributeBar)
    barGroup.bars = bars
    control:RegisterForEvent(EVENT_SCREEN_RESIZED, function() barGroup:OnScreenResized() end)
    local function OnExternalControlCountChanged(bar, change, count)
        if change > 0 then
            bar.playerAttributeBarObject:AddForcedVisibleReference()
        else
            bar.playerAttributeBarObject:RemoveForcedVisibleReference()
        end
    end
    barGroup.forceShow = false
    barGroup.attributeVisualizer = ZO_UnitAttributeVisualizer:New("player", PLAYER_ATTRIBUTE_VISUALIZER_SOUNDS, healthControl, magickaControl, staminaControl, OnExternalControlCountChanged)
    barGroup.attributeVisualizer:AddModule(ZO_UnitVisualizer_ArrowRegenerationModule:New())
    barGroup.attributeVisualizer:AddModule(ZO_UnitVisualizer_ShrinkExpandModule:New(NORMAL_WIDTH, EXPANDED_WIDTH, SHRUNK_WIDTH))
    local armorDamageLayoutInfo =
    {
        type = "Arrow",
        increasedArmorBgContainerTemplate = "ZO_IncreasedArmorBgContainerArrow",
        increasedArmorFrameContainerTemplate = "ZO_IncreasedArmorFrameContainerArrow",
        decreasedArmorOverlayContainerTemplate = "ZO_DecreasedArmorOverlayContainerArrow",
        increasedPowerGlowTemplate = "ZO_IncreasedPowerGlowArrow",
        increasedArmorOffsets = 
        {
            shared = 
            {
                top = -9,
                bottom = 9,
                left = -8,
                right = 8,
            },
        }
    }
    barGroup.attributeVisualizer:AddModule(ZO_UnitVisualizer_ArmorDamage:New(armorDamageLayoutInfo))
    local unwaveringLayoutInfo =
    {
        overlayContainerTemplate = "ZO_UnwaveringOverlayContainerArrow",
        overlayOffsets = 
        {
            keyboard = 
            {
                top = 3,
                bottom = -3,
                left = 3,
                right = -3,
            },
            gamepad = 
            {
                top = 3,
                bottom = -2,
                left = 4,
                right = -4,
            },
        }
    }
    barGroup.attributeVisualizer:AddModule(ZO_UnitVisualizer_UnwaveringModule:New(unwaveringLayoutInfo))
    local possessionLayoutInfo =
    {
        type = "Arrow",
        overlayContainerTemplate = "ZO_PossessionOverlayContainerArrow",
        overlayLeftOffset = 3,
        overlayTopOffset = 3,
        overlayRightOffset = -3,
        overlayBottomOffset = -3,
        possessionHaloGlowTemplate = "ZO_PossessionHaloGlowArrow",
    }
    barGroup.attributeVisualizer:AddModule(ZO_UnitVisualizer_PossessionModule:New(possessionLayoutInfo))
    local powerShieldLayoutInfo =
    {
        barLeftOverlayTemplate = "ZO_PowerShieldBarLeftOverlayArrow",
        barRightOverlayTemplate = "ZO_PowerShieldBarRightOverlayArrow",
    }
    barGroup.attributeVisualizer:AddModule(ZO_UnitVisualizer_PowerShieldModule:New(powerShieldLayoutInfo))
    barGroup:ResizeToFitScreen()
    PLAYER_ATTRIBUTE_BARS_FRAGMENT = ZO_HUDFadeSceneFragment:New(control)
    barGroup:ApplyStyle() -- Setup initial visual style based on current mode.
    control:RegisterForEvent(EVENT_GAMEPAD_PREFERRED_MODE_CHANGED, function() barGroup:OnGamepadPreferredModeChanged() end)
    return barGroup
end
local CHILD_DIRECTIONS = { "Left", "Right", "Center" }
function ZO_PlayerAttributeBars:ApplyStyle()
    ApplyTemplateToControl(self.control, ZO_GetPlatformTemplate("ZO_PlayerAttribute"))
    for _, bar in pairs(self.bars) do
        local powerTypeTemplates = PAB_TEMPLATES[bar.powerType]
        local backgroundTemplates = powerTypeTemplates.background
        local frameTemplates = powerTypeTemplates.frame
        local warnerControl = bar.control:GetNamedChild("Warner")
        local bgControl = bar.control:GetNamedChild("BgContainer")
        if warnerControl then
            local warnerTemplates = powerTypeTemplates.warner
            for _, direction in pairs(CHILD_DIRECTIONS) do
                local bgChild = bgControl:GetNamedChild("Bg" .. direction)
                ApplyTemplateToControl(bgChild, ZO_GetPlatformTemplate(backgroundTemplates[direction]))
                local frameControl = bar.control:GetNamedChild("Frame" .. direction)
                ApplyTemplateToControl(frameControl, ZO_GetPlatformTemplate(frameTemplates[direction]))
                local warnerChild = warnerControl:GetNamedChild(direction)
                ApplyTemplateToControl(warnerChild, ZO_GetPlatformTemplate(warnerTemplates.texture))
                ApplyTemplateToControl(warnerChild, ZO_GetPlatformTemplate(warnerTemplates[direction]))
            end
            for i, subBar in pairs(bar.barControls) do
                ApplyTemplateToControl(subBar, ZO_GetPlatformTemplate(PAB_TEMPLATES.statusBar))
                local gloss = subBar:GetNamedChild("Gloss")
                ApplyTemplateToControl(gloss, ZO_GetPlatformTemplate(PAB_TEMPLATES.statusBarGloss))
                local anchorTemplates = powerTypeTemplates.anchors
                if anchorTemplates then
                    subBar:ClearAnchors()
                    ApplyTemplateToControl(subBar, ZO_GetPlatformTemplate(anchorTemplates[i]))
                else
                    ApplyTemplateToControl(subBar, ZO_GetPlatformTemplate(PAB_TEMPLATES.anchor))
                end
            end
        else
            ApplyTemplateToControl(bgControl, ZO_GetPlatformTemplate(backgroundTemplates.small))
            local frame = bar.control:GetNamedChild("Frame")
            ApplyTemplateToControl(frame, ZO_GetPlatformTemplate(frameTemplates.small))
            for i, subBar in pairs(bar.barControls) do
                ApplyTemplateToControl(subBar, ZO_GetPlatformTemplate(PAB_TEMPLATES.statusBarSmall))
                local gloss = subBar:GetNamedChild("Gloss")
                ApplyTemplateToControl(gloss, ZO_GetPlatformTemplate(PAB_TEMPLATES.statusBarGlossSmall))
                local anchorTemplates = powerTypeTemplates.smallAnchors
                if anchorTemplates then
                    subBar:ClearAnchors()
                    ApplyTemplateToControl(subBar, ZO_GetPlatformTemplate(anchorTemplates[i]))
                end
            end
        end
        local resourceNumbersLabel = bar.control:GetNamedChild("ResourceNumbers")
        if resourceNumbersLabel then
            ApplyTemplateToControl(resourceNumbersLabel, ZO_GetPlatformTemplate(PAB_TEMPLATES.resourceNumbersLabel))
        end
    end
end
function ZO_PlayerAttributeBars:OnGamepadPreferredModeChanged()
    self:ApplyStyle()
    self.attributeVisualizer:ApplyPlatformStyle()
end
function ZO_PlayerAttributeBars:ForceShow(forceShow)
    if self.forceShow ~= forceShow then
        self.forceShow = forceShow
        for i = 1, #self.bars do
            if forceShow then
                self.bars[i]:AddForcedVisibleReference()
            else
                self.bars[i]:RemoveForcedVisibleReference()
            end
        end
    end
end
function ZO_PlayerAttributeBars:ResizeToFitScreen()
    local screenWidth, screenHeight = GuiRoot:GetDimensions()
    local barAreaWidth = screenWidth - BAR_OFFSET_FROM_SCREEN_EDGE * 2
    barAreaWidth = zo_clamp(barAreaWidth, MIN_BAR_AREA_WIDTH, MAX_BAR_AREA_WIDTH)
    self.control:SetWidth(barAreaWidth)
end
--Events
function ZO_PlayerAttributeBars:OnScreenResized()
end
--XML
    PLAYER_ATTRIBUTE_BARS = ZO_PlayerAttributeBars:New(self)
end