-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathInputManager.cs
82 lines (65 loc) · 1.92 KB
/
InputManager.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
using System;
using System.Collections.Generic;
using System.Text;
using OpenTK.Input;
using System.Drawing;
namespace Triton.Input
{
public class InputManager
{
public Rectangle Bounds;
private Vector2 _oldMousePosition;
private float _oldWheelPosition;
public float MouseWheelDelta { get;private set; }
public Vector2 MouseDelta { get; private set; }
private bool[] _previousState = new bool[(int)Key.LastKey];
private bool[] _wasPressedState = new bool[(int)Key.LastKey];
public bool UiHasFocus { get; set; }
public InputManager(Rectangle bounds)
{
Bounds = bounds;
Mouse.SetPosition(0, 0);
_oldMousePosition = new Vector2(0, 0);
_oldWheelPosition = Mouse.GetState().WheelPrecise;
for (int i = 0; i < _previousState.Length; i++)
{
_previousState[i] = false;
_wasPressedState[i] = false;
}
}
public void Update()
{
var state = Mouse.GetState();
MouseWheelDelta = state.WheelPrecise - _oldWheelPosition;
_oldWheelPosition = state.WheelPrecise;
MouseDelta = new Vector2(state.X - _oldMousePosition.X, state.Y - _oldMousePosition.Y);
_oldMousePosition.X = state.X;
_oldMousePosition.Y = state.Y;
for (int i = 0; i < _previousState.Length; i++)
{
if (_previousState[i] && !Keyboard.GetState().IsKeyDown((OpenTK.Input.Key)i))
{
_wasPressedState[i] = true;
_previousState[i] = false;
}
else
{
_wasPressedState[i] = false;
_previousState[i] = Keyboard.GetState().IsKeyDown((OpenTK.Input.Key)i);
}
}
}
public bool IsKeyDown(Key key)
{
return Keyboard.GetState().IsKeyDown((OpenTK.Input.Key)(int)key);
}
public bool WasKeyPressed(Key key)
{
return _wasPressedState[(int)key];
}
public bool IsMouseButtonDown(MouseButton button)
{
return Mouse.GetState().IsButtonDown((OpenTK.Input.MouseButton)(int)button);
}
}
}