私の友人はマインスイーパのクローンを作成しています。彼は、鉱山以外/数字以外の「空白」の正方形をクリックすると、隣接するすべての空白が表示される部分を手伝ってくれるように頼まれました。以下は私が書いたコードです。なぜ解決しないのか理解できません。
私の基本的なケースは、for ループが完全に実行され、if ステートメントが決して true を返さない場合です。
足りないものはありますか?
ちなみに、これはJavaです。また、私は彼に、ボタンの状態の変化全体をメソッドに割り当てる必要があると言いました:p
public void revealAdjacentNulls(int r, int c)
{
int ir, ic;
//literal edge cases :P
int rmax = (r == 15) ? r : r + 1;
int cmax = (c == 15) ? c : c + 1;
//check all spaces around button at r,c
for(ir = (r==0) ? 0 : r-1; ir <= rmax; ir++){
for (ic = (c==0) ? 0 : c-1; ic <= cmax; ic++){
//if any are blank and uncovered, reveal them, then check again around the blanks
if (buttons[ir][ic].value == 0 && buttons[ir][ic].isCovered == false)
{
buttons[ir][ic].setEnabled(false); //number uncovered
buttons[ir][ic].setBackground(Color.blue);
buttons[ir][ic].setText(Character.toString(buttons[ir][ic].value));
buttons[ir][ic].isCovered = false;
revealAdjacentNulls(ir, ic);
}
}
}
}