mirror of
https://github.com/cemu-project/DS4Windows.git
synced 2024-11-26 02:54:20 +01:00
Fixed saving of "Repeat While Held" macro setting
Related to issue #1092
This commit is contained in:
parent
8203a0dfe1
commit
c0788ab98d
@ -78,6 +78,8 @@ namespace DS4WinWPF.DS4Forms.ViewModels
|
|||||||
case DS4ControlSettings.ActionType.Macro:
|
case DS4ControlSettings.ActionType.Macro:
|
||||||
currentOutBind.outputType = OutBinding.OutType.Macro;
|
currentOutBind.outputType = OutBinding.OutType.Macro;
|
||||||
currentOutBind.macro = (int[])setting.action;
|
currentOutBind.macro = (int[])setting.action;
|
||||||
|
currentOutBind.macroType = settings.keyType;
|
||||||
|
currentOutBind.hasScanCode = sc;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -114,6 +116,8 @@ namespace DS4WinWPF.DS4Forms.ViewModels
|
|||||||
case DS4ControlSettings.ActionType.Macro:
|
case DS4ControlSettings.ActionType.Macro:
|
||||||
shiftOutBind.outputType = OutBinding.OutType.Macro;
|
shiftOutBind.outputType = OutBinding.OutType.Macro;
|
||||||
shiftOutBind.macro = (int[])setting.shiftAction;
|
shiftOutBind.macro = (int[])setting.shiftAction;
|
||||||
|
shiftOutBind.macroType = setting.shiftKeyType;
|
||||||
|
shiftOutBind.hasScanCode = sc;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -204,6 +208,7 @@ namespace DS4WinWPF.DS4Forms.ViewModels
|
|||||||
public OutType outputType;
|
public OutType outputType;
|
||||||
public int outkey;
|
public int outkey;
|
||||||
public int[] macro;
|
public int[] macro;
|
||||||
|
public DS4KeyType macroType;
|
||||||
public X360Controls control;
|
public X360Controls control;
|
||||||
public bool shiftBind;
|
public bool shiftBind;
|
||||||
public int shiftTrigger;
|
public int shiftTrigger;
|
||||||
@ -576,7 +581,19 @@ namespace DS4WinWPF.DS4Forms.ViewModels
|
|||||||
{
|
{
|
||||||
settings.action = macro;
|
settings.action = macro;
|
||||||
settings.actionType = DS4ControlSettings.ActionType.Macro;
|
settings.actionType = DS4ControlSettings.ActionType.Macro;
|
||||||
settings.keyType |= DS4KeyType.Macro;
|
if (macroType.HasFlag(DS4KeyType.HoldMacro))
|
||||||
|
{
|
||||||
|
settings.keyType |= DS4KeyType.HoldMacro;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
settings.keyType |= DS4KeyType.Macro;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (hasScanCode)
|
||||||
|
{
|
||||||
|
settings.keyType |= DS4KeyType.ScanCode;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (IsUsingExtras())
|
if (IsUsingExtras())
|
||||||
@ -625,7 +642,20 @@ namespace DS4WinWPF.DS4Forms.ViewModels
|
|||||||
{
|
{
|
||||||
settings.shiftAction = macro;
|
settings.shiftAction = macro;
|
||||||
settings.shiftActionType = DS4ControlSettings.ActionType.Macro;
|
settings.shiftActionType = DS4ControlSettings.ActionType.Macro;
|
||||||
settings.shiftKeyType |= DS4KeyType.Macro;
|
|
||||||
|
if (macroType.HasFlag(DS4KeyType.HoldMacro))
|
||||||
|
{
|
||||||
|
settings.keyType |= DS4KeyType.HoldMacro;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
settings.keyType |= DS4KeyType.Macro;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (hasScanCode)
|
||||||
|
{
|
||||||
|
settings.shiftKeyType |= DS4KeyType.ScanCode;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (IsUsingExtras())
|
if (IsUsingExtras())
|
||||||
|
Loading…
Reference in New Issue
Block a user