diff -r bb3bb8584190 -r b37843173279 os.c --- a/os.c Sun May 07 13:33:25 2006 +0200 +++ b/os.c Sun May 07 13:34:25 2006 +0200 @@ -13,7 +13,7 @@ int max_depth = 0; int min_depth_period = 0; int max_depth_period = 0; -struct Map * actual_map; +struct Map * actual_map = NULL; void ReadMap(struct Map *M, char *FileName) @@ -123,28 +123,32 @@ } #endif - printf("Man is at (%i,%i)\n", Temp.Man.x, Temp.Man.y); - printf("Platforms: %i, BoxesInPlatform: %i\n", Temp.NumPlatforms, + fprintf(stderr,"Man is at (%i,%i)\n", Temp.Man.x, Temp.Man.y); + fprintf(stderr,"Platforms: %i, BoxesInPlatform: %i\n", Temp.NumPlatforms, Temp.NumBoxesInPlatform); } void PrintMove(const struct BoxMove b) { - printf("Box: %i, Direction: {%i,%i}\n", b.box, b.dir.x, b.dir.y); + fprintf(stderr,"Box: %i, Direction: {%i,%i}\n", b.box, b.dir.x, b.dir.y); +} + +void show_percent_and_map() +{ + fprintf(stderr, "Percent: %2.12f, depth: %i-%i\n", percent_to_show, + min_depth_period, max_depth_period); + if(actual_map != NULL) + ShowMap(actual_map); + fflush(stderr); + min_depth_period = MAX_STEPS; + max_depth_period = 0; } static void show_percent_callback(const int parameter) { - fprintf(stderr, "Percent: %2.12f, depth: %i-%i\n", percent_to_show, - min_depth_period, max_depth_period); - ShowMap(actual_map); - fflush(stderr); - min_depth_period = MAX_STEPS; - max_depth_period = 0; -#ifndef DEBUG + show_percent_and_map(); alarm(ALARM_SECONDS); -#endif } static void program_alarm() @@ -164,5 +168,8 @@ void init_os() { +#ifndef DEBUG program_alarm(); +#endif } +