4 .col-sm-12.col-md-10.col-md-offset-1.col-lg-8.col-lg-offset-2
6 button(@click="clickReadRules()") {{ st.tr["Rules"] }}
8 v-show="!gameInProgress"
9 @click="startGame('auto')"
11 | {{ st.tr["Example game"] }}
13 v-show="!gameInProgress"
14 @click="startGame('versus')"
16 | {{ st.tr["Practice"] }}
18 v-show="gameInProgress"
21 | {{ st.tr["Stop game"] }}
24 @click="gotoAnalyze()"
26 | {{ st.tr["Analysis mode"] }}
28 .col-sm-12.col-md-8.col-md-offset-2.col-lg-6.col-lg-offset-3
29 h4#variantName {{ gameInfo.vname }}
31 v-show="display=='rules'"
36 v-show="display=='computer'"
38 @game-stopped="gameStopped"
43 import ComputerGame from "@/components/ComputerGame.vue";
44 import { store } from "@/store";
45 import { replaceByDiag } from "@/utils/printDiagram";
46 import { CompgameStorage } from "@/utils/compgameStorage";
56 gameInProgress: false,
57 // variables passed to ComputerGame:
66 $route: function(newRoute) {
67 this.re_setVariant(newRoute.params["vname"]);
71 // NOTE: variant cannot be set before store is initialized
72 this.re_setVariant(this.$route.params["vname"]);
75 showAnalyzeBtn: function() {
76 return !!this.V && this.V.CanAnalyze;
79 if (!this.gameInfo.vname) return ""; //variant not set yet
80 // (AJAX) Request to get rules content (plain text, HTML)
83 "raw-loader!@/translations/rules/" +
84 this.gameInfo.vname + "/" +
87 // Next two lines fix a weird issue after last update (2019-11)
90 .replace('module.exports = "', "")
92 .replace(/(fen:)([^:]*):/g, replaceByDiag)
97 clickReadRules: function() {
98 if (this.display != "rules") this.display = "rules";
99 else if (this.gameInProgress) this.display = "computer";
101 re_setVariant: async function(vname) {
102 await import("@/variants/" + vname + ".js")
104 this.V = window.V = vModule[vname + "Rules"];
105 this.gameInfo.vname = vname;
108 // Soon after component creation, st.tr might be uninitialized.
109 // Set a timeout to let a chance for the message to show translated.
110 const text = "Mispelled variant name";
112 alert(this.st.tr[text] || text);
113 this.$router.replace("/variants");
117 startGame: function(mode) {
118 if (this.gameInProgress) return;
119 this.gameInProgress = true;
120 this.display = "computer";
121 this.gameInfo.mode = mode;
122 if (this.gameInfo.mode == "versus") {
123 CompgameStorage.get(this.gameInfo.vname, (game) => {
124 // NOTE: game might be null
125 this.$refs["compgame"].launchGame(game);
128 this.$refs["compgame"].launchGame();
131 // user wants to stop the game:
132 stopGame: function() {
133 this.$refs["compgame"].gameOver("?", "Undetermined result");
135 // The game is effectively stopped:
136 gameStopped: function() {
137 this.gameInProgress = false;
138 if (this.gameInfo.mode == "versus")
139 CompgameStorage.remove(this.gameInfo.vname);
141 gotoAnalyze: function() {
143 "/analyse/" + this.gameInfo.vname +
144 "/?fen=" + V.GenRandInitFen(this.st.settings.randomness)
151 <!-- NOTE: not scoped here, because HTML is injected (TODO) -->
157 figure.diagram-container
158 margin: 15px 0 15px 0
171 margin-left: calc(10% - 20px)
173 @media screen and (max-width: 630px)
175 margin: 0 auto 10px auto
179 margin-right: calc(10% - 20px)
180 @media screen and (max-width: 630px)
190 background-color: #FFCC66
202 // To show (new) pieces, and/or there values...
203 figure.showPieces > img
206 figure.showPieces > figcaption
215 ol, ul:not(.browser-default)
218 ul:not(.browser-default)
221 ul:not(.browser-default) > li
222 list-style-type: disc
232 margin: 0 auto 15px auto