From dc3fcbbb2cf26d92a202ecbacd713a5bce77447a Mon Sep 17 00:00:00 2001 From: Nicolas Fritz Date: Wed, 18 Jan 2023 22:05:41 +0100 Subject: [PATCH] refactoring: Game.js Code formatiert und kommentiert --- uno/js/Game.js | 34 ++++++++++++++++++++++++++++------ 1 file changed, 28 insertions(+), 6 deletions(-) diff --git a/uno/js/Game.js b/uno/js/Game.js index 06f539a..bc6c028 100644 --- a/uno/js/Game.js +++ b/uno/js/Game.js @@ -6,8 +6,10 @@ const Skip = require("./cards/special/Skip"); const PlusAmount = require("./cards/special/PlusAmount"); const Reverse = require("./cards/special/Reverse"); +//Um generatePool zu exportieren, muss es in eine Klasse konvertiert werden class Game { + //Erstellt ein Spiel mit SpielerAnzahl und Array mit Regeln, initialisiert dann das Spiel constructor(playerAmount, rules) { this._playerAmount = playerAmount; @@ -20,31 +22,51 @@ class Game { this._cardPool = this.generatePool(); } + //Gibt ein Array zurück mit allen Karten, die in einem Uno Spiel sind generatePool(){ + + //Array wird erstellt, welches später zurückgegeben wird und alle Karten beinhaltet let pool = []; + + //Pool aus Karten generieren for (let k = 0; k < 2; k++) { + + //Special Karten werden hinzugefügt for (let j = 1; j < (uno.CARD_COLORS.length); j++) { - pool.push(new Reverse("R", uno.CARD_COLORS[j])); - pool.push(new PlusAmount("+2", uno.CARD_COLORS[j])); - pool.push(new Skip("S", uno.CARD_COLORS[j])); + + pool.push(new Reverse("R", uno.CARD_COLORS[j])); // 8x Reverse + pool.push(new PlusAmount("+2", uno.CARD_COLORS[j])); // 8x +2 + pool.push(new Skip("S", uno.CARD_COLORS[j])); // 8x Skip + if (k === 0) { - pool.push(new ChooseColor("CC")); - pool.push(new PlusAmount("+4", uno.CARD_COLORS[0])); + + pool.push(new ChooseColor("CC")); // 4x ChooseColor + pool.push(new PlusAmount("+4", uno.CARD_COLORS[0])); // 4x +4 + } + + //Normale Karten werden hinzugefügt for (let i = 0; i <= 9; i++) { if (k === 1 && i === 0) continue; - pool.push(new Card(i, uno.CARD_COLORS[j])); + pool.push(new Card(i, uno.CARD_COLORS[j])); // 76x (2x 4x 1-9 + 4x 0) + } + } + } + + //Array mit Karten wird zurückgegeben return pool; } + //Gib den Pool mit allen UnoKarten zurück get cardPool(){ return this._cardPool; } } +//Exportiert Modul Game module.exports = Game; \ No newline at end of file