SMS virtual pad, but pressing the buttons crashes currently
This commit is contained in:
parent
58e2e65c7f
commit
813e0d0d97
|
@ -390,6 +390,9 @@
|
|||
<Compile Include="tools\VirtualPadNES.cs">
|
||||
<SubType>Component</SubType>
|
||||
</Compile>
|
||||
<Compile Include="tools\VirtualPadSMS.cs">
|
||||
<SubType>Component</SubType>
|
||||
</Compile>
|
||||
<Compile Include="tools\Watch.cs" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
|
|
|
@ -55,8 +55,12 @@ namespace BizHawk.MultiClient
|
|||
|
||||
public string GetMnemonic()
|
||||
{
|
||||
StringBuilder str = new StringBuilder("|0|"); //TODO: Control Command virtual pad
|
||||
StringBuilder str = new StringBuilder("|"); //TODO: Control Command virtual pad
|
||||
|
||||
//TODO: remove this hack with a nes controls pad
|
||||
if (Global.Emulator.SystemId == "NES")
|
||||
str.Append("0|");
|
||||
|
||||
for (int x = 0; x < Pads.Count; x++)
|
||||
str.Append(Pads[x].GetMnemonic());
|
||||
return str.ToString();
|
||||
|
@ -101,12 +105,24 @@ namespace BizHawk.MultiClient
|
|||
default:
|
||||
break;
|
||||
case "NES":
|
||||
VirtualPadNES v1 = new VirtualPadNES();
|
||||
v1.Location = new Point(8, 19);
|
||||
VirtualPadNES v2 = new VirtualPadNES();
|
||||
v2.Location = new Point(188, 19);
|
||||
Pads.Add(v1);
|
||||
Pads.Add(v2);
|
||||
VirtualPadNES nespad1 = new VirtualPadNES();
|
||||
nespad1.Location = new Point(8, 19);
|
||||
VirtualPadNES nespad2 = new VirtualPadNES();
|
||||
nespad2.Location = new Point(188, 19);
|
||||
Pads.Add(nespad1);
|
||||
Pads.Add(nespad2);
|
||||
ControllerBox.Controls.Add(Pads[0]);
|
||||
ControllerBox.Controls.Add(Pads[1]);
|
||||
break;
|
||||
case "SMS":
|
||||
case "SG": //TODO: correct sys ID???
|
||||
case "GG":
|
||||
VirtualPadSMS smspad1 = new VirtualPadSMS();
|
||||
smspad1.Location = new Point(8, 19);
|
||||
VirtualPadSMS smspad2 = new VirtualPadSMS();
|
||||
smspad2.Location = new Point(188, 19);
|
||||
Pads.Add(smspad1);
|
||||
Pads.Add(smspad2);
|
||||
ControllerBox.Controls.Add(Pads[0]);
|
||||
ControllerBox.Controls.Add(Pads[1]);
|
||||
break;
|
||||
|
|
|
@ -0,0 +1,164 @@
|
|||
using System;
|
||||
using System.Drawing;
|
||||
using System.Windows.Forms;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Globalization;
|
||||
|
||||
namespace BizHawk.MultiClient
|
||||
{
|
||||
public class VirtualPadSMS : VirtualPad
|
||||
{
|
||||
|
||||
public VirtualPadSMS()
|
||||
{
|
||||
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(122, 24);
|
||||
ButtonPoints[5] = new Point(146, 24);
|
||||
|
||||
SetStyle(ControlStyles.AllPaintingInWmPaint, true);
|
||||
SetStyle(ControlStyles.UserPaint, true);
|
||||
SetStyle(ControlStyles.DoubleBuffer, true);
|
||||
this.BorderStyle = BorderStyle.Fixed3D;
|
||||
this.Paint += new System.Windows.Forms.PaintEventHandler(this.VirtualPad_Paint);
|
||||
this.Size = new Size(174, 74);
|
||||
|
||||
Point n = new Point(this.Size);
|
||||
|
||||
this.PU = new CheckBox();
|
||||
this.PU.Appearance = System.Windows.Forms.Appearance.Button;
|
||||
this.PU.AutoSize = true;
|
||||
this.PU.Image = global::BizHawk.MultiClient.Properties.Resources.BlueUp;
|
||||
this.PU.ImageAlign = System.Drawing.ContentAlignment.BottomRight;
|
||||
this.PU.Location = ButtonPoints[0];
|
||||
this.PU.TabIndex = 1;
|
||||
this.PU.UseVisualStyleBackColor = true;
|
||||
this.PU.CheckedChanged += new System.EventHandler(this.Buttons_CheckedChanged);
|
||||
|
||||
this.PD = new CheckBox();
|
||||
this.PD.Appearance = System.Windows.Forms.Appearance.Button;
|
||||
this.PD.AutoSize = true;
|
||||
this.PD.Image = global::BizHawk.MultiClient.Properties.Resources.BlueDown;
|
||||
this.PD.ImageAlign = System.Drawing.ContentAlignment.BottomRight;
|
||||
this.PD.Location = ButtonPoints[1];
|
||||
this.PD.TabIndex = 4;
|
||||
this.PD.UseVisualStyleBackColor = true;
|
||||
this.PD.CheckedChanged += new System.EventHandler(this.Buttons_CheckedChanged);
|
||||
|
||||
this.PR = new CheckBox();
|
||||
this.PR.Appearance = System.Windows.Forms.Appearance.Button;
|
||||
this.PR.AutoSize = true;
|
||||
this.PR.Image = global::BizHawk.MultiClient.Properties.Resources.Forward;
|
||||
this.PR.ImageAlign = System.Drawing.ContentAlignment.BottomRight;
|
||||
this.PR.Location = ButtonPoints[3];
|
||||
this.PR.TabIndex = 3;
|
||||
this.PR.UseVisualStyleBackColor = true;
|
||||
this.PR.CheckedChanged += new System.EventHandler(this.Buttons_CheckedChanged);
|
||||
|
||||
this.PL = new CheckBox();
|
||||
this.PL.Appearance = System.Windows.Forms.Appearance.Button;
|
||||
this.PL.AutoSize = true;
|
||||
this.PL.Image = global::BizHawk.MultiClient.Properties.Resources.Back;
|
||||
this.PL.ImageAlign = System.Drawing.ContentAlignment.BottomRight;
|
||||
this.PL.Location = ButtonPoints[2];
|
||||
this.PL.TabIndex = 2;
|
||||
this.PL.UseVisualStyleBackColor = true;
|
||||
this.PL.CheckedChanged += new System.EventHandler(this.Buttons_CheckedChanged);
|
||||
|
||||
this.B1 = new CheckBox();
|
||||
this.B1.Appearance = System.Windows.Forms.Appearance.Button;
|
||||
this.B1.AutoSize = true;
|
||||
this.B1.Location = ButtonPoints[4];
|
||||
this.B1.TabIndex = 5;
|
||||
this.B1.Text = "1";
|
||||
this.B1.TextAlign = System.Drawing.ContentAlignment.BottomCenter;
|
||||
this.B1.UseVisualStyleBackColor = true;
|
||||
this.B1.CheckedChanged += new System.EventHandler(this.Buttons_CheckedChanged);
|
||||
|
||||
this.B2 = new CheckBox();
|
||||
this.B2.Appearance = System.Windows.Forms.Appearance.Button;
|
||||
this.B2.AutoSize = true;
|
||||
this.B2.Location = ButtonPoints[5];
|
||||
this.B2.TabIndex = 6;
|
||||
this.B2.Text = "2";
|
||||
this.B2.TextAlign = System.Drawing.ContentAlignment.BottomCenter;
|
||||
this.B2.UseVisualStyleBackColor = true;
|
||||
this.B2.CheckedChanged += new System.EventHandler(this.Buttons_CheckedChanged);
|
||||
|
||||
this.Controls.Add(this.PU);
|
||||
this.Controls.Add(this.PD);
|
||||
this.Controls.Add(this.PL);
|
||||
this.Controls.Add(this.PR);
|
||||
this.Controls.Add(this.B1);
|
||||
this.Controls.Add(this.B2);
|
||||
this.Controls.Add(this.B3);
|
||||
this.Controls.Add(this.B4);
|
||||
}
|
||||
|
||||
protected override bool ProcessCmdKey(ref Message msg, Keys keyData)
|
||||
{
|
||||
if (keyData == Keys.Up)
|
||||
{
|
||||
//TODO: move to next logical key
|
||||
this.Refresh();
|
||||
}
|
||||
else if (keyData == Keys.Down)
|
||||
{
|
||||
this.Refresh();
|
||||
}
|
||||
else if (keyData == Keys.Left)
|
||||
{
|
||||
this.Refresh();
|
||||
}
|
||||
else if (keyData == Keys.Right)
|
||||
{
|
||||
this.Refresh();
|
||||
}
|
||||
else if (keyData == Keys.Tab)
|
||||
{
|
||||
this.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(B1.Checked ? "1" : ".");
|
||||
input.Append(B2.Checked ? "2" : ".");
|
||||
input.Append("|");
|
||||
return input.ToString();
|
||||
}
|
||||
|
||||
private void Buttons_CheckedChanged(object sender, EventArgs e)
|
||||
{
|
||||
if (Global.Emulator.SystemId != "SMS") return;
|
||||
if (sender == PU)
|
||||
Global.ActiveController.SetSticky("Up", PU.Checked);
|
||||
else if (sender == PD)
|
||||
Global.ActiveController.SetSticky("Down", PD.Checked);
|
||||
else if (sender == PL)
|
||||
Global.ActiveController.SetSticky("Left", PL.Checked);
|
||||
else if (sender == PR)
|
||||
Global.ActiveController.SetSticky("Right", PR.Checked);
|
||||
else if (sender == B1)
|
||||
Global.ActiveController.SetSticky("1", B3.Checked);
|
||||
else if (sender == B2)
|
||||
Global.ActiveController.SetSticky("2", B4.Checked);
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue