Search found 2 matches
- 25 Aug 2020 03:12
- Forum: DOS Batch Forum
- Topic: Tetris game in a pure Batch file
- Replies: 12
- Views: 124241
Re: Tetris game in a pure Batch file
I fixed the proportions after looking through the code and learning from it. I also added a 180-degrees rotation, mapped to "W". I also added a cheat that makes the piece go up one space, mapped to "T". @echo off setlocal EnableDelayedExpansion if "%~1" neq "" goto %1 title Tetris.BAT by Aacini rem ...
- 20 Aug 2020 20:18
- Forum: DOS Batch Forum
- Topic: Tetris game in a pure Batch file
- Replies: 12
- Views: 124241
Re: Tetris game in a pure Batch file
Great game! :D I really love how much effort you put into such a simple batch game! I have a couple of suggestions though. One of them is that you program a "hold" function, as I sometimes get an "I" piece, and want to keep it for later, but cant. Another is that each of the "squares" be a bit wider...