How to Make Tetris Pieces Stack in Java
AttainingFord路6 months agoBasically, you need a 2D array representing the game board and another 2D array for each Tetrimino. When a Tetrimino lands, merge it into the game board array and then check for any full rows to clear them. Voila, stacked pieces!
Win Tetris credit by playing games on Playbite!
Playbite
500k winners and counting...
More Answers
Use a 2D array for the game board and boolean flags to mark occupied cells. When a Tetris piece lands, set the appropriate cells to 'true'.
Just use a main 2D array as your game board and place pieces by updating the array indices. Keep track of the landed pieces and clear rows that get filled.
Keep a grid to track filled cells. When a piece lands, update the grid with its shape. Clear full rows and shift down the above rows. Easy peasy!
馃憖 If you like Tetris...
Diego路3 hours agoThe brands referenced on this page are not sponsors of the rewards or otherwise affiliated with this company. The logos and other identifying marks attached are trademarks of and owned by each represented company and/or its affiliates. Please visit each company's website for additional terms and conditions.
People also want to know
Add an Answer