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 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 |
KEYBIND_STRIP = nil
end
end
ZO_KEYBIND_STRIP_KEYBOARD_VISUAL_HEIGHT = 85
KEYBIND_STRIP_STANDARD_STYLE = {
nameFont = "ZoFontKeybindStripDescription" ,
nameFontColor = ZO_NORMAL_TEXT ,
keyFont = "ZoFontKeybindStripKey" ,
modifyTextType = MODIFY_TEXT_TYPE_NONE ,
alwaysPreferGamepadMode = false ,
resizeToFitPadding = 40 ,
leftAnchorOffset = 10 ,
centerAnchorOffset = 0 ,
rightAnchorOffset = - 10 ,
drawTier = DT_MEDIUM ,
drawLevel = 1 ,
backgroundDrawTier = DT_MEDIUM ,
backgroundDrawLevel = 0 ,
}
--Same as the standard keyboard setup but on a higher tier to show over the champion screen
KEYBIND_STRIP_CHAMPION_KEYBOARD_STYLE . drawTier = DT_HIGH
KEYBIND_STRIP_CHAMPION_KEYBOARD_STYLE . drawLevel = ZO_HIGH_TIER_GAMEPAD_KEYBIND_STRIP
KEYBIND_STRIP_CHAMPION_KEYBOARD_STYLE . backgroundDrawTier = DT_HIGH
KEYBIND_STRIP_CHAMPION_KEYBOARD_STYLE . backgroundDrawLevel = ZO_HIGH_TIER_GAMEPAD_KEYBIND_STRIP_BG
ZO_KEYBIND_STRIP_GAMEPAD_VISUAL_HEIGHT = 125
KEYBIND_STRIP_GAMEPAD_STYLE = {
nameFont = "ZoFontGamepad34" ,
nameFontColor = ZO_SELECTED_TEXT ,
keyFont = "ZoFontGamepad22" ,
modifyTextType = MODIFY_TEXT_TYPE_UPPERCASE ,
alwaysPreferGamepadMode = true ,
resizeToFitPadding = 15 ,
leftAnchorOffset = 96 ,
centerAnchorOffset = 0 ,
rightAnchorOffset = - 96 ,
yAnchorOffset = - 53 ,
drawTier = DT_HIGH ,
drawLevel = ZO_HIGH_TIER_GAMEPAD_KEYBIND_STRIP ,
backgroundDrawTier = DT_HIGH ,
backgroundDrawLevel = ZO_HIGH_TIER_GAMEPAD_KEYBIND_STRIP_BG ,
}
KEYBIND_STRIP_WITH_GENERIC_FOOTER_GAMEPAD_STYLE . rightAnchorRelativeToControl = GAMEPAD_GENERIC_FOOTER : GetChildControl ( ZO_GAMEPAD_FOOTER_CONTROLS . DATA3HEADER )
KEYBIND_STRIP_WITH_GENERIC_FOOTER_GAMEPAD_STYLE . rightAnchorRelativePoint = LEFT
KEYBIND_STRIP_WITH_GENERIC_FOOTER_GAMEPAD_STYLE . rightAnchorOffset = - 24
KEYBIND_STRIP = ZO_KeybindStrip : New ( control , "ZO_KeybindStripButtonTemplate" , KEYBIND_STRIP_STANDARD_STYLE )
local defaultExit = {
end ,
}
local defaultGamepadExit = {
ethereal = true ,
end ,
--Ethereal binds show no text, the name field is used to help identify the keybind when debugging. This text does not have to be localized.
}
if state then
return state . allowDefaultExit
else
return self . allowDefaultExit
end
end
if state then
state . allowDefaultExit = false
else
self . allowDefaultExit = false
end
end
if state then
state . allowDefaultExit = true
else
self . allowDefaultExit = true
end
end
if styleInfo . alwaysPreferGamepadMode then
else
end
end
end
--The KEYBIND_STRIP operates with the assumption that when a scene starts to work with the keybind strip, it will have
--the default exit on it.
return stateIndex
end
end
return {
}
end
-- This is meant to be a private method and should not be called directly outside of this class.
function KEYBIND_STRIP : GenerateGamepadStickButtonDescriptor_Internal ( text , visibleFunc , iconCallback , controlName , buttonTemplate , keybindControl )
if keybindControl == nil then
end )
styleInfo . resizeToFitPadding = 0
end
customKeybindControl = keybindControl ,
gamepadOrder = 1 ,
}
if visibleFunc then
end
end
local keybind , keybindControl = self : GenerateGamepadStickButtonDescriptor_Internal ( text , visibleFunc , GetGamepadRightStickScrollIcon ,
"$(parent)RightStickControl" , "ZO_KeybindStripRightScrollKeybind" , self . rightScrollKeybind )
if self . rightScrollKeybind == nil then
self . rightScrollKeybind = keybindControl
end
end
local keybind , keybindControl = self : GenerateGamepadStickButtonDescriptor_Internal ( text , visibleFunc , GetGamepadLeftStickSlideIcon ,
"$(parent)LeftStickSlide" , "ZO_KeybindStripLeftSlideKeybind" , self . leftSlideKeybind )
if self . leftSlideKeybind == nil then
self . leftSlideKeybind = keybindControl
end
end
local defaultGamepadBack = KEYBIND_STRIP : GenerateGamepadBackButtonDescriptor ( function ( ) SCENE_MANAGER : HideCurrentScene ( ) end )
return defaultGamepadBack
end
end )
end |