pvjc24/cv9/snake.c

47 lines
962 B
C
Raw Normal View History

2024-04-11 11:56:32 +00:00
#include "snake.h"
#include <stdlib.h>
struct snake* add_snake(struct snake* snake,int x,int y){
2024-04-11 12:03:01 +00:00
struct snake* head = calloc(1,sizeof(struct snake));
head->x = x;
head->y = y;
head->next = snake;
return head;
2024-04-11 11:56:32 +00:00
}
2024-04-11 12:13:56 +00:00
struct snake* remove_snake(struct snake* snake) {
2024-04-11 12:40:02 +00:00
struct snake* temp = snake;
if (snake!= NULL) {
snake = snake->next;
free(temp);
2024-04-11 12:06:39 +00:00
}
2024-04-11 12:13:56 +00:00
return snake;
2024-04-11 11:56:32 +00:00
}
2024-04-11 12:13:56 +00:00
void free_snake(struct snake* sn) {
struct snake* current = sn;
struct snake* next;
while (current!= NULL) {
next = current->next;
free(current);
current = next;
}
2024-04-11 11:56:32 +00:00
}
int is_snake(struct snake* snake,int x,int y){
2024-04-17 13:57:26 +00:00
while (snake != NULL) {
if (snake->x == x && snake->y == y) {
return 1;
}
snake = snake->next;
}
2024-04-11 11:56:32 +00:00
return 0;
}
int step_state(struct state* st){
int nx = (st->snake->x + st->sx);
int ny = (st->snake->y + st->sy);
return END_CONTINUE;
}