Remove Lostqueen - bad idea, probably
authorBenjamin Auder <benjamin.auder@somewhere>
Sat, 26 Dec 2020 18:24:49 +0000 (19:24 +0100)
committerBenjamin Auder <benjamin.auder@somewhere>
Sat, 26 Dec 2020 18:24:49 +0000 (19:24 +0100)
client/src/translations/en.js
client/src/translations/es.js
client/src/translations/fr.js
client/src/translations/rules/Lostqueen/en.pug [deleted file]
client/src/translations/rules/Lostqueen/es.pug [deleted file]
client/src/translations/rules/Lostqueen/fr.pug [deleted file]
client/src/translations/variants/en.pug
client/src/translations/variants/es.pug
client/src/translations/variants/fr.pug
client/src/variants/Lostqueen.js [deleted file]
server/db/populate.sql

index 9977812..fbcad34 100644 (file)
@@ -206,7 +206,6 @@ export const translations = {
   "Four new pieces": "Four new pieces",
   "In the shadow": "In the shadow",
   "Interweaved colorbound teams": "Interweaved colorbound teams",
-  "Get rid of the queen": "Get rid of the queen",
   "Get strong at self-mate": "Get strong at self-mate",
   "Give three checks": "Give three checks",
   "Harassed kings": "Harassed kings",
index 599a270..22b20a9 100644 (file)
@@ -206,7 +206,6 @@ export const translations = {
   "Four new pieces": "Quatro nuevas piezas",
   "In the shadow": "En la sombra",
   "Interweaved colorbound teams": "Equipos unicolores entrelazados",
-  "Get rid of the queen": "Deshacerse de la dama",
   "Get strong at self-mate": "Progreso en mates asistidos",
   "Give three checks": "Dar tres jaques",
   "Harassed kings": "Reyes acosados",
index eb6f9c7..e3e5379 100644 (file)
@@ -206,7 +206,6 @@ export const translations = {
   "Four new pieces": "Quatre nouvelles pièces",
   "In the shadow": "Dans l'ombre",
   "Interweaved colorbound teams": "Équipes unicolores entremêlées",
-  "Get rid of the queen": "Débarrassez-vous de la dame",
   "Get strong at self-mate": "Progressez en mats aidés",
   "Give three checks": "Donnez trois échecs",
   "Harassed kings": "Rois harcelés",
diff --git a/client/src/translations/rules/Lostqueen/en.pug b/client/src/translations/rules/Lostqueen/en.pug
deleted file mode 100644 (file)
index c3a5920..0000000
+++ /dev/null
@@ -1,4 +0,0 @@
-p.boxed
-  | The goal is to lose the queen.
-
-p TODO
diff --git a/client/src/translations/rules/Lostqueen/es.pug b/client/src/translations/rules/Lostqueen/es.pug
deleted file mode 100644 (file)
index 254e04c..0000000
+++ /dev/null
@@ -1,4 +0,0 @@
-p.boxed
-  | El objetivo es perder a la dama.
-
-p TODO
diff --git a/client/src/translations/rules/Lostqueen/fr.pug b/client/src/translations/rules/Lostqueen/fr.pug
deleted file mode 100644 (file)
index 46aefd1..0000000
+++ /dev/null
@@ -1,4 +0,0 @@
-p.boxed
-  | L'objectif est de perdre la dame.
-
-p TODO
index 9ee45a8..156b4b5 100644 (file)
@@ -396,7 +396,6 @@ p.
     "Freecapture",
     "Gridolina",
     "Hamilton",
-    "Lostqueen",
     "Magnetic",
     "Parachute",
     "Takenmake",
index d43de3b..890c081 100644 (file)
@@ -408,7 +408,6 @@ p.
     "Gridolina",
     "Hamilton",
     "Magnetic",
-    "Lostqueen",
     "Parachute",
     "Takenmake",
     "Titan",
index b739f60..59ba797 100644 (file)
@@ -406,7 +406,6 @@ p.
     "Freecapture",
     "Gridolina",
     "Hamilton",
-    "Lostqueen",
     "Magnetic",
     "Parachute",
     "Takenmake",
diff --git a/client/src/variants/Lostqueen.js b/client/src/variants/Lostqueen.js
deleted file mode 100644 (file)
index 3b64008..0000000
+++ /dev/null
@@ -1,36 +0,0 @@
-import { ChessRules } from "@/base_rules";
-
-export class LostqueenRules extends ChessRules {
-
-  // The king can move like a knight:
-  getPotentialKingMoves(sq) {
-    return (
-      super.getPotentialKingMoves(sq).concat(
-      super.getSlideNJumpMoves(sq, ChessRules.steps[V.KNIGHT], "oneStep"))
-    );
-  }
-
-  // Goal is to lose the queen (or be checkmated):
-  getCurrentScore() {
-    // If my queen disappeared, I win
-    const color = this.turn;
-    let haveQueen = false;
-    outerLoop: for (let i=0; i<V.size.x; i++) {
-      for (let j=0; j<V.size.y; j++) {
-        if (
-          this.board[i][j] != V.EMPTY &&
-          this.getColor(i,j) == color &&
-          this.getPiece(i,j) == V.QUEEN
-        ) {
-          haveQueen = true;
-          break outerLoop;
-        }
-      }
-    }
-    if (!haveQueen) return color == "w" ? "1-0" : "0-1";
-    if (this.atLeastOneMove()) return "*";
-    // No valid move: the side who cannot move (or is checkmated) wins
-    return this.turn == "w" ? "1-0" : "0-1";
-  }
-
-};
index 208ffba..47a6f3c 100644 (file)
@@ -71,7 +71,6 @@ insert or ignore into Variants (name, description) values
   ('Koopa', 'Stun & kick pieces'),
   ('Koth', 'King of the Hill'),
   ('Losers', 'Get strong at self-mate'),
-  ('Lostqueen', 'Get rid of the queen'),
   ('Madhouse', 'Rearrange enemy pieces'),
   ('Madrasi', 'Paralyzed pieces'),
   ('Magnetic', 'Laws of attraction'),