Skip to content
Snippets Groups Projects
Commit 459474c4 authored by deuce's avatar deuce
Browse files

Add a position getter

parent 978e4415
No related branches found
No related tags found
No related merge requests found
function Piece(colour, pos, board)
{
if(colour==null && pos==null && board==null)
return;
var pos=parsePos(pos);
this.colour=parseColour(colour);
this.x=pos.x;
......@@ -34,6 +36,9 @@ Piece.prototype={
}
}
return true;
},
get position() {
return makePos(this);
}
}
......@@ -75,7 +80,7 @@ Pawn.prototype.moveTo=function(pos, update)
if(capture==null) {
// Check for en passant
if(xdist==1) {
passed=this.board.getPiece({x:this.x,y:this.y-(black?-1:1)});
passed=this.board.getPiece({x:this.x,y:this.y-this.colour});
if(passed == null)
return false;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment