Home
last modified time | relevance | path

Searched refs:getPossibleKnightMoves (Results 1 – 11 of 11) sorted by relevance

/dports/games/pear-Games_Chess/Games_Chess-1.0.1/tests/Games_Chess/getPossibleKnightMoves/
H A Dtest_valid_b1.phpt2 Games_Chess->getPossibleKnightMoves() valid black #1
8 $err = $board->getPossibleKnightMoves('b8', 'B');
H A Dtest_valid_w1.phpt2 Games_Chess->getPossibleKnightMoves() valid white #1
8 $err = $board->getPossibleKnightMoves('b1', 'W');
H A Dtest_valid_w2.phpt2 Games_Chess->getPossibleKnightMoves() valid white #2
8 $err = $board->getPossibleKnightMoves('e4', 'W');
H A Dtest_valid_b2.phpt2 Games_Chess->getPossibleKnightMoves() valid black #2
8 $err = $board->getPossibleKnightMoves('e5', 'B');
H A Dtest_valid_b3.phpt2 Games_Chess->getPossibleKnightMoves() valid black #3
8 $err = $board->getPossibleKnightMoves('e4', 'B');
H A Dtest_valid_w3.phpt2 Games_Chess->getPossibleKnightMoves() valid white #2
8 $err = $board->getPossibleKnightMoves('e5', 'W');
H A Dtest_invalid_color.phpt2 Games_Chess->getPossibleKnightMoves() invalid color
7 $err = $board->getPossibleKnightMoves('a1', 'Q');
H A Dtest_invalid_square.phpt2 Games_Chess->getPossibleKnightMoves() invalid square
7 $err = $board->getPossibleKnightMoves('a9', 'B');
/dports/games/pear-Games_Chess/Games_Chess-1.0.1/tests/Games_Chess/getPossibleMoves/
H A Dtest_valid_N.phpt9 $err2 = $board->getPossibleKnightMoves('e4', 'B');
12 $err2 = $board->getPossibleKnightMoves('e4', 'W');
/dports/games/pear-Games_Chess/Games_Chess-1.0.1/
H A DChess.php1448 return $this->getPossibleKnightMoves($square, $color);
1794 function getPossibleKnightMoves($square, $color = null) function in Games_Chess
/dports/games/jchessboard/JChessBoard-1.5/jchessboard/
H A DVirtualBoard.java1614 list.addAll(getPossibleKnightMoves(n)); in getAllMoves()
1666 public List getPossibleKnightMoves(int from) { in getPossibleKnightMoves() method in VirtualBoard