This commit is contained in:
Florian Schmid 2023-04-23 19:17:27 +02:00
parent ca0136a808
commit 70dd1dbf23
2 changed files with 162 additions and 117 deletions

View File

@ -68,8 +68,7 @@
</div> </div>
<script type="module"> <script type="module">
import {main, btnClick} from "./js/gst.js" import { main } from "./js/gst.js"
window.btnClick = btnClick
main() main()
</script> </script>
</body> </body>

View File

@ -1,120 +1,166 @@
import { CpuRepository } from "./cpuRepository.js";
import { Stats } from "./statistics.js"; import { Stats } from "./statistics.js";
var cpuList; type CPU = {
var currentCpu; name: string;
type: string;
var stats: Stats;
export async function main() {
// init cpu list
await (fetch('./data.json')
.then((response) => response.json())
.then((json) => cpuList = json));
stats = new Stats("highScore_socket");
updateScores();
nextRound();
} }
function nextRound() { class UI {
currentCpu = getRandomCpu(); #model: ViewModel;
document.getElementById("cpuName").innerText = currentCpu.name; #btnDesktop: HTMLElement;
#btnLaptop: HTMLElement;
#btnServer: HTMLElement;
#btnMobile: HTMLElement;
document.getElementById("mainCol").style.backgroundColor = ""; #btns: HTMLElement[];
}
function getRandomCpu() { #cpuName: HTMLElement;
let randomIndex; #score: HTMLElement;
do { #highScore: HTMLElement;
randomIndex = getRandomInt(0, cpuList.length) #mainCol: HTMLElement;
} while (typeof(cpuList[randomIndex]["type"]) == null || cpuList[randomIndex]["type"] == "null" || cpuList[randomIndex]["type"] == null);
constructor() {
this.#model = new ViewModel();
return { this.#btnDesktop = document.getElementById("btnDesktop");
name: cpuList[randomIndex]["name"].split('@')[0], this.#btnDesktop.onclick = () => this.btnClick(0);
type: cpuList[randomIndex]["type"] this.#btnLaptop = document.getElementById("btnLaptop");
this.#btnLaptop.onclick = () => this.btnClick(1);
this.#btnMobile = document.getElementById("btnMobile");
this.#btnMobile.onclick = () => this.btnClick(2);
this.#btnServer = document.getElementById("btnServer");
this.#btnServer.onclick = () => this.btnClick(3);
this.#btns = [this.#btnDesktop, this.#btnLaptop, this.#btnMobile, this.#btnServer];
this.#cpuName = document.getElementById("cpuName");
this.#score = document.getElementById("score");
this.#highScore = document.getElementById("highScore");
this.#mainCol = document.getElementById("mainCol");
} }
}
function delay(time) { async init() {
await this.#model.init();
this.#nextRound();
}
#updateScores() {
this.#score.innerText = this.#model.score.toString();
this.#highScore.innerText = this.#model.highScore.toString();
}
async #delay(time) {
return new Promise(resolve => setTimeout(resolve, time)); return new Promise(resolve => setTimeout(resolve, time));
} }
export async function btnClick(typ) { #nextRound() {
this.#model.nextRound();
this.#cpuName.innerText = this.#model.currentCpu.name;
this.#mainCol.style.backgroundColor = "";
}
async btnClick(typ) {
// 0 -> Desktop // 0 -> Desktop
// 1 -> Laptop // 1 -> Laptop
// 2 -> Mobile/Embedded // 2 -> Mobile/Embedded
// 3 -> Server // 3 -> Server
let btnDesktop = document.getElementById("btnDesktop"); this.#btns.forEach((el) => {
let btnLaptop = document.getElementById("btnLaptop");
let btnMobile = document.getElementById("btnMobile");
let btnServer = document.getElementById("btnServer");
let btns = [btnDesktop, btnLaptop, btnMobile, btnServer];
btns.forEach((el) => {
el.setAttribute("disabled", ""); el.setAttribute("disabled", "");
}) })
switch (typ) { switch (typ) {
case 0: case 0:
btnDesktop.style.backgroundColor = "#FF4444"; this.#btnDesktop.style.backgroundColor = "#FF4444";
break; break;
case 1: case 1:
btnLaptop.style.backgroundColor = "#FF4444"; this.#btnLaptop.style.backgroundColor = "#FF4444";
break; break;
case 2: case 2:
btnMobile.style.backgroundColor = "#FF4444"; this.#btnMobile.style.backgroundColor = "#FF4444";
break; break;
case 3: case 3:
btnServer.style.backgroundColor = "#FF4444"; this.#btnServer.style.backgroundColor = "#FF4444";
break; break;
} }
if(currentCpu.type.includes("Desktop")) { const currentType = this.#model.currentCpu.type;
btnDesktop.style.backgroundColor = "lightgreen"; if(currentType.includes("Desktop")) {
this.#btnDesktop.style.backgroundColor = "lightgreen";
} }
if(currentCpu.type.includes("Laptop")) { if(currentType.includes("Laptop")) {
btnLaptop.style.backgroundColor = "lightgreen"; this.#btnLaptop.style.backgroundColor = "lightgreen";
} }
if(currentCpu.type.includes("Mobile/Embedded")) { if(currentType.includes("Mobile/Embedded")) {
btnMobile.style.backgroundColor = "lightgreen"; this.#btnMobile.style.backgroundColor = "lightgreen";
} }
if(currentCpu.type.includes("Server")) { if(currentType.includes("Server")) {
btnServer.style.backgroundColor = "lightgreen"; this.#btnServer.style.backgroundColor = "lightgreen";
} }
// Score // Score
if (btns[typ].style.backgroundColor == "lightgreen") { if (this.#btns[typ].style.backgroundColor == "lightgreen") {
stats.incrementScore(); this.#model.incrementScore();
} else { } else {
stats.resetScore(); this.#model.resetScore();
} }
updateScores(); this.#updateScores();
await delay(1000); await this.#delay(1000);
btns.forEach( (el) => { this.#btns.forEach( (el) => {
el.style.backgroundColor = "#3CC3FA"; el.style.backgroundColor = "#3CC3FA";
el.removeAttribute("disabled"); el.removeAttribute("disabled");
}) })
nextRound(); this.#nextRound();
}
} }
function updateScores() { class ViewModel {
document.getElementById("score").innerText = stats.score.toString(); #repo: CpuRepository;
document.getElementById("highScore").innerText = stats.highScore.toString(); #stats: Stats;
constructor() {
this.#stats = new Stats("highScore_socket");
this.#repo = new CpuRepository();
}
async init() {
await this.#repo.init();
}
nextRound() {
this.#repo.reset();
}
incrementScore() {
this.#stats.incrementScore();
}
resetScore() {
this.#stats.resetScore();
}
get currentCpu(): CPU {
return this.#repo.currentCpu;
}
get score(): number {
return this.#stats.score;
}
get highScore(): number {
return this.#stats.highScore;
}
} }
function getRandomInt(min, max) { export async function main() {
min = Math.ceil(min); const ui = new UI();
max = Math.floor(max); await ui.init();
return Math.floor(Math.random() * (max - min) + min); // The maximum is exclusive and the minimum is inclusive
} }
main();