mirror of
https://github.com/cemu-project/DS4Windows.git
synced 2024-11-23 01:39:17 +01:00
1076 lines
44 KiB
C#
1076 lines
44 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Drawing;
|
|
using System.Windows.Forms;
|
|
|
|
namespace DS4Windows.Forms
|
|
{
|
|
public partial class KBM360 : Form
|
|
{
|
|
private bool use360 = true;
|
|
private Dictionary<string, string> ds4StrAliases =
|
|
new Dictionary<string, string>();
|
|
private int device;
|
|
private Button button;
|
|
private Options ops;
|
|
private SpecActions sA;
|
|
private Point oldSC;
|
|
public List<string> macros = new List<string>();
|
|
public List<int> macrostag = new List<int>();
|
|
public bool macrorepeat, newaction;
|
|
RecordBox rb;
|
|
string defaultText;
|
|
string guideText;
|
|
bool loading = true;
|
|
private int alphacolor;
|
|
private Color reg, full;
|
|
int bgc = 240; // Color of the form background, If greyscale color
|
|
private bool extraChanged;
|
|
private Bitmap pnl360BgImage;
|
|
private Bitmap pnlDS4BgImage;
|
|
private AdvancedColorDialog advColorDialog;
|
|
|
|
public KBM360(int deviceNum, Options ooo, Button buton)
|
|
{
|
|
InitializeComponent();
|
|
advColorDialog = new AdvancedColorDialog();
|
|
this.advColorDialog.OnUpdateColor += new AdvancedColorDialog.ColorUpdateHandler(this.advColorDialog_OnUpdateColor);
|
|
pnl360BgImage = (Bitmap)Properties.Resources._360_map.Clone();
|
|
//pnl360Controls.BackgroundImage = null;
|
|
//pnl360Controls.BackgroundImageLayout = ImageLayout.None;
|
|
use360 = true;
|
|
device = deviceNum;
|
|
pnl360Controls.Paint -= pnl360Controls_Paint;
|
|
if (Global.outDevTypeTemp[device] == OutContType.DS4)
|
|
{
|
|
use360 = false;
|
|
InitDS4Panel();
|
|
PopulateDS4StrAliases();
|
|
pnl360Controls.Hide();
|
|
pnlDS4Controls.Show();
|
|
}
|
|
|
|
ops = ooo;
|
|
button = buton;
|
|
DS4ControlSettings dcs = Global.getDS4CSetting(device, button.Name);
|
|
cBToggle.Checked = dcs.keyType.HasFlag(DS4KeyType.Toggle);
|
|
cBScanCode.Checked = dcs.keyType.HasFlag(DS4KeyType.ScanCode);
|
|
oldSC = cBScanCode.Location;
|
|
defaultText = btnDefault.Text;
|
|
if (button.Name.StartsWith("bnShift"))
|
|
{
|
|
Console.Write("shift");
|
|
Text = Properties.Resources.SelectActionTitle.Replace("*action*", button.Name.Substring(7));
|
|
btnDefault.Text = Properties.Resources.FallBack;
|
|
}
|
|
else if (button.Name.StartsWith("bn"))
|
|
{
|
|
Text = Properties.Resources.SelectActionTitle.Replace("*action*", button.Name.Substring(2));
|
|
}
|
|
|
|
foreach (Control control in Controls)
|
|
{
|
|
if (control is Button)
|
|
((Button)control).Click += anybtn_Click;
|
|
}
|
|
|
|
if (use360)
|
|
{
|
|
pnl360Controls.Paint -= pnl360Controls_Paint;
|
|
foreach (Control control in pnl360Controls.Controls)
|
|
{
|
|
if (control is Button)
|
|
((Button)control).Click += anybtn_Click;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
foreach (Control control in pnlDS4Controls.Controls)
|
|
{
|
|
if (control is Button)
|
|
((Button)control).Click += anybtn_Click;
|
|
}
|
|
}
|
|
|
|
if (button.Name.Contains("Touch") || button.Name.Contains("Swipe"))
|
|
{
|
|
btnMOUSEDOWN.Visible = false;
|
|
btnMOUSELEFT.Visible = false;
|
|
btnMOUSERIGHT.Visible = false;
|
|
btnMOUSEUP.Visible = false;
|
|
}
|
|
|
|
ActiveControl = lBMacroOn;
|
|
guideText = btnGuide.Text;
|
|
btnGuide.Text = "";
|
|
cBShiftButton.SelectedIndex = Global.GetDS4STrigger(device, button.Name);
|
|
cBShiftButton.Items[26] = ops.fingerOnTouchpadToolStripMenuItem.Text;
|
|
rBRegular.Checked = true;
|
|
loading = false;
|
|
}
|
|
|
|
public KBM360(SpecActions ooo, Button buton, bool extras)
|
|
{
|
|
InitializeComponent();
|
|
sA = ooo;
|
|
button = buton;
|
|
Size = new Size(btnVolUp.Location.X + btnVolUp.Size.Width * 2,
|
|
btnNUMENTER.Location.Y + btnNUMENTER.Size.Height * 2);
|
|
|
|
if (extras)
|
|
{
|
|
cBScanCode.Checked = button.Text.Contains("(SC)");
|
|
cBToggle.Checked = button.Text.Contains("(Toggle)");
|
|
}
|
|
else
|
|
{
|
|
cBScanCode.Visible = false;
|
|
cBToggle.Visible = false;
|
|
}
|
|
|
|
gBExtras.Visible = false;
|
|
bnMacro.Visible = false;
|
|
X360Label.Visible = false;
|
|
Text = Properties.Resources.SelectActionTitle.Replace("*action*", "Trigger");
|
|
foreach (Control control in Controls)
|
|
{
|
|
if (control is Button)
|
|
((Button)control).Click += anybtn_Click;
|
|
}
|
|
|
|
btnMOUSEDOWN.Visible = false;
|
|
btnMOUSELEFT.Visible = false;
|
|
btnMOUSERIGHT.Visible = false;
|
|
btnMOUSEUP.Visible = false;
|
|
rBRegular.Visible = false;
|
|
rBShiftModifer.Visible = false;
|
|
pBMouse.Visible = false;
|
|
btnLEFTMOUSE.Visible = false;
|
|
btn4THMOUSE.Visible = false;
|
|
pnl360Controls.Visible = false;
|
|
ActiveControl = lBMacroOn;
|
|
btnGuide.Text = "";
|
|
}
|
|
|
|
private void InitDS4Panel()
|
|
{
|
|
pnlDS4BgImage = (Bitmap)Properties.Resources.DS4_Config.Clone();
|
|
|
|
pnl360Controls.Controls.Remove(this.btnAButton);
|
|
this.btnAButton.Location = new Point(461, 145);
|
|
this.btnAButton.Size = new Size(23, 23);
|
|
pnlDS4Controls.Controls.Add(this.btnAButton);
|
|
|
|
pnl360Controls.Controls.Remove(this.btnBButton);
|
|
this.btnBButton.Location = new Point(494, 116);
|
|
this.btnBButton.Size = new Size(23, 23);
|
|
pnlDS4Controls.Controls.Add(this.btnBButton);
|
|
|
|
pnl360Controls.Controls.Remove(this.btnXButton);
|
|
this.btnXButton.Location = new Point(429, 116);
|
|
this.btnXButton.Size = new Size(23, 23);
|
|
pnlDS4Controls.Controls.Add(this.btnXButton);
|
|
|
|
pnl360Controls.Controls.Remove(this.btnYButton);
|
|
this.btnYButton.Location = new Point(460, 86);
|
|
this.btnYButton.Size = new Size(23, 23);
|
|
pnlDS4Controls.Controls.Add(this.btnYButton);
|
|
|
|
pnl360Controls.Controls.Remove(this.btnGuide);
|
|
this.btnGuide.Location = new Point(322, 160);
|
|
this.btnGuide.Size = new Size(23, 20);
|
|
pnlDS4Controls.Controls.Add(this.btnGuide);
|
|
|
|
pnl360Controls.Controls.Remove(this.btnLB);
|
|
this.btnLB.Location = new Point(164, 26);
|
|
this.btnLB.Size = new Size(66, 17);
|
|
pnlDS4Controls.Controls.Add(this.btnLB);
|
|
|
|
pnl360Controls.Controls.Remove(this.btnRB);
|
|
this.btnRB.Location = new Point(442, 26);
|
|
this.btnRB.Size = new Size(66, 17);
|
|
pnlDS4Controls.Controls.Add(this.btnRB);
|
|
|
|
pnl360Controls.Controls.Remove(this.btnLT);
|
|
this.btnLT.Location = new Point(178, 3);
|
|
this.btnLT.Size = new Size(43, 23);
|
|
pnlDS4Controls.Controls.Add(this.btnLT);
|
|
|
|
pnl360Controls.Controls.Remove(this.btnRT);
|
|
this.btnRT.Location = new Point(447, 3);
|
|
this.btnRT.Size = new Size(43, 23);
|
|
pnlDS4Controls.Controls.Add(this.btnRT);
|
|
|
|
pnl360Controls.Controls.Remove(this.btnBack);
|
|
this.btnBack.Location = new Point(238, 74);
|
|
this.btnBack.Size = new Size(16, 23);
|
|
pnlDS4Controls.Controls.Add(this.btnBack);
|
|
|
|
pnl360Controls.Controls.Remove(this.btnStart);
|
|
this.btnStart.Location = new Point(415, 74);
|
|
this.btnStart.Size = new Size(16, 23);
|
|
pnlDS4Controls.Controls.Add(this.btnStart);
|
|
|
|
pnl360Controls.Controls.Remove(this.btnDpadUp);
|
|
this.btnDpadUp.Location = new Point(190, 96);
|
|
this.btnDpadUp.Size = new Size(16, 18);
|
|
pnlDS4Controls.Controls.Add(this.btnDpadUp);
|
|
|
|
pnl360Controls.Controls.Remove(this.btnDpadRight);
|
|
this.btnDpadRight.Location = new Point(207, 116);
|
|
this.btnDpadRight.Size = new Size(24, 23);
|
|
pnlDS4Controls.Controls.Add(this.btnDpadRight);
|
|
|
|
pnl360Controls.Controls.Remove(this.btnDpadDown);
|
|
this.btnDpadDown.Location = new Point(184, 131);
|
|
this.btnDpadDown.Size = new Size(24, 30);
|
|
pnlDS4Controls.Controls.Add(this.btnDpadDown);
|
|
|
|
pnl360Controls.Controls.Remove(this.btnDpadLeft);
|
|
this.btnDpadLeft.Location = new Point(165, 118);
|
|
this.btnDpadLeft.Size = new Size(16, 18);
|
|
pnlDS4Controls.Controls.Add(this.btnDpadLeft);
|
|
|
|
pnl360Controls.Controls.Remove(this.btnLSUp);
|
|
this.btnLSUp.Location = new Point(256, 167);
|
|
this.btnLSUp.Size = new Size(16, 18);
|
|
pnlDS4Controls.Controls.Add(this.btnLSUp);
|
|
|
|
pnl360Controls.Controls.Remove(this.btnLSRight);
|
|
this.btnLSRight.Location = new Point(275, 179);
|
|
this.btnLSRight.Size = new Size(16, 18);
|
|
pnlDS4Controls.Controls.Add(this.btnLSRight);
|
|
|
|
pnl360Controls.Controls.Remove(this.btnLSDown);
|
|
this.btnLSDown.Location = new Point(258, 194);
|
|
this.btnLSDown.Size = new Size(16, 18);
|
|
pnlDS4Controls.Controls.Add(this.btnLSDown);
|
|
|
|
pnl360Controls.Controls.Remove(this.btnLSLeft);
|
|
this.btnLSLeft.Location = new Point(241, 181);
|
|
this.btnLSLeft.Size = new Size(16, 18);
|
|
pnlDS4Controls.Controls.Add(this.btnLSLeft);
|
|
|
|
pnl360Controls.Controls.Remove(this.btnRSUp);
|
|
this.btnRSUp.Location = new Point(398, 166);
|
|
this.btnRSUp.Size = new Size(16, 18);
|
|
pnlDS4Controls.Controls.Add(this.btnRSUp);
|
|
|
|
pnl360Controls.Controls.Remove(this.btnRSRight);
|
|
this.btnRSRight.Location = new Point(412, 179);
|
|
this.btnRSRight.Size = new Size(16, 18);
|
|
pnlDS4Controls.Controls.Add(this.btnRSRight);
|
|
|
|
pnl360Controls.Controls.Remove(this.btnRSDown);
|
|
this.btnRSDown.Location = new Point(397, 195);
|
|
this.btnRSDown.Size = new Size(16, 18);
|
|
pnlDS4Controls.Controls.Add(this.btnRSDown);
|
|
|
|
pnl360Controls.Controls.Remove(this.btnRSLeft);
|
|
this.btnRSLeft.Location = new Point(380, 182);
|
|
this.btnRSLeft.Size = new Size(16, 18);
|
|
pnlDS4Controls.Controls.Add(this.btnRSLeft);
|
|
|
|
pnl360Controls.Controls.Remove(this.btnLSClick);
|
|
this.btnLSClick.Location = new Point(256, 181);
|
|
this.btnLSClick.Size = new Size(16, 18);
|
|
pnlDS4Controls.Controls.Add(this.btnLSClick);
|
|
|
|
pnl360Controls.Controls.Remove(this.btnRSClick);
|
|
this.btnRSClick.Location = new Point(397, 181);
|
|
this.btnRSClick.Size = new Size(16, 18);
|
|
pnlDS4Controls.Controls.Add(this.btnRSClick);
|
|
|
|
pnl360Controls.Controls.Remove(this.lb360Tip);
|
|
pnlDS4Controls.Controls.Add(this.lb360Tip);
|
|
pnl360Controls.Controls.Remove(this.pBHighlight);
|
|
pnlDS4Controls.Controls.Add(this.pBHighlight);
|
|
//this.pnlDS4Controls.Paint += new PaintEventHandler(this.pnlDS4Controls_Paint);
|
|
}
|
|
|
|
private void PopulateDS4StrAliases()
|
|
{
|
|
ds4StrAliases["A Button"] = "Cross";
|
|
ds4StrAliases["B Button"] = "Circle";
|
|
ds4StrAliases["X Button"] = "Square";
|
|
ds4StrAliases["Y Button"] = "Triangle";
|
|
ds4StrAliases["Left Bumper"] = "L1";
|
|
ds4StrAliases["Right Bumper"] = "R1";
|
|
ds4StrAliases["Left Trigger"] = "L2";
|
|
ds4StrAliases["Right Trigger"] = "R2";
|
|
ds4StrAliases["Back"] = "Share";
|
|
ds4StrAliases["Start"] = "Options";
|
|
ds4StrAliases["Guide"] = "PS";
|
|
ds4StrAliases["Left Stick"] = "L3";
|
|
ds4StrAliases["Right Stick"] = "R3";
|
|
|
|
ds4StrAliases["Up Button"] = "Dpad Up";
|
|
ds4StrAliases["Right Button"] = "Dpad Right";
|
|
ds4StrAliases["Down Button"] = "Dpad Down";
|
|
ds4StrAliases["Left Button"] = "Dpad Left";
|
|
|
|
ds4StrAliases["Left X-Axis-"] = "LS Left";
|
|
ds4StrAliases["Left X-Axis+"] = "LS Right";
|
|
ds4StrAliases["Left Y-Axis-"] = "LS Up";
|
|
ds4StrAliases["Left Y-Axis+"] = "LS Down";
|
|
|
|
ds4StrAliases["Right X-Axis-"] = "RS Left";
|
|
ds4StrAliases["Right X-Axis+"] = "RS Right";
|
|
ds4StrAliases["Right Y-Axis-"] = "RS Up";
|
|
ds4StrAliases["Right Y-Axis+"] = "RS Down";
|
|
}
|
|
|
|
public void anybtn_Click(object sender, EventArgs e)
|
|
{
|
|
if (rb == null && sender is Button && ((Button)sender).Name != "bnMacro" && ((Button)sender).Name != "bnTest")
|
|
{
|
|
Button bn = ((Button)sender);
|
|
macrostag.Clear();
|
|
string keyname;
|
|
ushort val;
|
|
/*if (((Button)sender).Text.Contains('↑') || ((Button)sender).Text.Contains('↓') || ((Button)sender).Text.Contains('→') || ((Button)sender).Text.Contains('←') || ((Button)sender).Text.Contains('Ø'))
|
|
keyname = ((Button)sender).Tag.ToString();
|
|
else if (((Button)sender).Font.Name == "Webdings")
|
|
{
|
|
if (((Button)sender).Text == "9")
|
|
keyname = "Previous Track";
|
|
else if (((Button)sender).Text == "<")
|
|
keyname = "Stop Track";
|
|
else if (((Button)sender).Text == "4")
|
|
keyname = "Play/Pause";
|
|
else if (((Button)sender).Text == ":")
|
|
keyname = "Next Track";
|
|
else
|
|
keyname = "How did you get here?";
|
|
}
|
|
else */
|
|
if (bn.Tag == null)
|
|
keyname = bn.Text;
|
|
else if (bn.Tag.ToString().Contains("X360"))
|
|
keyname = bn.Tag.ToString().Substring(4);
|
|
else if (bn.Tag != null && ushort.TryParse(bn.Tag.ToString(), out val))
|
|
keyname = ((Keys)val).ToString();
|
|
else
|
|
keyname = bn.Tag.ToString();
|
|
|
|
object keytag;
|
|
//ushort val;
|
|
if (bn.Tag != null && bn.Tag.ToString().Contains("X360"))
|
|
{
|
|
//keytag = ((Button)sender).Tag.ToString().Substring(4);
|
|
keytag = Global.getX360ControlsByName(bn.Tag.ToString().Substring(4));
|
|
DS4Controls psButton = Global.getDS4ControlsByName(button.Name);
|
|
if ((X360Controls)keytag == Global.getDefaultX360ControlBinding(psButton) &&
|
|
!cBScanCode.Checked && !cBToggle.Checked && !rBShiftModifer.Checked)
|
|
{
|
|
// Reset action
|
|
keytag = null;
|
|
}
|
|
}
|
|
else if (bn.Tag != null && ushort.TryParse(bn.Tag.ToString(), out val))
|
|
keytag = val;
|
|
else
|
|
keytag = bn.Tag;
|
|
|
|
lBMacroOn.Visible = false;
|
|
string extras = null;
|
|
if (IsUsingExtras())
|
|
{
|
|
extras = GetExtras();
|
|
}
|
|
|
|
KeyValuePair<object, string> tag = new KeyValuePair<object, string>(keytag, extras);
|
|
|
|
newaction = true;
|
|
int value;
|
|
bool tagisint = keytag != null && int.TryParse(keytag.ToString(), out value);
|
|
bool scanavail = tagisint;
|
|
bool toggleavil = tagisint;
|
|
if (ops != null)
|
|
{
|
|
ops.ChangeButtonText(button, rBShiftModifer.Checked, tag,
|
|
(scanavail ? cBScanCode.Checked : false), (toggleavil ? cBToggle.Checked : false),
|
|
false, false, cBShiftButton.SelectedIndex);
|
|
}
|
|
else if (sA != null)
|
|
{
|
|
button.Text = keyname;
|
|
button.Tag = keytag;
|
|
button.ForeColor = Color.Black;
|
|
}
|
|
|
|
this.Close();
|
|
}
|
|
}
|
|
|
|
private string GetExtras()
|
|
{
|
|
string t =(byte)nUDHeavy.Value + "," + (byte)nUDLight.Value + "," +
|
|
(cBLightbar.Checked ? "1" + "," + tBRedBar.Value + "," + tBGreenBar.Value + "," + tBBlueBar.Value + "," + nUDLightFlash.Value: "0,0,0,0,0") + "," +
|
|
(cBMouse.Checked ? "1" + "," + (byte)nUDMouse.Value : "0,0");
|
|
|
|
return t;
|
|
}
|
|
|
|
private bool IsUsingExtras()
|
|
{
|
|
bool result = false;
|
|
result = result || (nUDHeavy.Value != 0);
|
|
result = result || (nUDLight.Value != 0);
|
|
result = result || (cBLightbar.Checked);
|
|
result = result ||
|
|
(tBRedBar.Value != 255 && tBGreenBar.Value != 255 &&
|
|
tBBlueBar.Value != 255);
|
|
|
|
result = result || (nUDLightFlash.Value != 0);
|
|
result = result || (cBMouse.Checked);
|
|
result = result || (nUDMouse.Value != 25);
|
|
return result;
|
|
}
|
|
|
|
private void finalMeasure(object sender, FormClosedEventArgs e)
|
|
{
|
|
if (ops != null)
|
|
{
|
|
if (rb != null) //if record macro is open
|
|
{
|
|
if (!rb.saved && rb.macros.Count > 0)
|
|
if (MessageBox.Show(Properties.Resources.SaveRecordedMacro, "DS4Windows", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == System.Windows.Forms.DialogResult.Yes)
|
|
rb.btnSave_Click(this, null);
|
|
}
|
|
if (lBMacroOn.Visible)
|
|
{
|
|
string extras = null;
|
|
if (IsUsingExtras())
|
|
{
|
|
extras = GetExtras();
|
|
}
|
|
|
|
KeyValuePair<object, string> tag = new KeyValuePair<object, string>(macrostag.ToArray(), extras);
|
|
ops.ChangeButtonText(button, rBShiftModifer.Checked, tag, cBScanCode.Checked, false, lBMacroOn.Visible, macrorepeat, cBShiftButton.SelectedIndex);
|
|
}
|
|
else if (!newaction)
|
|
{
|
|
string extras = null;
|
|
if (IsUsingExtras())
|
|
{
|
|
extras = GetExtras();
|
|
}
|
|
|
|
int value;
|
|
object tt = Global.GetDS4Action(device, button.Name, rBShiftModifer.Checked);
|
|
bool tagisint = tt != null
|
|
&& int.TryParse(tt.ToString(), out value);
|
|
bool scanavail = tagisint;
|
|
bool toggleavil = tagisint;
|
|
KeyValuePair<object, string> tag;
|
|
if (tt is X360Controls)
|
|
tag = new KeyValuePair<object, string>(getX360ControlsByName((X360Controls)tt, Global.outDevTypeTemp[device]), extras);
|
|
else
|
|
tag = new KeyValuePair<object, string>(tt, extras);
|
|
ops.ChangeButtonText(button, rBShiftModifer.Checked, tag, (scanavail ? cBScanCode.Checked : false), (toggleavil ? cBToggle.Checked : false), lBMacroOn.Visible, macrorepeat, cBShiftButton.SelectedIndex);
|
|
}
|
|
//ops.Toggle_Bn((scanavail ? cBScanCode.Checked : false), (toggleavil ? cBToggle.Checked : false), lBMacroOn.Visible, macrorepeat);
|
|
ops.UpdateLists();
|
|
}
|
|
else if (sA != null)
|
|
{
|
|
if (button.Tag != null)
|
|
{
|
|
int key;
|
|
if (int.TryParse(button.Tag.ToString(), out key))
|
|
button.Text = ((Keys)key).ToString() +
|
|
(cBScanCode.Checked ? " (SC)" : "") +
|
|
(cBToggle.Checked ? " (Toggle)" : "");
|
|
}
|
|
//button.Font = new Font(button.Font, (cBScanCode.Checked ? FontStyle.Bold : FontStyle.Regular) | (cBToggle.Checked ? FontStyle.Italic : FontStyle.Regular));
|
|
}
|
|
}
|
|
|
|
private void Key_Down_Action(object sender, KeyEventArgs e)
|
|
{
|
|
if (rb == null && !(ActiveControl is NumericUpDown) && !(ActiveControl is TrackBar))
|
|
{
|
|
lBMacroOn.Visible = false;
|
|
string extras = null;
|
|
if (IsUsingExtras())
|
|
{
|
|
extras = GetExtras();
|
|
}
|
|
|
|
KeyValuePair<object, string> tag = new KeyValuePair<object, string>(e.KeyValue, extras);
|
|
newaction = true;
|
|
if (ops != null)
|
|
{
|
|
ops.ChangeButtonText(button, rBShiftModifer.Checked, tag,
|
|
cBScanCode.Checked, cBToggle.Checked, false, false, cBShiftButton.SelectedIndex);
|
|
}
|
|
else if (sA != null)
|
|
{
|
|
button.Text = e.KeyCode.ToString();
|
|
button.Tag = e.KeyValue;
|
|
button.ForeColor = Color.Black;
|
|
}
|
|
|
|
this.Close();
|
|
}
|
|
}
|
|
|
|
private void Key_Press_Action(object sender, KeyEventArgs e)
|
|
{
|
|
if (rb == null && !(ActiveControl is NumericUpDown) && !(ActiveControl is TrackBar))
|
|
{
|
|
lBMacroOn.Visible = false;
|
|
string extras = null;
|
|
if (IsUsingExtras())
|
|
{
|
|
extras = GetExtras();
|
|
}
|
|
|
|
KeyValuePair<object, string> tag = new KeyValuePair<object, string>(e.KeyValue, extras);
|
|
newaction = true;
|
|
if (ops != null)
|
|
{
|
|
ops.ChangeButtonText(button, rBShiftModifer.Checked, tag,
|
|
cBScanCode.Checked, cBToggle.Checked, false, false, cBShiftButton.SelectedIndex);
|
|
}
|
|
else if (sA != null)
|
|
{
|
|
button.Text = e.KeyCode.ToString();
|
|
button.Tag = e.KeyValue;
|
|
button.ForeColor = Color.Black;
|
|
}
|
|
|
|
this.Close();
|
|
}
|
|
}
|
|
|
|
private void btnMacro_Click(object sender, EventArgs e)
|
|
{
|
|
gBExtras.Controls.Add(cBScanCode);
|
|
cBScanCode.Location = new Point(lBTip.Location.X, lBTip.Location.Y + lBTip.Size.Height);
|
|
rb = new RecordBox(this);
|
|
rb.TopLevel = false;
|
|
rb.Dock = DockStyle.Fill;
|
|
rb.Visible = true;
|
|
Controls.Add(rb);
|
|
rb.BringToFront();
|
|
rb.FormClosed += delegate { Controls.Add(cBScanCode); cBScanCode.Location = oldSC; ActiveControl = lBMacroOn; rb = null; };
|
|
}
|
|
|
|
protected override bool IsInputKey(Keys keyData)
|
|
{
|
|
switch (keyData)
|
|
{
|
|
case Keys.Right:
|
|
case Keys.Left:
|
|
case Keys.Up:
|
|
case Keys.Down:
|
|
return true;
|
|
|
|
case (Keys.Shift | Keys.Right):
|
|
case (Keys.Shift | Keys.Left):
|
|
case (Keys.Shift | Keys.Up):
|
|
case (Keys.Shift | Keys.Down):
|
|
return true;
|
|
|
|
default: break;
|
|
}
|
|
return base.IsInputKey(keyData);
|
|
}
|
|
protected override void OnKeyDown(KeyEventArgs e)
|
|
{
|
|
base.OnKeyDown(e);
|
|
switch (e.KeyCode)
|
|
{
|
|
case Keys.Left:
|
|
case Keys.Right:
|
|
case Keys.Up:
|
|
case Keys.Down:
|
|
{
|
|
if (e.Shift)
|
|
{
|
|
|
|
}
|
|
else
|
|
{
|
|
}
|
|
break;
|
|
}
|
|
default: break;
|
|
}
|
|
}
|
|
|
|
private void SetColorToolTip(object sender, EventArgs e)
|
|
{
|
|
TrackBar tb = (TrackBar)sender;
|
|
cBLightbar.Checked = true;
|
|
if (tb != null)
|
|
{
|
|
int value = tb.Value;
|
|
int sat = bgc - (value < bgc ? value : bgc);
|
|
int som = bgc + 11 * (int)(value * 0.0039215);
|
|
tb.BackColor = Color.FromArgb(tb.Name.ToLower().Contains("red") ? som : sat, tb.Name.ToLower().Contains("green") ? som : sat, tb.Name.ToLower().Contains("blue") ? som : sat);
|
|
}
|
|
|
|
alphacolor = Math.Max(tBRedBar.Value, Math.Max(tBGreenBar.Value, tBBlueBar.Value));
|
|
reg = Color.FromArgb(tBRedBar.Value, tBGreenBar.Value, tBBlueBar.Value);
|
|
full = HuetoRGB(reg.GetHue(), reg.GetBrightness(), reg);
|
|
bnColor.BackColor = Color.FromArgb((alphacolor > 205 ? 255 : (alphacolor + 50)), full);
|
|
((Label)gBExtras.Controls.Find("lb" + tb.Name.Substring(2, tb.Name.Length - 5) + "V", true)[0]).Text = tb.Value.ToString();
|
|
extraChanged = true;
|
|
}
|
|
|
|
public Color HuetoRGB(float hue, float light, Color rgb)
|
|
{
|
|
float L = (float)Math.Max(.5, light);
|
|
float C = (1 - Math.Abs(2 * L - 1));
|
|
float X = (C * (1 - Math.Abs((hue / 60) % 2 - 1)));
|
|
float m = L - C / 2;
|
|
float R = 0, G = 0, B = 0;
|
|
if (light == 1) return Color.FromName("White");
|
|
else if (rgb.R == rgb.G && rgb.G == rgb.B) return Color.FromName("White");
|
|
else if (0 <= hue && hue < 60) { R = C; G = X; }
|
|
else if (60 <= hue && hue < 120) { R = X; G = C; }
|
|
else if (120 <= hue && hue < 180) { G = C; B = X; }
|
|
else if (180 <= hue && hue < 240) { G = X; B = C; }
|
|
else if (240 <= hue && hue < 300) { R = X; B = C; }
|
|
else if (300 <= hue && hue < 360) { R = C; B = X; }
|
|
return Color.FromArgb((int)((R + m) * 255), (int)((G + m) * 255), (int)((B + m) * 255));
|
|
}
|
|
|
|
private void bnColor_Click(object sender, EventArgs e)
|
|
{
|
|
advColorDialog.Color = bnColor.BackColor;
|
|
if (advColorDialog.ShowDialog() == DialogResult.OK)
|
|
{
|
|
cBLightbar.Checked = true;
|
|
bnColor.BackColor = advColorDialog.Color;
|
|
tBRedBar.Value = advColorDialog.Color.R;
|
|
tBGreenBar.Value = advColorDialog.Color.G;
|
|
tBBlueBar.Value = advColorDialog.Color.B;
|
|
extraChanged = true;
|
|
}
|
|
|
|
if (device < 4)
|
|
DS4LightBar.forcelight[device] = false;
|
|
}
|
|
|
|
private void advColorDialog_OnUpdateColor(Color color, EventArgs e)
|
|
{
|
|
if (device < 4)
|
|
{
|
|
DS4Color dcolor = new DS4Color { red = color.R, green = color.G, blue = color.B };
|
|
DS4LightBar.forcedColor[device] = dcolor;
|
|
DS4LightBar.forcedFlash[device] = 0;
|
|
DS4LightBar.forcelight[device] = true;
|
|
}
|
|
}
|
|
|
|
private void Hightlight_Hover(object sender, EventArgs e)
|
|
{
|
|
pBHighlight.Visible = true;
|
|
lb360Tip.Visible = true;
|
|
Control c = (Control)sender;
|
|
Size s = c.Size;
|
|
Size s2 = pBHighlight.Size;
|
|
Point l = c.Location;
|
|
pBHighlight.Location = new Point(l.X + s.Width / 2 - s2.Width / 2, l.Y + s.Height / 2 - s2.Height / 2);
|
|
Point l2 = pBHighlight.Location;
|
|
lb360Tip.Text = X360ControlName(c.Tag.ToString().Substring(4));
|
|
lb360Tip.Location = new Point(l2.X + s2.Width / 2 - lb360Tip.Width / 2, l2.Y - 20);
|
|
lb360Tip.BringToFront();
|
|
pBHighlight.BringToFront();
|
|
}
|
|
|
|
private string X360ControlName(string v)
|
|
{
|
|
string result = string.Empty;
|
|
if (use360)
|
|
{
|
|
result = v;
|
|
}
|
|
else
|
|
{
|
|
ds4StrAliases.TryGetValue(v, out result);
|
|
}
|
|
|
|
return result;
|
|
}
|
|
|
|
private void Highlight_Leave(object sender, EventArgs e)
|
|
{
|
|
pBHighlight.Visible = false;
|
|
lb360Tip.Visible = false;
|
|
}
|
|
|
|
private void rBShift_CheckedChanged(object sender, EventArgs e)
|
|
{
|
|
if (!loading && extraChanged)
|
|
{
|
|
string strextras = null;
|
|
if (IsUsingExtras())
|
|
{
|
|
strextras = GetExtras();
|
|
}
|
|
|
|
Global.UpdateDS4Extra(device, button.Name, !rBShiftModifer.Checked, strextras);
|
|
}
|
|
|
|
object tagO = Global.GetDS4Action(device, button.Name, rBShiftModifer.Checked);
|
|
if (rBShiftModifer.Checked)
|
|
btnDefault.Text = Properties.Resources.FallBack;
|
|
else
|
|
btnDefault.Text = defaultText;
|
|
|
|
cBShiftButton.Visible = rBShiftModifer.Checked;
|
|
macrostag.Clear();
|
|
lBMacroOn.Visible = false;
|
|
newaction = false;
|
|
Highlight_Leave(null, null);
|
|
foreach (Control control in Controls)
|
|
{
|
|
if (control is Button)
|
|
((Button)control).BackColor = SystemColors.Control;
|
|
}
|
|
|
|
if (tagO != null)
|
|
{
|
|
if (tagO is int || tagO is ushort)
|
|
{
|
|
int tag = int.Parse(tagO.ToString());
|
|
int i;
|
|
foreach (Control control in Controls)
|
|
{
|
|
if (control is Button)
|
|
{
|
|
if (int.TryParse(control.Tag?.ToString(), out i) && i == tag)
|
|
{
|
|
((Button)control).BackColor = Color.LightGreen;
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
else if (tagO is int[])
|
|
{
|
|
int[] tag = (int[])tagO;
|
|
lBMacroOn.Visible = true;
|
|
foreach (int i in tag)
|
|
macrostag.Add(i);
|
|
|
|
if (Global.GetDS4KeyType(device, button.Name, rBShiftModifer.Checked).HasFlag(DS4KeyType.HoldMacro))
|
|
macrorepeat = true;
|
|
}
|
|
else if (tagO is string || tagO is X360Controls)
|
|
{
|
|
string tag;
|
|
if (tagO is X360Controls)
|
|
tag = getX360ControlsByName((X360Controls)tagO, Global.outDevTypeTemp[device]);
|
|
else
|
|
tag = tagO.ToString();
|
|
|
|
foreach (Control control in Controls)
|
|
{
|
|
if (control is Button)
|
|
{
|
|
if (control.Tag?.ToString() == tag)
|
|
{
|
|
((Button)control).BackColor = Color.LightGreen;
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
foreach (Control control in pnl360Controls.Controls)
|
|
{
|
|
if (control is Button)
|
|
{
|
|
if (control.Tag?.ToString().Substring(4) == tag)
|
|
{
|
|
Hightlight_Hover(((Button)control), null);
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
else
|
|
{
|
|
btnDefault.BackColor = Color.LightGreen;
|
|
if (rBRegular.Checked && ops.defaults.ContainsKey(button.Name))
|
|
{
|
|
tagO = ops.defaults[button.Name];
|
|
string tag;
|
|
if (tagO is X360Controls)
|
|
tag = getX360ControlsByName((X360Controls)tagO, Global.outDevTypeTemp[device]);
|
|
else
|
|
tag = tagO.ToString();
|
|
|
|
foreach (Control control in Controls)
|
|
{
|
|
if (control is Button)
|
|
{
|
|
if (control.Tag != null && control.Tag.ToString().Contains("X360") ? control.Tag?.ToString().Substring(4) == tag : control.Tag?.ToString() == tag)
|
|
{
|
|
((Button)control).BackColor = Color.LightGreen;
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
foreach (Control control in pnl360Controls.Controls)
|
|
{
|
|
if (control is Button)
|
|
{
|
|
if (control.Tag?.ToString().Substring(4) == tag)
|
|
{
|
|
Hightlight_Hover(((Button)control), null);
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
string dcExtras = Global.GetDS4Extra(device, button.Name, rBShiftModifer.Checked);
|
|
string[] extras = null;
|
|
if (!string.IsNullOrEmpty(dcExtras))
|
|
{
|
|
extras = dcExtras.Split(',');
|
|
}
|
|
|
|
if (extras != null)
|
|
{
|
|
int b;
|
|
try
|
|
{
|
|
if (int.TryParse(extras[0], out b)) nUDHeavy.Value = b;
|
|
if (int.TryParse(extras[1], out b)) nUDLight.Value = b;
|
|
if (int.TryParse(extras[2], out b))
|
|
{
|
|
if (b == 1)
|
|
{
|
|
cBLightbar.Checked = true;
|
|
if (int.TryParse(extras[3], out b)) tBRedBar.Value = b;
|
|
if (int.TryParse(extras[4], out b)) tBGreenBar.Value = b;
|
|
if (int.TryParse(extras[5], out b)) tBBlueBar.Value = b;
|
|
if (int.TryParse(extras[6], out b)) nUDLightFlash.Value = b;
|
|
}
|
|
else
|
|
{
|
|
|
|
tBRedBar.Value = 255;
|
|
tBGreenBar.Value = 255;
|
|
tBBlueBar.Value = 255;
|
|
nUDLightFlash.Value = 0;
|
|
cBLightbar.Checked = false;
|
|
}
|
|
}
|
|
|
|
if (int.TryParse(extras[7], out b))
|
|
{
|
|
if (b == 1)
|
|
{
|
|
cBMouse.Checked = true;
|
|
if (int.TryParse(extras[8], out b)) nUDMouse.Value = b;
|
|
}
|
|
else
|
|
{
|
|
nUDMouse.Value = 25;
|
|
cBMouse.Checked = false;
|
|
}
|
|
}
|
|
}
|
|
catch
|
|
{
|
|
nUDHeavy.Value = 0;
|
|
nUDLight.Value = 0;
|
|
tBRedBar.Value = 255;
|
|
tBGreenBar.Value = 255;
|
|
tBBlueBar.Value = 255;
|
|
nUDLightFlash.Value = 0;
|
|
cBLightbar.Checked = false;
|
|
nUDMouse.Value = 25;
|
|
cBMouse.Checked = false;
|
|
}
|
|
}
|
|
|
|
extraChanged = false;
|
|
}
|
|
|
|
public static string getX360ControlsByName(X360Controls key,
|
|
OutContType contType=OutContType.X360)
|
|
{
|
|
if (contType == OutContType.X360 || contType== OutContType.None)
|
|
{
|
|
switch (key)
|
|
{
|
|
case X360Controls.Back: return "Back";
|
|
case X360Controls.LS: return "Left Stick";
|
|
case X360Controls.RS: return "Right Stick";
|
|
case X360Controls.Start: return "Start";
|
|
case X360Controls.DpadUp: return "Up Button";
|
|
case X360Controls.DpadRight: return "Right Button";
|
|
case X360Controls.DpadDown: return "Down Button";
|
|
case X360Controls.DpadLeft: return "Left Button";
|
|
|
|
case X360Controls.LB: return "Left Bumper";
|
|
case X360Controls.RB: return "Right Bumper";
|
|
case X360Controls.Y: return "Y Button";
|
|
case X360Controls.B: return "B Button";
|
|
case X360Controls.A: return "A Button";
|
|
case X360Controls.X: return "X Button";
|
|
|
|
case X360Controls.Guide: return "Guide";
|
|
case X360Controls.LXNeg: return "Left X-Axis-";
|
|
case X360Controls.LYNeg: return "Left Y-Axis-";
|
|
case X360Controls.RXNeg: return "Right X-Axis-";
|
|
case X360Controls.RYNeg: return "Right Y-Axis-";
|
|
|
|
case X360Controls.LXPos: return "Left X-Axis+";
|
|
case X360Controls.LYPos: return "Left Y-Axis+";
|
|
case X360Controls.RXPos: return "Right X-Axis+";
|
|
case X360Controls.RYPos: return "Right Y-Axis+";
|
|
case X360Controls.LT: return "Left Trigger";
|
|
case X360Controls.RT: return "Right Trigger";
|
|
|
|
case X360Controls.LeftMouse: return "Left Mouse Button";
|
|
case X360Controls.RightMouse: return "Right Mouse Button";
|
|
case X360Controls.MiddleMouse: return "Middle Mouse Button";
|
|
case X360Controls.FourthMouse: return "4th Mouse Button";
|
|
case X360Controls.FifthMouse: return "5th Mouse Button";
|
|
case X360Controls.WUP: return "Mouse Wheel Up";
|
|
case X360Controls.WDOWN: return "Mouse Wheel Down";
|
|
case X360Controls.MouseUp: return "Mouse Up";
|
|
case X360Controls.MouseDown: return "Mouse Down";
|
|
case X360Controls.MouseLeft: return "Mouse Left";
|
|
case X360Controls.MouseRight: return "Mouse Right";
|
|
case X360Controls.Unbound: return "Unbound";
|
|
default: break;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
switch (key)
|
|
{
|
|
case X360Controls.Back: return "Share";
|
|
case X360Controls.LS: return "L3";
|
|
case X360Controls.RS: return "R3";
|
|
case X360Controls.Start: return "Options";
|
|
case X360Controls.DpadUp: return "Dpad Up";
|
|
case X360Controls.DpadRight: return "Dpad Right";
|
|
case X360Controls.DpadDown: return "Dpad Down";
|
|
case X360Controls.DpadLeft: return "Dpad Left";
|
|
|
|
case X360Controls.LB: return "L1";
|
|
case X360Controls.RB: return "R1";
|
|
case X360Controls.Y: return "Triangle";
|
|
case X360Controls.B: return "Circle";
|
|
case X360Controls.A: return "Cross";
|
|
case X360Controls.X: return "Square";
|
|
|
|
case X360Controls.Guide: return "PS";
|
|
case X360Controls.LXNeg: return "Left X-Axis-";
|
|
case X360Controls.LYNeg: return "Left Y-Axis-";
|
|
case X360Controls.RXNeg: return "Right X-Axis-";
|
|
case X360Controls.RYNeg: return "Right Y-Axis-";
|
|
|
|
case X360Controls.LXPos: return "Left X-Axis+";
|
|
case X360Controls.LYPos: return "Left Y-Axis+";
|
|
case X360Controls.RXPos: return "Right X-Axis+";
|
|
case X360Controls.RYPos: return "Right Y-Axis+";
|
|
case X360Controls.LT: return "L2";
|
|
case X360Controls.RT: return "R2";
|
|
|
|
case X360Controls.LeftMouse: return "Left Mouse Button";
|
|
case X360Controls.RightMouse: return "Right Mouse Button";
|
|
case X360Controls.MiddleMouse: return "Middle Mouse Button";
|
|
case X360Controls.FourthMouse: return "4th Mouse Button";
|
|
case X360Controls.FifthMouse: return "5th Mouse Button";
|
|
case X360Controls.WUP: return "Mouse Wheel Up";
|
|
case X360Controls.WDOWN: return "Mouse Wheel Down";
|
|
case X360Controls.MouseUp: return "Mouse Up";
|
|
case X360Controls.MouseDown: return "Mouse Down";
|
|
case X360Controls.MouseLeft: return "Mouse Left";
|
|
case X360Controls.MouseRight: return "Mouse Right";
|
|
case X360Controls.Unbound: return "Unbound";
|
|
default: break;
|
|
}
|
|
}
|
|
|
|
return "Unbound";
|
|
}
|
|
|
|
private void bnTest_Click(object sender, EventArgs e)
|
|
{
|
|
Button btn = (Button)sender;
|
|
if (device < 4)
|
|
{
|
|
if (btn.Text == Properties.Resources.TestText)
|
|
{
|
|
Program.rootHub.setRumble((byte)nUDHeavy.Value, (byte)nUDLight.Value, device);
|
|
btn.Text = Properties.Resources.StopText;
|
|
}
|
|
else
|
|
{
|
|
Program.rootHub.setRumble(0, 0, device);
|
|
btn.Text = Properties.Resources.TestText;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
if (btn.Text == Properties.Resources.TestText)
|
|
{
|
|
Program.rootHub.setRumble((byte)nUDHeavy.Value, (byte)nUDLight.Value, 0);
|
|
btn.Text = Properties.Resources.StopText;
|
|
}
|
|
else
|
|
{
|
|
Program.rootHub.setRumble(0, 0, 0);
|
|
btn.Text = Properties.Resources.TestText;
|
|
}
|
|
}
|
|
}
|
|
|
|
private void ExtraChanged(object sender, EventArgs e)
|
|
{
|
|
extraChanged = true;
|
|
}
|
|
|
|
private void pnl360Controls_Paint(object sender, PaintEventArgs e)
|
|
{
|
|
//e.Graphics.DrawImage(pnl360BgImage, new Rectangle(0, 13, Convert.ToInt32(pnl360Controls.Width), Convert.ToInt32(pnl360Controls.Height - 26)), new Rectangle(0, 0, Convert.ToInt32(pnl360BgImage.Width), Convert.ToInt32(pnl360BgImage.Height)), GraphicsUnit.Pixel);
|
|
}
|
|
|
|
private void pnlDS4Controls_Paint(object sender, PaintEventArgs e)
|
|
{
|
|
/*e.Graphics.DrawImage(pnlDS4BgImage,
|
|
new Rectangle(0, 13, Convert.ToInt32(pnlDS4Controls.Width),
|
|
Convert.ToInt32(pnlDS4Controls.Height - 26)),
|
|
new Rectangle(0, 0, Convert.ToInt32(pnlDS4Controls.Width),
|
|
Convert.ToInt32(pnlDS4Controls.Height)), GraphicsUnit.Pixel);
|
|
*/
|
|
}
|
|
|
|
private void nUD_ValueChanged(object sender, EventArgs e)
|
|
{
|
|
if (bnTest.Text != Properties.Resources.TestText)
|
|
{
|
|
if (device < 4)
|
|
Program.rootHub.setRumble((byte)nUDHeavy.Value, (byte)nUDLight.Value, device);
|
|
else
|
|
Program.rootHub.setRumble((byte)nUDHeavy.Value, (byte)nUDLight.Value, 0);
|
|
}
|
|
|
|
extraChanged = true;
|
|
}
|
|
|
|
private void nUDMouse_ValueChanged(object sender, EventArgs e)
|
|
{
|
|
cBMouse.Checked = true;
|
|
extraChanged = true;
|
|
}
|
|
}
|
|
}
|