100 lines
2.1 KiB
C#
100 lines
2.1 KiB
C#
using System;
|
|
using System.Text;
|
|
using System.Windows.Forms;
|
|
|
|
namespace BizHawk.MultiClient
|
|
{
|
|
public partial class VirtualPadSaturnControl : UserControl, IVirtualPad
|
|
{
|
|
public VirtualPadSaturnControl()
|
|
{
|
|
SetStyle(ControlStyles.AllPaintingInWmPaint, true);
|
|
SetStyle(ControlStyles.UserPaint, true);
|
|
SetStyle(ControlStyles.DoubleBuffer, true);
|
|
BorderStyle = BorderStyle.Fixed3D;
|
|
Paint += VirtualPad_Paint;
|
|
InitializeComponent();
|
|
}
|
|
|
|
private void VirtualPadSaturnControl_Load(object sender, EventArgs e)
|
|
{
|
|
|
|
}
|
|
|
|
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 string GetMnemonic()
|
|
{
|
|
StringBuilder input = new StringBuilder("");
|
|
input.Append(B1.Checked ? "P" : ".");
|
|
input.Append(B2.Checked ? "r" : ".");
|
|
input.Append("|");
|
|
return input.ToString();
|
|
}
|
|
|
|
public void SetButtons(string buttons)
|
|
{
|
|
if (buttons.Length < 2) return;
|
|
if (buttons[0] == '.') B1.Checked = false; else B1.Checked = true;
|
|
if (buttons[1] == '.') B2.Checked = false; else B2.Checked = true;
|
|
}
|
|
|
|
private void Buttons_CheckedChanged(object sender, EventArgs e)
|
|
{
|
|
if (Global.Emulator.SystemId != "SAT")
|
|
{
|
|
return;
|
|
}
|
|
else if (sender == B1)
|
|
{
|
|
Global.StickyXORAdapter.SetSticky("Power", B1.Checked);
|
|
}
|
|
else if (sender == B2)
|
|
{
|
|
Global.StickyXORAdapter.SetSticky("Reset", B2.Checked);
|
|
}
|
|
}
|
|
|
|
public void Clear()
|
|
{
|
|
if (Global.Emulator.SystemId != "SAT") return;
|
|
|
|
if (B1.Checked) Global.StickyXORAdapter.SetSticky("Power", false);
|
|
if (B2.Checked) Global.StickyXORAdapter.SetSticky("Reset", false);
|
|
|
|
B1.Checked = false;
|
|
B2.Checked = false;
|
|
}
|
|
}
|
|
}
|