This repository was archived by the owner on Dec 12, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathQTEManager.cs
319 lines (294 loc) · 8.41 KB
/
QTEManager.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
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
#if UNITY_2019_4_OR_NEWER && ENABLE_INPUT_SYSTEM
using UnityEngine.InputSystem;
using DualShockGamepadPS4 = UnityEngine.InputSystem.DualShock.DualShock4GamepadHID;
#endif
#if UNITY_2018 && ENABLE_INPUT_SYSTEM
using UnityEngine.Experimental.Input;
using UnityEngine.Experimental.Input.Plugins.PS4;
#endif
public class QTEManager : MonoBehaviour
{
[Header("Configuration")]
public float slowMotionTimeScale = 0.1f;
[HideInInspector]
private bool isEventStarted;
private QTEEvent eventData;
private bool isAllButtonsPressed;
private bool isFail;
private bool isEnded;
private bool isPaused;
private bool wrongKeyPressed;
private float currentTime;
private float smoothTimeUpdate;
private float rememberTimeScale;
private List<QTEKey> keys = new List<QTEKey>();
protected void Update()
{
if (!isEventStarted || eventData == null || isPaused) return;
updateTimer();
if (keys.Count == 0 || isFail)
{
doFinally();
}
else
{
for (int i = 0; i < eventData.keys.Count; i++)
{
if(isGamePadConnected())
{
checkGamepadInput(eventData.keys[i]);
}
else
{
checkKeyboardInput(eventData.keys[i]);
}
}
}
}
public void startEvent(QTEEvent eventScriptable)
{
#if ENABLE_INPUT_SYSTEM
if (Keyboard.current == null)
{
Debug.Log("No keyboard connected. Gamepad input in QTE events is not supported now");
return;
}
#endif
eventData = eventScriptable;
keys = new List<QTEKey>(eventData.keys);
if (eventData.onStart != null)
{
eventData.onStart.Invoke();
}
isAllButtonsPressed = false;
isEnded = false;
isFail = false;
isPaused = false;
rememberTimeScale = Time.timeScale;
switch (eventScriptable.timeType)
{
case QTETimeType.Slow:
Time.timeScale = slowMotionTimeScale;
break;
case QTETimeType.Paused:
Time.timeScale = 0;
break;
}
currentTime = eventData.time;
smoothTimeUpdate = currentTime;
setupGUI();
StartCoroutine(countDown());
}
private IEnumerator countDown()
{
isEventStarted = true;
while(currentTime > 0 && isEventStarted && !isEnded)
{
if(eventData.keyboardUI.eventTimerText != null)
{
eventData.keyboardUI.eventTimerText.text = currentTime.ToString();
}
currentTime--;
yield return new WaitWhile(() => isPaused);
yield return new WaitForSecondsRealtime(1f);
}
if(!isAllButtonsPressed && !isEnded)
{
isFail = true;
doFinally();
}
}
protected void doFinally()
{
if (keys.Count == 0)
{
isAllButtonsPressed = true;
}
isEnded = true;
isEventStarted = false;
Time.timeScale = rememberTimeScale;
var ui = getUI();
if (ui.eventUI != null)
{
ui.eventUI.SetActive(false);
}
if (eventData.onEnd != null)
{
eventData.onEnd.Invoke();
}
if(eventData.onFail != null && isFail)
{
eventData.onFail.Invoke();
}
if(eventData.onSuccess != null && isAllButtonsPressed)
{
eventData.onSuccess.Invoke();
}
eventData = null;
}
protected void OnGUI()
{
if (eventData == null || isEnded) return;
if (Event.current.isKey
&& Event.current.type == EventType.KeyDown
&& eventData.failOnWrongKey
&& !Event.current.keyCode.ToString().Equals("None"))
{
wrongKeyPressed = true;
if (isGamePadConnected())
{
eventData.keys.ForEach(key =>
wrongKeyPressed = wrongKeyPressed
&& (!key.gamepadDualShockKey.ToString().Equals(Event.current.keyCode.ToString())
|| !key.gamepadDualShockKey.ToString().Equals(Event.current.keyCode.ToString())));
}
else
{
eventData.keys.ForEach(key =>
wrongKeyPressed = wrongKeyPressed
&& !key.keyboardKey.ToString().Equals(Event.current.keyCode.ToString()));
}
isFail = wrongKeyPressed;
}
}
protected void updateTimer()
{
smoothTimeUpdate -= Time.unscaledDeltaTime;
var ui = getUI();
if (ui.eventTimerImage != null)
{
ui.eventTimerImage.fillAmount = smoothTimeUpdate / eventData.time;
}
}
public void pause()
{
isPaused = true;
}
public void play()
{
isPaused = false;
}
#if !ENABLE_INPUT_SYSTEM
private bool isGamePadConnected()
{
string[] temp = Input.GetJoystickNames();
bool result = false;
if (temp.Length > 0)
{
for (int i = 0; i < temp.Length; ++i)
{
result = result || !string.IsNullOrEmpty(temp[i]);
}
}
return result;
}
public void checkKeyboardInput(QTEKey key)
{
if (Input.GetKeyDown(key.keyboardKey))
{
keys.Remove(key);
}
if (Input.GetKeyUp(key.keyboardKey) && eventData.pressType == QTEPressType.Simultaneously)
{
keys.Add(key);
}
}
public void checkGamepadInput(QTEKey key)
{
if (Input.GetKeyDown(key.gamepadXBOXKey) || Input.GetKeyDown(key.gamepadDualShockKey))
{
keys.Remove(key);
}
if ((Input.GetKeyUp(key.gamepadXBOXKey)
|| Input.GetKeyUp(key.gamepadDualShockKey))
&& eventData.pressType == QTEPressType.Simultaneously)
{
keys.Add(key);
}
}
#else
public bool isGamePadConnected()
{
return Gamepad.current != null;
}
public bool isXBOXGamePad()
{
return DualShockGamepadPS4.current == null;
}
public void checkKeyboardInput(QTEKey key)
{
var inputType = Keyboard.current;
if (inputType != null)
{
if (inputType[key.keyboardKey].wasPressedThisFrame)
{
keys.Remove(key);
}
if (inputType[key.keyboardKey].wasReleasedThisFrame
&& eventData.pressType == QTEPressType.Simultaneously)
{
keys.Add(key);
}
}
}
public void checkGamepadInput(QTEKey key)
{
var inputType = Gamepad.current;
if (inputType != null)
{
if (inputType[key.gamepadXBOXKey].wasPressedThisFrame
|| inputType[key.gamepadDualShockKey].wasPressedThisFrame)
{
keys.Remove(key);
}
if ((inputType[key.gamepadXBOXKey].wasReleasedThisFrame
|| inputType[key.gamepadDualShockKey].wasReleasedThisFrame)
&& eventData.pressType == QTEPressType.Simultaneously)
{
keys.Add(key);
}
}
}
#endif
protected void setupGUI()
{
var ui = getUI();
if (ui.eventTimerImage != null)
{
ui.eventTimerImage.fillAmount = 1;
}
if (ui.eventText != null)
{
ui.eventText.text = "";
eventData.keys.ForEach(key => ui.eventText.text += key.keyboardKey + "+");
eventData.keyboardUI.eventText.text = ui.eventText.text.Remove(ui.eventText.text.Length - 1);
}
if (ui.eventUI != null)
{
ui.eventUI.SetActive(true);
}
}
protected QTEUI getUI()
{
var ui = eventData.keyboardUI;
if (isGamePadConnected())
{
#if ENABLE_INPUT_SYSTEM
if (isXBOXGamePad())
{
ui = eventData.gamepadXBOXUI;
}
else
{
ui = eventData.gamepadDualShockUI;
}
#else
ui = eventData.gamepadUI;
#endif
}
return ui;
}
}