Project

General

Profile

Statistics
| Revision:

root / proj / include / proj_macros.h @ 231

History | View | Annotate | Download (2.08 KB)

1
#ifndef PROJ_MACROS_H_INCLUDED
2
#define PROJ_MACROS_H_INCLUDED
3

    
4
#include "graph_macros.h"
5

    
6
// WASD Movement Keys
7
#define W_MAKE_CODE         0x11    /** @brief W Make Code */
8
#define W_BREAK_CODE        0x91    /** @brief W Break Code */
9
#define A_MAKE_CODE         0x1E    /** @brief A Make Code */
10
#define A_BREAK_CODE        0x9E    /** @brief A Break Code */
11
#define S_MAKE_CODE         0x1F    /** @brief S Make Code */
12
#define S_BREAK_CODE        0x9F    /** @brief S Break Code */
13
#define D_MAKE_CODE         0x20    /** @brief D Make Code */
14
#define D_BREAK_CODE        0xA0    /** @brief D Break Code */
15
#define CTRL_MAKE_CODE      0x1D    /** @brief CTRL Make Code */
16
#define CTRL_BREAK_CODE     0x9D    /** @brief CTRL Break Code */
17
#define PLUS_MAKE_CODE      0x1A    /** @brief Plus (+) Make Code */
18
#define PLUS_BREAK_CODE     0x9A    /** @brief Plus (+) Break Code */
19
#define MINUS_MAKE_CODE     0x35    /** @brief Minus (-) Make Code */
20
#define MINUS_BREAK_CODE    0xB5    /** @brief Minus (-) Break Code */
21

    
22
// Movement Directions
23
#define UP      -1  /** @brief Moving to the top side of screen */
24
#define DOWN    1   /** @brief Moving to the bottom side of screen */
25
#define LEFT    -1  /** @brief Moving to the left side of screen */
26
#define RIGHT   1   /** @brief Moving to the right side of screen */
27
#define REST    0   /** @brief Not moving */
28

    
29
// Movement Constants
30
#define SHOOTER_SPEED   5   /** @brief Shooter speed */
31
#define BULLET_SPEED    8   /** @brief Bullet speet */
32

    
33
// Extra Keys
34
#define ESC_MAKE_CODE   0x01    /** @brief ESC Make Code */
35
#define ESC_BREAK_CODE  0x81    /** @brief ESC Break Code */
36

    
37
// Refresh Rate
38
#define REFRESH_RATE    60      /** @brief Screen refresh rate */
39

    
40
//Graphics mode
41
#define GRAPH_MODE      DIRECT_1024_768_888 /** @brief Graphic mode used */
42
#define MIN_SCALE       0.2                  /** @brief Minimum zoom */
43
#define DEFAULT_SCALE   0.5                  /** @brief Default zoom */
44
#define MAX_SCALE       10.0                 /** @brief Maximum zoom */
45

    
46
#endif /* end of include guard: PROJ_MACROS_H_INCLUDED */