-
Notifications
You must be signed in to change notification settings - Fork 0
/
main-0.2.js
35 lines (28 loc) · 924 Bytes
/
main-0.2.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
const chessboard = [
[" ", " ", " ", " ", " ", " ", " ", " "],
[" ", " ", " ", " ", " ", " ", " ", " "],
[" ", " ", " ", " ", " ", " ", " ", " "],
[" ", " ", " ", " ", " ", " ", " ", " "],
["♜", " ", "♝", "♔", " ", " ", " ", " "],
[" ", " ", " ", " ", " ", " ", " ", " "],
[" ", " ", " ", " ", " ", " ", " ", " "],
[" ", " ", " ", " ", " ", " ", " ", " "],
];
const kingPosition = getPiecePosition("♔");
let legalPositions = [];
// ---------------------------------------------------
// return piece position as {x, y}
function getPiecePosition(piece) {
let result = {};
// console.log(chessboard);
result.y = chessboard.findIndex((e) => {
return e.find((f) => {
if (f === piece) {
result.x = e.indexOf(f);
return f;
}
});
});
// console.log(`[${arguments.callee.name}] piece: ${piece}`, result);
return result;
}