2007-08-10 11:27:13 +02:00
|
|
|
|
#region --- License ---
|
|
|
|
|
/* Copyright (c) 2006, 2007 Stefanos Apostolopoulos
|
|
|
|
|
* See license.txt for license info
|
|
|
|
|
*/
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
using System;
|
2007-08-03 02:14:31 +02:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
|
|
|
|
using OpenTK.Input;
|
2007-08-05 15:42:31 +02:00
|
|
|
|
using OpenTK.Platform;
|
2007-08-03 02:14:31 +02:00
|
|
|
|
|
|
|
|
|
namespace OpenTK
|
|
|
|
|
{
|
2007-08-04 15:28:16 +02:00
|
|
|
|
public class InputDriver : IInputDriver
|
2007-08-03 02:14:31 +02:00
|
|
|
|
{
|
2007-08-22 02:30:16 +02:00
|
|
|
|
private IInputDriver inputDriver;
|
2007-08-03 02:14:31 +02:00
|
|
|
|
|
2007-08-10 18:55:24 +02:00
|
|
|
|
#region --- Constructors ---
|
|
|
|
|
|
2007-09-26 13:52:40 +02:00
|
|
|
|
public InputDriver(GameWindow parent)
|
2007-08-03 02:14:31 +02:00
|
|
|
|
{
|
2007-09-21 22:05:56 +02:00
|
|
|
|
if (parent == null)
|
|
|
|
|
throw new ArgumentException("A valid window (IWindowInfo) must be specified to construct an InputDriver");
|
|
|
|
|
|
2007-08-03 02:14:31 +02:00
|
|
|
|
if (Environment.OSVersion.Version.Major > 5 ||
|
|
|
|
|
(Environment.OSVersion.Version.Major == 5 && Environment.OSVersion.Version.Minor >= 1))
|
|
|
|
|
{
|
2007-09-26 13:52:40 +02:00
|
|
|
|
inputDriver = new OpenTK.Platform.Windows.WinRawInput(parent.WindowInfo);
|
2007-08-03 02:14:31 +02:00
|
|
|
|
}
|
2007-08-05 11:03:22 +02:00
|
|
|
|
else if (Environment.OSVersion.Platform == PlatformID.Unix)
|
|
|
|
|
{
|
2007-09-26 13:52:40 +02:00
|
|
|
|
//inputDriver = new OpenTK.Platform.X11.X11Input(
|
|
|
|
|
// parent is OpenTK.Platform.X11.WindowInfo ? (OpenTK.Platform.X11.WindowInfo)parent :
|
|
|
|
|
// parent is OpenTK.Platform.WindowInfo ? (OpenTK.Platform.X11.WindowInfo)(parent as OpenTK.Platform.WindowInfo) : null);
|
|
|
|
|
inputDriver = new OpenTK.Platform.X11.X11Input(parent.WindowInfo);
|
2007-08-05 11:03:22 +02:00
|
|
|
|
}
|
2007-08-03 02:14:31 +02:00
|
|
|
|
else
|
|
|
|
|
{
|
2007-08-05 11:03:22 +02:00
|
|
|
|
throw new PlatformNotSupportedException(
|
|
|
|
|
"Input handling is not supported on the current platform. Please report the problem to http://opentk.sourceforge.net");
|
2007-08-03 02:14:31 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
2007-08-10 18:55:24 +02:00
|
|
|
|
|
|
|
|
|
#endregion
|
2007-08-03 02:14:31 +02:00
|
|
|
|
|
|
|
|
|
#region --- IInputDriver Members ---
|
|
|
|
|
|
2007-09-26 13:52:40 +02:00
|
|
|
|
public IList<KeyboardDevice> Keyboard
|
2007-08-03 02:14:31 +02:00
|
|
|
|
{
|
2007-08-04 15:28:16 +02:00
|
|
|
|
get { return inputDriver.Keyboard; }
|
|
|
|
|
}
|
|
|
|
|
|
2007-09-26 13:52:40 +02:00
|
|
|
|
public IList<MouseDevice> Mouse
|
2007-08-04 15:28:16 +02:00
|
|
|
|
{
|
2007-08-05 11:03:22 +02:00
|
|
|
|
get { return inputDriver.Mouse; }
|
2007-08-03 02:14:31 +02:00
|
|
|
|
}
|
|
|
|
|
|
2007-09-22 15:13:17 +02:00
|
|
|
|
public void Poll()
|
2007-08-05 20:26:14 +02:00
|
|
|
|
{
|
2007-09-22 15:13:17 +02:00
|
|
|
|
inputDriver.Poll();
|
2007-08-05 20:26:14 +02:00
|
|
|
|
}
|
2007-09-21 22:05:56 +02:00
|
|
|
|
/*
|
|
|
|
|
int IMouseDriver.RegisterDevices()
|
|
|
|
|
{
|
|
|
|
|
return inputDriver.RegisterDevices();
|
|
|
|
|
}
|
|
|
|
|
*/
|
2007-08-03 02:14:31 +02:00
|
|
|
|
#endregion
|
2007-08-22 02:30:16 +02:00
|
|
|
|
|
|
|
|
|
#region --- IDisposable Members ---
|
|
|
|
|
|
|
|
|
|
private bool disposed;
|
|
|
|
|
|
|
|
|
|
public void Dispose()
|
|
|
|
|
{
|
|
|
|
|
this.Dispose(true);
|
|
|
|
|
GC.SuppressFinalize(this);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void Dispose(bool manual)
|
|
|
|
|
{
|
|
|
|
|
if (!disposed)
|
|
|
|
|
{
|
|
|
|
|
if (manual)
|
|
|
|
|
{
|
|
|
|
|
inputDriver.Dispose();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
disposed = true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
~InputDriver()
|
|
|
|
|
{
|
|
|
|
|
this.Dispose(false);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endregion
|
2007-08-03 02:14:31 +02:00
|
|
|
|
}
|
|
|
|
|
}
|