X-Git-Url: https://git.artsoft.org/?a=blobdiff_plain;f=src%2Ffiles.c;h=58cc705c9c1c6f227ca7df73e3ad9065d5cda033;hb=c9433eab5c4317ed4f89164b386a7d33562e29be;hp=21ed3ca17f8614be3770784740da65e1be5baf7c;hpb=2357c391b4a587709627cc30316734b3c83c8134;p=rocksndiamonds.git diff --git a/src/files.c b/src/files.c index 21ed3ca1..58cc705c 100644 --- a/src/files.c +++ b/src/files.c @@ -1,1574 +1,1487 @@ /*********************************************************** -* 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 LoadLevelInfo() -{ - int i; - char filename[MAX_FILENAME_LEN]; - char cookie[MAX_FILENAME_LEN]; - FILE *file; - sprintf(filename,"%s/%s",level_directory,LEVDIR_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 */ - if (!(file=fopen(filename,"r"))) - { - Error(ERR_WARN, "cannot read level info '%s'", filename); - return(FALSE); - } +/* 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" - fscanf(file,"%s\n",cookie); - if (strcmp(cookie,LEVELDIR_COOKIE)) /* ungültiges Format? */ - { - Error(ERR_WARN, "wrong format of level info file"); - fclose(file); - return(FALSE); - } - num_leveldirs = 0; - leveldir_nr = 0; - for(i=0;iauthor, ANONYMOUS_NAME) != 0) { - Error(ERR_WARN, "empty level info '%s'", filename); - return(FALSE); + strncpy(level.author, leveldir_current->author, MAX_LEVEL_AUTHOR_LEN); + level.author[MAX_LEVEL_AUTHOR_LEN] = '\0'; } - - return(TRUE); -} - -void LoadLevel(int level_nr) -{ - int i,x,y; - char filename[MAX_FILENAME_LEN]; - char cookie[MAX_FILENAME_LEN]; - FILE *file; - - sprintf(filename,"%s/%s/%d", - level_directory,leveldir[leveldir_nr].filename,level_nr); - - if (!(file = fopen(filename,"r"))) - Error(ERR_WARN, "cannot read level '%s' - creating new level", filename); else { - fgets(cookie,LEVEL_COOKIE_LEN,file); - fgetc(file); - - if (strcmp(cookie,LEVEL_COOKIE)) /* ungültiges Format? */ + switch (LEVELCLASS(leveldir_current)) { - Error(ERR_WARN, "wrong format of level file '%s'", filename); - fclose(file); - file = NULL; - } - } + case LEVELCLASS_TUTORIAL: + strcpy(level.author, PROGRAM_AUTHOR_STRING); + break; - if (file) - { - lev_fieldx = level.fieldx = fgetc(file); - lev_fieldy = level.fieldy = fgetc(file); - - level.time = (fgetc(file)<<8) | fgetc(file); - level.edelsteine = (fgetc(file)<<8) | fgetc(file); - for(i=0;iname,MAX_LEVEL_AUTHOR_LEN); + level.author[MAX_LEVEL_AUTHOR_LEN] = '\0'; + break; - fclose(file); + case LEVELCLASS_USER: + strncpy(level.author, getRealName(), MAX_LEVEL_AUTHOR_LEN); + level.author[MAX_LEVEL_AUTHOR_LEN] = '\0'; + break; - if (level.time<=10) /* Mindestspieldauer */ - level.time = 10; - } - else - { - lev_fieldx = level.fieldx = STD_LEV_FIELDX; - lev_fieldy = level.fieldy = STD_LEV_FIELDY; - - level.time = 100; - level.edelsteine = 0; - strncpy(level.name,"Nameless Level",MAX_LEVNAMLEN-1); - for(i=0;i= EL_FIRST_RUNTIME_EL) { - Error(ERR_WARN, "cannot save level file '%s'", filename); - return; + Error(ERR_WARN, "invalid level element %d", element); + element = EL_CHAR_FRAGE; } - 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;ifile_version = getFileVersion(file); + level->game_version = getFileVersion(file); - if ((file=fopen(filename,"r"))) - { - 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_WARN, "wrong format of level recording file '%s'", filename); - fclose(file); - file = NULL; - } - } + return chunk_size; +} - if (!file) - return; +static int LoadLevel_HEAD(FILE *file, int chunk_size, struct LevelInfo *level) +{ + int i, x, y; - tape.random_seed = - (fgetc(file)<<24) | (fgetc(file)<<16) | (fgetc(file)<<8) | fgetc(file); - tape.date = - (fgetc(file)<<24) | (fgetc(file)<<16) | (fgetc(file)<<8) | fgetc(file); - tape.length = - (fgetc(file)<<24) | (fgetc(file)<<16) | (fgetc(file)<<8) | fgetc(file); + lev_fieldx = level->fieldx = fgetc(file); + lev_fieldy = level->fieldy = fgetc(file); - tape.level_nr = level_nr; - tape.counter = 0; - tape.changed = FALSE; + level->time = getFile16BitBE(file); + level->gems_needed = getFile16BitBE(file); - tape.recording = FALSE; - tape.playing = FALSE; - tape.pausing = FALSE; + for(i=0; iname[i] = fgetc(file); + level->name[MAX_LEVEL_NAME_LEN] = 0; - for(i=0;iscore[i] = fgetc(file); - if (i >= MAX_TAPELEN) - break; + level->num_yam_contents = STD_ELEMENT_CONTENTS; + for(i=0; iyam_content[i][x][y] = checkLevelElement(fgetc(file)); - for(j=0; j0) - { - tape.pos[i].action[j] = MV_NO_MOVING; - continue; - } - tape.pos[i].action[j] = 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); - tape.pos[i].delay = fgetc(file); + ReadUnusedBytesFromFile(file, LEVEL_HEADER_UNUSED); - if (feof(file)) - break; - } + return chunk_size; +} - fclose(file); +static int LoadLevel_AUTH(FILE *file, int chunk_size, struct LevelInfo *level) +{ + int i; - if (i != tape.length) - Error(ERR_WARN, "level recording file '%s' corrupted", filename); + for(i=0; iauthor[i] = fgetc(file); + level->author[MAX_LEVEL_NAME_LEN] = 0; - tape.length_seconds = GetTapeLength(); + return chunk_size; } -void SaveLevelTape(int level_nr) +static int LoadLevel_CONT(FILE *file, int chunk_size, struct LevelInfo *level) { - int i; - char filename[MAX_FILENAME_LEN]; - FILE *file; - boolean new_tape = TRUE; + int i, x, y; + int header_size = 4; + int content_size = MAX_ELEMENT_CONTENTS * 3 * 3; + int chunk_size_expected = header_size + content_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 + /* 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. */ - /* Testen, ob bereits eine Aufnahme existiert */ - if ((file=fopen(filename,"r"))) - { - new_tape = FALSE; - fclose(file); - - if (!Request("Replace old tape ?",REQ_ASK)) - return; - } + if (level->encoding_16bit_field && level->file_version >= FILE_VERSION_2_0) + chunk_size_expected += content_size; - if (!(file=fopen(filename,"w"))) + if (chunk_size_expected != chunk_size) { - Error(ERR_WARN, "cannot save level recording file '%s'", filename); - return; + ReadUnusedBytesFromFile(file, chunk_size); + return chunk_size_expected; } - fputs(LEVELREC_COOKIE,file); /* Formatkennung */ - fputc(0x0a,file); + 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; +} - 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); +static int LoadLevel_BODY(FILE *file, int chunk_size, struct LevelInfo *level) +{ + int x, y; + int chunk_size_expected = level->fieldx * level->fieldy; - fputc((tape.date >> 24) & 0xff,file); - fputc((tape.date >> 16) & 0xff,file); - fputc((tape.date >> 8) & 0xff,file); - fputc((tape.date >> 0) & 0xff,file); + /* 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. */ - fputc((tape.length >> 24) & 0xff,file); - fputc((tape.length >> 16) & 0xff,file); - fputc((tape.length >> 8) & 0xff,file); - fputc((tape.length >> 0) & 0xff,file); + if (level->encoding_16bit_field && level->file_version >= FILE_VERSION_2_0) + chunk_size_expected *= 2; - 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; } -boolean CreateNewScoreFile() +static int LoadLevel_CNT2(FILE *file, int chunk_size, struct LevelInfo *level) { - 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); - - if (!(file=fopen(filename,"w"))) - return(FALSE); - - for(i=0;i MAX_ELEMENT_CONTENTS) + num_contents = STD_ELEMENT_CONTENTS; + + if (element == EL_MAMPFER) + { + level->num_yam_contents = num_contents; - fputs(SCORE_COOKIE,file); /* Formatkennung */ - for(i=0;iyam_content[i][x][y] = content_array[i][x][y]; + } + else if (element == EL_AMOEBE_BD) { - for(j=0;jamoeba_content = content_array[0][0][0]; + } + else + { + Error(ERR_WARN, "cannot load content for element '%d'", element); } - fclose(file); - chmod(filename, SCORE_PERMS); - return(TRUE); + return chunk_size; } -void LoadScore(int level_nr) +void LoadLevel(int level_nr) { - int i,j; - 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/%s", - level_directory,leveldir[leveldir_nr].filename,SCORE_FILENAME); + /* always start with reliable default values */ + setLevelInfoToDefaults(); - if (!(file = fopen(filename,"r"))) + if (!(file = fopen(filename, MODE_READ))) { - if (!CreateNewScoreFile()) - Error(ERR_WARN, "cannot create score file '%s'", filename); - else if (!(file = fopen(filename,"r"))) - Error(ERR_WARN, "cannot read score for level %d", level_nr); + Error(ERR_WARN, "cannot read level '%s' - creating new level", filename); + return; } - if (file) + getFileChunkBE(file, chunk_name, NULL); + if (strcmp(chunk_name, "RND1") == 0) { - fgets(cookie,SCORE_COOKIE_LEN,file); - if (strcmp(cookie,SCORE_COOKIE)) /* ungültiges Format? */ + getFile32BitBE(file); /* not used */ + + getFileChunkBE(file, chunk_name, NULL); + if (strcmp(chunk_name, "CAVE") != 0) { - Error(ERR_WARN, "wrong format of score file '%s'", filename); + Error(ERR_WARN, "unknown format of level file '%s'", filename); fclose(file); - file = NULL; + return; } } - - if (file) + else /* check for pre-2.0 file format with cookie string */ { - fseek(file, - SCORE_COOKIE_LEN-1+level_nr*(MAX_SCORE_ENTRIES*(MAX_NAMELEN+2)), - SEEK_SET); - for(i=0;i 0 && cookie[strlen(cookie) - 1] == '\n') + cookie[strlen(cookie) - 1] = '\0'; + + if (!checkCookieString(cookie, LEVEL_COOKIE_TMPL)) { - for(j=0;jfile_version); + putFileVersion(file, level->game_version); +} -#if 0 +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 LoadJoystickData() +static void SaveLevel_AUTH(FILE *file, struct LevelInfo *level) { int i; - char cookie[256]; - FILE *file; - if (joystick_status==JOYSTICK_OFF) - return; + for(i=0; iauthor[i], file); +} -#ifndef MSDOS - if (!(file=fopen(JOYDAT_FILE,"r"))) - return; +#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 - fscanf(file,"%s",cookie); - if (strcmp(cookie,JOYSTICK_COOKIE)) /* ungültiges Format? */ +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) { - Error(ERR_WARN, "wrong format of joystick file '%s'", JOYDAT_FILE); - fclose(file); - return; + num_contents = level->num_yam_contents; + content_xsize = 3; + content_ysize = 3; + + for(i=0; iyam_content[i][x][y]; } - - for(i=0;i<2;i++) + else if (element == EL_AMOEBE_BD) { - fscanf(file,"%s",cookie); - fscanf(file, "%d %d %d \n", - &joystick[i].xleft, &joystick[i].xmiddle, &joystick[i].xright); - fscanf(file, "%d %d %d \n", - &joystick[i].yupper, &joystick[i].ymiddle, &joystick[i].ylower); + num_contents = 1; + content_xsize = 1; + content_ysize = 1; + + for(i=0; iamoeba_content; } - fclose(file); + else + { + /* chunk header already written -- write empty chunk data */ + WriteUnusedBytesToFile(file, LEVEL_CHUNK_CNT2_SIZE); - CheckJoystickData(); -#else - load_joystick_data(JOYDAT_FILE); -#endif + 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; -/* ------------------------------------------------------------------------- */ -/* new setup functions */ -/* ------------------------------------------------------------------------- */ - -#define MAX_LINE_LEN 1000 -#define MAX_SETUP_TOKEN_LEN 100 -#define MAX_SETUP_VALUE_LEN 100 - -#define TOKEN_STR_FILE_IDENTIFIER "file_identifier" -#define TOKEN_STR_LAST_LEVEL_SERIES "last_level_series" -#define TOKEN_STR_ALIAS_NAME "alias_name" - -#define TOKEN_STR_PLAYER_PREFIX "player_" -#define TOKEN_VALUE_POSITION 30 -#define TOKEN_INVALID -1 -#define TOKEN_IGNORE -99 - -#define SETUP_TOKEN_ALIAS_NAME 100 - -#define SETUP_TOKEN_SOUND 0 -#define SETUP_TOKEN_SOUND_LOOPS 1 -#define SETUP_TOKEN_SOUND_MUSIC 2 -#define SETUP_TOKEN_SOUND_SIMPLE 3 -#define SETUP_TOKEN_TOONS 4 -#define SETUP_TOKEN_DOUBLE_BUFFERING 5 -#define SETUP_TOKEN_SCROLL_DELAY 6 -#define SETUP_TOKEN_SOFT_SCROLLING 7 -#define SETUP_TOKEN_FADING 8 -#define SETUP_TOKEN_AUTORECORD 9 -#define SETUP_TOKEN_QUICK_DOORS 10 -#define SETUP_TOKEN_ALIAS_NAMES 11 - -#define SETUP_TOKEN_USE_JOYSTICK 12 -#define SETUP_TOKEN_JOY_DEVICE_NAME 13 -#define SETUP_TOKEN_JOY_XLEFT 14 -#define SETUP_TOKEN_JOY_XMIDDLE 15 -#define SETUP_TOKEN_JOY_XRIGHT 16 -#define SETUP_TOKEN_JOY_YUPPER 17 -#define SETUP_TOKEN_JOY_YMIDDLE 18 -#define SETUP_TOKEN_JOY_YLOWER 19 -#define SETUP_TOKEN_JOY_SNAP 20 -#define SETUP_TOKEN_JOY_BOMB 21 -#define SETUP_TOKEN_KEY_LEFT 22 -#define SETUP_TOKEN_KEY_RIGHT 23 -#define SETUP_TOKEN_KEY_UP 24 -#define SETUP_TOKEN_KEY_DOWN 25 -#define SETUP_TOKEN_KEY_SNAP 26 -#define SETUP_TOKEN_KEY_BOMB 27 - -#define NUM_SETUP_TOKENS 28 - -#define FIRST_GLOBAL_SETUP_TOKEN SETUP_TOKEN_SOUND -#define LAST_GLOBAL_SETUP_TOKEN SETUP_TOKEN_ALIAS_NAMES - -#define FIRST_PLAYER_SETUP_TOKEN SETUP_TOKEN_USE_JOYSTICK -#define LAST_PLAYER_SETUP_TOKEN SETUP_TOKEN_KEY_BOMB - -#define TYPE_BOOLEAN 1 -#define TYPE_SWITCH 2 -#define TYPE_KEYSYM 3 -#define TYPE_INTEGER 4 -#define TYPE_STRING 5 + /* check amoeba content for 16-bit elements */ + level.encoding_16bit_amoeba = FALSE; + if (level.amoeba_content > 255) + level.encoding_16bit_amoeba = TRUE; -static struct SetupInfo si; -static struct SetupInputInfo sii; -static struct -{ - int type; - void *value; - char *text; -} token_info[] = -{ - { TYPE_SWITCH, &si.sound, "sound" }, - { TYPE_SWITCH, &si.sound_loops, "repeating_sound_loops" }, - { TYPE_SWITCH, &si.sound_music, "background_music" }, - { TYPE_SWITCH, &si.sound_simple, "simple_sound_effects" }, - { TYPE_SWITCH, &si.toons, "toons" }, - { TYPE_SWITCH, &si.double_buffering, "double_buffering" }, - { TYPE_SWITCH, &si.scroll_delay, "scroll_delay" }, - { TYPE_SWITCH, &si.soft_scrolling, "soft_scrolling" }, - { TYPE_SWITCH, &si.fading, "screen_fading" }, - { TYPE_SWITCH, &si.autorecord, "automatic_tape_recording" }, - { TYPE_SWITCH, &si.quick_doors, "quick_doors" }, - { TYPE_STRING, &si.alias_name, "alias_name" }, - - /* for each player: */ - { TYPE_BOOLEAN, &sii.use_joystick, ".use_joystick" }, - { TYPE_STRING, &sii.joy.device_name, ".joy.device_name" }, - { TYPE_INTEGER, &sii.joy.xleft, ".joy.xleft" }, - { TYPE_INTEGER, &sii.joy.xmiddle, ".joy.xmiddle" }, - { TYPE_INTEGER, &sii.joy.xright, ".joy.xright" }, - { TYPE_INTEGER, &sii.joy.yupper, ".joy.yupper" }, - { TYPE_INTEGER, &sii.joy.ymiddle, ".joy.ymiddle" }, - { TYPE_INTEGER, &sii.joy.ylower, ".joy.ylower" }, - { TYPE_INTEGER, &sii.joy.snap, ".joy.snap_field" }, - { TYPE_INTEGER, &sii.joy.bomb, ".joy.place_bomb" }, - { TYPE_KEYSYM, &sii.key.left, ".key.move_left" }, - { TYPE_KEYSYM, &sii.key.right, ".key.move_right" }, - { TYPE_KEYSYM, &sii.key.up, ".key.move_up" }, - { TYPE_KEYSYM, &sii.key.down, ".key.move_down" }, - { TYPE_KEYSYM, &sii.key.snap, ".key.snap_field" }, - { TYPE_KEYSYM, &sii.key.bomb, ".key.place_bomb" } -}; + body_chunk_size = + level.fieldx * level.fieldy * (level.encoding_16bit_field ? 2 : 1); -static char *string_tolower(char *s) -{ - static char s_lower[100]; - int i; + putFileChunkBE(file, "RND1", CHUNK_SIZE_UNDEFINED); + putFileChunkBE(file, "CAVE", CHUNK_SIZE_NONE); - if (strlen(s) >= 100) - return s; + putFileChunkBE(file, "VERS", FILE_VERS_CHUNK_SIZE); + SaveLevel_VERS(file, &level); - strcpy(s_lower, s); + putFileChunkBE(file, "HEAD", LEVEL_HEADER_SIZE); + SaveLevel_HEAD(file, &level); - for (i=0; ifile_version = getFileVersion(file); + tape->game_version = getFileVersion(file); + return chunk_size; +} -static char *getFormattedSetupEntry(char *token, char *value) +static int LoadTape_HEAD(FILE *file, int chunk_size, struct TapeInfo *tape) { int i; - static char entry[MAX_LINE_LEN]; - - sprintf(entry, "%s:", token); - for (i=strlen(entry); irandom_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; -#if 0 + /* since version 1.2, tapes store which players participate in the tape */ + tape->num_participating_players = 0; + for(i=0; iplayer_participates[i] = FALSE; -static char *getSetupEntry(char *prefix, int token_nr, int token_value) -{ - int i; - static char entry[MAX_LINE_LEN]; + if (store_participating_players & (1 << i)) + { + tape->player_participates[i] = TRUE; + tape->num_participating_players++; + } + } - sprintf(entry, "%s%s:", prefix, getSetupToken(token_nr)); - for (i=strlen(entry); i 0) + tape->engine_version = engine_version; + } - return entry; + return chunk_size; } -static char *getSetupEntryWithComment(char *prefix,int token_nr, KeySym keysym) +static int LoadTape_BODY(FILE *file, int chunk_size, struct TapeInfo *tape) { - int i; - static char entry[MAX_LINE_LEN]; - char *keyname = getKeyNameFromKeySym(keysym); - - sprintf(entry, "%s%s:", prefix, getSetupToken(token_nr)); - for (i=strlen(entry); inum_participating_players + 1) * tape->length; + + if (chunk_size_expected != chunk_size) { - strcat(entry, "# "); - strcat(entry, keyname); + ReadUnusedBytesFromFile(file, chunk_size); + return chunk_size_expected; } - return entry; -} - -#endif + for(i=0; ilength; i++) + { + if (i >= MAX_TAPELEN) + break; + for(j=0; jpos[i].action[j] = MV_NO_MOVING; -static void freeSetupFileList(struct SetupFileList *setup_file_list) -{ - if (!setup_file_list) - return; + if (tape->player_participates[j]) + tape->pos[i].action[j] = fgetc(file); + } - if (setup_file_list->token) - free(setup_file_list->token); - if (setup_file_list->value) - free(setup_file_list->value); - if (setup_file_list->next) - freeSetupFileList(setup_file_list->next); - free(setup_file_list); -} + tape->pos[i].delay = fgetc(file); -static struct SetupFileList *newSetupFileList(char *token, char *value) -{ - struct SetupFileList *new = checked_malloc(sizeof(struct SetupFileList)); + if (tape->file_version == FILE_VERSION_1_0) + { + /* eliminate possible diagonal moves in old tapes */ + /* this is only for backward compatibility */ - new->token = checked_malloc(strlen(token) + 1); - strcpy(new->token, token); + byte joy_dir[4] = { JOY_LEFT, JOY_RIGHT, JOY_UP, JOY_DOWN }; + byte action = tape->pos[i].action[0]; + int k, num_moves = 0; - new->value = checked_malloc(strlen(value) + 1); - strcpy(new->value, value); + 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++; + } + } - new->next = NULL; + if (num_moves > 1) + { + num_moves--; + i += num_moves; + tape->length += num_moves; + } + } + else if (tape->file_version < FILE_VERSION_2_0) + { + /* convert pre-2.0 tapes to new tape format */ - return new; -} + if (tape->pos[i].delay > 1) + { + /* action part */ + tape->pos[i + 1] = tape->pos[i]; + tape->pos[i + 1].delay = 1; -static char *getSetupFileListEntry(struct SetupFileList *setup_file_list, - char *token) -{ - if (!setup_file_list) - return NULL; + /* delay part */ + for(j=0; jpos[i].action[j] = MV_NO_MOVING; + tape->pos[i].delay--; - if (strcmp(setup_file_list->token, token) == 0) - return setup_file_list->value; - else - return getSetupFileListEntry(setup_file_list->next, token); -} + i++; + tape->length++; + } + } -boolean setSetupFileListEntry(struct SetupFileList *setup_file_list, - char *token, char *value) -{ - if (!setup_file_list) - return FALSE; + if (feof(file)) + break; + } - if (strcmp(setup_file_list->token, token) == 0) - { - free(setup_file_list->value); - setup_file_list->value = checked_malloc(strlen(value) + 1); - strcpy(setup_file_list->value, value); + if (i != tape->length) + chunk_size = (tape->num_participating_players + 1) * i; - return TRUE; - } - else - return setSetupFileListEntry(setup_file_list->next, token, value); + return chunk_size; } -void updateSetupFileListEntry(struct SetupFileList *setup_file_list, - char *token, char *value) +void LoadTape(int level_nr) { - if (!setup_file_list) + char *filename = getTapeFilename(level_nr); + char cookie[MAX_LINE_LEN]; + char chunk_name[CHUNK_ID_LEN + 1]; + FILE *file; + int chunk_size; + + /* always start with reliable default values */ + setTapeInfoToDefaults(); + + if (!(file = fopen(filename, MODE_READ))) return; - if (getSetupFileListEntry(setup_file_list, token) != NULL) - setSetupFileListEntry(setup_file_list, token, value); - else + getFileChunkBE(file, chunk_name, NULL); + if (strcmp(chunk_name, "RND1") == 0) { - struct SetupFileList *list_entry = setup_file_list; + getFile32BitBE(file); /* not used */ - while (list_entry->next) - list_entry = list_entry->next; - - list_entry->next = newSetupFileList(token, value); + getFileChunkBE(file, chunk_name, NULL); + if (strcmp(chunk_name, "TAPE") != 0) + { + Error(ERR_WARN, "unknown format of tape file '%s'", filename); + fclose(file); + return; + } } -} - -#ifdef DEBUG -static void printSetupFileList(struct SetupFileList *setup_file_list) -{ - if (!setup_file_list) - return; - - printf("token: '%s'\n", setup_file_list->token); - printf("value: '%s'\n", setup_file_list->value); + 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'; - printSetupFileList(setup_file_list->next); -} -#endif + if (!checkCookieString(cookie, TAPE_COOKIE_TMPL)) + { + Error(ERR_WARN, "unknown format of tape file '%s'", filename); + fclose(file); + return; + } -static struct SetupFileList *loadSetupFileList(char *filename) -{ - int line_len; - char line[MAX_LINE_LEN]; - char *token, *value, *line_ptr; - struct SetupFileList *setup_file_list = newSetupFileList("", ""); - struct SetupFileList *first_valid_list_entry; + if ((tape.file_version = getFileVersionFromCookieString(cookie)) == -1) + { + Error(ERR_WARN, "unsupported version of tape file '%s'", filename); + fclose(file); + return; + } - FILE *file; + /* pre-2.0 tape files have no game version, so use file version here */ + tape.game_version = tape.file_version; + } - if (!(file = fopen(filename, "r"))) + if (tape.file_version < FILE_VERSION_1_2) { - Error(ERR_WARN, "cannot open setup file '%s'", filename); - return NULL; + /* 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(!feof(file)) + else { - /* read next line of input file */ - if (!fgets(line, MAX_LINE_LEN, file)) - break; - - /* cut trailing comment or whitespace from input line */ - for (line_ptr = line; *line_ptr; line_ptr++) + static struct { - if (*line_ptr == '#' || *line_ptr == '\n') - { - *line_ptr = '\0'; - break; - } + char *name; + int size; + int (*loader)(FILE *, int, struct TapeInfo *); } + chunk_info[] = + { + { "VERS", FILE_VERS_CHUNK_SIZE, LoadTape_VERS }, + { "HEAD", TAPE_HEADER_SIZE, LoadTape_HEAD }, + { "BODY", -1, LoadTape_BODY }, + { NULL, 0, NULL } + }; - /* cut trailing whitespaces from input line */ - for (line_ptr = &line[strlen(line)]; line_ptr > line; line_ptr--) - if ((*line_ptr == ' ' || *line_ptr == '\t') && line_ptr[1] == '\0') - *line_ptr = '\0'; - - /* ignore empty lines */ - if (*line == '\0') - continue; - - line_len = strlen(line); + while (getFileChunkBE(file, chunk_name, &chunk_size)) + { + int i = 0; - /* cut leading whitespaces from token */ - for (token = line; *token; token++) - if (*token != ' ' && *token != '\t') - break; + while (chunk_info[i].name != NULL && + strcmp(chunk_name, chunk_info[i].name) != 0) + i++; - /* find end of token */ - for (line_ptr = token; *line_ptr; line_ptr++) - { - if (*line_ptr == ' ' || *line_ptr == '\t' || *line_ptr == ':') + if (chunk_info[i].name == NULL) { - *line_ptr = '\0'; - break; + Error(ERR_WARN, "unknown chunk '%s' in tape file '%s'", + chunk_name, filename); + ReadUnusedBytesFromFile(file, chunk_size); + } + else if (chunk_info[i].size != -1 && + chunk_info[i].size != chunk_size) + { + Error(ERR_WARN, "wrong size (%d) of chunk '%s' in tape file '%s'", + chunk_size, chunk_name, filename); + ReadUnusedBytesFromFile(file, chunk_size); + } + else + { + /* call function to load this tape chunk */ + int chunk_size_expected = + (chunk_info[i].loader)(file, chunk_size, &tape); + + /* the size of some chunks cannot be checked before reading other + chunks first (like "HEAD" and "BODY") that contain some header + information, so check them here */ + if (chunk_size_expected != chunk_size) + { + Error(ERR_WARN, "wrong size (%d) of chunk '%s' in tape file '%s'", + chunk_size, chunk_name, filename); + } } } + } - if (line_ptr < line + line_len) - value = line_ptr + 1; - else - value = "\0"; + fclose(file); - /* cut leading whitespaces from value */ - for (; *value; value++) - if (*value != ' ' && *value != '\t') - break; + tape.length_seconds = GetTapeLength(); +} - if (*token && *value) - updateSetupFileListEntry(setup_file_list, token, value); - } +static void SaveTape_VERS(FILE *file, struct TapeInfo *tape) +{ + putFileVersion(file, tape->file_version); + putFileVersion(file, tape->game_version); +} - fclose(file); +static void SaveTape_HEAD(FILE *file, struct TapeInfo *tape) +{ + int i; + byte store_participating_players = 0; - first_valid_list_entry = setup_file_list->next; + /* set bits for participating players for compact storage */ + for(i=0; iplayer_participates[i]) + store_participating_players |= (1 << i); - /* free empty list header */ - setup_file_list->next = NULL; - freeSetupFileList(setup_file_list); + putFile32BitBE(file, tape->random_seed); + putFile32BitBE(file, tape->date); + putFile32BitBE(file, tape->length); - if (!first_valid_list_entry) - Error(ERR_WARN, "setup file is empty"); + fputc(store_participating_players, file); - return first_valid_list_entry; + /* unused bytes not at the end here for 4-byte alignment of engine_version */ + WriteUnusedBytesToFile(file, TAPE_HEADER_UNUSED); + + putFileVersion(file, tape->engine_version); } -static void checkSetupFileListIdentifier(struct SetupFileList *setup_file_list, - char *identifier) +static void SaveTape_BODY(FILE *file, struct TapeInfo *tape) { - if (!setup_file_list) - return; + int i, j; - if (strcmp(setup_file_list->token, TOKEN_STR_FILE_IDENTIFIER) == 0) + for(i=0; ilength; i++) { - if (strcmp(setup_file_list->value, identifier) != 0) - { - Error(ERR_WARN, "setup file has wrong version"); - return; - } - else - return; - } + for(j=0; jplayer_participates[j]) + fputc(tape->pos[i].action[j], file); - if (setup_file_list->next) - checkSetupFileListIdentifier(setup_file_list->next, identifier); - else - { - Error(ERR_WARN, "setup file has no version information"); - return; + fputc(tape->pos[i].delay, file); } } -static void decodeSetupFileList(struct SetupFileList *setup_file_list) +void SaveTape(int level_nr) { int i; - int token_nr = TOKEN_INVALID; - int player_nr = 0; - char *token; - char *token_value; - boolean token_boolean_value; - int token_integer_value; - int token_player_prefix_len; - - if (!setup_file_list) - return; - - token = setup_file_list->token; - token_value = setup_file_list->value; - token_boolean_value = get_string_boolean_value(token_value); - token_integer_value = get_string_integer_value(token_value); + char *filename = getTapeFilename(level_nr); + FILE *file; + boolean new_tape = TRUE; + int num_participating_players = 0; + int body_chunk_size; - token_player_prefix_len = strlen(TOKEN_STR_PLAYER_PREFIX); + InitTapeDirectory(leveldir_current->filename); - if (strncmp(token, TOKEN_STR_PLAYER_PREFIX, - token_player_prefix_len) == 0) + /* if a tape still exists, ask to overwrite it */ + if (access(filename, F_OK) == 0) { - token += token_player_prefix_len; - - if (*token >= '0' && *token <= '9') - { - player_nr = ((int)(*token - '0') - 1 + MAX_PLAYERS) % MAX_PLAYERS; - token++; - } + new_tape = FALSE; + if (!Request("Replace old tape ?", REQ_ASK)) + return; } - for (i=0; inext); -} + putFileChunkBE(file, "BODY", body_chunk_size); + SaveTape_BODY(file, &tape); -int getLevelSeriesNrFromLevelSeriesName(char *level_series_name) -{ - int i; + fclose(file); - if (!level_series_name) - return 0; + SetFilePermissions(filename, PERMS_PRIVATE); - for (i=0; ilevel_nr); + return; + } - token_value = getSetupFileListEntry(level_setup_list, level_series_name); + printf("\n"); + printf("-------------------------------------------------------------------------------\n"); + printf("Tape of Level %d (file version %06d, game version %06d)\n", + tape->level_nr, tape->file_version, tape->game_version); + printf("-------------------------------------------------------------------------------\n"); - if (token_value) + for(i=0; ilength; i++) { - int highest_level_nr = leveldir[level_series_nr].levels - 1; + if (i >= MAX_TAPELEN) + break; - last_level_nr = atoi(token_value); + 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' : ' ')); + } + } - if (last_level_nr < 0) - last_level_nr = 0; - if (last_level_nr > highest_level_nr) - last_level_nr = highest_level_nr; + printf("(%03d)\n", tape->pos[i].delay); } - return last_level_nr; + printf("-------------------------------------------------------------------------------\n"); } -void LoadSetup() + +/* ========================================================================= */ +/* score file functions */ +/* ========================================================================= */ + +void LoadScore(int level_nr) { int i; - char filename[MAX_FILENAME_LEN]; - struct SetupFileList *setup_file_list = NULL; - - /* always start with reliable default setup values */ - - setup.sound = TRUE; - setup.sound_loops = FALSE; - setup.sound_music = FALSE; - setup.sound_simple = FALSE; - setup.toons = TRUE; - setup.double_buffering = TRUE; - setup.direct_draw = !setup.double_buffering; - setup.scroll_delay = FALSE; - setup.soft_scrolling = TRUE; - setup.fading = FALSE; - setup.autorecord = FALSE; - setup.quick_doors = FALSE; - - strncpy(setup.login_name, GetLoginName(), MAX_NAMELEN-1); - setup.login_name[MAX_NAMELEN-1] = '\0'; - strncpy(setup.alias_name, GetLoginName(), MAX_NAMELEN-1); - setup.alias_name[MAX_NAMELEN-1] = '\0'; + char *filename = getScoreFilename(level_nr); + char cookie[MAX_LINE_LEN]; + char line[MAX_LINE_LEN]; + char *line_ptr; + FILE *file; - for (i=0; i 0 && cookie[strlen(cookie) - 1] == '\n') + cookie[strlen(cookie) - 1] = '\0'; - if (setup_file_list) + if (!checkCookieString(cookie, SCORE_COOKIE)) { + Error(ERR_WARN, "unknown format of score file '%s'", filename); + fclose(file); + return; + } -#if 0 - printSetupFileList(setup_file_list); -#endif - - checkSetupFileListIdentifier(setup_file_list, SETUP_COOKIE); - decodeSetupFileList(setup_file_list); + for(i=0; ifilename); - if (!(file = fopen(filename, "w"))) + if (!(file = fopen(filename, MODE_WRITE))) { - Error(ERR_WARN, "cannot write setup file '%s'", filename); + Error(ERR_WARN, "cannot save score for level %d", level_nr); return; } - fprintf(file, "%s: %s\n", - TOKEN_STR_FILE_IDENTIFIER, SETUP_COOKIE); - - fprintf(file, "\n"); - - fprintf(file, "%s\n", - getSetupEntry("", SETUP_TOKEN_SOUND, - setup.sound)); - fprintf(file, "%s\n", - getSetupEntry("", SETUP_TOKEN_SOUND_LOOPS, - setup.sound_loops)); - fprintf(file, "%s\n", - getSetupEntry("", SETUP_TOKEN_SOUND_MUSIC, - setup.sound_music)); - fprintf(file, "%s\n", - getSetupEntry("", SETUP_TOKEN_SOUND_SIMPLE, - setup.sound_simple)); - fprintf(file, "%s\n", - getSetupEntry("", SETUP_TOKEN_TOONS, - setup.toons)); - fprintf(file, "%s\n", - getSetupEntry("", SETUP_TOKEN_DIRECT_DRAW, - setup.direct_draw)); - fprintf(file, "%s\n", - getSetupEntry("", SETUP_TOKEN_SCROLL_DELAY, - setup.scroll_delay)); - fprintf(file, "%s\n", - getSetupEntry("", SETUP_TOKEN_SOFT_SCROLLING, - setup.soft_scrolling)); - fprintf(file, "%s\n", - getSetupEntry("", SETUP_TOKEN_FADING, - setup.fading)); - fprintf(file, "%s\n", - getSetupEntry("", SETUP_TOKEN_AUTORECORD, - setup.autorecord)); - fprintf(file, "%s\n", - getSetupEntry("", SETUP_TOKEN_QUICK_DOORS, - setup.quick_doors)); - - fprintf(file, "\n"); - - fprintf(file, "%s\n", - getFormattedSetupEntry(TOKEN_STR_ALIAS_NAME, - setup.alias_name)); - - 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; - default: - break; + 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); } - - return entry; } -void SaveSetup() +static void decodeSetupFileList(struct SetupFileList *setup_file_list) { int i, pnr; - char filename[MAX_FILENAME_LEN]; - FILE *file; - - sprintf(filename, "%s/%s", SETUP_PATH, SETUP_FILENAME); - if (!(file = fopen(filename, "w"))) - { - Error(ERR_WARN, "cannot write setup file '%s'", filename); + if (!setup_file_list) return; - } - - fprintf(file, "%s: %s\n", - TOKEN_STR_FILE_IDENTIFIER, SETUP_COOKIE); - - fprintf(file, "\n"); - - for (i=FIRST_GLOBAL_SETUP_TOKEN; i<=LAST_GLOBAL_SETUP_TOKEN; i++) - fprintf(file, "%s\n", getSetupLine("", i)); + /* 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); - checkSetupFileListIdentifier(level_setup_list, LEVELSETUP_COOKIE); + strcpy(new_name, setup.player_name); + free(setup.player_name); + setup.player_name = new_name; + } } else Error(ERR_WARN, "using default setup values"); } -void SaveLevelSetup() +void SaveSetup() { - char filename[MAX_FILENAME_LEN]; - struct SetupFileList *list_entry = level_setup_list; + char *filename = getSetupFilename(); FILE *file; + int i, pnr; - updateSetupFileListEntry(level_setup_list, - TOKEN_STR_LAST_LEVEL_SERIES, - leveldir[leveldir_nr].filename); - - updateSetupFileListEntry(level_setup_list, - leveldir[leveldir_nr].filename, - int2str(level_nr, 0)); - - sprintf(filename, "%s/%s", SETUP_PATH, LEVELSETUP_FILENAME); + InitUserDataDirectory(); - if (!(file = fopen(filename, "w"))) + if (!(file = fopen(filename, MODE_WRITE))) { Error(ERR_WARN, "cannot write setup file '%s'", filename); return; } - fprintf(file, "%s: %s\n\n", - TOKEN_STR_FILE_IDENTIFIER, LEVELSETUP_COOKIE); + fprintf(file, "%s\n", getFormattedSetupEntry(TOKEN_STR_FILE_IDENTIFIER, + getCookie("SETUP"))); + fprintf(file, "\n"); - while (list_entry) + /* global setup */ + si = setup; + for (i=0; itoken, TOKEN_STR_FILE_IDENTIFIER) != 0) - fprintf(file, "%s\n", - getFormattedSetupEntry(list_entry->token, list_entry->value)); + fprintf(file, "%s\n", getSetupLine(global_setup_tokens, "", i)); /* just to make things nicer :) */ - if (strcmp(list_entry->token, TOKEN_STR_LAST_LEVEL_SERIES) == 0) + if (i == SETUP_TOKEN_PLAYER_NAME || i == SETUP_TOKEN_GRAPHICS_SET - 1) fprintf(file, "\n"); + } + + /* shortcut setup */ + ssi = setup.shortcut; + fprintf(file, "\n"); + for (i=0; inext; + sii = setup.input[pnr]; + for (i=0; i