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 |
local COMPLETE_ACTIVITY_ALPHA = 0.4
local INCOMPLETE_ACTIVITY_ALPHA = 1
if timeRemainingString ~= "" then
self . expirationHeader : SetText ( zo_strformat ( SI_TIMED_ACTIVITIES_ACTIVITY_EXPIRATION_HEADER , ZO_SELECTED_TEXT : Colorize ( timeRemainingString ) ) )
else
end
local numActivitiesCompleted , activityLimit = TIMED_ACTIVITIES_MANAGER : GetTimedActivityTypeLimitInfo ( currentActivityType )
self . limitHeader : SetText ( zo_strformat ( SI_TIMED_ACTIVITIES_ACTIVITY_LIMIT_HEADER , numActivitiesCompleted , activityLimit ) )
end
if anchorTo then
else
end
if maxProgress < 1 or progress >= maxProgress then
progressPercent = 1
else
progressPercent = progress / maxProgress
end
if progressPercent < 1 then
local progressString = zo_strformat ( SI_TIMED_ACTIVITIES_ACTIVITY_COMPLETION_VALUES , progress , maxProgress )
else
end
local CURRENCY_FORMAT_OPTIONS =
{
showCap = false ,
useShortFormat = true ,
}
local nextRewardAnchorTo = nil
if nextRewardAnchorTo then
else
end
nextRewardAnchorTo = activityReward
activityReward . rewardData = rewardData
end
end
-----
-- ZO_TimedActivities_Shared
-----
self . activityRowPool = ZO_ControlPool : New ( "ZO_TimedActivityRow_Keyboard" , self . activitiesScrollChild , "ActivityRow" )
self . activityRewardPool = ZO_ControlPool : New ( "ZO_TimedActivityReward_Keyboard" , self . activitiesScrollChild , "ActivityReward" )
end
end
end
local CATEGORY_PRIORITY = ZO_ACTIVITY_FINDER_SORT_PRIORITY . TIMED_ACTIVITIES
local timedActivitiesCategoryData =
{
priority = CATEGORY_PRIORITY ,
normalIcon = "EsoUI/Art/LFG/LFG_indexIcon_timedActivities_up.dds" ,
pressedIcon = "EsoUI/Art/LFG/LFG_indexIcon_timedActivities_down.dds" ,
mouseoverIcon = "EsoUI/Art/LFG/LFG_indexIcon_timedActivities_over.dds" ,
children =
{
{
priority = CATEGORY_PRIORITY + 10 ,
} ,
{
priority = CATEGORY_PRIORITY + 20 ,
} ,
} ,
}
end
local activityTypeFilters
if currentActivityType == TIMED_ACTIVITY_TYPE_DAILY then
elseif currentActivityType == TIMED_ACTIVITY_TYPE_WEEKLY then
end
end
end
end
if not isAvailable then
end
end
end
EVENT_MANAGER : RegisterForUpdate ( "ZO_TimedActivities_Keyboard.RefreshCurrentActivityInfo" , 1000 , function ( )
end )
end
-----
-- Global XML
-----
end
end |