-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathshoot.h
More file actions
45 lines (39 loc) · 1.05 KB
/
Copy pathshoot.h
File metadata and controls
45 lines (39 loc) · 1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#ifndef SHOOT_H
#define SHOOT_H
#include <curses.h>
#include "sprites.h"
#define LVL_MAX 12
// ^ maximum level of the game,
// feel free to crank this up
// the most crucial window here
extern WINDOW* game;
// transition types, this is
// all we have for now
typedef enum trans_t {
T_CURTAIN,
T_DOTSYNC,
T_DEBRIS
} trans_t;
// generic input buffer for wgetch()
extern int key;
// level tracking
extern unsigned char levels;
extern unsigned char level;
// general engine functions
extern WINDOW* create_win(int h, int w, int y, int x, bool border);
extern WINDOW* newspr(SPRITE spr);
extern void mvspr(SPRITE spr);
extern unsigned char shoot(SPRITE src, SPRITE dst);
extern void kllspr(SPRITE spr);
extern void health(SPRITE spr);
extern void transition(trans_t transition);
// still part of it, but a little more specific
extern void enemctrl(void);
extern void newlvl(void);
extern void counter(void);
extern void titlescr(void);
extern void gameover(void);
extern void ending(void);
extern void pausegm(void);
extern void endgame(bool aborted);
#endif // SHOOT_H