X-Git-Url: https://jxself.org/git/?p=open-adventure.git;a=blobdiff_plain;f=saveresume.c;h=3ec4ebd11b0aa1a192ea145e99c689d44295b616;hp=f4c694fddb66a5feca64cd9d6eaab2570699139c;hb=ab94051da166ca2be050c0d5725774f2edf3e7ee;hpb=0a30176a8c60832e140991c177e8924c7a9ad6d5 diff --git a/saveresume.c b/saveresume.c index f4c694f..3ec4ebd 100644 --- a/saveresume.c +++ b/saveresume.c @@ -2,8 +2,7 @@ #include #include "advent.h" -#include "database.h" -#include "newdb.h" +#include "dungeon.h" #include "linenoise/linenoise.h" /* @@ -27,20 +26,22 @@ struct save_t { }; struct save_t save; +#define IGNORE(r) do{if (r){}}while(0) + int savefile(FILE *fp, long version) - /* Save game to file. No input or output from user. */ +/* Save game to file. No input or output from user. */ { long i, k; datime(&i, &k); k = i + 650 * k; save.savetime = k; save.mode = -1; - + save.version = (version == 0) ? VRSION : version; - + memcpy(&save.game, &game, sizeof(struct game_t)); IGNORE(fwrite(&save, sizeof(struct save_t), 1, fp)); - return(0); + return (0); } /* Suspend and resume */ @@ -57,7 +58,8 @@ int suspend(void) FILE *fp = NULL; rspeak(SUSPEND_WARNING); - if (!yes(arbitrary_messages[THIS_ACCEPTABLE], arbitrary_messages[OK_MAN], arbitrary_messages[OK_MAN])) return GO_CLEAROBJ; + if (!yes(arbitrary_messages[THIS_ACCEPTABLE], arbitrary_messages[OK_MAN], arbitrary_messages[OK_MAN])) + return GO_CLEAROBJ; game.saved = game.saved + 5; while (fp == NULL) { @@ -73,7 +75,7 @@ int suspend(void) savefile(fp, VRSION); fclose(fp); rspeak(RESUME_HELP); - exit(0); + exit(EXIT_SUCCESS); } int resume(void) @@ -88,7 +90,8 @@ int resume(void) if (game.loc != 1 || game.abbrev[1] != 1) { rspeak(RESUME_ABANDON); - if (!yes(arbitrary_messages[THIS_ACCEPTABLE], arbitrary_messages[OK_MAN], arbitrary_messages[OK_MAN])) return GO_CLEAROBJ; + if (!yes(arbitrary_messages[THIS_ACCEPTABLE], arbitrary_messages[OK_MAN], arbitrary_messages[OK_MAN])) + return GO_CLEAROBJ; } while (fp == NULL) { @@ -119,7 +122,8 @@ int restore(FILE* fp) rspeak(VERSION_SKEW, save.version / 10, MOD(save.version, 10), VRSION / 10, MOD(VRSION, 10)); } else { memcpy(&game, &save.game, sizeof(struct game_t)); - game.zzword = rndvoc(3, game.zzword); + //game.zzword = rndvoc(3, game.zzword); + make_zzword(game.zzword); } return GO_TOP; }