241 lines
7.0 KiB
C#
241 lines
7.0 KiB
C#
using System;
|
|
using System.Drawing;
|
|
using System.Windows.Forms;
|
|
using System.Text;
|
|
|
|
namespace BizHawk.MultiClient
|
|
{
|
|
public class VirtualPadPCE : VirtualPad
|
|
{
|
|
public VirtualPadPCE()
|
|
{
|
|
ButtonPoints[0] = new Point(14, 2);
|
|
ButtonPoints[1] = new Point(14, 46);
|
|
ButtonPoints[2] = new Point(2, 24);
|
|
ButtonPoints[3] = new Point(24, 24);
|
|
ButtonPoints[4] = new Point(52, 24);
|
|
ButtonPoints[5] = new Point(74, 24);
|
|
ButtonPoints[6] = new Point(122, 24);
|
|
ButtonPoints[7] = new Point(146, 24);
|
|
|
|
SetStyle(ControlStyles.AllPaintingInWmPaint, true);
|
|
SetStyle(ControlStyles.UserPaint, true);
|
|
SetStyle(ControlStyles.DoubleBuffer, true);
|
|
BorderStyle = BorderStyle.Fixed3D;
|
|
Paint += VirtualPad_Paint;
|
|
Size = new Size(174, 74);
|
|
|
|
PU = new CheckBox
|
|
{
|
|
Appearance = Appearance.Button,
|
|
AutoSize = true,
|
|
Image = Properties.Resources.BlueUp,
|
|
ImageAlign = ContentAlignment.BottomRight,
|
|
Location = ButtonPoints[0],
|
|
TabIndex = 1,
|
|
UseVisualStyleBackColor = true
|
|
};
|
|
PU.CheckedChanged += Buttons_CheckedChanged;
|
|
|
|
PD = new CheckBox
|
|
{
|
|
Appearance = Appearance.Button,
|
|
AutoSize = true,
|
|
Image = Properties.Resources.BlueDown,
|
|
ImageAlign = ContentAlignment.BottomRight,
|
|
Location = ButtonPoints[1],
|
|
TabIndex = 4,
|
|
UseVisualStyleBackColor = true
|
|
};
|
|
PD.CheckedChanged += Buttons_CheckedChanged;
|
|
|
|
PR = new CheckBox
|
|
{
|
|
Appearance = Appearance.Button,
|
|
AutoSize = true,
|
|
Image = Properties.Resources.Forward,
|
|
ImageAlign = ContentAlignment.BottomRight,
|
|
Location = ButtonPoints[3],
|
|
TabIndex = 3,
|
|
UseVisualStyleBackColor = true
|
|
};
|
|
PR.CheckedChanged += Buttons_CheckedChanged;
|
|
|
|
PL = new CheckBox
|
|
{
|
|
Appearance = Appearance.Button,
|
|
AutoSize = true,
|
|
Image = Properties.Resources.Back,
|
|
ImageAlign = ContentAlignment.BottomRight,
|
|
Location = ButtonPoints[2],
|
|
TabIndex = 2,
|
|
UseVisualStyleBackColor = true
|
|
};
|
|
PL.CheckedChanged += Buttons_CheckedChanged;
|
|
|
|
B1 = new CheckBox
|
|
{
|
|
Appearance = Appearance.Button,
|
|
AutoSize = true,
|
|
Location = ButtonPoints[4],
|
|
TabIndex = 5,
|
|
Text = "s",
|
|
TextAlign = ContentAlignment.BottomCenter,
|
|
UseVisualStyleBackColor = true
|
|
};
|
|
B1.CheckedChanged += Buttons_CheckedChanged;
|
|
|
|
B2 = new CheckBox
|
|
{
|
|
Appearance = Appearance.Button,
|
|
AutoSize = true,
|
|
Location = ButtonPoints[5],
|
|
TabIndex = 6,
|
|
Text = "R",
|
|
TextAlign = ContentAlignment.BottomCenter,
|
|
UseVisualStyleBackColor = true
|
|
};
|
|
B2.CheckedChanged += Buttons_CheckedChanged;
|
|
|
|
B3 = new CheckBox
|
|
{
|
|
Appearance = Appearance.Button,
|
|
AutoSize = true,
|
|
Location = ButtonPoints[6],
|
|
TabIndex = 7,
|
|
Text = "II",
|
|
TextAlign = ContentAlignment.BottomCenter,
|
|
UseVisualStyleBackColor = true
|
|
};
|
|
B3.CheckedChanged += Buttons_CheckedChanged;
|
|
|
|
B4 = new CheckBox
|
|
{
|
|
Appearance = Appearance.Button,
|
|
AutoSize = true,
|
|
Location = ButtonPoints[7],
|
|
TabIndex = 8,
|
|
Text = "I",
|
|
TextAlign = ContentAlignment.BottomCenter,
|
|
UseVisualStyleBackColor = true
|
|
};
|
|
B4.CheckedChanged += Buttons_CheckedChanged;
|
|
|
|
Controls.Add(PU);
|
|
Controls.Add(PD);
|
|
Controls.Add(PL);
|
|
Controls.Add(PR);
|
|
Controls.Add(B1);
|
|
Controls.Add(B2);
|
|
Controls.Add(B3);
|
|
Controls.Add(B4);
|
|
}
|
|
|
|
protected override bool ProcessCmdKey(ref Message msg, Keys keyData)
|
|
{
|
|
if (keyData == Keys.Up)
|
|
{
|
|
//TODO: move to next logical key
|
|
Refresh();
|
|
}
|
|
else if (keyData == Keys.Down)
|
|
{
|
|
Refresh();
|
|
}
|
|
else if (keyData == Keys.Left)
|
|
{
|
|
Refresh();
|
|
}
|
|
else if (keyData == Keys.Right)
|
|
{
|
|
Refresh();
|
|
}
|
|
else if (keyData == Keys.Tab)
|
|
{
|
|
Refresh();
|
|
}
|
|
return true;
|
|
}
|
|
|
|
private void VirtualPad_Paint(object sender, PaintEventArgs e)
|
|
{
|
|
|
|
}
|
|
|
|
public override string GetMnemonic()
|
|
{
|
|
StringBuilder input = new StringBuilder("");
|
|
input.Append(PR.Checked ? "R" : ".");
|
|
input.Append(PL.Checked ? "L" : ".");
|
|
input.Append(PD.Checked ? "D" : ".");
|
|
input.Append(PU.Checked ? "U" : ".");
|
|
|
|
input.Append(B2.Checked ? "S" : ".");
|
|
input.Append(B1.Checked ? "s" : ".");
|
|
input.Append(B3.Checked ? "B" : ".");
|
|
input.Append(B4.Checked ? "A" : ".");
|
|
input.Append("|");
|
|
return input.ToString();
|
|
}
|
|
|
|
public override void SetButtons(string buttons)
|
|
{
|
|
if (buttons.Length < 8) return;
|
|
if (buttons[0] == '.') PR.Checked = false; else PR.Checked = true;
|
|
if (buttons[1] == '.') PL.Checked = false; else PL.Checked = true;
|
|
if (buttons[2] == '.') PD.Checked = false; else PD.Checked = true;
|
|
if (buttons[3] == '.') PU.Checked = false; else PU.Checked = true;
|
|
|
|
if (buttons[4] == '.') B2.Checked = false; else B2.Checked = true;
|
|
if (buttons[5] == '.') B1.Checked = false; else B1.Checked = true;
|
|
if (buttons[6] == '.') B4.Checked = false; else B4.Checked = true;
|
|
if (buttons[7] == '.') B3.Checked = false; else B3.Checked = true;
|
|
}
|
|
|
|
private void Buttons_CheckedChanged(object sender, EventArgs e)
|
|
{
|
|
if (Global.Emulator.SystemId != "PCE") return;
|
|
if (sender == PU)
|
|
Global.StickyXORAdapter.SetSticky(Controller + " Up", PU.Checked);
|
|
else if (sender == PD)
|
|
Global.StickyXORAdapter.SetSticky(Controller + " Down", PD.Checked);
|
|
else if (sender == PL)
|
|
Global.StickyXORAdapter.SetSticky(Controller + " Left", PL.Checked);
|
|
else if (sender == PR)
|
|
Global.StickyXORAdapter.SetSticky(Controller + " Right", PR.Checked);
|
|
else if (sender == B1)
|
|
Global.StickyXORAdapter.SetSticky(Controller + " Select", B1.Checked);
|
|
else if (sender == B2)
|
|
Global.StickyXORAdapter.SetSticky(Controller + " Run", B2.Checked);
|
|
else if (sender == B3)
|
|
Global.StickyXORAdapter.SetSticky(Controller + " B2", B3.Checked);
|
|
else if (sender == B4)
|
|
Global.StickyXORAdapter.SetSticky(Controller + " B1", B4.Checked);
|
|
}
|
|
|
|
public override void Clear()
|
|
{
|
|
if (Global.Emulator.SystemId != "PCE" && Global.Emulator.SystemId != "PCECD" && Global.Emulator.SystemId != "SGX") return;
|
|
|
|
if (PU.Checked) Global.StickyXORAdapter.SetSticky(Controller + " Up", false);
|
|
if (PD.Checked) Global.StickyXORAdapter.SetSticky(Controller + " Down", false);
|
|
if (PL.Checked) Global.StickyXORAdapter.SetSticky(Controller + " Left", false);
|
|
if (PR.Checked) Global.StickyXORAdapter.SetSticky(Controller + " Right", false);
|
|
if (B1.Checked) Global.StickyXORAdapter.SetSticky(Controller + " Select", false);
|
|
if (B2.Checked) Global.StickyXORAdapter.SetSticky(Controller + " Run", false);
|
|
if (B3.Checked) Global.StickyXORAdapter.SetSticky(Controller + " B2", false);
|
|
if (B4.Checked) Global.StickyXORAdapter.SetSticky(Controller + " B1", false);
|
|
|
|
PU.Checked = false;
|
|
PD.Checked = false;
|
|
PL.Checked = false;
|
|
PR.Checked = false;
|
|
|
|
B1.Checked = false;
|
|
B2.Checked = false;
|
|
B3.Checked = false;
|
|
B4.Checked = false;
|
|
}
|
|
}
|
|
}
|