Defines common macros, types, and global variables for color schemes and utilities.
More...
|
#define | PYXEL |
#define | FG_R 253 |
#define | FG_G 253 |
#define | FG_B 253 |
#define | BG_R 0 |
#define | BG_G 0 |
#define | BG_B 0 |
#define | GREY_R 144 |
#define | GREY_G 144 |
#define | GREY_B 144 |
#define | RED_R 180 |
#define | RED_G 33 |
#define | RED_B 44 |
#define | YELLOW_R 244 |
#define | YELLOW_G 220 |
#define | YELLOW_B 95 |
#define | GREEN_R 151 |
#define | GREEN_G 197 |
#define | GREEN_B 34 |
#define | BLUE_R 43 |
#define | BLUE_G 152 |
#define | BLUE_B 240 |
#define | BROWN_R 152 |
#define | BROWN_G 88 |
#define | BROWN_B 30 |
#define | DEFAULT_COLORS NCCHANNELS_INITIALIZER(FG_R, FG_G, FG_B, BG_R, BG_G, BG_B) |
#define | INVERTED_COLORS NCCHANNELS_INITIALIZER(BG_R, BG_G, BG_B, FG_R, FG_G, FG_B) |
#define | RED_TEXT_COLORS NCCHANNELS_INITIALIZER(RED_R, RED_G, RED_B, BG_R, BG_G, BG_B) |
#define | WALL_COLORS NCCHANNELS_INITIALIZER(BLUE_R, BLUE_G, BLUE_B, BROWN_R, BROWN_G, BROWN_B) |
#define | EXIT_DOOR_COLORS NCCHANNELS_INITIALIZER(YELLOW_R, YELLOW_G, YELLOW_B, BG_R, BG_G, BG_B) |
#define | KEY_COLORS NCCHANNELS_INITIALIZER(YELLOW_R, YELLOW_G, YELLOW_B, BG_R, BG_G, BG_B) |
#define | GOBLIN_COLORS NCCHANNELS_INITIALIZER(RED_R, RED_G, RED_B, BG_R, BG_G, BG_B) |
#define | HIDDEN_COLORS NCCHANNELS_INITIALIZER(GREY_R, GREY_G, GREY_B, GREY_R, GREY_G, GREY_B) |
#define | START_DOOR_COLORS NCCHANNELS_INITIALIZER(GREEN_R, GREEN_G, GREEN_B, BG_R, BG_G, BG_B) |
#define | FLOOR_COLORS NCCHANNELS_INITIALIZER(BG_R, BG_G, BG_B, BG_R, BG_G, BG_B) |
#define | LIFE_FOUNTAIN_COLORS NCCHANNELS_INITIALIZER(BG_R, BG_G, BG_B, GREEN_R, GREEN_G, GREEN_B) |
#define | MANA_FOUNTAIN_COLORS NCCHANNELS_INITIALIZER(BG_R, BG_G, BG_B, BLUE_R, BLUE_G, BLUE_B) |
#define | MAX_STRING_LENGTH 256 |
#define | MAX_NAME_LENGTH 64 |
#define | COMMON_SUCCESS 0 |
| Common success return value.
|
#define | NULL_PTR_HANDLER_RETURN(ptr, return_value, modul, format, ...) |
#define | CHECK_ARG_RETURN(bool_expr, return_value, modul, format, ...) |
Defines common macros, types, and global variables for color schemes and utilities.
Definition in file common.h.