2048 in the terminal
41–50 of 90 posts
Re: 2048 in the terminal
#42Awesome, we have a multiplayer version, a bot version, a terminal version, what's next? Who's gonna make the flappy bird version?
Re: 2048 in the terminal
#43Re: 2048 in the terminal
#44You know, I wonder if we're about to see another tetris phenomenon. One of the miracles of tetris is that the game mechanics scaled from a few dots on an 80s era LCD keychain game to HDTV and surround sound. Some kind of generalized 2048 game, with different or harder goals every "level" and some tweaked mechanics and we could see another one.
Re: 2048 in the terminal
#45This game has a 50/50 chance of spawning a 4 or a 2. I believe the original is only 10% chance of spawning a 4, was this intentional?
Re: 2048 in the terminal
#46This game has a 50/50 chance of spawning a 4 or a 2. I believe the original is only 10% chance of spawning a 4, was this intentional?
I didn’t know about the 10% rule, I should check the original source code and use the same probability.
The original source is here: https://github.com/gabrielecirulli/2048/blob/master/js/game_...
(line 62)
Re: 2048 in the terminal
#47You know, I wonder if we're about to see another tetris phenomenon. One of the miracles of tetris is that the game mechanics scaled from a few dots on an 80s era LCD keychain game to HDTV and surround sound. Some kind of generalized 2048 game, with different or harder goals every "level" and some tweaked mechanics and we could see another one.
Re: 2048 in the terminal
#48Awesome, we have a multiplayer version, a bot version, a terminal version, what's next? Who's gonna make the flappy bird version?
2048-as-a-monad version.
2048-as-a-jquery-plugin version.
Re: 2048 in the terminal
#49You know, I wonder if we're about to see another tetris phenomenon. One of the miracles of tetris is that the game mechanics scaled from a few dots on an 80s era LCD keychain game to HDTV and surround sound. Some kind of generalized 2048 game, with different or harder goals every "level" and some tweaked mechanics and we could see another one.
Re: 2048 in the terminal
#50Love it! Is there a way to change the colors? 4 is Incredibly hard to read in my terminal
There’s no way to have custom colors for now, but I can change the default colors. I’m on the collapse bug that was reported by a few people right now, will check back on your issue just after. Edit: I’m on it. Edit 2: I added a `--mode` option in the last version (0.1.7) to change the default colors mode. Use 'dark' on a dark background and 'light' on a light one. For now it only replaces dark blue with white on dar…