Back to Home

ESO Lua File v101041

ingame/ram/ram.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
local MAX_ESCORTS_SHOWN = 6
local MIN_MET_TEXTURE = "EsoUI/Art/AvA/AvA_ram_slot_green.dds"
local MIN_NOT_MET_TEXTURE = "EsoUI/Art/AvA/AvA_ram_slot_red.dds"
local SPOT_NOT_FILLED_TEXTURE = "EsoUI/Art/AvA/AvA_ram_slot_empty.dds"
ZO_Ram = ZO_Object:Subclass()
function ZO_Ram:New(control)
    local object = ZO_Object.New(self)
    object:Initialize(control)
    return object
end
function ZO_Ram:Initialize(control)
    self.control = control
    self.name = control:GetNamedChild("Name")
    self.indicatorsControl = control:GetNamedChild("Indicators")
    self.indicatorsList = {}
    SHARED_INFORMATION_AREA:AddRam(self.control)
    local prevControl
    for i = 1, MAX_ESCORTS_SHOWN do
        local currentControl = CreateControlFromVirtual("ZO_RamIndicators", self.indicatorsControl, "ZO_RamIndicator", i)
        self.indicatorsList[i] = currentControl
        if(prevControl) then
            currentControl:SetAnchor(TOPLEFT, prevControl, TOPRIGHT)
        else
            currentControl:SetAnchor(TOPLEFT, nil, TOPLEFT)
        end
        prevControl = currentControl
    end
    ZO_StatusBar_SetGradientColor(ZO_RamHealth, ZO_POWER_BAR_GRADIENT_COLORS[COMBAT_MECHANIC_FLAGS_HEALTH])
    local function OnRamEscortCountUpdate(eventCode, numEscorts)
        self:UpdateRam(numEscorts)
    end
    local function OnLeaveRamEscort()
        self.isInitialized = false
        self:UpdateVisibility()
    end
    control:RegisterForEvent(EVENT_RAM_ESCORT_COUNT_UPDATE, OnRamEscortCountUpdate)
    control:RegisterForEvent(EVENT_LEAVE_RAM_ESCORT, OnLeaveRamEscort)
    self:UpdateRam()
end
function ZO_Ram:UpdateRam(numEscorts)
    if not self.isInitialized then
        self.name:SetText(zo_strformat(SI_SIEGE_BAR_NAME, GetRawUnitName("escortedram")))
        self.isInitialized = true
    end
    self:UpdateNumEscorts(numEscorts or GetNumPlayersEscortingRam())
end
function ZO_Ram:UpdateNumEscorts(numEscorts)
    local minRequiredEscorts, maxPossibleEscorts = GetMinMaxRamEscorts()
    local spotFilledTexture = (numEscorts >= minRequiredEscorts) and MIN_MET_TEXTURE or MIN_NOT_MET_TEXTURE
    for i = 1, MAX_ESCORTS_SHOWN do
        local control = self.indicatorsList[i]
        if(i <= maxPossibleEscorts) then
            control:SetHidden(false)
            if(i <= numEscorts) then
                control:SetTexture(spotFilledTexture)
            else
                control:SetTexture(SPOT_NOT_FILLED_TEXTURE)
            end
        else
            control:SetHidden(true)
        end
    end
end
function ZO_Ram:UpdateVisibility()
    SHARED_INFORMATION_AREA:SetHidden(self.control, not IsPlayerEscortingRam())
end
    ZO_RAM = ZO_Ram:New(control)
end