mirror of
https://git.do.srb2.org/STJr/UltimateZoneBuilder.git
synced 2024-11-23 12:22:35 +00:00
144 lines
3 KiB
C#
144 lines
3 KiB
C#
|
|
#region ================== Copyright (c) 2007 Pascal vd Heiden
|
|
|
|
/*
|
|
* Copyright (c) 2007 Pascal vd Heiden, www.codeimp.com
|
|
* This program is released under GNU General Public License
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
*/
|
|
|
|
#endregion
|
|
|
|
#region ================== Namespaces
|
|
|
|
using System;
|
|
using System.Windows.Forms;
|
|
using SlimDX;
|
|
using SlimDX.DirectInput;
|
|
using CodeImp.DoomBuilder.Geometry;
|
|
|
|
#endregion
|
|
|
|
namespace CodeImp.DoomBuilder.Actions
|
|
{
|
|
internal class MouseInput : IDisposable
|
|
{
|
|
#region ================== Variables
|
|
|
|
// Mouse input
|
|
private DirectInput dinput;
|
|
private Mouse mouse;
|
|
|
|
// Disposing
|
|
private bool isdisposed = false;
|
|
|
|
#endregion
|
|
|
|
#region ================== Properties
|
|
|
|
public bool IsDisposed { get { return isdisposed; } }
|
|
|
|
#endregion
|
|
|
|
#region ================== Constructor / Disposer
|
|
|
|
// Constructor
|
|
public MouseInput(Control source)
|
|
{
|
|
// Initialize
|
|
dinput = new DirectInput();
|
|
|
|
// Start mouse input
|
|
mouse = new Mouse(dinput);
|
|
if(mouse == null) throw new Exception("No mouse device found.");
|
|
|
|
// Set mouse input settings
|
|
mouse.Properties.AxisMode = DeviceAxisMode.Relative;
|
|
|
|
// Set cooperative level
|
|
mouse.SetCooperativeLevel(source,
|
|
CooperativeLevel.Nonexclusive | CooperativeLevel.Foreground);
|
|
|
|
// Aquire device
|
|
try { mouse.Acquire(); }
|
|
catch(Exception) { }
|
|
|
|
// We have no destructor
|
|
GC.SuppressFinalize(this);
|
|
}
|
|
|
|
// Disposer
|
|
public void Dispose()
|
|
{
|
|
// Not already disposed?
|
|
if(!isdisposed)
|
|
{
|
|
// Dispose
|
|
mouse.Unacquire();
|
|
mouse.Dispose();
|
|
dinput.Dispose();
|
|
|
|
// Clean up
|
|
mouse = null;
|
|
dinput = null;
|
|
|
|
// Done
|
|
isdisposed = true;
|
|
}
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region ================== Methods
|
|
|
|
#endregion
|
|
|
|
#region ================== Processing
|
|
|
|
// This processes the input
|
|
public Vector2D Process()
|
|
{
|
|
MouseState ms;
|
|
float changex, changey;
|
|
|
|
// Poll the device
|
|
try
|
|
{
|
|
Result result = mouse.Poll();
|
|
if(result.IsSuccess)
|
|
{
|
|
// Get the changes since previous poll
|
|
ms = mouse.GetCurrentState();
|
|
|
|
// Calculate changes depending on sensitivity
|
|
changex = (float)ms.X * General.Settings.VisualMouseSensX * (float)General.Settings.MouseSpeed * 0.01f;
|
|
changey = (float)ms.Y * General.Settings.VisualMouseSensY * (float)General.Settings.MouseSpeed * 0.01f;
|
|
|
|
// Return changes
|
|
return new Vector2D(changex, changey);
|
|
}
|
|
else
|
|
{
|
|
// Reaquire device
|
|
try { mouse.Acquire(); }
|
|
catch(Exception) { }
|
|
return new Vector2D();
|
|
}
|
|
}
|
|
catch(DirectInputException)
|
|
{
|
|
// Reaquire device
|
|
try { mouse.Acquire(); }
|
|
catch(Exception) { }
|
|
return new Vector2D();
|
|
}
|
|
}
|
|
|
|
#endregion
|
|
}
|
|
}
|