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 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 |
local SETUP_MODE_NONE = 0
local SETUP_MODE_NEW = 1
local SETUP_MODE_LINK = 2
local MINIMUM_AGE = 13 -- TODO: We should fetch this from the client instead...
end
-- Create Account controls
-- Link Account controls
self . mode = SETUP_MODE_NONE
EVENT_MANAGER : RegisterForEvent ( "CreateLinkAccount" , EVENT_SCREEN_RESIZED , function ( ) self : ResizeControls ( ) end )
end
self . capsLockWarning : RegisterForEvent ( EVENT_CAPS_LOCK_STATE_CHANGED , function ( eventCode , capsLockIsOn ) UpdateForCaps ( capsLockIsOn ) end )
self . control : RegisterForEvent ( EVENT_COUNTRY_DATA_LOADED , function ( ) self : PopulateCountryDropdown ( ) end )
end
end
end
if not self . hasPopulatedCountryDropdown then
for i = 1 , numCountries do
local entry = ZO_ComboBox : CreateItemEntry ( countryName , function ( ... ) self : OnCountrySelected ( ... ) end )
entry . index = i
entry . countryName = countryName
entry . countryCode = countryCode
entry . megaServer = megaServer
end
if numCountries == 1 then
-- If there's only one choice, select that country immediately and disable the dropdown
end
self . hasPopulatedCountryDropdown = true
end
end
self . selectedCountry = entry
end
if mode ~= self . mode then
if mode == SETUP_MODE_NEW then
elseif mode == SETUP_MODE_LINK then
end
end
end
self . mode = newMode
end
return self . accountNameValid
end
return self . emailEntryEdit : GetText ( ) ~= "" and ZO_CheckButton_IsChecked ( self . ageCheckbox ) and self . selectedCountry ~= nil and self : IsRequestedAccountNameValid ( )
end
end
local country = self . selectedCountry . countryCode
LOGIN_MANAGER_KEYBOARD : AttemptCreateAccount ( email , ageValid , emailSignup , country , requestedAccountName )
end
end
local dialogData = {
}
end
end
end
end
return self . accountNameEdit
end
return self . passwordEdit
end
return self . accountNameEntryEdit
end
return self . emailEntryEdit
end
-- To ensure a consistent layout, hide the age checkbox first if necessary
-- We don't need age verification, so check and remove the age checkbox
end
-- Email subscription isn't allowed on the client, so remove the checkbox
end
end
-- Hide the age verification checkbox and tranfer the age checkbox anchor to the subscribe checkbox
end
-- Hide the email subscription checkbox, and reanchor the Create Account button
-- use the Create Account button's current anchors, but use the subscribe checkbox's relative point
end
-- Hide the country dropdown and transfer its anchors to the email entry field
end
if not self . accountNameInstructions then
local ACCOUNT_NAME_INSTRUCTIONS_OFFSET_X = 15
local ACCOUNT_NAME_INSTRUCTIONS_OFFSET_Y = 0
self . accountNameInstructions = ZO_ValidAccountNameInstructions : New ( self . accountNameInstructionsControl )
self . accountNameInstructions : SetPreferredAnchor ( LEFT , self . accountNameEntryEdit , RIGHT , ACCOUNT_NAME_INSTRUCTIONS_OFFSET_X , ACCOUNT_NAME_INSTRUCTIONS_OFFSET_Y )
end
end
self . accountNameValid = # accountNameViolations == 0
if self . accountNameValid then
else
end
end
end
-- XML Handlers --
end
end
end
end
end
end
end
end
end
end
end
end
end
-- Assumes that the check button is the parent of the label
end
end
end |