Put some of important parameters into fixed width signed integers
[open-adventure.git] / saveresume.c
1 #include <stdlib.h>
2 #include <string.h>
3 #include <editline/readline.h>
4 #include <time.h>
5 #include <inttypes.h>
6
7 #include "advent.h"
8 #include "dungeon.h"
9
10 /*
11  * (ESR) This replaces  a bunch of particularly nasty FORTRAN-derived code;
12  * see the history.adoc file in the source distribution for discussion.
13  */
14
15 #define VRSION  28      /* bump on save format change */
16
17 /*
18  * If you change the first three members, the resume function may not properly
19  * reject saves from older versions.  Yes, this glues us to a hardware-
20  * dependent length of long.  Later members can change, but bump the version
21  * when you do that.
22  */
23 struct save_t {
24     int64_t savetime;
25     int32_t mode;               /* not used, must be present for version detection */
26     int32_t version;
27     struct game_t game;
28 };
29 struct save_t save;
30
31 #define IGNORE(r) do{if (r){}}while(0)
32
33 int savefile(FILE *fp, int32_t version)
34 /* Save game to file. No input or output from user. */
35 {
36     save.savetime = time(NULL);
37     save.mode = -1;
38     save.version = (version == 0) ? VRSION : version;
39
40     save.game = game;
41     IGNORE(fwrite(&save, sizeof(struct save_t), 1, fp));
42     return (0);
43 }
44
45 /* Suspend and resume */
46 int suspend(void)
47 {
48     /*  Suspend.  Offer to save things in a file, but charging
49      *  some points (so can't win by using saved games to retry
50      *  battles or to start over after learning zzword).
51      *  If ADVENT_NOSAVE is defined, do nothing instead. */
52
53 #ifdef ADVENT_NOSAVE
54     return GO_UNKNOWN;
55 #endif
56     FILE *fp = NULL;
57
58     rspeak(SUSPEND_WARNING);
59     if (!yes(arbitrary_messages[THIS_ACCEPTABLE], arbitrary_messages[OK_MAN], arbitrary_messages[OK_MAN]))
60         return GO_CLEAROBJ;
61     game.saved = game.saved + 5;
62
63     while (fp == NULL) {
64         char* name = readline("\nFile name: ");
65         if (name == NULL)
66             return GO_TOP;
67         fp = fopen(name, WRITE_MODE);
68         if (fp == NULL)
69             printf("Can't open file %s, try again.\n", name);
70         free(name);
71     }
72
73     savefile(fp, VRSION);
74     fclose(fp);
75     rspeak(RESUME_HELP);
76     exit(EXIT_SUCCESS);
77 }
78
79 int resume(void)
80 {
81     /*  Resume.  Read a suspended game back from a file.
82      *  If ADVENT_NOSAVE is defined, do nothing instead. */
83
84 #ifdef ADVENT_NOSAVE
85     return GO_UNKNOWN;
86 #endif
87     FILE *fp = NULL;
88
89     if (game.loc != 1 ||
90         game.abbrev[1] != 1) {
91         rspeak(RESUME_ABANDON);
92         if (!yes(arbitrary_messages[THIS_ACCEPTABLE], arbitrary_messages[OK_MAN], arbitrary_messages[OK_MAN]))
93             return GO_CLEAROBJ;
94     }
95
96     while (fp == NULL) {
97         char* name = readline("\nFile name: ");
98         if (name == NULL)
99             return GO_TOP;
100         fp = fopen(name, READ_MODE);
101         if (fp == NULL)
102             printf("Can't open file %s, try again.\n", name);
103         free(name);
104     }
105
106     return restore(fp);
107 }
108
109 bool is_valid(struct game_t*);
110
111 int restore(FILE* fp)
112 {
113     /*  Read and restore game state from file, assuming
114      *  sane initial state.
115      *  If ADVENT_NOSAVE is defined, do nothing instead. */
116 #ifdef ADVENT_NOSAVE
117     return GO_UNKNOWN;
118 #endif
119
120     IGNORE(fread(&save, sizeof(struct save_t), 1, fp));
121     fclose(fp);
122     if (save.version != VRSION) {
123         rspeak(VERSION_SKEW, save.version / 10, MOD(save.version, 10), VRSION / 10, MOD(VRSION, 10));
124     } else if (is_valid(&save.game)) {
125         game = save.game;
126     }
127     return GO_TOP;
128 }
129
130 bool is_valid(struct game_t* valgame)
131 {
132     /*  Save files can be roughly grouped into three groups:
133      *  With valid, reaceable state, with valid, but unreachable
134      *  state and with invaild state. We check that state is
135      *  valid: no states are outside minimal or maximal value
136      */
137
138     /* Prevent division by zero */
139     if (valgame->abbnum == 0) {
140         return false;
141     }
142
143     /* Check for RNG overflow. Truncate */
144     if (valgame->lcg_x >= LCG_M) {
145         valgame->lcg_x %= LCG_M;
146     }
147
148     /*  Bounds check for locations */
149     if ( valgame->chloc  < -1 || valgame->chloc  > NLOCATIONS ||
150          valgame->chloc2 < -1 || valgame->chloc2 > NLOCATIONS ||
151          valgame->loc    < -1 || valgame->loc    > NLOCATIONS ||
152          valgame->newloc < -1 || valgame->newloc > NLOCATIONS ||
153          valgame->oldloc < -1 || valgame->oldloc > NLOCATIONS ||
154          valgame->oldlc2 < -1 || valgame->oldlc2 > NLOCATIONS) {
155         return false;
156     }
157     /*  Bounds check for location arrays */
158     for (int i = 0; i <= NDWARVES; i++) {
159         if (valgame->dloc[i]  < -1 || valgame->dloc[i]  > NLOCATIONS  ||
160             valgame->odloc[i] < -1 || valgame->odloc[i] > NLOCATIONS) {
161             return false;
162         }
163     }
164
165     for (int i = 0; i <= NOBJECTS; i++) {
166         if (valgame->place[i] < -1 || valgame->place[i] > NLOCATIONS  ||
167             valgame->fixed[i] < -1 || valgame->fixed[i] > NLOCATIONS) {
168             return false;
169         }
170     }
171
172     /*  Bounds check for dwarves */
173     if (valgame->dtotal < 0 || valgame->dtotal > NDWARVES ||
174         valgame->dkill < 0  || valgame->dkill  > NDWARVES) {
175         return false;
176     }
177
178     /*  Validate that we didn't die too many times in save */
179     if (valgame->numdie >= NDEATHS) {
180         return false;
181     }
182
183     /* Recalculate tally, throw the towel if in disagreement */
184     long temp_tally = 0;
185     for (int treasure = 1; treasure <= NOBJECTS; treasure++) {
186         if (objects[treasure].is_treasure) {
187             if (valgame->prop[treasure] == STATE_NOTFOUND) {
188                 ++temp_tally;
189             }
190         }
191     }
192     if (temp_tally != valgame->tally) {
193         return false;
194     }
195
196     /* Check that properties of objects aren't beyond expected */
197     for (obj_t obj = 0; obj <= NOBJECTS; obj++) {
198         if (valgame->prop[obj] < STATE_NOTFOUND || valgame->prop[obj] > 1) {
199             switch (obj) {
200             case RUG:
201             case DRAGON:
202             case BIRD:
203             case BOTTLE:
204             case PLANT:
205             case PLANT2:
206             case TROLL:
207             case URN:
208             case EGGS:
209             case VASE:
210             case CHAIN:
211                 if (valgame->prop[obj] == 2) // There are multiple different states, but it's convenient to clump them together
212                     continue;
213             /* FALLTHRU */
214             case BEAR:
215                 if (valgame->prop[BEAR] == CONTENTED_BEAR || valgame->prop[BEAR] == BEAR_DEAD)
216                     continue;
217             /* FALLTHRU */
218             default:
219                 return false;
220             }
221         }
222     }
223
224     /* Check that values in linked lists for objects in locations are inside bounds */
225     for (loc_t loc = LOC_NOWHERE; loc <= NLOCATIONS; loc++) {
226         if (valgame->atloc[loc] < NO_OBJECT || valgame->atloc[loc] > NOBJECTS * 2) {
227             return false;
228         }
229     }
230     for (obj_t obj = 0; obj <= NOBJECTS * 2; obj++ ) {
231         if (valgame->link[obj] < NO_OBJECT || valgame->link[obj] > NOBJECTS * 2) {
232             return false;
233         }
234     }
235
236     return true;
237 }
238
239 /* end */