-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSwipeManager.cs
247 lines (211 loc) · 8.01 KB
/
SwipeManager.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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
//Attribution: Brad-Keys: https://forum.unity.com/threads/swipe-in-all-directions-touch-and-mouse.165416/page-2#post-2741253
using UnityEngine;
using System.Collections.Generic;
using System.Linq;
class CardinalDirection
{
public static readonly Vector2 Up = new Vector2 (0, 1);
public static readonly Vector2 Down = new Vector2 (0, -1);
public static readonly Vector2 Right = new Vector2 (1, 0);
public static readonly Vector2 Left = new Vector2 (-1, 0);
public static readonly Vector2 UpRight = new Vector2 (1, 1);
public static readonly Vector2 UpLeft = new Vector2 (-1, 1);
public static readonly Vector2 DownRight = new Vector2 (1, -1);
public static readonly Vector2 DownLeft = new Vector2 (-1, -1);
}
public enum Swipe
{
None,
Up,
Down,
Left,
Right,
UpLeft,
UpRight,
DownLeft,
DownRight
};
public class SwipeManager : MonoBehaviour
{
#region Inspector Variables
[Tooltip("Min swipe distance (inches) to register as swipe")]
[SerializeField] float minSwipeLength = 0.5f;
[Tooltip("If true, a swipe is counted when the min swipe length is reached. If false, a swipe is counted when the touch/click ends.")]
[SerializeField] bool triggerSwipeAtMinLength = false;
[Tooltip("Whether to detect eight or four cardinal directions")]
[SerializeField] bool useEightDirections = false;
#endregion
const float eightDirAngle = 0.906f;
const float fourDirAngle = 0.5f;
const float defaultDPI = 72f;
const float dpcmFactor = 2.54f;
static Dictionary<Swipe, Vector2> cardinalDirections = new Dictionary<Swipe, Vector2> ()
{
{ Swipe.Up, CardinalDirection.Up },
{ Swipe.Down, CardinalDirection.Down },
{ Swipe.Right, CardinalDirection.Right },
{ Swipe.Left, CardinalDirection.Left },
{ Swipe.UpRight, CardinalDirection.UpRight },
{ Swipe.UpLeft, CardinalDirection.UpLeft },
{ Swipe.DownRight, CardinalDirection.DownRight },
{ Swipe.DownLeft, CardinalDirection.DownLeft }
};
public delegate void OnSwipeDetectedHandler(Swipe swipeDirection, Vector2 swipeVelocity);
static OnSwipeDetectedHandler _OnSwipeDetected;
public static event OnSwipeDetectedHandler OnSwipeDetected
{
add {
_OnSwipeDetected += value;
autoDetectSwipes = true;
}
remove {
_OnSwipeDetected -= value;
}
}
public static Vector2 swipeVelocity;
static float dpcm;
static float swipeStartTime;
static float swipeEndTime;
static bool autoDetectSwipes;
static bool swipeEnded;
static Swipe swipeDirection;
static Vector2 firstPressPos;
static Vector2 secondPressPos;
static SwipeManager instance;
void Awake ()
{
instance = this;
float dpi = (Screen.dpi == 0) ? defaultDPI : Screen.dpi;
dpcm = dpi / dpcmFactor;
}
void Update ()
{
if (autoDetectSwipes) {
DetectSwipe();
}
if (GameManager.instance.inRun)
{
if (SwipeManager.IsSwipingUp())
{
GameManager.instance.MovePlayer("2");
}
if (SwipeManager.IsSwipingDown())
{
GameManager.instance.MovePlayer("8");
}
if (SwipeManager.IsSwipingLeft())
{
GameManager.instance.MovePlayer("4");
}
if (SwipeManager.IsSwipingRight())
{
GameManager.instance.MovePlayer("6");
}
}
}
/// <summary>
/// Attempts to detect the current swipe direction.
/// Should be called over multiple frames in an Update-like loop.
/// </summary>
static void DetectSwipe ()
{
if (GetTouchInput() || GetMouseInput()) {
// Swipe already ended, don't detect until a new swipe has begun
if (swipeEnded) {
return;
}
Vector2 currentSwipe = secondPressPos - firstPressPos;
float swipeCm = currentSwipe.magnitude / dpcm;
// Check the swipe is long enough to count as a swipe (not a touch, etc)
if (swipeCm < instance.minSwipeLength) {
// Swipe was not long enough, abort
if (!instance.triggerSwipeAtMinLength) {
if (Application.isEditor) {
Debug.Log("[SwipeManager] Swipe was not long enough.");
}
swipeDirection = Swipe.None;
}
return;
}
swipeEndTime = Time.time;
swipeVelocity = currentSwipe * (swipeEndTime - swipeStartTime);
swipeDirection = GetSwipeDirByTouch(currentSwipe);
swipeEnded = true;
if (_OnSwipeDetected != null) {
_OnSwipeDetected(swipeDirection, swipeVelocity);
}
} else {
swipeDirection = Swipe.None;
}
}
public static bool IsSwiping () { return swipeDirection != Swipe.None; }
public static bool IsSwipingRight () { return IsSwipingDirection(Swipe.Right); }
public static bool IsSwipingLeft () { return IsSwipingDirection(Swipe.Left); }
public static bool IsSwipingUp () { return IsSwipingDirection(Swipe.Up); }
public static bool IsSwipingDown () { return IsSwipingDirection(Swipe.Down); }
public static bool IsSwipingDownLeft () { return IsSwipingDirection(Swipe.DownLeft); }
public static bool IsSwipingDownRight () { return IsSwipingDirection(Swipe.DownRight); }
public static bool IsSwipingUpLeft () { return IsSwipingDirection(Swipe.UpLeft); }
public static bool IsSwipingUpRight () { return IsSwipingDirection(Swipe.UpRight); }
#region Helper Functions
static bool GetTouchInput ()
{
if (Input.touches.Length > 0) {
Touch t = Input.GetTouch(0);
// Swipe/Touch started
if (t.phase == TouchPhase.Began) {
firstPressPos = t.position;
swipeStartTime = Time.time;
swipeEnded = false;
// Swipe/Touch ended
} else if (t.phase == TouchPhase.Ended) {
secondPressPos = t.position;
return true;
// Still swiping/touching
} else {
// Could count as a swipe if length is long enough
if (instance.triggerSwipeAtMinLength) {
return true;
}
}
}
return false;
}
static bool GetMouseInput ()
{
// Swipe/Click started
if (Input.GetMouseButtonDown(0)) {
firstPressPos = (Vector2)Input.mousePosition;
swipeStartTime = Time.time;
swipeEnded = false;
// Swipe/Click ended
} else if (Input.GetMouseButtonUp(0)) {
secondPressPos = (Vector2)Input.mousePosition;
return true;
// Still swiping/clicking
} else {
// Could count as a swipe if length is long enough
if (instance.triggerSwipeAtMinLength) {
return true;
}
}
return false;
}
static bool IsDirection (Vector2 direction, Vector2 cardinalDirection)
{
var angle = instance.useEightDirections ? eightDirAngle : fourDirAngle;
return Vector2.Dot(direction, cardinalDirection) > angle;
}
static Swipe GetSwipeDirByTouch (Vector2 currentSwipe)
{
currentSwipe.Normalize();
var swipeDir = cardinalDirections.FirstOrDefault(dir => IsDirection(currentSwipe, dir.Value));
return swipeDir.Key;
}
static bool IsSwipingDirection (Swipe swipeDir)
{
DetectSwipe();
return swipeDirection == swipeDir;
}
#endregion
}