X-Git-Url: https://git.artsoft.org/?a=blobdiff_plain;f=src%2Ffiles.c;h=58cc705c9c1c6f227ca7df73e3ad9065d5cda033;hb=c9433eab5c4317ed4f89164b386a7d33562e29be;hp=e1a4b80c42c4720fa256b2bffacbf186c29d4a9e;hpb=e5c5bf5c4a76a04f9bf64e92227bf2ef969fd25c;p=rocksndiamonds.git diff --git a/src/files.c b/src/files.c index e1a4b80c..58cc705c 100644 --- a/src/files.c +++ b/src/files.c @@ -1,252 +1,704 @@ /*********************************************************** -* Rocks'n'Diamonds -- McDuffin Strikes Back! * +* Rocks'n'Diamonds -- McDuffin Strikes Back! * *----------------------------------------------------------* -* (c) 1995-98 Artsoft Entertainment * -* Holger Schemel * -* Oststrasse 11a * -* 33604 Bielefeld * -* phone: ++49 +521 290471 * -* email: aeglos@valinor.owl.de * +* (c) 1995-2002 Artsoft Entertainment * +* Holger Schemel * +* Detmolder Strasse 189 * +* 33604 Bielefeld * +* Germany * +* e-mail: info@artsoft.org * *----------------------------------------------------------* -* files.h * +* files.c * ***********************************************************/ +#include +#include + +#include "libgame/libgame.h" + #include "files.h" #include "tools.h" -#include "misc.h" #include "tape.h" -#include "joystick.h" -boolean CreateNewScoreFile() -{ - int i,j,k; - char filename[MAX_FILENAME_LEN]; - char empty_alias[MAX_NAMELEN]; - FILE *file; - sprintf(filename,"%s/%s/%s", - level_directory,leveldir[leveldir_nr].filename,SCORE_FILENAME); +#define CHUNK_ID_LEN 4 /* IFF style chunk id length */ +#define CHUNK_SIZE_UNDEFINED 0 /* undefined chunk size == 0 */ +#define CHUNK_SIZE_NONE -1 /* do not write chunk size */ +#define FILE_VERS_CHUNK_SIZE 8 /* size of file version chunk */ +#define LEVEL_HEADER_SIZE 80 /* size of level file header */ +#define LEVEL_HEADER_UNUSED 14 /* unused level header bytes */ +#define LEVEL_CHUNK_CNT2_SIZE 160 /* size of level CNT2 chunk */ +#define LEVEL_CHUNK_CNT2_UNUSED 11 /* unused CNT2 chunk bytes */ +#define TAPE_HEADER_SIZE 20 /* size of tape file header */ +#define TAPE_HEADER_UNUSED 3 /* unused tape header bytes */ + +/* file identifier strings */ +#define LEVEL_COOKIE_TMPL "ROCKSNDIAMONDS_LEVEL_FILE_VERSION_x.x" +#define TAPE_COOKIE_TMPL "ROCKSNDIAMONDS_TAPE_FILE_VERSION_x.x" +#define SCORE_COOKIE "ROCKSNDIAMONDS_SCORE_FILE_VERSION_1.2" - if (!(file=fopen(filename,"w"))) - return(FALSE); - for(i=0;iauthor, ANONYMOUS_NAME) != 0) { - for(j=0;jauthor, MAX_LEVEL_AUTHOR_LEN); + level.author[MAX_LEVEL_AUTHOR_LEN] = '\0'; + } + else + { + switch (LEVELCLASS(leveldir_current)) { - for(k=0;kname,MAX_LEVEL_AUTHOR_LEN); + level.author[MAX_LEVEL_AUTHOR_LEN] = '\0'; + break; + + case LEVELCLASS_USER: + strncpy(level.author, getRealName(), MAX_LEVEL_AUTHOR_LEN); + level.author[MAX_LEVEL_AUTHOR_LEN] = '\0'; + break; + + default: + /* keep default value */ + break; } } - fclose(file); +} - chmod(filename, SCORE_PERMS); - return(TRUE); +static int checkLevelElement(int element) +{ + if (element >= EL_FIRST_RUNTIME_EL) + { + Error(ERR_WARN, "invalid level element %d", element); + element = EL_CHAR_FRAGE; + } + + return element; } -boolean CreateNewNamesFile(int mode) +static int LoadLevel_VERS(FILE *file, int chunk_size, struct LevelInfo *level) { - char filename[MAX_FILENAME_LEN]; - FILE *file; + level->file_version = getFileVersion(file); + level->game_version = getFileVersion(file); - if (mode==PLAYER_LEVEL) - sprintf(filename,"%s/%s/%s", - level_directory,leveldir[leveldir_nr].filename,NAMES_FILENAME); - else - sprintf(filename,"%s/%s",CONFIG_PATH,NAMES_FILENAME); + return chunk_size; +} - if (!(file=fopen(filename,"w"))) - return(FALSE); +static int LoadLevel_HEAD(FILE *file, int chunk_size, struct LevelInfo *level) +{ + int i, x, y; - fputs(NAMES_COOKIE,file); /* Formatkennung */ - fclose(file); + lev_fieldx = level->fieldx = fgetc(file); + lev_fieldy = level->fieldy = fgetc(file); + + level->time = getFile16BitBE(file); + level->gems_needed = getFile16BitBE(file); + + for(i=0; iname[i] = fgetc(file); + level->name[MAX_LEVEL_NAME_LEN] = 0; + + for(i=0; iscore[i] = fgetc(file); - chmod(filename, NAMES_PERMS); - return(TRUE); + level->num_yam_contents = STD_ELEMENT_CONTENTS; + for(i=0; iyam_content[i][x][y] = checkLevelElement(fgetc(file)); + + level->amoeba_speed = fgetc(file); + level->time_magic_wall = fgetc(file); + level->time_wheel = fgetc(file); + level->amoeba_content = checkLevelElement(fgetc(file)); + level->double_speed = (fgetc(file) == 1 ? TRUE : FALSE); + level->gravity = (fgetc(file) == 1 ? TRUE : FALSE); + level->encoding_16bit_field = (fgetc(file) == 1 ? TRUE : FALSE); + level->em_slippery_gems = (fgetc(file) == 1 ? TRUE : FALSE); + + ReadUnusedBytesFromFile(file, LEVEL_HEADER_UNUSED); + + return chunk_size; } -boolean LoadLevelInfo() +static int LoadLevel_AUTH(FILE *file, int chunk_size, struct LevelInfo *level) { int i; - char filename[MAX_FILENAME_LEN]; - char cookie[MAX_FILENAME_LEN]; - FILE *file; - sprintf(filename,"%s/%s",level_directory,LEVDIR_FILENAME); + for(i=0; iauthor[i] = fgetc(file); + level->author[MAX_LEVEL_NAME_LEN] = 0; + + return chunk_size; +} - if (!(file=fopen(filename,"r"))) +static int LoadLevel_CONT(FILE *file, int chunk_size, struct LevelInfo *level) +{ + int i, x, y; + int header_size = 4; + int content_size = MAX_ELEMENT_CONTENTS * 3 * 3; + int chunk_size_expected = header_size + content_size; + + /* Note: "chunk_size" was wrong before version 2.0 when elements are + stored with 16-bit encoding (and should be twice as big then). + Even worse, playfield data was stored 16-bit when only yamyam content + contained 16-bit elements and vice versa. */ + + if (level->encoding_16bit_field && level->file_version >= FILE_VERSION_2_0) + chunk_size_expected += content_size; + + if (chunk_size_expected != chunk_size) { - Error(ERR_RETURN, "cannot load level info '%s'", filename); - return(FALSE); + ReadUnusedBytesFromFile(file, chunk_size); + return chunk_size_expected; } - fscanf(file,"%s\n",cookie); - if (strcmp(cookie,LEVELDIR_COOKIE)) /* ungültiges Format? */ + fgetc(file); + level->num_yam_contents = fgetc(file); + fgetc(file); + fgetc(file); + + /* correct invalid number of content fields -- should never happen */ + if (level->num_yam_contents < 1 || + level->num_yam_contents > MAX_ELEMENT_CONTENTS) + level->num_yam_contents = STD_ELEMENT_CONTENTS; + + for(i=0; iyam_content[i][x][y] = + checkLevelElement(level->encoding_16bit_field ? + getFile16BitBE(file) : fgetc(file)); + return chunk_size; +} + +static int LoadLevel_BODY(FILE *file, int chunk_size, struct LevelInfo *level) +{ + int x, y; + int chunk_size_expected = level->fieldx * level->fieldy; + + /* Note: "chunk_size" was wrong before version 2.0 when elements are + stored with 16-bit encoding (and should be twice as big then). + Even worse, playfield data was stored 16-bit when only yamyam content + contained 16-bit elements and vice versa. */ + + if (level->encoding_16bit_field && level->file_version >= FILE_VERSION_2_0) + chunk_size_expected *= 2; + + if (chunk_size_expected != chunk_size) { - Error(ERR_RETURN, "wrong format of level info file"); - fclose(file); - return(FALSE); + ReadUnusedBytesFromFile(file, chunk_size); + return chunk_size_expected; } - num_leveldirs = 0; - leveldir_nr = 0; - for(i=0;ifieldy; y++) + for(x=0; xfieldx; x++) + Feld[x][y] = Ur[x][y] = + checkLevelElement(level->encoding_16bit_field ? + getFile16BitBE(file) : fgetc(file)); + return chunk_size; +} + +static int LoadLevel_CNT2(FILE *file, int chunk_size, struct LevelInfo *level) +{ + int i, x, y; + int element; + int num_contents, content_xsize, content_ysize; + int content_array[MAX_ELEMENT_CONTENTS][3][3]; + + element = checkLevelElement(getFile16BitBE(file)); + num_contents = fgetc(file); + content_xsize = fgetc(file); + content_ysize = fgetc(file); + ReadUnusedBytesFromFile(file, LEVEL_CHUNK_CNT2_UNUSED); + + for(i=0; i MAX_ELEMENT_CONTENTS) + num_contents = STD_ELEMENT_CONTENTS; + + if (element == EL_MAMPFER) { - fscanf(file,"%s",leveldir[i].filename); - fscanf(file,"%s",leveldir[i].name); - fscanf(file,"%d",&leveldir[i].levels); - fscanf(file,"%d",&leveldir[i].readonly); - if (feof(file)) - break; + level->num_yam_contents = num_contents; - num_leveldirs++; + for(i=0; iyam_content[i][x][y] = content_array[i][x][y]; } - - if (!num_leveldirs) + else if (element == EL_AMOEBE_BD) { - Error(ERR_RETURN, "empty level info '%s'", filename); - return(FALSE); + level->amoeba_content = content_array[0][0][0]; + } + else + { + Error(ERR_WARN, "cannot load content for element '%d'", element); } - return(TRUE); + return chunk_size; } void LoadLevel(int level_nr) { - int i,x,y; - char filename[MAX_FILENAME_LEN]; - char cookie[MAX_FILENAME_LEN]; + char *filename = getLevelFilename(level_nr); + char cookie[MAX_LINE_LEN]; + char chunk_name[CHUNK_ID_LEN + 1]; + int chunk_size; FILE *file; - sprintf(filename,"%s/%s/%d", - level_directory,leveldir[leveldir_nr].filename,level_nr); + /* always start with reliable default values */ + setLevelInfoToDefaults(); - if (!(file = fopen(filename,"r"))) - Error(ERR_RETURN, "cannot load level '%s' - creating new level", filename); - else + if (!(file = fopen(filename, MODE_READ))) { - fgets(cookie,LEVEL_COOKIE_LEN,file); - fgetc(file); + Error(ERR_WARN, "cannot read level '%s' - creating new level", filename); + return; + } + + getFileChunkBE(file, chunk_name, NULL); + if (strcmp(chunk_name, "RND1") == 0) + { + getFile32BitBE(file); /* not used */ + + getFileChunkBE(file, chunk_name, NULL); + if (strcmp(chunk_name, "CAVE") != 0) + { + Error(ERR_WARN, "unknown format of level file '%s'", filename); + fclose(file); + return; + } + } + else /* check for pre-2.0 file format with cookie string */ + { + strcpy(cookie, chunk_name); + fgets(&cookie[4], MAX_LINE_LEN - 4, file); + if (strlen(cookie) > 0 && cookie[strlen(cookie) - 1] == '\n') + cookie[strlen(cookie) - 1] = '\0'; + + if (!checkCookieString(cookie, LEVEL_COOKIE_TMPL)) + { + Error(ERR_WARN, "unknown format of level file '%s'", filename); + fclose(file); + return; + } - if (strcmp(cookie,LEVEL_COOKIE)) /* ungültiges Format? */ + if ((level.file_version = getFileVersionFromCookieString(cookie)) == -1) { - Error(ERR_RETURN, "wrong format of level file '%s'", filename); + Error(ERR_WARN, "unsupported version of level file '%s'", filename); fclose(file); - file = NULL; + return; } + + /* pre-2.0 level files have no game version, so use file version here */ + level.game_version = level.file_version; } - if (file) + if (level.file_version < FILE_VERSION_1_2) + { + /* level files from versions before 1.2.0 without chunk structure */ + LoadLevel_HEAD(file, LEVEL_HEADER_SIZE, &level); + LoadLevel_BODY(file, level.fieldx * level.fieldy, &level); + } + else { - lev_fieldx = level.fieldx = fgetc(file); - lev_fieldy = level.fieldy = fgetc(file); + static struct + { + char *name; + int size; + int (*loader)(FILE *, int, struct LevelInfo *); + } + chunk_info[] = + { + { "VERS", FILE_VERS_CHUNK_SIZE, LoadLevel_VERS }, + { "HEAD", LEVEL_HEADER_SIZE, LoadLevel_HEAD }, + { "AUTH", MAX_LEVEL_AUTHOR_LEN, LoadLevel_AUTH }, + { "CONT", -1, LoadLevel_CONT }, + { "BODY", -1, LoadLevel_BODY }, + { "CNT2", LEVEL_CHUNK_CNT2_SIZE, LoadLevel_CNT2 }, + { NULL, 0, NULL } + }; + + while (getFileChunkBE(file, chunk_name, &chunk_size)) + { + int i = 0; - level.time = (fgetc(file)<<8) | fgetc(file); - level.edelsteine = (fgetc(file)<<8) | fgetc(file); - for(i=0;ifile_version); + putFileVersion(file, level->game_version); +} + +static void SaveLevel_HEAD(FILE *file, struct LevelInfo *level) +{ + int i, x, y; + + fputc(level->fieldx, file); + fputc(level->fieldy, file); + + putFile16BitBE(file, level->time); + putFile16BitBE(file, level->gems_needed); + + for(i=0; iname[i], file); + + for(i=0; iscore[i], file); + + for(i=0; iencoding_16bit_yamyam ? EL_LEERRAUM : + level->yam_content[i][x][y]), + file); + fputc(level->amoeba_speed, file); + fputc(level->time_magic_wall, file); + fputc(level->time_wheel, file); + fputc((level->encoding_16bit_amoeba ? EL_LEERRAUM : level->amoeba_content), + file); + fputc((level->double_speed ? 1 : 0), file); + fputc((level->gravity ? 1 : 0), file); + fputc((level->encoding_16bit_field ? 1 : 0), file); + fputc((level->em_slippery_gems ? 1 : 0), file); + + WriteUnusedBytesToFile(file, LEVEL_HEADER_UNUSED); } -void LoadLevelTape(int level_nr) +static void SaveLevel_AUTH(FILE *file, struct LevelInfo *level) { int i; - char filename[MAX_FILENAME_LEN]; - char cookie[MAX_FILENAME_LEN]; - FILE *file; - boolean levelrec_10 = FALSE; - -#ifndef MSDOS - sprintf(filename,"%s/%s/%d.tape", - level_directory,leveldir[leveldir_nr].filename,level_nr); -#else - sprintf(filename,"%s/%s/%d.tap", - level_directory,leveldir[leveldir_nr].filename,level_nr); + + for(i=0; iauthor[i], file); +} + +#if 0 +static void SaveLevel_CONT(FILE *file, struct LevelInfo *level) +{ + int i, x, y; + + fputc(EL_MAMPFER, file); + fputc(level->num_yam_contents, file); + fputc(0, file); + fputc(0, file); + + for(i=0; iencoding_16bit_field) + putFile16BitBE(file, level->yam_content[i][x][y]); + else + fputc(level->yam_content[i][x][y], file); +} #endif - if ((file=fopen(filename,"r"))) +static void SaveLevel_BODY(FILE *file, struct LevelInfo *level) +{ + int x, y; + + for(y=0; yfieldy; y++) + for(x=0; xfieldx; x++) + if (level->encoding_16bit_field) + putFile16BitBE(file, Ur[x][y]); + else + fputc(Ur[x][y], file); +} + +static void SaveLevel_CNT2(FILE *file, struct LevelInfo *level, int element) +{ + int i, x, y; + int num_contents, content_xsize, content_ysize; + int content_array[MAX_ELEMENT_CONTENTS][3][3]; + + if (element == EL_MAMPFER) { - fgets(cookie,LEVELREC_COOKIE_LEN,file); - fgetc(file); - if (!strcmp(cookie,LEVELREC_COOKIE_10)) /* old 1.0 tape format */ - levelrec_10 = TRUE; - else if (strcmp(cookie,LEVELREC_COOKIE)) /* unknown tape format */ - { - Error(ERR_RETURN, "wrong format of level recording file '%s'", filename); - fclose(file); - file = NULL; - } + num_contents = level->num_yam_contents; + content_xsize = 3; + content_ysize = 3; + + for(i=0; iyam_content[i][x][y]; + } + else if (element == EL_AMOEBE_BD) + { + num_contents = 1; + content_xsize = 1; + content_ysize = 1; + + for(i=0; iamoeba_content; } + else + { + /* chunk header already written -- write empty chunk data */ + WriteUnusedBytesToFile(file, LEVEL_CHUNK_CNT2_SIZE); - if (!file) + Error(ERR_WARN, "cannot save content for element '%d'", element); return; + } + + putFile16BitBE(file, element); + fputc(num_contents, file); + fputc(content_xsize, file); + fputc(content_ysize, file); + + WriteUnusedBytesToFile(file, LEVEL_CHUNK_CNT2_UNUSED); + + for(i=0; i 255) + level.encoding_16bit_field = TRUE; + + /* check yamyam content for 16-bit elements */ + level.encoding_16bit_yamyam = FALSE; + for(i=0; i 255) + level.encoding_16bit_yamyam = TRUE; + + /* check amoeba content for 16-bit elements */ + level.encoding_16bit_amoeba = FALSE; + if (level.amoeba_content > 255) + level.encoding_16bit_amoeba = TRUE; + + body_chunk_size = + level.fieldx * level.fieldy * (level.encoding_16bit_field ? 2 : 1); + + putFileChunkBE(file, "RND1", CHUNK_SIZE_UNDEFINED); + putFileChunkBE(file, "CAVE", CHUNK_SIZE_NONE); + + putFileChunkBE(file, "VERS", FILE_VERS_CHUNK_SIZE); + SaveLevel_VERS(file, &level); + + putFileChunkBE(file, "HEAD", LEVEL_HEADER_SIZE); + SaveLevel_HEAD(file, &level); + + putFileChunkBE(file, "AUTH", MAX_LEVEL_AUTHOR_LEN); + SaveLevel_AUTH(file, &level); + + putFileChunkBE(file, "BODY", body_chunk_size); + SaveLevel_BODY(file, &level); + + if (level.encoding_16bit_yamyam || + level.num_yam_contents != STD_ELEMENT_CONTENTS) + { + putFileChunkBE(file, "CNT2", LEVEL_CHUNK_CNT2_SIZE); + SaveLevel_CNT2(file, &level, EL_MAMPFER); + } + + if (level.encoding_16bit_amoeba) + { + putFileChunkBE(file, "CNT2", LEVEL_CHUNK_CNT2_SIZE); + SaveLevel_CNT2(file, &level, EL_AMOEBE_BD); + } + + fclose(file); + + SetFilePermissions(filename, PERMS_PRIVATE); +} + + +/* ========================================================================= */ +/* tape file functions */ +/* ========================================================================= */ + +static void setTapeInfoToDefaults() +{ + int i; + + /* always start with reliable default values (empty tape) */ + TapeErase(); + + /* default values (also for pre-1.2 tapes) with only the first player */ + tape.player_participates[0] = TRUE; + for(i=1; ifile_version = getFileVersion(file); + tape->game_version = getFileVersion(file); - if (i >= MAX_TAPELEN) - break; + return chunk_size; +} - for(j=0; jrandom_seed = getFile32BitBE(file); + tape->date = getFile32BitBE(file); + tape->length = getFile32BitBE(file); + + /* read header fields that are new since version 1.2 */ + if (tape->file_version >= FILE_VERSION_1_2) + { + byte store_participating_players = fgetc(file); + int engine_version; + + /* since version 1.2, tapes store which players participate in the tape */ + tape->num_participating_players = 0; + for(i=0; i0) + tape->player_participates[i] = FALSE; + + if (store_participating_players & (1 << i)) { - tape.pos[i].action[j] = MV_NO_MOVING; - continue; + tape->player_participates[i] = TRUE; + tape->num_participating_players++; } - tape.pos[i].action[j] = fgetc(file); } - tape.pos[i].delay = fgetc(file); + ReadUnusedBytesFromFile(file, TAPE_HEADER_UNUSED); - if (feof(file)) - break; + engine_version = getFileVersion(file); + if (engine_version > 0) + tape->engine_version = engine_version; } - fclose(file); - - if (i != tape.length) - Error(ERR_RETURN, "level recording file '%s' corrupted", filename); - - tape.length_seconds = GetTapeLength(); + return chunk_size; } -void LoadScore(int level_nr) +static int LoadTape_BODY(FILE *file, int chunk_size, struct TapeInfo *tape) { - int i,j; - char filename[MAX_FILENAME_LEN]; - char cookie[MAX_FILENAME_LEN]; - FILE *file; - - sprintf(filename,"%s/%s/%s", - level_directory,leveldir[leveldir_nr].filename,SCORE_FILENAME); + int i, j; + int chunk_size_expected = + (tape->num_participating_players + 1) * tape->length; - if (!(file = fopen(filename,"r"))) + if (chunk_size_expected != chunk_size) { - if (!CreateNewScoreFile()) - Error(ERR_RETURN, "cannot create score file '%s'", filename); - else if (!(file = fopen(filename,"r"))) - Error(ERR_RETURN, "cannot load score for level %d", level_nr); + ReadUnusedBytesFromFile(file, chunk_size); + return chunk_size_expected; } - if (file) + for(i=0; ilength; i++) { - fgets(cookie,SCORE_COOKIE_LEN,file); - if (strcmp(cookie,SCORE_COOKIE)) /* ungültiges Format? */ + if (i >= MAX_TAPELEN) + break; + + for(j=0; jpos[i].action[j] = MV_NO_MOVING; + + if (tape->player_participates[j]) + tape->pos[i].action[j] = fgetc(file); } - } - if (file) - { - fseek(file, - SCORE_COOKIE_LEN-1+level_nr*(MAX_SCORE_ENTRIES*(MAX_NAMELEN+2)), - SEEK_SET); - for(i=0;ipos[i].delay = fgetc(file); + + if (tape->file_version == FILE_VERSION_1_0) { - for(j=0;jpos[i].action[0]; + int k, num_moves = 0; + + for (k=0; k<4; k++) + { + if (action & joy_dir[k]) + { + tape->pos[i + num_moves].action[0] = joy_dir[k]; + if (num_moves > 0) + tape->pos[i + num_moves].delay = 0; + num_moves++; + } + } + + if (num_moves > 1) + { + num_moves--; + i += num_moves; + tape->length += num_moves; + } } - fclose(file); - } - else - { - for(i=0;ifile_version < FILE_VERSION_2_0) { - strcpy(highscore[i].Name,EMPTY_ALIAS); - highscore[i].Score = 0; + /* convert pre-2.0 tapes to new tape format */ + + if (tape->pos[i].delay > 1) + { + /* action part */ + tape->pos[i + 1] = tape->pos[i]; + tape->pos[i + 1].delay = 1; + + /* delay part */ + for(j=0; jpos[i].action[j] = MV_NO_MOVING; + tape->pos[i].delay--; + + i++; + tape->length++; + } } + + if (feof(file)) + break; } + + if (i != tape->length) + chunk_size = (tape->num_participating_players + 1) * i; + + return chunk_size; } -void LoadPlayerInfo(int mode) +void LoadTape(int level_nr) { - int i; - char filename[MAX_FILENAME_LEN]; - char cookie[MAX_FILENAME_LEN]; + char *filename = getTapeFilename(level_nr); + char cookie[MAX_LINE_LEN]; + char chunk_name[CHUNK_ID_LEN + 1]; FILE *file; - char *login_name = GetLoginName(); - struct PlayerInfo default_player, new_player; - int version_10_file = FALSE; - - if (mode==PLAYER_LEVEL) - sprintf(filename,"%s/%s/%s", - level_directory,leveldir[leveldir_nr].filename,NAMES_FILENAME); - else - sprintf(filename,"%s/%s",CONFIG_PATH,NAMES_FILENAME); + int chunk_size; - for(i=0;i 0 && cookie[strlen(cookie) - 1] == '\n') + cookie[strlen(cookie) - 1] = '\0'; + + if (!checkCookieString(cookie, TAPE_COOKIE_TMPL)) { - Error(ERR_RETURN, "wrong format of names file '%s'", filename); + Error(ERR_WARN, "unknown format of tape file '%s'", filename); fclose(file); - file = NULL; + return; + } + + if ((tape.file_version = getFileVersionFromCookieString(cookie)) == -1) + { + Error(ERR_WARN, "unsupported version of tape file '%s'", filename); + fclose(file); + return; } + + /* pre-2.0 tape files have no game version, so use file version here */ + tape.game_version = tape.file_version; } - if (!file) + if (tape.file_version < FILE_VERSION_1_2) { - *local_player = default_player; - level_nr = default_player.level_nr; - return; + /* tape files from versions before 1.2.0 without chunk structure */ + LoadTape_HEAD(file, TAPE_HEADER_SIZE, &tape); + LoadTape_BODY(file, 2 * tape.length, &tape); } - - while(1) + else { - for(i=0;ileveldir_nr < num_leveldirs) - leveldir_nr = local_player->leveldir_nr; - else - leveldir_nr = 0; - } - else - { - local_player->handicap = new_player.handicap; - local_player->level_nr = new_player.level_nr; - } + fclose(file); - level_nr = local_player->level_nr; + tape.length_seconds = GetTapeLength(); +} - if (file) - fclose(file); +static void SaveTape_VERS(FILE *file, struct TapeInfo *tape) +{ + putFileVersion(file, tape->file_version); + putFileVersion(file, tape->game_version); } -void SaveLevel(int level_nr) +static void SaveTape_HEAD(FILE *file, struct TapeInfo *tape) { - int i,x,y; - char filename[MAX_FILENAME_LEN]; - FILE *file; + int i; + byte store_participating_players = 0; - sprintf(filename,"%s/%s/%d", - level_directory,leveldir[leveldir_nr].filename,level_nr); + /* set bits for participating players for compact storage */ + for(i=0; iplayer_participates[i]) + store_participating_players |= (1 << i); - if (!(file=fopen(filename,"w"))) - { - Error(ERR_RETURN, "cannot save level file '%s'", filename); - return; - } + putFile32BitBE(file, tape->random_seed); + putFile32BitBE(file, tape->date); + putFile32BitBE(file, tape->length); - fputs(LEVEL_COOKIE,file); /* Formatkennung */ - fputc(0x0a,file); - - fputc(level.fieldx,file); - fputc(level.fieldy,file); - fputc(level.time / 256,file); - fputc(level.time % 256,file); - fputc(level.edelsteine / 256,file); - fputc(level.edelsteine % 256,file); - - for(i=0;iengine_version); } -void SaveLevelTape(int level_nr) +static void SaveTape_BODY(FILE *file, struct TapeInfo *tape) +{ + int i, j; + + for(i=0; ilength; i++) + { + for(j=0; jplayer_participates[j]) + fputc(tape->pos[i].action[j], file); + + fputc(tape->pos[i].delay, file); + } +} + +void SaveTape(int level_nr) { int i; - char filename[MAX_FILENAME_LEN]; + char *filename = getTapeFilename(level_nr); FILE *file; boolean new_tape = TRUE; + int num_participating_players = 0; + int body_chunk_size; -#ifndef MSDOS - sprintf(filename,"%s/%s/%d.tape", - level_directory,leveldir[leveldir_nr].filename,level_nr); -#else - sprintf(filename,"%s/%s/%d.tap", - level_directory,leveldir[leveldir_nr].filename,level_nr); -#endif + InitTapeDirectory(leveldir_current->filename); - /* Testen, ob bereits eine Aufnahme existiert */ - if ((file=fopen(filename,"r"))) + /* if a tape still exists, ask to overwrite it */ + if (access(filename, F_OK) == 0) { new_tape = FALSE; - fclose(file); - - if (!Request("Replace old tape ?",REQ_ASK)) + if (!Request("Replace old tape ?", REQ_ASK)) return; } - if (!(file=fopen(filename,"w"))) + if (!(file = fopen(filename, MODE_WRITE))) { - Error(ERR_RETURN, "cannot save level recording file '%s'", filename); + Error(ERR_WARN, "cannot save level recording file '%s'", filename); return; } - fputs(LEVELREC_COOKIE,file); /* Formatkennung */ - fputc(0x0a,file); + tape.file_version = FILE_VERSION_ACTUAL; + tape.game_version = GAME_VERSION_ACTUAL; - fputc((tape.random_seed >> 24) & 0xff,file); - fputc((tape.random_seed >> 16) & 0xff,file); - fputc((tape.random_seed >> 8) & 0xff,file); - fputc((tape.random_seed >> 0) & 0xff,file); + /* count number of participating players */ + for(i=0; i> 24) & 0xff,file); - fputc((tape.date >> 16) & 0xff,file); - fputc((tape.date >> 8) & 0xff,file); - fputc((tape.date >> 0) & 0xff,file); + body_chunk_size = (num_participating_players + 1) * tape.length; - fputc((tape.length >> 24) & 0xff,file); - fputc((tape.length >> 16) & 0xff,file); - fputc((tape.length >> 8) & 0xff,file); - fputc((tape.length >> 0) & 0xff,file); + putFileChunkBE(file, "RND1", CHUNK_SIZE_UNDEFINED); + putFileChunkBE(file, "TAPE", CHUNK_SIZE_NONE); - for(i=0;ilevel_nr); return; } - fseek(file, - SCORE_COOKIE_LEN-1+level_nr*(MAX_SCORE_ENTRIES*(MAX_NAMELEN+2)), - SEEK_SET); - for(i=0;ilevel_nr, tape->file_version, tape->game_version); + printf("-------------------------------------------------------------------------------\n"); + + for(i=0; ilength; i++) { - for(j=0;j= MAX_TAPELEN) + break; + + for(j=0; jplayer_participates[j]) + { + int action = tape->pos[i].action[j]; + + printf("%d:%02x ", j, action); + printf("[%c%c%c%c|%c%c] - ", + (action & JOY_LEFT ? '<' : ' '), + (action & JOY_RIGHT ? '>' : ' '), + (action & JOY_UP ? '^' : ' '), + (action & JOY_DOWN ? 'v' : ' '), + (action & JOY_BUTTON_1 ? '1' : ' '), + (action & JOY_BUTTON_2 ? '2' : ' ')); + } + } + + printf("(%03d)\n", tape->pos[i].delay); } - fclose(file); + + printf("-------------------------------------------------------------------------------\n"); } -void SavePlayerInfo(int mode) + +/* ========================================================================= */ +/* score file functions */ +/* ========================================================================= */ + +void LoadScore(int level_nr) { int i; - char filename[MAX_FILENAME_LEN]; - char cookie[MAX_FILENAME_LEN]; + char *filename = getScoreFilename(level_nr); + char cookie[MAX_LINE_LEN]; + char line[MAX_LINE_LEN]; + char *line_ptr; FILE *file; - struct PlayerInfo default_player; - int version_10_file = FALSE; - - if (mode==PLAYER_LEVEL) - sprintf(filename,"%s/%s/%s", - level_directory,leveldir[leveldir_nr].filename,NAMES_FILENAME); - else - sprintf(filename,"%s/%s",CONFIG_PATH,NAMES_FILENAME); - if (!(file = fopen(filename,"r+"))) + /* always start with reliable default values */ + for(i=0; i 0 && cookie[strlen(cookie) - 1] == '\n') + cookie[strlen(cookie) - 1] = '\0'; + + if (!checkCookieString(cookie, SCORE_COOKIE)) { - Error(ERR_RETURN, "wrong format of names file '%s'", filename); + Error(ERR_WARN, "unknown format of score file '%s'", filename); fclose(file); return; } - while(1) + for(i=0; ilogin_name, MAX_NAMELEN-1)) + if (line[strlen(line) - 1] == '\n') + line[strlen(line) - 1] = '\0'; + + for (line_ptr = line; *line_ptr; line_ptr++) + { + if (*line_ptr != ' ' && *line_ptr != '\t' && *line_ptr != '\0') { - fseek(file,-(2*MAX_NAMELEN+1+2+1+(version_10_file ? 0 : 11)),SEEK_CUR); + strncpy(highscore[i].Name, line_ptr, MAX_PLAYER_NAME_LEN); + highscore[i].Name[MAX_PLAYER_NAME_LEN] = '\0'; break; } + } } - local_player->level_nr = level_nr; + fclose(file); +} + +void SaveScore(int level_nr) +{ + int i; + char *filename = getScoreFilename(level_nr); + FILE *file; - for(i=0;ilogin_name[i],file); - for(i=0;ialias_name[i],file); - fputc(local_player->handicap,file); - fputc(local_player->setup / 256,file); - fputc(local_player->setup % 256,file); - fputc(local_player->leveldir_nr,file); - if (!version_10_file) + InitScoreDirectory(leveldir_current->filename); + + if (!(file = fopen(filename, MODE_WRITE))) { - fputc(local_player->level_nr,file); - for(i=0;i<10;i++) /* currently unused bytes */ - fputc(0,file); + Error(ERR_WARN, "cannot save score for level %d", level_nr); + return; } + fprintf(file, "%s\n\n", SCORE_COOKIE); + + for(i=0; iplayer_name = getStringCopy(getLoginName()); + + si->sound = TRUE; + si->sound_loops = TRUE; + si->sound_music = TRUE; + si->sound_simple = TRUE; + si->toons = TRUE; + si->double_buffering = TRUE; + si->direct_draw = !si->double_buffering; + si->scroll_delay = TRUE; + si->soft_scrolling = TRUE; + si->fading = FALSE; + si->autorecord = TRUE; + si->quick_doors = FALSE; + si->team_mode = FALSE; + si->handicap = TRUE; + si->time_limit = TRUE; + si->fullscreen = FALSE; + si->ask_on_escape = TRUE; + + si->graphics_set = getStringCopy(GRAPHICS_SUBDIR); + si->sounds_set = getStringCopy(SOUNDS_SUBDIR); + si->music_set = getStringCopy(MUSIC_SUBDIR); + si->override_level_graphics = FALSE; + si->override_level_sounds = FALSE; + si->override_level_music = FALSE; + + si->shortcut.save_game = DEFAULT_KEY_SAVE_GAME; + si->shortcut.load_game = DEFAULT_KEY_LOAD_GAME; + si->shortcut.toggle_pause = DEFAULT_KEY_TOGGLE_PAUSE; + + for (i=0; iinput[i].use_joystick = FALSE; + si->input[i].joy.device_name=getStringCopy(getDeviceNameFromJoystickNr(i)); + si->input[i].joy.xleft = JOYSTICK_XLEFT; + si->input[i].joy.xmiddle = JOYSTICK_XMIDDLE; + si->input[i].joy.xright = JOYSTICK_XRIGHT; + si->input[i].joy.yupper = JOYSTICK_YUPPER; + si->input[i].joy.ymiddle = JOYSTICK_YMIDDLE; + si->input[i].joy.ylower = JOYSTICK_YLOWER; + si->input[i].joy.snap = (i == 0 ? JOY_BUTTON_1 : 0); + si->input[i].joy.bomb = (i == 0 ? JOY_BUTTON_2 : 0); + si->input[i].key.left = (i == 0 ? DEFAULT_KEY_LEFT : KSYM_UNDEFINED); + si->input[i].key.right = (i == 0 ? DEFAULT_KEY_RIGHT : KSYM_UNDEFINED); + si->input[i].key.up = (i == 0 ? DEFAULT_KEY_UP : KSYM_UNDEFINED); + si->input[i].key.down = (i == 0 ? DEFAULT_KEY_DOWN : KSYM_UNDEFINED); + si->input[i].key.snap = (i == 0 ? DEFAULT_KEY_SNAP : KSYM_UNDEFINED); + si->input[i].key.bomb = (i == 0 ? DEFAULT_KEY_BOMB : KSYM_UNDEFINED); + } +} + +static void decodeSetupFileList(struct SetupFileList *setup_file_list) +{ + int i, pnr; -#ifndef MSDOS - if (!(file=fopen(JOYDAT_FILE,"r"))) + if (!setup_file_list) return; - fscanf(file,"%s",cookie); - if (strcmp(cookie,JOYSTICK_COOKIE)) /* ungültiges Format? */ + /* global setup */ + si = setup; + for (i=0; i MAX_PLAYER_NAME_LEN) + setup.player_name[MAX_PLAYER_NAME_LEN] = '\0'; + else if (strlen(setup.player_name) < MAX_PLAYER_NAME_LEN) + { + char *new_name = checked_malloc(MAX_PLAYER_NAME_LEN + 1); + + strcpy(new_name, setup.player_name); + free(setup.player_name); + setup.player_name = new_name; + } + } + else + Error(ERR_WARN, "using default setup values"); } -void SaveJoystickData() +void SaveSetup() { - int i; + char *filename = getSetupFilename(); FILE *file; + int i, pnr; - if (joystick_status==JOYSTICK_OFF) + InitUserDataDirectory(); + + if (!(file = fopen(filename, MODE_WRITE))) + { + Error(ERR_WARN, "cannot write setup file '%s'", filename); return; + } -#ifndef MSDOS - CheckJoystickData(); + fprintf(file, "%s\n", getFormattedSetupEntry(TOKEN_STR_FILE_IDENTIFIER, + getCookie("SETUP"))); + fprintf(file, "\n"); - if (!(file=fopen(JOYDAT_FILE,"w"))) + /* global setup */ + si = setup; + for (i=0; i