223 lines
No EOL
6.4 KiB
C#
223 lines
No EOL
6.4 KiB
C#
#region --- License ---
|
|
/* Copyright (c) 2007 Stefanos Apostolopoulos
|
|
* See license.txt for license info
|
|
*/
|
|
#endregion
|
|
|
|
#region --- Using directives ---
|
|
|
|
using System;
|
|
|
|
using OpenTK.Input;
|
|
using System.Diagnostics;
|
|
|
|
#endregion
|
|
|
|
namespace OpenTK.Input
|
|
{
|
|
/// <summary>
|
|
/// Represents a keyboard device and provides methods to query its status.
|
|
/// </summary>
|
|
public sealed class KeyboardDevice : IInputDevice
|
|
{
|
|
//private IKeyboard keyboard;
|
|
private bool[] keys = new bool[Enum.GetValues(typeof(Key)).Length];
|
|
private bool[] scancodes = new bool[256];
|
|
private string description;
|
|
private int numKeys, numFKeys, numLeds;
|
|
private IntPtr devID;
|
|
private bool repeat;
|
|
private KeyboardKeyEventArgs args = new KeyboardKeyEventArgs();
|
|
|
|
#region --- Constructors ---
|
|
|
|
internal KeyboardDevice() { }
|
|
|
|
#endregion
|
|
|
|
#region --- IKeyboard members ---
|
|
|
|
/// <summary>
|
|
/// Gets a value indicating the status of the specified Key.
|
|
/// </summary>
|
|
/// <param name="key">The Key to check.</param>
|
|
/// <returns>True if the Key is pressed, false otherwise.</returns>
|
|
public bool this[Key key]
|
|
{
|
|
get { return keys[(int)key]; }
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets a value indicating the status of the specified Key.
|
|
/// </summary>
|
|
/// <param name="scancode">The scancode to check.</param>
|
|
/// <returns>True if the scancode is pressed, false otherwise.</returns>
|
|
public bool this[uint scancode]
|
|
{
|
|
get { return scancodes[scancode]; }
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets an integer representing the number of keys on this KeyboardDevice.
|
|
/// </summary>
|
|
public int NumberOfKeys
|
|
{
|
|
get { return numKeys; }
|
|
internal set { numKeys = value; }
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets an integer representing the number of function keys (F-keys) on this KeyboardDevice.
|
|
/// </summary>
|
|
public int NumberOfFunctionKeys
|
|
{
|
|
get { return numFKeys; }
|
|
internal set { numFKeys = value; }
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets a value indicating the number of led indicators on this KeyboardDevice.
|
|
/// </summary>
|
|
public int NumberOfLeds
|
|
{
|
|
get { return numLeds; }
|
|
internal set { numLeds = value; }
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets an IntPtr representing a device dependent ID.
|
|
/// </summary>
|
|
public IntPtr DeviceID
|
|
{
|
|
get { return devID; }
|
|
internal set { devID = value; }
|
|
}
|
|
|
|
#region public bool KeyRepeat
|
|
|
|
/// <summary>
|
|
/// Gets or sets a System.Boolean indicating key repeat status.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// If KeyRepeat is true, multiple KeyDown events will be generated while a key is being held.
|
|
/// Otherwise only one KeyDown event will be reported.
|
|
/// <para>
|
|
/// The rate of the generated KeyDown events is controlled by the Operating System. Usually,
|
|
/// one KeyDown event will be reported, followed by a small (250-1000ms) pause and several
|
|
/// more KeyDown events (6-30 events per second).
|
|
/// </para>
|
|
/// <para>
|
|
/// Set to true to handle text input (where keyboard repeat is desirable), but set to false
|
|
/// for game input.
|
|
/// </para>
|
|
/// </remarks>
|
|
public bool KeyRepeat
|
|
{
|
|
get { return repeat; }
|
|
set { repeat = value; }
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region KeyDown
|
|
|
|
/// <summary>
|
|
/// Occurs when a key is pressed.
|
|
/// </summary>
|
|
public event EventHandler<KeyboardKeyEventArgs> KeyDown;
|
|
|
|
#endregion
|
|
|
|
#region KeyUp
|
|
|
|
/// <summary>
|
|
/// Occurs when a key is released.
|
|
/// </summary>
|
|
public event EventHandler<KeyboardKeyEventArgs> KeyUp;
|
|
|
|
#endregion
|
|
|
|
#endregion
|
|
|
|
#region --- IInputDevice Members ---
|
|
|
|
/// <summary>
|
|
/// Gets a <see cref="System.String"/> which describes this instance.
|
|
/// </summary>
|
|
public string Description
|
|
{
|
|
get { return description; }
|
|
internal set { description = value; }
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets the <see cref="InputDeviceType"/> for this instance.
|
|
/// </summary>
|
|
public InputDeviceType DeviceType
|
|
{
|
|
get { return InputDeviceType.Keyboard; }
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region --- Public Methods ---
|
|
|
|
/// <summary>Returns the hash code for this KeyboardDevice.</summary>
|
|
/// <returns>A 32-bit signed integer hash code.</returns>
|
|
public override int GetHashCode()
|
|
{
|
|
//return base.GetHashCode();
|
|
return (int)(numKeys ^ numFKeys ^ numLeds ^ devID.GetHashCode() ^ description.GetHashCode());
|
|
}
|
|
|
|
/// <summary>
|
|
/// Returns a System.String representing this KeyboardDevice.
|
|
/// </summary>
|
|
/// <returns>A System.String representing this KeyboardDevice.</returns>
|
|
public override string ToString()
|
|
{
|
|
//return base.ToString();
|
|
return String.Format("ID: {0} ({1}). Keys: {2}, Function keys: {3}, Leds: {4}",
|
|
DeviceID, Description, NumberOfKeys, NumberOfFunctionKeys, NumberOfLeds);
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region --- Internal Methods ---
|
|
|
|
#region internal void ClearKeys()
|
|
|
|
internal void ClearKeys()
|
|
{
|
|
for (int i = 0; i < keys.Length; i++)
|
|
keys[i] = false;
|
|
for (uint i = 0; i < scancodes.Length; i++)
|
|
scancodes[i] = false;
|
|
}
|
|
|
|
#endregion
|
|
|
|
internal void SetKey(Key key, uint scancode, bool state)
|
|
{
|
|
if (keys[(int)key] != state || KeyRepeat)
|
|
{
|
|
keys[(int)key] = scancodes[scancode] = state;
|
|
|
|
if (state && KeyDown != null)
|
|
{
|
|
args.Key = key;
|
|
args.ScanCode = scancode;
|
|
KeyDown(this, args);
|
|
}
|
|
else if (!state && KeyUp != null)
|
|
{
|
|
args.Key = key;
|
|
args.ScanCode = scancode;
|
|
KeyUp(this, args);
|
|
}
|
|
}
|
|
}
|
|
|
|
#endregion
|
|
}
|
|
} |