README
dots-and-boxes
Play the Dots And Boxes game against computer. Play in console or use api for own user interface.
Console Game
npm start
or german version
npm start l=de
API
Example
const {Game} = require('dots-and-boxes');
var game = new Game({size: {x:3,y:3}, level: 2});
console.log( game.executeUserTurn( '0 0 l' ) );
{ player: 1,
line: 0,
value: 1,
complete: false,
otherTurn: [ { player: 2, line: 12, value: 1, complete: false } ] }
console.log( game.board.stringify() );
console.log( game.scores );
[ 9, 0, 0 ]