X-Git-Url: https://git.artsoft.org/?a=blobdiff_plain;f=src%2Fgame.h;h=34854a773c1426a7b06487489407a8d6eb82a21b;hb=9dc1a9b929ed268df501e7d2b00f51f4521f8b5e;hp=1d7f9cf5df9f9ef4f8391a6304d0a0cb4c0b445f;hpb=130737058201069bf104d946d48ffd6a05693873;p=rocksndiamonds.git diff --git a/src/game.h b/src/game.h index 1d7f9cf5..34854a77 100644 --- a/src/game.h +++ b/src/game.h @@ -17,6 +17,8 @@ #define MAX_INVENTORY_SIZE 1000 +#define MAX_HEALTH 100 + #define STD_NUM_KEYS 4 #define MAX_NUM_KEYS 8 @@ -116,6 +118,14 @@ struct GameButtonInfo struct XY sound_music; struct XY sound_loops; struct XY sound_simple; + + struct XY panel_stop; + struct XY panel_pause; + struct XY panel_play; + + struct XY panel_sound_music; + struct XY panel_sound_loops; + struct XY panel_sound_simple; }; struct GameSnapshotInfo @@ -259,8 +269,10 @@ struct PlayerInfo boolean LevelSolved_PanelOff; boolean LevelSolved_SaveTape; boolean LevelSolved_SaveScore; + int LevelSolved_CountingTime; int LevelSolved_CountingScore; + int LevelSolved_CountingHealth; int last_move_dir; @@ -326,6 +338,9 @@ struct PlayerInfo int score; int score_final; + int health; + int health_final; + int gems_still_needed; int sokobanfields_still_needed; int lights_still_needed; @@ -416,6 +431,9 @@ void UnmapUndoRedoButtons(); void MapGameButtons(); void UnmapGameButtons(); void RedrawGameButtons(); +void MapGameButtonsOnTape(); +void UnmapGameButtonsOnTape(); +void RedrawGameButtonsOnTape(); void HandleSoundButtonKeys(Key);