From 41a31420cf091aeb4e986503387855d41e550106 Mon Sep 17 00:00:00 2001 From: manuel Date: Mon, 25 Apr 2011 14:39:00 +0200 Subject: - add intro sound on every round - add dieing sound - add dieing animation - add die on moving onto colorized block --- pacman-c++/constants.h | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'pacman-c++/constants.h') diff --git a/pacman-c++/constants.h b/pacman-c++/constants.h index f9f40f9..e7dedbf 100644 --- a/pacman-c++/constants.h +++ b/pacman-c++/constants.h @@ -83,12 +83,13 @@ namespace Transmission const field_t bonuspoint = (1 << 6); const field_t pacman = (1 << 7); const field_t empty = (1 << 8); // explicit empty for update + const field_t death = (1 << 9); const field_t direction_none = 0; - const field_t direction_left = (1 << 9); - const field_t direction_right = (1 << 10); - const field_t direction_up = (1 << 11); - const field_t direction_down = (1 << 12); + const field_t direction_left = (1 << 10); + const field_t direction_right = (1 << 11); + const field_t direction_up = (1 << 12); + const field_t direction_down = (1 << 13); const mask_t color_mask = Color::none | Color::red | Color::blue | Color::green | Color::yellow; const mask_t type_mask = block | bonuspoint; -- cgit v1.2.3