So I've been stuck on this for a while. I've made a 'row' checker that checks if the row is full everytime a block is placed. I know this works through many println and other experiments. pseudoblock[x][y] represents a unit square tetris block at integer coorinates x, y. However, when this runs (it runs when the row is full):
void clearRow(int row) {
for (int i = 0; i < COLUMNS; i++) {
root.getChildren().remove(pseudoblock[i][row]);
//pseudoblock[i][row] = null;
//pseudoblock[i][row].setFill(Color.HOTPINK);
}
So for every block in the row 'row' it is supposed to remove the individual square. The commented code above that shows the row being colored to hotpink when the row is full works, but the
root.getChildren().remove(pseudoblock[i][row]);
is quite inconsistent and sometimes only removes the last block placed in the completed row.
Here is some more that precedes this code:
for (int c = 0; c < ROWS; c++){
if (isFullRow(c)) {
clearRow(c);
private boolean isFullRow(int row) {
for (int i = 0; i < COLUMNS; i++) {
if (pseudoblock[i][row] == null) {
return false;
}
}
return true;
}
I also have some issues regarding block rotation (there are plenty of suggestions on this site, but I'm struggling) but I'll be thrilled if this gets resolved.