turnState = (turnState == State.CIRCLE) ? State.CROSS : State.CIRCLE;
}
private int getLineLength(int row, int column,
int rowShift, int columnShift) {
State lineState = gameField.getCellState(row, column);
// exclude start point from length
int counter = -1;
do {
row += rowShift;