将numpad键输入转换为其int值

时间:2012-04-08 11:24:50

标签: c# xna keyboard

我需要获取键输入,如果它是1-9的小键盘之一,则获取它的int值。

例如,如果按下NumPad9,我需要得到值9。

我一直在研究它一个小时,似乎无法解决它。

这是我到目前为止所做的:

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 个答案:

答案 0 :(得分:1)

我不确定你需要什么,但应该是类似的......

bool TryReadInput(out int Value)
{
    int Min = (int) Keys.D0;
    int Max = (int) Keys.D9;
    for (int k = Min; k<=Max; k++)
    {
         if (current_kb_state.IsKeyDown( (Keys) k) 
           && previous_kb_state.IsKeyUp( (Keys) k))
         { 
             value = k - Min;
             return true;
         }   
    }
    value = -1;
    return false;
}

如果您需要col和row值:

col = (key+1) / 3;
row = (key+1) % 3;