Earlier quoted context omitted.
how doe piece selection work? isnt it random?
Seems to be influenced by the pieces on the board. Bill talks about it a little in the article. You do seem to get more | shaped pieces when you leave those spaces open on the board.
My quest to see all of Tetris
11–18 of 18 posts
Re: My quest to see all of Tetris
#12Re: My quest to see all of Tetris
#13I was expecting something like DQN, but what I actually saw was a new approach, so it was fascinating. Usually when you're making small AI demos and doing hands-on exercises, you work with Tetris a lot. In NES Tetris, if the input is the same, the result is the same, so you can store all the inputs and reproduce specific moments. The state becomes like a graph, which allows for fuzzing testing. It's interesting
how doe piece selection work? isnt it random?
Re: My quest to see all of Tetris
#14Re: My quest to see all of Tetris
#15I was expecting something like DQN, but what I actually saw was a new approach, so it was fascinating. Usually when you're making small AI demos and doing hands-on exercises, you work with Tetris a lot. In NES Tetris, if the input is the same, the result is the same, so you can store all the inputs and reproduce specific moments. The state becomes like a graph, which allows for fuzzing testing. It's interesting
how doe piece selection work? isnt it random?
> The randomizer features a slight protection against direct repetition. The first roll generates a value 0-7 and will accept and deal on any value other than the previous piece dealt or the dummy value of 7. The piece history is initially empty. If the first roll fails, it progresses to a second roll that generates a value 0-6 and deals that piece.
Later games would evolve into a more ambitious history system like in Tetris the Grand Master, or a "bag" (Fisher Yates) system.
From a game design point of view, this avoids repetition in the distribution which generally suuuucks while playing.
Re: My quest to see all of Tetris
#16I'm a huge fan of Tetris and have played them all. I think this version is the best one. Not only because of the drama behind it, but two player mode is actually pretty fun. https://tetris.wiki/Tetris_(NES,_Tengen)
Recently got Tetris Grand Master 4 and played it with an arcade stick insanely satisfying to play that way and with that ruleset and kinda ruined other versions/input methods for me.
Re: My quest to see all of Tetris
#17Earlier quoted context omitted.
how doe piece selection work? isnt it random?
The best versions of Tetris are random in sets of 7. There's a "bag" of all 7 shapes and the next piece is picked from that bag until the bag is empty and then it refills.
20 cycles through the bag can be packed into exactly 56 lines and that pattern can be repeated forever. Such a solved game might not meet everyone's definition of best. Although for casual play it's great to have every piece coming regularly.
Re: My quest to see all of Tetris
#18I'm the author. Thanks for the comments.