From aed278e72703016e2729b55d8b629b7e1b31469e Mon Sep 17 00:00:00 2001 From: Holger Schemel Date: Sat, 28 Dec 2002 02:41:22 +0100 Subject: [PATCH] rnd-20021228-1-src --- CHANGES | 8 +++++++- src/conftime.h | 2 +- src/events.c | 2 ++ src/main.h | 6 +++--- src/tape.c | 7 +++++-- 5 files changed, 18 insertions(+), 7 deletions(-) diff --git a/CHANGES b/CHANGES index 07f4ca88..1c154bd5 100644 --- a/CHANGES +++ b/CHANGES @@ -1,6 +1,12 @@ -Release Version 2.1.2 [?? ??? ????] +Release Version 2.2.0 [?? ??? ????] ----------------------------------- - level series artwork now configurable via level series config file + - single graphics and animations can now be replaced with different + ones (independantly from default image files which may be larger) + by defining and using additional image files + - element animation length, speed and mode now freely configurable + - automatic tape playing function for game engine and level testing + - missing steel wall graphic added (thanks to Equinox Tetrachloride) Release Version 2.1.1 [13 AUG 2002] ----------------------------------- diff --git a/src/conftime.h b/src/conftime.h index 77d9bbf6..e27460d7 100644 --- a/src/conftime.h +++ b/src/conftime.h @@ -1 +1 @@ -#define COMPILE_DATE_STRING "[2002-12-27 17:46]" +#define COMPILE_DATE_STRING "[2002-12-28 02:31]" diff --git a/src/events.c b/src/events.c index 8daab243..e97d0f98 100644 --- a/src/events.c +++ b/src/events.c @@ -126,7 +126,9 @@ void HandleOtherEvents(Event *event) break; case EVENT_UNMAPNOTIFY: +#if 0 SleepWhileUnmapped(); +#endif break; case EVENT_FOCUSIN: diff --git a/src/main.h b/src/main.h index 7d1f74be..d54e5578 100644 --- a/src/main.h +++ b/src/main.h @@ -1425,9 +1425,9 @@ #define SETUP 8 #define PROGRAM_VERSION_MAJOR 2 -#define PROGRAM_VERSION_MINOR 1 -#define PROGRAM_VERSION_PATCH 2 -#define PROGRAM_VERSION_STRING "2.1.2" +#define PROGRAM_VERSION_MINOR 2 +#define PROGRAM_VERSION_PATCH 0 +#define PROGRAM_VERSION_STRING "2.2.0-rc1" #define PROGRAM_TITLE_STRING "Rocks'n'Diamonds" #define PROGRAM_AUTHOR_STRING "Holger Schemel" diff --git a/src/tape.c b/src/tape.c index e9f3cbbc..709e1520 100644 --- a/src/tape.c +++ b/src/tape.c @@ -766,11 +766,14 @@ void AutoPlayTape() printf("\n"); printf_line('=', 79); - printf("Summary\n"); - printf_line('-', 79); printf("Number of levels played: %d\n", levels_played); printf("Number of levels solved: %d (%d%%)\n", levels_solved, levels_solved * 100 / levels_played); + printf_line('-', 79); + printf("Summary (for automatic parsing by scripts):\n"); + printf("LEVELDIR '%s', SOLVED %d/%d (%d%%)\n", + autoplay_leveldir->identifier, levels_solved, levels_played, + levels_solved * 100 / levels_played); printf_line('=', 79); CloseAllAndExit(0); -- 2.34.1