OSDN Git Service

5618e13576381c3c977fe69ea414b69f952b281e
[hengband/hengband.git] / src / load.c
1 /* File: load.c */
2
3 /*
4  * Copyright (c) 1997 Ben Harrison, and others
5  *
6  * This software may be copied and distributed for educational, research,
7  * and not for profit purposes provided that this copyright and statement
8  * are included in all such copies.  Other copyrights may also apply.
9  */
10
11 /* Purpose: support for loading savefiles -BEN- */
12
13 #include "angband.h"
14
15
16 /*
17  * This file loads savefiles from Angband 2.7.X and 2.8.X
18  *
19  * Ancient savefiles (pre-2.7.0) are loaded by another file.
20  *
21  * Note that Angband 2.7.0 through 2.7.3 are now officially obsolete,
22  * and savefiles from those versions may not be successfully converted.
23  *
24  * We attempt to prevent corrupt savefiles from inducing memory errors.
25  *
26  * Note that this file should not use the random number generator, the
27  * object flavors, the visual attr/char mappings, or anything else which
28  * is initialized *after* or *during* the "load character" function.
29  *
30  * This file assumes that the monster/object records are initialized
31  * to zero, and the race/kind tables have been loaded correctly.  The
32  * order of object stacks is currently not saved in the savefiles, but
33  * the "next" pointers are saved, so all necessary knowledge is present.
34  *
35  * We should implement simple "savefile extenders" using some form of
36  * "sized" chunks of bytes, with a {size,type,data} format, so everyone
37  * can know the size, interested people can know the type, and the actual
38  * data is available to the parsing routines that acknowledge the type.
39  *
40  * Consider changing the "globe of invulnerability" code so that it
41  * takes some form of "maximum damage to protect from" in addition to
42  * the existing "number of turns to protect for", and where each hit
43  * by a monster will reduce the shield by that amount.
44  *
45  * XXX XXX XXX
46  */
47
48
49
50 /*
51  * Maximum number of tries for selection of a proper quest monster
52  */
53 #define MAX_TRIES 100
54
55
56 /*
57  * Local "savefile" pointer
58  */
59 static FILE     *fff;
60
61 /*
62  * Hack -- old "encryption" byte
63  */
64 static byte     xor_byte;
65
66 /*
67  * Hack -- simple "checksum" on the actual values
68  */
69 static u32b     v_check = 0L;
70
71 /*
72  * Hack -- simple "checksum" on the encoded bytes
73  */
74 static u32b     x_check = 0L;
75
76 /*
77  * Hack -- Japanese Kanji code
78  * 0: Unknown
79  * 1: ASCII
80  * 2: EUC
81  * 3: SJIS
82  */
83 static byte kanji_code = 0;
84
85 /*
86  * This function determines if the version of the savefile
87  * currently being read is older than version "major.minor.patch.extra".
88  */
89 static bool h_older_than(byte major, byte minor, byte patch, byte extra)
90 {
91         /* Much older, or much more recent */
92         if (h_ver_major < major) return (TRUE);
93         if (h_ver_major > major) return (FALSE);
94
95         /* Distinctly older, or distinctly more recent */
96         if (h_ver_minor < minor) return (TRUE);
97         if (h_ver_minor > minor) return (FALSE);
98
99         /* Barely older, or barely more recent */
100         if (h_ver_patch < patch) return (TRUE);
101         if (h_ver_patch > patch) return (FALSE);
102
103         /* Barely older, or barely more recent */
104         if (h_ver_extra < extra) return (TRUE);
105         if (h_ver_extra > extra) return (FALSE);
106
107         /* Identical versions */
108         return (FALSE);
109 }
110
111
112 /*
113  * The above function, adapted for Zangband
114  */
115 static bool z_older_than(byte x, byte y, byte z)
116 {
117         /* Much older, or much more recent */
118         if (z_major < x) return (TRUE);
119         if (z_major > x) return (FALSE);
120
121         /* Distinctly older, or distinctly more recent */
122         if (z_minor < y) return (TRUE);
123         if (z_minor > y) return (FALSE);
124
125         /* Barely older, or barely more recent */
126         if (z_patch < z) return (TRUE);
127         if (z_patch > z) return (FALSE);
128
129         /* Identical versions */
130         return (FALSE);
131 }
132
133
134 /*
135  * Hack -- Show information on the screen, one line at a time.
136  *
137  * Avoid the top two lines, to avoid interference with "msg_print()".
138  */
139 static void note(cptr msg)
140 {
141         static int y = 2;
142
143         /* Draw the message */
144         prt(msg, y, 0);
145
146         /* Advance one line (wrap if needed) */
147         if (++y >= 24) y = 2;
148
149         /* Flush it */
150         Term_fresh();
151 }
152
153
154 /*
155  * The following functions are used to load the basic building blocks
156  * of savefiles.  They also maintain the "checksum" info for 2.7.0+
157  */
158
159 static byte sf_get(void)
160 {
161         byte c, v;
162
163         /* Get a character, decode the value */
164         c = getc(fff) & 0xFF;
165         v = c ^ xor_byte;
166         xor_byte = c;
167
168         /* Maintain the checksum info */
169         v_check += v;
170         x_check += xor_byte;
171
172         /* Return the value */
173         return (v);
174 }
175
176 static void rd_byte(byte *ip)
177 {
178         *ip = sf_get();
179 }
180
181 static void rd_u16b(u16b *ip)
182 {
183         (*ip) = sf_get();
184         (*ip) |= ((u16b)(sf_get()) << 8);
185 }
186
187 static void rd_s16b(s16b *ip)
188 {
189         rd_u16b((u16b*)ip);
190 }
191
192 static void rd_u32b(u32b *ip)
193 {
194         (*ip) = sf_get();
195         (*ip) |= ((u32b)(sf_get()) << 8);
196         (*ip) |= ((u32b)(sf_get()) << 16);
197         (*ip) |= ((u32b)(sf_get()) << 24);
198 }
199
200 static void rd_s32b(s32b *ip)
201 {
202         rd_u32b((u32b*)ip);
203 }
204
205
206 /*
207  * Hack -- read a string
208  */
209 static void rd_string(char *str, int max)
210 {
211         int i;
212
213         /* Read the string */
214         for (i = 0; TRUE; i++)
215         {
216                 byte tmp8u;
217
218                 /* Read a byte */
219                 rd_byte(&tmp8u);
220
221                 /* Collect string while legal */
222                 if (i < max) str[i] = tmp8u;
223
224                 /* End of string */
225                 if (!tmp8u) break;
226         }
227
228         /* Terminate */
229         str[max-1] = '\0';
230
231
232 #ifdef JP
233         /* Convert Kanji code */
234         switch (kanji_code)
235         {
236 #ifdef SJIS
237         case 2:
238                 /* EUC to SJIS */
239                 euc2sjis(str);
240                 break;
241 #endif
242
243 #ifdef EUC
244         case 3:
245                 /* SJIS to EUC */
246                 sjis2euc(str);
247                 break;
248 #endif
249
250         case 0:
251         {
252                 /* ÉÔÌÀ¤Î´Á»ú¥³¡¼¥É¤«¤é¥·¥¹¥Æ¥à¤Î´Á»ú¥³¡¼¥É¤ËÊÑ´¹ */
253                 byte code = codeconv(str);
254
255                 /* ´Á»ú¥³¡¼¥É¤¬È½ÌÀ¤·¤¿¤é¡¢¤½¤ì¤òµ­Ï¿ */
256                 if (code) kanji_code = code;
257
258                 break;
259         }
260         default:
261                 /* No conversion needed */
262                 break;
263         }
264 #endif
265 }
266
267
268 /*
269  * Hack -- strip some bytes
270  */
271 static void strip_bytes(int n)
272 {
273         byte tmp8u;
274
275         /* Strip the bytes */
276         while (n--) rd_byte(&tmp8u);
277 }
278
279 #define OLD_MAX_MANE 22
280
281 /*
282  * Read an object (Old method)
283  *
284  * This function attempts to "repair" old savefiles, and to extract
285  * the most up to date values for various object fields.
286  *
287  * Note that Angband 2.7.9 introduced a new method for object "flags"
288  * in which the "flags" on an object are actually extracted when they
289  * are needed from the object kind, artifact index, ego-item index,
290  * and two special "xtra" fields which are used to encode any "extra"
291  * power of certain ego-items.  This had the side effect that items
292  * imported from pre-2.7.9 savefiles will lose any "extra" powers they
293  * may have had, and also, all "uncursed" items will become "cursed"
294  * again, including Calris, even if it is being worn at the time.  As
295  * a complete hack, items which are inscribed with "uncursed" will be
296  * "uncursed" when imported from pre-2.7.9 savefiles.
297  */
298 static void rd_item_old(object_type *o_ptr)
299 {
300         char buf[128];
301
302
303         /* Kind */
304         rd_s16b(&o_ptr->k_idx);
305
306         /* Location */
307         rd_byte(&o_ptr->iy);
308         rd_byte(&o_ptr->ix);
309
310         /* Type/Subtype */
311         rd_byte(&o_ptr->tval);
312         rd_byte(&o_ptr->sval);
313
314         if (z_older_than(10, 4, 4))
315         {
316                 if (o_ptr->tval == 100) o_ptr->tval = TV_GOLD;
317                 if (o_ptr->tval == 98) o_ptr->tval = TV_MUSIC_BOOK;
318                 if (o_ptr->tval == 110) o_ptr->tval = TV_HISSATSU_BOOK;
319         }
320
321         /* Special pval */
322         rd_s16b(&o_ptr->pval);
323
324         rd_byte(&o_ptr->discount);
325         rd_byte(&o_ptr->number);
326         rd_s16b(&o_ptr->weight);
327
328         rd_byte(&o_ptr->name1);
329         rd_byte(&o_ptr->name2);
330         rd_s16b(&o_ptr->timeout);
331
332         rd_s16b(&o_ptr->to_h);
333         rd_s16b(&o_ptr->to_d);
334         rd_s16b(&o_ptr->to_a);
335
336         rd_s16b(&o_ptr->ac);
337
338         rd_byte(&o_ptr->dd);
339         rd_byte(&o_ptr->ds);
340
341         rd_byte(&o_ptr->ident);
342
343         rd_byte(&o_ptr->marked);
344
345         /* Object flags */
346         rd_u32b(&o_ptr->art_flags[0]);
347         rd_u32b(&o_ptr->art_flags[1]);
348         rd_u32b(&o_ptr->art_flags[2]);
349         if (h_older_than(1, 3, 0, 0)) o_ptr->art_flags[3] = 0L;
350         else rd_u32b(&o_ptr->art_flags[3]);
351
352         if (h_older_than(1, 3, 0, 0))
353         {
354                 if (o_ptr->name2 == EGO_TELEPATHY)
355                         add_flag(o_ptr->art_flags, TR_TELEPATHY);
356         }
357
358         if (z_older_than(11, 0, 11))
359         {
360                 o_ptr->curse_flags = 0L;
361                 if (o_ptr->ident & 0x40)
362                 {
363                         o_ptr->curse_flags |= TRC_CURSED;
364                         if (o_ptr->art_flags[2] & 0x40000000L) o_ptr->curse_flags |= TRC_HEAVY_CURSE;
365                         if (o_ptr->art_flags[2] & 0x80000000L) o_ptr->curse_flags |= TRC_PERMA_CURSE;
366                         if (object_is_fixed_artifact(o_ptr))
367                         {
368                                 artifact_type *a_ptr = &a_info[o_ptr->name1];
369                                 if (a_ptr->gen_flags & (TRG_HEAVY_CURSE)) o_ptr->curse_flags |= TRC_HEAVY_CURSE;
370                                 if (a_ptr->gen_flags & (TRG_PERMA_CURSE)) o_ptr->curse_flags |= TRC_PERMA_CURSE;
371                         }
372                         else if (object_is_ego(o_ptr))
373                         {
374                                 ego_item_type *e_ptr = &e_info[o_ptr->name2];
375                                 if (e_ptr->gen_flags & (TRG_HEAVY_CURSE)) o_ptr->curse_flags |= TRC_HEAVY_CURSE;
376                                 if (e_ptr->gen_flags & (TRG_PERMA_CURSE)) o_ptr->curse_flags |= TRC_PERMA_CURSE;
377                         }
378                 }
379                 o_ptr->art_flags[2] &= (0x1FFFFFFFL);
380         }
381         else
382         {
383                 rd_u32b(&o_ptr->curse_flags);
384         }
385
386         /* Monster holding object */
387         rd_s16b(&o_ptr->held_m_idx);
388
389         /* Special powers */
390         rd_byte(&o_ptr->xtra1);
391         rd_byte(&o_ptr->xtra2);
392
393         if (z_older_than(11, 0, 10))
394         {
395                 if (o_ptr->xtra1 == EGO_XTRA_SUSTAIN)
396                 {
397                         switch (o_ptr->xtra2 % 6)
398                         {
399                         case 0: add_flag(o_ptr->art_flags, TR_SUST_STR); break;
400                         case 1: add_flag(o_ptr->art_flags, TR_SUST_INT); break;
401                         case 2: add_flag(o_ptr->art_flags, TR_SUST_WIS); break;
402                         case 3: add_flag(o_ptr->art_flags, TR_SUST_DEX); break;
403                         case 4: add_flag(o_ptr->art_flags, TR_SUST_CON); break;
404                         case 5: add_flag(o_ptr->art_flags, TR_SUST_CHR); break;
405                         }
406                         o_ptr->xtra2 = 0;
407                 }
408                 else if (o_ptr->xtra1 == EGO_XTRA_POWER)
409                 {
410                         switch (o_ptr->xtra2 % 11)
411                         {
412                         case  0: add_flag(o_ptr->art_flags, TR_RES_BLIND);  break;
413                         case  1: add_flag(o_ptr->art_flags, TR_RES_CONF);   break;
414                         case  2: add_flag(o_ptr->art_flags, TR_RES_SOUND);  break;
415                         case  3: add_flag(o_ptr->art_flags, TR_RES_SHARDS); break;
416                         case  4: add_flag(o_ptr->art_flags, TR_RES_NETHER); break;
417                         case  5: add_flag(o_ptr->art_flags, TR_RES_NEXUS);  break;
418                         case  6: add_flag(o_ptr->art_flags, TR_RES_CHAOS);  break;
419                         case  7: add_flag(o_ptr->art_flags, TR_RES_DISEN);  break;
420                         case  8: add_flag(o_ptr->art_flags, TR_RES_POIS);   break;
421                         case  9: add_flag(o_ptr->art_flags, TR_RES_DARK);   break;
422                         case 10: add_flag(o_ptr->art_flags, TR_RES_LITE);   break;
423                         }
424                         o_ptr->xtra2 = 0;
425                 }               
426                 else if (o_ptr->xtra1 == EGO_XTRA_ABILITY)
427                 {
428                         switch (o_ptr->xtra2 % 8)
429                         {
430                         case 0: add_flag(o_ptr->art_flags, TR_LEVITATION);     break;
431                         case 1: add_flag(o_ptr->art_flags, TR_LITE);        break;
432                         case 2: add_flag(o_ptr->art_flags, TR_SEE_INVIS);   break;
433                         case 3: add_flag(o_ptr->art_flags, TR_WARNING);     break;
434                         case 4: add_flag(o_ptr->art_flags, TR_SLOW_DIGEST); break;
435                         case 5: add_flag(o_ptr->art_flags, TR_REGEN);       break;
436                         case 6: add_flag(o_ptr->art_flags, TR_FREE_ACT);    break;
437                         case 7: add_flag(o_ptr->art_flags, TR_HOLD_LIFE);   break;
438                         }
439                         o_ptr->xtra2 = 0;
440                 }
441                 o_ptr->xtra1 = 0;
442         }
443
444         if (z_older_than(10, 2, 3))
445         {
446                 o_ptr->xtra3 = 0;
447                 o_ptr->xtra4 = 0;
448                 o_ptr->xtra5 = 0;
449                 if ((o_ptr->tval == TV_CHEST) || (o_ptr->tval == TV_CAPTURE))
450                 {
451                         o_ptr->xtra3 = o_ptr->xtra1;
452                         o_ptr->xtra1 = 0;
453                 }
454                 if (o_ptr->tval == TV_CAPTURE)
455                 {
456                         if (r_info[o_ptr->pval].flags1 & RF1_FORCE_MAXHP)
457                                 o_ptr->xtra5 = maxroll(r_info[o_ptr->pval].hdice, r_info[o_ptr->pval].hside);
458                         else
459                                 o_ptr->xtra5 = damroll(r_info[o_ptr->pval].hdice, r_info[o_ptr->pval].hside);
460                         if (ironman_nightmare)
461                         {
462                                 o_ptr->xtra5 = (s16b)MIN(30000, o_ptr->xtra5*2L);
463                         }
464                         o_ptr->xtra4 = o_ptr->xtra5;
465                 }
466         }
467         else
468         {
469                 rd_byte(&o_ptr->xtra3);
470                 if (h_older_than(1, 3, 0, 1))
471                 {
472                         if (object_is_smith(o_ptr) && o_ptr->xtra3 >= 1+96)
473                                 o_ptr->xtra3 += -96 + MIN_SPECIAL_ESSENCE;
474                 }
475
476                 rd_s16b(&o_ptr->xtra4);
477                 rd_s16b(&o_ptr->xtra5);
478         }
479
480         if (z_older_than(11, 0, 5) && (((o_ptr->tval == TV_LITE) && ((o_ptr->sval == SV_LITE_TORCH) || (o_ptr->sval == SV_LITE_LANTERN))) || (o_ptr->tval == TV_FLASK)))
481         {
482                 o_ptr->xtra4 = o_ptr->pval;
483                 o_ptr->pval = 0;
484         }
485
486         rd_byte(&o_ptr->feeling);
487
488         /* Inscription */
489         rd_string(buf, sizeof(buf));
490
491         /* Save the inscription */
492         if (buf[0]) o_ptr->inscription = quark_add(buf);
493
494         rd_string(buf, sizeof(buf));
495         if (buf[0]) o_ptr->art_name = quark_add(buf);
496
497         /* The Python object */
498         {
499                 s32b tmp32s;
500
501                 rd_s32b(&tmp32s);
502                 strip_bytes(tmp32s);
503         }
504
505         /* Mega-Hack -- handle "dungeon objects" later */
506         if ((o_ptr->k_idx >= 445) && (o_ptr->k_idx <= 479)) return;
507
508         if (z_older_than(10, 4, 10) && (o_ptr->name2 == EGO_YOIYAMI)) o_ptr->k_idx = lookup_kind(TV_SOFT_ARMOR, SV_YOIYAMI_ROBE);
509
510         if (z_older_than(10, 4, 9))
511         {
512                 if (have_flag(o_ptr->art_flags, TR_MAGIC_MASTERY))
513                 {
514                         remove_flag(o_ptr->art_flags, TR_MAGIC_MASTERY);
515                         add_flag(o_ptr->art_flags, TR_DEC_MANA);
516                 }
517         }
518
519         /* Paranoia */
520         if (object_is_fixed_artifact(o_ptr))
521         {
522                 artifact_type *a_ptr;
523
524                 /* Obtain the artifact info */
525                 a_ptr = &a_info[o_ptr->name1];
526
527                 /* Verify that artifact */
528                 if (!a_ptr->name) o_ptr->name1 = 0;
529         }
530
531         /* Paranoia */
532         if (object_is_ego(o_ptr))
533         {
534                 ego_item_type *e_ptr;
535
536                 /* Obtain the ego-item info */
537                 e_ptr = &e_info[o_ptr->name2];
538
539                 /* Verify that ego-item */
540                 if (!e_ptr->name) o_ptr->name2 = 0;
541
542         }
543 }
544
545
546 /*
547  * Read an object (New method)
548  */
549 static void rd_item(object_type *o_ptr)
550 {
551         object_kind *k_ptr;
552         u32b flags;
553         char buf[128];
554
555         if (h_older_than(1, 5, 0, 0))
556         {
557                 rd_item_old(o_ptr);
558                 return;
559         }
560
561         /*** Item save flags ***/
562         rd_u32b(&flags);
563
564         /*** Read un-obvious elements ***/
565         /* Kind */
566         rd_s16b(&o_ptr->k_idx);
567
568         /* Location */
569         rd_byte(&o_ptr->iy);
570         rd_byte(&o_ptr->ix);
571
572         /* Type/Subtype */
573         k_ptr = &k_info[o_ptr->k_idx];
574         o_ptr->tval = k_ptr->tval;
575         o_ptr->sval = k_ptr->sval;
576
577         /* Special pval */
578         if (flags & SAVE_ITEM_PVAL) rd_s16b(&o_ptr->pval);
579         else o_ptr->pval = 0;
580
581         if (flags & SAVE_ITEM_DISCOUNT) rd_byte(&o_ptr->discount);
582         else o_ptr->discount = 0;
583         if (flags & SAVE_ITEM_NUMBER) rd_byte(&o_ptr->number);
584         else o_ptr->number = 1;
585
586         rd_s16b(&o_ptr->weight);
587
588         if (flags & SAVE_ITEM_NAME1) rd_byte(&o_ptr->name1);
589         else o_ptr->name1 = 0;
590         if (flags & SAVE_ITEM_NAME2) rd_byte(&o_ptr->name2);
591         else o_ptr->name2 = 0;
592         if (flags & SAVE_ITEM_TIMEOUT) rd_s16b(&o_ptr->timeout);
593         else o_ptr->timeout = 0;
594
595         if (flags & SAVE_ITEM_TO_H) rd_s16b(&o_ptr->to_h);
596         else o_ptr->to_h = 0;
597         if (flags & SAVE_ITEM_TO_D) rd_s16b(&o_ptr->to_d);
598         else o_ptr->to_d = 0;
599         if (flags & SAVE_ITEM_TO_A) rd_s16b(&o_ptr->to_a);
600         else o_ptr->to_a = 0;
601
602         if (flags & SAVE_ITEM_AC) rd_s16b(&o_ptr->ac);
603         else o_ptr->ac = 0;
604
605         if (flags & SAVE_ITEM_DD) rd_byte(&o_ptr->dd);
606         else o_ptr->dd = 0;
607         if (flags & SAVE_ITEM_DS) rd_byte(&o_ptr->ds);
608         else o_ptr->ds = 0;
609
610         if (flags & SAVE_ITEM_IDENT) rd_byte(&o_ptr->ident);
611         else o_ptr->ident = 0;
612
613         if (flags & SAVE_ITEM_MARKED) rd_byte(&o_ptr->marked);
614         else o_ptr->marked = 0;
615
616         /* Object flags */
617         if (flags & SAVE_ITEM_ART_FLAGS0) rd_u32b(&o_ptr->art_flags[0]);
618         else o_ptr->art_flags[0] = 0;
619         if (flags & SAVE_ITEM_ART_FLAGS1) rd_u32b(&o_ptr->art_flags[1]);
620         else o_ptr->art_flags[1] = 0;
621         if (flags & SAVE_ITEM_ART_FLAGS2) rd_u32b(&o_ptr->art_flags[2]);
622         else o_ptr->art_flags[2] = 0;
623         if (flags & SAVE_ITEM_ART_FLAGS3) rd_u32b(&o_ptr->art_flags[3]);
624         else o_ptr->art_flags[3] = 0;
625
626         if (flags & SAVE_ITEM_CURSE_FLAGS) rd_u32b(&o_ptr->curse_flags);
627         else o_ptr->curse_flags = 0;
628
629         /* Monster holding object */
630         if (flags & SAVE_ITEM_HELD_M_IDX) rd_s16b(&o_ptr->held_m_idx);
631         else o_ptr->held_m_idx = 0;
632
633         /* Special powers */
634         if (flags & SAVE_ITEM_XTRA1) rd_byte(&o_ptr->xtra1);
635         else o_ptr->xtra1 = 0;
636         if (flags & SAVE_ITEM_XTRA2) rd_byte(&o_ptr->xtra2);
637         else o_ptr->xtra2 = 0;
638
639         if (flags & SAVE_ITEM_XTRA3) rd_byte(&o_ptr->xtra3);
640         else o_ptr->xtra3 = 0;
641
642         if (flags & SAVE_ITEM_XTRA4) rd_s16b(&o_ptr->xtra4);
643         else o_ptr->xtra4 = 0;
644         if (flags & SAVE_ITEM_XTRA5) rd_s16b(&o_ptr->xtra5);
645         else o_ptr->xtra5 = 0;
646
647         if (flags & SAVE_ITEM_FEELING) rd_byte(&o_ptr->feeling);
648         else o_ptr->feeling = 0;
649
650         if (flags & SAVE_ITEM_INSCRIPTION)
651         {
652                 rd_string(buf, sizeof(buf));
653                 o_ptr->inscription = quark_add(buf);
654         }
655         else o_ptr->inscription = 0;
656
657         if (flags & SAVE_ITEM_ART_NAME)
658         {
659                 rd_string(buf, sizeof(buf));
660                 o_ptr->art_name = quark_add(buf);
661         }
662         else o_ptr->art_name = 0;
663 }
664
665
666 /*
667  * Read a monster (Old method)
668  */
669 static void rd_monster_old(monster_type *m_ptr)
670 {
671         byte tmp8u;
672         char buf[128];
673
674         /* Read the monster race */
675         rd_s16b(&m_ptr->r_idx);
676
677         if (z_older_than(11, 0, 12))
678                 m_ptr->ap_r_idx = m_ptr->r_idx;
679         else
680                 rd_s16b(&m_ptr->ap_r_idx);
681
682         if (z_older_than(11, 0, 14))
683         {
684                 monster_race *r_ptr = &r_info[m_ptr->r_idx];
685
686                 m_ptr->sub_align = SUB_ALIGN_NEUTRAL;
687                 if (r_ptr->flags3 & RF3_EVIL) m_ptr->sub_align |= SUB_ALIGN_EVIL;
688                 if (r_ptr->flags3 & RF3_GOOD) m_ptr->sub_align |= SUB_ALIGN_GOOD;
689         }
690         else
691                 rd_byte(&m_ptr->sub_align);
692
693         /* Read the other information */
694         rd_byte(&m_ptr->fy);
695         rd_byte(&m_ptr->fx);
696         rd_s16b(&m_ptr->hp);
697         rd_s16b(&m_ptr->maxhp);
698         if (z_older_than(11, 0, 5))
699         {
700                 m_ptr->max_maxhp = m_ptr->maxhp;
701         }
702         else
703         {
704                 rd_s16b(&m_ptr->max_maxhp);
705         }
706         rd_s16b(&m_ptr->mtimed[MTIMED_CSLEEP]);
707         rd_byte(&m_ptr->mspeed);
708         if (z_older_than(10, 4, 2))
709         {
710                 rd_byte(&tmp8u);
711                 m_ptr->energy_need = (s16b)tmp8u;
712         }
713         else rd_s16b(&m_ptr->energy_need);
714
715         if (z_older_than(11, 0, 13))
716                 m_ptr->energy_need = 100 - m_ptr->energy_need;
717
718         if (z_older_than(10,0,7))
719         {
720                 m_ptr->mtimed[MTIMED_FAST] = 0;
721                 m_ptr->mtimed[MTIMED_SLOW] = 0;
722         }
723         else
724         {
725                 rd_byte(&tmp8u);
726                 m_ptr->mtimed[MTIMED_FAST] = (s16b)tmp8u;
727                 rd_byte(&tmp8u);
728                 m_ptr->mtimed[MTIMED_SLOW] = (s16b)tmp8u;
729         }
730         rd_byte(&tmp8u);
731         m_ptr->mtimed[MTIMED_STUNNED] = (s16b)tmp8u;
732         rd_byte(&tmp8u);
733         m_ptr->mtimed[MTIMED_CONFUSED] = (s16b)tmp8u;
734         rd_byte(&tmp8u);
735         m_ptr->mtimed[MTIMED_MONFEAR] = (s16b)tmp8u;
736
737         if (z_older_than(10,0,10))
738         {
739                 reset_target(m_ptr);
740         }
741         else if (z_older_than(10,0,11))
742         {
743                 s16b tmp16s;
744                 rd_s16b(&tmp16s);
745                 reset_target(m_ptr);
746         }
747         else
748         {
749                 rd_s16b(&m_ptr->target_y);
750                 rd_s16b(&m_ptr->target_x);
751         }
752
753         rd_byte(&tmp8u);
754         m_ptr->mtimed[MTIMED_INVULNER] = (s16b)tmp8u;
755
756         if (!(z_major == 2 && z_minor == 0 && z_patch == 6))
757                 rd_u32b(&m_ptr->smart);
758         else
759                 m_ptr->smart = 0;
760
761         if (z_older_than(10, 4, 5))
762                 m_ptr->exp = 0;
763         else
764                 rd_u32b(&m_ptr->exp);
765
766         if (z_older_than(10, 2, 2))
767         {
768                 if (m_ptr->r_idx < 0)
769                 {
770                         m_ptr->r_idx = (0-m_ptr->r_idx);
771                         m_ptr->mflag2 |= MFLAG2_KAGE;
772                 }
773         }
774         else
775         {
776                 rd_byte(&m_ptr->mflag2);
777         }
778
779         if (z_older_than(11, 0, 12))
780         {
781                 if (m_ptr->mflag2 & MFLAG2_KAGE)
782                         m_ptr->ap_r_idx = MON_KAGE;
783         }
784
785         if (z_older_than(10, 1, 3))
786         {
787                 m_ptr->nickname = 0;
788         }
789         else
790         {
791                 rd_string(buf, sizeof(buf));
792                 if (buf[0]) m_ptr->nickname = quark_add(buf);
793         }
794
795         rd_byte(&tmp8u);
796 }
797
798
799 /*
800  * Read a monster (New method)
801  */
802 static void rd_monster(monster_type *m_ptr)
803 {
804         u32b flags;
805         char buf[128];
806         byte tmp8u;
807
808         if (h_older_than(1, 5, 0, 0))
809         {
810                 rd_monster_old(m_ptr);
811                 return;
812         }
813
814         /*** Monster save flags ***/
815         rd_u32b(&flags);
816
817         /*** Read un-obvious elements ***/
818
819         /* Read the monster race */
820         rd_s16b(&m_ptr->r_idx);
821
822         /* Read the other information */
823         rd_byte(&m_ptr->fy);
824         rd_byte(&m_ptr->fx);
825         rd_s16b(&m_ptr->hp);
826         rd_s16b(&m_ptr->maxhp);
827         rd_s16b(&m_ptr->max_maxhp);
828
829         /* Monster race index of its appearance */
830         if (flags & SAVE_MON_AP_R_IDX) rd_s16b(&m_ptr->ap_r_idx);
831         else m_ptr->ap_r_idx = m_ptr->r_idx;
832
833         if (flags & SAVE_MON_SUB_ALIGN) rd_byte(&m_ptr->sub_align);
834         else m_ptr->sub_align = 0;
835
836         if (flags & SAVE_MON_CSLEEP) rd_s16b(&m_ptr->mtimed[MTIMED_CSLEEP]);
837         else m_ptr->mtimed[MTIMED_CSLEEP] = 0;
838
839         rd_byte(&m_ptr->mspeed);
840
841         rd_s16b(&m_ptr->energy_need);
842
843         if (flags & SAVE_MON_FAST)
844         {
845                 rd_byte(&tmp8u);
846                 m_ptr->mtimed[MTIMED_FAST] = (s16b)tmp8u;
847         }
848         else m_ptr->mtimed[MTIMED_FAST] = 0;
849         if (flags & SAVE_MON_SLOW)
850         {
851                 rd_byte(&tmp8u);
852                 m_ptr->mtimed[MTIMED_SLOW] = (s16b)tmp8u;
853         }
854         else m_ptr->mtimed[MTIMED_SLOW] = 0;
855         if (flags & SAVE_MON_STUNNED)
856         {
857                 rd_byte(&tmp8u);
858                 m_ptr->mtimed[MTIMED_STUNNED] = (s16b)tmp8u;
859         }
860         else m_ptr->mtimed[MTIMED_STUNNED] = 0;
861         if (flags & SAVE_MON_CONFUSED)
862         {
863                 rd_byte(&tmp8u);
864                 m_ptr->mtimed[MTIMED_CONFUSED] = (s16b)tmp8u;
865         }
866         else m_ptr->mtimed[MTIMED_CONFUSED] = 0;
867         if (flags & SAVE_MON_MONFEAR)
868         {
869                 rd_byte(&tmp8u);
870                 m_ptr->mtimed[MTIMED_MONFEAR] = (s16b)tmp8u;
871         }
872         else m_ptr->mtimed[MTIMED_MONFEAR] = 0;
873
874         if (flags & SAVE_MON_TARGET_Y) rd_s16b(&m_ptr->target_y);
875         else m_ptr->target_y = 0;
876         if (flags & SAVE_MON_TARGET_X) rd_s16b(&m_ptr->target_x);
877         else m_ptr->target_x = 0;
878
879         if (flags & SAVE_MON_INVULNER)
880         {
881                 rd_byte(&tmp8u);
882                 m_ptr->mtimed[MTIMED_INVULNER] = (s16b)tmp8u;
883         }
884         else m_ptr->mtimed[MTIMED_INVULNER] = 0;
885
886         if (flags & SAVE_MON_SMART) rd_u32b(&m_ptr->smart);
887         else m_ptr->smart = 0;
888
889         if (flags & SAVE_MON_EXP) rd_u32b(&m_ptr->exp);
890         else m_ptr->exp = 0;
891
892         m_ptr->mflag = 0; /* Not saved */
893
894         if (flags & SAVE_MON_MFLAG2) rd_byte(&m_ptr->mflag2);
895         else m_ptr->mflag2 = 0;
896
897         if (flags & SAVE_MON_NICKNAME) 
898         {
899                 rd_string(buf, sizeof(buf));
900                 m_ptr->nickname = quark_add(buf);
901         }
902         else m_ptr->nickname = 0;
903
904         if (flags & SAVE_MON_PARENT) rd_s16b(&m_ptr->parent_m_idx);
905         else m_ptr->parent_m_idx = 0;
906 }
907
908
909 /*
910  * Old monster bit flags of racial resistances
911  */
912 #define RF3_IM_ACID         0x00010000  /* Resist acid a lot */
913 #define RF3_IM_ELEC         0x00020000  /* Resist elec a lot */
914 #define RF3_IM_FIRE         0x00040000  /* Resist fire a lot */
915 #define RF3_IM_COLD         0x00080000  /* Resist cold a lot */
916 #define RF3_IM_POIS         0x00100000  /* Resist poison a lot */
917 #define RF3_RES_TELE        0x00200000  /* Resist teleportation */
918 #define RF3_RES_NETH        0x00400000  /* Resist nether a lot */
919 #define RF3_RES_WATE        0x00800000  /* Resist water */
920 #define RF3_RES_PLAS        0x01000000  /* Resist plasma */
921 #define RF3_RES_NEXU        0x02000000  /* Resist nexus */
922 #define RF3_RES_DISE        0x04000000  /* Resist disenchantment */
923 #define RF3_RES_ALL         0x08000000  /* Resist all */
924
925 #define MOVE_RF3_TO_RFR(R_PTR,RF3,RFR) \
926 {\
927         if ((R_PTR)->r_flags3 & (RF3)) \
928         { \
929                 (R_PTR)->r_flags3 &= ~(RF3); \
930                 (R_PTR)->r_flagsr |= (RFR); \
931         } \
932 }
933
934 #define RF4_BR_TO_RFR(R_PTR,RF4_BR,RFR) \
935 {\
936         if ((R_PTR)->r_flags4 & (RF4_BR)) \
937         { \
938                 (R_PTR)->r_flagsr |= (RFR); \
939         } \
940 }
941
942 #define RF4_BR_LITE         0x00004000  /* Breathe Lite */
943 #define RF4_BR_DARK         0x00008000  /* Breathe Dark */
944 #define RF4_BR_CONF         0x00010000  /* Breathe Confusion */
945 #define RF4_BR_SOUN         0x00020000  /* Breathe Sound */
946 #define RF4_BR_CHAO         0x00040000  /* Breathe Chaos */
947 #define RF4_BR_TIME         0x00200000  /* Breathe Time */
948 #define RF4_BR_INER         0x00400000  /* Breathe Inertia */
949 #define RF4_BR_GRAV         0x00800000  /* Breathe Gravity */
950 #define RF4_BR_SHAR         0x01000000  /* Breathe Shards */
951 #define RF4_BR_WALL         0x04000000  /* Breathe Force */
952 /*
953  * Read the monster lore
954  */
955 static void rd_lore(int r_idx)
956 {
957         byte tmp8u;
958
959         monster_race *r_ptr = &r_info[r_idx];
960
961         /* Count sights/deaths/kills */
962         rd_s16b(&r_ptr->r_sights);
963         rd_s16b(&r_ptr->r_deaths);
964         rd_s16b(&r_ptr->r_pkills);
965         if (h_older_than(1, 7, 0, 5))
966         {
967                 r_ptr->r_akills = r_ptr->r_pkills;
968         }
969         else
970         {
971                 rd_s16b(&r_ptr->r_akills);
972         }
973         rd_s16b(&r_ptr->r_tkills);
974
975         /* Count wakes and ignores */
976         rd_byte(&r_ptr->r_wake);
977         rd_byte(&r_ptr->r_ignore);
978
979         /* Extra stuff */
980         rd_byte(&r_ptr->r_xtra1);
981         rd_byte(&r_ptr->r_xtra2);
982
983         /* Count drops */
984         rd_byte(&r_ptr->r_drop_gold);
985         rd_byte(&r_ptr->r_drop_item);
986
987         /* Count spells */
988         rd_byte(&tmp8u);
989         rd_byte(&r_ptr->r_cast_spell);
990
991         /* Count blows of each type */
992         rd_byte(&r_ptr->r_blows[0]);
993         rd_byte(&r_ptr->r_blows[1]);
994         rd_byte(&r_ptr->r_blows[2]);
995         rd_byte(&r_ptr->r_blows[3]);
996
997         /* Memorize flags */
998         rd_u32b(&r_ptr->r_flags1);
999         rd_u32b(&r_ptr->r_flags2);
1000         rd_u32b(&r_ptr->r_flags3);
1001         rd_u32b(&r_ptr->r_flags4);
1002         rd_u32b(&r_ptr->r_flags5);
1003         rd_u32b(&r_ptr->r_flags6);
1004         if (h_older_than(1, 5, 0, 3))
1005         {
1006                 r_ptr->r_flagsr = 0L;
1007
1008                 /* Move RF3 resistance flags to RFR */
1009                 MOVE_RF3_TO_RFR(r_ptr, RF3_IM_ACID,  RFR_IM_ACID);
1010                 MOVE_RF3_TO_RFR(r_ptr, RF3_IM_ELEC,  RFR_IM_ELEC);
1011                 MOVE_RF3_TO_RFR(r_ptr, RF3_IM_FIRE,  RFR_IM_FIRE);
1012                 MOVE_RF3_TO_RFR(r_ptr, RF3_IM_COLD,  RFR_IM_COLD);
1013                 MOVE_RF3_TO_RFR(r_ptr, RF3_IM_POIS,  RFR_IM_POIS);
1014                 MOVE_RF3_TO_RFR(r_ptr, RF3_RES_TELE, RFR_RES_TELE);
1015                 MOVE_RF3_TO_RFR(r_ptr, RF3_RES_NETH, RFR_RES_NETH);
1016                 MOVE_RF3_TO_RFR(r_ptr, RF3_RES_WATE, RFR_RES_WATE);
1017                 MOVE_RF3_TO_RFR(r_ptr, RF3_RES_PLAS, RFR_RES_PLAS);
1018                 MOVE_RF3_TO_RFR(r_ptr, RF3_RES_NEXU, RFR_RES_NEXU);
1019                 MOVE_RF3_TO_RFR(r_ptr, RF3_RES_DISE, RFR_RES_DISE);
1020                 MOVE_RF3_TO_RFR(r_ptr, RF3_RES_ALL,  RFR_RES_ALL);
1021
1022                 /* Separate breathers resistance from RF4 to RFR */
1023                 RF4_BR_TO_RFR(r_ptr, RF4_BR_LITE, RFR_RES_LITE);
1024                 RF4_BR_TO_RFR(r_ptr, RF4_BR_DARK, RFR_RES_DARK);
1025                 RF4_BR_TO_RFR(r_ptr, RF4_BR_SOUN, RFR_RES_SOUN);
1026                 RF4_BR_TO_RFR(r_ptr, RF4_BR_CHAO, RFR_RES_CHAO);
1027                 RF4_BR_TO_RFR(r_ptr, RF4_BR_TIME, RFR_RES_TIME);
1028                 RF4_BR_TO_RFR(r_ptr, RF4_BR_INER, RFR_RES_INER);
1029                 RF4_BR_TO_RFR(r_ptr, RF4_BR_GRAV, RFR_RES_GRAV);
1030                 RF4_BR_TO_RFR(r_ptr, RF4_BR_SHAR, RFR_RES_SHAR);
1031                 RF4_BR_TO_RFR(r_ptr, RF4_BR_WALL, RFR_RES_WALL);
1032
1033                 /* Resist confusion is merged to RF3_NO_CONF */
1034                 if (r_ptr->r_flags4 & RF4_BR_CONF) r_ptr->r_flags3 |= RF3_NO_CONF;
1035
1036                 /* Misc resistance hack to RFR */
1037                 if (r_idx == MON_STORMBRINGER) r_ptr->r_flagsr |= RFR_RES_CHAO;
1038                 if (r_ptr->r_flags3 & RF3_ORC) r_ptr->r_flagsr |= RFR_RES_DARK;
1039         }
1040         else
1041         {
1042                 rd_u32b(&r_ptr->r_flagsr);
1043         }
1044
1045         /* Read the "Racial" monster limit per level */
1046         rd_byte(&r_ptr->max_num);
1047
1048         /* Location in saved floor */
1049         rd_s16b(&r_ptr->floor_id);
1050
1051         /* Later (?) */
1052         rd_byte(&tmp8u);
1053
1054         /* Repair the lore flags */
1055         r_ptr->r_flags1 &= r_ptr->flags1;
1056         r_ptr->r_flags2 &= r_ptr->flags2;
1057         r_ptr->r_flags3 &= r_ptr->flags3;
1058         r_ptr->r_flags4 &= r_ptr->flags4;
1059         r_ptr->r_flags5 &= r_ptr->flags5;
1060         r_ptr->r_flags6 &= r_ptr->flags6;
1061         r_ptr->r_flagsr &= r_ptr->flagsr;
1062 }
1063
1064
1065
1066
1067 /*
1068  * Add the item "o_ptr" to the inventory of the "Home"
1069  *
1070  * In all cases, return the slot (or -1) where the object was placed
1071  *
1072  * Note that this is a hacked up version of "inven_carry()".
1073  *
1074  * Also note that it may not correctly "adapt" to "knowledge" bacoming
1075  * known, the player may have to pick stuff up and drop it again.
1076  */
1077 static void home_carry(store_type *st_ptr, object_type *o_ptr)
1078 {
1079         int                             slot;
1080         s32b                       value;
1081         int     i;
1082         object_type *j_ptr;
1083
1084
1085         /* Check each existing item (try to combine) */
1086         for (slot = 0; slot < st_ptr->stock_num; slot++)
1087         {
1088                 /* Get the existing item */
1089                 j_ptr = &st_ptr->stock[slot];
1090
1091                 /* The home acts just like the player */
1092                 if (object_similar(j_ptr, o_ptr))
1093                 {
1094                         /* Save the new number of items */
1095                         object_absorb(j_ptr, o_ptr);
1096
1097                         /* All done */
1098                         return;
1099                 }
1100         }
1101
1102         /* No space? */
1103         if (st_ptr->stock_num >= STORE_INVEN_MAX * 10) {
1104                 return;
1105         }
1106
1107         /* Determine the "value" of the item */
1108         value = object_value(o_ptr);
1109
1110         /* Check existing slots to see if we must "slide" */
1111         for (slot = 0; slot < st_ptr->stock_num; slot++)
1112         {
1113                 if (object_sort_comp(o_ptr, value, &st_ptr->stock[slot])) break;
1114         }
1115
1116         /* Slide the others up */
1117         for (i = st_ptr->stock_num; i > slot; i--)
1118         {
1119                 st_ptr->stock[i] = st_ptr->stock[i-1];
1120         }
1121
1122         /* More stuff now */
1123         st_ptr->stock_num++;
1124
1125         /* Insert the new item */
1126         st_ptr->stock[slot] = *o_ptr;
1127
1128         chg_virtue(V_SACRIFICE, -1);
1129
1130         /* Return the location */
1131         return;
1132 }
1133
1134
1135 /*
1136  * Read a store
1137  */
1138 static errr rd_store(int town_number, int store_number)
1139 {
1140         store_type *st_ptr;
1141
1142         int j;
1143
1144         byte own;
1145         byte tmp8u;
1146         s16b num;
1147
1148         bool sort = FALSE;
1149
1150         if (z_older_than(10, 3, 3) && (store_number == STORE_HOME))
1151         {
1152                 st_ptr = &town[1].store[store_number];
1153                 if (st_ptr->stock_num) sort = TRUE;
1154         }
1155         else
1156         {
1157                 st_ptr = &town[town_number].store[store_number];
1158         }
1159
1160         /* Read the basic info */
1161         rd_s32b(&st_ptr->store_open);
1162         rd_s16b(&st_ptr->insult_cur);
1163         rd_byte(&own);
1164         if (z_older_than(11, 0, 4))
1165         {
1166                 rd_byte(&tmp8u);
1167                 num = tmp8u;
1168         }
1169         else
1170         {
1171                 rd_s16b(&num);
1172         }
1173         rd_s16b(&st_ptr->good_buy);
1174         rd_s16b(&st_ptr->bad_buy);
1175
1176         /* Read last visit */
1177         rd_s32b(&st_ptr->last_visit);
1178
1179         /* Extract the owner (see above) */
1180         st_ptr->owner = own;
1181
1182         /* Read the items */
1183         for (j = 0; j < num; j++)
1184         {
1185                 object_type forge;
1186                 object_type *q_ptr;
1187
1188                 /* Get local object */
1189                 q_ptr = &forge;
1190
1191                 /* Wipe the object */
1192                 object_wipe(q_ptr);
1193
1194                 /* Read the item */
1195                 rd_item(q_ptr);
1196
1197                 /* Acquire valid items */
1198                 if (st_ptr->stock_num < (store_number == STORE_HOME ? (STORE_INVEN_MAX) * 10 : (store_number == STORE_MUSEUM ? (STORE_INVEN_MAX) * 50 : STORE_INVEN_MAX)))
1199                 {
1200                         int k;
1201                         if (sort)
1202                         {
1203                                 home_carry(st_ptr, q_ptr);
1204                         }
1205                         else
1206                         {
1207                                 k = st_ptr->stock_num++;
1208
1209                                 /* Acquire the item */
1210                                 object_copy(&st_ptr->stock[k], q_ptr);
1211                         }
1212                 }
1213         }
1214
1215         /* Success */
1216         return (0);
1217 }
1218
1219
1220
1221 /*
1222  * Read RNG state (added in 2.8.0)
1223  */
1224 static void rd_randomizer(void)
1225 {
1226         int i;
1227
1228         u16b tmp16u;
1229
1230         /* Tmp */
1231         rd_u16b(&tmp16u);
1232
1233         /* Place */
1234         rd_u16b(&Rand_place);
1235
1236         /* State */
1237         for (i = 0; i < RAND_DEG; i++)
1238         {
1239                 rd_u32b(&Rand_state[i]);
1240         }
1241
1242         /* Accept */
1243         Rand_quick = FALSE;
1244 }
1245
1246
1247
1248 /*
1249  * Read options (ignore most pre-2.8.0 options)
1250  *
1251  * Note that the normal options are now stored as a set of 256 bit flags,
1252  * plus a set of 256 bit masks to indicate which bit flags were defined
1253  * at the time the savefile was created.  This will allow new options
1254  * to be added, and old options to be removed, at any time, without
1255  * hurting old savefiles.
1256  *
1257  * The window options are stored in the same way, but note that each
1258  * window gets 32 options, and their order is fixed by certain defines.
1259  */
1260 static void rd_options(void)
1261 {
1262         int i, n;
1263
1264         byte b;
1265
1266         u16b c;
1267
1268         u32b flag[8];
1269         u32b mask[8];
1270
1271
1272         /*** Oops ***/
1273
1274         /* Ignore old options */
1275         strip_bytes(16);
1276
1277
1278         /*** Special info */
1279
1280         /* Read "delay_factor" */
1281         rd_byte(&b);
1282         delay_factor = b;
1283
1284         /* Read "hitpoint_warn" */
1285         rd_byte(&b);
1286         hitpoint_warn = b;
1287
1288         /* Read "mana_warn" */
1289         if(h_older_than(1, 7, 0, 0))
1290         {
1291                 mana_warn=2;
1292         }
1293         else 
1294         {
1295                 rd_byte(&b);
1296                 mana_warn = b;
1297         }
1298
1299
1300         /*** Cheating options ***/
1301
1302         rd_u16b(&c);
1303
1304         if (c & 0x0002) p_ptr->wizard = TRUE;
1305
1306         cheat_peek = (c & 0x0100) ? TRUE : FALSE;
1307         cheat_hear = (c & 0x0200) ? TRUE : FALSE;
1308         cheat_room = (c & 0x0400) ? TRUE : FALSE;
1309         cheat_xtra = (c & 0x0800) ? TRUE : FALSE;
1310         cheat_know = (c & 0x1000) ? TRUE : FALSE;
1311         cheat_live = (c & 0x2000) ? TRUE : FALSE;
1312         cheat_save = (c & 0x4000) ? TRUE : FALSE;
1313
1314         rd_byte((byte *)&autosave_l);
1315         rd_byte((byte *)&autosave_t);
1316         rd_s16b(&autosave_freq);
1317
1318
1319         /*** Normal Options ***/
1320
1321         /* Read the option flags */
1322         for (n = 0; n < 8; n++) rd_u32b(&flag[n]);
1323
1324         /* Read the option masks */
1325         for (n = 0; n < 8; n++) rd_u32b(&mask[n]);
1326
1327         /* Analyze the options */
1328         for (n = 0; n < 8; n++)
1329         {
1330                 /* Analyze the options */
1331                 for (i = 0; i < 32; i++)
1332                 {
1333                         /* Process valid flags */
1334                         if (mask[n] & (1L << i))
1335                         {
1336                                 /* Process valid flags */
1337                                 if (option_mask[n] & (1L << i))
1338                                 {
1339                                         /* Set */
1340                                         if (flag[n] & (1L << i))
1341                                         {
1342                                                 /* Set */
1343                                                 option_flag[n] |= (1L << i);
1344                                         }
1345
1346                                         /* Clear */
1347                                         else
1348                                         {
1349                                                 /* Clear */
1350                                                 option_flag[n] &= ~(1L << i);
1351                                         }
1352                                 }
1353                         }
1354                 }
1355         }
1356
1357         if (z_older_than(10, 4, 5))
1358         {
1359                 if (option_flag[5] & (0x00000001 << 4)) option_flag[5] &= ~(0x00000001 << 4);
1360                 else option_flag[5] |= (0x00000001 << 4);
1361                 if (option_flag[2] & (0x00000001 << 5)) option_flag[2] &= ~(0x00000001 << 5);
1362                 else option_flag[2] |= (0x00000001 << 5);
1363                 if (option_flag[4] & (0x00000001 << 5)) option_flag[4] &= ~(0x00000001 << 5);
1364                 else option_flag[4] |= (0x00000001 << 5);
1365                 if (option_flag[5] & (0x00000001 << 0)) option_flag[5] &= ~(0x00000001 << 0);
1366                 else option_flag[5] |= (0x00000001 << 0);
1367                 if (option_flag[5] & (0x00000001 << 12)) option_flag[5] &= ~(0x00000001 << 12);
1368                 else option_flag[5] |= (0x00000001 << 12);
1369                 if (option_flag[1] & (0x00000001 << 0)) option_flag[1] &= ~(0x00000001 << 0);
1370                 else option_flag[1] |= (0x00000001 << 0);
1371                 if (option_flag[1] & (0x00000001 << 18)) option_flag[1] &= ~(0x00000001 << 18);
1372                 else option_flag[1] |= (0x00000001 << 18);
1373                 if (option_flag[1] & (0x00000001 << 19)) option_flag[1] &= ~(0x00000001 << 19);
1374                 else option_flag[1] |= (0x00000001 << 19);
1375                 if (option_flag[5] & (0x00000001 << 3)) option_flag[1] &= ~(0x00000001 << 3);
1376                 else option_flag[5] |= (0x00000001 << 3);
1377         }
1378
1379         /* Extract the options */
1380         extract_option_vars();
1381
1382
1383         /*** Window Options ***/
1384
1385         /* Read the window flags */
1386         for (n = 0; n < 8; n++) rd_u32b(&flag[n]);
1387
1388         /* Read the window masks */
1389         for (n = 0; n < 8; n++) rd_u32b(&mask[n]);
1390
1391         /* Analyze the options */
1392         for (n = 0; n < 8; n++)
1393         {
1394                 /* Analyze the options */
1395                 for (i = 0; i < 32; i++)
1396                 {
1397                         /* Process valid flags */
1398                         if (mask[n] & (1L << i))
1399                         {
1400                                 /* Process valid flags */
1401                                 if (window_mask[n] & (1L << i))
1402                                 {
1403                                         /* Set */
1404                                         if (flag[n] & (1L << i))
1405                                         {
1406                                                 /* Set */
1407                                                 window_flag[n] |= (1L << i);
1408                                         }
1409
1410                                         /* Clear */
1411                                         else
1412                                         {
1413                                                 /* Clear */
1414                                                 window_flag[n] &= ~(1L << i);
1415                                         }
1416                                 }
1417                         }
1418                 }
1419         }
1420 }
1421
1422
1423
1424
1425
1426 /*
1427  * Hack -- strip the "ghost" info
1428  *
1429  * XXX XXX XXX This is such a nasty hack it hurts.
1430  */
1431 static void rd_ghost(void)
1432 {
1433         char buf[64];
1434
1435         /* Strip name */
1436         rd_string(buf, sizeof(buf));
1437
1438         /* Strip old data */
1439         strip_bytes(60);
1440 }
1441
1442
1443 /*
1444  * Save quick start data
1445  */
1446 static void load_quick_start(void)
1447 {
1448         byte tmp8u;
1449         int i;
1450
1451         if (z_older_than(11, 0, 13))
1452         {
1453                 previous_char.quick_ok = FALSE;
1454                 return;
1455         }
1456
1457         rd_byte(&previous_char.psex);
1458         rd_byte(&previous_char.prace);
1459         rd_byte(&previous_char.pclass);
1460         rd_byte(&previous_char.pseikaku);
1461         rd_byte(&previous_char.realm1);
1462         rd_byte(&previous_char.realm2);
1463
1464         rd_s16b(&previous_char.age);
1465         rd_s16b(&previous_char.ht);
1466         rd_s16b(&previous_char.wt);
1467         rd_s16b(&previous_char.sc);
1468         rd_s32b(&previous_char.au);
1469
1470         for (i = 0; i < 6; i++) rd_s16b(&previous_char.stat_max[i]);
1471         for (i = 0; i < 6; i++) rd_s16b(&previous_char.stat_max_max[i]);
1472
1473         for (i = 0; i < PY_MAX_LEVEL; i++) rd_s16b(&previous_char.player_hp[i]);
1474
1475         rd_s16b(&previous_char.chaos_patron);
1476
1477         for (i = 0; i < 8; i++) rd_s16b(&previous_char.vir_types[i]);
1478
1479         for (i = 0; i < 4; i++) rd_string(previous_char.history[i], sizeof(previous_char.history[i]));
1480
1481         /* UNUSED : Was number of random quests */
1482         rd_byte(&tmp8u);
1483
1484         rd_byte(&tmp8u);
1485         previous_char.quick_ok = (bool)tmp8u;
1486 }
1487
1488 /*
1489  * Read the "extra" information
1490  */
1491 static void rd_extra(void)
1492 {
1493         int i,j;
1494
1495         byte tmp8u;
1496         s16b tmp16s;
1497         u16b tmp16u;
1498
1499         rd_string(player_name, sizeof(player_name));
1500
1501         rd_string(p_ptr->died_from, sizeof(p_ptr->died_from));
1502
1503         if (!h_older_than(1, 7, 0, 1))
1504         {
1505                 char buf[1024];
1506
1507                 /* Read the message */
1508                 rd_string(buf, sizeof buf);
1509                 if (buf[0]) p_ptr->last_message = string_make(buf);
1510         }
1511
1512         load_quick_start();
1513
1514         for (i = 0; i < 4; i++)
1515         {
1516                 rd_string(p_ptr->history[i], sizeof(p_ptr->history[i]));
1517         }
1518
1519         /* Class/Race/Seikaku/Gender/Spells */
1520         rd_byte(&p_ptr->prace);
1521         rd_byte(&p_ptr->pclass);
1522         rd_byte(&p_ptr->pseikaku);
1523         rd_byte(&p_ptr->psex);
1524         rd_byte(&p_ptr->realm1);
1525         rd_byte(&p_ptr->realm2);
1526         rd_byte(&tmp8u); /* oops */
1527
1528         if (z_older_than(10, 4, 4))
1529         {
1530                 if (p_ptr->realm1 == 9) p_ptr->realm1 = REALM_MUSIC;
1531                 if (p_ptr->realm2 == 9) p_ptr->realm2 = REALM_MUSIC;
1532                 if (p_ptr->realm1 == 10) p_ptr->realm1 = REALM_HISSATSU;
1533                 if (p_ptr->realm2 == 10) p_ptr->realm2 = REALM_HISSATSU;
1534         }
1535
1536         /* Special Race/Class info */
1537         rd_byte(&p_ptr->hitdie);
1538         rd_u16b(&p_ptr->expfact);
1539
1540         /* Age/Height/Weight */
1541         rd_s16b(&p_ptr->age);
1542         rd_s16b(&p_ptr->ht);
1543         rd_s16b(&p_ptr->wt);
1544
1545         /* Read the stat info */
1546         for (i = 0; i < 6; i++) rd_s16b(&p_ptr->stat_max[i]);
1547         for (i = 0; i < 6; i++) rd_s16b(&p_ptr->stat_max_max[i]);
1548         for (i = 0; i < 6; i++) rd_s16b(&p_ptr->stat_cur[i]);
1549
1550         strip_bytes(24); /* oops */
1551
1552         rd_s32b(&p_ptr->au);
1553
1554         rd_s32b(&p_ptr->max_exp);
1555         if (h_older_than(1, 5, 4, 1)) p_ptr->max_max_exp = p_ptr->max_exp;
1556         else rd_s32b(&p_ptr->max_max_exp);
1557         rd_s32b(&p_ptr->exp);
1558
1559         if (h_older_than(1, 7, 0, 3))
1560         {
1561                 rd_u16b(&tmp16u);
1562                 p_ptr->exp_frac = (u32b)tmp16u;
1563         }
1564         else
1565         {
1566                 rd_u32b(&p_ptr->exp_frac);
1567         }
1568
1569         rd_s16b(&p_ptr->lev);
1570
1571         for (i = 0; i < 64; i++) rd_s16b(&p_ptr->spell_exp[i]);
1572         if ((p_ptr->pclass == CLASS_SORCERER) && z_older_than(10, 4, 2))
1573         {
1574                 for (i = 0; i < 64; i++) p_ptr->spell_exp[i] = SPELL_EXP_MASTER;
1575         }
1576         if (z_older_than(10, 3, 6))
1577                 for (i = 0; i < 5; i++) for (j = 0; j < 60; j++) rd_s16b(&p_ptr->weapon_exp[i][j]);
1578         else
1579                 for (i = 0; i < 5; i++) for (j = 0; j < 64; j++) rd_s16b(&p_ptr->weapon_exp[i][j]);
1580         for (i = 0; i < 10; i++) rd_s16b(&p_ptr->skill_exp[i]);
1581         if (z_older_than(10, 4, 1))
1582         {
1583                 if (p_ptr->pclass != CLASS_BEASTMASTER) p_ptr->skill_exp[GINOU_RIDING] /= 2;
1584                 p_ptr->skill_exp[GINOU_RIDING] = MIN(p_ptr->skill_exp[GINOU_RIDING], s_info[p_ptr->pclass].s_max[GINOU_RIDING]);
1585         }
1586         if (z_older_than(10, 3, 14))
1587         {
1588                 for (i = 0; i < 108; i++) p_ptr->magic_num1[i] = 0;
1589                 for (i = 0; i < 108; i++) p_ptr->magic_num2[i] = 0;
1590         }
1591         else
1592         {
1593                 for (i = 0; i < 108; i++) rd_s32b(&p_ptr->magic_num1[i]);
1594                 for (i = 0; i < 108; i++) rd_byte(&p_ptr->magic_num2[i]);
1595                 if (h_older_than(1, 3, 0, 1))
1596                 {
1597                         if (p_ptr->pclass == CLASS_SMITH)
1598                         {
1599                                 p_ptr->magic_num1[TR_ES_ATTACK] = p_ptr->magic_num1[96];
1600                                 p_ptr->magic_num1[96] = 0;
1601                                 p_ptr->magic_num1[TR_ES_AC] = p_ptr->magic_num1[97];
1602                                 p_ptr->magic_num1[97] = 0;
1603                         }
1604                 }
1605         }
1606         if (music_singing_any()) p_ptr->action = ACTION_SING;
1607
1608         if (z_older_than(11, 0, 7))
1609         {
1610                 p_ptr->start_race = p_ptr->prace;
1611                 p_ptr->old_race1 = 0L;
1612                 p_ptr->old_race2 = 0L;
1613                 p_ptr->old_realm = 0;
1614         }
1615         else
1616         {
1617                 rd_byte(&p_ptr->start_race);
1618                 rd_s32b(&p_ptr->old_race1);
1619                 rd_s32b(&p_ptr->old_race2);
1620                 rd_s16b(&p_ptr->old_realm);
1621         }
1622
1623         if (z_older_than(10, 0, 1))
1624         {
1625                 for (i = 0; i < OLD_MAX_MANE; i++)
1626                 {
1627                         p_ptr->mane_spell[i] = -1;
1628                         p_ptr->mane_dam[i] = 0;
1629                 }
1630                 p_ptr->mane_num = 0;
1631         }
1632         else if (z_older_than(10, 2, 3))
1633         {
1634                 for (i = 0; i < OLD_MAX_MANE; i++)
1635                 {
1636                         rd_s16b(&tmp16s);
1637                         rd_s16b(&tmp16s);
1638                 }
1639                 for (i = 0; i < MAX_MANE; i++)
1640                 {
1641                         p_ptr->mane_spell[i] = -1;
1642                         p_ptr->mane_dam[i] = 0;
1643                 }
1644                 rd_s16b(&tmp16s);
1645                 p_ptr->mane_num = 0;
1646         }
1647         else
1648         {
1649                 for (i = 0; i < MAX_MANE; i++)
1650                 {
1651                         rd_s16b(&p_ptr->mane_spell[i]);
1652                         rd_s16b(&p_ptr->mane_dam[i]);
1653                 }
1654                 rd_s16b(&p_ptr->mane_num);
1655         }
1656
1657         if (z_older_than(10, 0, 3))
1658         {
1659                 determine_bounty_uniques();
1660
1661                 for (i = 0; i < MAX_KUBI; i++)
1662                 {
1663                         /* Is this bounty unique already dead? */
1664                         if (!r_info[kubi_r_idx[i]].max_num) kubi_r_idx[i] += 10000;
1665                 }
1666         }
1667         else
1668         {
1669                 for (i = 0; i < MAX_KUBI; i++)
1670                 {
1671                         rd_s16b(&kubi_r_idx[i]);
1672                 }
1673         }
1674
1675         if (z_older_than(10, 0, 3))
1676         {
1677                 battle_monsters();
1678         }
1679         else
1680         {
1681                 for (i = 0; i < 4; i++)
1682                 {
1683                         rd_s16b(&battle_mon[i]);
1684                         if (z_older_than(10, 3, 4))
1685                         {
1686                                 rd_s16b(&tmp16s);
1687                                 mon_odds[i] = tmp16s;
1688                         }
1689                         else rd_u32b(&mon_odds[i]);
1690                 }
1691         }
1692
1693         rd_s16b(&p_ptr->town_num);
1694
1695         /* Read arena and rewards information */
1696         rd_s16b(&p_ptr->arena_number);
1697         if (h_older_than(1, 5, 0, 1))
1698         {
1699                 /* Arena loser of previous version was marked number 99 */
1700                 if (p_ptr->arena_number >= 99) p_ptr->arena_number = ARENA_DEFEATED_OLD_VER;
1701         }
1702         rd_s16b(&tmp16s);
1703         p_ptr->inside_arena = (bool)tmp16s;
1704         rd_s16b(&p_ptr->inside_quest);
1705         if (z_older_than(10, 3, 5)) p_ptr->inside_battle = FALSE;
1706         else
1707         {
1708                 rd_s16b(&tmp16s);
1709                 p_ptr->inside_battle = (bool)tmp16s;
1710         }
1711         rd_byte(&p_ptr->exit_bldg);
1712         rd_byte(&tmp8u);
1713
1714         rd_s16b(&p_ptr->oldpx);
1715         rd_s16b(&p_ptr->oldpy);
1716         if (z_older_than(10, 3, 13) && !dun_level && !p_ptr->inside_arena) {p_ptr->oldpy = 33;p_ptr->oldpx = 131;}
1717
1718         /* Was p_ptr->rewards[MAX_BACT] */
1719         rd_s16b(&tmp16s);
1720         for (i = 0; i < tmp16s; i++)
1721         {
1722                 s16b tmp16s2;
1723                 rd_s16b(&tmp16s2);
1724         }
1725
1726         if (h_older_than(1, 7, 0, 3))
1727         {
1728                 rd_s16b(&tmp16s);
1729                 p_ptr->mhp = tmp16s;
1730
1731                 rd_s16b(&tmp16s);
1732                 p_ptr->chp = tmp16s;
1733
1734                 rd_u16b(&tmp16u);
1735                 p_ptr->chp_frac = (u32b)tmp16u;
1736         }
1737         else
1738         {
1739                 rd_s32b(&p_ptr->mhp);
1740                 rd_s32b(&p_ptr->chp);
1741                 rd_u32b(&p_ptr->chp_frac);
1742         }
1743
1744         if (h_older_than(1, 7, 0, 3))
1745         {
1746                 rd_s16b(&tmp16s);
1747                 p_ptr->msp = tmp16s;
1748
1749                 rd_s16b(&tmp16s);
1750                 p_ptr->csp = tmp16s;
1751
1752                 rd_u16b(&tmp16u);
1753                 p_ptr->csp_frac = (u32b)tmp16u;
1754         }
1755         else
1756         {
1757                 rd_s32b(&p_ptr->msp);
1758                 rd_s32b(&p_ptr->csp);
1759                 rd_u32b(&p_ptr->csp_frac);
1760         }
1761
1762         rd_s16b(&p_ptr->max_plv);
1763         if (z_older_than(10, 3, 8))
1764         {
1765                 rd_s16b(&max_dlv[DUNGEON_ANGBAND]);
1766         }
1767         else
1768         {
1769                 byte max = (byte)max_d_idx;
1770
1771                 rd_byte(&max);
1772
1773                 for(i = 0; i < max; i++)
1774                 {
1775                         rd_s16b(&max_dlv[i]);
1776                         if (max_dlv[i] > d_info[i].maxdepth) max_dlv[i] = d_info[i].maxdepth;
1777                 }
1778         }
1779
1780         /* Repair maximum player level XXX XXX XXX */
1781         if (p_ptr->max_plv < p_ptr->lev) p_ptr->max_plv = p_ptr->lev;
1782
1783         /* More info */
1784         strip_bytes(8);
1785         rd_s16b(&p_ptr->sc);
1786         strip_bytes(2);
1787
1788         /* Read the flags */
1789         strip_bytes(2); /* Old "rest" */
1790         rd_s16b(&p_ptr->blind);
1791         rd_s16b(&p_ptr->paralyzed);
1792         rd_s16b(&p_ptr->confused);
1793         rd_s16b(&p_ptr->food);
1794         strip_bytes(4); /* Old "food_digested" / "protection" */
1795
1796         rd_s16b(&p_ptr->energy_need);
1797         if (z_older_than(11, 0, 13))
1798                 p_ptr->energy_need = 100 - p_ptr->energy_need;
1799
1800         rd_s16b(&p_ptr->fast);
1801         rd_s16b(&p_ptr->slow);
1802         rd_s16b(&p_ptr->afraid);
1803         rd_s16b(&p_ptr->cut);
1804         rd_s16b(&p_ptr->stun);
1805         rd_s16b(&p_ptr->poisoned);
1806         rd_s16b(&p_ptr->image);
1807         rd_s16b(&p_ptr->protevil);
1808         rd_s16b(&p_ptr->invuln);
1809         if(z_older_than(10, 0, 0))
1810                 p_ptr->ult_res = 0;
1811         else
1812                 rd_s16b(&p_ptr->ult_res);
1813         rd_s16b(&p_ptr->hero);
1814         rd_s16b(&p_ptr->shero);
1815         rd_s16b(&p_ptr->shield);
1816         rd_s16b(&p_ptr->blessed);
1817         rd_s16b(&p_ptr->tim_invis);
1818         rd_s16b(&p_ptr->word_recall);
1819         if (z_older_than(10, 3, 8))
1820                 p_ptr->recall_dungeon = DUNGEON_ANGBAND;
1821         else
1822         {
1823                 rd_s16b(&tmp16s);
1824                 p_ptr->recall_dungeon = (byte)tmp16s;
1825         }
1826
1827         if (h_older_than(1, 5, 0, 0))
1828                 p_ptr->alter_reality = 0;
1829         else
1830                 rd_s16b(&p_ptr->alter_reality);
1831
1832         rd_s16b(&p_ptr->see_infra);
1833         rd_s16b(&p_ptr->tim_infra);
1834         rd_s16b(&p_ptr->oppose_fire);
1835         rd_s16b(&p_ptr->oppose_cold);
1836         rd_s16b(&p_ptr->oppose_acid);
1837         rd_s16b(&p_ptr->oppose_elec);
1838         rd_s16b(&p_ptr->oppose_pois);
1839         if (z_older_than(10,0,2)) p_ptr->tsuyoshi = 0;
1840         else rd_s16b(&p_ptr->tsuyoshi);
1841
1842         /* Old savefiles do not have the following fields... */
1843         if ((z_major == 2) && (z_minor == 0) && (z_patch == 6))
1844         {
1845                 p_ptr->tim_esp = 0;
1846                 p_ptr->wraith_form = 0;
1847                 p_ptr->resist_magic = 0;
1848                 p_ptr->tim_regen = 0;
1849                 p_ptr->kabenuke = 0;
1850                 p_ptr->tim_stealth = 0;
1851                 p_ptr->tim_levitation = 0;
1852                 p_ptr->tim_sh_touki = 0;
1853                 p_ptr->lightspeed = 0;
1854                 p_ptr->tsubureru = 0;
1855                 p_ptr->tim_res_nether = 0;
1856                 p_ptr->tim_res_time = 0;
1857                 p_ptr->mimic_form = 0;
1858                 p_ptr->tim_mimic = 0;
1859                 p_ptr->tim_sh_fire = 0;
1860
1861                 /* by henkma */
1862                 p_ptr->tim_reflect = 0;
1863                 p_ptr->multishadow = 0;
1864                 p_ptr->dustrobe = 0;
1865
1866                 p_ptr->chaos_patron = ((p_ptr->age + p_ptr->sc) % MAX_PATRON);
1867                 p_ptr->muta1 = 0;
1868                 p_ptr->muta2 = 0;
1869                 p_ptr->muta3 = 0;
1870                 get_virtues();
1871         }
1872         else
1873         {
1874                 rd_s16b(&p_ptr->tim_esp);
1875                 rd_s16b(&p_ptr->wraith_form);
1876                 rd_s16b(&p_ptr->resist_magic);
1877                 rd_s16b(&p_ptr->tim_regen);
1878                 rd_s16b(&p_ptr->kabenuke);
1879                 rd_s16b(&p_ptr->tim_stealth);
1880                 rd_s16b(&p_ptr->tim_levitation);
1881                 rd_s16b(&p_ptr->tim_sh_touki);
1882                 rd_s16b(&p_ptr->lightspeed);
1883                 rd_s16b(&p_ptr->tsubureru);
1884                 if (z_older_than(10, 4, 7))
1885                         p_ptr->magicdef = 0;
1886                 else
1887                         rd_s16b(&p_ptr->magicdef);
1888                 rd_s16b(&p_ptr->tim_res_nether);
1889                 if (z_older_than(10, 4, 11))
1890                 {
1891                         p_ptr->tim_res_time = 0;
1892                         p_ptr->mimic_form = 0;
1893                         p_ptr->tim_mimic = 0;
1894                         p_ptr->tim_sh_fire = 0;
1895                 }
1896                 else
1897                 {
1898                         rd_s16b(&p_ptr->tim_res_time);
1899                         rd_byte(&p_ptr->mimic_form);
1900                         rd_s16b(&p_ptr->tim_mimic);
1901                         rd_s16b(&p_ptr->tim_sh_fire);
1902                 }
1903
1904                 if (z_older_than(11, 0, 99))
1905                 {
1906                         p_ptr->tim_sh_holy = 0;
1907                         p_ptr->tim_eyeeye = 0;
1908                 }
1909                 else
1910                 {
1911                         rd_s16b(&p_ptr->tim_sh_holy);
1912                         rd_s16b(&p_ptr->tim_eyeeye);
1913                 }
1914
1915                 /* by henkma */
1916                 if ( z_older_than(11,0,3) ){
1917                   p_ptr->tim_reflect=0;
1918                   p_ptr->multishadow=0;
1919                   p_ptr->dustrobe=0;
1920                 }
1921                 else {
1922                   rd_s16b(&p_ptr->tim_reflect);
1923                   rd_s16b(&p_ptr->multishadow);
1924                   rd_s16b(&p_ptr->dustrobe);
1925                 }
1926
1927                 rd_s16b(&p_ptr->chaos_patron);
1928                 rd_u32b(&p_ptr->muta1);
1929                 rd_u32b(&p_ptr->muta2);
1930                 rd_u32b(&p_ptr->muta3);
1931
1932                 for (i = 0; i < 8; i++)
1933                         rd_s16b(&p_ptr->virtues[i]);
1934                 for (i = 0; i < 8; i++)
1935                         rd_s16b(&p_ptr->vir_types[i]);
1936         }
1937
1938         /* Calc the regeneration modifier for mutations */
1939         mutant_regenerate_mod = calc_mutant_regenerate_mod();
1940
1941         if (z_older_than(10,0,9))
1942         {
1943                 rd_byte(&tmp8u);
1944                 if (tmp8u) p_ptr->special_attack = ATTACK_CONFUSE;
1945                 p_ptr->ele_attack = 0;
1946         }
1947         else
1948         {
1949                 rd_s16b(&p_ptr->ele_attack);
1950                 rd_u32b(&p_ptr->special_attack);
1951         }
1952         if (p_ptr->special_attack & KAMAE_MASK) p_ptr->action = ACTION_KAMAE;
1953         else if (p_ptr->special_attack & KATA_MASK) p_ptr->action = ACTION_KATA;
1954         if (z_older_than(10,0,12))
1955         {
1956                 p_ptr->ele_immune = 0;
1957                 p_ptr->special_defense = 0;
1958         }
1959         else
1960         {
1961                 rd_s16b(&p_ptr->ele_immune);
1962                 rd_u32b(&p_ptr->special_defense);
1963         }
1964         rd_byte(&p_ptr->knowledge);
1965
1966         rd_byte(&tmp8u);
1967         p_ptr->autopick_autoregister = tmp8u ? TRUE : FALSE;
1968
1969         rd_byte(&tmp8u); /* oops */
1970         rd_byte(&p_ptr->action);
1971         if (!z_older_than(10, 4, 3))
1972         {
1973                 rd_byte(&tmp8u);
1974                 if (tmp8u) p_ptr->action = ACTION_LEARN;
1975         }
1976         rd_byte((byte *)&preserve_mode);
1977         rd_byte((byte *)&p_ptr->wait_report_score);
1978
1979         /* Future use */
1980         for (i = 0; i < 48; i++) rd_byte(&tmp8u);
1981
1982         /* Skip the flags */
1983         strip_bytes(12);
1984
1985
1986         /* Hack -- the two "special seeds" */
1987         rd_u32b(&seed_flavor);
1988         rd_u32b(&seed_town);
1989
1990
1991         /* Special stuff */
1992         rd_u16b(&p_ptr->panic_save);
1993         rd_u16b(&p_ptr->total_winner);
1994         rd_u16b(&p_ptr->noscore);
1995
1996
1997         /* Read "death" */
1998         rd_byte(&tmp8u);
1999         p_ptr->is_dead = tmp8u;
2000
2001         /* Read "feeling" */
2002         rd_byte(&p_ptr->feeling);
2003
2004         switch (p_ptr->start_race)
2005         {
2006         case RACE_VAMPIRE:
2007         case RACE_SKELETON:
2008         case RACE_ZOMBIE:
2009         case RACE_SPECTRE:
2010                 turn_limit = TURNS_PER_TICK * TOWN_DAWN * MAX_DAYS + TURNS_PER_TICK * TOWN_DAWN * 3 / 4;
2011                 break;
2012         default:
2013                 turn_limit = TURNS_PER_TICK * TOWN_DAWN * (MAX_DAYS - 1) + TURNS_PER_TICK * TOWN_DAWN * 3 / 4;
2014                 break;
2015         }
2016         dungeon_turn_limit = TURNS_PER_TICK * TOWN_DAWN * (MAX_DAYS - 1) + TURNS_PER_TICK * TOWN_DAWN * 3 / 4;
2017
2018         /* Turn when level began */
2019         rd_s32b(&old_turn);
2020
2021         if (h_older_than(1, 7, 0, 4))
2022         {
2023                 p_ptr->feeling_turn = old_turn;
2024         }
2025         else
2026         {
2027                 /* Turn of last "feeling" */
2028                 rd_s32b(&p_ptr->feeling_turn);
2029         }
2030
2031         /* Current turn */
2032         rd_s32b(&turn);
2033
2034         if (z_older_than(10, 3, 12))
2035         {
2036                 dungeon_turn = turn;
2037         }
2038         else rd_s32b(&dungeon_turn);
2039
2040         if (z_older_than(11, 0, 13))
2041         {
2042                 old_turn /= 2;
2043                 p_ptr->feeling_turn /= 2;
2044                 turn /= 2;
2045                 dungeon_turn /= 2;
2046         }
2047
2048         if (z_older_than(10, 3, 13))
2049         {
2050                 old_battle = turn;
2051         }
2052         else rd_s32b(&old_battle);
2053
2054         if (z_older_than(10,0,3))
2055         {
2056                 determine_today_mon(TRUE);
2057         }
2058         else
2059         {
2060                 rd_s16b(&today_mon);
2061                 rd_s16b(&p_ptr->today_mon);
2062         }
2063
2064         if (z_older_than(10,0,7))
2065         {
2066                 p_ptr->riding = 0;
2067         }
2068         else
2069         {
2070                 rd_s16b(&p_ptr->riding);
2071         }
2072
2073         /* Current floor_id */
2074         if (h_older_than(1, 5, 0, 0))
2075         {
2076                 p_ptr->floor_id = 0;
2077         }
2078         else
2079         {
2080                 rd_s16b(&p_ptr->floor_id);
2081         }
2082
2083         if (h_older_than(1, 5, 0, 2))
2084         {
2085                 /* Nothing to do */
2086         }
2087         else
2088         {
2089                 /* Get number of party_mon array */
2090                 rd_s16b(&tmp16s);
2091
2092                 /* Strip old temporary preserved pets */
2093                 for (i = 0; i < tmp16s; i++)
2094                 {
2095                         monster_type dummy_mon;
2096
2097                         rd_monster(&dummy_mon);
2098                 }
2099         }
2100
2101         if (z_older_than(10,1,2))
2102         {
2103                 playtime = 0;
2104         }
2105         else
2106         {
2107                 rd_u32b(&playtime);
2108         }
2109
2110         if (z_older_than(10,3,9))
2111         {
2112                 p_ptr->visit = 1L;
2113         }
2114         else if (z_older_than(10, 3, 10))
2115         {
2116                 s32b tmp32s;
2117                 rd_s32b(&tmp32s);
2118                 p_ptr->visit = 1L;
2119         }
2120         else
2121         {
2122                 rd_s32b(&p_ptr->visit);
2123         }
2124         if (!z_older_than(11, 0, 5))
2125         {
2126                 rd_u32b(&p_ptr->count);
2127         }
2128 }
2129
2130
2131
2132
2133 /*
2134  * Read the player inventory
2135  *
2136  * Note that the inventory changed in Angband 2.7.4.  Two extra
2137  * pack slots were added and the equipment was rearranged.  Note
2138  * that these two features combine when parsing old save-files, in
2139  * which items from the old "aux" slot are "carried", perhaps into
2140  * one of the two new "inventory" slots.
2141  *
2142  * Note that the inventory is "re-sorted" later by "dungeon()".
2143  */
2144 static errr rd_inventory(void)
2145 {
2146         int slot = 0;
2147
2148         object_type forge;
2149         object_type *q_ptr;
2150
2151         /* No weight */
2152         p_ptr->total_weight = 0;
2153
2154         /* No items */
2155         inven_cnt = 0;
2156         equip_cnt = 0;
2157
2158         /* Read until done */
2159         while (1)
2160         {
2161                 u16b n;
2162
2163                 /* Get the next item index */
2164                 rd_u16b(&n);
2165
2166                 /* Nope, we reached the end */
2167                 if (n == 0xFFFF) break;
2168
2169                 /* Get local object */
2170                 q_ptr = &forge;
2171
2172                 /* Wipe the object */
2173                 object_wipe(q_ptr);
2174
2175                 /* Read the item */
2176                 rd_item(q_ptr);
2177
2178                 /* Hack -- verify item */
2179                 if (!q_ptr->k_idx) return (53);
2180
2181                 /* Wield equipment */
2182                 if (n >= INVEN_RARM)
2183                 {
2184                         /* Copy object */
2185                         object_copy(&inventory[n], q_ptr);
2186
2187                         /* Add the weight */
2188                         p_ptr->total_weight += (q_ptr->number * q_ptr->weight);
2189
2190                         /* One more item */
2191                         equip_cnt++;
2192                 }
2193
2194                 /* Warning -- backpack is full */
2195                 else if (inven_cnt == INVEN_PACK)
2196                 {
2197                         /* Oops */
2198 #ifdef JP
2199 note("»ý¤Áʪ¤ÎÃæ¤Î¥¢¥¤¥Æ¥à¤¬Â¿¤¹¤®¤ë¡ª");
2200 #else
2201                         note("Too many items in the inventory!");
2202 #endif
2203
2204
2205                         /* Fail */
2206                         return (54);
2207                 }
2208
2209                 /* Carry inventory */
2210                 else
2211                 {
2212                         /* Get a slot */
2213                         n = slot++;
2214
2215                         /* Copy object */
2216                         object_copy(&inventory[n], q_ptr);
2217
2218                         /* Add the weight */
2219                         p_ptr->total_weight += (q_ptr->number * q_ptr->weight);
2220
2221                         /* One more item */
2222                         inven_cnt++;
2223                 }
2224         }
2225
2226         /* Success */
2227         return (0);
2228 }
2229
2230
2231
2232 /*
2233  * Read the saved messages
2234  */
2235 static void rd_messages(void)
2236 {
2237         int i;
2238         char buf[128];
2239
2240         s16b num;
2241
2242         /* Total */
2243         rd_s16b(&num);
2244
2245         /* Read the messages */
2246         for (i = 0; i < num; i++)
2247         {
2248                 /* Read the message */
2249                 rd_string(buf, sizeof(buf));
2250
2251                 /* Save the message */
2252                 message_add(buf);
2253         }
2254 }
2255
2256
2257
2258 /* Old hidden trap flag */
2259 #define CAVE_TRAP       0x8000
2260
2261 /*** Terrain Feature Indexes (see "lib/edit/f_info.txt") ***/
2262 #define OLD_FEAT_INVIS              0x02
2263 #define OLD_FEAT_GLYPH              0x03
2264 #define OLD_FEAT_QUEST_ENTER        0x08
2265 #define OLD_FEAT_QUEST_EXIT         0x09
2266 #define OLD_FEAT_MINOR_GLYPH        0x40
2267 #define OLD_FEAT_BLDG_1             0x81
2268 #define OLD_FEAT_MIRROR             0xc3
2269
2270 /* Old quests */
2271 #define OLD_QUEST_WATER_CAVE 18
2272
2273 /* Quest constants */
2274 #define QUEST_OLD_CASTLE  27
2275 #define QUEST_ROYAL_CRYPT 28
2276
2277 /*
2278  * Read the dungeon (old method)
2279  *
2280  * The monsters/objects must be loaded in the same order
2281  * that they were stored, since the actual indexes matter.
2282  */
2283 static errr rd_dungeon_old(void)
2284 {
2285         int i, y, x;
2286         int ymax, xmax;
2287         byte count;
2288         byte tmp8u;
2289         s16b tmp16s;
2290         u16b limit;
2291         cave_type *c_ptr;
2292
2293
2294         /*** Basic info ***/
2295
2296         /* Header info */
2297         rd_s16b(&dun_level);
2298         if (z_older_than(10, 3, 8)) dungeon_type = DUNGEON_ANGBAND;
2299         else rd_byte(&dungeon_type);
2300
2301         /* Set the base level for old versions */
2302         base_level = dun_level;
2303
2304         rd_s16b(&base_level);
2305
2306         rd_s16b(&num_repro);
2307         rd_s16b(&tmp16s);
2308         py = (int)tmp16s;
2309         rd_s16b(&tmp16s);
2310         px = (int)tmp16s;
2311         if (z_older_than(10, 3, 13) && !dun_level && !p_ptr->inside_arena) {py = 33;px = 131;}
2312         rd_s16b(&cur_hgt);
2313         rd_s16b(&cur_wid);
2314         rd_s16b(&tmp16s); /* max_panel_rows */
2315         rd_s16b(&tmp16s); /* max_panel_cols */
2316
2317 #if 0
2318         if (!py || !px) {py = 10;px = 10;}/* ¥À¥ó¥¸¥ç¥óÀ¸À®¤Ë¼ºÇÔ¤·¤Æ¥»¥°¥á¥ó¥Æ¤Ã¤¿¤È¤­¤ÎÉüµìÍÑ */
2319 #endif
2320
2321         /* Maximal size */
2322         ymax = cur_hgt;
2323         xmax = cur_wid;
2324
2325
2326         /*** Run length decoding ***/
2327
2328         /* Load the dungeon data */
2329         for (x = y = 0; y < ymax; )
2330         {
2331                 u16b info;
2332
2333                 /* Grab RLE info */
2334                 rd_byte(&count);
2335                 if (z_older_than(10,3,6))
2336                 {
2337                         rd_byte(&tmp8u);
2338                         info = (u16b)tmp8u;
2339                 }
2340                 else
2341                 {
2342                         rd_u16b(&info);
2343
2344                         /* Decline invalid flags */
2345                         info &= ~(CAVE_LITE | CAVE_VIEW | CAVE_MNLT | CAVE_MNDK);
2346                 }
2347
2348                 /* Apply the RLE info */
2349                 for (i = count; i > 0; i--)
2350                 {
2351                         /* Access the cave */
2352                         c_ptr = &cave[y][x];
2353
2354                         /* Extract "info" */
2355                         c_ptr->info = info;
2356
2357                         /* Advance/Wrap */
2358                         if (++x >= xmax)
2359                         {
2360                                 /* Wrap */
2361                                 x = 0;
2362
2363                                 /* Advance/Wrap */
2364                                 if (++y >= ymax) break;
2365                         }
2366                 }
2367         }
2368
2369
2370         /*** Run length decoding ***/
2371
2372         /* Load the dungeon data */
2373         for (x = y = 0; y < ymax; )
2374         {
2375                 /* Grab RLE info */
2376                 rd_byte(&count);
2377                 rd_byte(&tmp8u);
2378
2379                 /* Apply the RLE info */
2380                 for (i = count; i > 0; i--)
2381                 {
2382                         /* Access the cave */
2383                         c_ptr = &cave[y][x];
2384
2385                         /* Extract "feat" */
2386                         c_ptr->feat = (s16b)tmp8u;
2387
2388                         /* Advance/Wrap */
2389                         if (++x >= xmax)
2390                         {
2391                                 /* Wrap */
2392                                 x = 0;
2393
2394                                 /* Advance/Wrap */
2395                                 if (++y >= ymax) break;
2396                         }
2397                 }
2398         }
2399
2400         /*** Run length decoding ***/
2401
2402         /* Load the dungeon data */
2403         for (x = y = 0; y < ymax; )
2404         {
2405                 /* Grab RLE info */
2406                 rd_byte(&count);
2407                 rd_byte(&tmp8u);
2408
2409                 /* Apply the RLE info */
2410                 for (i = count; i > 0; i--)
2411                 {
2412                         /* Access the cave */
2413                         c_ptr = &cave[y][x];
2414
2415                         /* Extract "mimic" */
2416                         c_ptr->mimic = (s16b)tmp8u;
2417
2418                         /* Advance/Wrap */
2419                         if (++x >= xmax)
2420                         {
2421                                 /* Wrap */
2422                                 x = 0;
2423
2424                                 /* Advance/Wrap */
2425                                 if (++y >= ymax) break;
2426                         }
2427                 }
2428         }
2429
2430         /*** Run length decoding ***/
2431
2432         /* Load the dungeon data */
2433         for (x = y = 0; y < ymax; )
2434         {
2435                 /* Grab RLE info */
2436                 rd_byte(&count);
2437                 rd_s16b(&tmp16s);
2438
2439                 /* Apply the RLE info */
2440                 for (i = count; i > 0; i--)
2441                 {
2442                         /* Access the cave */
2443                         c_ptr = &cave[y][x];
2444
2445                         /* Extract "feat" */
2446                         c_ptr->special = tmp16s;
2447
2448                         /* Advance/Wrap */
2449                         if (++x >= xmax)
2450                         {
2451                                 /* Wrap */
2452                                 x = 0;
2453
2454                                 /* Advance/Wrap */
2455                                 if (++y >= ymax) break;
2456                         }
2457                 }
2458         }
2459
2460         /* Convert cave data */
2461         if (z_older_than(11, 0, 99))
2462         {
2463                 for (y = 0; y < ymax; y++) for (x = 0; x < xmax; x++)
2464                 {
2465                         /* Wipe old unused flags */
2466                         cave[y][x].info &= ~(CAVE_MASK);
2467                 }
2468         }
2469
2470         if (h_older_than(1, 1, 1, 0))
2471         {
2472                 for (y = 0; y < ymax; y++) for (x = 0; x < xmax; x++)
2473                 {
2474                         /* Access the cave */
2475                         c_ptr = &cave[y][x];
2476
2477                         /* Very old */
2478                         if (c_ptr->feat == OLD_FEAT_INVIS)
2479                         {
2480                                 c_ptr->feat = feat_floor;
2481                                 c_ptr->info |= CAVE_TRAP;
2482                         }
2483
2484                         /* Older than 1.1.1 */
2485                         if (c_ptr->feat == OLD_FEAT_MIRROR)
2486                         {
2487                                 c_ptr->feat = feat_floor;
2488                                 c_ptr->info |= CAVE_OBJECT;
2489                         }
2490                 }
2491         }
2492
2493         if (h_older_than(1, 3, 1, 0))
2494         {
2495                 for (y = 0; y < ymax; y++) for (x = 0; x < xmax; x++)
2496                 {
2497                         /* Access the cave */
2498                         c_ptr = &cave[y][x];
2499
2500                         /* Old CAVE_IN_MIRROR flag */
2501                         if (c_ptr->info & CAVE_OBJECT)
2502                         {
2503                                 c_ptr->mimic = feat_mirror;
2504                         }
2505
2506                         /* Runes will be mimics and flags */
2507                         else if ((c_ptr->feat == OLD_FEAT_MINOR_GLYPH) ||
2508                                  (c_ptr->feat == OLD_FEAT_GLYPH))
2509                         {
2510                                 c_ptr->info |= CAVE_OBJECT;
2511                                 c_ptr->mimic = c_ptr->feat;
2512                                 c_ptr->feat = feat_floor;
2513                         }
2514
2515                         /* Hidden traps will be trap terrains mimicing floor */
2516                         else if (c_ptr->info & CAVE_TRAP)
2517                         {
2518                                 c_ptr->info &= ~CAVE_TRAP;
2519                                 c_ptr->mimic = c_ptr->feat;
2520                                 c_ptr->feat = choose_random_trap();
2521                         }
2522
2523                         /* Another hidden trap */
2524                         else if (c_ptr->feat == OLD_FEAT_INVIS)
2525                         {
2526                                 c_ptr->mimic = feat_floor;
2527                                 c_ptr->feat = feat_trap_open;
2528                         }
2529                 }
2530         }
2531
2532         /* Quest 18 was removed */
2533         if (h_older_than(1, 7, 0, 6) && !vanilla_town)
2534         {
2535                 for (y = 0; y < ymax; y++) for (x = 0; x < xmax; x++)
2536                 {
2537                         /* Access the cave */
2538                         c_ptr = &cave[y][x];
2539
2540                         if ((c_ptr->special == OLD_QUEST_WATER_CAVE) && !dun_level)
2541                         {
2542                                 if (c_ptr->feat == OLD_FEAT_QUEST_ENTER)
2543                                 {
2544                                         c_ptr->feat = feat_tree;
2545                                         c_ptr->special = 0;
2546                                 }
2547                                 else if (c_ptr->feat == OLD_FEAT_BLDG_1)
2548                                 {
2549                                         c_ptr->special = lite_town ? QUEST_OLD_CASTLE : QUEST_ROYAL_CRYPT;
2550                                 }
2551                         }
2552                         else if ((c_ptr->feat == OLD_FEAT_QUEST_EXIT) &&
2553                                  (p_ptr->inside_quest == OLD_QUEST_WATER_CAVE))
2554                         {
2555                                 c_ptr->feat = feat_up_stair;
2556                                 c_ptr->special = 0;
2557                         }
2558                 }
2559         }
2560
2561         /*** Objects ***/
2562
2563         /* Read the item count */
2564         rd_u16b(&limit);
2565
2566         /* Verify maximum */
2567         if (limit > max_o_idx)
2568         {
2569 #ifdef JP
2570 note(format("¥¢¥¤¥Æ¥à¤ÎÇÛÎó¤¬Â礭¤¹¤®¤ë(%d)¡ª", limit));
2571 #else
2572                 note(format("Too many (%d) object entries!", limit));
2573 #endif
2574
2575                 return (151);
2576         }
2577
2578         /* Read the dungeon items */
2579         for (i = 1; i < limit; i++)
2580         {
2581                 int o_idx;
2582
2583                 object_type *o_ptr;
2584
2585
2586                 /* Get a new record */
2587                 o_idx = o_pop();
2588
2589                 /* Oops */
2590                 if (i != o_idx)
2591                 {
2592 #ifdef JP
2593 note(format("¥¢¥¤¥Æ¥àÇÛÃÖ¥¨¥é¡¼ (%d <> %d)", i, o_idx));
2594 #else
2595                         note(format("Object allocation error (%d <> %d)", i, o_idx));
2596 #endif
2597
2598                         return (152);
2599                 }
2600
2601
2602                 /* Acquire place */
2603                 o_ptr = &o_list[o_idx];
2604
2605                 /* Read the item */
2606                 rd_item(o_ptr);
2607
2608
2609                 /* XXX XXX XXX XXX XXX */
2610
2611                 /* Monster */
2612                 if (o_ptr->held_m_idx)
2613                 {
2614                         monster_type *m_ptr;
2615
2616                         /* Monster */
2617                         m_ptr = &m_list[o_ptr->held_m_idx];
2618
2619                         /* Build a stack */
2620                         o_ptr->next_o_idx = m_ptr->hold_o_idx;
2621
2622                         /* Place the object */
2623                         m_ptr->hold_o_idx = o_idx;
2624                 }
2625
2626                 /* Dungeon */
2627                 else
2628                 {
2629                         /* Access the item location */
2630                         c_ptr = &cave[o_ptr->iy][o_ptr->ix];
2631
2632                         /* Build a stack */
2633                         o_ptr->next_o_idx = c_ptr->o_idx;
2634
2635                         /* Place the object */
2636                         c_ptr->o_idx = o_idx;
2637                 }
2638         }
2639
2640
2641         /*** Monsters ***/
2642
2643         /* Read the monster count */
2644         rd_u16b(&limit);
2645
2646         /* Hack -- verify */
2647         if (limit > max_m_idx)
2648         {
2649 #ifdef JP
2650 note(format("¥â¥ó¥¹¥¿¡¼¤ÎÇÛÎó¤¬Â礭¤¹¤®¤ë(%d)¡ª", limit));
2651 #else
2652                 note(format("Too many (%d) monster entries!", limit));
2653 #endif
2654
2655                 return (161);
2656         }
2657
2658         /* Read the monsters */
2659         for (i = 1; i < limit; i++)
2660         {
2661                 int m_idx;
2662                 monster_type *m_ptr;
2663
2664                 /* Get a new record */
2665                 m_idx = m_pop();
2666
2667                 /* Oops */
2668                 if (i != m_idx)
2669                 {
2670 #ifdef JP
2671 note(format("¥â¥ó¥¹¥¿¡¼ÇÛÃÖ¥¨¥é¡¼ (%d <> %d)", i, m_idx));
2672 #else
2673                         note(format("Monster allocation error (%d <> %d)", i, m_idx));
2674 #endif
2675
2676                         return (162);
2677                 }
2678
2679
2680                 /* Acquire monster */
2681                 m_ptr = &m_list[m_idx];
2682
2683                 /* Read the monster */
2684                 rd_monster(m_ptr);
2685
2686
2687                 /* Access grid */
2688                 c_ptr = &cave[m_ptr->fy][m_ptr->fx];
2689
2690                 /* Mark the location */
2691                 c_ptr->m_idx = m_idx;
2692
2693                 /* Count */
2694                 real_r_ptr(m_ptr)->cur_num++;
2695         }
2696
2697         /*** Success ***/
2698
2699         /* The dungeon is ready */
2700         if (z_older_than(10, 3, 13) && !dun_level && !p_ptr->inside_arena)
2701                 character_dungeon = FALSE;
2702         else
2703                 character_dungeon = TRUE;
2704
2705         /* Success */
2706         return (0);
2707 }
2708
2709
2710
2711 /*
2712  * Read the saved floor
2713  *
2714  * The monsters/objects must be loaded in the same order
2715  * that they were stored, since the actual indexes matter.
2716  */
2717 static errr rd_saved_floor(saved_floor_type *sf_ptr)
2718 {
2719         int ymax, xmax;
2720         int i, y, x;
2721         byte count;
2722         byte tmp8u;
2723         s16b tmp16s;
2724         u16b tmp16u;
2725         s32b tmp32s;
2726         u32b tmp32u;
2727         u16b limit;
2728
2729         cave_template_type *template;
2730
2731
2732         /*** Wipe all cave ***/
2733         clear_cave();
2734
2735
2736         /*** Basic info ***/
2737
2738         /* Dungeon floor specific info follows */
2739
2740         if (!sf_ptr)
2741         {
2742                 /*** Not a saved floor ***/
2743
2744                 rd_s16b(&dun_level);
2745                 base_level = dun_level;
2746         }
2747         else
2748         {
2749                 /*** The saved floor ***/
2750
2751                 rd_s16b(&tmp16s);
2752                 if (tmp16s != sf_ptr->floor_id) return 171;
2753
2754                 rd_byte(&tmp8u);
2755                 if (tmp8u != sf_ptr->savefile_id) return 171;
2756
2757                 rd_s16b(&tmp16s);
2758                 if (tmp16s != sf_ptr->dun_level) return 171;
2759                 dun_level = sf_ptr->dun_level;
2760
2761                 rd_s32b(&tmp32s);
2762                 if (tmp32s != sf_ptr->last_visit) return 171;
2763
2764                 rd_u32b(&tmp32u);
2765                 if (tmp32u != sf_ptr->visit_mark) return 171;
2766
2767                 rd_s16b(&tmp16s);
2768                 if (tmp16s != sf_ptr->upper_floor_id) return 171;
2769
2770                 rd_s16b(&tmp16s);
2771                 if (tmp16s != sf_ptr->lower_floor_id) return 171;
2772         }
2773
2774         rd_s16b(&base_level);
2775         rd_s16b(&num_repro);
2776
2777         rd_u16b(&tmp16u);
2778         py = (int)tmp16u;
2779
2780         rd_u16b(&tmp16u);
2781         px = (int)tmp16u;
2782
2783         rd_s16b(&cur_hgt);
2784         rd_s16b(&cur_wid);
2785
2786         rd_byte(&p_ptr->feeling);
2787
2788
2789
2790         /*** Read template for cave_type ***/
2791
2792         /* Read the template count */
2793         rd_u16b(&limit);
2794
2795         /* Allocate the "template" array */
2796         C_MAKE(template, limit, cave_template_type);
2797
2798         /* Read the templates */
2799         for (i = 0; i < limit; i++)
2800         {
2801                 cave_template_type *ct_ptr = &template[i];
2802
2803                 /* Read it */
2804                 rd_u16b(&ct_ptr->info);
2805                 if (h_older_than(1, 7, 0, 2))
2806                 {
2807                         rd_byte(&tmp8u);
2808                         ct_ptr->feat = (s16b)tmp8u;
2809                         rd_byte(&tmp8u);
2810                         ct_ptr->mimic = (s16b)tmp8u;
2811                 }
2812                 else
2813                 {
2814                         rd_s16b(&ct_ptr->feat);
2815                         rd_s16b(&ct_ptr->mimic);
2816                 }
2817                 rd_s16b(&ct_ptr->special);
2818         }
2819
2820         /* Maximal size */
2821         ymax = cur_hgt;
2822         xmax = cur_wid;
2823
2824
2825         /*** Run length decoding ***/
2826
2827         /* Load the dungeon data */
2828         for (x = y = 0; y < ymax; )
2829         {
2830                 u16b id;
2831
2832                 /* Grab RLE info */
2833                 rd_byte(&count);
2834
2835                 id = 0;
2836                 do 
2837                 {
2838                         rd_byte(&tmp8u);
2839                         id += tmp8u;
2840                 } while (tmp8u == MAX_UCHAR);
2841
2842                 /* Apply the RLE info */
2843                 for (i = count; i > 0; i--)
2844                 {
2845                         /* Access the cave */
2846                         cave_type *c_ptr = &cave[y][x];
2847
2848                         /* Extract cave data */
2849                         c_ptr->info = template[id].info;
2850                         c_ptr->feat = template[id].feat;
2851                         c_ptr->mimic = template[id].mimic;
2852                         c_ptr->special = template[id].special;
2853
2854                         /* Advance/Wrap */
2855                         if (++x >= xmax)
2856                         {
2857                                 /* Wrap */
2858                                 x = 0;
2859
2860                                 /* Advance/Wrap */
2861                                 if (++y >= ymax) break;
2862                         }
2863                 }
2864         }
2865
2866         /* Quest 18 was removed */
2867         if (h_older_than(1, 7, 0, 6) && !vanilla_town)
2868         {
2869                 for (y = 0; y < ymax; y++) for (x = 0; x < xmax; x++)
2870                 {
2871                         /* Access the cave */
2872                         cave_type *c_ptr = &cave[y][x];
2873
2874                         if ((c_ptr->special == OLD_QUEST_WATER_CAVE) && !dun_level)
2875                         {
2876                                 if (c_ptr->feat == OLD_FEAT_QUEST_ENTER)
2877                                 {
2878                                         c_ptr->feat = feat_tree;
2879                                         c_ptr->special = 0;
2880                                 }
2881                                 else if (c_ptr->feat == OLD_FEAT_BLDG_1)
2882                                 {
2883                                         c_ptr->special = lite_town ? QUEST_OLD_CASTLE : QUEST_ROYAL_CRYPT;
2884                                 }
2885                         }
2886                         else if ((c_ptr->feat == OLD_FEAT_QUEST_EXIT) &&
2887                                  (p_ptr->inside_quest == OLD_QUEST_WATER_CAVE))
2888                         {
2889                                 c_ptr->feat = feat_up_stair;
2890                                 c_ptr->special = 0;
2891                         }
2892                 }
2893         }
2894
2895         /* Free the "template" array */
2896         C_FREE(template, limit, cave_template_type);
2897
2898
2899         /*** Objects ***/
2900
2901         /* Read the item count */
2902         rd_u16b(&limit);
2903
2904         /* Verify maximum */
2905         if (limit > max_o_idx) return 151;
2906
2907
2908         /* Read the dungeon items */
2909         for (i = 1; i < limit; i++)
2910         {
2911                 int o_idx;
2912                 object_type *o_ptr;
2913
2914
2915                 /* Get a new record */
2916                 o_idx = o_pop();
2917
2918                 /* Oops */
2919                 if (i != o_idx) return 152;
2920
2921                 /* Acquire place */
2922                 o_ptr = &o_list[o_idx];
2923
2924                 /* Read the item */
2925                 rd_item(o_ptr);
2926
2927
2928                 /* Monster */
2929                 if (o_ptr->held_m_idx)
2930                 {
2931                         monster_type *m_ptr;
2932
2933                         /* Monster */
2934                         m_ptr = &m_list[o_ptr->held_m_idx];
2935
2936                         /* Build a stack */
2937                         o_ptr->next_o_idx = m_ptr->hold_o_idx;
2938
2939                         /* Place the object */
2940                         m_ptr->hold_o_idx = o_idx;
2941                 }
2942
2943                 /* Dungeon */
2944                 else
2945                 {
2946                         /* Access the item location */
2947                         cave_type *c_ptr = &cave[o_ptr->iy][o_ptr->ix];
2948
2949                         /* Build a stack */
2950                         o_ptr->next_o_idx = c_ptr->o_idx;
2951
2952                         /* Place the object */
2953                         c_ptr->o_idx = o_idx;
2954                 }
2955         }
2956
2957
2958         /*** Monsters ***/
2959
2960         /* Read the monster count */
2961         rd_u16b(&limit);
2962
2963         /* Hack -- verify */
2964         if (limit > max_m_idx) return 161;
2965
2966         /* Read the monsters */
2967         for (i = 1; i < limit; i++)
2968         {
2969                 cave_type *c_ptr;
2970                 int m_idx;
2971                 monster_type *m_ptr;
2972
2973                 /* Get a new record */
2974                 m_idx = m_pop();
2975
2976                 /* Oops */
2977                 if (i != m_idx) return 162;
2978
2979
2980                 /* Acquire monster */
2981                 m_ptr = &m_list[m_idx];
2982
2983                 /* Read the monster */
2984                 rd_monster(m_ptr);
2985
2986
2987                 /* Access grid */
2988                 c_ptr = &cave[m_ptr->fy][m_ptr->fx];
2989
2990                 /* Mark the location */
2991                 c_ptr->m_idx = m_idx;
2992
2993                 /* Count */
2994                 real_r_ptr(m_ptr)->cur_num++;
2995         }
2996
2997         /* Success */
2998         return 0;
2999 }
3000
3001
3002 /*
3003  * Read the dungeon (new method)
3004  *
3005  * The monsters/objects must be loaded in the same order
3006  * that they were stored, since the actual indexes matter.
3007  */
3008 static errr rd_dungeon(void)
3009 {
3010         errr err = 0;
3011         byte num;
3012         int i;
3013
3014         /* Initialize saved_floors array and temporal files */
3015         init_saved_floors(FALSE);
3016
3017         /* Older method */
3018         if (h_older_than(1, 5, 0, 0))
3019         {
3020                 err = rd_dungeon_old();
3021
3022                 /* Prepare floor_id of current floor */
3023                 if (dungeon_type)
3024                 {
3025                         p_ptr->floor_id = get_new_floor_id();
3026                         get_sf_ptr(p_ptr->floor_id)->dun_level = dun_level;
3027                 }
3028
3029                 return err;
3030         }
3031
3032
3033         /*** Meta info ***/
3034
3035         /* Number of floor_id used from birth */
3036         rd_s16b(&max_floor_id);
3037
3038         /* Current dungeon type */
3039         rd_byte(&dungeon_type);
3040
3041
3042         /* Number of the saved_floors array elements */
3043         rd_byte(&num);
3044
3045         /*** No saved floor (On the surface etc.) ***/
3046         if (!num)
3047         {
3048                 /* Read the current floor data */
3049                 err = rd_saved_floor(NULL);
3050         }
3051
3052         /*** In the dungeon ***/
3053         else
3054         {
3055
3056                 /* Read the saved_floors array */
3057                 for (i = 0; i < num; i++)
3058                 {
3059                         saved_floor_type *sf_ptr = &saved_floors[i];
3060
3061                         rd_s16b(&sf_ptr->floor_id);
3062                         rd_byte(&sf_ptr->savefile_id);
3063                         rd_s16b(&sf_ptr->dun_level);
3064                         rd_s32b(&sf_ptr->last_visit);
3065                         rd_u32b(&sf_ptr->visit_mark);
3066                         rd_s16b(&sf_ptr->upper_floor_id);
3067                         rd_s16b(&sf_ptr->lower_floor_id);
3068                 }
3069
3070
3071                 /* Move saved floors data to temporal files */
3072                 for (i = 0; i < num; i++)
3073                 {
3074                         saved_floor_type *sf_ptr = &saved_floors[i];
3075                         byte tmp8u;
3076
3077                         /* Unused element */
3078                         if (!sf_ptr->floor_id) continue;
3079
3080                         /* Read the failure mark */
3081                         rd_byte(&tmp8u);
3082                         if (tmp8u) continue;
3083
3084                         /* Read from the save file */
3085                         err = rd_saved_floor(sf_ptr);
3086
3087                         /* Error? */
3088                         if (err) break;
3089
3090                         /* Re-save as temporal saved floor file */
3091                         if (!save_floor(sf_ptr, SLF_SECOND)) err = 182;
3092
3093                         /* Error? */
3094                         if (err) break;
3095                 }
3096
3097                 /* Finally load current floor data from temporal file */
3098                 if (!err)
3099                 {
3100                         if (!load_floor(get_sf_ptr(p_ptr->floor_id), SLF_SECOND)) err = 183;
3101                 }
3102         }
3103
3104
3105         /*** Error messages ***/
3106         switch (err)
3107         {
3108         case 151:
3109 #ifdef JP
3110                 note("¥¢¥¤¥Æ¥à¤ÎÇÛÎó¤¬Â礭¤¹¤®¤ë¡ª");
3111 #else
3112                 note("Too many object entries!");
3113 #endif
3114                 break;
3115
3116         case 152:
3117 #ifdef JP
3118                 note("¥¢¥¤¥Æ¥àÇÛÃÖ¥¨¥é¡¼");
3119 #else
3120                 note("Object allocation error");
3121 #endif
3122                 break;
3123
3124         case 161:
3125 #ifdef JP
3126                 note("¥â¥ó¥¹¥¿¡¼¤ÎÇÛÎó¤¬Â礭¤¹¤®¤ë¡ª");
3127 #else
3128                 note("Too many monster entries!");
3129 #endif
3130                 break;
3131
3132         case 162:
3133 #ifdef JP
3134                 note("¥â¥ó¥¹¥¿¡¼ÇÛÃÖ¥¨¥é¡¼");
3135 #else
3136                 note("Monster allocation error");
3137 #endif
3138                 break;
3139
3140         case 171:
3141 #ifdef JP
3142                 note("Êݸ¤µ¤ì¤¿¥Õ¥í¥¢¤Î¥À¥ó¥¸¥ç¥ó¥Ç¡¼¥¿¤¬²õ¤ì¤Æ¤¤¤Þ¤¹¡ª");
3143 #else
3144                 note("Dungeon data of saved floors are broken!");
3145 #endif
3146                 break;
3147
3148         case 182:
3149 #ifdef JP
3150                 note("¥Æ¥ó¥Ý¥é¥ê¡¦¥Õ¥¡¥¤¥ë¤òºîÀ®¤Ç¤­¤Þ¤»¤ó¡ª");
3151 #else
3152                 note("Failed to make temporal files!");
3153 #endif
3154                 break;
3155
3156         case 183:
3157 #ifdef JP
3158                 note("Error 183");
3159 #else
3160                 note("Error 183");
3161 #endif
3162                 break;
3163         }
3164
3165         /* The dungeon is ready */
3166         character_dungeon = TRUE;
3167
3168         /* Success or Error */
3169         return err;
3170 }
3171
3172
3173 /*
3174  * Actually read the savefile
3175  */
3176 static errr rd_savefile_new_aux(void)
3177 {
3178         int i, j;
3179         int town_count;
3180
3181         s32b wild_x_size;
3182         s32b wild_y_size;
3183
3184         byte tmp8u;
3185         u16b tmp16u;
3186         u32b tmp32u;
3187
3188 #ifdef VERIFY_CHECKSUMS
3189         u32b n_x_check, n_v_check;
3190         u32b o_x_check, o_v_check;
3191 #endif
3192
3193
3194         /* Mention the savefile version */
3195         note(format(
3196 #ifdef JP
3197                      "¥Ð¡¼¥¸¥ç¥ó %d.%d.%d ¤Î¥»¡¼¥Ö¡¦¥Õ¥¡¥¤¥ë¤ò¥í¡¼¥ÉÃæ...",
3198 #else
3199                      "Loading a %d.%d.%d savefile...",
3200 #endif
3201                      (z_major > 9) ? z_major - 10 : z_major, z_minor, z_patch));
3202
3203
3204         /* Strip the version bytes */
3205         strip_bytes(4);
3206
3207         /* Hack -- decrypt */
3208         xor_byte = sf_extra;
3209
3210
3211         /* Clear the checksums */
3212         v_check = 0L;
3213         x_check = 0L;
3214
3215         /* Read the version number of the savefile */
3216         /* Old savefile will be version 0.0.0.3 */
3217         rd_byte(&h_ver_extra);
3218         rd_byte(&h_ver_patch);
3219         rd_byte(&h_ver_minor);
3220         rd_byte(&h_ver_major);
3221
3222         /* Operating system info */
3223         rd_u32b(&sf_system);
3224
3225         /* Time of savefile creation */
3226         rd_u32b(&sf_when);
3227
3228         /* Number of resurrections */
3229         rd_u16b(&sf_lives);
3230
3231         /* Number of times played */
3232         rd_u16b(&sf_saves);
3233
3234
3235         /* Later use (always zero) */
3236         rd_u32b(&tmp32u);
3237
3238         /* Later use (always zero) */
3239         rd_u16b(&tmp16u);
3240
3241         /* Later use (always zero) */
3242         rd_byte(&tmp8u);
3243
3244         /* Kanji code */
3245         rd_byte(&kanji_code);
3246
3247         /* Read RNG state */
3248         rd_randomizer();
3249 #ifdef JP
3250 if (arg_fiddle) note("Íð¿ô¾ðÊó¤ò¥í¡¼¥É¤·¤Þ¤·¤¿");
3251 #else
3252         if (arg_fiddle) note("Loaded Randomizer Info");
3253 #endif
3254
3255
3256
3257         /* Then the options */
3258         rd_options();
3259 #ifdef JP
3260 if (arg_fiddle) note("¥ª¥×¥·¥ç¥ó¤ò¥í¡¼¥É¤·¤Þ¤·¤¿");
3261 #else
3262         if (arg_fiddle) note("Loaded Option Flags");
3263 #endif
3264
3265         /* Then the "messages" */
3266         rd_messages();
3267 #ifdef JP
3268 if (arg_fiddle) note("¥á¥Ã¥»¡¼¥¸¤ò¥í¡¼¥É¤·¤Þ¤·¤¿");
3269 #else
3270         if (arg_fiddle) note("Loaded Messages");
3271 #endif
3272
3273
3274
3275         for (i = 0; i < max_r_idx; i++)
3276         {
3277                 /* Access that monster */
3278                 monster_race *r_ptr = &r_info[i];
3279
3280                 /* Hack -- Reset the death counter */
3281                 r_ptr->max_num = 100;
3282
3283                 if (r_ptr->flags1 & RF1_UNIQUE) r_ptr->max_num = 1;
3284
3285                 /* Hack -- Non-unique Nazguls are semi-unique */
3286                 else if (r_ptr->flags7 & RF7_NAZGUL) r_ptr->max_num = MAX_NAZGUL_NUM;
3287         }
3288
3289         /* Monster Memory */
3290         rd_u16b(&tmp16u);
3291
3292         /* Incompatible save files */
3293         if (tmp16u > max_r_idx)
3294         {
3295 #ifdef JP
3296 note(format("¥â¥ó¥¹¥¿¡¼¤Î¼ï²¤¬Â¿¤¹¤®¤ë(%u)¡ª", tmp16u));
3297 #else
3298                 note(format("Too many (%u) monster races!", tmp16u));
3299 #endif
3300
3301                 return (21);
3302         }
3303
3304         /* Read the available records */
3305         for (i = 0; i < tmp16u; i++)
3306         {
3307                 /* Read the lore */
3308                 rd_lore(i);
3309         }
3310
3311 #ifdef JP
3312 if (arg_fiddle) note("¥â¥ó¥¹¥¿¡¼¤Î»×¤¤½Ð¤ò¥í¡¼¥É¤·¤Þ¤·¤¿");
3313 #else
3314         if (arg_fiddle) note("Loaded Monster Memory");
3315 #endif
3316
3317
3318
3319         /* Object Memory */
3320         rd_u16b(&tmp16u);
3321
3322         /* Incompatible save files */
3323         if (tmp16u > max_k_idx)
3324         {
3325 #ifdef JP
3326 note(format("¥¢¥¤¥Æ¥à¤Î¼ïÎब¿¤¹¤®¤ë(%u)¡ª", tmp16u));
3327 #else
3328                 note(format("Too many (%u) object kinds!", tmp16u));
3329 #endif
3330
3331                 return (22);
3332         }
3333
3334         /* Read the object memory */
3335         for (i = 0; i < tmp16u; i++)
3336         {
3337                 byte tmp8u;
3338                 object_kind *k_ptr = &k_info[i];
3339
3340                 rd_byte(&tmp8u);
3341
3342                 k_ptr->aware = (tmp8u & 0x01) ? TRUE: FALSE;
3343                 k_ptr->tried = (tmp8u & 0x02) ? TRUE: FALSE;
3344         }
3345 #ifdef JP
3346 if (arg_fiddle) note("¥¢¥¤¥Æ¥à¤Îµ­Ï¿¤ò¥í¡¼¥É¤·¤Þ¤·¤¿");
3347 #else
3348         if (arg_fiddle) note("Loaded Object Memory");
3349 #endif
3350
3351
3352         /* Init the wilderness seeds */
3353         for (i = 0; i < max_wild_x; i++)
3354         {
3355                 for (j = 0; j < max_wild_y; j++)
3356                 {
3357                         wilderness[j][i].seed = randint0(0x10000000);
3358                 }
3359         }
3360
3361         /* 2.1.3 or newer version */
3362         {
3363                 u16b max_towns_load;
3364                 u16b max_quests_load;
3365                 byte max_rquests_load;
3366                 s16b old_inside_quest = p_ptr->inside_quest;
3367
3368                 /* Number of towns */
3369                 rd_u16b(&max_towns_load);
3370
3371                 /* Incompatible save files */
3372                 if (max_towns_load > max_towns)
3373                 {
3374 #ifdef JP
3375 note(format("Ä®¤¬Â¿¤¹¤®¤ë(%u)¡ª", max_towns_load));
3376 #else
3377                         note(format("Too many (%u) towns!", max_towns_load));
3378 #endif
3379
3380                         return (23);
3381                 }
3382
3383                 /* Number of quests */
3384                 rd_u16b(&max_quests_load);
3385
3386                 if (z_older_than(11, 0, 7))
3387                 {
3388                         max_rquests_load = 10;
3389                 }
3390                 else
3391                 {
3392                         rd_byte(&max_rquests_load);
3393                 }
3394
3395                 /* Incompatible save files */
3396                 if (max_quests_load > max_quests)
3397                 {
3398 #ifdef JP
3399 note(format("¥¯¥¨¥¹¥È¤¬Â¿¤¹¤®¤ë(%u)¡ª", max_quests_load));
3400 #else
3401                         note(format("Too many (%u) quests!", max_quests_load));
3402 #endif
3403
3404                         return (23);
3405                 }
3406
3407                 for (i = 0; i < max_quests_load; i++)
3408                 {
3409                         if (i < max_quests)
3410                         {
3411                                 rd_s16b(&quest[i].status);
3412                                 rd_s16b(&quest[i].level);
3413
3414                                 if (z_older_than(11, 0, 6))
3415                                 {
3416                                         quest[i].complev = 0;
3417                                 }
3418                                 else
3419                                 {
3420                                         rd_byte(&quest[i].complev);
3421                                 }
3422
3423                                 /* Load quest status if quest is running */
3424                                 if ((quest[i].status == QUEST_STATUS_TAKEN) ||
3425                                     (!z_older_than(10, 3, 14) && (quest[i].status == QUEST_STATUS_COMPLETED)) ||
3426                                     (!z_older_than(11, 0, 7) && (i >= MIN_RANDOM_QUEST) && (i <= (MIN_RANDOM_QUEST + max_rquests_load))))
3427                                 {
3428                                         rd_s16b(&quest[i].cur_num);
3429                                         rd_s16b(&quest[i].max_num);
3430                                         rd_s16b(&quest[i].type);
3431
3432                                         /* Load quest monster index */
3433                                         rd_s16b(&quest[i].r_idx);
3434
3435                                         if ((quest[i].type == QUEST_TYPE_RANDOM) && (!quest[i].r_idx))
3436                                         {
3437                                                 determine_random_questor(&quest[i]);
3438                                         }
3439
3440                                         /* Load quest item index */
3441                                         rd_s16b(&quest[i].k_idx);
3442
3443                                         if (quest[i].k_idx)
3444                                                 a_info[quest[i].k_idx].gen_flags |= TRG_QUESTITEM;
3445
3446                                         rd_byte(&quest[i].flags);
3447
3448                                         if (z_older_than(10, 3, 11))
3449                                         {
3450                                                 if (quest[i].flags & QUEST_FLAG_PRESET)
3451                                                 {
3452                                                         quest[i].dungeon = 0;
3453                                                 }
3454                                                 else
3455                                                 {
3456                                                         init_flags = INIT_ASSIGN;
3457                                                         p_ptr->inside_quest = i;
3458
3459                                                         process_dungeon_file("q_info.txt", 0, 0, 0, 0);
3460                                                         p_ptr->inside_quest = old_inside_quest;
3461                                                 }
3462                                         }
3463                                         else
3464                                         {
3465                                                 rd_byte(&quest[i].dungeon);
3466                                         }
3467                                         /* Mark uniques */
3468                                         if (quest[i].status == QUEST_STATUS_TAKEN || quest[i].status == QUEST_STATUS_UNTAKEN)
3469                                                 if (r_info[quest[i].r_idx].flags1 & RF1_UNIQUE)
3470                                                         r_info[quest[i].r_idx].flags1 |= RF1_QUESTOR;
3471                                 }
3472                         }
3473                         /* Ignore the empty quests from old versions */
3474                         else
3475                         {
3476                                 /* Ignore quest status */
3477                                 strip_bytes(2);
3478
3479                                 /* Ignore quest level */
3480                                 strip_bytes(2);
3481
3482                                 /*
3483                                  * We don't have to care about the other info,
3484                                  * since status should be 0 for these quests anyway
3485                                  */
3486                         }
3487                 }
3488
3489                 /* Quest 18 was removed */
3490                 if (h_older_than(1, 7, 0, 6))
3491                 {
3492                         WIPE(&quest[OLD_QUEST_WATER_CAVE], quest_type);
3493                         quest[OLD_QUEST_WATER_CAVE].status = QUEST_STATUS_UNTAKEN;
3494                 }
3495
3496                 /* Position in the wilderness */
3497                 rd_s32b(&p_ptr->wilderness_x);
3498                 rd_s32b(&p_ptr->wilderness_y);
3499                 if (z_older_than(10, 3, 13))
3500                 {
3501                         p_ptr->wilderness_x = 5;
3502                         p_ptr->wilderness_y = 48;
3503                 }
3504
3505                 if (z_older_than(10, 3, 7)) p_ptr->wild_mode = FALSE;
3506                 else rd_byte((byte *)&p_ptr->wild_mode);
3507                 if (z_older_than(10, 3, 7)) ambush_flag = FALSE;
3508                 else rd_byte((byte *)&ambush_flag);
3509
3510                 /* Size of the wilderness */
3511                 rd_s32b(&wild_x_size);
3512                 rd_s32b(&wild_y_size);
3513
3514                 /* Incompatible save files */
3515                 if ((wild_x_size > max_wild_x) || (wild_y_size > max_wild_y))
3516                 {
3517 #ifdef JP
3518 note(format("¹ÓÌÂ礭¤¹¤®¤ë(%u/%u)¡ª", wild_x_size, wild_y_size));
3519 #else
3520                         note(format("Wilderness is too big (%u/%u)!", wild_x_size, wild_y_size));
3521 #endif
3522
3523                         return (23);
3524                 }
3525
3526                 /* Load the wilderness seeds */
3527                 for (i = 0; i < wild_x_size; i++)
3528                 {
3529                         for (j = 0; j < wild_y_size; j++)
3530                         {
3531                                 rd_u32b(&wilderness[j][i].seed);
3532                         }
3533                 }
3534         }
3535
3536 #ifdef JP
3537 if (arg_fiddle) note("¥¯¥¨¥¹¥È¾ðÊó¤ò¥í¡¼¥É¤·¤Þ¤·¤¿");
3538 #else
3539         if (arg_fiddle) note("Loaded Quests");
3540 #endif
3541
3542         /* Load the Artifacts */
3543         rd_u16b(&tmp16u);
3544
3545         /* Incompatible save files */
3546         if (tmp16u > max_a_idx)
3547         {
3548 #ifdef JP
3549 note(format("ÅÁÀâ¤Î¥¢¥¤¥Æ¥à¤¬Â¿¤¹¤®¤ë(%u)¡ª", tmp16u));
3550 #else
3551                 note(format("Too many (%u) artifacts!", tmp16u));
3552 #endif
3553
3554                 return (24);
3555         }
3556
3557         /* Read the artifact flags */
3558         for (i = 0; i < tmp16u; i++)
3559         {
3560                 artifact_type *a_ptr = &a_info[i];
3561
3562                 rd_byte(&tmp8u);
3563                 a_ptr->cur_num = tmp8u;
3564
3565                 if (h_older_than(1, 5, 0, 0))
3566                 {
3567                         a_ptr->floor_id = 0;
3568
3569                         rd_byte(&tmp8u);
3570                         rd_byte(&tmp8u);
3571                         rd_byte(&tmp8u);
3572                 }
3573                 else
3574                 {
3575                         rd_s16b(&a_ptr->floor_id);
3576                 }
3577         }
3578 #ifdef JP
3579 if (arg_fiddle) note("ÅÁÀâ¤Î¥¢¥¤¥Æ¥à¤ò¥í¡¼¥É¤·¤Þ¤·¤¿");
3580 #else
3581         if (arg_fiddle) note("Loaded Artifacts");
3582 #endif
3583
3584
3585
3586         /* Read the extra stuff */
3587         rd_extra();
3588         if (p_ptr->energy_need < -999) world_player = TRUE;
3589
3590 #ifdef JP
3591 if (arg_fiddle) note("ÆÃÊ̾ðÊó¤ò¥í¡¼¥É¤·¤Þ¤·¤¿");
3592 #else
3593         if (arg_fiddle) note("Loaded extra information");
3594 #endif
3595
3596
3597         /* Read the player_hp array */
3598         rd_u16b(&tmp16u);
3599
3600         /* Incompatible save files */
3601         if (tmp16u > PY_MAX_LEVEL)
3602         {
3603 #ifdef JP
3604 note(format("¥Ò¥Ã¥È¥Ý¥¤¥ó¥ÈÇÛÎó¤¬Â礭¤¹¤®¤ë(%u)¡ª", tmp16u));
3605 #else
3606                 note(format("Too many (%u) hitpoint entries!", tmp16u));
3607 #endif
3608
3609                 return (25);
3610         }
3611
3612         /* Read the player_hp array */
3613         for (i = 0; i < tmp16u; i++)
3614         {
3615                 rd_s16b(&p_ptr->player_hp[i]);
3616         }
3617
3618         /* Important -- Initialize the sex */
3619         sp_ptr = &sex_info[p_ptr->psex];
3620
3621         /* Important -- Initialize the race/class */
3622         rp_ptr = &race_info[p_ptr->prace];
3623         cp_ptr = &class_info[p_ptr->pclass];
3624         ap_ptr = &seikaku_info[p_ptr->pseikaku];
3625
3626         if(z_older_than(10, 2, 2) && (p_ptr->pclass == CLASS_BEASTMASTER) && !p_ptr->is_dead)
3627         {
3628                 p_ptr->hitdie = rp_ptr->r_mhp + cp_ptr->c_mhp + ap_ptr->a_mhp;
3629                 do_cmd_rerate(FALSE);
3630         }
3631         if(z_older_than(10, 3, 2) && (p_ptr->pclass == CLASS_ARCHER) && !p_ptr->is_dead)
3632         {
3633                 p_ptr->hitdie = rp_ptr->r_mhp + cp_ptr->c_mhp + ap_ptr->a_mhp;
3634                 do_cmd_rerate(FALSE);
3635         }
3636         if(z_older_than(10, 2, 6) && (p_ptr->pclass == CLASS_SORCERER) && !p_ptr->is_dead)
3637         {
3638                 p_ptr->hitdie = rp_ptr->r_mhp/2 + cp_ptr->c_mhp + ap_ptr->a_mhp;
3639                 do_cmd_rerate(FALSE);
3640         }
3641         if(z_older_than(10, 4, 7) && (p_ptr->pclass == CLASS_BLUE_MAGE) && !p_ptr->is_dead)
3642         {
3643                 p_ptr->hitdie = rp_ptr->r_mhp + cp_ptr->c_mhp + ap_ptr->a_mhp;
3644                 do_cmd_rerate(FALSE);
3645         }
3646
3647         /* Important -- Initialize the magic */
3648         mp_ptr = &m_info[p_ptr->pclass];
3649
3650
3651         /* Read spell info */
3652         rd_u32b(&p_ptr->spell_learned1);
3653         rd_u32b(&p_ptr->spell_learned2);
3654         rd_u32b(&p_ptr->spell_worked1);
3655         rd_u32b(&p_ptr->spell_worked2);
3656         rd_u32b(&p_ptr->spell_forgotten1);
3657         rd_u32b(&p_ptr->spell_forgotten2);
3658
3659         if (z_older_than(10,0,5))
3660         {
3661                 p_ptr->learned_spells = 0;
3662                 for (i = 0; i < 64; i++)
3663                 {
3664                         /* Count known spells */
3665                         if ((i < 32) ?
3666                             (p_ptr->spell_learned1 & (1L << i)) :
3667                             (p_ptr->spell_learned2 & (1L << (i - 32))))
3668                         {
3669                                 p_ptr->learned_spells++;
3670                         }
3671                 }
3672         }
3673         else rd_s16b(&p_ptr->learned_spells);
3674
3675         if (z_older_than(10,0,6))
3676         {
3677                 p_ptr->add_spells = 0;
3678         }
3679         else rd_s16b(&p_ptr->add_spells);
3680         if (p_ptr->pclass == CLASS_MINDCRAFTER) p_ptr->add_spells = 0;
3681
3682         for (i = 0; i < 64; i++)
3683         {
3684                 rd_byte(&p_ptr->spell_order[i]);
3685         }
3686
3687
3688         /* Read the inventory */
3689         if (rd_inventory())
3690         {
3691 #ifdef JP
3692 note("»ý¤Áʪ¾ðÊó¤òÆɤ߹þ¤à¤³¤È¤¬¤Ç¤­¤Þ¤»¤ó");
3693 #else
3694                 note("Unable to read inventory");
3695 #endif
3696
3697                 return (21);
3698         }
3699
3700         /* Read number of towns */
3701         rd_u16b(&tmp16u);
3702         town_count = tmp16u;
3703
3704         /* Read the stores */
3705         rd_u16b(&tmp16u);
3706         for (i = 1; i < town_count; i++)
3707         {
3708                 for (j = 0; j < tmp16u; j++)
3709                 {
3710                         if (rd_store(i, j)) return (22);
3711                 }
3712         }
3713
3714         rd_s16b(&p_ptr->pet_follow_distance);
3715         if (z_older_than(10, 4, 10))
3716         {
3717                 p_ptr->pet_extra_flags = 0;
3718                 rd_byte(&tmp8u);
3719                 if (tmp8u) p_ptr->pet_extra_flags |= PF_OPEN_DOORS;
3720                 rd_byte(&tmp8u);
3721                 if (tmp8u) p_ptr->pet_extra_flags |= PF_PICKUP_ITEMS;
3722
3723                 if (z_older_than(10,0,4)) p_ptr->pet_extra_flags |= PF_TELEPORT;
3724                 else
3725                 {
3726                         rd_byte(&tmp8u);
3727                         if (tmp8u) p_ptr->pet_extra_flags |= PF_TELEPORT;
3728                 }
3729
3730                 if (z_older_than(10,0,7)) p_ptr->pet_extra_flags |= PF_ATTACK_SPELL;
3731                 else
3732                 {
3733                         rd_byte(&tmp8u);
3734                         if (tmp8u) p_ptr->pet_extra_flags |= PF_ATTACK_SPELL;
3735                 }
3736
3737                 if (z_older_than(10,0,8)) p_ptr->pet_extra_flags |= PF_SUMMON_SPELL;
3738                 else
3739                 {
3740                         rd_byte(&tmp8u);
3741                         if (tmp8u) p_ptr->pet_extra_flags |= PF_SUMMON_SPELL;
3742                 }
3743
3744                 if (!z_older_than(10,0,8))
3745                 {
3746                         rd_byte(&tmp8u);
3747                         if (tmp8u) p_ptr->pet_extra_flags |= PF_BALL_SPELL;
3748                 }
3749         }
3750         else
3751         {
3752                 rd_s16b(&p_ptr->pet_extra_flags);
3753         }
3754
3755         if (!z_older_than(11, 0, 9))
3756         {
3757                 char buf[SCREEN_BUF_SIZE];
3758                 rd_string(buf, sizeof(buf));
3759                 if (buf[0]) screen_dump = string_make(buf);
3760         }
3761
3762         if (p_ptr->is_dead)
3763         {
3764                 for (i = MIN_RANDOM_QUEST; i < MAX_RANDOM_QUEST + 1; i++)
3765                 {
3766                         r_info[quest[i].r_idx].flags1 &= ~(RF1_QUESTOR);
3767                 }
3768         }
3769
3770
3771         /* I'm not dead yet... */
3772         if (!p_ptr->is_dead)
3773         {
3774                 /* Dead players have no dungeon */
3775 #ifdef JP
3776 note("¥À¥ó¥¸¥ç¥óÉü¸µÃæ...");
3777 #else
3778                 note("Restoring Dungeon...");
3779 #endif
3780
3781                 if (rd_dungeon())
3782                 {
3783 #ifdef JP
3784 note("¥À¥ó¥¸¥ç¥ó¥Ç¡¼¥¿Æɤ߹þ¤ß¼ºÇÔ");
3785 #else
3786                         note("Error reading dungeon data");
3787 #endif
3788
3789                         return (34);
3790                 }
3791
3792                 /* Read the ghost info */
3793                 rd_ghost();
3794
3795                 {
3796                         s32b tmp32s;
3797
3798                         rd_s32b(&tmp32s);
3799                         strip_bytes(tmp32s);
3800                 }
3801         }
3802
3803         /* Quest 18 was removed */
3804         if (h_older_than(1, 7, 0, 6))
3805         {
3806                 if (p_ptr->inside_quest == OLD_QUEST_WATER_CAVE)
3807                 {
3808                         dungeon_type = lite_town ? DUNGEON_ANGBAND : DUNGEON_GALGALS;
3809                         dun_level = 1;
3810                         p_ptr->inside_quest = 0;
3811                 }
3812         }
3813
3814
3815 #ifdef VERIFY_CHECKSUMS
3816
3817         /* Save the checksum */
3818         n_v_check = v_check;
3819
3820         /* Read the old checksum */
3821         rd_u32b(&o_v_check);
3822
3823         /* Verify */
3824         if (o_v_check != n_v_check)
3825         {
3826 #ifdef JP
3827 note("¥Á¥§¥Ã¥¯¥µ¥à¤¬¤ª¤«¤·¤¤");
3828 #else
3829                 note("Invalid checksum");
3830 #endif
3831
3832                 return (11);
3833         }
3834
3835
3836         /* Save the encoded checksum */
3837         n_x_check = x_check;
3838
3839         /* Read the checksum */
3840         rd_u32b(&o_x_check);
3841
3842
3843         /* Verify */
3844         if (o_x_check != n_x_check)
3845         {
3846 #ifdef JP
3847 note("¥¨¥ó¥³¡¼¥É¤µ¤ì¤¿¥Á¥§¥Ã¥¯¥µ¥à¤¬¤ª¤«¤·¤¤");
3848 #else
3849                 note("Invalid encoded checksum");
3850 #endif
3851
3852                 return (11);
3853         }
3854
3855 #endif
3856
3857         /* Success */
3858         return (0);
3859 }
3860
3861
3862 /*
3863  * Actually read the savefile
3864  */
3865 errr rd_savefile_new(void)
3866 {
3867         errr err;
3868
3869         /* Grab permissions */
3870         safe_setuid_grab();
3871
3872         /* The savefile is a binary file */
3873         fff = my_fopen(savefile, "rb");
3874
3875         /* Drop permissions */
3876         safe_setuid_drop();
3877
3878         /* Paranoia */
3879         if (!fff) return (-1);
3880
3881         /* Call the sub-function */
3882         err = rd_savefile_new_aux();
3883
3884         /* Check for errors */
3885         if (ferror(fff)) err = -1;
3886
3887         /* Close the file */
3888         my_fclose(fff);
3889
3890         /* Result */
3891         return (err);
3892 }
3893
3894
3895 /*
3896  * Actually load and verify a floor save data
3897  */
3898 static bool load_floor_aux(saved_floor_type *sf_ptr)
3899 {
3900         byte tmp8u;
3901         u32b tmp32u;
3902
3903 #ifdef VERIFY_CHECKSUMS
3904         u32b n_x_check, n_v_check;
3905         u32b o_x_check, o_v_check;
3906 #endif
3907
3908         /* Hack -- decrypt (read xor_byte) */
3909         xor_byte = 0;
3910         rd_byte(&tmp8u);
3911
3912         /* Clear the checksums */
3913         v_check = 0L;
3914         x_check = 0L;
3915
3916         /* Set the version number to current version */
3917         /* Never load old temporal files */
3918         h_ver_extra = H_VER_EXTRA;
3919         h_ver_patch = H_VER_PATCH;
3920         h_ver_minor = H_VER_MINOR;
3921         h_ver_major = H_VER_MAJOR;
3922
3923         /* Verify the sign */
3924         rd_u32b(&tmp32u);
3925         if (saved_floor_file_sign != tmp32u) return FALSE;
3926
3927         /* Read -- have error? */
3928         if (rd_saved_floor(sf_ptr)) return FALSE;
3929
3930
3931 #ifdef VERIFY_CHECKSUMS
3932         /* Save the checksum */
3933         n_v_check = v_check;
3934
3935         /* Read the old checksum */
3936         rd_u32b(&o_v_check);
3937
3938         /* Verify */
3939         if (o_v_check != n_v_check) return FALSE;
3940
3941         /* Save the encoded checksum */
3942         n_x_check = x_check;
3943
3944         /* Read the checksum */
3945         rd_u32b(&o_x_check);
3946
3947         /* Verify */
3948         if (o_x_check != n_x_check) return FALSE;
3949 #endif
3950
3951         /* Success */
3952         return TRUE;
3953 }
3954
3955
3956 /*
3957  * Attempt to load the temporally saved-floor data
3958  */
3959 bool load_floor(saved_floor_type *sf_ptr, u32b mode)
3960 {
3961         FILE *old_fff = NULL;
3962         byte old_xor_byte = 0;
3963         u32b old_v_check = 0;
3964         u32b old_x_check = 0;
3965         byte old_h_ver_major = 0;
3966         byte old_h_ver_minor = 0;
3967         byte old_h_ver_patch = 0;
3968         byte old_h_ver_extra = 0;
3969  
3970         bool ok = TRUE;
3971         char floor_savefile[1024];
3972
3973         byte old_kanji_code = kanji_code;
3974
3975         /*
3976          * Temporal files are always written in system depended kanji
3977          * code.
3978          */
3979 #ifdef JP
3980 # ifdef EUC
3981         /* EUC kanji code */
3982         kanji_code = 2;
3983 # endif
3984 # ifdef SJIS
3985         /* SJIS kanji code */
3986         kanji_code = 3;
3987 # endif
3988 #else
3989         /* ASCII */
3990         kanji_code = 1;
3991 #endif
3992
3993
3994         /* We have one file already opened */
3995         if (mode & SLF_SECOND)
3996         {
3997                 /* Backup original values */
3998                 old_fff = fff;
3999                 old_xor_byte = xor_byte;
4000                 old_v_check = v_check;
4001                 old_x_check = x_check;
4002                 old_h_ver_major = h_ver_major;
4003                 old_h_ver_minor = h_ver_minor;
4004                 old_h_ver_patch = h_ver_patch;
4005                 old_h_ver_extra = h_ver_extra;
4006         }
4007
4008         /* floor savefile */
4009         sprintf(floor_savefile, "%s.F%02d", savefile, (int)sf_ptr->savefile_id);
4010
4011         /* Grab permissions */
4012         safe_setuid_grab();
4013
4014         /* The savefile is a binary file */
4015         fff = my_fopen(floor_savefile, "rb");
4016
4017         /* Drop permissions */
4018         safe_setuid_drop();
4019
4020         /* Couldn't read */
4021         if (!fff) ok = FALSE;
4022
4023         /* Attempt to load */
4024         if (ok)
4025         {
4026                 /* Load saved floor data from file */
4027                 ok = load_floor_aux(sf_ptr);
4028
4029                 /* Check for errors */
4030                 if (ferror(fff)) ok = FALSE;
4031
4032                 /* Close the file */
4033                 my_fclose(fff);
4034
4035                 /* Grab permissions */
4036                 safe_setuid_grab();
4037
4038                 /* Delete the file */
4039                 if (!(mode & SLF_NO_KILL)) (void)fd_kill(floor_savefile);
4040
4041                 /* Drop permissions */
4042                 safe_setuid_drop();
4043         }
4044
4045         /* We have one file already opened */
4046         if (mode & SLF_SECOND)
4047         {
4048                 /* Restore original values */
4049                 fff = old_fff;
4050                 xor_byte = old_xor_byte;
4051                 v_check = old_v_check;
4052                 x_check = old_x_check;
4053                 h_ver_major = old_h_ver_major;
4054                 h_ver_minor = old_h_ver_minor;
4055                 h_ver_patch = old_h_ver_patch;
4056                 h_ver_extra = old_h_ver_extra;
4057         }
4058
4059         /* Restore old knowledge */
4060         kanji_code = old_kanji_code;
4061
4062         /* Result */
4063         return ok;
4064 }