mirror of
https://github.com/italicsjenga/agb.git
synced 2024-12-23 08:11:33 +11:00
Fix controls (#610)
* Controls were broken on mobile because dpad movement was interpreted as a/b button presses. * Fixes it to: * Handle multiple fingers using the dpad / a / b buttons * A dpad movement must start on the dpad, and a/b presses must start on a/b.
This commit is contained in:
commit
b47dc28f6f
|
@ -51,6 +51,8 @@ function App() {
|
|||
"agbrswebplayer",
|
||||
);
|
||||
|
||||
const [mgbaId, setMgbaId] = useState(0);
|
||||
|
||||
const setVolume = (newVolume: number) =>
|
||||
setState({ volume: newVolume, bindings });
|
||||
const setBindings = (newBindings: Bindings) =>
|
||||
|
@ -79,7 +81,7 @@ function App() {
|
|||
}
|
||||
|
||||
if (reset) {
|
||||
mgbaRef.current?.restart();
|
||||
setMgbaId((id) => id + 1);
|
||||
}
|
||||
};
|
||||
|
||||
|
@ -111,6 +113,7 @@ function App() {
|
|||
)}
|
||||
{isPlaying ? (
|
||||
<Mgba
|
||||
key={mgbaId}
|
||||
ref={mgbaRef}
|
||||
gameUrl={gameUrl}
|
||||
volume={volume}
|
||||
|
|
|
@ -8,6 +8,7 @@ import {
|
|||
import mGBA from "./vendor/mgba";
|
||||
import { GbaKey, KeyBindings } from "./bindings";
|
||||
import { styled } from "styled-components";
|
||||
import { useSmoothedFramerate } from "./useSmoothedFramerate.hook";
|
||||
|
||||
type Module = any;
|
||||
|
||||
|
@ -40,6 +41,14 @@ export interface MgbaHandle {
|
|||
buttonRelease: (key: GbaKey) => void;
|
||||
}
|
||||
|
||||
const whichFrameSkip = (frameRate: number): number | undefined => {
|
||||
if ((frameRate + 5) % 60 <= 10) {
|
||||
// framerate close to multiple of 60
|
||||
// use frameskip
|
||||
return Math.round(frameRate / 60);
|
||||
}
|
||||
};
|
||||
|
||||
export const Mgba = forwardRef<MgbaHandle, MgbaProps>(
|
||||
({ gameUrl, volume, controls, paused }, ref) => {
|
||||
const canvas = useRef(null);
|
||||
|
@ -92,6 +101,24 @@ export const Mgba = forwardRef<MgbaHandle, MgbaProps>(
|
|||
};
|
||||
}, [state]);
|
||||
|
||||
const frameRate = useSmoothedFramerate();
|
||||
const frameSkipToUse = whichFrameSkip(frameRate);
|
||||
|
||||
useEffect(() => {
|
||||
if (!gameLoaded) return;
|
||||
|
||||
if (frameSkipToUse) {
|
||||
// framerate close to multiple of 60
|
||||
// use frameskip
|
||||
console.log("Using frameskip");
|
||||
mgbaModule.current.setMainLoopTiming(1, frameSkipToUse);
|
||||
} else {
|
||||
// frame rate not close to multiple of 60, use timeout
|
||||
console.log("Using timeout");
|
||||
mgbaModule.current.setMainLoopTiming(0, 1000 / 59.727500569606);
|
||||
}
|
||||
}, [frameSkipToUse, gameLoaded]);
|
||||
|
||||
useEffect(() => {
|
||||
if (!gameLoaded) return;
|
||||
|
||||
|
|
35
website/app/src/useSmoothedFramerate.hook.ts
Normal file
35
website/app/src/useSmoothedFramerate.hook.ts
Normal file
|
@ -0,0 +1,35 @@
|
|||
import { useEffect, useState } from "react";
|
||||
|
||||
|
||||
export const useSmoothedFramerate = (): number => {
|
||||
|
||||
const [smoothedFrameTime, setSmoothedFrameTime] = useState(60);
|
||||
|
||||
useEffect(() => {
|
||||
|
||||
let previous: number | undefined = undefined;
|
||||
let stopped = false;
|
||||
|
||||
const raf = (time: DOMHighResTimeStamp) => {
|
||||
if (previous) {
|
||||
let delta = time - previous;
|
||||
|
||||
setSmoothedFrameTime((time) => (time * 3 + delta) / 4);
|
||||
}
|
||||
previous = time;
|
||||
|
||||
|
||||
if (!stopped) {
|
||||
window.requestAnimationFrame(raf);
|
||||
}
|
||||
}
|
||||
|
||||
window.requestAnimationFrame(raf);
|
||||
|
||||
return () => { stopped = true; }
|
||||
|
||||
}, []);
|
||||
|
||||
|
||||
return Math.round(1 / (smoothedFrameTime / 1000));
|
||||
}
|
|
@ -62,7 +62,7 @@
|
|||
max-width: 60%;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
margin-block-end: 40px;
|
||||
margin-block-end: 20px;
|
||||
}
|
||||
|
||||
.red {
|
||||
|
@ -110,8 +110,12 @@
|
|||
.mobileControlsRow {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.mobileControlsReset {
|
||||
justify-content: center;
|
||||
gap: 40px;
|
||||
}
|
||||
|
||||
@media (max-width: 800px) {
|
||||
|
@ -120,7 +124,7 @@
|
|||
}
|
||||
header,
|
||||
.desktopHelp {
|
||||
width: 90%;
|
||||
max-width: 90%;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -169,7 +173,7 @@
|
|||
<img id="mobileSelect" src="assets/SELECT.png" />
|
||||
<img id="mobileStart" src="assets/START.png" />
|
||||
</div>
|
||||
<div class="mobileControlsRow">
|
||||
<div class="mobileControlsRow mobileControlsReset">
|
||||
<button id="mobileRestart">Restart</button>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -222,9 +226,11 @@
|
|||
addSimpleButton(mobileStart, "Start");
|
||||
addSimpleButton(mobileSelect, "Select");
|
||||
|
||||
let previouslyPressedButtons = [];
|
||||
let previouslyPressedButtons = new Set();
|
||||
|
||||
const dpadMovement = (touch) => {
|
||||
const dpadMovement = (touches) => {
|
||||
const currentlyPressed = new Set();
|
||||
for (let touch of touches) {
|
||||
const target = touch.target.getBoundingClientRect();
|
||||
|
||||
const touchPoint = { x: touch.clientX, y: touch.clientY };
|
||||
|
@ -254,38 +260,46 @@
|
|||
const buttonsToPress =
|
||||
(buttonBoxMapping[touchedBox.y] ?? [])[touchedBox.x] ?? [];
|
||||
|
||||
for (let button of buttonsToPress) {
|
||||
currentlyPressed.add(button);
|
||||
}
|
||||
}
|
||||
|
||||
for (let oldButton of previouslyPressedButtons) {
|
||||
if (!buttonsToPress.includes(oldButton)) {
|
||||
if (!currentlyPressed.has(oldButton)) {
|
||||
releaseButton(oldButton);
|
||||
}
|
||||
}
|
||||
|
||||
for (let newButton of buttonsToPress) {
|
||||
if (!previouslyPressedButtons.includes(newButton)) {
|
||||
for (let newButton of currentlyPressed) {
|
||||
if (!previouslyPressedButtons.has(newButton)) {
|
||||
pressButton(newButton);
|
||||
}
|
||||
}
|
||||
|
||||
previouslyPressedButtons = buttonsToPress;
|
||||
previouslyPressedButtons = currentlyPressed;
|
||||
};
|
||||
|
||||
mobileDpad.addEventListener("touchstart", (evt) =>
|
||||
dpadMovement(evt.touches[0])
|
||||
dpadMovement(evt.targetTouches)
|
||||
);
|
||||
|
||||
mobileDpad.addEventListener("touchmove", (evt) =>
|
||||
dpadMovement(evt.touches[0])
|
||||
dpadMovement(evt.targetTouches)
|
||||
);
|
||||
|
||||
mobileDpad.addEventListener("touchend", (evt) => {
|
||||
for (let oldButton of previouslyPressedButtons) {
|
||||
releaseButton(oldButton);
|
||||
}
|
||||
previouslyPressedButtons = [];
|
||||
dpadMovement(evt.targetTouches);
|
||||
});
|
||||
|
||||
let mobileAbAPress = undefined;
|
||||
const mobileAbMovement = (touch) => {
|
||||
mobileDpad.addEventListener("touchcancel", (evt) => {
|
||||
dpadMovement(evt.targetTouches);
|
||||
});
|
||||
|
||||
let mobileAbAPress = new Set();
|
||||
const mobileAbMovement = (touches) => {
|
||||
const currentTouches = new Set();
|
||||
for (let touch of touches) {
|
||||
const target = touch.target.getBoundingClientRect();
|
||||
|
||||
const touchPoint = { x: touch.clientX, y: touch.clientY };
|
||||
|
@ -302,39 +316,37 @@
|
|||
};
|
||||
|
||||
const aPress = relativePosition.x > relativePosition.y;
|
||||
|
||||
if (aPress !== mobileAbAPress) {
|
||||
if (mobileAbAPress === true) {
|
||||
releaseButton("A");
|
||||
} else if (mobileAbAPress === false) {
|
||||
releaseButton("B");
|
||||
}
|
||||
}
|
||||
if (aPress) {
|
||||
pressButton("A");
|
||||
} else {
|
||||
pressButton("B");
|
||||
currentTouches.add(aPress ? "A" : "B");
|
||||
}
|
||||
|
||||
mobileAbAPress = aPress;
|
||||
for (let oldTouch of mobileAbAPress) {
|
||||
if (!currentTouches.has(oldTouch)) {
|
||||
releaseButton(oldTouch);
|
||||
}
|
||||
}
|
||||
|
||||
for (let newTouch of currentTouches) {
|
||||
if (!mobileAbAPress.has(newTouch)) {
|
||||
pressButton(newTouch);
|
||||
}
|
||||
}
|
||||
mobileAbAPress = currentTouches;
|
||||
};
|
||||
|
||||
mobileAb.addEventListener("touchstart", (evt) =>
|
||||
mobileAbMovement(evt.touches[0])
|
||||
);
|
||||
mobileAb.addEventListener("touchstart", (evt) => {
|
||||
mobileAbMovement(evt.targetTouches);
|
||||
});
|
||||
|
||||
mobileAb.addEventListener("touchmove", (evt) =>
|
||||
mobileAbMovement(evt.touches[0])
|
||||
);
|
||||
mobileAb.addEventListener("touchmove", (evt) => {
|
||||
mobileAbMovement(evt.targetTouches);
|
||||
});
|
||||
|
||||
mobileAb.addEventListener("touchend", (evt) => {
|
||||
if (mobileAbAPress === true) {
|
||||
releaseButton("A");
|
||||
} else if (mobileAbAPress === false) {
|
||||
releaseButton("B");
|
||||
}
|
||||
mobileAbMovement(evt.targetTouches);
|
||||
});
|
||||
|
||||
mobileAbAPress = undefined;
|
||||
mobileAb.addEventListener("touchcancel", (evt) => {
|
||||
mobileAbMovement(evt.targetTouches);
|
||||
});
|
||||
</script>
|
||||
</body>
|
||||
|
|
Loading…
Reference in a new issue