3 .col-sm-12.col-md-10.col-md-offset-1.col-lg-8.col-lg-offset-2
4 BaseGame(:game="game" :vr="vr" ref="basegame" @newmove="processMove")
8 import BaseGame from "@/components/BaseGame.vue";
9 import { store } from "@/store";
10 import Worker from 'worker-loader!@/playCompMove';
13 name: 'my-computer-game',
17 // gameInfo: fen + mode + vname
18 // mode: "auto" (game comp vs comp), "versus" (normal) or "analyze"
23 // variables passed to BaseGame:
25 players: ["Myself","Computer"], //playing as white
28 // Web worker to play computer moves without freezing interface:
29 timeStart: undefined, //time when computer starts thinking
30 lockCompThink: false, //to avoid some ghost moves
36 return Object.assign({},
39 fenStart: this.fenStart,
40 players: this.players,
41 mycolor: this.mycolor,
46 gameInfo: function() {
47 // (Security) No effect if a computer move is in progress:
48 if (this.lockCompThink)
49 return this.$emit("computer-think");
53 // Modal end of game, and then sub-components
55 // Computer moves web worker logic: (TODO: also for observers in HH games ?)
56 this.compWorker = new Worker(); //'/javascripts/playCompMove.js'),
57 this.compWorker.onmessage = e => {
58 this.lockCompThink = true; //to avoid some ghost moves
59 let compMove = e.data;
60 if (!Array.isArray(compMove))
61 compMove = [compMove]; //to deal with MarseilleRules
62 // Small delay for the bot to appear "more human"
63 const delay = Math.max(500-(Date.now()-this.timeStart), 0);
65 const animate = (this.gameInfo.vname != "Dark");
66 this.$refs.basegame.play(compMove[0], animate);
67 if (compMove.length == 2)
68 setTimeout( () => { this.$refs.basegame.play(compMove[1], animate); }, 750);
69 else //250 == length of animation (TODO: should be a constant somewhere)
70 setTimeout( () => this.lockCompThink = false, 250);
76 // dans variant.js (plutôt room.js) conn gère aussi les challenges
77 // et les chats dans chat.js. Puis en webRTC, repenser tout ça.
79 launchGame: async function() {
80 const vModule = await import("@/variants/" + this.gameInfo.vname + ".js");
81 window.V = vModule.VariantRules;
82 this.compWorker.postMessage(["scripts",this.gameInfo.vname]);
83 this.compWorker.postMessage(["init",this.gameInfo.fenStart]);
84 this.newGameFromFen(this.gameInfo.fenStart);
86 newGameFromFen: function(fen) {
88 this.mycolor = (Math.random() < 0.5 ? "w" : "b");
89 this.players = ["Myself","Computer"];
90 if (this.mycolor == "b")
91 this.players = this.players.reverse();
92 this.compWorker.postMessage(["init",fen]);
93 if (this.mycolor != "w" || this.gameInfo.mode == "auto")
94 this.playComputerMove();
96 playComputerMove: function() {
97 this.timeStart = Date.now();
98 this.compWorker.postMessage(["askmove"]);
100 // TODO: do not process if game is over (check score ?)
101 processMove: function(move) {
102 // Send the move to web worker (including his own moves)
103 this.compWorker.postMessage(["newmove",move]);
104 // subTurn condition for Marseille (and Avalanche) rules
105 if ((!this.vr.subTurn || this.vr.subTurn <= 1)
106 && (this.mode == "auto" || this.vr.turn != this.mycolor))
108 this.playComputerMove();