2023-12-06 14:57:12 +00:00
|
|
|
#ifndef SERPENT_H
|
|
|
|
#define SERPENT_H
|
|
|
|
|
|
|
|
/* Program information */
|
|
|
|
#define NAME "serpent"
|
|
|
|
#define VERSION 0.1
|
|
|
|
/* */
|
|
|
|
|
2023-12-07 16:08:32 +00:00
|
|
|
/* Absolute value macro */
|
|
|
|
#define ABS(x) (x) < 0 ? -(x) : (x)
|
|
|
|
/* */
|
|
|
|
|
2023-12-06 14:57:12 +00:00
|
|
|
/* global variables/constants */
|
2023-12-07 16:08:32 +00:00
|
|
|
#define START_SNAKE_SIZE 2 /* snake's initial size */
|
2023-12-06 14:57:12 +00:00
|
|
|
#define SNAKE_BODY '*' /* snake's body */
|
|
|
|
#define SNAKE_HEAD_U 'v' /* head when going up */
|
|
|
|
#define SNAKE_HEAD_D '^' /* head when going down */
|
|
|
|
#define SNAKE_HEAD_L '>' /* head when going left */
|
|
|
|
#define SNAKE_HEAD_R '<' /* head when going right */
|
|
|
|
#define FOOD '@' /* normal food */
|
2023-12-07 16:08:32 +00:00
|
|
|
#define BOARD_CHAR '#' /* character at corners of border */
|
|
|
|
#define SCREEN_WIDTH 40 /* the virtual screen width */
|
|
|
|
#define SCREEN_HEIGHT 30 /* the virtual screen height */
|
2023-12-06 14:57:12 +00:00
|
|
|
#define SPEED 100 /* speed of the game */
|
|
|
|
/* */
|
|
|
|
|
|
|
|
typedef struct board_t {
|
|
|
|
char border;
|
|
|
|
unsigned int boardHeight;
|
|
|
|
unsigned int boardWidth;
|
|
|
|
} board_t;
|
|
|
|
|
|
|
|
typedef struct snake_node {
|
|
|
|
int pX, pY;
|
|
|
|
struct snake_node *next, *prev;
|
|
|
|
} snake_node;
|
|
|
|
|
|
|
|
typedef struct snake_t {
|
|
|
|
int dX, dY;
|
|
|
|
snake_node *head, *tail;
|
|
|
|
} snake_t;
|
|
|
|
|
|
|
|
typedef struct apple_t {
|
|
|
|
int pX, pY;
|
|
|
|
} apple_t;
|
|
|
|
|
|
|
|
#endif //SERPENT_H
|