A downloadable game for Windows, macOS, and Linux

This is a simplistic tetris-clone desktop-game. No bells and whistles, just a plain and solid version of a classical tetris with a nice color scheme that does not torture your eyes.

StatusReleased
PlatformsWindows, macOS, Linux
Rating
Rated 2.0 out of 5 stars
(1 total ratings)
Authorpawelkrol
GenrePuzzle
Tagsswing, Tetris

Download

Download
swing-tetris-0.03.jar 834 kB

Install instructions

1. Download an executable JAR file.

2. Double-click a downloaded file to start playing. Please note this program requires a minimum version of Java 8 to be installed on your system.

3. Use cursor keys left/right/down to move a block, cursor key up to rotate it, and escape key to quit the game after a confirmation.

Development log

Comments

Log in with itch.io to leave a comment.

Hi bradenbest! Thank you very much for your valuable feedback. It is a valid complaint and I will work on fixing this important oversight of game engine. Many thanks!

dtu

Since you're going for an implementation of classic tetris, I should inform you that your game lacks a "random bag". The random bag is what keeps the RNG in tetris fair and possible to continue indefinitely, and it is absolutely part of the standard and has been since even before the NES game. Here's how it works:  Every turn, you pull a tetromino from a pool of 7 unique and randomly sorted tetrominoes. Once you've gone through the pool, it is re-sorted.  A common analogy for this is pulling names out of a hat. Or a "random bag". This means it's possible to get, e.g. two line pieces in a row (back to back), but it's not possible to get three square pieces in six turns. This is what happened to me at the beginning of the game, and it's how I know you didn't implement it. It's a violation of the rules because the RNG can potentially create impossible situations (like when the game spawned several S and Z pieces in an unrelenting fury that quickly ended my game).