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 |
if pressed then
return BSTATE_PRESSED
else
return BSTATE_DISABLED_PRESSED
end
else
return BSTATE_NORMAL
else
return BSTATE_DISABLED
end
end
end
--Normal mode button
local normalButtonPressed = not isVeteranDifficulty
local normalButtonEnabled = true
local normalButtonLocked = normalButtonPressed --enforce a button always being selected by locking down the pressed one
--Veteran mode button
local veteranButtonPressed = isVeteranDifficulty
local veteranButtonEnabled = isChampion
local veteranButtonLocked = veteranButtonPressed --enforce a button always being selected by locking down the pressed one
else
end
end
if isVeteranDifficulty == nil then
end
end
if ( unitTag == nil or unitTag == "player" ) then
end
end
-- NOTE: There appears to be a bug in the event manager code that is preventing the same function to be registered from the same control for different events...
-- until that's fixed, split up the handlers.
end
end
end
end
end
end
end
end
end
end
end
end
end
-- Pre-emptive update based on mostly current state, and the desired difficulty setting.
end
local r , g , b
local SET_TO_FULL_SIZE = true
if not difficultyContainer . hasControlOfDifficulty then
else
end
InformationTooltip : AddLine ( GetString ( "SI_GROUPDIFFICULTYCHANGEREASON" , difficultyContainer . difficultyControlReason ) , "" , r , g , b , TOPLEFT , MODIFY_TEXT_TYPE_NONE , TEXT_ALIGN_LEFT , SET_TO_FULL_SIZE )
InformationTooltip : AddLine ( GetString ( SI_DUNGEON_DIFFICULTY_HELP_TOOLTIP ) , "" , r , g , b , TOPLEFT , MODIFY_TEXT_TYPE_NONE , TEXT_ALIGN_LEFT , SET_TO_FULL_SIZE )
end
end |