rotagon/game.h
Frank Villaro-Dixon 7100267c41 oauaou
2015-01-01 04:04:34 +01:00

51 lines
629 B
C

/*
** game.h - Game data structure
**
** 2014 - Frank Villaro-Dixon <Frank@Villaro-Dixon.eu>
*/
#ifndef GAME_H
#define GAME_H
#include "SDL/SDL.h"
#define SCREEN_WIDTH 640
#define SCREEN_HEIGHT 480
#define SHAPE_SQUARE 4
#define SHAPE_PENTAGON 5
#define SHAPE_HEXAGON 6
#define SHAPE_THICK 5
struct s_game {
#define CURSOR_POS_MAX 255
int cursor_angle; //relative to the polygon center's referential
int polygon_type; //Shape
SDL_Surface *screen;
};
struct s_obstacle {
int thick;
int angle;
int distance;
};
void
init_game(struct s_game *g);
void
draw_game(struct s_game *g);
#endif /* ndef GAME_H */