X-Git-Url: https://git.artsoft.org/?a=blobdiff_plain;f=src%2Ffiles.c;h=71d01e945fd9f35c3d38ee7736d2e38e2f1d44a0;hb=720b0a62c8af0585e9517ed7a98ea336304c02e4;hp=21ed3ca17f8614be3770784740da65e1be5baf7c;hpb=2357c391b4a587709627cc30316734b3c83c8134;p=rocksndiamonds.git diff --git a/src/files.c b/src/files.c index 21ed3ca1..ebdd7afd 100644 --- a/src/files.c +++ b/src/files.c @@ -1,1574 +1,2145 @@ /*********************************************************** -* 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 "init.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 13 /* 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 LEVEL_CPART_CUS3_SIZE 102 /* size of CUS3 chunk part */ +#define LEVEL_CPART_CUS3_UNUSED 16 /* unused CUS3 bytes / part */ +#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); - } +#define LEVEL_CHUNK_CUS3_SIZE(x) (2 + x * LEVEL_CPART_CUS3_SIZE) - 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); - } +/* 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" - num_leveldirs = 0; - leveldir_nr = 0; - for(i=0;iauthor, ANONYMOUS_NAME) != 0) + { + strncpy(level.author, leveldir_current->author, MAX_LEVEL_AUTHOR_LEN); + level.author[MAX_LEVEL_AUTHOR_LEN] = '\0'; + } 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; + default: + /* keep default value */ + break; + } } - else +} + +static int checkLevelElement(int element) +{ + if (element >= NUM_FILE_ELEMENTS) { - 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;ifile_version = getFileVersion(file); + level->game_version = getFileVersion(file); - sprintf(filename,"%s/%s/%d", - level_directory,leveldir[leveldir_nr].filename,level_nr); + return chunk_size; +} - if (!(file=fopen(filename,"w"))) - { - Error(ERR_WARN, "cannot save level file '%s'", filename); - return; - } +static int LoadLevel_HEAD(FILE *file, int chunk_size, struct LevelInfo *level) +{ + int i, x, y; - 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;ifieldx = fgetc(file); + lev_fieldy = level->fieldy = fgetc(file); - fclose(file); + level->time = getFile16BitBE(file); + level->gems_needed = getFile16BitBE(file); - chmod(filename, LEVEL_PERMS); + for(i=0; iname[i] = fgetc(file); + level->name[MAX_LEVEL_NAME_LEN] = 0; + + for(i=0; iscore[i] = fgetc(file); + + level->num_yamyam_contents = STD_ELEMENT_CONTENTS; + for(i=0; iyamyam_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); + + level->use_custom_template = (fgetc(file) == 1 ? TRUE : FALSE); + + ReadUnusedBytesFromFile(file, LEVEL_HEADER_UNUSED); + + return chunk_size; } -void LoadLevelTape(int level_nr) +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; - 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); -#endif - if ((file=fopen(filename,"r"))) + for(i=0; iauthor[i] = fgetc(file); + level->author[MAX_LEVEL_NAME_LEN] = 0; + + 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) { - 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; - } + ReadUnusedBytesFromFile(file, chunk_size); + return chunk_size_expected; } - if (!file) - return; + for(y=0; yfieldy; y++) + for(x=0; xfieldx; x++) + Feld[x][y] = Ur[x][y] = + checkLevelElement(level->encoding_16bit_field ? + getFile16BitBE(file) : fgetc(file)); + return chunk_size; +} - 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); +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; - tape.level_nr = level_nr; - tape.counter = 0; - tape.changed = FALSE; + /* 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. */ - tape.recording = FALSE; - tape.playing = FALSE; - tape.pausing = FALSE; + if (level->encoding_16bit_field && level->file_version >= FILE_VERSION_2_0) + chunk_size_expected += content_size; - for(i=0;i= MAX_TAPELEN) - break; + fgetc(file); + level->num_yamyam_contents = fgetc(file); + fgetc(file); + fgetc(file); + + /* correct invalid number of content fields -- should never happen */ + if (level->num_yamyam_contents < 1 || + level->num_yamyam_contents > MAX_ELEMENT_CONTENTS) + level->num_yamyam_contents = STD_ELEMENT_CONTENTS; + + for(i=0; iyamyam_content[i][x][y] = + checkLevelElement(level->encoding_16bit_field ? + getFile16BitBE(file) : fgetc(file)); + return chunk_size; +} - for(j=0; j0) - { - tape.pos[i].action[j] = MV_NO_MOVING; - continue; - } - tape.pos[i].action[j] = fgetc(file); - } +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_YAMYAM) + { + level->num_yamyam_contents = num_contents; + + for(i=0; iyamyam_content[i][x][y] = content_array[i][x][y]; + } + else if (element == EL_BD_AMOEBA) + { + level->amoeba_content = content_array[0][0][0]; + } + else + { + Error(ERR_WARN, "cannot load content for element '%d'", element); + } - tape.pos[i].delay = fgetc(file); + return chunk_size; +} - if (feof(file)) - break; +static int LoadLevel_CUS1(FILE *file, int chunk_size, struct LevelInfo *level) +{ + int num_changed_custom_elements = getFile16BitBE(file); + int chunk_size_expected = 2 + num_changed_custom_elements * 6; + int i; + + if (chunk_size_expected != chunk_size) + { + ReadUnusedBytesFromFile(file, chunk_size - 2); + return chunk_size_expected; } - fclose(file); + for (i=0; i < num_changed_custom_elements; i++) + { + int element = getFile16BitBE(file); + int properties = getFile32BitBE(file); - if (i != tape.length) - Error(ERR_WARN, "level recording file '%s' corrupted", filename); + if (IS_CUSTOM_ELEMENT(element)) + Properties[element][EP_BITFIELD_BASE] = properties; + else + Error(ERR_WARN, "invalid custom element number %d", element); + } - tape.length_seconds = GetTapeLength(); + return chunk_size; } -void SaveLevelTape(int level_nr) +static int LoadLevel_CUS2(FILE *file, int chunk_size, struct LevelInfo *level) { + int num_changed_custom_elements = getFile16BitBE(file); + int chunk_size_expected = 2 + num_changed_custom_elements * 4; int i; - char filename[MAX_FILENAME_LEN]; - FILE *file; - boolean new_tape = TRUE; -#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 + if (chunk_size_expected != chunk_size) + { + ReadUnusedBytesFromFile(file, chunk_size - 2); + return chunk_size_expected; + } - /* Testen, ob bereits eine Aufnahme existiert */ - if ((file=fopen(filename,"r"))) + for (i=0; i < num_changed_custom_elements; i++) { - new_tape = FALSE; - fclose(file); + int element = getFile16BitBE(file); + int custom_target_element = getFile16BitBE(file); - if (!Request("Replace old tape ?",REQ_ASK)) - return; + if (IS_CUSTOM_ELEMENT(element)) + element_info[element].change.target_element = custom_target_element; + else + Error(ERR_WARN, "invalid custom element number %d", element); } - if (!(file=fopen(filename,"w"))) + return chunk_size; +} + +static int LoadLevel_CUS3(FILE *file, int chunk_size, struct LevelInfo *level) +{ + int num_changed_custom_elements = getFile16BitBE(file); + int chunk_size_expected = LEVEL_CHUNK_CUS3_SIZE(num_changed_custom_elements); + int i, x, y; + + if (chunk_size_expected != chunk_size) { - Error(ERR_WARN, "cannot save level recording file '%s'", filename); - return; + ReadUnusedBytesFromFile(file, chunk_size - 2); + return chunk_size_expected; } - fputs(LEVELREC_COOKIE,file); /* Formatkennung */ - fputc(0x0a,file); + for (i=0; i < num_changed_custom_elements; i++) + { + int element = getFile16BitBE(file); - 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); + if (!IS_CUSTOM_ELEMENT(element)) + { + Error(ERR_WARN, "invalid custom element number %d", element); - fputc((tape.date >> 24) & 0xff,file); - fputc((tape.date >> 16) & 0xff,file); - fputc((tape.date >> 8) & 0xff,file); - fputc((tape.date >> 0) & 0xff,file); + element = EL_DEFAULT; /* dummy element used for artwork config */ + } - fputc((tape.length >> 24) & 0xff,file); - fputc((tape.length >> 16) & 0xff,file); - fputc((tape.length >> 8) & 0xff,file); - fputc((tape.length >> 0) & 0xff,file); + Properties[element][EP_BITFIELD_BASE] = getFile32BitBE(file); - 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); +} -void LoadJoystickData() +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_EMPTY : + level->yamyam_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_EMPTY : 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); + + fputc((level->use_custom_template ? 1 : 0), file); + + WriteUnusedBytesToFile(file, LEVEL_HEADER_UNUSED); +} + +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; +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); +} + +#if 0 +static void SaveLevel_CONT(FILE *file, struct LevelInfo *level) +{ + int i, x, y; + + fputc(EL_YAMYAM, file); + fputc(level->num_yamyam_contents, file); + fputc(0, file); + fputc(0, file); + + for(i=0; iencoding_16bit_field) + putFile16BitBE(file, level->yamyam_content[i][x][y]); + else + fputc(level->yamyam_content[i][x][y], file); +} +#endif - fscanf(file,"%s",cookie); - if (strcmp(cookie,JOYSTICK_COOKIE)) /* ungültiges Format? */ +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_YAMYAM) { - Error(ERR_WARN, "wrong format of joystick file '%s'", JOYDAT_FILE); - fclose(file); - return; + num_contents = level->num_yamyam_contents; + content_xsize = 3; + content_ysize = 3; + + for(i=0; iyamyam_content[i][x][y]; } - - for(i=0;i<2;i++) + else if (element == EL_BD_AMOEBA) { - 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= 100) - return s; + putFile16BitBE(file, element_info[element].move_pattern); + putFile8Bit(file, element_info[element].move_direction_initial); + putFile8Bit(file, element_info[element].move_stepsize); - strcpy(s_lower, s); + for(y=0; y<3; y++) + for(x=0; x<3; x++) + putFile16BitBE(file, element_info[element].content[x][y]); - for (i=0; i 255) + level.encoding_16bit_field = TRUE; - return atoi(s); -} + /* check yamyam content for 16-bit elements */ + level.encoding_16bit_yamyam = FALSE; + for(i=0; i 255) + level.encoding_16bit_yamyam = TRUE; -static boolean get_string_boolean_value(char *s) -{ - if (strcmp(string_tolower(s), "true") == 0 || - strcmp(string_tolower(s), "yes") == 0 || - strcmp(string_tolower(s), "on") == 0 || - get_string_integer_value(s) == 1) - return TRUE; - else - return FALSE; -} + /* check amoeba content for 16-bit elements */ + level.encoding_16bit_amoeba = FALSE; + if (level.amoeba_content > 255) + level.encoding_16bit_amoeba = TRUE; + /* calculate size of "BODY" chunk */ + body_chunk_size = + level.fieldx * level.fieldy * (level.encoding_16bit_field ? 2 : 1); + /* check for non-standard custom elements and calculate "CUS3" chunk size */ + for (i=0; i < NUM_CUSTOM_ELEMENTS; i++) + if (Properties[EL_CUSTOM_START +i][EP_BITFIELD_BASE] != EP_BITMASK_DEFAULT) + num_changed_custom_elements++; + level_chunk_CUS3_size = LEVEL_CHUNK_CUS3_SIZE(num_changed_custom_elements); -#if 0 + 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); -static char *getSetupToken(int token_nr) + putFileChunkBE(file, "BODY", body_chunk_size); + SaveLevel_BODY(file, &level); + + if (level.encoding_16bit_yamyam || + level.num_yamyam_contents != STD_ELEMENT_CONTENTS) + { + putFileChunkBE(file, "CNT2", LEVEL_CHUNK_CNT2_SIZE); + SaveLevel_CNT2(file, &level, EL_YAMYAM); + } + + if (level.encoding_16bit_amoeba) + { + putFileChunkBE(file, "CNT2", LEVEL_CHUNK_CNT2_SIZE); + SaveLevel_CNT2(file, &level, EL_BD_AMOEBA); + } + + if (num_changed_custom_elements > 0) + { + putFileChunkBE(file, "CUS3", level_chunk_CUS3_size); + SaveLevel_CUS3(file, &level, num_changed_custom_elements); + } + + fclose(file); + + SetFilePermissions(filename, PERMS_PRIVATE); +} + +void DumpLevel(struct LevelInfo *level) { - return token_info[token_nr].text; + printf_line("-", 79); + printf("Level xxx (file version %08d, game version %08d)\n", + level->file_version, level->game_version); + printf_line("-", 79); + + printf("Level Author: '%s'\n", level->author); + printf("Level Title: '%s'\n", level->name); + printf("\n"); + printf("Playfield Size: %d x %d\n", level->fieldx, level->fieldy); + printf("\n"); + printf("Level Time: %d seconds\n", level->time); + printf("Gems needed: %d\n", level->gems_needed); + printf("\n"); + printf("Time for Magic Wall: %d seconds\n", level->time_magic_wall); + printf("Time for Wheel: %d seconds\n", level->time_wheel); + printf("Time for Light: %d seconds\n", level->time_light); + printf("Time for Timegate: %d seconds\n", level->time_timegate); + printf("\n"); + printf("Amoeba Speed: %d\n", level->amoeba_speed); + printf("\n"); + printf("Gravity: %s\n", (level->gravity ? "yes" : "no")); + printf("Double Speed Movement: %s\n", (level->double_speed ? "yes" : "no")); + printf("EM style slippery gems: %s\n", (level->em_slippery_gems ? "yes" : "no")); + + printf_line("-", 79); } -static char *getSetupValue(int token_nr, boolean token_value) + +/* ========================================================================= */ +/* tape file functions */ +/* ========================================================================= */ + +static void setTapeInfoToDefaults() { - return (token_value == TRUE ? "true" : "false"); + int i; - /* - if (token_value == TRUE) - return token_info[token_nr].value_true; - else - return token_info[token_nr].value_false; - */ + /* 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); + + 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); - strcat(entry, value); + /* 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; - return entry; -} + /* since version 1.2, tapes store which players participate in the tape */ + tape->num_participating_players = 0; + for(i=0; iplayer_participates[i] = FALSE; + if (store_participating_players & (1 << i)) + { + tape->player_participates[i] = TRUE; + tape->num_participating_players++; + } + } + ReadUnusedBytesFromFile(file, TAPE_HEADER_UNUSED); -#if 0 + engine_version = getFileVersion(file); + if (engine_version > 0) + tape->engine_version = engine_version; + } -static char *getSetupEntry(char *prefix, int token_nr, int token_value) + return chunk_size; +} + +static int LoadTape_INFO(FILE *file, int chunk_size, struct TapeInfo *tape) { + int level_identifier_size; int i; - static char entry[MAX_LINE_LEN]; - sprintf(entry, "%s%s:", prefix, getSetupToken(token_nr)); - for (i=strlen(entry); ilevel_identifier = + checked_realloc(tape->level_identifier, level_identifier_size); + + for(i=0; i < level_identifier_size; i++) + tape->level_identifier[i] = fgetc(file); - strcat(entry, getSetupValue(token_nr, token_value)); + tape->level_nr = getFile16BitBE(file); - return entry; + chunk_size = 2 + level_identifier_size + 2; + + 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; -} + for(i=0; ilength; i++) + { + if (i >= MAX_TAPELEN) + break; -#endif + for(j=0; jpos[i].action[j] = MV_NO_MOVING; + if (tape->player_participates[j]) + tape->pos[i].action[j] = fgetc(file); + } -static void freeSetupFileList(struct SetupFileList *setup_file_list) -{ - if (!setup_file_list) - return; + tape->pos[i].delay = fgetc(file); + + if (tape->file_version == FILE_VERSION_1_0) + { + /* eliminate possible diagonal moves in old tapes */ + /* this is only for backward compatibility */ + + byte joy_dir[4] = { JOY_LEFT, JOY_RIGHT, JOY_UP, JOY_DOWN }; + byte action = tape->pos[i].action[0]; + int k, num_moves = 0; - 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); + 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; + } + } + else if (tape->file_version < FILE_VERSION_2_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; } -static struct SetupFileList *newSetupFileList(char *token, char *value) +void LoadTapeFromFilename(char *filename) { - struct SetupFileList *new = checked_malloc(sizeof(struct SetupFileList)); + 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; + + getFileChunkBE(file, chunk_name, NULL); + if (strcmp(chunk_name, "RND1") == 0) + { + getFile32BitBE(file); /* not used */ + + getFileChunkBE(file, chunk_name, NULL); + if (strcmp(chunk_name, "TAPE") != 0) + { + Error(ERR_WARN, "unknown format of tape 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'; - new->token = checked_malloc(strlen(token) + 1); - strcpy(new->token, token); + if (!checkCookieString(cookie, TAPE_COOKIE_TMPL)) + { + Error(ERR_WARN, "unknown format of tape file '%s'", filename); + fclose(file); + return; + } - new->value = checked_malloc(strlen(value) + 1); - strcpy(new->value, value); + if ((tape.file_version = getFileVersionFromCookieString(cookie)) == -1) + { + Error(ERR_WARN, "unsupported version of tape file '%s'", filename); + fclose(file); + return; + } - new->next = NULL; + /* pre-2.0 tape files have no game version, so use file version here */ + tape.game_version = tape.file_version; + } - return new; + if (tape.file_version < FILE_VERSION_1_2) + { + /* 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); + } + else + { + static struct + { + 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 }, + { "INFO", -1, LoadTape_INFO }, + { "BODY", -1, LoadTape_BODY }, + { NULL, 0, NULL } + }; + + while (getFileChunkBE(file, chunk_name, &chunk_size)) + { + int i = 0; + + while (chunk_info[i].name != NULL && + strcmp(chunk_name, chunk_info[i].name) != 0) + i++; + + if (chunk_info[i].name == NULL) + { + 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); + } + } + } + } + + fclose(file); + + tape.length_seconds = GetTapeLength(); + +#if 0 + printf("tape version: %d\n", tape.game_version); +#endif } -static char *getSetupFileListEntry(struct SetupFileList *setup_file_list, - char *token) +void LoadTape(int level_nr) { - if (!setup_file_list) - return NULL; + char *filename = getTapeFilename(level_nr); - if (strcmp(setup_file_list->token, token) == 0) - return setup_file_list->value; - else - return getSetupFileListEntry(setup_file_list->next, token); + LoadTapeFromFilename(filename); } -boolean setSetupFileListEntry(struct SetupFileList *setup_file_list, - char *token, char *value) +static void SaveTape_VERS(FILE *file, struct TapeInfo *tape) { - if (!setup_file_list) - return FALSE; + putFileVersion(file, tape->file_version); + putFileVersion(file, tape->game_version); +} - 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); +static void SaveTape_HEAD(FILE *file, struct TapeInfo *tape) +{ + int i; + byte store_participating_players = 0; - return TRUE; - } - else - return setSetupFileListEntry(setup_file_list->next, token, value); + /* set bits for participating players for compact storage */ + for(i=0; iplayer_participates[i]) + store_participating_players |= (1 << i); + + putFile32BitBE(file, tape->random_seed); + putFile32BitBE(file, tape->date); + putFile32BitBE(file, tape->length); + + fputc(store_participating_players, file); + + /* unused bytes not at the end here for 4-byte alignment of engine_version */ + WriteUnusedBytesToFile(file, TAPE_HEADER_UNUSED); + + putFileVersion(file, tape->engine_version); } -void updateSetupFileListEntry(struct SetupFileList *setup_file_list, - char *token, char *value) +static void SaveTape_INFO(FILE *file, struct TapeInfo *tape) { - if (!setup_file_list) - return; + int level_identifier_size = strlen(tape->level_identifier) + 1; + int i; - if (getSetupFileListEntry(setup_file_list, token) != NULL) - setSetupFileListEntry(setup_file_list, token, value); - else - { - struct SetupFileList *list_entry = setup_file_list; + putFile16BitBE(file, level_identifier_size); - while (list_entry->next) - list_entry = list_entry->next; + for(i=0; i < level_identifier_size; i++) + fputc(tape->level_identifier[i], file); - list_entry->next = newSetupFileList(token, value); - } + putFile16BitBE(file, tape->level_nr); } -#ifdef DEBUG -static void printSetupFileList(struct SetupFileList *setup_file_list) +static void SaveTape_BODY(FILE *file, struct TapeInfo *tape) { - if (!setup_file_list) - return; + int i, j; - printf("token: '%s'\n", setup_file_list->token); - printf("value: '%s'\n", setup_file_list->value); + for(i=0; ilength; i++) + { + for(j=0; jplayer_participates[j]) + fputc(tape->pos[i].action[j], file); - printSetupFileList(setup_file_list->next); + fputc(tape->pos[i].delay, file); + } } -#endif -static struct SetupFileList *loadSetupFileList(char *filename) +void SaveTape(int level_nr) { - 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; - + char *filename = getTapeFilename(level_nr); FILE *file; + boolean new_tape = TRUE; + int num_participating_players = 0; + int info_chunk_size; + int body_chunk_size; + int i; + + InitTapeDirectory(leveldir_current->filename); - if (!(file = fopen(filename, "r"))) + /* if a tape still exists, ask to overwrite it */ + if (access(filename, F_OK) == 0) { - Error(ERR_WARN, "cannot open setup file '%s'", filename); - return NULL; + new_tape = FALSE; + if (!Request("Replace old tape ?", REQ_ASK)) + return; } - while(!feof(file)) + if (!(file = fopen(filename, MODE_WRITE))) { - /* 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++) - { - if (*line_ptr == '#' || *line_ptr == '\n') - { - *line_ptr = '\0'; - break; - } - } + Error(ERR_WARN, "cannot save level recording file '%s'", filename); + return; + } - /* 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'; + tape.file_version = FILE_VERSION_ACTUAL; + tape.game_version = GAME_VERSION_ACTUAL; - /* ignore empty lines */ - if (*line == '\0') - continue; + /* count number of participating players */ + for(i=0; inext; + SetFilePermissions(filename, PERMS_PRIVATE); - /* free empty list header */ - setup_file_list->next = NULL; - freeSetupFileList(setup_file_list); - - if (!first_valid_list_entry) - Error(ERR_WARN, "setup file is empty"); + tape.changed = FALSE; - return first_valid_list_entry; + if (new_tape) + Request("tape saved !", REQ_CONFIRM); } -static void checkSetupFileListIdentifier(struct SetupFileList *setup_file_list, - char *identifier) +void DumpTape(struct TapeInfo *tape) { - if (!setup_file_list) + int i, j; + + if (TAPE_IS_EMPTY(*tape)) + { + Error(ERR_WARN, "no tape available for level %d", tape->level_nr); return; + } + + printf_line("-", 79); + printf("Tape of Level %03d (file version %08d, game version %08d)\n", + tape->level_nr, tape->file_version, tape->game_version); + printf("Level series identifier: '%s'\n", tape->level_identifier); + printf_line("-", 79); - if (strcmp(setup_file_list->token, TOKEN_STR_FILE_IDENTIFIER) == 0) + for(i=0; ilength; i++) { - if (strcmp(setup_file_list->value, identifier) != 0) + if (i >= MAX_TAPELEN) + break; + + printf("%03d: ", i); + + 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' : ' ')); + } } - else - return; - } - if (setup_file_list->next) - checkSetupFileListIdentifier(setup_file_list->next, identifier); - else - { - Error(ERR_WARN, "setup file has no version information"); - return; + printf("(%03d)\n", tape->pos[i].delay); } + + printf_line("-", 79); } -static void decodeSetupFileList(struct SetupFileList *setup_file_list) -{ - 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); +/* ========================================================================= */ +/* score file functions */ +/* ========================================================================= */ - token_player_prefix_len = strlen(TOKEN_STR_PLAYER_PREFIX); +void LoadScore(int level_nr) +{ + int i; + char *filename = getScoreFilename(level_nr); + char cookie[MAX_LINE_LEN]; + char line[MAX_LINE_LEN]; + char *line_ptr; + FILE *file; - if (strncmp(token, TOKEN_STR_PLAYER_PREFIX, - token_player_prefix_len) == 0) + /* always start with reliable default values */ + for(i=0; i= '0' && *token <= '9') - { - player_nr = ((int)(*token - '0') - 1 + MAX_PLAYERS) % MAX_PLAYERS; - token++; - } + strcpy(highscore[i].Name, EMPTY_PLAYER_NAME); + highscore[i].Score = 0; } - for (i=0; i 0 && cookie[strlen(cookie) - 1] == '\n') + cookie[strlen(cookie) - 1] = '\0'; - switch (token_nr) + if (!checkCookieString(cookie, SCORE_COOKIE)) { - case SETUP_TOKEN_SOUND: - setup.sound = token_boolean_value; - break; - case SETUP_TOKEN_SOUND_LOOPS: - setup.sound_loops = token_boolean_value; - break; - case SETUP_TOKEN_SOUND_MUSIC: - setup.sound_music = token_boolean_value; - break; - case SETUP_TOKEN_SOUND_SIMPLE: - setup.sound_simple = token_boolean_value; - break; - case SETUP_TOKEN_TOONS: - setup.toons = token_boolean_value; - break; - case SETUP_TOKEN_DOUBLE_BUFFERING: - setup.double_buffering = token_boolean_value; - break; - case SETUP_TOKEN_SCROLL_DELAY: - setup.scroll_delay = token_boolean_value; - break; - case SETUP_TOKEN_SOFT_SCROLLING: - setup.soft_scrolling = token_boolean_value; - break; - case SETUP_TOKEN_FADING: - setup.fading = token_boolean_value; - break; - case SETUP_TOKEN_AUTORECORD: - setup.autorecord = token_boolean_value; - break; - case SETUP_TOKEN_QUICK_DOORS: - setup.quick_doors = token_boolean_value; - break; - - case SETUP_TOKEN_ALIAS_NAME: - strncpy(setup.alias_name, token_value, MAX_NAMELEN-1); - setup.alias_name[MAX_NAMELEN-1] = '\0'; - break; + Error(ERR_WARN, "unknown format of score file '%s'", filename); + fclose(file); + return; + } - case SETUP_TOKEN_USE_JOYSTICK: - setup.input[player_nr].use_joystick = token_boolean_value; - break; - case SETUP_TOKEN_JOY_DEVICE_NAME: - strncpy(setup.input[player_nr].joy.device_name, token_value, - MAX_FILENAME_LEN-1); - setup.input[player_nr].joy.device_name[MAX_FILENAME_LEN-1] = '\0'; - break; - case SETUP_TOKEN_JOY_SNAP: - setup.input[player_nr].joy.snap = getJoySymbolFromJoyName(token_value); - break; - case SETUP_TOKEN_JOY_XLEFT: - setup.input[player_nr].joy.xleft = token_integer_value; - break; - case SETUP_TOKEN_JOY_XMIDDLE: - setup.input[player_nr].joy.xmiddle = token_integer_value; - break; - case SETUP_TOKEN_JOY_XRIGHT: - setup.input[player_nr].joy.xright = token_integer_value; - break; - case SETUP_TOKEN_JOY_YUPPER: - setup.input[player_nr].joy.yupper = token_integer_value; - break; - case SETUP_TOKEN_JOY_YMIDDLE: - setup.input[player_nr].joy.ymiddle = token_integer_value; - break; - case SETUP_TOKEN_JOY_YLOWER: - setup.input[player_nr].joy.ylower = token_integer_value; - break; - case SETUP_TOKEN_JOY_BOMB: - setup.input[player_nr].joy.bomb = getJoySymbolFromJoyName(token_value); - break; - case SETUP_TOKEN_KEY_LEFT: - setup.input[player_nr].key.left = getKeySymFromX11KeyName(token_value); - break; - case SETUP_TOKEN_KEY_RIGHT: - setup.input[player_nr].key.right = getKeySymFromX11KeyName(token_value); - break; - case SETUP_TOKEN_KEY_UP: - setup.input[player_nr].key.up = getKeySymFromX11KeyName(token_value); - break; - case SETUP_TOKEN_KEY_DOWN: - setup.input[player_nr].key.down = getKeySymFromX11KeyName(token_value); - break; - case SETUP_TOKEN_KEY_SNAP: - setup.input[player_nr].key.snap = getKeySymFromX11KeyName(token_value); - break; - case SETUP_TOKEN_KEY_BOMB: - setup.input[player_nr].key.bomb = getKeySymFromX11KeyName(token_value); - break; + for(i=0; inext); + fclose(file); } -int getLevelSeriesNrFromLevelSeriesName(char *level_series_name) +void SaveScore(int level_nr) { int i; + char *filename = getScoreFilename(level_nr); + FILE *file; - if (!level_series_name) - return 0; + InitScoreDirectory(leveldir_current->filename); - for (i=0; i highest_level_nr) - last_level_nr = highest_level_nr; - } - return last_level_nr; -} +static struct SetupInfo si; +static struct SetupEditorInfo sei; +static struct SetupShortcutInfo ssi; +static struct SetupInputInfo sii; +static struct SetupSystemInfo syi; +static struct OptionInfo soi; -void LoadSetup() +static struct TokenInfo global_setup_tokens[] = { - 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'; - - for (i=0; i MAX_PLAYER_NAME_LEN) /* name has been cut */ + if (strchr(login_name_new, ' ')) + *strchr(login_name_new, ' ') = '\0'; -#if 0 + return login_name_new; +} -void SaveSetup() +static void setSetupInfoToDefaults(struct SetupInfo *si) { int i; - char filename[MAX_FILENAME_LEN]; - FILE *file; - sprintf(filename, "%s/%s", SETUP_PATH, SETUP_FILENAME); + si->player_name = get_corrected_login_name(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->editor.el_boulderdash = TRUE; + si->editor.el_emerald_mine = TRUE; + si->editor.el_more = TRUE; + si->editor.el_sokoban = TRUE; + si->editor.el_supaplex = TRUE; + si->editor.el_diamond_caves = TRUE; + si->editor.el_dx_boulderdash = TRUE; + si->editor.el_chars = TRUE; + si->editor.el_custom = TRUE; + + si->shortcut.save_game = DEFAULT_KEY_SAVE_GAME; + si->shortcut.load_game = DEFAULT_KEY_LOAD_GAME; + si->shortcut.toggle_pause = DEFAULT_KEY_TOGGLE_PAUSE; - if (!(file = fopen(filename, "w"))) + 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); } - fprintf(file, "%s: %s\n", - TOKEN_STR_FILE_IDENTIFIER, SETUP_COOKIE); - - fprintf(file, "\n"); + si->system.sdl_audiodriver = getStringCopy(ARG_DEFAULT); + si->system.audio_fragment_size = DEFAULT_AUDIO_FRAGMENT_SIZE; - 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)); + si->options.verbose = FALSE; +} - fprintf(file, "\n"); +static void decodeSetupFileHash(SetupFileHash *setup_file_hash) +{ + int i, pnr; - fprintf(file, "%s\n", - getFormattedSetupEntry(TOKEN_STR_ALIAS_NAME, - setup.alias_name)); + if (!setup_file_hash) + return; - for (i=0; itoken, TOKEN_STR_FILE_IDENTIFIER) != 0) - fprintf(file, "%s\n", - getFormattedSetupEntry(list_entry->token, list_entry->value)); - - /* just to make things nicer :) */ - if (strcmp(list_entry->token, TOKEN_STR_LAST_LEVEL_SERIES) == 0) - fprintf(file, "\n"); + char *value = getHashEntry(setup_file_hash, image_config_vars[i].token); - list_entry = list_entry->next; + if (value != NULL) + *image_config_vars[i].value = get_integer_from_string(value); } - fclose(file); - - chmod(filename, SETUP_PERMS); + freeSetupFileHash(setup_file_hash); }