Back to Home

ESO Lua File v100026

ingame/campaign/campaignselector.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
local CampaignSelector = ZO_CampaignSelector_Shared:Subclass()
function CampaignSelector:New(control)
    local selector = ZO_CampaignSelector_Shared.New(self, control)
    return selector
end
function CampaignSelector:Initialize(control)
    ZO_CampaignSelector_Shared.Initialize(self, control)
    self.control = control
    local comboBoxControl = GetControl(control, "ComboBox")
    self.comboBox = ZO_ComboBox_ObjectFromContainer(comboBoxControl)
    self.comboBox:SetSortsItems(false)
    self.comboBox:SetSelectedItemFont("ZoFontWinH2")
    self.comboBox:SetDropdownFont("ZoFontHeader2")
    self.comboBox:SetSpacing(8)
    self.scenesCreated = false
    self.OnQueryTypeChanged =   function(_, entryText, entry)
                                        local selectedQueryType = entry.selectedQueryType
                                        if(selectedQueryType ~= self.selectedQueryType) then
                                            self.selectedQueryType = selectedQueryType
                                            self:UpdateCampaignWindows()
                                            self.dataRegistration:Refresh()
                                        end                             
                                    end
    self.campaignWindows =
    {
        CAMPAIGN_OVERVIEW,
        CAMPAIGN_SCORING,
        CAMPAIGN_EMPEROR,
        CAMPAIGN_BONUSES,
    }
    EVENT_MANAGER:RegisterForEvent("CampaignSelector", EVENT_CURRENT_CAMPAIGN_CHANGED, function() self:OnCurrentCampaignChanged() end)
    EVENT_MANAGER:RegisterForEvent("CampaignSelector", EVENT_ASSIGNED_CAMPAIGN_CHANGED, function() self:OnAssignedCampaignChanged() end)
    CAMPAIGN_SELECTOR_FRAGMENT = ZO_FadeSceneFragment:New(control)
    CAMPAIGN_SELECTOR_FRAGMENT:RegisterCallback("StateChange",  function(oldState, state)
                                                                    if(state == SCENE_FRAGMENT_SHOWING or state == SCENE_FRAGMENT_HIDDEN) then
                                                                        self.dataRegistration:Refresh()
                                                                    end
                                                                end)
    
    self.dataRegistration = ZO_CampaignDataRegistration:New("CampaignSelectorData", function() return self:NeedsData() end)
end
function CampaignSelector:RefreshQueryTypes()
    local selectedEntry
    self.comboBox:ClearItems()
    local homeCampaignDescription = GetString("SI_BATTLEGROUNDQUERYCONTEXTTYPE", BGQUERY_ASSIGNED_CAMPAIGN)
    local homeEntry = self.comboBox:CreateItemEntry(homeCampaignDescription, self.OnQueryTypeChanged)
    homeEntry.selectedQueryType = BGQUERY_ASSIGNED_CAMPAIGN
    self.comboBox:AddItem(homeEntry)
    if(homeEntry.selectedQueryType == self.selectedQueryType) then
        self.comboBox:SetSelectedItemText(homeCampaignDescription)
        selectedEntry = homeEntry
    end
    local current = GetCurrentCampaignId()
    local assigned = GetAssignedCampaignId()
    if(current ~= 0) and (current ~= assigned) then
        local localCampaignDescription = GetString("SI_BATTLEGROUNDQUERYCONTEXTTYPE", BGQUERY_LOCAL)
        local localEntry = self.comboBox:CreateItemEntry(localCampaignDescription, self.OnQueryTypeChanged)
        localEntry.selectedQueryType = BGQUERY_LOCAL
        self.comboBox:AddItem(localEntry)
        if(localEntry.selectedQueryType == self.selectedQueryType) then
            self.comboBox:SetSelectedItemText(localCampaignDescription)
            selectedEntry = localEntry
        end
    end
    if(not selectedEntry) then
        self.comboBox:SetSelectedItemText(homeCampaignDescription)
        self.OnQueryTypeChanged(nil, homeCampaignDescription, homeEntry)
    end
end
--Global XML
    CAMPAIGN_SELECTOR = CampaignSelector:New(self)
end