pink go brr

This commit is contained in:
Freya Murphy 2023-06-13 22:22:42 -04:00
parent edcdd665e1
commit 5de011115c
9 changed files with 36 additions and 10 deletions

View file

@ -31,7 +31,7 @@ export function startInputListener() {
if (ev.code === "KeyB") { if (ev.code === "KeyB") {
debug_enabled = !debug_enabled debug_enabled = !debug_enabled
if (debug_enabled) { if (debug_enabled) {
debug_style.innerHTML = "* {box-shadow: 0 0 1px red inset;}" debug_style.innerHTML = "* {box-shadow: 0 0 3px red inset;}"
} else { } else {
debug_style.innerHTML = "" debug_style.innerHTML = ""
} }

View file

@ -147,14 +147,40 @@ const init_map = (data) => {
document.getElementById("lobby").style.display = "none" document.getElementById("lobby").style.display = "none"
let width = 13 // let width = 13
let height = 5 // let height = 5
// let m_data = [
// 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
// 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1,
// 1, 0, 1, 0, 1, 1, 1, 0, 1, 0, 1, 0, 1,
// 1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 1,
// 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1
// ]
let width = 21
let height = 21
let m_data = [ let m_data = [
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,
1, 0, 1, 0, 1, 1, 1, 0, 1, 0, 1, 0, 1, 1,0,1,1,1,0,1,1,1,0,1,0,1,1,1,0,1,1,1,0,1,
1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 1, 1,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,1,
1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1 1,0,1,0,1,1,1,1,1,0,1,0,1,1,1,1,1,0,1,0,1,
1,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,
1,0,1,1,1,0,1,0,1,1,1,1,1,0,1,0,1,1,1,0,1,
1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,
1,1,1,0,1,0,1,0,1,1,1,1,1,0,1,0,1,0,1,1,1,
1,0,0,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,1,
1,0,1,1,1,0,1,0,1,0,0,0,1,0,1,0,1,1,1,0,1,
1,0,0,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,1,
1,1,1,0,1,0,1,0,1,1,0,1,1,0,1,0,1,0,1,1,1,
1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,
1,0,1,1,1,0,1,0,1,1,1,1,1,0,1,0,1,1,1,0,1,
1,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,
1,0,1,0,1,1,1,1,1,0,1,0,1,1,1,1,1,0,1,0,1,
1,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,1,
1,0,1,1,1,0,1,1,1,0,1,0,1,1,1,0,1,1,1,0,1,
1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,
1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
] ]
data.map = new Map(width, height, m_data) data.map = new Map(width, height, m_data)

View file

@ -71,7 +71,7 @@ function startGame(code, name) {
return false return false
} }
let players = Object.values(start_data.data.players).filter(p => { return p.name !== undefined }) let players = Object.values(start_data.data.players).filter(p => { return p !== null && p.name !== undefined })
if (players.length >= 4) { if (players.length >= 4) {
alert('Room is full') alert('Room is full')
return false return false

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.2 KiB

After

Width:  |  Height:  |  Size: 718 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.2 KiB

After

Width:  |  Height:  |  Size: 699 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.2 KiB

After

Width:  |  Height:  |  Size: 687 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 569 B

After

Width:  |  Height:  |  Size: 687 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 571 B

After

Width:  |  Height:  |  Size: 668 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.2 KiB

After

Width:  |  Height:  |  Size: 658 B