Contenido del Curso
Building a Classic Snake Game
Directions
To manage and organize the various directions our snake can take, we utilize a constants in our code. Each direction is represented as a tuple containing the changes in the x
and y
coordinates:
Direction | ||
RIGHT | Moves the snake one unit to the right. | |
LEFT | Moves the snake one unit to the left. | |
UP | Moves the snake one unit upward. | |
DOWN | Moves the snake one unit downward. |
Changing Directions
We need to create separate functions and implement them to manage these directional changes. It's crucial to divide them into distinct functions for clearer and more understandable code.
change_direction_left(snake)
: this method changes the snake's direction to the left, but only if the previous direction was not right.change_direction_right(snake)
: similarly, this method changes the direction to the right, barring the previous direction being left.change_direction_up(snake)
: moves the snake upwards, preventing a sudden reversal if the previous direction was downward.change_direction_down(snake)
: moves the snake downwards, ensuring it doesn't collide with its own body by immediately turning back
Note
The direction change methods ensure that the snake doesn't abruptly reverse its course, which could lead to collision and subsequently end the game. By restricting the direction changes based on the previous direction, we maintain smooth and logical movement.
Tarea
- Implement four methods:
change_direction_left()
,change_direction_right()
,change_direction_up()
, andchange_direction_down()
. Each method will update the snake's current direction based on its previous direction to prevent the snake from reversing onto itself.
¡Gracias por tus comentarios!
To manage and organize the various directions our snake can take, we utilize a constants in our code. Each direction is represented as a tuple containing the changes in the x
and y
coordinates:
Direction | ||
RIGHT | Moves the snake one unit to the right. | |
LEFT | Moves the snake one unit to the left. | |
UP | Moves the snake one unit upward. | |
DOWN | Moves the snake one unit downward. |
Changing Directions
We need to create separate functions and implement them to manage these directional changes. It's crucial to divide them into distinct functions for clearer and more understandable code.
change_direction_left(snake)
: this method changes the snake's direction to the left, but only if the previous direction was not right.change_direction_right(snake)
: similarly, this method changes the direction to the right, barring the previous direction being left.change_direction_up(snake)
: moves the snake upwards, preventing a sudden reversal if the previous direction was downward.change_direction_down(snake)
: moves the snake downwards, ensuring it doesn't collide with its own body by immediately turning back
Note
The direction change methods ensure that the snake doesn't abruptly reverse its course, which could lead to collision and subsequently end the game. By restricting the direction changes based on the previous direction, we maintain smooth and logical movement.
Tarea
- Implement four methods:
change_direction_left()
,change_direction_right()
,change_direction_up()
, andchange_direction_down()
. Each method will update the snake's current direction based on its previous direction to prevent the snake from reversing onto itself.