Mouse Profile Import/Export (#2030)

* Support for Strix Carry (P508)

* Fixes polling rate, angle snapping and debounce for Gladius II Origin.

* The Gen2 version of the TuF M3 uses 0-100 for brightness.

* Adds support for ROG Strix Impact III (P518)

* Import/Export feature for mice.
This commit is contained in:
IceStormNG
2024-02-04 16:57:41 +01:00
committed by GitHub
parent 106ac8aca5
commit 236e6215e7
6 changed files with 633 additions and 222 deletions

View File

@@ -55,6 +55,9 @@ namespace GHelper
buttonLightingZoneAll.Text = Properties.Strings.AuraZoneAll;
buttonLightingZoneDock.Text = Properties.Strings.AuraZoneDock;
buttonExport.Text = Properties.Strings.Export;
buttonImport.Text = Properties.Strings.Import;
InitTheme();
this.Text = mouse.GetDisplayName();
@@ -903,5 +906,64 @@ namespace GHelper
{
RefreshMouseData();
}
private void buttonImport_Click(object sender, EventArgs e)
{
byte[] data = null;
Thread t = new Thread(() =>
{
OpenFileDialog ofd = new OpenFileDialog();
ofd.Filter = "G-Helper Mouse Profile V1 (*.gmp1)|*.gmp1";
if (ofd.ShowDialog() == DialogResult.OK)
{
data = File.ReadAllBytes(ofd.FileName);
}
});
t.SetApartmentState(ApartmentState.STA);
t.Start();
t.Join();
if (data == null)
{
//User aborted loading
return;
}
if (!mouse.Import(data))
{
Logger.WriteLine("Failed to import mouse profile");
MessageBox.Show(Properties.Strings.MouseImportFailed);
}
else
{
if (!mouse.IsLightingZoned())
{
visibleZone = LightingZone.All;
}
RefreshMouseData();
}
}
private void buttonExport_Click(object sender, EventArgs e)
{
Thread t = new Thread(() =>
{
SaveFileDialog sfd = new SaveFileDialog();
sfd.Filter = "G-Helper Mouse Profile V1 (*.gmp1)|*.gmp1";
if (sfd.ShowDialog() == DialogResult.OK)
{
File.WriteAllBytes(sfd.FileName, mouse.Export());
}
});
t.SetApartmentState(ApartmentState.STA);
t.Start();
t.Join();
}
}
}