Back to Home

ESO Lua File v100024

libraries/zo_scene/zo_scenefragment.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
ZO_SceneFragment = ZO_CallbackObject:Subclass()
SCENE_FRAGMENT_SHOWN = "shown"
SCENE_FRAGMENT_HIDDEN = "hidden"
SCENE_FRAGMENT_SHOWING = "showing"
SCENE_FRAGMENT_HIDING = "hiding"
function ZO_SceneFragment:New(...)
    local fragment = ZO_CallbackObject.New(self)
    fragment:Initialize(...)
    return fragment
end
function ZO_SceneFragment:Initialize()
    self.state = SCENE_FRAGMENT_HIDDEN
    self.allowShowHideTimeUpdates = false
end
function ZO_SceneFragment:SetSceneManager(sceneManager)
    self.sceneManager = sceneManager
end
function ZO_SceneFragment:GetCategory()
    return self.category
end
function ZO_SceneFragment:SetCategory(category)
    self.category = category
end
--Force Refresh causes a fragment to hide and show again even if it is part of the next scene.
function ZO_SceneFragment:GetForceRefresh()
    return self.forceRefresh
end
function ZO_SceneFragment:SetForceRefresh(forceRefresh)
    self.forceRefresh = forceRefresh
end
function ZO_SceneFragment:AddDependency(fragment)
    if(not self.dependencies) then
        self.dependencies = {}
    end
    self.dependencies[fragment] = true
end
function ZO_SceneFragment:AddDependencies(...)
    for i = 1, select("#", ...) do
        self:AddDependency(select(i, ...))
    end
end
function ZO_SceneFragment:IsDependentOn(fragment)
    if(self.dependencies) then
        return self.dependencies[fragment] == true
    end
    return false
end
function ZO_SceneFragment:HasDependencies()
    return self.dependencies ~= nil
end
function ZO_SceneFragment:GetHideOnSceneHidden()
    return self.hideOnSceneHidden
end
function ZO_SceneFragment:SetHideOnSceneHidden(hideOnSceneHidden)
    self.hideOnSceneHidden = hideOnSceneHidden
end
--Show and Hide will be called by the scene management system. They should not be called directly by code.
function ZO_SceneFragment:Show()
    self:OnShown()
end
function ZO_SceneFragment:Hide()
    self:OnHidden()
end
function ZO_SceneFragment:GetState()
    return self.state
end
function ZO_SceneFragment:IsShowing()
    return self.state == SCENE_FRAGMENT_SHOWING or self.state == SCENE_FRAGMENT_SHOWN
end
function ZO_SceneFragment:IsHidden()
    return self.state == SCENE_FRAGMENT_HIDDEN
end
function ZO_SceneFragment:SetConditional(conditional)
end
function ZO_SceneFragment:HasConditional()
    return self.conditional ~= nil
end
--If true, Show and Hide will be called even if the fragment is already in the Showing or Hiding state.
function ZO_SceneFragment:SetAllowShowHideTimeUpdates(allow)
    self.allowShowHideTimeUpdates = allow
end
function ZO_SceneFragment:SetState(newState)
    if(newState ~= self.state) then
        local oldState = self.state
        self.state = newState
        self:FireCallbacks("StateChange", oldState, newState)
        local currentScene = self.sceneManager:GetCurrentScene()
        if(currentScene) then
            currentScene:OnSceneFragmentStateChange(self, oldState, newState)
        end
    end
end
function ZO_SceneFragment:OnShown()
    self:SetState(SCENE_FRAGMENT_SHOWN)
end
function ZO_SceneFragment:OnHidden()
    self:SetState(SCENE_FRAGMENT_HIDDEN)
end
function ZO_SceneFragment:ShouldBeShown(customShowParam)
    if(self.state ~= SCENE_FRAGMENT_SHOWN and (self.allowShowHideTimeUpdates == true or self.state ~= SCENE_FRAGMENT_SHOWING)) then
        self:SetState(SCENE_FRAGMENT_SHOWING)
        self:Show(customShowParam)
    end
end
function ZO_SceneFragment:ShouldBeHidden(customHideParam)
    if(self.state ~= SCENE_FRAGMENT_HIDDEN and (self.allowShowHideTimeUpdates == true or self.state ~= SCENE_FRAGMENT_HIDING)) then
        self:SetState(SCENE_FRAGMENT_HIDING)
        if(not self.hideOnSceneHidden) then
            self:Hide(customHideParam)
        end
    end
end
function ZO_SceneFragment:ComputeIfFragmentShouldShow()
    if self.sceneManager then
        local currentScene = self.sceneManager:GetCurrentScene()
        local nextScene = self.sceneManager:GetNextScene()
        if currentScene and currentScene:HasFragment(self) then
            if self.conditional == nil or self.conditional() then
                local currentSceneState = currentScene:GetState()
                if nextScene then
                    if currentSceneState == SCENE_HIDING or currentSceneState == SCENE_HIDDEN then
                        if nextScene:HasFragment(self) then
                            if self.forceRefresh then
                                -- always hide on a force refresh
                                return false
                            elseif self:HasDependencies() then
                                for dependencyFragment in pairs(self.dependencies) do
                                    local currentHasDependency = currentScene:HasFragment(dependencyFragment)
                                    local nextHasDependency = nextScene:HasFragment(dependencyFragment)
                                    if currentHasDependency ~= nextHasDependency then
                                        return false
                                    end
                                end
                                return true
                            else
                                -- next scene has this fragment so we should show
                                return true
                            end
                        else
                            -- next scene does not have this fragment, so we should hide
                            return false
                        end
                    end
                else
                    if currentSceneState == SCENE_SHOWING or currentSceneState == SCENE_SHOWN then
                        return true
                    end
                end
            else
                -- the fragment failed its conditional, so we shouldn't show
                return false
            end
        else
            -- Either we have no current scene or the current scene doesn't have this fragment, we shouldn't be showing
            return false
        end
    end
    return false
end
function ZO_SceneFragment:Refresh(customShowParam, customHideParam, asAResultOfSceneStateChange, refreshedForScene)
    local oldState = self.state
    if self:ComputeIfFragmentShouldShow() then
        self:ShouldBeShown(customShowParam)
    else
        self:ShouldBeHidden(customHideParam)
    end
    self:FireCallbacks("Refreshed", oldState, self.state, asAResultOfSceneStateChange, refreshedForScene)
end