Scenario
When I heard the concept of genetic algorithm for the first time, I automatically thought it is perfect for games, like in the smart rocket example. To keep it simple and sweet, I propose the Tetris game scenario.
I first wondered whether the population in this scenario should be the shape of blocks or their movements. But soon I figured, it makes more sense to set the population to be the movements of each block when considering the objective of the game.
Phenotype and Genotype
In short, the main factor that needs to be evolving is the movement pattern of each block type. For example, while rotating the O-block is just a waste of time, rotating J-block can give us different results each time. However, to achieve the optimal result, many other factors need to be taken into consideration.
Pictures showing very different phases of the game.
Here are some factors that affect the final result of the game.
1. The total height of each vertical line (ex: 4+4+4+4+5+6+4+4+4+2=41) => need to be minimized
2. The total number of cleared lines. => need to be maximized
3. The total number of holes (ex: 3) => need to be minimized
4. The total number of blocks above the holes (ex: 4) => need to be minimized
5. The standard deviation of heights (ex: 0.94339811320566)
6. The number of faces of a descending block that will touch the ground. (ex: 2)
7. The number of faces of a descending block that will touch the wall. (ex: 2)
Fitness Function
The objective of the Tetris game is to get the highest score by completing as many horizontal lines of blocks within the longest survival time.
Mutation and Crossover
Run the game multiple times with random values for seven factors that affect the final result. (Now, I only can think of seven, but there could be more factors.)
Take high-scoring values of the factors.
Mix high-scoring values across different games until achieving the highest score.
Comentarios