1
0
mirror of https://github.com/thib8956/tic-tac-toe-ws.git synced 2024-09-29 06:06:37 +00:00
tic-tac-toe-ws/server.mts

164 lines
4.2 KiB
TypeScript
Raw Normal View History

2024-09-09 12:09:00 +00:00
import { Message, Response, Hello, EndGame } from "common.mjs"
import { WebSocket, WebSocketServer } from "ws";
2024-09-02 20:34:24 +00:00
const port = 1234
const wss = new WebSocketServer({ port });
let grid = [0, 0, 0, 0, 0, 0, 0, 0, 0]
2024-09-02 20:34:24 +00:00
console.log(`waiting for connection on ws://localhost:${port}`);
2024-09-08 10:58:00 +00:00
interface Client {
id: number,
2024-09-24 13:50:08 +00:00
symbol: "x" | "o",
2024-09-08 10:58:00 +00:00
ws: WebSocket
}
let id = 1;
let clients: Client[] = [];
2024-09-24 13:50:08 +00:00
let currentPlayer: Client | undefined = undefined;
2024-09-03 12:07:13 +00:00
wss.on("connection", (ws) => {
id += 1;
2024-09-08 10:58:00 +00:00
if (clients.length == 2) {
console.log("too many players");
ws.close();
return;
}
2024-09-03 12:07:13 +00:00
2024-09-24 13:50:08 +00:00
const symbol = clients.length == 0 ? "o" : "x";
clients.push({id, ws, symbol});
2024-09-08 10:05:02 +00:00
ws.send(JSON.stringify({kind: "hello", data: { id } as Hello}));
console.log(`player #${id} connected`);
2024-09-02 20:34:24 +00:00
ws.addEventListener("message", (event: any) => {
const message = JSON.parse(event.data);
const {x, y} = message;
2024-09-24 13:50:08 +00:00
const player = clients.find(x => x.ws === ws);
console.assert(player !== undefined);
console.log(message, player!.id, currentPlayer?.id);
if (!currentPlayer) {
currentPlayer = player;
}
2024-09-09 12:09:00 +00:00
2024-09-24 13:50:08 +00:00
if (clients.length < 2 || player!.id != currentPlayer?.id) {
return;
}
2024-09-09 12:09:00 +00:00
2024-09-08 10:58:00 +00:00
if (grid[y*3+x] === 0) {
2024-09-24 13:50:08 +00:00
grid[y*3+x] = player!.symbol == "o" ? 1 : 2;
2024-09-08 10:58:00 +00:00
for (const c of clients) {
const msg: Message = {
kind: "update",
2024-09-24 13:50:08 +00:00
data: { grid } as Response,
}
c.ws.send(JSON.stringify(msg));
}
const winnerId = checkWin(grid);
if (winnerId == -1) {
currentPlayer = clients.find(x => x.id !== currentPlayer?.id); // change player
console.assert(currentPlayer);
console.log(`current player is #${currentPlayer?.id}`);
} else if (winnerId == 0) {
for (const c of clients) {
const msg: Message = {
kind: "endgame",
data: { issue: "draw" } as EndGame
};
c.ws.send(JSON.stringify(msg));
}
} else {
console.log(`player ${winnerId} won !`);
const winner = clients.find(x => x.id === winnerId);
winner?.ws?.send(JSON.stringify({
kind: "endgame",
data: { issue: "win" } as EndGame
} as Message));
const loser = clients.find(x => x.id !== winnerId);
loser?.ws?.send(JSON.stringify({
kind: "endgame",
data: { issue: "lose" } as EndGame
} as Message));
}
}
2024-09-02 20:34:24 +00:00
});
2024-09-08 10:58:00 +00:00
ws.on("close", () => {
console.log(`player #${id} disconnected`);
clients = clients.filter(x => x.id !== id);
});
2024-09-02 20:34:24 +00:00
});
2024-09-09 12:09:00 +00:00
function checkWin(grid: number[]): number {
const clone = [...grid];
const grid2d = [];
while(clone.length) grid2d.push(clone.splice(0,3));
if (
grid2d[0][0] !== 0 &&
grid2d[0][0] === grid2d[0][1] &&
grid2d[0][1] === grid2d[0][2]
) {
return grid2d[0][0];
}
if (
grid2d[1][0] !== 0 &&
grid2d[1][0] === grid2d[1][1] &&
grid2d[1][1] === grid2d[1][2]
) {
return grid2d[1][0];
}
if (
grid2d[2][0] !== 0 &&
grid2d[2][0] === grid2d[2][1] &&
grid2d[2][1] === grid2d[2][2]
) {
return grid2d[2][0];
}
if (
grid2d[0][0] !== 0 &&
grid2d[0][0] === grid2d[1][0] &&
grid2d[1][0] === grid2d[2][0]
) {
return grid2d[0][0];
}
if (
grid2d[0][1] !== 0 &&
grid2d[0][1] === grid2d[1][1] &&
grid2d[1][1] === grid2d[2][1]
) {
return grid2d[0][1];
}
if (
grid2d[0][2] !== 0 &&
grid2d[0][2] === grid2d[1][2] &&
grid2d[1][2] === grid2d[2][2]
) {
return grid2d[0][2];
}
if (
grid2d[0][0] !== 0 &&
grid2d[0][0] === grid2d[1][1] &&
grid2d[1][1] === grid2d[2][2]
) {
return grid2d[0][0];
}
if (
grid2d[0][2] !== 0 &&
grid2d[0][2] === grid2d[1][1] &&
grid2d[1][1] === grid2d[2][0]
) {
return grid2d[0][2];
}
for (const row of grid2d) {
if (row[0] === 0 || row[1] === 0 || row[2] === 0) {
return -1;
}
}
return 0;
}