statki/public/assets/js/socket.js

232 lines
7.9 KiB
JavaScript
Raw Normal View History

2024-04-11 19:10:45 +02:00
switchView("mainMenuView");
const socket = io();
// Handling server-sent events
socket.on("joined", (nick) => {
2024-03-25 12:41:02 +01:00
returnLock = false;
lockUI(true);
$("#oppNameField").html(nick);
lockUI(false);
switchView("preparingGame");
console.log("Player joined the game:", nick);
2024-01-08 16:53:12 +01:00
});
socket.on("player left", () => {
lockUI(false);
switchView("mainMenuView");
console.log("Player left the game");
});
socket.on("gameReady", (gameId) => {
console.log("Game is ready, redirecting in 2 seconds. Game ID:", gameId);
setTimeout(() => {
console.log("Redirecting...");
window.location.replace("/game?id=" + gameId);
}, 2000);
});
var nickname;
2024-03-19 22:33:14 +01:00
socket.emit('locale options', (langs) => {
console.log("Fetching available locale options");
let menu = "";
langs.forEach(lang => {
menu += `<option value="${lang.id}">${lang.name}</option>`;
});
$("#languages").html(menu);
console.log("Locale options fetched");
});
$("#languages").on("change", function() {
lockUI(true);
console.log("Switching language to", $(this).val());
socket.emit("change locale", $(this).val(), (response) => {
switch (response.status) {
case "ok":
console.log("Switched languages, refreshing");
window.location.reload();
break;
default:
alert(`${window.locale["Unknown error occured"]}\n${window.locale["Status:"]} ${response.status}`);
lockUI(false);
break;
}
});
});
2024-03-24 19:51:49 +01:00
socket.emit("my profile", (profile) => {
console.log("Received user data. UID:", profile.uid);
console.log("Profile data:", profile);
2024-03-24 19:51:49 +01:00
// General profile data
let options = { weekday: 'long', year: 'numeric', month: 'long', day: 'numeric' };
2024-03-27 15:51:33 +01:00
$("#playerSince").html(new Date(profile.profile.account_creation).toLocaleDateString(undefined, options));
$(".nickname").html(profile.profile.nickname);
2024-03-24 19:51:49 +01:00
// Profile stats
$("#monthlyPlayed").html(profile.stats.monthly_matches);
$("#totalPlayed").html(profile.stats.alltime_matches);
2024-03-25 12:41:02 +01:00
$("#winrate").html(profile.stats.winrate !== null ? `${profile.stats.winrate}%` : "-");
2024-03-24 19:51:49 +01:00
2024-03-24 22:00:05 +01:00
// Match history
2024-03-24 19:51:49 +01:00
var matchHistory = profile.matchHistory;
var matchHistoryDOM = "";
options = { hour: '2-digit', minute: '2-digit', time: 'numeric', weekday: 'long', year: 'numeric', month: 'long', day: 'numeric' };
for (let i = 0; i < matchHistory.length; i++) {
const match = matchHistory[i];
let date = new Date(match.date).toLocaleDateString(undefined, options);
2024-03-24 19:51:49 +01:00
const minutes = Math.floor(match.duration / 60).toLocaleString(undefined, { minimumIntegerDigits: 2, useGrouping: false });
2024-03-27 15:51:33 +01:00
const seconds = (match.duration - minutes * 60).toLocaleString(undefined, { minimumIntegerDigits: 2, useGrouping: false });
2024-03-24 19:51:49 +01:00
const duration = `${minutes}:${seconds}`;
console.log(match);
matchHistoryDOM += `<div class="match" data-matchid="${match.match_id}"><div><h1 class="dynamic${match.won === 1 ? "" : " danger"}">${match.won === 1 ? window.locale["Victory"] : window.locale["Defeat"]}</h1><span> vs. ${match.match_type === "pvp" ? match.opponent : "<span class=\"important\">AI ("+match.ai_type+")</span>"}</span></div><h2 class="statsButton">${window.locale["Click to view match statistics"]}</h2><span>${date}</span><br><span>${duration}</span></div>`;
2024-03-24 19:51:49 +01:00
}
if (!matchHistoryDOM) {
2024-03-27 15:51:33 +01:00
matchHistoryDOM = `<h2>${window.locale["No matches played"]}</h2>`;
2024-03-25 12:41:02 +01:00
}
2024-03-24 19:51:49 +01:00
$(".matchList").html(matchHistoryDOM);
console.log("Profile data fetched successfully");
2024-03-19 22:33:14 +01:00
});
socket.emit("whats my nick", (myNickname) => {
nickname = myNickname;
2024-03-19 22:33:14 +01:00
$("#profileButton").html(nickname);
console.log("Received player nickname:", myNickname);
});
2024-01-08 16:53:12 +01:00
$("#createGameButton").on("click", function () {
lockUI(true);
console.log("Creating a lobby...");
2024-01-08 16:53:12 +01:00
socket.emit("create lobby", (response) => {
switch (response.status) {
case "ok":
console.log("Lobby created");
2024-01-08 16:53:12 +01:00
$("#createGameCode").val(response.gameCode);
2024-04-13 23:59:21 +02:00
lockUI(false);
2024-01-08 16:53:12 +01:00
switchView("pvpCreateView");
2024-03-19 22:33:14 +01:00
returnLock = true;
2024-01-08 16:53:12 +01:00
break;
case "alreadyInLobby":
console.log("Lobby creation failed (player is already in a lobby)");
2024-01-08 16:53:12 +01:00
$("#createGameCode").val(response.gameCode);
lockUI(false);
2024-04-13 23:59:21 +02:00
switchView("pvpCreateView");
2024-01-08 16:53:12 +01:00
break;
default:
console.log("Lobby creation failed (unknown)");
2024-03-27 15:51:33 +01:00
alert(`${window.locale["Unknown error occured"]}\n${window.locale["Status:"]} ${response.status}`);
2024-01-08 16:53:12 +01:00
lockUI(false);
break;
}
});
});
$("#leaveGameButton").on("click", function () {
lockUI(true);
window.location.reload();
2024-01-08 16:53:12 +01:00
});
$("#logout").on("click", function() {
lockUI(true);
socket.emit("logout");
window.location.reload();
});
$("#pveDifficulty").on("change", function() {
switch (this.value) {
case 'simple':
$('#difficultyDescription').html(locale["Simple description"]);
break;
case 'smart':
$('#difficultyDescription').html(locale["Smart description"]);
break;
case 'overkill':
$('#difficultyDescription').html(locale["Overkill description"]);
break;
default:
$('#difficultyDescription').html('');
break;
}
});
const joinForm = document.getElementById('pvpJoinForm');
const joinCodeInput = document.getElementById('pvpJoinCode');
2024-01-08 16:53:12 +01:00
joinForm.addEventListener('submit', (e) => {
2024-01-08 16:53:12 +01:00
e.preventDefault();
if (joinCodeInput.value && joinCodeInput.value.length === 6) {
2024-01-08 16:53:12 +01:00
lockUI(true);
console.log("Joining a lobby with code:", joinCodeInput.value);
socket.emit("join lobby", joinCodeInput.value, (response) => {
2024-01-08 16:53:12 +01:00
switch (response.status) {
case "ok":
console.log("Joined a lobby by:", response.oppNickname);
$("#oppNameField").html(response.oppNickname);
2024-01-08 16:53:12 +01:00
lockUI(false);
2024-04-13 23:59:21 +02:00
switchView("preparingGame");
2024-01-08 16:53:12 +01:00
break;
default:
2024-03-27 15:51:33 +01:00
alert(`${window.locale["Unknown error occured"]}\n${window.locale["Status:"]} ${response.status}`);
2024-01-08 16:53:12 +01:00
lockUI(false);
switchView("mainMenuView");
break;
}
});
joinCodeInput.value = '';
}
});
const pveForm = document.getElementById('pveCreateForm');
const pveDifficultyElem = document.getElementById('pveDifficulty');
pveForm.addEventListener('submit', (e) => {
const pveDifficulty = pveDifficultyElem.value;
e.preventDefault();
if (pveDifficulty) {
lockUI(true);
console.log("Creating a PvE game with difficulty:", pveDifficulty);
socket.emit("create pve", pveDifficulty, (response) => {
switch (response.status) {
case "ok":
console.log("Joined a PvE lobby: ", response.oppNickname);
$("#oppNameField").html(`AI (${pveDifficulty})`);
lockUI(false);
switchView("preparingGame");
break;
default:
alert(`${window.locale["Unknown error occured"]}\n${window.locale["Status:"]} ${response.status}`);
lockUI(false);
switchView("mainMenuView");
break;
}
});
joinCodeInput.value = '';
2024-01-08 16:53:12 +01:00
}
});
// const isInStandaloneMode = () =>
// (window.matchMedia('(display-mode: standalone)').matches) || (window.navigator.standalone) || document.referrer.includes('android-app://');
// if (isInStandaloneMode()) {
// alert("Thanks for using the PWA!");
// }