Compare commits

...

2 Commits

Author SHA1 Message Date
Tomáš Mládek 9ae4b740e1 fix: always have trailing slash, fix navigation
ci/woodpecker/push/woodpecker Pipeline was successful Details
2024-02-27 20:39:08 +01:00
Tomáš Mládek 5f6a9ec825 feat: add gamepad history 2024-02-27 20:36:48 +01:00
3 changed files with 58 additions and 6 deletions

View File

@ -1 +1,2 @@
export const prerender = true;
export const trailingSlash = 'always';

View File

@ -1 +0,0 @@
export const trailingSlash = 'always';

View File

@ -2,6 +2,7 @@
import { onMount } from 'svelte';
import { browser } from '$app/environment';
import debug from 'debug';
const dbg = debug('app:camera');
let gamepads: Gamepad[] = [];
@ -9,13 +10,55 @@
let buttons: GamepadButton[] = [];
let axes: number[] = [];
const axisHistory: number[][] = [];
const sizes: [number, number][] = [];
const contexts: CanvasRenderingContext2D[] = [];
function update() {
buttons = currentGamepad?.buttons.concat() || [];
axes = currentGamepad?.axes.concat() || [];
axisHistory.push(axes);
if (axisHistory.length > 1024) {
axisHistory.shift();
}
for (let i = 0; i < axes.length; i++) {
if (!contexts[i]) {
const canvas = document.querySelector(`canvas[data-axis="${i}"]`) as HTMLCanvasElement;
if (!canvas) continue;
if (!canvas.checkVisibility()) continue;
contexts[i] = canvas.getContext('2d') as CanvasRenderingContext2D;
sizes[i] = [canvas.width, canvas.height];
}
const ctx = contexts[i];
if (!ctx) continue;
const [width, height] = sizes[i];
ctx.clearRect(0, 0, width, height);
ctx.strokeStyle = `rgba(255, 0, 0, 0.5)`;
ctx.beginPath();
ctx.moveTo(0, height / 2);
ctx.lineTo(width, height / 2);
ctx.stroke();
ctx.strokeStyle = 'white';
ctx.beginPath();
ctx.moveTo(width - axisHistory.length, height / 2);
for (let j = 0; j < axisHistory.length; j++) {
const x = width - axisHistory.length + j;
const y = ((axisHistory[j][i] + 1) * (height - 2)) / 2 + 1;
ctx.lineTo(x, y);
}
ctx.stroke();
}
requestAnimationFrame(update);
}
$: {
if (currentGamepad) {
function update() {
buttons = currentGamepad?.buttons.concat() || [];
axes = currentGamepad?.axes.concat() || [];
requestAnimationFrame(update);
}
update();
}
}
@ -86,6 +129,10 @@
<progress value={axis + 1} max="2"></progress>
<span>{axis.toFixed(2)}</span>
</div>
<details>
<summary>History</summary>
<canvas width="512" height="128" data-axis={i}></canvas>
</details>
</div>
{/each}
</div>
@ -160,4 +207,9 @@
}
}
}
canvas {
background: black;
width: 100%;
}
</style>