File choir.lua changed (mode: 100644) (index a766c1e..a28775e) |
... |
... |
local function getButtonBindingKeyDefault(buttonNumber) |
479 |
479 |
return key |
return key |
480 |
480 |
end |
end |
481 |
481 |
|
|
482 |
|
local function createUnitButtonSpellShortcut(unitButton, key) |
|
483 |
|
assert (unitButton ~= nil) |
|
|
482 |
|
local function getShortcutBindingKeySuggestion(buttonNumber, spellNumber) |
|
483 |
|
assert (buttonNumber ~= nil) |
|
484 |
|
assert (buttonNumber >= 1 and buttonNumber <= 5) |
484 |
485 |
|
|
485 |
|
--[[ FIXME Add shortcuts for all classes and use cases ]]-- |
|
486 |
|
--[[createSpellShortcut(unitButton, unitButton:GetName() .. 'CureDiseaseButton', 'Cure Disease')]]-- |
|
487 |
|
--[[createSpellShortcut(unitButton, unitButton:GetName() .. 'LesserHealButton', 'Lesser Heal')]]-- |
|
|
486 |
|
assert (spellNumber ~= nil) |
|
487 |
|
assert (spellNumber >= 1 and spellNumber <= 5) |
488 |
488 |
|
|
|
489 |
|
local map = { |
|
490 |
|
{'Q', 'ALT-Q', 'ALT-A', 'SHIFT-A', '1',}, |
|
491 |
|
{'W', 'ALT-W', 'ALT-S', 'SHIFT-S', '2',}, |
|
492 |
|
{'E', 'ALT-E', 'ALT-D', 'SHIFT-D', '3',}, |
|
493 |
|
{'R', 'ALT-R', 'ALT-F', 'SHIFT-F', '4',}, |
|
494 |
|
{'T', 'ALT-T', 'ALT-G', 'SHIFT-G', '5',}, |
|
495 |
|
} |
489 |
496 |
|
|
490 |
|
local shortcut |
|
|
497 |
|
local bindingList = map[buttonNumber] |
491 |
498 |
|
|
492 |
|
key = key or unitButton:GetAttribute('choirBindingKey') |
|
|
499 |
|
return bindingList[spellNumber] |
|
500 |
|
end |
493 |
501 |
|
|
494 |
|
shortcut = createSpellShortcut(unitButton, unitButton:GetName() .. 'AbolishDiseaseButton', 'Abolish Disease') |
|
495 |
|
shortcut:SetAttribute('choirBindingKey', 'ALT-' .. key) |
|
|
502 |
|
local function createUnitButtonSpellShortcut(unitButton, buttonNumber) |
|
503 |
|
assert (unitButton ~= nil) |
496 |
504 |
|
|
497 |
|
shortcut = createSpellShortcut(unitButton, unitButton:GetName() .. 'DispelMagicButton', 'Dispel Magic') |
|
498 |
|
shortcut:SetAttribute('choirBindingKey', 'CTRL-' .. key) |
|
|
505 |
|
--[[ FIXME Add shortcuts for all classes and use cases ]]-- |
|
506 |
|
local spellSet = { |
|
507 |
|
'Dispel Magic', |
|
508 |
|
'Abolish Disease', |
|
509 |
|
'Renew', |
|
510 |
|
'Power Word: Shield', |
|
511 |
|
'Flash Heal', |
|
512 |
|
} |
499 |
513 |
|
|
500 |
|
shortcut = createSpellShortcut(unitButton, unitButton:GetName() .. 'FlashHealButton', 'Flash Heal') |
|
501 |
|
shortcut:SetAttribute('choirBindingKey', 'SHIFT-' .. key) |
|
|
514 |
|
local spellNumber = 0 |
|
515 |
|
while (spellNumber < #spellSet) do |
|
516 |
|
spellNumber = spellNumber + 1 |
502 |
517 |
|
|
503 |
|
shortcut = createSpellShortcut(unitButton, unitButton:GetName() .. 'PowerWordShieldButton', 'Power Word: Shield') |
|
504 |
|
shortcut:SetAttribute('choirBindingKey', 'CTRL-SHIFT-' .. key) |
|
|
518 |
|
local n = unitButton:GetName() .. 'Shortcut' .. tostring(spellNumber) |
|
519 |
|
local spellName = spellSet[spellNumber] |
|
520 |
|
local b = createSpellShortcut(unitButton, n, spellName) |
|
521 |
|
|
|
522 |
|
local key = getShortcutBindingKeySuggestion(buttonNumber, spellNumber) |
|
523 |
|
b:SetAttribute('choirBindingKey', key) |
|
524 |
|
end |
505 |
525 |
end |
end |
506 |
526 |
|
|
507 |
527 |
local function createGroup(rootFrame, groupNumber, unitTable) |
local function createGroup(rootFrame, groupNumber, unitTable) |
|
... |
... |
local function createGroup(rootFrame, groupNumber, unitTable) |
558 |
578 |
|
|
559 |
579 |
_G['BINDING_NAME_CLICK ' .. b:GetName() .. ':LeftButton'] = 'Unit ' .. tostring(i) |
_G['BINDING_NAME_CLICK ' .. b:GetName() .. ':LeftButton'] = 'Unit ' .. tostring(i) |
560 |
580 |
|
|
561 |
|
createUnitButtonSpellShortcut(b, key) |
|
|
581 |
|
createUnitButtonSpellShortcut(b, i) |
562 |
582 |
end |
end |
563 |
583 |
spoiler:SetSize(marginLeft, 144) |
spoiler:SetSize(marginLeft, 144) |
564 |
584 |
spoiler:SetPoint('CENTER', 0, 12 * 6) |
spoiler:SetPoint('CENTER', 0, 12 * 6) |