First, put the source code address. If you like to read the source code, continue reading the article.
/taadis/go1024 - go1024
The 1024 terminal game implemented using the go language has less than 400 lines of code, and the code is concise to understand, learn and master go language development.
Install and run
To run this program, you need to install the dependencies first:
go mod tidy
Then run the program:
go run
The game runs as follows:
2 0 0 0
4 2 0 0
8 32 4 2
32 16 8 16
Score: 380
Please use the arrow keys to operate, press the shortcut key Ctrl+C to exit the game.
Game implementation
The current game implements the following content:
- Cross-platform, portable terminal games and package management based on go language
- 1024 game core logic
- ANSI-based terminal color display
- Keyboard control
- Score calculation
- Game end detection
- Cross-platform compatibility
- Basic error handling
Random number generation
We userand
to generate random numbers. In this game, random numbers have two main functions:
- Randomly generate new numbers:
slot := emptySlots[(len(emptySlots))]
- Randomly decide whether to generate 2 or 4:
if rand.Float64() > 0.95 {
value = 4 // 5% probability generates 4
} else {
value = 2 // 95% probability generates 2
}
If you do not set a random number seed, the random number generator will use the same default seed every time you run the game, like this:
- The numbers appear the same at the beginning of each game
- The new number's value (2 or 4) will also appear in the same order
- The game loses its randomness and becomes predictable
Using the nanoseconds of the current time as seeds ensures that you get different random sequences each time you run the game, making the game more fun and unpredictable.
Color representation
Return different color codes according to the size of the number.
The number we use is the color code in the ANSI escape sequence. In the terminal, we use\033[
The beginning escape sequence controls the display effect of the text.
The color codes of ANSI escape sequences are limited and are mainly divided into these groups:
- Basic prospects: 30-37
- Basic background color: 40-47
- Highlight foreground color: 90-97
- Highlight background color: 100-107
Numbers after 98, 99 and 108 are not standard ANSI color codes and will not produce color effects.
Specific explanation:
-
\033[
is the start mark of the escape sequence (ESC character) - The following number is the color code:
- 30-37: Basic foreground color (text color)
- 31: Red
- 32: Green
- 33: Yellow
- 34: Blue
- 35: Purple
- 36: Cyan
- 37: White
- 90-97: Highlight foreground color
- 90: Bright gray
- 91: Bright red
- 92: Bright green
etc...
- 30-37: Basic foreground color (text color)
In the code:
("\033[%dm%6d\033[0m", color, [i][j])
-
\033[%dm
Set color -
%6d
Display digits (6-bit width) -
\033[0m
Reset all properties
So when we usecolor = 90
When , bright gray text will be displayed, which is used to indicate empty spaces (grids with value 0) in the game.
If you need a richer color, you can use:
- 24-bit true color:
\033[38;2;R;G;Bm
- 256 colors:
\033[38;5;Nm
(N is a number between 0-255)
For example:
// 24-bit true color (red)
("\033[38;2;255;0;0m text\033[0m")
// Color 256 (Color No. 100)
("\033[38;5;100m text\033[0m")
However, these advanced color features may not be supported by all terminals, so in general, basic ANSI color codes are generally used (30-37, 90-97).
Exit the game
Exiting the game is mainly achieved by listening to cancel information
- Added
os/signal
andsyscall
Bag - use
To capture SIGINT (Ctrl+C) and SIGTERM signals
- Start a goroutine to process the signal, when the signal is received:
- Turn off keyboard monitoring
- Exit the program
- Removed the original Ctrl+C check code
After this modification, press Ctrl+C at any time of the program, the program can be correctly exited. It also ensures that the keyboard resources are released correctly.
Used later/eiannone/keyboard
Package, simplifying logical processing.