11 import BaseGame from "@/components/BaseGame.vue";
12 import { store } from "@/store";
13 import Worker from "worker-loader!@/playCompMove";
15 name: "my-computer-game",
19 // gameInfo: fen + mode + vname
20 // mode: "auto" (game comp vs comp) or "versus" (normal)
27 // Web worker to play computer moves without freezing interface:
28 timeStart: undefined, //time when computer starts thinking
29 compThink: false, //avoid asking a new move while one is being searched
34 "gameInfo.fen": function() {
37 "gameInfo.score": function(newScore) {
38 if (newScore != "*") {
39 this.game.score = newScore; //user action
40 if (!this.compThink) this.$emit("game-stopped"); //otherwise wait for comp
44 // Modal end of game, and then sub-components
46 // Computer moves web worker logic:
47 this.compWorker = new Worker();
48 this.compWorker.onmessage = e => {
49 let compMove = e.data;
51 this.compThink = false;
52 this.$emit("game-stopped"); //no more moves: mate or stalemate
53 return; //after game ends, no more moves, nothing to do
55 if (!Array.isArray(compMove)) compMove = [compMove]; //potential multi-move
56 // Small delay for the bot to appear "more human"
57 const delay = Math.max(500 - (Date.now() - this.timeStart), 0);
59 if (this.currentUrl != document.location.href) return; //page change
60 // NOTE: do not animate move if special display (ShowMoves != "all")
61 const animate = V.ShowMoves == "all";
62 const animDelay = animate ? 250 : 0;
65 (function executeMove() {
66 self.$set(self.game, "moveToPlay", compMove[moveIdx++]);
67 if (moveIdx >= compMove.length) {
68 self.compThink = false;
69 if (self.game.score != "*")
71 self.$emit("game-stopped");
72 } else setTimeout(executeMove, 500 + animDelay);
76 if (this.gameInfo.fen) this.launchGame();
79 launchGame: function() {
80 this.compWorker.postMessage(["scripts", this.gameInfo.vname]);
81 this.compWorker.postMessage(["init", this.gameInfo.fen]);
82 this.vr = new V(this.gameInfo.fen);
83 const mycolor = Math.random() < 0.5 ? "w" : "b";
84 let players = [{ name: "Myself" }, { name: "Computer" }];
85 if (mycolor == "b") players = players.reverse();
86 this.currentUrl = document.location.href; //to avoid playing outside page
87 // NOTE: fen and fenStart are redundant in game object
88 this.game = Object.assign({}, this.gameInfo, {
89 fenStart: this.gameInfo.fen,
94 this.compWorker.postMessage(["init", this.gameInfo.fen]);
95 if (mycolor != "w" || this.gameInfo.mode == "auto")
96 this.playComputerMove();
98 playComputerMove: function() {
99 this.timeStart = Date.now();
100 this.compThink = true;
101 this.compWorker.postMessage(["askmove"]);
103 processMove: function(move) {
104 if (this.game.score != "*") return;
105 // Send the move to web worker (including his own moves)
106 this.compWorker.postMessage(["newmove", move]);
107 // subTurn condition for Marseille (and Avalanche) rules
109 (!this.vr.subTurn || this.vr.subTurn <= 1) &&
110 (this.gameInfo.mode == "auto" || this.vr.turn != this.game.mycolor)
112 this.playComputerMove();
115 gameOver: function(score, scoreMsg) {
116 this.game.score = score;
117 this.game.scoreMsg = scoreMsg;
118 this.$emit("game-over", score); //bubble up to Rules.vue