#region --- License ---
/* Copyright (c) 2006, 2007 Stefanos Apostolopoulos
* See license.txt for license info
*/
#endregion
using System;
using System.Collections.Generic;
using System.Text;
namespace OpenTK.Input
{
///
/// The MouseDevice class represents a mouse device and provides methods to query its status.
///
public sealed class MouseDevice : IInputDevice
{
private string description;
private int numButtons, numWheels;
private IntPtr id;
private bool[] button = new bool[(int)MouseButton.LastButton];
private int wheel, x, y, wheel_delta, delta_x, delta_y;
#region --- IInputDevice Members ---
///
/// Gets a string describing this MouseDevice.
///
public string Description
{
get { return description; }
internal set { description = value; }
}
///
/// Gets an value indicating the InputDeviceType of this InputDevice.
///
public InputDeviceType DeviceType
{
get { return InputDeviceType.Mouse; }
}
#endregion
#region --- IMouse Members ---
///
/// Gets an integer representing the number of buttons on this MouseDevice.
///
public int NumberOfButtons
{
get { return numButtons; }
internal set { numButtons = value; }
}
///
/// Gets an integer representing the number of wheels on this MouseDevice.
///
public int NumberOfWheels
{
get { return numWheels; }
internal set { numWheels = value; }
}
///
/// Gets an IntPtr representing a device dependent ID.
///
public IntPtr DeviceID
{
get { return id; }
internal set { id = value; }
}
///
/// Gets an integer representing the absolute wheel position.
///
public int Wheel
{
get { return wheel; }
internal set
{
wheel = value;
}
}
///
/// Gets an integer representing the relative wheel movement.
///
public int WheelDelta
{
get
{
int delta = wheel_delta;
//wheel_delta = 0;
return delta;
}
set
{
wheel_delta = value;
}
}
///
/// Gets an integer representing the absolute x position of the pointer, in screen pixel coordinates.
///
public int X
{
get { return x; }
internal set { x = value; }
}
///
/// Gets an integer representing the absolute y position of the pointer, in screen pixel coordinates.
///
public int Y
{
get { return y; }
internal set { y = value; }
}
///
/// Gets an integer representing the relative x movement of the pointer, in pixel coordinates.
///
public int XDelta
{
get { return delta_x; }
internal set { delta_x = value; }
}
///
/// Gets an integer representing the relative y movement of the pointer, in pixel coordinates.
///
public int YDelta
{
get { return delta_y; }
internal set { delta_y = value; }
}
//public event MouseMoveEvent Move;
///
/// Occurs when a button is pressed.
///
public event MouseButtonDownEvent ButtonDown;
///
/// Occurs when a button is released.
///
public event MouseButtonUpEvent ButtonUp;
#endregion
#region public bool this[MouseButton b]
public bool this[MouseButton b]
{
internal set
{
if (ButtonDown != null && value && !button[(int)b])
{
ButtonDown(this, b);
}
else if (ButtonUp != null && !value && button[(int)b])
{
ButtonUp(this, b);
}
button[(int)b] = value;
//System.Diagnostics.Debug.Print("Mouse button {0} {1}", b, value ? "down" : "up");
}
get
{
return button[(int)b];
}
}
#endregion
#region --- Public Methods ---
public override int GetHashCode()
{
//return base.GetHashCode();
return (int)(numButtons ^ numWheels ^ id.GetHashCode() ^ description.GetHashCode());
}
public override string ToString()
{
return String.Format("ID: {0} ({1}). Buttons: {2}, Wheels: {3}",
DeviceID, Description, NumberOfButtons, NumberOfWheels);
}
#endregion
}
//public delegate void MouseMoveEvent(MouseDevice sender, MouseMoveData key);
public delegate void MouseButtonDownEvent(MouseDevice sender, MouseButton button);
public delegate void MouseButtonUpEvent(MouseDevice sender, MouseButton button);
#region public enum MouseButton
///
/// Enumerates all possible mouse buttons.
///
public enum MouseButton
{
Left = 0,
Middle,
Right,
Button1,
Button2,
Button3,
Button4,
Button5,
Button6,
Button7,
Button8,
Button9,
LastButton
}
#endregion
#region internal class MouseMoveData
///
/// Not used yet.
///
internal class MouseMoveData
{
private int x;
private int y;
private int deltaX;
private int deltaY;
private int wheel, deltaWheel;
///
/// Gets the absolute X position of the mouse in screen pixel coordinates.
///
public int X
{
get { return x; }
internal set { x = value; }
}
///
/// Gets the absolute Y position of the mouse in screen pixel coordinates.
///
public int Y
{
get { return y; }
internal set { y = value; }
}
///
/// Gets the relative movement of the mouse in the X direction, in pixels.
///
public int DeltaX
{
get { return deltaX; }
internal set { deltaX = value; }
}
///
/// Gets the relative movement of the mouse in the Y direction, in pixels.
///
public int DeltaY
{
get { return deltaY; }
internal set { deltaY = value; }
}
///
/// Gets data relevant to the mouse wheel.
///
//public MouseWheel Wheel
//{
// get { return wheel; }
// internal set { wheel = value; }
//}
}
#endregion
}