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 |
local DEFAULT_DISPLAYED_QUEST_INDEX = 1
return object
end
self . questConditionControlPool = ZO_ControlPool : New ( "ZO_Gamepad_ActiveWritCondition" , self . questContainer )
end )
if newState == SCENE_FRAGMENT_SHOWN then
elseif newState == SCENE_FRAGMENT_HIDDEN then
end
end )
end )
CRAFT_ADVISOR_MANAGER : RegisterCallback ( "SelectedQuestConditionsUpdated" , function ( ) self : RefreshQuestList ( ) end )
--The alchemy info updates later than everything else, so we need to do another refresh once it's ready
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.
ethereal = true ,
enabled = function ( ) return not ZO_CraftingUtils_IsPerformingCraftProcess ( ) and self . questMasterList and # self . questMasterList > 1 end ,
} ,
}
local cycleQuestsDescriptor =
{
end ,
}
end
--If we go beyond the number of quests we can cycle between, go back to the first one
end
CRAFT_ADVISOR_MANAGER : OnSelectionChanged ( self . questMasterList [ self . currentlyDisplayedQuestIndex ] . questIndex )
end
end
if currentQuest then
--We need to do this to prevent the filters and displayed quest getting out of sync in certain cases when switching between gamepad and keyboard
end
--If there are active writs, we need to tell the crafting alerts to adjust the maximum height to prevent any overlap with the bottom bar
end
end
--Reset the max height for the crafting alerts to its original value
end
if questInfo then
local _ , _ , _ , _ , conditionCount = GetJournalQuestStepInfo ( questInfo . questIndex , QUEST_MAIN_STEP_INDEX )
local previousControl = nil
local conditionInfoIndex = 1
--Add the conditions
for conditionIndex = 1 , conditionCount do
local conditionText , curCount , maxCount , isFailCondition , isComplete , _ , isVisible , conditionType = GetJournalQuestConditionInfo ( questInfo . questIndex , QUEST_MAIN_STEP_INDEX , conditionIndex )
control : SetColor ( GetInterfaceColor ( INTERFACE_COLOR_TYPE_TEXT_COLORS , INTERFACE_TEXT_COLOR_SELECTED ) )
--Determine if we need to anchor to the header or to a previous condition
if previousControl ~= nil then
else
end
--Check if we need to add an error message underneath this condition
if questInfo . conditionData [ conditionInfoIndex ] and questInfo . conditionData [ conditionInfoIndex ] . conditionIndex == conditionIndex then
local missingMessage = CRAFT_ADVISOR_MANAGER : GetMissingMessage ( questInfo . conditionData [ conditionInfoIndex ] , curCount , maxCount )
if missingMessage then
previousControl = missingControl
end
conditionInfoIndex = conditionInfoIndex + 1
end
end
end
end
end
else
end
else
end
end
end
end
end
end
do
end
end |