Added niave toggling of visibility of target based on target type
This commit is contained in:
parent
2df0795b56
commit
fe61d63f26
@ -30,10 +30,15 @@ objectdef SettingsController
|
|||||||
variable jsonvalue abilityItem = "{}"
|
variable jsonvalue abilityItem = "{}"
|
||||||
if ${jo.Get["${key}"].Get[1, "spellBookType"]} < 2
|
if ${jo.Get["${key}"].Get[1, "spellBookType"]} < 2
|
||||||
{
|
{
|
||||||
abilityItem:SetValue[$$>{
|
abilityItem:SetValue["$$>{
|
||||||
"Name": "${key~}"
|
"Name": "${key~}",
|
||||||
}<$$]
|
"TargetType": ${jo.Get["${key}"].Get[1, "targetType"]},
|
||||||
abilityListItems:Add[${abilityItem}]
|
"IsBeneficial": ${jo.Get["${key}"].Get[1, "isBeneficial"]},
|
||||||
|
"GroupRestricted": ${jo.Get["${key}"].Get[1, "groupRestricted"]},
|
||||||
|
"MaxAoeTargets": ${jo.Get["${key}"].Get[1, "maxAoeTargets"]}
|
||||||
|
|
||||||
|
}<$$"]
|
||||||
|
abilityListItems:Add["${abilityItem.AsJSON}"]
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
@ -47,8 +52,25 @@ objectdef SettingsController
|
|||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
method ToggleTargetVisibilityBySelectedAbility(int selectedAbilityIndex)
|
||||||
|
{
|
||||||
|
if ${abilityListItems.Get[${selectedAbilityIndex}, "TargetType"]} != 1
|
||||||
|
{
|
||||||
|
echo "Hide target: ${abilityListItems.Get[${selectedAbilityIndex}, "TargetType"]}"
|
||||||
|
LGUI2.Element["castStack.ability.target"].Parent:SetVisibility[Hidden]
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
echo "Show target: ${abilityListItems.Get[${selectedAbilityIndex}, "TargetType"]}"
|
||||||
|
LGUI2.Element["castStack.ability.target"].Parent:SetVisibility[Visible]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
method SetCurrentAbility(int selectedIndex)
|
method SetCurrentAbility(int selectedIndex)
|
||||||
{
|
{
|
||||||
|
|
||||||
|
This:ToggleTargetVisibilityBySelectedAbility[${selectedIndex}]
|
||||||
|
|
||||||
currentSelectedAvailableAbilityIndex:Set[${selectedIndex}]
|
currentSelectedAvailableAbilityIndex:Set[${selectedIndex}]
|
||||||
LGUI2.Element[MRSettingsController.events]:FireEventHandler[onNewCastStackItemChanged]
|
LGUI2.Element[MRSettingsController.events]:FireEventHandler[onNewCastStackItemChanged]
|
||||||
newCastStackItem:SetValue["$$>{
|
newCastStackItem:SetValue["$$>{
|
||||||
@ -59,16 +81,11 @@ objectdef SettingsController
|
|||||||
|
|
||||||
method OnCastStackAbilityComboChange(string param)
|
method OnCastStackAbilityComboChange(string param)
|
||||||
{
|
{
|
||||||
echo "param: ${param}"
|
This:SafeSetNewCastStackItemProperty["${Context.Source.Name.Token[3, "."]}", "${Context.Source.SelectedItem.Data.AsJSON~}"]
|
||||||
echo "OnCastStackAbilityComboChange: ${Context.AsJSON~}"
|
|
||||||
newCastStackItem:Set["${Context.Source.Name.Token[3, "."]}", "${Context.Source.SelectedItem.Data.AsJSON~}"]
|
|
||||||
echo "${Context.Source.Name.Token[3, "."]} = ${Context.Source.SelectedItem.Data}"
|
|
||||||
echo "newCastStackItem: ${newCastStackItem.AsJSON[multiline]~}"
|
|
||||||
}
|
}
|
||||||
|
|
||||||
method SafeSetNewCastStackItemProperty(string propertyName, string value)
|
method SafeSetNewCastStackItemProperty(string propertyName, string value)
|
||||||
{
|
{
|
||||||
echo "SafeSetNewCastStackItemProperty: ${propertyName} = ${value}"
|
|
||||||
if ${value(exists)} && ${value.NotEqual[""]}
|
if ${value(exists)} && ${value.NotEqual[""]}
|
||||||
{
|
{
|
||||||
newCastStackItem:Set["${propertyName}", "${value}"]
|
newCastStackItem:Set["${propertyName}", "${value}"]
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user