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 |
INFAMY_METER_WIDTH = 256
INFAMY_METER_HEIGHT = 128
INFAMY_METER_KEYBOARD_BAR_OFFSET_X = 14
INFAMY_METER_KEYBOARD_BAR_OFFSET_Y = 15
INFAMY_METER_GAMEPAD_BAR_OFFSET = 10
local INFAMY_METER_UPDATE_DELAY_SECONDS = 1
-- Forces the bar to be at least 3% full, in order to make it visible even at one or two bounty
local MIN_BAR_PERCENTAGE = 0.03
local UPDATE_TYPE_TICK = 0
local UPDATE_TYPE_EVENT = 1
local INFAMY_METER_SLOW_FADE_TIME = 1400 -- in milliseconds
local INFAMY_METER_SLOW_FADE_DELAY = 600 -- in milliseconds
local INFAMY_METER_FADE_TIME = 200 -- in milliseconds
local GREY_DAGGER_ICON = "EsoUI/Art/HUD/infamy_dagger-grey.dds"
local RED_DAGGER_ICON = "EsoUI/Art/HUD/infamy_dagger-red.dds"
local DAGGER_ICON_CUTOUT = "EsoUI/Art/HUD/infamy_dagger-cutout.dds"
local RED_EYE_ICON = "EsoUI/Art/HUD/trespassing_eye-red.dds"
local EYE_ICON_CUTOUT = "EsoUI/Art/HUD/trespassing_eye-cutout.dds"
return object
end
if isKOS ~= nil then
else
end
if isTrespassing ~= nil then
else
end
end
return self . infamyMeterState . infamy , self . infamyMeterState . bounty , self . infamyMeterState . isKOS , self . infamyMeterState . isTrespassing
end
-- Initialize state
{
showTooltips = true ,
customTooltip = SI_STATS_BOUNTY_LABEL ,
iconSide = RIGHT ,
}
-- Set up controls
ApplyTemplateToControl ( control , self . isInGamepadMode and "ZO_HUDInfamyMeter_GamepadTemplate" or "ZO_HUDInfamyMeter_KeyboardTemplate" )
-- Set up fade in/out animations
-- Initialize bar states and animations
self . infamyBar . easeAnimation = ANIMATION_MANAGER : CreateTimelineFromVirtual ( "ZO_HUDInfamyMeterEasing" )
self . bountyBar . easeAnimation = ANIMATION_MANAGER : CreateTimelineFromVirtual ( "ZO_HUDInfamyMeterEasing" )
-- Initialize Center Icon and its animations
self . centerIconCutoutInAnimation = ANIMATION_MANAGER : CreateTimelineFromVirtual ( "ZO_HUDInfamyMeterCenterIconCutoutIn" )
self . centerIconCutoutInAnimation : GetAnimation ( 1 ) : SetAnimatedControl ( self . centerIconAnimatingTexture )
self . centerIconCutoutInAnimation : GetAnimation ( 2 ) : SetAnimatedControl ( self . centerIconAnimatingTexture )
self . centerIconCutoutInAnimation : GetAnimation ( 3 ) : SetAnimatedControl ( self . centerIconAnimatingTexture )
self . centerIconCutoutInAnimation : GetAnimation ( 4 ) : SetAnimatedControl ( self . centerIconPersistentTexture )
self . centerIconScaleOutAnimation = ANIMATION_MANAGER : CreateTimelineFromVirtual ( "ZO_HUDInfamyMeterCenterIconScaleOut" )
self . centerIconScaleOutAnimation : GetAnimation ( 1 ) : SetAnimatedControl ( self . centerIconAnimatingTexture )
self . centerIconScaleOutAnimation : GetAnimation ( 2 ) : SetAnimatedControl ( self . centerIconAnimatingTexture )
self . centerIconScaleOutAnimation : GetAnimation ( 3 ) : SetAnimatedControl ( self . centerIconPersistentTexture )
-- Register for events
end
end )
end
end )
end
else
end
end )
end
and ( ( infamy ~= 0 and infamy ~= self . infamyMeterState . infamy ) or isTrespassing ~= self . infamyMeterState . isTrespassing )
end
end
end
if oldInfamy ~= self . infamyMeterState . infamy or updateType == UPDATE_TYPE_EVENT or gamepadModeSwitchUpdate then
-- Update frame and bars if we're switching between PC and console mode
end
-- Hide or show meter
self . fadeAnim : FadeOut ( INFAMY_METER_SLOW_FADE_DELAY , INFAMY_METER_SLOW_FADE_TIME , ZO_ALPHA_ANIMATION_OPTION_FORCE_ALPHA , function ( ) self . control : SetHidden ( true ) end )
else
end
-- Update bars
-- Update trespassing/KOS icon
-- Update label
ZO_CurrencyControl_SetSimpleCurrency ( self . bountyLabel , CURT_MONEY , GetFullBountyPayoffAmount ( ) , self . currencyOptions , CURRENCY_SHOW_ALL , true )
-- Fire center-screen announcement if we updated below a threshold
local messageParams
-- Fire CSA
if wasTrespassing then
end
else
end
elseif infamyLevel ~= oldInfamyLevel then
if oldInfamyLevel == INFAMY_THRESHOLD_FUGITIVE then
primaryMessage = zo_strformat ( SI_JUSTICE_INFAMY_LEVEL_CHANGED , GetString ( "SI_INFAMYTHRESHOLDSTYPE" , infamyLevel ) )
icon = "EsoUI/Art/Stats/infamy_KOS_icon-Notification.dds"
elseif infamyLevel == INFAMY_THRESHOLD_FUGITIVE then
icon = "EsoUI/Art/Stats/infamy_KOS_icon-Notification.dds"
else
if infamyLevel == INFAMY_THRESHOLD_DISREPUTABLE then
elseif infamyLevel == INFAMY_THRESHOLD_NOTORIOUS then
end
primaryMessage = zo_strformat ( SI_JUSTICE_INFAMY_LEVEL_CHANGED , GetString ( "SI_INFAMYTHRESHOLDSTYPE" , infamyLevel ) )
end
end
if messageParams then
end
end
end
if not wasTrespassing then
end
if wasTrespassing then
elseif not wasKOS then
end
else
if wasTrespassing or wasKOS then
end
end
end
-- Update Values
bar . startPercent = bar . endPercent
-- Manually set bar to its start percentage
-- (we do this in case the bar has become out-of-date since it was last animated, for example by being hidden or paused)
-- Start the animation
end
end
local infamyFillPercentage = zo_min ( ( progress * ( self . infamyBar . endPercent - self . infamyBar . startPercent ) ) + self . infamyBar . startPercent , 1 )
local bountyFillPercentage = zo_min ( ( progress * ( self . bountyBar . endPercent - self . bountyBar . startPercent ) ) + self . bountyBar . startPercent , 1 )
end
local NO_LEADING_EDGE = false
bar : StartFixedCooldown ( percentFilled , CD_TYPE_RADIAL , CD_TIME_TYPE_TIME_REMAINING , NO_LEADING_EDGE ) -- CD_TIME_TYPE_TIME_REMAINING causes clockwise scroll
end
if hidden then
self . fadeAnim : FadeOut ( 0 , INFAMY_METER_FADE_TIME , ZO_ALPHA_ANIMATION_OPTION_USE_CURRENT_ALPHA , function ( ) self . control : SetHidden ( true ) end , ZO_ALPHA_ANIMATION_OPTION_USE_CURRENT_SHOWN )
end
end
end
end
end
if HUD_INFAMY_METER then
end
end |