Skip to content
Snippets Groups Projects
Commit 8f47888a authored by Stephen D's avatar Stephen D
Browse files

qr

parent 5a14ce0b
No related branches found
No related tags found
No related merge requests found
...@@ -46,6 +46,7 @@ const b = document.getElementById("b"); ...@@ -46,6 +46,7 @@ const b = document.getElementById("b");
const select = document.getElementById("select"); const select = document.getElementById("select");
const start = document.getElementById("start"); const start = document.getElementById("start");
let qr = {};
let pressedButtons = {}; let pressedButtons = {};
// SO BAD AAAAAAA // SO BAD AAAAAAA
...@@ -130,16 +131,27 @@ select.onpointerup = () => { ...@@ -130,16 +131,27 @@ select.onpointerup = () => {
}; };
function checkButtonStatus() { function checkButtonStatus() {
up.style = pressedButtons.up ? "background-color: red;" : ""; const pressed = {
down.style = pressedButtons.down ? "background-color: red;" : ""; left: pressedButtons.left || qr.left,
left.style = pressedButtons.left ? "background-color: red;" : ""; right: pressedButtons.right || qr.right,
right.style = pressedButtons.right ? "background-color: red;" : ""; up: pressedButtons.up || qr.up,
a.style = pressedButtons.a ? "background-color: red;" : ""; down: pressedButtons.down || qr.down,
b.style = pressedButtons.b ? "background-color: red;" : ""; a: pressedButtons.a || qr.a,
start.style = pressedButtons.start ? "background-color: red;" : ""; b: pressedButtons.b || qr.b,
select.style = pressedButtons.select ? "background-color: red;" : ""; start: pressedButtons.start || qr.start,
select: pressedButtons.select || qr.select,
nesWorker.postMessage({ keys: pressedButtons }); };
up.style = pressed.up ? "background-color: red;" : "";
down.style = pressed.down ? "background-color: red;" : "";
left.style = pressed.left ? "background-color: red;" : "";
right.style = pressed.right ? "background-color: red;" : "";
a.style = pressed.a ? "background-color: red;" : "";
b.style = pressed.b ? "background-color: red;" : "";
start.style = pressed.start ? "background-color: red;" : "";
select.style = pressed.select ? "background-color: red;" : "";
nesWorker.postMessage({ keys: pressed });
} }
let datas = {}; let datas = {};
...@@ -204,13 +216,16 @@ function tick() { ...@@ -204,13 +216,16 @@ function tick() {
latencyDiv.innerText = `Frame latency: ${delta}ms`; latencyDiv.innerText = `Frame latency: ${delta}ms`;
// reset
qr = {};
if (code?.data.length > 0) { if (code?.data.length > 0) {
latencyScan.innerText = `Scan latency: ${delta}ms`; latencyScan.innerText = `Scan latency: ${delta}ms`;
// TODO Spencer // TODO Spencer
//if code.data.length { if (code.data == "ABCDEFGHIJKLNOPQRSTUVWXYZ") {
qr.a = true;
//} }
drawLine( drawLine(
code.location.topLeftCorner, code.location.topLeftCorner,
...@@ -238,6 +253,8 @@ function tick() { ...@@ -238,6 +253,8 @@ function tick() {
renderData(); renderData();
} }
checkButtonStatus();
} }
requestAnimationFrame(tick); requestAnimationFrame(tick);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment