Back to Home

ESO Lua File v101041

ingame/map/keyboard/worldmaplocations_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
local MapLocations = ZO_MapLocations_Shared:Subclass()
local LOCATION_DATA = 1
function MapLocations:Initialize(control)
    ZO_MapLocations_Shared.Initialize(self, control)
    WORLD_MAP_LOCATIONS_FRAGMENT = ZO_FadeSceneFragment:New(control)
end
function MapLocations:InitializeList(control)
    self.list = control:GetNamedChild("List")
end
function MapLocations:UpdateSelectedMap()
    self.selectedMapIndex = GetCurrentMapIndex()
end
function MapLocations:SetListDisabled(disabled)
    self.listDisabled = disabled
end
function MapLocations:BuildLocationList()
    ZO_ScrollList_AddDataType(self.list, LOCATION_DATA, "ZO_WorldMapLocationRow", 23, function(control, data) self:SetupLocation(control, data) end)
    local scrollData = ZO_ScrollList_GetDataList(self.list)
    local mapData = self.data:GetLocationList()
    for i,entry in ipairs(mapData) do
        scrollData[#scrollData + 1] = ZO_ScrollList_CreateDataEntry(LOCATION_DATA, entry)
    end
end
function MapLocations:SetupLocation(control, data)
    local listDisabled = self:GetDisabled()
    local locationLabel = control:GetNamedChild("Location")
    locationLabel:SetText(data.locationName)
    locationLabel:SetSelected(self.selectedMapIndex == data.index)    
    locationLabel:SetEnabled(not listDisabled)
    locationLabel:SetMouseEnabled(not listDisabled)
end
--Local XML
function MapLocations:RowLocation_OnMouseDown(label, button)
    if(button == MOUSE_BUTTON_INDEX_LEFT) then
        label:SetAnchor(LEFT, nil, LEFT, 0, 1)
    end
end
function MapLocations:RowLocation_OnMouseUp(label, button, upInside)
    if(button == MOUSE_BUTTON_INDEX_LEFT) then
        label:SetAnchor(LEFT, nil, LEFT, 0, 0)
        if(upInside) then
            local data = ZO_ScrollList_GetData(label:GetParent())
            WORLD_MAP_MANAGER:SetMapByIndex(data.index)
            PlaySound(SOUNDS.MAP_LOCATION_CLICKED)
        end
    end
end
--Global XML
    WORLD_MAP_LOCATIONS:RowLocation_OnMouseDown(label, button)
end
function ZO_WorldMapLocationRowLocation_OnMouseUp(label, button, upInside)
    WORLD_MAP_LOCATIONS:RowLocation_OnMouseUp(label, button, upInside)
end
    WORLD_MAP_LOCATIONS = MapLocations:New(self)
end