Back to Home

ESO Lua File v101041

ingame/map/keyboard/worldmaphouses_keyboard.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
--Layout consts
ZO_MAP_HOUSES_KEYBOARD_ROW_PADDING_X = 20
ZO_MapHouses_Keyboard = ZO_MapHouses_Shared:Subclass()
local HOUSE_HEADER = 1
local HOUSE_DATA = 2
function ZO_MapHouses_Keyboard:Initialize(control)
    ZO_MapHouses_Shared.Initialize(self, control, ZO_FadeSceneFragment)
end
function ZO_MapHouses_Keyboard:InitializeList(control)
    self.list = control:GetNamedChild("List")
    local function SetupHeader(control, data)
        local headerLabel = control:GetNamedChild("Label")
        headerLabel:SetText(data.text)
    end
    function SetupHouse(control, data)
        local listEnabled = self:IsListEnabled()
        local houseNameLabel = control:GetNamedChild("Name")
        houseNameLabel:SetText(data.houseName)
        houseNameLabel:SetSelected(false)
        houseNameLabel:SetEnabled(listEnabled)
        houseNameLabel:SetMouseEnabled(listEnabled)
        local locationLabel = control:GetNamedChild("Location")
        locationLabel:SetText(data.foundInZoneName)
    end
    ZO_ScrollList_AddDataType(self.list, HOUSE_HEADER, "ZO_WorldMapHouseHeader", 32, SetupHeader)
    ZO_ScrollList_AddDataType(self.list, HOUSE_DATA, "ZO_WorldMapHouseRow", 60, SetupHouse)
end
function ZO_MapHouses_Keyboard:SetListEnabled(enabled)
    ZO_MapHouses_Shared.SetListEnabled(self, enabled)
end
function ZO_MapHouses_Keyboard:RefreshHouseList()
    ZO_MapHouses_Shared.RefreshHouseList(self)
    local scrollData = ZO_ScrollList_GetDataList(self.list)
    local houseList = WORLD_MAP_HOUSES_DATA:GetHouseList()
    local firstUnlocked = true
    local firstLocked = true
    for i, mapEntry in ipairs(houseList) do
        local headerText = nil
        if mapEntry.unlocked and firstUnlocked then
            headerText = GetString("SI_COLLECTIBLEUNLOCKSTATE", COLLECTIBLE_UNLOCK_STATE_UNLOCKED_OWNED)
            firstUnlocked = false
        elseif not mapEntry.unlocked and firstLocked then
            headerText = GetString("SI_COLLECTIBLEUNLOCKSTATE", COLLECTIBLE_UNLOCK_STATE_LOCKED)
            firstLocked = false
        end
        if headerText then
            local headerEntry = ZO_ScrollList_CreateDataEntry(HOUSE_HEADER, { text = headerText })
            table.insert(scrollData, headerEntry)
        end
        local dataEntry = ZO_ScrollList_CreateDataEntry(HOUSE_DATA, mapEntry)
        table.insert(scrollData, dataEntry)
    end
end
function ZO_MapHouses_Keyboard:SetupHouse(control, data)
    local listEnabled = self:IsListEnabled()
    local houseNameLabel = control:GetNamedChild("Name")
    houseNameLabel:SetText(data.houseName)
    houseNameLabel:SetSelected(false)
    houseNameLabel:SetEnabled(listEnabled)
    houseNameLabel:SetMouseEnabled(listEnabled)
    local locationLabel = control:GetNamedChild("Location")
    locationLabel:SetText(data.foundInZoneName)
end
--Global XML
    if button == MOUSE_BUTTON_INDEX_LEFT then
        label:SetAnchor(TOPLEFT, nil, TOPLEFT, ZO_MAP_HOUSES_KEYBOARD_ROW_PADDING_X, 1)
    end
end
function ZO_WorldMapHouseRow_OnMouseUp(label, button, upInside)
    if button == MOUSE_BUTTON_INDEX_LEFT then
        label:SetAnchor(TOPLEFT, nil, TOPLEFT, ZO_MAP_HOUSES_KEYBOARD_ROW_PADDING_X, 0)
        if upInside then
            local data = ZO_ScrollList_GetData(label:GetParent())
            WORLD_MAP_MANAGER:SetMapByIndex(data.mapIndex)
            ZO_WorldMap_PanToWayshrine(data.nodeIndex)
            PlaySound(SOUNDS.MAP_LOCATION_CLICKED)
        end
    end
end
    WORLD_MAP_HOUSES = ZO_MapHouses_Keyboard:New(self)
end