-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
147 lines (137 loc) · 6.63 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
//Function to get all the possible Horizontal Moves a Piece can Move
function getHorizontalMoves(x, y, xMoves, pieceMoves){
const xMovesArray = [];
for(let num of pieceMoves){
//Checking if the possible move is not out of bounds of board
if((xMoves.indexOf(x)+num >= 0) && (xMoves.indexOf(x)+num <=7)){
xMovesArray.push(xMoves[xMoves.indexOf(x)+num]+y);
}
}
return xMovesArray.toString();
}
//Function to get all the possible Vertical Moves a Piece can Move
function getVerticalMoves(x, y, yMoves, pieceMoves){
const yMovesArray = [];
for(let num of pieceMoves){
//Checking if the possible move is not out of bounds of board
if((yMoves.indexOf(y)+num >= 0) && (yMoves.indexOf(y)+num <=7)){
yMovesArray.push(x+yMoves[yMoves.indexOf(y)+num]);
}
}
return yMovesArray.toString();
}
//Function to get all the possible Diagonal Moves a Piece can Move
function getDiagonalMoves(x, y, xMoves, yMoves, pieceMoves){
const xyMovesArray = [];
for(var numx of pieceMoves){
//Checking if the possible move is not out of bounds of board
if((xMoves.indexOf(x)+numx >= 0) && (xMoves.indexOf(x)+numx <=7)){
let xAlpha = xMoves[xMoves.indexOf(x)+numx];
for(let num of [numx,(-1)*numx]){
//Checking if the possible move is not out of bounds of board
if((yMoves.indexOf(y)+num >= 0) && (yMoves.indexOf(y)+num <=7)){
xyMovesArray.push(xAlpha+yMoves[yMoves.indexOf(y)+num]);
}
}
}
}
return xyMovesArray.toString();
}
//Seperate Function to check all possible moves a horse can make since it can move 2.5 steps
function getHorseMoves(x, y, xMoves, yMoves){
const moveComplete = [];
for(let moves of [1, -1]){
if((xMoves.indexOf(x)+moves >= 0) && (xMoves.indexOf(x)+moves <= 7)){
var moveAlpha = xMoves[xMoves.indexOf(x)+moves];
}
if((xMoves.indexOf(x)+(moves*2) >= 0) && (xMoves.indexOf(x)+(moves*2) <= 7)){
var moveSecond = xMoves[xMoves.indexOf(x)+(moves*2)];
}
for(let moreMoves of [moves*1, moves*(-1)]){
let doubleMoves = moreMoves*2;
if(moveSecond!=undefined && (yMoves.indexOf(y)+moreMoves >= 0) && (yMoves.indexOf(y)+moreMoves <= 7)){
if(!moveComplete.includes(moveSecond+yMoves[yMoves.indexOf(y)+moreMoves])){
moveComplete.push(moveSecond+yMoves[yMoves.indexOf(y)+moreMoves]);
}
}
if(moveAlpha!=undefined && (yMoves.indexOf(y)+doubleMoves >= 0) && (yMoves.indexOf(y)+doubleMoves <= 7)){
if(!moveComplete.includes(moveAlpha+yMoves[yMoves.indexOf(y)+doubleMoves])){
moveComplete.push(moveAlpha+yMoves[yMoves.indexOf(y)+doubleMoves]);
}
}
}
}
return moveComplete;
}
//Function to check all possible moves piece can move from it's current position
//Parameters Accepted is one of the Pieces from (King, Queen, Bishop, Horse, Rook, Pawn)
//And It's Current position which from range A1,A2,A3,A4,A5,A6,A7,A8, similarly for B1...B8, C1...C8, D1...D8,
//E1...E8, F1...F8, G1...G8, H1...H8
function possibleMoves(piece, pos){
//Two Arrays to handle Horizontal moves & Vertical Moves
const xMoves = ['A','B','C','D','E','F','G','H'];
const yMoves = ['1','2','3','4','5','6','7','8'];
const validPiece = ['King','Queen','Bishop','Horse', 'Rook', 'Pawn'];
const kingMoves = [1, -1]; //Since King can only move +1 or -1 in either of the directions
const rqbMoves = [1,-1,2,-2,3,-3,4,-4,5,-5,6,-6,7,-7,8,-8]; //Since Bishop, Queen can move across board in either of the directions
const pawnMoves = [1];
const possibleMovesArray = []; //Array to store all the possible moves a piece can move
//Checking if the input given are either of valid pieces
if(validPiece.indexOf(piece) < 0){
console.log("Invalid Input");
return false;
}
//Checking if the input given are either of valid position
if(!piece || pos.length!=2 || !xMoves.includes(pos[0]) || !yMoves.includes(pos[1])){
console.log("Invalid Input");
return false;
}
//Switch case to validate between Pieces
switch(piece) {
//Get Moves for King
case "King":
//Get Horizontal, Vertical and Diagonal Moves
possibleMovesArray.push(getHorizontalMoves(pos[0], pos[1], xMoves, kingMoves));
possibleMovesArray.push(getVerticalMoves(pos[0], pos[1], yMoves, kingMoves));
possibleMovesArray.push(getDiagonalMoves(pos[0], pos[1], xMoves, yMoves, kingMoves));
break;
//Get Moves for Queen
case "Queen":
//Get Horizontal Moves, Vertical and Diagonal Moves
possibleMovesArray.push(getHorizontalMoves(pos[0], pos[1], xMoves, rqbMoves));
possibleMovesArray.push(getVerticalMoves(pos[0], pos[1], yMoves, rqbMoves));
possibleMovesArray.push(getDiagonalMoves(pos[0], pos[1], xMoves, yMoves, rqbMoves));
break;
//Get Moves for Bishop
case "Bishop":
//Get Diagonal Moves since Bishop can only move in this direction
possibleMovesArray.push(getDiagonalMoves(pos[0], pos[1], xMoves, yMoves, rqbMoves));
break;
//Get Moves for Rook
case "Rook":
//Get Horizontal Moves, Vertical Moves since Rook can move only in these directions
possibleMovesArray.push(getHorizontalMoves(pos[0], pos[1], xMoves, rqbMoves));
possibleMovesArray.push(getVerticalMoves(pos[0], pos[1], yMoves, rqbMoves));
break;
//Get Moves for Pawn
case "Pawn":
//Get Horizontal Moves, Pawn can move only in only one direction and we are assuming that board is empty so no diagonal move
possibleMovesArray.push(getVerticalMoves(pos[0], pos[1], yMoves, pawnMoves));
break;
case "Horse":
//Get possible moves for Horse since it can move 2.5 steps
possibleMovesArray.push(getHorseMoves(pos[0], pos[1], xMoves, yMoves));
break;
default:
console.log("Invalid Input");
return false;
}
if(possibleMovesArray.length>0 && possibleMovesArray.toString()!=""){
console.log(possibleMovesArray.toString());
return possibleMovesArray.toString();
}else{
console.log("No Possible Move");
return false;
}
}
module.exports = possibleMoves;