キー入力を取得する必要があります。それがテンキー1〜9のいずれかである場合は、int値を取得します。
たとえば、NumPad9が押された場合、値9を取得する必要があります。
私は1時間取り組んできましたが、解決できないようです。
これが私がこれまでにしたことです:
class Input
{
private int[] Key = { 7, 8, 9, 4, 5, 6, 1, 2, 3 };
private Position[] Values;
public Input()
{
Values = new Position[9];
int index = 0;
for (int i = 0; i < 3; i++)
for (int j = 0; j < 3; j++)
Values[index++] = new Position(i, j);
}
public Position GetPos(int Key)
{
return Values[Key];
}
/*public Position ReadInput(KeyboardState Keyboard)
{
* Here is the function that I need to call, how can I check efficiently if one of the
* Numpads 1-9 is pressed?
* return GetPos(IntegerValue);
}*/
}
Positionタイプには、RowとColのint値のみが含まれます。
また、キーが1つだけ押されているかどうかを確認するにはどうすればよいですか?