summaryrefslogtreecommitdiff
path: root/index.html
diff options
context:
space:
mode:
authornea <romangraef@gmail.com>2022-11-27 21:04:03 +0100
committernea <romangraef@gmail.com>2022-11-27 21:04:03 +0100
commita8ba3505473224c0696724a56898ed40ae19787f (patch)
treef3e5ac922d6584517526553912148e85c44c82ef /index.html
parentee4dbe1cfc72f90eb04a6452a381723b9e4c2b7f (diff)
downloadchess-a8ba3505473224c0696724a56898ed40ae19787f.tar.gz
chess-a8ba3505473224c0696724a56898ed40ae19787f.tar.bz2
chess-a8ba3505473224c0696724a56898ed40ae19787f.zip
drawbot
Diffstat (limited to 'index.html')
-rw-r--r--index.html24
1 files changed, 22 insertions, 2 deletions
diff --git a/index.html b/index.html
index a3b605d..ea4fdbc 100644
--- a/index.html
+++ b/index.html
@@ -13,6 +13,11 @@
margin: 0;
}
+ #app {
+ margin: 0 auto;
+ width: fit-content;
+ }
+
.board {
border: 2px solid black;
font-size: 20px;
@@ -45,13 +50,20 @@
border: crimson solid 1px;
}
+ .status {
+ text-align: center;
+ font-family: sans-serif;
+ }
+
.invisible {
display: none !important;
}
</style>
<body>
-<div id="app"></div>
+<div id="app">
+ <p class="status">You are <b>white</b></p>
+</div>
<div id="warn" class="invisible">
Connection closed
</div>
@@ -78,7 +90,7 @@
let board = document.createElement("table")
board.className = "board"
this.fields = {};
- for (let i = 0; i < 8; i++) {
+ for (let i = 7; i >= 0; i--) {
let row = document.createElement("tr")
row.className = "board-row"
for (let j = 0; j < 8; j++) {
@@ -97,6 +109,9 @@
board.appendChild(row)
}
elem.appendChild(board)
+ this.turnIndicator = document.createElement('p')
+ this.turnIndicator.className = "turn-indicator status"
+ elem.appendChild(this.turnIndicator)
}
playMove(fromField, toField) {
@@ -120,6 +135,7 @@
}
synchronizeBoard() {
+ this.turnIndicator.innerHTML = `<b>${capitalize(this.boardState.turn)}</b>s turn`
for (let field in this.fields) {
this.fields[field].innerHTML = ""
if (this.boardState[field]) {
@@ -135,6 +151,10 @@
}
}
+ function capitalize(thing) {
+ return thing.replace(/\b./, x => x.toUpperCase())
+ }
+
function indiciesToFieldName(row, col) {
return "abcdefgh".at(col) + (row + 1)
}