-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathAutomobileController.java
48 lines (32 loc) · 1021 Bytes
/
AutomobileController.java
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
package io.github.foundationgames.automobility.controller;
public interface AutomobileController {
float acceleration();
float brakeForce();
boolean drifting();
default void crashRumble() {}
default void groundThudRumble() {}
default void driftChargeRumble() {}
default void updateMaxChargeRumbleState(boolean maxCharge) {}
default void updateBoostingRumbleState(boolean boosting, float boostPower) {}
default void updateOffRoadRumbleState(boolean inOffRoad) {}
boolean inControllerMode();
default void initCompat() {}
AutomobileController INCOMPATIBLE = new AutomobileController() {
@Override
public float acceleration() {
return 0f;
}
@Override
public float brakeForce() {
return 0f;
}
@Override
public boolean drifting() {
return false;
}
@Override
public boolean inControllerMode() {
return false;
}
};
}