forked from ClusterM/hakchi2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
SelectButtonsForm.cs
71 lines (64 loc) · 2.45 KB
/
SelectButtonsForm.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
using com.clusterrr.hakchi_gui.Properties;
using System;
using System.Windows.Forms;
namespace com.clusterrr.hakchi_gui
{
public partial class SelectButtonsForm : Form
{
[Flags]
public enum NesButtons
{
A = 0x01,
B = 0x02,
Select = 0x04,
Start = 0x08,
Up = 0x10,
Down = 0x20,
Left = 0x40,
Right = 0x080
}
public NesButtons SelectedButtons;
public SelectButtonsForm(NesButtons buttons)
{
InitializeComponent();
checkBoxA.Checked = (buttons & NesButtons.A) != 0;
checkBoxB.Checked = (buttons & NesButtons.B) != 0;
checkBoxSelect.Checked = (buttons & NesButtons.Select) != 0;
checkBoxStart.Checked = (buttons & NesButtons.Start) != 0;
checkBoxUp.Checked = (buttons & NesButtons.Up) != 0;
checkBoxDown.Checked = (buttons & NesButtons.Down) != 0;
checkBoxLeft.Checked = (buttons & NesButtons.Left) != 0;
checkBoxRight.Checked = (buttons & NesButtons.Right) != 0;
SelectedButtons = buttons;
}
private void checkBox_CheckedChanged(object sender, EventArgs e)
{
SelectedButtons =
(checkBoxA.Checked ? NesButtons.A : 0) |
(checkBoxB.Checked ? NesButtons.B : 0) |
(checkBoxSelect.Checked ? NesButtons.Select : 0) |
(checkBoxStart.Checked ? NesButtons.Start : 0) |
(checkBoxUp.Checked ? NesButtons.Up : 0) |
(checkBoxDown.Checked ? NesButtons.Down : 0) |
(checkBoxLeft.Checked ? NesButtons.Left : 0) |
(checkBoxRight.Checked ? NesButtons.Right : 0);
}
private void buttonOk_Click(object sender, EventArgs e)
{
int buttonCount = 0;
for (int i = 0; i < 8; i++)
if (((byte)SelectedButtons & (1 << i)) != 0)
buttonCount++;
if (buttonCount < 2)
{
MessageBox.Show(this, Resources.SelectAtLeastTwo, Resources.Error, MessageBoxButtons.OK, MessageBoxIcon.Error);
return;
}
DialogResult = DialogResult.OK;
Close();
}
private void SelectButtonsForm_Load(object sender, EventArgs e)
{
}
}
}