Skip to content

Commit

Permalink
feat: mobile zoom & move support
Browse files Browse the repository at this point in the history
  • Loading branch information
jwcub committed May 3, 2024
1 parent 4c106c4 commit b83f36d
Show file tree
Hide file tree
Showing 2 changed files with 93 additions and 4 deletions.
94 changes: 90 additions & 4 deletions app/game/view/baseRenderer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@ import {
MIN_DELTA_POS,
MIN_SCALE,
MIN_TEXT_SIZE,
MOBILE_MOVE_RATE,
MOBILE_ZOOM_RATE,
MOUNTAIN_COLOR,
R,
STANDARD_COLOR,
Expand Down Expand Up @@ -137,7 +139,7 @@ export default abstract class BaseRenderer {
};

// Move support.
canvas.onpointerdown = event => {
canvas.onmousedown = event => {
const initialPageX = event.pageX,
initialPageY = event.pageY;

Expand All @@ -146,7 +148,7 @@ export default abstract class BaseRenderer {

let shouldMove = false;

document.onpointermove = ({ pageX, pageY }) => {
document.onmousemove = ({ pageX, pageY }) => {
if (
!shouldMove &&
(Math.abs(pageX - initialPageX) > MIN_DELTA_POS ||
Expand All @@ -167,13 +169,97 @@ export default abstract class BaseRenderer {
lastPageY = pageY;
};

document.onpointerup = event => {
document.onmouseup = event => {
event.preventDefault();
document.body.removeAttribute("style");
document.onpointermove = document.onpointerup = null;
document.onmousemove = document.onmouseup = null;
};
};

// Zoom and move support on mobile devices.
canvas.ontouchstart = event => {
// Mobile move support.
if (event.touches.length === 1) {
let lastPageX = event.touches[0].pageX,
lastPageY = event.touches[0].pageY;

const stopMove = () => {
document.ontouchmove = document.ontouchend = null;
};

document.ontouchmove = event => {
event.preventDefault();

if (event.touches.length !== 1) {
stopMove();
return;
}

const { pageX, pageY } = event.touches[0];

deltaX += (pageX - lastPageX) * MOBILE_MOVE_RATE;
deltaY += (pageY - lastPageY) * MOBILE_MOVE_RATE;

lastPageX = pageX;
lastPageY = pageY;
};

document.ontouchend = event => {
event.preventDefault();
stopMove();
};
}

// Mobile zoom & move support.
if (event.touches.length === 2) {
event.preventDefault();

const [touch1, touch2] = event.touches;

let lastDist = Math.sqrt(
Math.pow(touch1.clientX - touch2.clientX, 2) +
Math.pow(touch1.clientY - touch2.clientY, 2)
);
let lastMidX = (touch1.clientX + touch2.clientX) / 2;
let lastMidY = (touch1.clientY + touch2.clientY) / 2;

const stopZoom = () => {
document.ontouchmove = document.ontouchend = null;
};

document.ontouchmove = event => {
event.preventDefault();

if (event.touches.length !== 2) {
stopZoom();
return;
}

const [touch1, touch2] = event.touches;

const dist = Math.sqrt(
Math.pow(touch1.clientX - touch2.clientX, 2) +
Math.pow(touch1.clientY - touch2.clientY, 2)
);
const midX = (touch1.clientX + touch2.clientX) / 2;
const midY = (touch1.clientY + touch2.clientY) / 2;

deltaScale += (dist - lastDist) * MOBILE_ZOOM_RATE;
deltaX += (midX - lastMidX) * MOBILE_MOVE_RATE;
deltaY += (midY - lastMidY) * MOBILE_MOVE_RATE;

lastDist = dist;
lastMidX = midX;
lastMidY = midY;
};

document.ontouchend = event => {
event.preventDefault();
stopZoom();
};
}
};

this.reset();

// Handle scale and position update.
Expand Down
3 changes: 3 additions & 0 deletions app/game/view/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@ export const MIN_DELTA_POS = 15;

export const DELTA_SCALE_PER_ZOOM = 0.15;

export const MOBILE_MOVE_RATE = 1.5;
export const MOBILE_ZOOM_RATE = 0.007;

export const BORDER_COLOR = 0xffffff;

export const STANDARD_COLOR = [
Expand Down

0 comments on commit b83f36d

Please sign in to comment.