X-Git-Url: https://git.artsoft.org/?a=blobdiff_plain;f=src%2Fgame.h;h=8fdfbdc83f95595383d60026d9eb5da009b82775;hb=27d25dccefb519f3e710c21b025bfdfe9a991ef8;hp=26c186fe6df4cf457180ecdf1b7e9b6dc5f477a3;hpb=e89a21e95b3cb84d1515c0fb3378ce902a48c1c8;p=rocksndiamonds.git diff --git a/src/game.h b/src/game.h index 26c186fe..8fdfbdc8 100644 --- a/src/game.h +++ b/src/game.h @@ -163,6 +163,8 @@ struct GameInfo boolean use_masked_pushing; boolean use_masked_elements; boolean use_masked_elements_initial; + int forced_scroll_x; + int forced_scroll_y; int forced_scroll_delay_value; int scroll_delay_value; int tile_size; @@ -242,12 +244,8 @@ struct GameInfo // values for special game initialization control boolean restart_level; - // trigger message to ask for restarting the game - char *restart_game_message; - // values for special request dialog control boolean request_active; - boolean request_active_or_moving; // values for special game control int centered_player_nr; @@ -427,8 +425,10 @@ void GameEnd(void); void MergeServerScore(void); void InitPlayerGfxAnimation(struct PlayerInfo *, int, int); + void Moving2Blocked(int, int, int *, int *); void Blocked2Moving(int, int, int *, int *); + void DrawDynamite(int, int); void StartGameActions(boolean, boolean, int); @@ -455,9 +455,8 @@ void RaiseScoreElement(int); void RequestQuitGameExt(boolean, boolean, char *); void RequestQuitGame(boolean); -void RequestRestartGame(char *); -void CheckGameOver(void); +boolean CheckRestartGame(void); boolean checkGameSolved(void); boolean checkGameFailed(void); boolean checkGameEnded(void);