XBox controller disable / enable toggle

This commit is contained in:
Serge
2024-01-27 11:44:07 +01:00
parent b5e160bc00
commit 2987d750e3
6 changed files with 103 additions and 58 deletions

View File

@@ -510,6 +510,11 @@ namespace GHelper.Ally
} }
public static void ApplyXBoxStatus()
{
AsusHid.WriteInput(new byte[] { AsusHid.INPUT_ID, 0xD1, 0x0B, 0x01, AppConfig.Is("controller_disabled") ? (byte)0x02 : (byte)0x01 }, "Status");
}
public static void ApplyMode(ControllerMode applyMode = ControllerMode.Auto) public static void ApplyMode(ControllerMode applyMode = ControllerMode.Auto)
{ {
Task.Run(() => Task.Run(() =>
@@ -537,7 +542,7 @@ namespace GHelper.Ally
InputDispatcher.SetBacklightAuto(true); InputDispatcher.SetBacklightAuto(true);
WakeUp(); WakeUp();
AsusHid.WriteInput(new byte[] { AsusHid.INPUT_ID, 0xd1, 0x01, 0x01, (byte)_applyMode }, "Controller"); AsusHid.WriteInput(new byte[] { AsusHid.INPUT_ID, 0xD1, 0x01, 0x01, (byte)_applyMode }, "Controller");
AsusHid.WriteInput(CommandSave, null); AsusHid.WriteInput(CommandSave, null);
BindZone(BindingZone.M1M2); BindZone(BindingZone.M1M2);

111
app/Handheld.Designer.cs generated
View File

@@ -30,7 +30,6 @@
{ {
panelDeadzones = new Panel(); panelDeadzones = new Panel();
panelRight = new Panel(); panelRight = new Panel();
buttonReset = new UI.RButton();
panelRT = new Panel(); panelRT = new Panel();
pictureBox4 = new PictureBox(); pictureBox4 = new PictureBox();
trackRTMax = new TrackBar(); trackRTMax = new TrackBar();
@@ -56,6 +55,7 @@
labelLS = new Label(); labelLS = new Label();
trackLSMin = new TrackBar(); trackLSMin = new TrackBar();
labelLSTitle = new Label(); labelLSTitle = new Label();
buttonReset = new UI.RButton();
panelBindings = new Panel(); panelBindings = new Panel();
panelBinding = new Panel(); panelBinding = new Panel();
labelBinding = new Label(); labelBinding = new Label();
@@ -83,6 +83,7 @@
buttonX = new UI.RButton(); buttonX = new UI.RButton();
pictureAlly = new PictureBox(); pictureAlly = new PictureBox();
panelVibra = new Panel(); panelVibra = new Panel();
checkController = new UI.RCheckBox();
pictureBox5 = new PictureBox(); pictureBox5 = new PictureBox();
labelVibra = new Label(); labelVibra = new Label();
labelVibraTitle = new Label(); labelVibraTitle = new Label();
@@ -119,9 +120,9 @@
panelDeadzones.Controls.Add(panelRight); panelDeadzones.Controls.Add(panelRight);
panelDeadzones.Controls.Add(panelLeft); panelDeadzones.Controls.Add(panelLeft);
panelDeadzones.Dock = DockStyle.Top; panelDeadzones.Dock = DockStyle.Top;
panelDeadzones.Location = new Point(10, 10); panelDeadzones.Location = new Point(10, 527);
panelDeadzones.Name = "panelDeadzones"; panelDeadzones.Name = "panelDeadzones";
panelDeadzones.Size = new Size(1130, 258); panelDeadzones.Size = new Size(1123, 258);
panelDeadzones.TabIndex = 0; panelDeadzones.TabIndex = 0;
// //
// panelRight // panelRight
@@ -136,23 +137,6 @@
panelRight.Size = new Size(560, 258); panelRight.Size = new Size(560, 258);
panelRight.TabIndex = 48; panelRight.TabIndex = 48;
// //
// buttonReset
//
buttonReset.Activated = false;
buttonReset.Anchor = AnchorStyles.Bottom | AnchorStyles.Left;
buttonReset.BackColor = SystemColors.ControlLight;
buttonReset.BorderColor = Color.Transparent;
buttonReset.BorderRadius = 2;
buttonReset.FlatStyle = FlatStyle.Flat;
buttonReset.Location = new Point(870, 41);
buttonReset.Margin = new Padding(4, 2, 4, 2);
buttonReset.Name = "buttonReset";
buttonReset.Secondary = true;
buttonReset.Size = new Size(239, 50);
buttonReset.TabIndex = 55;
buttonReset.Text = "Reset Deadzones";
buttonReset.UseVisualStyleBackColor = false;
//
// panelRT // panelRT
// //
panelRT.AutoSize = true; panelRT.AutoSize = true;
@@ -172,7 +156,7 @@
// //
// pictureBox4 // pictureBox4
// //
pictureBox4.BackgroundImage = Properties.Resources.icons8_xbox_lt_32; pictureBox4.BackgroundImage = Properties.Resources.icons8_xbox_rt_32;
pictureBox4.BackgroundImageLayout = ImageLayout.Zoom; pictureBox4.BackgroundImageLayout = ImageLayout.Zoom;
pictureBox4.ErrorImage = null; pictureBox4.ErrorImage = null;
pictureBox4.InitialImage = null; pictureBox4.InitialImage = null;
@@ -483,6 +467,23 @@
labelLSTitle.TabIndex = 17; labelLSTitle.TabIndex = 17;
labelLSTitle.Text = "Left Stick Deadzones"; labelLSTitle.Text = "Left Stick Deadzones";
// //
// buttonReset
//
buttonReset.Activated = false;
buttonReset.Anchor = AnchorStyles.Bottom | AnchorStyles.Left;
buttonReset.BackColor = SystemColors.ControlLight;
buttonReset.BorderColor = Color.Transparent;
buttonReset.BorderRadius = 2;
buttonReset.FlatStyle = FlatStyle.Flat;
buttonReset.Location = new Point(944, 39);
buttonReset.Margin = new Padding(4, 2, 4, 2);
buttonReset.Name = "buttonReset";
buttonReset.Secondary = true;
buttonReset.Size = new Size(165, 50);
buttonReset.TabIndex = 55;
buttonReset.Text = "Reset";
buttonReset.UseVisualStyleBackColor = false;
//
// panelBindings // panelBindings
// //
panelBindings.Controls.Add(panelBinding); panelBindings.Controls.Add(panelBinding);
@@ -506,9 +507,9 @@
panelBindings.Controls.Add(buttonX); panelBindings.Controls.Add(buttonX);
panelBindings.Controls.Add(pictureAlly); panelBindings.Controls.Add(pictureAlly);
panelBindings.Dock = DockStyle.Top; panelBindings.Dock = DockStyle.Top;
panelBindings.Location = new Point(10, 268); panelBindings.Location = new Point(10, 10);
panelBindings.Name = "panelBindings"; panelBindings.Name = "panelBindings";
panelBindings.Size = new Size(1130, 480); panelBindings.Size = new Size(1123, 517);
panelBindings.TabIndex = 1; panelBindings.TabIndex = 1;
// //
// panelBinding // panelBinding
@@ -518,7 +519,7 @@
panelBinding.Controls.Add(labelPrimary); panelBinding.Controls.Add(labelPrimary);
panelBinding.Controls.Add(comboSecondary); panelBinding.Controls.Add(comboSecondary);
panelBinding.Controls.Add(comboPrimary); panelBinding.Controls.Add(comboPrimary);
panelBinding.Location = new Point(372, 156); panelBinding.Location = new Point(372, 174);
panelBinding.Name = "panelBinding"; panelBinding.Name = "panelBinding";
panelBinding.Size = new Size(400, 186); panelBinding.Size = new Size(400, 186);
panelBinding.TabIndex = 37; panelBinding.TabIndex = 37;
@@ -590,7 +591,7 @@
buttonView.FlatStyle = FlatStyle.Flat; buttonView.FlatStyle = FlatStyle.Flat;
buttonView.ForeColor = SystemColors.ControlText; buttonView.ForeColor = SystemColors.ControlText;
buttonView.ImageAlign = ContentAlignment.MiddleRight; buttonView.ImageAlign = ContentAlignment.MiddleRight;
buttonView.Location = new Point(175, 8); buttonView.Location = new Point(175, 26);
buttonView.Margin = new Padding(4); buttonView.Margin = new Padding(4);
buttonView.Name = "buttonView"; buttonView.Name = "buttonView";
buttonView.Secondary = true; buttonView.Secondary = true;
@@ -610,7 +611,7 @@
buttonLS.FlatStyle = FlatStyle.Flat; buttonLS.FlatStyle = FlatStyle.Flat;
buttonLS.ForeColor = SystemColors.ControlText; buttonLS.ForeColor = SystemColors.ControlText;
buttonLS.ImageAlign = ContentAlignment.MiddleRight; buttonLS.ImageAlign = ContentAlignment.MiddleRight;
buttonLS.Location = new Point(20, 385); buttonLS.Location = new Point(20, 403);
buttonLS.Margin = new Padding(4); buttonLS.Margin = new Padding(4);
buttonLS.Name = "buttonLS"; buttonLS.Name = "buttonLS";
buttonLS.Secondary = true; buttonLS.Secondary = true;
@@ -630,7 +631,7 @@
buttonLT.FlatStyle = FlatStyle.Flat; buttonLT.FlatStyle = FlatStyle.Flat;
buttonLT.ForeColor = SystemColors.ControlText; buttonLT.ForeColor = SystemColors.ControlText;
buttonLT.ImageAlign = ContentAlignment.MiddleRight; buttonLT.ImageAlign = ContentAlignment.MiddleRight;
buttonLT.Location = new Point(20, 70); buttonLT.Location = new Point(20, 88);
buttonLT.Margin = new Padding(4); buttonLT.Margin = new Padding(4);
buttonLT.Name = "buttonLT"; buttonLT.Name = "buttonLT";
buttonLT.Secondary = true; buttonLT.Secondary = true;
@@ -650,7 +651,7 @@
buttonLB.FlatStyle = FlatStyle.Flat; buttonLB.FlatStyle = FlatStyle.Flat;
buttonLB.ForeColor = SystemColors.ControlText; buttonLB.ForeColor = SystemColors.ControlText;
buttonLB.ImageAlign = ContentAlignment.MiddleRight; buttonLB.ImageAlign = ContentAlignment.MiddleRight;
buttonLB.Location = new Point(20, 7); buttonLB.Location = new Point(20, 25);
buttonLB.Margin = new Padding(4); buttonLB.Margin = new Padding(4);
buttonLB.Name = "buttonLB"; buttonLB.Name = "buttonLB";
buttonLB.Secondary = true; buttonLB.Secondary = true;
@@ -670,7 +671,7 @@
buttonDPR.FlatStyle = FlatStyle.Flat; buttonDPR.FlatStyle = FlatStyle.Flat;
buttonDPR.ForeColor = SystemColors.ControlText; buttonDPR.ForeColor = SystemColors.ControlText;
buttonDPR.ImageAlign = ContentAlignment.MiddleRight; buttonDPR.ImageAlign = ContentAlignment.MiddleRight;
buttonDPR.Location = new Point(20, 322); buttonDPR.Location = new Point(20, 340);
buttonDPR.Margin = new Padding(4); buttonDPR.Margin = new Padding(4);
buttonDPR.Name = "buttonDPR"; buttonDPR.Name = "buttonDPR";
buttonDPR.Secondary = true; buttonDPR.Secondary = true;
@@ -690,7 +691,7 @@
buttonDPL.FlatStyle = FlatStyle.Flat; buttonDPL.FlatStyle = FlatStyle.Flat;
buttonDPL.ForeColor = SystemColors.ControlText; buttonDPL.ForeColor = SystemColors.ControlText;
buttonDPL.ImageAlign = ContentAlignment.MiddleRight; buttonDPL.ImageAlign = ContentAlignment.MiddleRight;
buttonDPL.Location = new Point(20, 259); buttonDPL.Location = new Point(20, 277);
buttonDPL.Margin = new Padding(4); buttonDPL.Margin = new Padding(4);
buttonDPL.Name = "buttonDPL"; buttonDPL.Name = "buttonDPL";
buttonDPL.Secondary = true; buttonDPL.Secondary = true;
@@ -710,7 +711,7 @@
buttonDPD.FlatStyle = FlatStyle.Flat; buttonDPD.FlatStyle = FlatStyle.Flat;
buttonDPD.ForeColor = SystemColors.ControlText; buttonDPD.ForeColor = SystemColors.ControlText;
buttonDPD.ImageAlign = ContentAlignment.MiddleRight; buttonDPD.ImageAlign = ContentAlignment.MiddleRight;
buttonDPD.Location = new Point(20, 196); buttonDPD.Location = new Point(20, 214);
buttonDPD.Margin = new Padding(4); buttonDPD.Margin = new Padding(4);
buttonDPD.Name = "buttonDPD"; buttonDPD.Name = "buttonDPD";
buttonDPD.Secondary = true; buttonDPD.Secondary = true;
@@ -730,7 +731,7 @@
buttonDPU.FlatStyle = FlatStyle.Flat; buttonDPU.FlatStyle = FlatStyle.Flat;
buttonDPU.ForeColor = SystemColors.ControlText; buttonDPU.ForeColor = SystemColors.ControlText;
buttonDPU.ImageAlign = ContentAlignment.MiddleRight; buttonDPU.ImageAlign = ContentAlignment.MiddleRight;
buttonDPU.Location = new Point(20, 133); buttonDPU.Location = new Point(20, 151);
buttonDPU.Margin = new Padding(4); buttonDPU.Margin = new Padding(4);
buttonDPU.Name = "buttonDPU"; buttonDPU.Name = "buttonDPU";
buttonDPU.Secondary = true; buttonDPU.Secondary = true;
@@ -750,7 +751,7 @@
buttonM2.FlatStyle = FlatStyle.Flat; buttonM2.FlatStyle = FlatStyle.Flat;
buttonM2.ForeColor = SystemColors.ControlText; buttonM2.ForeColor = SystemColors.ControlText;
buttonM2.ImageAlign = ContentAlignment.MiddleRight; buttonM2.ImageAlign = ContentAlignment.MiddleRight;
buttonM2.Location = new Point(330, 8); buttonM2.Location = new Point(330, 26);
buttonM2.Margin = new Padding(4); buttonM2.Margin = new Padding(4);
buttonM2.Name = "buttonM2"; buttonM2.Name = "buttonM2";
buttonM2.Secondary = true; buttonM2.Secondary = true;
@@ -770,7 +771,7 @@
buttonM1.FlatStyle = FlatStyle.Flat; buttonM1.FlatStyle = FlatStyle.Flat;
buttonM1.ForeColor = SystemColors.ControlText; buttonM1.ForeColor = SystemColors.ControlText;
buttonM1.ImageAlign = ContentAlignment.MiddleRight; buttonM1.ImageAlign = ContentAlignment.MiddleRight;
buttonM1.Location = new Point(650, 8); buttonM1.Location = new Point(650, 26);
buttonM1.Margin = new Padding(4); buttonM1.Margin = new Padding(4);
buttonM1.Name = "buttonM1"; buttonM1.Name = "buttonM1";
buttonM1.Secondary = true; buttonM1.Secondary = true;
@@ -790,7 +791,7 @@
buttonRS.FlatStyle = FlatStyle.Flat; buttonRS.FlatStyle = FlatStyle.Flat;
buttonRS.ForeColor = SystemColors.ControlText; buttonRS.ForeColor = SystemColors.ControlText;
buttonRS.ImageAlign = ContentAlignment.MiddleRight; buttonRS.ImageAlign = ContentAlignment.MiddleRight;
buttonRS.Location = new Point(962, 385); buttonRS.Location = new Point(962, 403);
buttonRS.Margin = new Padding(4); buttonRS.Margin = new Padding(4);
buttonRS.Name = "buttonRS"; buttonRS.Name = "buttonRS";
buttonRS.Secondary = true; buttonRS.Secondary = true;
@@ -810,7 +811,7 @@
buttonMenu.FlatStyle = FlatStyle.Flat; buttonMenu.FlatStyle = FlatStyle.Flat;
buttonMenu.ForeColor = SystemColors.ControlText; buttonMenu.ForeColor = SystemColors.ControlText;
buttonMenu.ImageAlign = ContentAlignment.MiddleRight; buttonMenu.ImageAlign = ContentAlignment.MiddleRight;
buttonMenu.Location = new Point(805, 8); buttonMenu.Location = new Point(805, 26);
buttonMenu.Margin = new Padding(4); buttonMenu.Margin = new Padding(4);
buttonMenu.Name = "buttonMenu"; buttonMenu.Name = "buttonMenu";
buttonMenu.Secondary = true; buttonMenu.Secondary = true;
@@ -830,7 +831,7 @@
buttonRT.FlatStyle = FlatStyle.Flat; buttonRT.FlatStyle = FlatStyle.Flat;
buttonRT.ForeColor = SystemColors.ControlText; buttonRT.ForeColor = SystemColors.ControlText;
buttonRT.ImageAlign = ContentAlignment.MiddleRight; buttonRT.ImageAlign = ContentAlignment.MiddleRight;
buttonRT.Location = new Point(962, 70); buttonRT.Location = new Point(962, 88);
buttonRT.Margin = new Padding(4); buttonRT.Margin = new Padding(4);
buttonRT.Name = "buttonRT"; buttonRT.Name = "buttonRT";
buttonRT.Secondary = true; buttonRT.Secondary = true;
@@ -850,7 +851,7 @@
buttonRB.FlatStyle = FlatStyle.Flat; buttonRB.FlatStyle = FlatStyle.Flat;
buttonRB.ForeColor = SystemColors.ControlText; buttonRB.ForeColor = SystemColors.ControlText;
buttonRB.ImageAlign = ContentAlignment.MiddleRight; buttonRB.ImageAlign = ContentAlignment.MiddleRight;
buttonRB.Location = new Point(962, 7); buttonRB.Location = new Point(962, 25);
buttonRB.Margin = new Padding(4); buttonRB.Margin = new Padding(4);
buttonRB.Name = "buttonRB"; buttonRB.Name = "buttonRB";
buttonRB.Secondary = true; buttonRB.Secondary = true;
@@ -870,7 +871,7 @@
buttonB.FlatStyle = FlatStyle.Flat; buttonB.FlatStyle = FlatStyle.Flat;
buttonB.ForeColor = SystemColors.ControlText; buttonB.ForeColor = SystemColors.ControlText;
buttonB.ImageAlign = ContentAlignment.MiddleRight; buttonB.ImageAlign = ContentAlignment.MiddleRight;
buttonB.Location = new Point(962, 322); buttonB.Location = new Point(962, 340);
buttonB.Margin = new Padding(4); buttonB.Margin = new Padding(4);
buttonB.Name = "buttonB"; buttonB.Name = "buttonB";
buttonB.Secondary = true; buttonB.Secondary = true;
@@ -890,7 +891,7 @@
buttonA.FlatStyle = FlatStyle.Flat; buttonA.FlatStyle = FlatStyle.Flat;
buttonA.ForeColor = SystemColors.ControlText; buttonA.ForeColor = SystemColors.ControlText;
buttonA.ImageAlign = ContentAlignment.MiddleRight; buttonA.ImageAlign = ContentAlignment.MiddleRight;
buttonA.Location = new Point(962, 259); buttonA.Location = new Point(962, 277);
buttonA.Margin = new Padding(4); buttonA.Margin = new Padding(4);
buttonA.Name = "buttonA"; buttonA.Name = "buttonA";
buttonA.Secondary = true; buttonA.Secondary = true;
@@ -910,7 +911,7 @@
buttonY.FlatStyle = FlatStyle.Flat; buttonY.FlatStyle = FlatStyle.Flat;
buttonY.ForeColor = SystemColors.ControlText; buttonY.ForeColor = SystemColors.ControlText;
buttonY.ImageAlign = ContentAlignment.MiddleRight; buttonY.ImageAlign = ContentAlignment.MiddleRight;
buttonY.Location = new Point(962, 196); buttonY.Location = new Point(962, 214);
buttonY.Margin = new Padding(4); buttonY.Margin = new Padding(4);
buttonY.Name = "buttonY"; buttonY.Name = "buttonY";
buttonY.Secondary = true; buttonY.Secondary = true;
@@ -930,7 +931,7 @@
buttonX.FlatStyle = FlatStyle.Flat; buttonX.FlatStyle = FlatStyle.Flat;
buttonX.ForeColor = SystemColors.ControlText; buttonX.ForeColor = SystemColors.ControlText;
buttonX.ImageAlign = ContentAlignment.MiddleRight; buttonX.ImageAlign = ContentAlignment.MiddleRight;
buttonX.Location = new Point(962, 133); buttonX.Location = new Point(962, 151);
buttonX.Margin = new Padding(4); buttonX.Margin = new Padding(4);
buttonX.Name = "buttonX"; buttonX.Name = "buttonX";
buttonX.Secondary = true; buttonX.Secondary = true;
@@ -944,7 +945,7 @@
// //
pictureAlly.BackgroundImage = Properties.Resources.ally; pictureAlly.BackgroundImage = Properties.Resources.ally;
pictureAlly.BackgroundImageLayout = ImageLayout.Zoom; pictureAlly.BackgroundImageLayout = ImageLayout.Zoom;
pictureAlly.Location = new Point(185, 79); pictureAlly.Location = new Point(185, 97);
pictureAlly.Name = "pictureAlly"; pictureAlly.Name = "pictureAlly";
pictureAlly.Size = new Size(767, 354); pictureAlly.Size = new Size(767, 354);
pictureAlly.TabIndex = 0; pictureAlly.TabIndex = 0;
@@ -954,19 +955,34 @@
// //
panelVibra.AutoSize = true; panelVibra.AutoSize = true;
panelVibra.AutoSizeMode = AutoSizeMode.GrowAndShrink; panelVibra.AutoSizeMode = AutoSizeMode.GrowAndShrink;
panelVibra.Controls.Add(checkController);
panelVibra.Controls.Add(buttonReset); panelVibra.Controls.Add(buttonReset);
panelVibra.Controls.Add(pictureBox5); panelVibra.Controls.Add(pictureBox5);
panelVibra.Controls.Add(labelVibra); panelVibra.Controls.Add(labelVibra);
panelVibra.Controls.Add(labelVibraTitle); panelVibra.Controls.Add(labelVibraTitle);
panelVibra.Controls.Add(trackVibra); panelVibra.Controls.Add(trackVibra);
panelVibra.Dock = DockStyle.Top; panelVibra.Dock = DockStyle.Top;
panelVibra.Location = new Point(10, 748); panelVibra.Location = new Point(10, 785);
panelVibra.Margin = new Padding(4); panelVibra.Margin = new Padding(4);
panelVibra.MaximumSize = new Size(0, 124); panelVibra.MaximumSize = new Size(0, 124);
panelVibra.Name = "panelVibra"; panelVibra.Name = "panelVibra";
panelVibra.Size = new Size(1130, 124); panelVibra.Size = new Size(1123, 124);
panelVibra.TabIndex = 47; panelVibra.TabIndex = 47;
// //
// checkController
//
checkController.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;
checkController.AutoSize = true;
checkController.BackColor = SystemColors.ControlLight;
checkController.Location = new Point(650, 41);
checkController.Margin = new Padding(0);
checkController.Name = "checkController";
checkController.Padding = new Padding(16, 6, 16, 6);
checkController.Size = new Size(269, 48);
checkController.TabIndex = 56;
checkController.Text = "Disable Controller";
checkController.UseVisualStyleBackColor = false;
//
// pictureBox5 // pictureBox5
// //
pictureBox5.BackgroundImage = Properties.Resources.icons8_soonvibes_32; pictureBox5.BackgroundImage = Properties.Resources.icons8_soonvibes_32;
@@ -1018,10 +1034,10 @@
AutoScaleDimensions = new SizeF(13F, 32F); AutoScaleDimensions = new SizeF(13F, 32F);
AutoScaleMode = AutoScaleMode.Font; AutoScaleMode = AutoScaleMode.Font;
AutoSize = true; AutoSize = true;
ClientSize = new Size(1150, 880); ClientSize = new Size(1143, 912);
Controls.Add(panelVibra); Controls.Add(panelVibra);
Controls.Add(panelBindings);
Controls.Add(panelDeadzones); Controls.Add(panelDeadzones);
Controls.Add(panelBindings);
MaximizeBox = false; MaximizeBox = false;
MinimizeBox = false; MinimizeBox = false;
Name = "Handheld"; Name = "Handheld";
@@ -1128,5 +1144,6 @@
private Label labelVibra; private Label labelVibra;
private Label labelVibraTitle; private Label labelVibraTitle;
private TrackBar trackVibra; private TrackBar trackVibra;
private UI.RCheckBox checkController;
} }
} }

View File

@@ -54,7 +54,7 @@ namespace GHelper
ButtonBinding("du", "DPad Up", buttonDPU); ButtonBinding("du", "DPad Up", buttonDPU);
ButtonBinding("dd", "DPad Down", buttonDPD); ButtonBinding("dd", "DPad Down", buttonDPD);
ButtonBinding("dl", "DPad Left", buttonDPL); ButtonBinding("dl", "DPad Left", buttonDPL);
ButtonBinding("dr", "DPad Right", buttonDPR); ButtonBinding("dr", "DPad Right", buttonDPR);
@@ -73,6 +73,15 @@ namespace GHelper
ComboBinding(comboPrimary); ComboBinding(comboPrimary);
ComboBinding(comboSecondary); ComboBinding(comboSecondary);
checkController.Checked = AppConfig.Is("controller_disabled");
checkController.CheckedChanged += CheckController_CheckedChanged;
}
private void CheckController_CheckedChanged(object? sender, EventArgs e)
{
AppConfig.Set("controller_disabled", checkController.Checked ? 1 : 0);
AllyControl.ApplyXBoxStatus();
} }
private void ComboBinding(RComboBox combo) private void ComboBinding(RComboBox combo)
@@ -246,5 +255,6 @@ namespace GHelper
Top = Program.settingsForm.Top; Top = Program.settingsForm.Top;
Left = Program.settingsForm.Left - Width - 5; Left = Program.settingsForm.Left - Width - 5;
} }
} }
} }

