Back to Home

ESO Lua File v101041

libraries/globals/globalvars.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
-- TODO: Window and Animation managers could arguably be exposed as global functions
WINDOW_MANAGER = GetWindowManager()     
ANIMATION_MANAGER = GetAnimationManager()
EVENT_MANAGER = GetEventManager()
ESO_Dialogs = {}
    return WINDOW_MANAGER:CreateTopLevelWindow(name)
end
function CreateControl(name, parent, controlType)
    return WINDOW_MANAGER:CreateControl(name, parent, controlType)
end
function CreateControlFromVirtual(name, parent, templateName, optionalNameSuffix)
    return WINDOW_MANAGER:CreateControlFromVirtual(name, parent, templateName, optionalNameSuffix)
end
function ApplyTemplateToControl(control, templateName)
    WINDOW_MANAGER:ApplyTemplateToControl(control, templateName)
end
function CreateControlRangeFromVirtual(name, parent, templateName, rangeMinSuffix, rangeMaxSuffix)
    for i = rangeMinSuffix, rangeMaxSuffix do
        CreateControlFromVirtual(name, parent, templateName, i)
    end
end
function GetUIMousePosition()
    return WINDOW_MANAGER:GetUIMousePosition()
end
--
-- GetControl now calls into C++ to avoid memory allocations resulting from string concatenation.
-- Previously this would do a lookup like: _G[controlName..suffix]. The problem is this function is
-- called a LOT of times, so that would end up doing tons of very small allocations.
-- To get around this problem we just pay the price of a Lua -> C++ call where we can sprintf to a temp
-- symbol and find the control without allocating memory.
--
function GetControl(name, suffix)    
    if(type(name) == "string") then
        if(suffix) then
            return WINDOW_MANAGER:GetControlByName(name, tostring(suffix))
        end
        
        return _G[name]
    -- "name" must be an actual Control object and "suffix" is a string. Otherwise this function wouldn't need to be called
    elseif(suffix) then
        return name:GetNamedChild(suffix)
    end
end
-- Function that simplifies the creation of a timeline that is required for all animations
function CreateSimpleAnimation(animationType, controlToAnimate, delay)
    local timeline = ANIMATION_MANAGER:CreateTimeline()
    local animation = timeline:InsertAnimation(animationType, controlToAnimate, delay)
    return animation, timeline
end