mirror of
https://github.com/jkocon/g-helper.git
synced 2026-02-23 13:00:52 +01:00
Ally Controller Modes
This commit is contained in:
52
app/Ally/AllyControl.cs
Normal file
52
app/Ally/AllyControl.cs
Normal file
@@ -0,0 +1,52 @@
|
|||||||
|
using GHelper.USB;
|
||||||
|
|
||||||
|
namespace GHelper.Ally
|
||||||
|
{
|
||||||
|
|
||||||
|
public enum ControllerMode : int
|
||||||
|
{
|
||||||
|
Gamepad = 1,
|
||||||
|
WASD = 2,
|
||||||
|
Mouse = 3,
|
||||||
|
}
|
||||||
|
|
||||||
|
public class AllyControl
|
||||||
|
{
|
||||||
|
SettingsForm settings;
|
||||||
|
ControllerMode mode = ControllerMode.Gamepad;
|
||||||
|
public AllyControl(SettingsForm settingsForm)
|
||||||
|
{
|
||||||
|
settings = settingsForm;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void Init()
|
||||||
|
{
|
||||||
|
if (!AppConfig.IsAlly())
|
||||||
|
{
|
||||||
|
settings.VisualiseAlly(false);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
mode = (ControllerMode)AppConfig.Get("controller_mode", (int)ControllerMode.Gamepad);
|
||||||
|
SetMode(mode);
|
||||||
|
}
|
||||||
|
|
||||||
|
private void SetMode(ControllerMode mode)
|
||||||
|
{
|
||||||
|
AppConfig.Set("controller_mode", (int)mode);
|
||||||
|
AsusHid.WriteInput(new byte[] { AsusHid.INPUT_ID, 0xd1, 1, 1, (byte)mode }, "ControllerMode");
|
||||||
|
settings.VisualiseController(mode);
|
||||||
|
}
|
||||||
|
|
||||||
|
public void ToggleMode()
|
||||||
|
{
|
||||||
|
if (mode == ControllerMode.Mouse)
|
||||||
|
mode = ControllerMode.Gamepad;
|
||||||
|
else
|
||||||
|
mode++;
|
||||||
|
|
||||||
|
SetMode(mode);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1,3 +1,4 @@
|
|||||||
|
using GHelper.Ally;
|
||||||
using GHelper.Battery;
|
using GHelper.Battery;
|
||||||
using GHelper.Display;
|
using GHelper.Display;
|
||||||
using GHelper.Gpu;
|
using GHelper.Gpu;
|
||||||
@@ -5,6 +6,8 @@ using GHelper.Helpers;
|
|||||||
using GHelper.Input;
|
using GHelper.Input;
|
||||||
using GHelper.Mode;
|
using GHelper.Mode;
|
||||||
using GHelper.Peripherals;
|
using GHelper.Peripherals;
|
||||||
|
using GHelper.USB;
|
||||||
|
using Microsoft.VisualBasic.Logging;
|
||||||
using Microsoft.Win32;
|
using Microsoft.Win32;
|
||||||
using Ryzen;
|
using Ryzen;
|
||||||
using System.Diagnostics;
|
using System.Diagnostics;
|
||||||
@@ -30,6 +33,7 @@ namespace GHelper
|
|||||||
|
|
||||||
public static ModeControl modeControl = new ModeControl();
|
public static ModeControl modeControl = new ModeControl();
|
||||||
public static GPUModeControl gpuControl = new GPUModeControl(settingsForm);
|
public static GPUModeControl gpuControl = new GPUModeControl(settingsForm);
|
||||||
|
public static AllyControl controllerControl = new AllyControl(settingsForm);
|
||||||
public static ScreenControl screenControl = new ScreenControl();
|
public static ScreenControl screenControl = new ScreenControl();
|
||||||
public static ClamshellModeControl clamshellControl = new ClamshellModeControl();
|
public static ClamshellModeControl clamshellControl = new ClamshellModeControl();
|
||||||
|
|
||||||
@@ -225,6 +229,8 @@ namespace GHelper
|
|||||||
|
|
||||||
settingsForm.AutoKeyboard();
|
settingsForm.AutoKeyboard();
|
||||||
settingsForm.matrixControl.SetMatrix(true);
|
settingsForm.matrixControl.SetMatrix(true);
|
||||||
|
|
||||||
|
controllerControl.Init();
|
||||||
}
|
}
|
||||||
|
|
||||||
private static void SystemEvents_PowerModeChanged(object sender, PowerModeChangedEventArgs e)
|
private static void SystemEvents_PowerModeChanged(object sender, PowerModeChangedEventArgs e)
|
||||||
|
|||||||
10
app/Properties/Resources.Designer.cs
generated
10
app/Properties/Resources.Designer.cs
generated
@@ -220,6 +220,16 @@ namespace GHelper.Properties {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Looks up a localized resource of type System.Drawing.Bitmap.
|
||||||
|
/// </summary>
|
||||||
|
internal static System.Drawing.Bitmap icons8_controller_32 {
|
||||||
|
get {
|
||||||
|
object obj = ResourceManager.GetObject("icons8-controller-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>
|
||||||
|
|||||||
@@ -133,6 +133,9 @@
|
|||||||
<data name="icons8-hibernate-32" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
<data name="icons8-hibernate-32" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||||
<value>..\Resources\icons8-hibernate-32.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
<value>..\Resources\icons8-hibernate-32.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="MFont" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||||
|
<value>..\Resources\Font.otf;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</data>
|
||||||
<data name="icons8-quit-32" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
<data name="icons8-quit-32" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||||
<value>..\Resources\icons8-quit-32.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
<value>..\Resources\icons8-quit-32.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -148,6 +151,9 @@
|
|||||||
<data name="icons8-project-management-48 (1)" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
<data name="icons8-project-management-48 (1)" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||||
<value>..\Resources\icons8-project-management-48 (1).png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
<value>..\Resources\icons8-project-management-48 (1).png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="dot_standard" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||||
|
<value>..\Resources\dot-standard.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||||
|
</data>
|
||||||
<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>
|
||||||
@@ -214,6 +220,9 @@
|
|||||||
<data name="icons8-rocket-48" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
<data name="icons8-rocket-48" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||||
<value>..\Resources\icons8-rocket-48.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
<value>..\Resources\icons8-rocket-48.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="dot_ultimate" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||||
|
<value>..\Resources\dot-ultimate.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||||
|
</data>
|
||||||
<data name="icons8_edit_32" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
<data name="icons8_edit_32" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||||
<value>..\Resources\icons8-edit-32.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
<value>..\Resources\icons8-edit-32.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -277,6 +286,9 @@
|
|||||||
<data name="icons8-settings-32" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
<data name="icons8-settings-32" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||||
<value>..\Resources\icons8-settings-32.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
<value>..\Resources\icons8-settings-32.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="dot_eco" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||||
|
<value>..\Resources\dot-eco.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||||
|
</data>
|
||||||
<data name="icons8_processor_32" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
<data name="icons8_processor_32" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||||
<value>..\Resources\icons8-processor-32.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
<value>..\Resources\icons8-processor-32.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -289,16 +301,7 @@
|
|||||||
<data name="icons8_rocket_32" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
<data name="icons8_rocket_32" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||||
<value>..\Resources\icons8-rocket-32.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
<value>..\Resources\icons8-rocket-32.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="MFont" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
<data name="icons8-controller-32" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||||
<value>..\Resources\Font.otf;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
<value>..\Resources\icons8-controller-32.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||||
</data>
|
|
||||||
<data name="dot_eco" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
|
||||||
<value>..\Resources\dot-eco.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
|
||||||
</data>
|
|
||||||
<data name="dot_standard" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
|
||||||
<value>..\Resources\dot-standard.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
|
||||||
</data>
|
|
||||||
<data name="dot_ultimate" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
|
||||||
<value>..\Resources\dot-ultimate.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
|
||||||
</data>
|
</data>
|
||||||
</root>
|
</root>
|
||||||
BIN
app/Resources/icons8-controller-32.png
Normal file
BIN
app/Resources/icons8-controller-32.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 396 B |
132
app/Settings.Designer.cs
generated
132
app/Settings.Designer.cs
generated
@@ -108,6 +108,13 @@ namespace GHelper
|
|||||||
panelPeripheralsTile = new Panel();
|
panelPeripheralsTile = new Panel();
|
||||||
picturePeripherals = new PictureBox();
|
picturePeripherals = new PictureBox();
|
||||||
labelPeripherals = new Label();
|
labelPeripherals = new Label();
|
||||||
|
panelAlly = new Panel();
|
||||||
|
label1 = new Label();
|
||||||
|
tableLayoutAlly = new TableLayoutPanel();
|
||||||
|
buttonController = new RButton();
|
||||||
|
panelAllyTitle = new Panel();
|
||||||
|
pictureAlly = new PictureBox();
|
||||||
|
labelAlly = new Label();
|
||||||
panelMatrix.SuspendLayout();
|
panelMatrix.SuspendLayout();
|
||||||
tableLayoutMatrix.SuspendLayout();
|
tableLayoutMatrix.SuspendLayout();
|
||||||
panelMatrixTitle.SuspendLayout();
|
panelMatrixTitle.SuspendLayout();
|
||||||
@@ -141,6 +148,10 @@ namespace GHelper
|
|||||||
tableLayoutPeripherals.SuspendLayout();
|
tableLayoutPeripherals.SuspendLayout();
|
||||||
panelPeripheralsTile.SuspendLayout();
|
panelPeripheralsTile.SuspendLayout();
|
||||||
((System.ComponentModel.ISupportInitialize)picturePeripherals).BeginInit();
|
((System.ComponentModel.ISupportInitialize)picturePeripherals).BeginInit();
|
||||||
|
panelAlly.SuspendLayout();
|
||||||
|
tableLayoutAlly.SuspendLayout();
|
||||||
|
panelAllyTitle.SuspendLayout();
|
||||||
|
((System.ComponentModel.ISupportInitialize)pictureAlly).BeginInit();
|
||||||
SuspendLayout();
|
SuspendLayout();
|
||||||
//
|
//
|
||||||
// panelMatrix
|
// panelMatrix
|
||||||
@@ -282,7 +293,7 @@ namespace GHelper
|
|||||||
panelBattery.Controls.Add(sliderBattery);
|
panelBattery.Controls.Add(sliderBattery);
|
||||||
panelBattery.Controls.Add(panelBatteryTitle);
|
panelBattery.Controls.Add(panelBatteryTitle);
|
||||||
panelBattery.Dock = DockStyle.Top;
|
panelBattery.Dock = DockStyle.Top;
|
||||||
panelBattery.Location = new Point(11, 1265);
|
panelBattery.Location = new Point(11, 1441);
|
||||||
panelBattery.Margin = new Padding(0);
|
panelBattery.Margin = new Padding(0);
|
||||||
panelBattery.Name = "panelBattery";
|
panelBattery.Name = "panelBattery";
|
||||||
panelBattery.Padding = new Padding(20, 20, 20, 10);
|
panelBattery.Padding = new Padding(20, 20, 20, 10);
|
||||||
@@ -374,7 +385,7 @@ namespace GHelper
|
|||||||
panelFooter.AutoSizeMode = AutoSizeMode.GrowAndShrink;
|
panelFooter.AutoSizeMode = AutoSizeMode.GrowAndShrink;
|
||||||
panelFooter.Controls.Add(tableButtons);
|
panelFooter.Controls.Add(tableButtons);
|
||||||
panelFooter.Dock = DockStyle.Top;
|
panelFooter.Dock = DockStyle.Top;
|
||||||
panelFooter.Location = new Point(11, 1440);
|
panelFooter.Location = new Point(11, 1616);
|
||||||
panelFooter.Margin = new Padding(0);
|
panelFooter.Margin = new Padding(0);
|
||||||
panelFooter.Name = "panelFooter";
|
panelFooter.Name = "panelFooter";
|
||||||
panelFooter.Padding = new Padding(20);
|
panelFooter.Padding = new Padding(20);
|
||||||
@@ -1232,7 +1243,7 @@ namespace GHelper
|
|||||||
panelVersion.Controls.Add(labelCharge);
|
panelVersion.Controls.Add(labelCharge);
|
||||||
panelVersion.Controls.Add(checkStartup);
|
panelVersion.Controls.Add(checkStartup);
|
||||||
panelVersion.Dock = DockStyle.Top;
|
panelVersion.Dock = DockStyle.Top;
|
||||||
panelVersion.Location = new Point(11, 1384);
|
panelVersion.Location = new Point(11, 1560);
|
||||||
panelVersion.Margin = new Padding(4);
|
panelVersion.Margin = new Padding(4);
|
||||||
panelVersion.Name = "panelVersion";
|
panelVersion.Name = "panelVersion";
|
||||||
panelVersion.Size = new Size(827, 56);
|
panelVersion.Size = new Size(827, 56);
|
||||||
@@ -1257,7 +1268,7 @@ namespace GHelper
|
|||||||
panelPeripherals.Controls.Add(tableLayoutPeripherals);
|
panelPeripherals.Controls.Add(tableLayoutPeripherals);
|
||||||
panelPeripherals.Controls.Add(panelPeripheralsTile);
|
panelPeripherals.Controls.Add(panelPeripheralsTile);
|
||||||
panelPeripherals.Dock = DockStyle.Top;
|
panelPeripherals.Dock = DockStyle.Top;
|
||||||
panelPeripherals.Location = new Point(11, 1067);
|
panelPeripherals.Location = new Point(11, 1243);
|
||||||
panelPeripherals.Margin = new Padding(0);
|
panelPeripherals.Margin = new Padding(0);
|
||||||
panelPeripherals.Name = "panelPeripherals";
|
panelPeripherals.Name = "panelPeripherals";
|
||||||
panelPeripherals.Padding = new Padding(20, 20, 20, 10);
|
panelPeripherals.Padding = new Padding(20, 20, 20, 10);
|
||||||
@@ -1391,17 +1402,115 @@ namespace GHelper
|
|||||||
labelPeripherals.TabIndex = 40;
|
labelPeripherals.TabIndex = 40;
|
||||||
labelPeripherals.Text = "Peripherals";
|
labelPeripherals.Text = "Peripherals";
|
||||||
//
|
//
|
||||||
|
// panelAlly
|
||||||
|
//
|
||||||
|
panelAlly.AccessibleRole = AccessibleRole.Grouping;
|
||||||
|
panelAlly.AutoSize = true;
|
||||||
|
panelAlly.AutoSizeMode = AutoSizeMode.GrowAndShrink;
|
||||||
|
panelAlly.Controls.Add(label1);
|
||||||
|
panelAlly.Controls.Add(tableLayoutAlly);
|
||||||
|
panelAlly.Controls.Add(panelAllyTitle);
|
||||||
|
panelAlly.Dock = DockStyle.Top;
|
||||||
|
panelAlly.Location = new Point(11, 1067);
|
||||||
|
panelAlly.Margin = new Padding(0);
|
||||||
|
panelAlly.Name = "panelAlly";
|
||||||
|
panelAlly.Padding = new Padding(20, 20, 20, 0);
|
||||||
|
panelAlly.Size = new Size(827, 176);
|
||||||
|
panelAlly.TabIndex = 8;
|
||||||
|
panelAlly.TabStop = true;
|
||||||
|
//
|
||||||
|
// label1
|
||||||
|
//
|
||||||
|
label1.Dock = DockStyle.Top;
|
||||||
|
label1.ForeColor = SystemColors.GrayText;
|
||||||
|
label1.Location = new Point(20, 140);
|
||||||
|
label1.Margin = new Padding(4, 0, 4, 0);
|
||||||
|
label1.Name = "label1";
|
||||||
|
label1.Size = new Size(787, 36);
|
||||||
|
label1.TabIndex = 24;
|
||||||
|
//
|
||||||
|
// tableLayoutAlly
|
||||||
|
//
|
||||||
|
tableLayoutAlly.AutoSize = true;
|
||||||
|
tableLayoutAlly.AutoSizeMode = AutoSizeMode.GrowAndShrink;
|
||||||
|
tableLayoutAlly.ColumnCount = 3;
|
||||||
|
tableLayoutAlly.ColumnStyles.Add(new ColumnStyle(SizeType.Percent, 33F));
|
||||||
|
tableLayoutAlly.ColumnStyles.Add(new ColumnStyle(SizeType.Percent, 33F));
|
||||||
|
tableLayoutAlly.ColumnStyles.Add(new ColumnStyle(SizeType.Percent, 33F));
|
||||||
|
tableLayoutAlly.Controls.Add(buttonController, 0, 0);
|
||||||
|
tableLayoutAlly.Dock = DockStyle.Top;
|
||||||
|
tableLayoutAlly.Location = new Point(20, 60);
|
||||||
|
tableLayoutAlly.Margin = new Padding(8, 4, 8, 4);
|
||||||
|
tableLayoutAlly.Name = "tableLayoutAlly";
|
||||||
|
tableLayoutAlly.RowCount = 1;
|
||||||
|
tableLayoutAlly.RowStyles.Add(new RowStyle(SizeType.Absolute, 80F));
|
||||||
|
tableLayoutAlly.Size = new Size(787, 80);
|
||||||
|
tableLayoutAlly.TabIndex = 23;
|
||||||
|
//
|
||||||
|
// buttonController
|
||||||
|
//
|
||||||
|
buttonController.Activated = false;
|
||||||
|
buttonController.BackColor = SystemColors.ControlLightLight;
|
||||||
|
buttonController.BorderColor = Color.Transparent;
|
||||||
|
buttonController.BorderRadius = 5;
|
||||||
|
buttonController.Dock = DockStyle.Fill;
|
||||||
|
buttonController.FlatAppearance.BorderSize = 0;
|
||||||
|
buttonController.FlatStyle = FlatStyle.Flat;
|
||||||
|
buttonController.ForeColor = SystemColors.ControlText;
|
||||||
|
buttonController.Location = new Point(4, 4);
|
||||||
|
buttonController.Margin = new Padding(4);
|
||||||
|
buttonController.Name = "buttonController";
|
||||||
|
buttonController.Secondary = false;
|
||||||
|
buttonController.Size = new Size(254, 72);
|
||||||
|
buttonController.TabIndex = 9;
|
||||||
|
buttonController.Text = Properties.Strings.AutoMode;
|
||||||
|
buttonController.UseVisualStyleBackColor = false;
|
||||||
|
//
|
||||||
|
// panelAllyTitle
|
||||||
|
//
|
||||||
|
panelAllyTitle.Controls.Add(pictureAlly);
|
||||||
|
panelAllyTitle.Controls.Add(labelAlly);
|
||||||
|
panelAllyTitle.Dock = DockStyle.Top;
|
||||||
|
panelAllyTitle.Location = new Point(20, 20);
|
||||||
|
panelAllyTitle.Margin = new Padding(4);
|
||||||
|
panelAllyTitle.Name = "panelAllyTitle";
|
||||||
|
panelAllyTitle.Size = new Size(787, 40);
|
||||||
|
panelAllyTitle.TabIndex = 25;
|
||||||
|
//
|
||||||
|
// pictureAlly
|
||||||
|
//
|
||||||
|
pictureAlly.BackgroundImage = Properties.Resources.icons8_controller_32;
|
||||||
|
pictureAlly.BackgroundImageLayout = ImageLayout.Center;
|
||||||
|
pictureAlly.Location = new Point(5, 0);
|
||||||
|
pictureAlly.Margin = new Padding(4);
|
||||||
|
pictureAlly.Name = "pictureAlly";
|
||||||
|
pictureAlly.Size = new Size(32, 32);
|
||||||
|
pictureAlly.TabIndex = 27;
|
||||||
|
pictureAlly.TabStop = false;
|
||||||
|
//
|
||||||
|
// labelAlly
|
||||||
|
//
|
||||||
|
labelAlly.AutoSize = true;
|
||||||
|
labelAlly.Font = new Font("Segoe UI", 9F, FontStyle.Bold, GraphicsUnit.Point);
|
||||||
|
labelAlly.Location = new Point(45, 0);
|
||||||
|
labelAlly.Margin = new Padding(8, 0, 8, 0);
|
||||||
|
labelAlly.Name = "labelAlly";
|
||||||
|
labelAlly.Size = new Size(58, 32);
|
||||||
|
labelAlly.TabIndex = 26;
|
||||||
|
labelAlly.Text = "Ally";
|
||||||
|
//
|
||||||
// SettingsForm
|
// SettingsForm
|
||||||
//
|
//
|
||||||
AutoScaleDimensions = new SizeF(192F, 192F);
|
AutoScaleDimensions = new SizeF(192F, 192F);
|
||||||
AutoScaleMode = AutoScaleMode.Dpi;
|
AutoScaleMode = AutoScaleMode.Dpi;
|
||||||
AutoSize = true;
|
AutoSize = true;
|
||||||
AutoSizeMode = AutoSizeMode.GrowAndShrink;
|
AutoSizeMode = AutoSizeMode.GrowAndShrink;
|
||||||
ClientSize = new Size(849, 1552);
|
ClientSize = new Size(849, 1717);
|
||||||
Controls.Add(panelFooter);
|
Controls.Add(panelFooter);
|
||||||
Controls.Add(panelVersion);
|
Controls.Add(panelVersion);
|
||||||
Controls.Add(panelBattery);
|
Controls.Add(panelBattery);
|
||||||
Controls.Add(panelPeripherals);
|
Controls.Add(panelPeripherals);
|
||||||
|
Controls.Add(panelAlly);
|
||||||
Controls.Add(panelKeyboard);
|
Controls.Add(panelKeyboard);
|
||||||
Controls.Add(panelMatrix);
|
Controls.Add(panelMatrix);
|
||||||
Controls.Add(panelScreen);
|
Controls.Add(panelScreen);
|
||||||
@@ -1465,6 +1574,12 @@ namespace GHelper
|
|||||||
panelPeripheralsTile.ResumeLayout(false);
|
panelPeripheralsTile.ResumeLayout(false);
|
||||||
panelPeripheralsTile.PerformLayout();
|
panelPeripheralsTile.PerformLayout();
|
||||||
((System.ComponentModel.ISupportInitialize)picturePeripherals).EndInit();
|
((System.ComponentModel.ISupportInitialize)picturePeripherals).EndInit();
|
||||||
|
panelAlly.ResumeLayout(false);
|
||||||
|
panelAlly.PerformLayout();
|
||||||
|
tableLayoutAlly.ResumeLayout(false);
|
||||||
|
panelAllyTitle.ResumeLayout(false);
|
||||||
|
panelAllyTitle.PerformLayout();
|
||||||
|
((System.ComponentModel.ISupportInitialize)pictureAlly).EndInit();
|
||||||
ResumeLayout(false);
|
ResumeLayout(false);
|
||||||
PerformLayout();
|
PerformLayout();
|
||||||
}
|
}
|
||||||
@@ -1548,5 +1663,12 @@ namespace GHelper
|
|||||||
private Label labelCharge;
|
private Label labelCharge;
|
||||||
private RButton buttonFnLock;
|
private RButton buttonFnLock;
|
||||||
private RButton buttonBatteryFull;
|
private RButton buttonBatteryFull;
|
||||||
|
private Panel panelAlly;
|
||||||
|
private Label label1;
|
||||||
|
private TableLayoutPanel tableLayoutAlly;
|
||||||
|
private RButton buttonController;
|
||||||
|
private Panel panelAllyTitle;
|
||||||
|
private Label labelAlly;
|
||||||
|
private PictureBox pictureAlly;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
using GHelper.AnimeMatrix;
|
using GHelper.Ally;
|
||||||
|
using GHelper.AnimeMatrix;
|
||||||
using GHelper.AutoUpdate;
|
using GHelper.AutoUpdate;
|
||||||
using GHelper.Battery;
|
using GHelper.Battery;
|
||||||
using GHelper.Display;
|
using GHelper.Display;
|
||||||
@@ -23,6 +24,7 @@ namespace GHelper
|
|||||||
|
|
||||||
public GPUModeControl gpuControl;
|
public GPUModeControl gpuControl;
|
||||||
ScreenControl screenControl = new ScreenControl();
|
ScreenControl screenControl = new ScreenControl();
|
||||||
|
AllyControl controllerControl;
|
||||||
AutoUpdateControl updateControl;
|
AutoUpdateControl updateControl;
|
||||||
|
|
||||||
AsusMouseSettings? mouseSettings;
|
AsusMouseSettings? mouseSettings;
|
||||||
@@ -54,6 +56,7 @@ namespace GHelper
|
|||||||
gpuControl = new GPUModeControl(this);
|
gpuControl = new GPUModeControl(this);
|
||||||
updateControl = new AutoUpdateControl(this);
|
updateControl = new AutoUpdateControl(this);
|
||||||
matrixControl = new AniMatrixControl(this);
|
matrixControl = new AniMatrixControl(this);
|
||||||
|
controllerControl = new AllyControl(this);
|
||||||
|
|
||||||
buttonSilent.Text = Properties.Strings.Silent;
|
buttonSilent.Text = Properties.Strings.Silent;
|
||||||
buttonBalanced.Text = Properties.Strings.Balanced;
|
buttonBalanced.Text = Properties.Strings.Balanced;
|
||||||
@@ -227,6 +230,8 @@ namespace GHelper
|
|||||||
buttonBatteryFull.MouseLeave += ButtonBatteryFull_MouseLeave;
|
buttonBatteryFull.MouseLeave += ButtonBatteryFull_MouseLeave;
|
||||||
buttonBatteryFull.Click += ButtonBatteryFull_Click;
|
buttonBatteryFull.Click += ButtonBatteryFull_Click;
|
||||||
|
|
||||||
|
buttonController.Click += ButtonController_Click;
|
||||||
|
|
||||||
Text = "G-Helper " + (ProcessHelper.IsUserAdministrator() ? "—" : "-") + " " + AppConfig.GetModelShort();
|
Text = "G-Helper " + (ProcessHelper.IsUserAdministrator() ? "—" : "-") + " " + AppConfig.GetModelShort();
|
||||||
TopMost = AppConfig.Is("topmost");
|
TopMost = AppConfig.Is("topmost");
|
||||||
|
|
||||||
@@ -240,6 +245,32 @@ namespace GHelper
|
|||||||
panelPerformance.Focus();
|
panelPerformance.Focus();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private void ButtonController_Click(object? sender, EventArgs e)
|
||||||
|
{
|
||||||
|
controllerControl.ToggleMode();
|
||||||
|
}
|
||||||
|
|
||||||
|
public void VisualiseAlly(bool visible = false)
|
||||||
|
{
|
||||||
|
panelAlly.Visible = visible;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void VisualiseController(ControllerMode mode)
|
||||||
|
{
|
||||||
|
switch (mode)
|
||||||
|
{
|
||||||
|
case ControllerMode.Gamepad:
|
||||||
|
buttonController.Text = "Gamepad";
|
||||||
|
break;
|
||||||
|
case ControllerMode.WASD:
|
||||||
|
buttonController.Text = "WASD";
|
||||||
|
break;
|
||||||
|
case ControllerMode.Mouse:
|
||||||
|
buttonController.Text = "Mouse";
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
private void SettingsForm_LostFocus(object? sender, EventArgs e)
|
private void SettingsForm_LostFocus(object? sender, EventArgs e)
|
||||||
{
|
{
|
||||||
lastLostFocus = DateTimeOffset.Now.ToUnixTimeMilliseconds();
|
lastLostFocus = DateTimeOffset.Now.ToUnixTimeMilliseconds();
|
||||||
|
|||||||
Reference in New Issue
Block a user