View File

@@ -690,6 +690,16 @@ namespace GHelper.Properties {
} }
} }
/// <summary>
/// Looks up a localized resource of type System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap icons8_xbox_rt_32 {
get {
object obj = ResourceManager.GetObject("icons8-xbox-rt-32", resourceCulture);
return ((System.Drawing.Bitmap)(obj));
}
}
/// <summary> /// <summary>
/// Looks up a localized resource of type System.Drawing.Bitmap. /// Looks up a localized resource of type System.Drawing.Bitmap.
/// </summary> /// </summary>

View File

@@ -130,15 +130,15 @@
<data name="icons8_microphone_96" type="System.Resources.ResXFileRef, System.Windows.Forms"> <data name="icons8_microphone_96" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\icons8-microphone-96.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> <value>..\Resources\icons8-microphone-96.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data> </data>
<data name="icons8-controls-32" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\icons8-controls-32.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="icons8_maus_48" type="System.Resources.ResXFileRef, System.Windows.Forms"> <data name="icons8_maus_48" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\icons8-maus-48.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> <value>..\Resources\icons8-maus-48.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data> </data>
<data name="icons8-bicycle-48 (1)" type="System.Resources.ResXFileRef, System.Windows.Forms"> <data name="icons8-bicycle-48 (1)" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\icons8-bicycle-48 (1).png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> <value>..\Resources\icons8-bicycle-48 (1).png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data> </data>
<data name="standard" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\standard.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="eco" type="System.Resources.ResXFileRef, System.Windows.Forms"> <data name="eco" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\eco.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> <value>..\Resources\eco.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data> </data>
@@ -157,8 +157,8 @@
<data name="icons8-controller-32" type="System.Resources.ResXFileRef, System.Windows.Forms"> <data name="icons8-controller-32" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\icons8-controller-32.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> <value>..\Resources\icons8-controller-32.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data> </data>
<data name="icons8_share_32" type="System.Resources.ResXFileRef, System.Windows.Forms"> <data name="icons8-controls-32" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\icons8-share-32.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> <value>..\Resources\icons8-controls-32.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data> </data>
<data name="icons8-next-32" type="System.Resources.ResXFileRef, System.Windows.Forms"> <data name="icons8-next-32" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\icons8-next-32.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> <value>..\Resources\icons8-next-32.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
@@ -190,6 +190,9 @@
<data name="icons8-laptop-32" type="System.Resources.ResXFileRef, System.Windows.Forms"> <data name="icons8-laptop-32" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\icons8-laptop-32.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> <value>..\Resources\icons8-laptop-32.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data> </data>
<data name="ally" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\ally.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="icons8_remove_64" type="System.Resources.ResXFileRef, System.Windows.Forms"> <data name="icons8_remove_64" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\icons8-remove-64.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> <value>..\Resources\icons8-remove-64.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data> </data>
@@ -310,8 +313,8 @@
<data name="icons8_software_32" type="System.Resources.ResXFileRef, System.Windows.Forms"> <data name="icons8_software_32" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\icons8-software-32.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> <value>..\Resources\icons8-software-32.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data> </data>
<data name="standard" type="System.Resources.ResXFileRef, System.Windows.Forms"> <data name="icons8_share_32" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\standard.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> <value>..\Resources\icons8-share-32.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data> </data>
<data name="icons8-soonvibes-32" type="System.Resources.ResXFileRef, System.Windows.Forms"> <data name="icons8-soonvibes-32" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\icons8-soonvibes-32.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> <value>..\Resources\icons8-soonvibes-32.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
@@ -322,7 +325,7 @@
<data name="icons8-charging-battery-32" type="System.Resources.ResXFileRef, System.Windows.Forms"> <data name="icons8-charging-battery-32" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\icons8-charging-battery-32.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> <value>..\Resources\icons8-charging-battery-32.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data> </data>
<data name="ally" type="System.Resources.ResXFileRef, System.Windows.Forms"> <data name="icons8-xbox-rt-32" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\ally.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> <value>..\Resources\icons8-xbox-rt-32.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data> </data>
</root> </root>

Binary file not shown.

After

Width:  |  Height:  |  Size: 448 B