| 962 | } |
| 963 | |
| 964 | void ChessBoard::trySelectStone(int id) |
| 965 | { |
| 966 | if (id == -1) { |
| 967 | return; |
| 968 | } |
| 969 | |
| 970 | if (!canSelect(id)) { |
| 971 | return; |
| 972 | } |
| 973 | |
| 974 | m_nSelectID = id; |
| 975 | update(); |
| 976 | m_Chessvoice.voiceSelect(); |
| 977 | } |
| 978 | |
| 979 | void ChessBoard::tryMoveStone(int killid, int row, int col) |
| 980 | { |
nothing calls this directly
no test coverage detected