29
29
import net .kdt .pojavlaunch .customcontrols .ControlLayout ;
30
30
import net .kdt .pojavlaunch .customcontrols .gamepad .DefaultDataProvider ;
31
31
import net .kdt .pojavlaunch .customcontrols .gamepad .Gamepad ;
32
+ import net .kdt .pojavlaunch .customcontrols .gamepad .direct .DirectGamepad ;
33
+ import net .kdt .pojavlaunch .customcontrols .gamepad .direct .DirectGamepadEnableHandler ;
32
34
import net .kdt .pojavlaunch .customcontrols .mouse .AbstractTouchpad ;
33
35
import net .kdt .pojavlaunch .customcontrols .mouse .AndroidPointerCapture ;
34
36
import net .kdt .pojavlaunch .customcontrols .mouse .InGUIEventProcessor ;
40
42
41
43
import org .lwjgl .glfw .CallbackBridge ;
42
44
45
+ import fr .spse .gamepad_remapper .GamepadHandler ;
43
46
import fr .spse .gamepad_remapper .RemapperManager ;
44
47
import fr .spse .gamepad_remapper .RemapperView ;
45
48
46
49
/**
47
50
* Class dealing with showing minecraft surface and taking inputs to dispatch them to minecraft
48
51
*/
49
- public class MinecraftGLSurface extends View implements GrabListener {
52
+ public class MinecraftGLSurface extends View implements GrabListener , DirectGamepadEnableHandler {
50
53
/* Gamepad object for gamepad inputs, instantiated on need */
51
- private Gamepad mGamepad = null ;
54
+ private GamepadHandler mGamepadHandler ;
52
55
/* The RemapperView.Builder object allows you to set which buttons to remap */
53
56
private final RemapperManager mInputManager = new RemapperManager (getContext (), new RemapperView .Builder (null )
54
57
.remapA (true )
@@ -88,6 +91,7 @@ public MinecraftGLSurface(Context context) {
88
91
public MinecraftGLSurface (Context context , AttributeSet attributeSet ) {
89
92
super (context , attributeSet );
90
93
setFocusable (true );
94
+ CallbackBridge .setDirectGamepadEnableHandler (this );
91
95
}
92
96
93
97
@ RequiresApi (api = Build .VERSION_CODES .O )
@@ -203,7 +207,11 @@ public boolean onTouchEvent(MotionEvent e) {
203
207
}
204
208
205
209
private void createGamepad (View contextView , InputDevice inputDevice ) {
206
- mGamepad = new Gamepad (contextView , inputDevice , DefaultDataProvider .INSTANCE , true );
210
+ if (CallbackBridge .sGamepadDirectInput ) {
211
+ mGamepadHandler = new DirectGamepad ();
212
+ }else {
213
+ mGamepadHandler = new Gamepad (contextView , inputDevice , DefaultDataProvider .INSTANCE , true );
214
+ }
207
215
}
208
216
209
217
/**
@@ -215,9 +223,9 @@ public boolean dispatchGenericMotionEvent(MotionEvent event) {
215
223
int mouseCursorIndex = -1 ;
216
224
217
225
if (Gamepad .isGamepadEvent (event )){
218
- if (mGamepad == null ) createGamepad (this , event .getDevice ());
226
+ if (mGamepadHandler == null ) createGamepad (this , event .getDevice ());
219
227
220
- mInputManager .handleMotionEventInput (getContext (), event , mGamepad );
228
+ mInputManager .handleMotionEventInput (getContext (), event , mGamepadHandler );
221
229
return true ;
222
230
}
223
231
@@ -287,9 +295,9 @@ public boolean processKeyEvent(KeyEvent event) {
287
295
}
288
296
289
297
if (Gamepad .isGamepadEvent (event )){
290
- if (mGamepad == null ) createGamepad (this , event .getDevice ());
298
+ if (mGamepadHandler == null ) createGamepad (this , event .getDevice ());
291
299
292
- mInputManager .handleKeyEventInput (getContext (), event , mGamepad );
300
+ mInputManager .handleKeyEventInput (getContext (), event , mGamepadHandler );
293
301
return true ;
294
302
}
295
303
@@ -411,6 +419,17 @@ private void updateGrabState(boolean isGrabbing) {
411
419
}
412
420
}
413
421
422
+ @ Override
423
+ public void onDirectGamepadEnabled () {
424
+ post (()->{
425
+ if (mGamepadHandler != null && mGamepadHandler instanceof Gamepad ) {
426
+ ((Gamepad )mGamepadHandler ).removeSelf ();
427
+ }
428
+ // Force gamepad recreation on next event
429
+ mGamepadHandler = null ;
430
+ });
431
+ }
432
+
414
433
/** A small interface called when the listener is ready for the first time */
415
434
public interface SurfaceReadyListener {
416
435
void isReady ();
0 commit comments