OSDN Git Service

3bc1947987de393cb512d99447925c459c9af485
[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         rd_s16b(&p_ptr->concent);
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         if (z_older_than(12, 1, 20))
1800                 p_ptr->enchant_energy_need = 0;
1801         else
1802                 rd_s16b(&p_ptr->enchant_energy_need);
1803
1804         rd_s16b(&p_ptr->fast);
1805         rd_s16b(&p_ptr->slow);
1806         rd_s16b(&p_ptr->afraid);
1807         rd_s16b(&p_ptr->cut);
1808         rd_s16b(&p_ptr->stun);
1809         rd_s16b(&p_ptr->poisoned);
1810         rd_s16b(&p_ptr->image);
1811         rd_s16b(&p_ptr->protevil);
1812         rd_s16b(&p_ptr->invuln);
1813         if(z_older_than(10, 0, 0))
1814                 p_ptr->ult_res = 0;
1815         else
1816                 rd_s16b(&p_ptr->ult_res);
1817         rd_s16b(&p_ptr->hero);
1818         rd_s16b(&p_ptr->shero);
1819         rd_s16b(&p_ptr->shield);
1820         rd_s16b(&p_ptr->blessed);
1821         rd_s16b(&p_ptr->tim_invis);
1822         rd_s16b(&p_ptr->word_recall);
1823         if (z_older_than(10, 3, 8))
1824                 p_ptr->recall_dungeon = DUNGEON_ANGBAND;
1825         else
1826         {
1827                 rd_s16b(&tmp16s);
1828                 p_ptr->recall_dungeon = (byte)tmp16s;
1829         }
1830
1831         if (h_older_than(1, 5, 0, 0))
1832                 p_ptr->alter_reality = 0;
1833         else
1834                 rd_s16b(&p_ptr->alter_reality);
1835
1836         rd_s16b(&p_ptr->see_infra);
1837         rd_s16b(&p_ptr->tim_infra);
1838         rd_s16b(&p_ptr->oppose_fire);
1839         rd_s16b(&p_ptr->oppose_cold);
1840         rd_s16b(&p_ptr->oppose_acid);
1841         rd_s16b(&p_ptr->oppose_elec);
1842         rd_s16b(&p_ptr->oppose_pois);
1843         if (z_older_than(10,0,2)) p_ptr->tsuyoshi = 0;
1844         else rd_s16b(&p_ptr->tsuyoshi);
1845
1846         /* Old savefiles do not have the following fields... */
1847         if ((z_major == 2) && (z_minor == 0) && (z_patch == 6))
1848         {
1849                 p_ptr->tim_esp = 0;
1850                 p_ptr->wraith_form = 0;
1851                 p_ptr->resist_magic = 0;
1852                 p_ptr->tim_regen = 0;
1853                 p_ptr->kabenuke = 0;
1854                 p_ptr->tim_stealth = 0;
1855                 p_ptr->tim_levitation = 0;
1856                 p_ptr->tim_sh_touki = 0;
1857                 p_ptr->lightspeed = 0;
1858                 p_ptr->tsubureru = 0;
1859                 p_ptr->tim_res_nether = 0;
1860                 p_ptr->tim_res_time = 0;
1861                 p_ptr->mimic_form = 0;
1862                 p_ptr->tim_mimic = 0;
1863                 p_ptr->tim_sh_fire = 0;
1864
1865                 /* by henkma */
1866                 p_ptr->tim_reflect = 0;
1867                 p_ptr->multishadow = 0;
1868                 p_ptr->dustrobe = 0;
1869
1870                 p_ptr->chaos_patron = ((p_ptr->age + p_ptr->sc) % MAX_PATRON);
1871                 p_ptr->muta1 = 0;
1872                 p_ptr->muta2 = 0;
1873                 p_ptr->muta3 = 0;
1874                 get_virtues();
1875         }
1876         else
1877         {
1878                 rd_s16b(&p_ptr->tim_esp);
1879                 rd_s16b(&p_ptr->wraith_form);
1880                 rd_s16b(&p_ptr->resist_magic);
1881                 rd_s16b(&p_ptr->tim_regen);
1882                 rd_s16b(&p_ptr->kabenuke);
1883                 rd_s16b(&p_ptr->tim_stealth);
1884                 rd_s16b(&p_ptr->tim_levitation);
1885                 rd_s16b(&p_ptr->tim_sh_touki);
1886                 rd_s16b(&p_ptr->lightspeed);
1887                 rd_s16b(&p_ptr->tsubureru);
1888                 if (z_older_than(10, 4, 7))
1889                         p_ptr->magicdef = 0;
1890                 else
1891                         rd_s16b(&p_ptr->magicdef);
1892                 rd_s16b(&p_ptr->tim_res_nether);
1893                 if (z_older_than(10, 4, 11))
1894                 {
1895                         p_ptr->tim_res_time = 0;
1896                         p_ptr->mimic_form = 0;
1897                         p_ptr->tim_mimic = 0;
1898                         p_ptr->tim_sh_fire = 0;
1899                 }
1900                 else
1901                 {
1902                         rd_s16b(&p_ptr->tim_res_time);
1903                         rd_byte(&p_ptr->mimic_form);
1904                         rd_s16b(&p_ptr->tim_mimic);
1905                         rd_s16b(&p_ptr->tim_sh_fire);
1906                 }
1907
1908                 if (z_older_than(11, 0, 99))
1909                 {
1910                         p_ptr->tim_sh_holy = 0;
1911                         p_ptr->tim_eyeeye = 0;
1912                 }
1913                 else
1914                 {
1915                         rd_s16b(&p_ptr->tim_sh_holy);
1916                         rd_s16b(&p_ptr->tim_eyeeye);
1917                 }
1918
1919                 /* by henkma */
1920                 if ( z_older_than(11,0,3) ){
1921                   p_ptr->tim_reflect=0;
1922                   p_ptr->multishadow=0;
1923                   p_ptr->dustrobe=0;
1924                 }
1925                 else {
1926                   rd_s16b(&p_ptr->tim_reflect);
1927                   rd_s16b(&p_ptr->multishadow);
1928                   rd_s16b(&p_ptr->dustrobe);
1929                 }
1930
1931                 rd_s16b(&p_ptr->chaos_patron);
1932                 rd_u32b(&p_ptr->muta1);
1933                 rd_u32b(&p_ptr->muta2);
1934                 rd_u32b(&p_ptr->muta3);
1935
1936                 for (i = 0; i < 8; i++)
1937                         rd_s16b(&p_ptr->virtues[i]);
1938                 for (i = 0; i < 8; i++)
1939                         rd_s16b(&p_ptr->vir_types[i]);
1940         }
1941
1942         /* Calc the regeneration modifier for mutations */
1943         mutant_regenerate_mod = calc_mutant_regenerate_mod();
1944
1945         if (z_older_than(10,0,9))
1946         {
1947                 rd_byte(&tmp8u);
1948                 if (tmp8u) p_ptr->special_attack = ATTACK_CONFUSE;
1949                 p_ptr->ele_attack = 0;
1950         }
1951         else
1952         {
1953                 rd_s16b(&p_ptr->ele_attack);
1954                 rd_u32b(&p_ptr->special_attack);
1955         }
1956         if (p_ptr->special_attack & KAMAE_MASK) p_ptr->action = ACTION_KAMAE;
1957         else if (p_ptr->special_attack & KATA_MASK) p_ptr->action = ACTION_KATA;
1958         if (z_older_than(10,0,12))
1959         {
1960                 p_ptr->ele_immune = 0;
1961                 p_ptr->special_defense = 0;
1962         }
1963         else
1964         {
1965                 rd_s16b(&p_ptr->ele_immune);
1966                 rd_u32b(&p_ptr->special_defense);
1967         }
1968         rd_byte(&p_ptr->knowledge);
1969
1970         rd_byte(&tmp8u);
1971         p_ptr->autopick_autoregister = tmp8u ? TRUE : FALSE;
1972
1973         rd_byte(&tmp8u); /* oops */
1974         rd_byte(&p_ptr->action);
1975         if (!z_older_than(10, 4, 3))
1976         {
1977                 rd_byte(&tmp8u);
1978                 if (tmp8u) p_ptr->action = ACTION_LEARN;
1979         }
1980         rd_byte((byte *)&preserve_mode);
1981         rd_byte((byte *)&p_ptr->wait_report_score);
1982
1983         /* Future use */
1984         for (i = 0; i < 48; i++) rd_byte(&tmp8u);
1985
1986         /* Skip the flags */
1987         strip_bytes(12);
1988
1989
1990         /* Hack -- the two "special seeds" */
1991         rd_u32b(&seed_flavor);
1992         rd_u32b(&seed_town);
1993
1994
1995         /* Special stuff */
1996         rd_u16b(&p_ptr->panic_save);
1997         rd_u16b(&p_ptr->total_winner);
1998         rd_u16b(&p_ptr->noscore);
1999
2000
2001         /* Read "death" */
2002         rd_byte(&tmp8u);
2003         p_ptr->is_dead = tmp8u;
2004
2005         /* Read "feeling" */
2006         rd_byte(&p_ptr->feeling);
2007
2008         switch (p_ptr->start_race)
2009         {
2010         case RACE_VAMPIRE:
2011         case RACE_SKELETON:
2012         case RACE_ZOMBIE:
2013         case RACE_SPECTRE:
2014                 turn_limit = TURNS_PER_TICK * TOWN_DAWN * MAX_DAYS + TURNS_PER_TICK * TOWN_DAWN * 3 / 4;
2015                 break;
2016         default:
2017                 turn_limit = TURNS_PER_TICK * TOWN_DAWN * (MAX_DAYS - 1) + TURNS_PER_TICK * TOWN_DAWN * 3 / 4;
2018                 break;
2019         }
2020         dungeon_turn_limit = TURNS_PER_TICK * TOWN_DAWN * (MAX_DAYS - 1) + TURNS_PER_TICK * TOWN_DAWN * 3 / 4;
2021
2022         /* Turn when level began */
2023         rd_s32b(&old_turn);
2024
2025         if (h_older_than(1, 7, 0, 4))
2026         {
2027                 p_ptr->feeling_turn = old_turn;
2028         }
2029         else
2030         {
2031                 /* Turn of last "feeling" */
2032                 rd_s32b(&p_ptr->feeling_turn);
2033         }
2034
2035         /* Current turn */
2036         rd_s32b(&turn);
2037
2038         if (z_older_than(10, 3, 12))
2039         {
2040                 dungeon_turn = turn;
2041         }
2042         else rd_s32b(&dungeon_turn);
2043
2044         if (z_older_than(11, 0, 13))
2045         {
2046                 old_turn /= 2;
2047                 p_ptr->feeling_turn /= 2;
2048                 turn /= 2;
2049                 dungeon_turn /= 2;
2050         }
2051
2052         if (z_older_than(10, 3, 13))
2053         {
2054                 old_battle = turn;
2055         }
2056         else rd_s32b(&old_battle);
2057
2058         if (z_older_than(10,0,3))
2059         {
2060                 determine_today_mon(TRUE);
2061         }
2062         else
2063         {
2064                 rd_s16b(&today_mon);
2065                 rd_s16b(&p_ptr->today_mon);
2066         }
2067
2068         if (z_older_than(10,0,7))
2069         {
2070                 p_ptr->riding = 0;
2071         }
2072         else
2073         {
2074                 rd_s16b(&p_ptr->riding);
2075         }
2076
2077         /* Current floor_id */
2078         if (h_older_than(1, 5, 0, 0))
2079         {
2080                 p_ptr->floor_id = 0;
2081         }
2082         else
2083         {
2084                 rd_s16b(&p_ptr->floor_id);
2085         }
2086
2087         if (h_older_than(1, 5, 0, 2))
2088         {
2089                 /* Nothing to do */
2090         }
2091         else
2092         {
2093                 /* Get number of party_mon array */
2094                 rd_s16b(&tmp16s);
2095
2096                 /* Strip old temporary preserved pets */
2097                 for (i = 0; i < tmp16s; i++)
2098                 {
2099                         monster_type dummy_mon;
2100
2101                         rd_monster(&dummy_mon);
2102                 }
2103         }
2104
2105         if (z_older_than(10,1,2))
2106         {
2107                 playtime = 0;
2108         }
2109         else
2110         {
2111                 rd_u32b(&playtime);
2112         }
2113
2114         if (z_older_than(10,3,9))
2115         {
2116                 p_ptr->visit = 1L;
2117         }
2118         else if (z_older_than(10, 3, 10))
2119         {
2120                 s32b tmp32s;
2121                 rd_s32b(&tmp32s);
2122                 p_ptr->visit = 1L;
2123         }
2124         else
2125         {
2126                 rd_s32b(&p_ptr->visit);
2127         }
2128         if (!z_older_than(11, 0, 5))
2129         {
2130                 rd_u32b(&p_ptr->count);
2131         }
2132 }
2133
2134
2135
2136
2137 /*
2138  * Read the player inventory
2139  *
2140  * Note that the inventory changed in Angband 2.7.4.  Two extra
2141  * pack slots were added and the equipment was rearranged.  Note
2142  * that these two features combine when parsing old save-files, in
2143  * which items from the old "aux" slot are "carried", perhaps into
2144  * one of the two new "inventory" slots.
2145  *
2146  * Note that the inventory is "re-sorted" later by "dungeon()".
2147  */
2148 static errr rd_inventory(void)
2149 {
2150         int slot = 0;
2151
2152         object_type forge;
2153         object_type *q_ptr;
2154
2155         /* No weight */
2156         p_ptr->total_weight = 0;
2157
2158         /* No items */
2159         inven_cnt = 0;
2160         equip_cnt = 0;
2161
2162         /* Read until done */
2163         while (1)
2164         {
2165                 u16b n;
2166
2167                 /* Get the next item index */
2168                 rd_u16b(&n);
2169
2170                 /* Nope, we reached the end */
2171                 if (n == 0xFFFF) break;
2172
2173                 /* Get local object */
2174                 q_ptr = &forge;
2175
2176                 /* Wipe the object */
2177                 object_wipe(q_ptr);
2178
2179                 /* Read the item */
2180                 rd_item(q_ptr);
2181
2182                 /* Hack -- verify item */
2183                 if (!q_ptr->k_idx) return (53);
2184
2185                 /* Wield equipment */
2186                 if (n >= INVEN_RARM)
2187                 {
2188                         /* Player touches it */
2189                         q_ptr->marked |= OM_TOUCHED;
2190
2191                         /* Copy object */
2192                         object_copy(&inventory[n], q_ptr);
2193
2194                         /* Add the weight */
2195                         p_ptr->total_weight += (q_ptr->number * q_ptr->weight);
2196
2197                         /* One more item */
2198                         equip_cnt++;
2199                 }
2200
2201                 /* Warning -- backpack is full */
2202                 else if (inven_cnt == INVEN_PACK)
2203                 {
2204                         /* Oops */
2205 #ifdef JP
2206 note("»ý¤Áʪ¤ÎÃæ¤Î¥¢¥¤¥Æ¥à¤¬Â¿¤¹¤®¤ë¡ª");
2207 #else
2208                         note("Too many items in the inventory!");
2209 #endif
2210
2211
2212                         /* Fail */
2213                         return (54);
2214                 }
2215
2216                 /* Carry inventory */
2217                 else
2218                 {
2219                         /* Get a slot */
2220                         n = slot++;
2221
2222                         /* Player touches it */
2223                         q_ptr->marked |= OM_TOUCHED;
2224
2225                         /* Copy object */
2226                         object_copy(&inventory[n], q_ptr);
2227
2228                         /* Add the weight */
2229                         p_ptr->total_weight += (q_ptr->number * q_ptr->weight);
2230
2231                         /* One more item */
2232                         inven_cnt++;
2233                 }
2234         }
2235
2236         /* Success */
2237         return (0);
2238 }
2239
2240
2241
2242 /*
2243  * Read the saved messages
2244  */
2245 static void rd_messages(void)
2246 {
2247         int i;
2248         char buf[128];
2249
2250         s16b num;
2251
2252         /* Total */
2253         rd_s16b(&num);
2254
2255         /* Read the messages */
2256         for (i = 0; i < num; i++)
2257         {
2258                 /* Read the message */
2259                 rd_string(buf, sizeof(buf));
2260
2261                 /* Save the message */
2262                 message_add(buf);
2263         }
2264 }
2265
2266
2267
2268 /* Old hidden trap flag */
2269 #define CAVE_TRAP       0x8000
2270
2271 /*** Terrain Feature Indexes (see "lib/edit/f_info.txt") ***/
2272 #define OLD_FEAT_INVIS              0x02
2273 #define OLD_FEAT_GLYPH              0x03
2274 #define OLD_FEAT_QUEST_ENTER        0x08
2275 #define OLD_FEAT_QUEST_EXIT         0x09
2276 #define OLD_FEAT_MINOR_GLYPH        0x40
2277 #define OLD_FEAT_BLDG_1             0x81
2278 #define OLD_FEAT_MIRROR             0xc3
2279
2280 /* Old quests */
2281 #define OLD_QUEST_WATER_CAVE 18
2282
2283 /* Quest constants */
2284 #define QUEST_OLD_CASTLE  27
2285 #define QUEST_ROYAL_CRYPT 28
2286
2287 /*
2288  * Read the dungeon (old method)
2289  *
2290  * The monsters/objects must be loaded in the same order
2291  * that they were stored, since the actual indexes matter.
2292  */
2293 static errr rd_dungeon_old(void)
2294 {
2295         int i, y, x;
2296         int ymax, xmax;
2297         byte count;
2298         byte tmp8u;
2299         s16b tmp16s;
2300         u16b limit;
2301         cave_type *c_ptr;
2302
2303
2304         /*** Basic info ***/
2305
2306         /* Header info */
2307         rd_s16b(&dun_level);
2308         if (z_older_than(10, 3, 8)) dungeon_type = DUNGEON_ANGBAND;
2309         else rd_byte(&dungeon_type);
2310
2311         /* Set the base level for old versions */
2312         base_level = dun_level;
2313
2314         rd_s16b(&base_level);
2315
2316         rd_s16b(&num_repro);
2317         rd_s16b(&tmp16s);
2318         py = (int)tmp16s;
2319         rd_s16b(&tmp16s);
2320         px = (int)tmp16s;
2321         if (z_older_than(10, 3, 13) && !dun_level && !p_ptr->inside_arena) {py = 33;px = 131;}
2322         rd_s16b(&cur_hgt);
2323         rd_s16b(&cur_wid);
2324         rd_s16b(&tmp16s); /* max_panel_rows */
2325         rd_s16b(&tmp16s); /* max_panel_cols */
2326
2327 #if 0
2328         if (!py || !px) {py = 10;px = 10;}/* ¥À¥ó¥¸¥ç¥óÀ¸À®¤Ë¼ºÇÔ¤·¤Æ¥»¥°¥á¥ó¥Æ¤Ã¤¿¤È¤­¤ÎÉüµìÍÑ */
2329 #endif
2330
2331         /* Maximal size */
2332         ymax = cur_hgt;
2333         xmax = cur_wid;
2334
2335
2336         /*** Run length decoding ***/
2337
2338         /* Load the dungeon data */
2339         for (x = y = 0; y < ymax; )
2340         {
2341                 u16b info;
2342
2343                 /* Grab RLE info */
2344                 rd_byte(&count);
2345                 if (z_older_than(10,3,6))
2346                 {
2347                         rd_byte(&tmp8u);
2348                         info = (u16b)tmp8u;
2349                 }
2350                 else
2351                 {
2352                         rd_u16b(&info);
2353
2354                         /* Decline invalid flags */
2355                         info &= ~(CAVE_LITE | CAVE_VIEW | CAVE_MNLT | CAVE_MNDK);
2356                 }
2357
2358                 /* Apply the RLE info */
2359                 for (i = count; i > 0; i--)
2360                 {
2361                         /* Access the cave */
2362                         c_ptr = &cave[y][x];
2363
2364                         /* Extract "info" */
2365                         c_ptr->info = info;
2366
2367                         /* Advance/Wrap */
2368                         if (++x >= xmax)
2369                         {
2370                                 /* Wrap */
2371                                 x = 0;
2372
2373                                 /* Advance/Wrap */
2374                                 if (++y >= ymax) break;
2375                         }
2376                 }
2377         }
2378
2379
2380         /*** Run length decoding ***/
2381
2382         /* Load the dungeon data */
2383         for (x = y = 0; y < ymax; )
2384         {
2385                 /* Grab RLE info */
2386                 rd_byte(&count);
2387                 rd_byte(&tmp8u);
2388
2389                 /* Apply the RLE info */
2390                 for (i = count; i > 0; i--)
2391                 {
2392                         /* Access the cave */
2393                         c_ptr = &cave[y][x];
2394
2395                         /* Extract "feat" */
2396                         c_ptr->feat = (s16b)tmp8u;
2397
2398                         /* Advance/Wrap */
2399                         if (++x >= xmax)
2400                         {
2401                                 /* Wrap */
2402                                 x = 0;
2403
2404                                 /* Advance/Wrap */
2405                                 if (++y >= ymax) break;
2406                         }
2407                 }
2408         }
2409
2410         /*** Run length decoding ***/
2411
2412         /* Load the dungeon data */
2413         for (x = y = 0; y < ymax; )
2414         {
2415                 /* Grab RLE info */
2416                 rd_byte(&count);
2417                 rd_byte(&tmp8u);
2418
2419                 /* Apply the RLE info */
2420                 for (i = count; i > 0; i--)
2421                 {
2422                         /* Access the cave */
2423                         c_ptr = &cave[y][x];
2424
2425                         /* Extract "mimic" */
2426                         c_ptr->mimic = (s16b)tmp8u;
2427
2428                         /* Advance/Wrap */
2429                         if (++x >= xmax)
2430                         {
2431                                 /* Wrap */
2432                                 x = 0;
2433
2434                                 /* Advance/Wrap */
2435                                 if (++y >= ymax) break;
2436                         }
2437                 }
2438         }
2439
2440         /*** Run length decoding ***/
2441
2442         /* Load the dungeon data */
2443         for (x = y = 0; y < ymax; )
2444         {
2445                 /* Grab RLE info */
2446                 rd_byte(&count);
2447                 rd_s16b(&tmp16s);
2448
2449                 /* Apply the RLE info */
2450                 for (i = count; i > 0; i--)
2451                 {
2452                         /* Access the cave */
2453                         c_ptr = &cave[y][x];
2454
2455                         /* Extract "feat" */
2456                         c_ptr->special = tmp16s;
2457
2458                         /* Advance/Wrap */
2459                         if (++x >= xmax)
2460                         {
2461                                 /* Wrap */
2462                                 x = 0;
2463
2464                                 /* Advance/Wrap */
2465                                 if (++y >= ymax) break;
2466                         }
2467                 }
2468         }
2469
2470         /* Convert cave data */
2471         if (z_older_than(11, 0, 99))
2472         {
2473                 for (y = 0; y < ymax; y++) for (x = 0; x < xmax; x++)
2474                 {
2475                         /* Wipe old unused flags */
2476                         cave[y][x].info &= ~(CAVE_MASK);
2477                 }
2478         }
2479
2480         if (h_older_than(1, 1, 1, 0))
2481         {
2482                 for (y = 0; y < ymax; y++) for (x = 0; x < xmax; x++)
2483                 {
2484                         /* Access the cave */
2485                         c_ptr = &cave[y][x];
2486
2487                         /* Very old */
2488                         if (c_ptr->feat == OLD_FEAT_INVIS)
2489                         {
2490                                 c_ptr->feat = feat_floor;
2491                                 c_ptr->info |= CAVE_TRAP;
2492                         }
2493
2494                         /* Older than 1.1.1 */
2495                         if (c_ptr->feat == OLD_FEAT_MIRROR)
2496                         {
2497                                 c_ptr->feat = feat_floor;
2498                                 c_ptr->info |= CAVE_OBJECT;
2499                         }
2500                 }
2501         }
2502
2503         if (h_older_than(1, 3, 1, 0))
2504         {
2505                 for (y = 0; y < ymax; y++) for (x = 0; x < xmax; x++)
2506                 {
2507                         /* Access the cave */
2508                         c_ptr = &cave[y][x];
2509
2510                         /* Old CAVE_IN_MIRROR flag */
2511                         if (c_ptr->info & CAVE_OBJECT)
2512                         {
2513                                 c_ptr->mimic = feat_mirror;
2514                         }
2515
2516                         /* Runes will be mimics and flags */
2517                         else if ((c_ptr->feat == OLD_FEAT_MINOR_GLYPH) ||
2518                                  (c_ptr->feat == OLD_FEAT_GLYPH))
2519                         {
2520                                 c_ptr->info |= CAVE_OBJECT;
2521                                 c_ptr->mimic = c_ptr->feat;
2522                                 c_ptr->feat = feat_floor;
2523                         }
2524
2525                         /* Hidden traps will be trap terrains mimicing floor */
2526                         else if (c_ptr->info & CAVE_TRAP)
2527                         {
2528                                 c_ptr->info &= ~CAVE_TRAP;
2529                                 c_ptr->mimic = c_ptr->feat;
2530                                 c_ptr->feat = choose_random_trap();
2531                         }
2532
2533                         /* Another hidden trap */
2534                         else if (c_ptr->feat == OLD_FEAT_INVIS)
2535                         {
2536                                 c_ptr->mimic = feat_floor;
2537                                 c_ptr->feat = feat_trap_open;
2538                         }
2539                 }
2540         }
2541
2542         /* Quest 18 was removed */
2543         if (h_older_than(1, 7, 0, 6) && !vanilla_town)
2544         {
2545                 for (y = 0; y < ymax; y++) for (x = 0; x < xmax; x++)
2546                 {
2547                         /* Access the cave */
2548                         c_ptr = &cave[y][x];
2549
2550                         if ((c_ptr->special == OLD_QUEST_WATER_CAVE) && !dun_level)
2551                         {
2552                                 if (c_ptr->feat == OLD_FEAT_QUEST_ENTER)
2553                                 {
2554                                         c_ptr->feat = feat_tree;
2555                                         c_ptr->special = 0;
2556                                 }
2557                                 else if (c_ptr->feat == OLD_FEAT_BLDG_1)
2558                                 {
2559                                         c_ptr->special = lite_town ? QUEST_OLD_CASTLE : QUEST_ROYAL_CRYPT;
2560                                 }
2561                         }
2562                         else if ((c_ptr->feat == OLD_FEAT_QUEST_EXIT) &&
2563                                  (p_ptr->inside_quest == OLD_QUEST_WATER_CAVE))
2564                         {
2565                                 c_ptr->feat = feat_up_stair;
2566                                 c_ptr->special = 0;
2567                         }
2568                 }
2569         }
2570
2571         /*** Objects ***/
2572
2573         /* Read the item count */
2574         rd_u16b(&limit);
2575
2576         /* Verify maximum */
2577         if (limit > max_o_idx)
2578         {
2579 #ifdef JP
2580 note(format("¥¢¥¤¥Æ¥à¤ÎÇÛÎó¤¬Â礭¤¹¤®¤ë(%d)¡ª", limit));
2581 #else
2582                 note(format("Too many (%d) object entries!", limit));
2583 #endif
2584
2585                 return (151);
2586         }
2587
2588         /* Read the dungeon items */
2589         for (i = 1; i < limit; i++)
2590         {
2591                 int o_idx;
2592
2593                 object_type *o_ptr;
2594
2595
2596                 /* Get a new record */
2597                 o_idx = o_pop();
2598
2599                 /* Oops */
2600                 if (i != o_idx)
2601                 {
2602 #ifdef JP
2603 note(format("¥¢¥¤¥Æ¥àÇÛÃÖ¥¨¥é¡¼ (%d <> %d)", i, o_idx));
2604 #else
2605                         note(format("Object allocation error (%d <> %d)", i, o_idx));
2606 #endif
2607
2608                         return (152);
2609                 }
2610
2611
2612                 /* Acquire place */
2613                 o_ptr = &o_list[o_idx];
2614
2615                 /* Read the item */
2616                 rd_item(o_ptr);
2617
2618
2619                 /* XXX XXX XXX XXX XXX */
2620
2621                 /* Monster */
2622                 if (o_ptr->held_m_idx)
2623                 {
2624                         monster_type *m_ptr;
2625
2626                         /* Monster */
2627                         m_ptr = &m_list[o_ptr->held_m_idx];
2628
2629                         /* Build a stack */
2630                         o_ptr->next_o_idx = m_ptr->hold_o_idx;
2631
2632                         /* Place the object */
2633                         m_ptr->hold_o_idx = o_idx;
2634                 }
2635
2636                 /* Dungeon */
2637                 else
2638                 {
2639                         /* Access the item location */
2640                         c_ptr = &cave[o_ptr->iy][o_ptr->ix];
2641
2642                         /* Build a stack */
2643                         o_ptr->next_o_idx = c_ptr->o_idx;
2644
2645                         /* Place the object */
2646                         c_ptr->o_idx = o_idx;
2647                 }
2648         }
2649
2650
2651         /*** Monsters ***/
2652
2653         /* Read the monster count */
2654         rd_u16b(&limit);
2655
2656         /* Hack -- verify */
2657         if (limit > max_m_idx)
2658         {
2659 #ifdef JP
2660 note(format("¥â¥ó¥¹¥¿¡¼¤ÎÇÛÎó¤¬Â礭¤¹¤®¤ë(%d)¡ª", limit));
2661 #else
2662                 note(format("Too many (%d) monster entries!", limit));
2663 #endif
2664
2665                 return (161);
2666         }
2667
2668         /* Read the monsters */
2669         for (i = 1; i < limit; i++)
2670         {
2671                 int m_idx;
2672                 monster_type *m_ptr;
2673
2674                 /* Get a new record */
2675                 m_idx = m_pop();
2676
2677                 /* Oops */
2678                 if (i != m_idx)
2679                 {
2680 #ifdef JP
2681 note(format("¥â¥ó¥¹¥¿¡¼ÇÛÃÖ¥¨¥é¡¼ (%d <> %d)", i, m_idx));
2682 #else
2683                         note(format("Monster allocation error (%d <> %d)", i, m_idx));
2684 #endif
2685
2686                         return (162);
2687                 }
2688
2689
2690                 /* Acquire monster */
2691                 m_ptr = &m_list[m_idx];
2692
2693                 /* Read the monster */
2694                 rd_monster(m_ptr);
2695
2696
2697                 /* Access grid */
2698                 c_ptr = &cave[m_ptr->fy][m_ptr->fx];
2699
2700                 /* Mark the location */
2701                 c_ptr->m_idx = m_idx;
2702
2703                 /* Count */
2704                 real_r_ptr(m_ptr)->cur_num++;
2705         }
2706
2707         /*** Success ***/
2708
2709         /* The dungeon is ready */
2710         if (z_older_than(10, 3, 13) && !dun_level && !p_ptr->inside_arena)
2711                 character_dungeon = FALSE;
2712         else
2713                 character_dungeon = TRUE;
2714
2715         /* Success */
2716         return (0);
2717 }
2718
2719
2720
2721 /*
2722  * Read the saved floor
2723  *
2724  * The monsters/objects must be loaded in the same order
2725  * that they were stored, since the actual indexes matter.
2726  */
2727 static errr rd_saved_floor(saved_floor_type *sf_ptr)
2728 {
2729         int ymax, xmax;
2730         int i, y, x;
2731         byte count;
2732         byte tmp8u;
2733         s16b tmp16s;
2734         u16b tmp16u;
2735         s32b tmp32s;
2736         u32b tmp32u;
2737         u16b limit;
2738
2739         cave_template_type *template;
2740
2741
2742         /*** Wipe all cave ***/
2743         clear_cave();
2744
2745
2746         /*** Basic info ***/
2747
2748         /* Dungeon floor specific info follows */
2749
2750         if (!sf_ptr)
2751         {
2752                 /*** Not a saved floor ***/
2753
2754                 rd_s16b(&dun_level);
2755                 base_level = dun_level;
2756         }
2757         else
2758         {
2759                 /*** The saved floor ***/
2760
2761                 rd_s16b(&tmp16s);
2762                 if (tmp16s != sf_ptr->floor_id) return 171;
2763
2764                 rd_byte(&tmp8u);
2765                 if (tmp8u != sf_ptr->savefile_id) return 171;
2766
2767                 rd_s16b(&tmp16s);
2768                 if (tmp16s != sf_ptr->dun_level) return 171;
2769                 dun_level = sf_ptr->dun_level;
2770
2771                 rd_s32b(&tmp32s);
2772                 if (tmp32s != sf_ptr->last_visit) return 171;
2773
2774                 rd_u32b(&tmp32u);
2775                 if (tmp32u != sf_ptr->visit_mark) return 171;
2776
2777                 rd_s16b(&tmp16s);
2778                 if (tmp16s != sf_ptr->upper_floor_id) return 171;
2779
2780                 rd_s16b(&tmp16s);
2781                 if (tmp16s != sf_ptr->lower_floor_id) return 171;
2782         }
2783
2784         rd_s16b(&base_level);
2785         rd_s16b(&num_repro);
2786
2787         rd_u16b(&tmp16u);
2788         py = (int)tmp16u;
2789
2790         rd_u16b(&tmp16u);
2791         px = (int)tmp16u;
2792
2793         rd_s16b(&cur_hgt);
2794         rd_s16b(&cur_wid);
2795
2796         rd_byte(&p_ptr->feeling);
2797
2798
2799
2800         /*** Read template for cave_type ***/
2801
2802         /* Read the template count */
2803         rd_u16b(&limit);
2804
2805         /* Allocate the "template" array */
2806         C_MAKE(template, limit, cave_template_type);
2807
2808         /* Read the templates */
2809         for (i = 0; i < limit; i++)
2810         {
2811                 cave_template_type *ct_ptr = &template[i];
2812
2813                 /* Read it */
2814                 rd_u16b(&ct_ptr->info);
2815                 if (h_older_than(1, 7, 0, 2))
2816                 {
2817                         rd_byte(&tmp8u);
2818                         ct_ptr->feat = (s16b)tmp8u;
2819                         rd_byte(&tmp8u);
2820                         ct_ptr->mimic = (s16b)tmp8u;
2821                 }
2822                 else
2823                 {
2824                         rd_s16b(&ct_ptr->feat);
2825                         rd_s16b(&ct_ptr->mimic);
2826                 }
2827                 rd_s16b(&ct_ptr->special);
2828         }
2829
2830         /* Maximal size */
2831         ymax = cur_hgt;
2832         xmax = cur_wid;
2833
2834
2835         /*** Run length decoding ***/
2836
2837         /* Load the dungeon data */
2838         for (x = y = 0; y < ymax; )
2839         {
2840                 u16b id;
2841
2842                 /* Grab RLE info */
2843                 rd_byte(&count);
2844
2845                 id = 0;
2846                 do 
2847                 {
2848                         rd_byte(&tmp8u);
2849                         id += tmp8u;
2850                 } while (tmp8u == MAX_UCHAR);
2851
2852                 /* Apply the RLE info */
2853                 for (i = count; i > 0; i--)
2854                 {
2855                         /* Access the cave */
2856                         cave_type *c_ptr = &cave[y][x];
2857
2858                         /* Extract cave data */
2859                         c_ptr->info = template[id].info;
2860                         c_ptr->feat = template[id].feat;
2861                         c_ptr->mimic = template[id].mimic;
2862                         c_ptr->special = template[id].special;
2863
2864                         /* Advance/Wrap */
2865                         if (++x >= xmax)
2866                         {
2867                                 /* Wrap */
2868                                 x = 0;
2869
2870                                 /* Advance/Wrap */
2871                                 if (++y >= ymax) break;
2872                         }
2873                 }
2874         }
2875
2876         /* Quest 18 was removed */
2877         if (h_older_than(1, 7, 0, 6) && !vanilla_town)
2878         {
2879                 for (y = 0; y < ymax; y++) for (x = 0; x < xmax; x++)
2880                 {
2881                         /* Access the cave */
2882                         cave_type *c_ptr = &cave[y][x];
2883
2884                         if ((c_ptr->special == OLD_QUEST_WATER_CAVE) && !dun_level)
2885                         {
2886                                 if (c_ptr->feat == OLD_FEAT_QUEST_ENTER)
2887                                 {
2888                                         c_ptr->feat = feat_tree;
2889                                         c_ptr->special = 0;
2890                                 }
2891                                 else if (c_ptr->feat == OLD_FEAT_BLDG_1)
2892                                 {
2893                                         c_ptr->special = lite_town ? QUEST_OLD_CASTLE : QUEST_ROYAL_CRYPT;
2894                                 }
2895                         }
2896                         else if ((c_ptr->feat == OLD_FEAT_QUEST_EXIT) &&
2897                                  (p_ptr->inside_quest == OLD_QUEST_WATER_CAVE))
2898                         {
2899                                 c_ptr->feat = feat_up_stair;
2900                                 c_ptr->special = 0;
2901                         }
2902                 }
2903         }
2904
2905         /* Free the "template" array */
2906         C_FREE(template, limit, cave_template_type);
2907
2908
2909         /*** Objects ***/
2910
2911         /* Read the item count */
2912         rd_u16b(&limit);
2913
2914         /* Verify maximum */
2915         if (limit > max_o_idx) return 151;
2916
2917
2918         /* Read the dungeon items */
2919         for (i = 1; i < limit; i++)
2920         {
2921                 int o_idx;
2922                 object_type *o_ptr;
2923
2924
2925                 /* Get a new record */
2926                 o_idx = o_pop();
2927
2928                 /* Oops */
2929                 if (i != o_idx) return 152;
2930
2931                 /* Acquire place */
2932                 o_ptr = &o_list[o_idx];
2933
2934                 /* Read the item */
2935                 rd_item(o_ptr);
2936
2937
2938                 /* Monster */
2939                 if (o_ptr->held_m_idx)
2940                 {
2941                         monster_type *m_ptr;
2942
2943                         /* Monster */
2944                         m_ptr = &m_list[o_ptr->held_m_idx];
2945
2946                         /* Build a stack */
2947                         o_ptr->next_o_idx = m_ptr->hold_o_idx;
2948
2949                         /* Place the object */
2950                         m_ptr->hold_o_idx = o_idx;
2951                 }
2952
2953                 /* Dungeon */
2954                 else
2955                 {
2956                         /* Access the item location */
2957                         cave_type *c_ptr = &cave[o_ptr->iy][o_ptr->ix];
2958
2959                         /* Build a stack */
2960                         o_ptr->next_o_idx = c_ptr->o_idx;
2961
2962                         /* Place the object */
2963                         c_ptr->o_idx = o_idx;
2964                 }
2965         }
2966
2967
2968         /*** Monsters ***/
2969
2970         /* Read the monster count */
2971         rd_u16b(&limit);
2972
2973         /* Hack -- verify */
2974         if (limit > max_m_idx) return 161;
2975
2976         /* Read the monsters */
2977         for (i = 1; i < limit; i++)
2978         {
2979                 cave_type *c_ptr;
2980                 int m_idx;
2981                 monster_type *m_ptr;
2982
2983                 /* Get a new record */
2984                 m_idx = m_pop();
2985
2986                 /* Oops */
2987                 if (i != m_idx) return 162;
2988
2989
2990                 /* Acquire monster */
2991                 m_ptr = &m_list[m_idx];
2992
2993                 /* Read the monster */
2994                 rd_monster(m_ptr);
2995
2996
2997                 /* Access grid */
2998                 c_ptr = &cave[m_ptr->fy][m_ptr->fx];
2999
3000                 /* Mark the location */
3001                 c_ptr->m_idx = m_idx;
3002
3003                 /* Count */
3004                 real_r_ptr(m_ptr)->cur_num++;
3005         }
3006
3007         /* Success */
3008         return 0;
3009 }
3010
3011
3012 /*
3013  * Read the dungeon (new method)
3014  *
3015  * The monsters/objects must be loaded in the same order
3016  * that they were stored, since the actual indexes matter.
3017  */
3018 static errr rd_dungeon(void)
3019 {
3020         errr err = 0;
3021         byte num;
3022         int i;
3023
3024         /* Initialize saved_floors array and temporal files */
3025         init_saved_floors(FALSE);
3026
3027         /* Older method */
3028         if (h_older_than(1, 5, 0, 0))
3029         {
3030                 err = rd_dungeon_old();
3031
3032                 /* Prepare floor_id of current floor */
3033                 if (dungeon_type)
3034                 {
3035                         p_ptr->floor_id = get_new_floor_id();
3036                         get_sf_ptr(p_ptr->floor_id)->dun_level = dun_level;
3037                 }
3038
3039                 return err;
3040         }
3041
3042
3043         /*** Meta info ***/
3044
3045         /* Number of floor_id used from birth */
3046         rd_s16b(&max_floor_id);
3047
3048         /* Current dungeon type */
3049         rd_byte(&dungeon_type);
3050
3051
3052         /* Number of the saved_floors array elements */
3053         rd_byte(&num);
3054
3055         /*** No saved floor (On the surface etc.) ***/
3056         if (!num)
3057         {
3058                 /* Read the current floor data */
3059                 err = rd_saved_floor(NULL);
3060         }
3061
3062         /*** In the dungeon ***/
3063         else
3064         {
3065
3066                 /* Read the saved_floors array */
3067                 for (i = 0; i < num; i++)
3068                 {
3069                         saved_floor_type *sf_ptr = &saved_floors[i];
3070
3071                         rd_s16b(&sf_ptr->floor_id);
3072                         rd_byte(&sf_ptr->savefile_id);
3073                         rd_s16b(&sf_ptr->dun_level);
3074                         rd_s32b(&sf_ptr->last_visit);
3075                         rd_u32b(&sf_ptr->visit_mark);
3076                         rd_s16b(&sf_ptr->upper_floor_id);
3077                         rd_s16b(&sf_ptr->lower_floor_id);
3078                 }
3079
3080
3081                 /* Move saved floors data to temporal files */
3082                 for (i = 0; i < num; i++)
3083                 {
3084                         saved_floor_type *sf_ptr = &saved_floors[i];
3085                         byte tmp8u;
3086
3087                         /* Unused element */
3088                         if (!sf_ptr->floor_id) continue;
3089
3090                         /* Read the failure mark */
3091                         rd_byte(&tmp8u);
3092                         if (tmp8u) continue;
3093
3094                         /* Read from the save file */
3095                         err = rd_saved_floor(sf_ptr);
3096
3097                         /* Error? */
3098                         if (err) break;
3099
3100                         /* Re-save as temporal saved floor file */
3101                         if (!save_floor(sf_ptr, SLF_SECOND)) err = 182;
3102
3103                         /* Error? */
3104                         if (err) break;
3105                 }
3106
3107                 /* Finally load current floor data from temporal file */
3108                 if (!err)
3109                 {
3110                         if (!load_floor(get_sf_ptr(p_ptr->floor_id), SLF_SECOND)) err = 183;
3111                 }
3112         }
3113
3114
3115         /*** Error messages ***/
3116         switch (err)
3117         {
3118         case 151:
3119 #ifdef JP
3120                 note("¥¢¥¤¥Æ¥à¤ÎÇÛÎó¤¬Â礭¤¹¤®¤ë¡ª");
3121 #else
3122                 note("Too many object entries!");
3123 #endif
3124                 break;
3125
3126         case 152:
3127 #ifdef JP
3128                 note("¥¢¥¤¥Æ¥àÇÛÃÖ¥¨¥é¡¼");
3129 #else
3130                 note("Object allocation error");
3131 #endif
3132                 break;
3133
3134         case 161:
3135 #ifdef JP
3136                 note("¥â¥ó¥¹¥¿¡¼¤ÎÇÛÎó¤¬Â礭¤¹¤®¤ë¡ª");
3137 #else
3138                 note("Too many monster entries!");
3139 #endif
3140                 break;
3141
3142         case 162:
3143 #ifdef JP
3144                 note("¥â¥ó¥¹¥¿¡¼ÇÛÃÖ¥¨¥é¡¼");
3145 #else
3146                 note("Monster allocation error");
3147 #endif
3148                 break;
3149
3150         case 171:
3151 #ifdef JP
3152                 note("Êݸ¤µ¤ì¤¿¥Õ¥í¥¢¤Î¥À¥ó¥¸¥ç¥ó¥Ç¡¼¥¿¤¬²õ¤ì¤Æ¤¤¤Þ¤¹¡ª");
3153 #else
3154                 note("Dungeon data of saved floors are broken!");
3155 #endif
3156                 break;
3157
3158         case 182:
3159 #ifdef JP
3160                 note("¥Æ¥ó¥Ý¥é¥ê¡¦¥Õ¥¡¥¤¥ë¤òºîÀ®¤Ç¤­¤Þ¤»¤ó¡ª");
3161 #else
3162                 note("Failed to make temporal files!");
3163 #endif
3164                 break;
3165
3166         case 183:
3167 #ifdef JP
3168                 note("Error 183");
3169 #else
3170                 note("Error 183");
3171 #endif
3172                 break;
3173         }
3174
3175         /* The dungeon is ready */
3176         character_dungeon = TRUE;
3177
3178         /* Success or Error */
3179         return err;
3180 }
3181
3182
3183 /*
3184  * Actually read the savefile
3185  */
3186 static errr rd_savefile_new_aux(void)
3187 {
3188         int i, j;
3189         int town_count;
3190
3191         s32b wild_x_size;
3192         s32b wild_y_size;
3193
3194         byte tmp8u;
3195         u16b tmp16u;
3196         u32b tmp32u;
3197
3198 #ifdef VERIFY_CHECKSUMS
3199         u32b n_x_check, n_v_check;
3200         u32b o_x_check, o_v_check;
3201 #endif
3202
3203
3204         /* Mention the savefile version */
3205         note(format(
3206 #ifdef JP
3207                      "¥Ð¡¼¥¸¥ç¥ó %d.%d.%d ¤Î¥»¡¼¥Ö¡¦¥Õ¥¡¥¤¥ë¤ò¥í¡¼¥ÉÃæ...",
3208 #else
3209                      "Loading a %d.%d.%d savefile...",
3210 #endif
3211                      (z_major > 9) ? z_major - 10 : z_major, z_minor, z_patch));
3212
3213
3214         /* Strip the version bytes */
3215         strip_bytes(4);
3216
3217         /* Hack -- decrypt */
3218         xor_byte = sf_extra;
3219
3220
3221         /* Clear the checksums */
3222         v_check = 0L;
3223         x_check = 0L;
3224
3225         /* Read the version number of the savefile */
3226         /* Old savefile will be version 0.0.0.3 */
3227         rd_byte(&h_ver_extra);
3228         rd_byte(&h_ver_patch);
3229         rd_byte(&h_ver_minor);
3230         rd_byte(&h_ver_major);
3231
3232         /* Operating system info */
3233         rd_u32b(&sf_system);
3234
3235         /* Time of savefile creation */
3236         rd_u32b(&sf_when);
3237
3238         /* Number of resurrections */
3239         rd_u16b(&sf_lives);
3240
3241         /* Number of times played */
3242         rd_u16b(&sf_saves);
3243
3244
3245         /* Later use (always zero) */
3246         rd_u32b(&tmp32u);
3247
3248         /* Later use (always zero) */
3249         rd_u16b(&tmp16u);
3250
3251         /* Later use (always zero) */
3252         rd_byte(&tmp8u);
3253
3254         /* Kanji code */
3255         rd_byte(&kanji_code);
3256
3257         /* Read RNG state */
3258         rd_randomizer();
3259 #ifdef JP
3260 if (arg_fiddle) note("Íð¿ô¾ðÊó¤ò¥í¡¼¥É¤·¤Þ¤·¤¿");
3261 #else
3262         if (arg_fiddle) note("Loaded Randomizer Info");
3263 #endif
3264
3265
3266
3267         /* Then the options */
3268         rd_options();
3269 #ifdef JP
3270 if (arg_fiddle) note("¥ª¥×¥·¥ç¥ó¤ò¥í¡¼¥É¤·¤Þ¤·¤¿");
3271 #else
3272         if (arg_fiddle) note("Loaded Option Flags");
3273 #endif
3274
3275         /* Then the "messages" */
3276         rd_messages();
3277 #ifdef JP
3278 if (arg_fiddle) note("¥á¥Ã¥»¡¼¥¸¤ò¥í¡¼¥É¤·¤Þ¤·¤¿");
3279 #else
3280         if (arg_fiddle) note("Loaded Messages");
3281 #endif
3282
3283
3284
3285         for (i = 0; i < max_r_idx; i++)
3286         {
3287                 /* Access that monster */
3288                 monster_race *r_ptr = &r_info[i];
3289
3290                 /* Hack -- Reset the death counter */
3291                 r_ptr->max_num = 100;
3292
3293                 if (r_ptr->flags1 & RF1_UNIQUE) r_ptr->max_num = 1;
3294
3295                 /* Hack -- Non-unique Nazguls are semi-unique */
3296                 else if (r_ptr->flags7 & RF7_NAZGUL) r_ptr->max_num = MAX_NAZGUL_NUM;
3297         }
3298
3299         /* Monster Memory */
3300         rd_u16b(&tmp16u);
3301
3302         /* Incompatible save files */
3303         if (tmp16u > max_r_idx)
3304         {
3305 #ifdef JP
3306 note(format("¥â¥ó¥¹¥¿¡¼¤Î¼ï²¤¬Â¿¤¹¤®¤ë(%u)¡ª", tmp16u));
3307 #else
3308                 note(format("Too many (%u) monster races!", tmp16u));
3309 #endif
3310
3311                 return (21);
3312         }
3313
3314         /* Read the available records */
3315         for (i = 0; i < tmp16u; i++)
3316         {
3317                 /* Read the lore */
3318                 rd_lore(i);
3319         }
3320
3321 #ifdef JP
3322 if (arg_fiddle) note("¥â¥ó¥¹¥¿¡¼¤Î»×¤¤½Ð¤ò¥í¡¼¥É¤·¤Þ¤·¤¿");
3323 #else
3324         if (arg_fiddle) note("Loaded Monster Memory");
3325 #endif
3326
3327
3328
3329         /* Object Memory */
3330         rd_u16b(&tmp16u);
3331
3332         /* Incompatible save files */
3333         if (tmp16u > max_k_idx)
3334         {
3335 #ifdef JP
3336 note(format("¥¢¥¤¥Æ¥à¤Î¼ïÎब¿¤¹¤®¤ë(%u)¡ª", tmp16u));
3337 #else
3338                 note(format("Too many (%u) object kinds!", tmp16u));
3339 #endif
3340
3341                 return (22);
3342         }
3343
3344         /* Read the object memory */
3345         for (i = 0; i < tmp16u; i++)
3346         {
3347                 byte tmp8u;
3348                 object_kind *k_ptr = &k_info[i];
3349
3350                 rd_byte(&tmp8u);
3351
3352                 k_ptr->aware = (tmp8u & 0x01) ? TRUE: FALSE;
3353                 k_ptr->tried = (tmp8u & 0x02) ? TRUE: FALSE;
3354         }
3355 #ifdef JP
3356 if (arg_fiddle) note("¥¢¥¤¥Æ¥à¤Îµ­Ï¿¤ò¥í¡¼¥É¤·¤Þ¤·¤¿");
3357 #else
3358         if (arg_fiddle) note("Loaded Object Memory");
3359 #endif
3360
3361
3362         /* Init the wilderness seeds */
3363         for (i = 0; i < max_wild_x; i++)
3364         {
3365                 for (j = 0; j < max_wild_y; j++)
3366                 {
3367                         wilderness[j][i].seed = randint0(0x10000000);
3368                 }
3369         }
3370
3371         /* 2.1.3 or newer version */
3372         {
3373                 u16b max_towns_load;
3374                 u16b max_quests_load;
3375                 byte max_rquests_load;
3376                 s16b old_inside_quest = p_ptr->inside_quest;
3377
3378                 /* Number of towns */
3379                 rd_u16b(&max_towns_load);
3380
3381                 /* Incompatible save files */
3382                 if (max_towns_load > max_towns)
3383                 {
3384 #ifdef JP
3385 note(format("Ä®¤¬Â¿¤¹¤®¤ë(%u)¡ª", max_towns_load));
3386 #else
3387                         note(format("Too many (%u) towns!", max_towns_load));
3388 #endif
3389
3390                         return (23);
3391                 }
3392
3393                 /* Number of quests */
3394                 rd_u16b(&max_quests_load);
3395
3396                 if (z_older_than(11, 0, 7))
3397                 {
3398                         max_rquests_load = 10;
3399                 }
3400                 else
3401                 {
3402                         rd_byte(&max_rquests_load);
3403                 }
3404
3405                 /* Incompatible save files */
3406                 if (max_quests_load > max_quests)
3407                 {
3408 #ifdef JP
3409 note(format("¥¯¥¨¥¹¥È¤¬Â¿¤¹¤®¤ë(%u)¡ª", max_quests_load));
3410 #else
3411                         note(format("Too many (%u) quests!", max_quests_load));
3412 #endif
3413
3414                         return (23);
3415                 }
3416
3417                 for (i = 0; i < max_quests_load; i++)
3418                 {
3419                         if (i < max_quests)
3420                         {
3421                                 rd_s16b(&quest[i].status);
3422                                 rd_s16b(&quest[i].level);
3423
3424                                 if (z_older_than(11, 0, 6))
3425                                 {
3426                                         quest[i].complev = 0;
3427                                 }
3428                                 else
3429                                 {
3430                                         rd_byte(&quest[i].complev);
3431                                 }
3432
3433                                 /* Load quest status if quest is running */
3434                                 if ((quest[i].status == QUEST_STATUS_TAKEN) ||
3435                                     (!z_older_than(10, 3, 14) && (quest[i].status == QUEST_STATUS_COMPLETED)) ||
3436                                     (!z_older_than(11, 0, 7) && (i >= MIN_RANDOM_QUEST) && (i <= (MIN_RANDOM_QUEST + max_rquests_load))))
3437                                 {
3438                                         rd_s16b(&quest[i].cur_num);
3439                                         rd_s16b(&quest[i].max_num);
3440                                         rd_s16b(&quest[i].type);
3441
3442                                         /* Load quest monster index */
3443                                         rd_s16b(&quest[i].r_idx);
3444
3445                                         if ((quest[i].type == QUEST_TYPE_RANDOM) && (!quest[i].r_idx))
3446                                         {
3447                                                 determine_random_questor(&quest[i]);
3448                                         }
3449
3450                                         /* Load quest item index */
3451                                         rd_s16b(&quest[i].k_idx);
3452
3453                                         if (quest[i].k_idx)
3454                                                 a_info[quest[i].k_idx].gen_flags |= TRG_QUESTITEM;
3455
3456                                         rd_byte(&quest[i].flags);
3457
3458                                         if (z_older_than(10, 3, 11))
3459                                         {
3460                                                 if (quest[i].flags & QUEST_FLAG_PRESET)
3461                                                 {
3462                                                         quest[i].dungeon = 0;
3463                                                 }
3464                                                 else
3465                                                 {
3466                                                         init_flags = INIT_ASSIGN;
3467                                                         p_ptr->inside_quest = i;
3468
3469                                                         process_dungeon_file("q_info.txt", 0, 0, 0, 0);
3470                                                         p_ptr->inside_quest = old_inside_quest;
3471                                                 }
3472                                         }
3473                                         else
3474                                         {
3475                                                 rd_byte(&quest[i].dungeon);
3476                                         }
3477                                         /* Mark uniques */
3478                                         if (quest[i].status == QUEST_STATUS_TAKEN || quest[i].status == QUEST_STATUS_UNTAKEN)
3479                                                 if (r_info[quest[i].r_idx].flags1 & RF1_UNIQUE)
3480                                                         r_info[quest[i].r_idx].flags1 |= RF1_QUESTOR;
3481                                 }
3482                         }
3483                         /* Ignore the empty quests from old versions */
3484                         else
3485                         {
3486                                 /* Ignore quest status */
3487                                 strip_bytes(2);
3488
3489                                 /* Ignore quest level */
3490                                 strip_bytes(2);
3491
3492                                 /*
3493                                  * We don't have to care about the other info,
3494                                  * since status should be 0 for these quests anyway
3495                                  */
3496                         }
3497                 }
3498
3499                 /* Quest 18 was removed */
3500                 if (h_older_than(1, 7, 0, 6))
3501                 {
3502                         WIPE(&quest[OLD_QUEST_WATER_CAVE], quest_type);
3503                         quest[OLD_QUEST_WATER_CAVE].status = QUEST_STATUS_UNTAKEN;
3504                 }
3505
3506                 /* Position in the wilderness */
3507                 rd_s32b(&p_ptr->wilderness_x);
3508                 rd_s32b(&p_ptr->wilderness_y);
3509                 if (z_older_than(10, 3, 13))
3510                 {
3511                         p_ptr->wilderness_x = 5;
3512                         p_ptr->wilderness_y = 48;
3513                 }
3514
3515                 if (z_older_than(10, 3, 7)) p_ptr->wild_mode = FALSE;
3516                 else rd_byte((byte *)&p_ptr->wild_mode);
3517                 if (z_older_than(10, 3, 7)) ambush_flag = FALSE;
3518                 else rd_byte((byte *)&ambush_flag);
3519
3520                 /* Size of the wilderness */
3521                 rd_s32b(&wild_x_size);
3522                 rd_s32b(&wild_y_size);
3523
3524                 /* Incompatible save files */
3525                 if ((wild_x_size > max_wild_x) || (wild_y_size > max_wild_y))
3526                 {
3527 #ifdef JP
3528 note(format("¹ÓÌÂ礭¤¹¤®¤ë(%u/%u)¡ª", wild_x_size, wild_y_size));
3529 #else
3530                         note(format("Wilderness is too big (%u/%u)!", wild_x_size, wild_y_size));
3531 #endif
3532
3533                         return (23);
3534                 }
3535
3536                 /* Load the wilderness seeds */
3537                 for (i = 0; i < wild_x_size; i++)
3538                 {
3539                         for (j = 0; j < wild_y_size; j++)
3540                         {
3541                                 rd_u32b(&wilderness[j][i].seed);
3542                         }
3543                 }
3544         }
3545
3546 #ifdef JP
3547 if (arg_fiddle) note("¥¯¥¨¥¹¥È¾ðÊó¤ò¥í¡¼¥É¤·¤Þ¤·¤¿");
3548 #else
3549         if (arg_fiddle) note("Loaded Quests");
3550 #endif
3551
3552         /* Load the Artifacts */
3553         rd_u16b(&tmp16u);
3554
3555         /* Incompatible save files */
3556         if (tmp16u > max_a_idx)
3557         {
3558 #ifdef JP
3559 note(format("ÅÁÀâ¤Î¥¢¥¤¥Æ¥à¤¬Â¿¤¹¤®¤ë(%u)¡ª", tmp16u));
3560 #else
3561                 note(format("Too many (%u) artifacts!", tmp16u));
3562 #endif
3563
3564                 return (24);
3565         }
3566
3567         /* Read the artifact flags */
3568         for (i = 0; i < tmp16u; i++)
3569         {
3570                 artifact_type *a_ptr = &a_info[i];
3571
3572                 rd_byte(&tmp8u);
3573                 a_ptr->cur_num = tmp8u;
3574
3575                 if (h_older_than(1, 5, 0, 0))
3576                 {
3577                         a_ptr->floor_id = 0;
3578
3579                         rd_byte(&tmp8u);
3580                         rd_byte(&tmp8u);
3581                         rd_byte(&tmp8u);
3582                 }
3583                 else
3584                 {
3585                         rd_s16b(&a_ptr->floor_id);
3586                 }
3587         }
3588 #ifdef JP
3589 if (arg_fiddle) note("ÅÁÀâ¤Î¥¢¥¤¥Æ¥à¤ò¥í¡¼¥É¤·¤Þ¤·¤¿");
3590 #else
3591         if (arg_fiddle) note("Loaded Artifacts");
3592 #endif
3593
3594
3595
3596         /* Read the extra stuff */
3597         rd_extra();
3598         if (p_ptr->energy_need < -999) world_player = TRUE;
3599
3600 #ifdef JP
3601 if (arg_fiddle) note("ÆÃÊ̾ðÊó¤ò¥í¡¼¥É¤·¤Þ¤·¤¿");
3602 #else
3603         if (arg_fiddle) note("Loaded extra information");
3604 #endif
3605
3606
3607         /* Read the player_hp array */
3608         rd_u16b(&tmp16u);
3609
3610         /* Incompatible save files */
3611         if (tmp16u > PY_MAX_LEVEL)
3612         {
3613 #ifdef JP
3614 note(format("¥Ò¥Ã¥È¥Ý¥¤¥ó¥ÈÇÛÎó¤¬Â礭¤¹¤®¤ë(%u)¡ª", tmp16u));
3615 #else
3616                 note(format("Too many (%u) hitpoint entries!", tmp16u));
3617 #endif
3618
3619                 return (25);
3620         }
3621
3622         /* Read the player_hp array */
3623         for (i = 0; i < tmp16u; i++)
3624         {
3625                 rd_s16b(&p_ptr->player_hp[i]);
3626         }
3627
3628         /* Important -- Initialize the sex */
3629         sp_ptr = &sex_info[p_ptr->psex];
3630
3631         /* Important -- Initialize the race/class */
3632         rp_ptr = &race_info[p_ptr->prace];
3633         cp_ptr = &class_info[p_ptr->pclass];
3634         ap_ptr = &seikaku_info[p_ptr->pseikaku];
3635
3636         if(z_older_than(10, 2, 2) && (p_ptr->pclass == CLASS_BEASTMASTER) && !p_ptr->is_dead)
3637         {
3638                 p_ptr->hitdie = rp_ptr->r_mhp + cp_ptr->c_mhp + ap_ptr->a_mhp;
3639                 do_cmd_rerate(FALSE);
3640         }
3641         if(z_older_than(10, 3, 2) && (p_ptr->pclass == CLASS_ARCHER) && !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         if(z_older_than(10, 2, 6) && (p_ptr->pclass == CLASS_SORCERER) && !p_ptr->is_dead)
3647         {
3648                 p_ptr->hitdie = rp_ptr->r_mhp/2 + cp_ptr->c_mhp + ap_ptr->a_mhp;
3649                 do_cmd_rerate(FALSE);
3650         }
3651         if(z_older_than(10, 4, 7) && (p_ptr->pclass == CLASS_BLUE_MAGE) && !p_ptr->is_dead)
3652         {
3653                 p_ptr->hitdie = rp_ptr->r_mhp + cp_ptr->c_mhp + ap_ptr->a_mhp;
3654                 do_cmd_rerate(FALSE);
3655         }
3656
3657         /* Important -- Initialize the magic */
3658         mp_ptr = &m_info[p_ptr->pclass];
3659
3660
3661         /* Read spell info */
3662         rd_u32b(&p_ptr->spell_learned1);
3663         rd_u32b(&p_ptr->spell_learned2);
3664         rd_u32b(&p_ptr->spell_worked1);
3665         rd_u32b(&p_ptr->spell_worked2);
3666         rd_u32b(&p_ptr->spell_forgotten1);
3667         rd_u32b(&p_ptr->spell_forgotten2);
3668
3669         if (z_older_than(10,0,5))
3670         {
3671                 p_ptr->learned_spells = 0;
3672                 for (i = 0; i < 64; i++)
3673                 {
3674                         /* Count known spells */
3675                         if ((i < 32) ?
3676                             (p_ptr->spell_learned1 & (1L << i)) :
3677                             (p_ptr->spell_learned2 & (1L << (i - 32))))
3678                         {
3679                                 p_ptr->learned_spells++;
3680                         }
3681                 }
3682         }
3683         else rd_s16b(&p_ptr->learned_spells);
3684
3685         if (z_older_than(10,0,6))
3686         {
3687                 p_ptr->add_spells = 0;
3688         }
3689         else rd_s16b(&p_ptr->add_spells);
3690         if (p_ptr->pclass == CLASS_MINDCRAFTER) p_ptr->add_spells = 0;
3691
3692         for (i = 0; i < 64; i++)
3693         {
3694                 rd_byte(&p_ptr->spell_order[i]);
3695         }
3696
3697
3698         /* Read the inventory */
3699         if (rd_inventory())
3700         {
3701 #ifdef JP
3702 note("»ý¤Áʪ¾ðÊó¤òÆɤ߹þ¤à¤³¤È¤¬¤Ç¤­¤Þ¤»¤ó");
3703 #else
3704                 note("Unable to read inventory");
3705 #endif
3706
3707                 return (21);
3708         }
3709
3710         /* Read number of towns */
3711         rd_u16b(&tmp16u);
3712         town_count = tmp16u;
3713
3714         /* Read the stores */
3715         rd_u16b(&tmp16u);
3716         for (i = 1; i < town_count; i++)
3717         {
3718                 for (j = 0; j < tmp16u; j++)
3719                 {
3720                         if (rd_store(i, j)) return (22);
3721                 }
3722         }
3723
3724         rd_s16b(&p_ptr->pet_follow_distance);
3725         if (z_older_than(10, 4, 10))
3726         {
3727                 p_ptr->pet_extra_flags = 0;
3728                 rd_byte(&tmp8u);
3729                 if (tmp8u) p_ptr->pet_extra_flags |= PF_OPEN_DOORS;
3730                 rd_byte(&tmp8u);
3731                 if (tmp8u) p_ptr->pet_extra_flags |= PF_PICKUP_ITEMS;
3732
3733                 if (z_older_than(10,0,4)) p_ptr->pet_extra_flags |= PF_TELEPORT;
3734                 else
3735                 {
3736                         rd_byte(&tmp8u);
3737                         if (tmp8u) p_ptr->pet_extra_flags |= PF_TELEPORT;
3738                 }
3739
3740                 if (z_older_than(10,0,7)) p_ptr->pet_extra_flags |= PF_ATTACK_SPELL;
3741                 else
3742                 {
3743                         rd_byte(&tmp8u);
3744                         if (tmp8u) p_ptr->pet_extra_flags |= PF_ATTACK_SPELL;
3745                 }
3746
3747                 if (z_older_than(10,0,8)) p_ptr->pet_extra_flags |= PF_SUMMON_SPELL;
3748                 else
3749                 {
3750                         rd_byte(&tmp8u);
3751                         if (tmp8u) p_ptr->pet_extra_flags |= PF_SUMMON_SPELL;
3752                 }
3753
3754                 if (!z_older_than(10,0,8))
3755                 {
3756                         rd_byte(&tmp8u);
3757                         if (tmp8u) p_ptr->pet_extra_flags |= PF_BALL_SPELL;
3758                 }
3759         }
3760         else
3761         {
3762                 rd_s16b(&p_ptr->pet_extra_flags);
3763         }
3764
3765         if (!z_older_than(11, 0, 9))
3766         {
3767                 char buf[SCREEN_BUF_SIZE];
3768                 rd_string(buf, sizeof(buf));
3769                 if (buf[0]) screen_dump = string_make(buf);
3770         }
3771
3772         if (p_ptr->is_dead)
3773         {
3774                 for (i = MIN_RANDOM_QUEST; i < MAX_RANDOM_QUEST + 1; i++)
3775                 {
3776                         r_info[quest[i].r_idx].flags1 &= ~(RF1_QUESTOR);
3777                 }
3778         }
3779
3780
3781         /* I'm not dead yet... */
3782         if (!p_ptr->is_dead)
3783         {
3784                 /* Dead players have no dungeon */
3785 #ifdef JP
3786 note("¥À¥ó¥¸¥ç¥óÉü¸µÃæ...");
3787 #else
3788                 note("Restoring Dungeon...");
3789 #endif
3790
3791                 if (rd_dungeon())
3792                 {
3793 #ifdef JP
3794 note("¥À¥ó¥¸¥ç¥ó¥Ç¡¼¥¿Æɤ߹þ¤ß¼ºÇÔ");
3795 #else
3796                         note("Error reading dungeon data");
3797 #endif
3798
3799                         return (34);
3800                 }
3801
3802                 /* Read the ghost info */
3803                 rd_ghost();
3804
3805                 {
3806                         s32b tmp32s;
3807
3808                         rd_s32b(&tmp32s);
3809                         strip_bytes(tmp32s);
3810                 }
3811         }
3812
3813         /* Quest 18 was removed */
3814         if (h_older_than(1, 7, 0, 6))
3815         {
3816                 if (p_ptr->inside_quest == OLD_QUEST_WATER_CAVE)
3817                 {
3818                         dungeon_type = lite_town ? DUNGEON_ANGBAND : DUNGEON_GALGALS;
3819                         dun_level = 1;
3820                         p_ptr->inside_quest = 0;
3821                 }
3822         }
3823
3824
3825 #ifdef VERIFY_CHECKSUMS
3826
3827         /* Save the checksum */
3828         n_v_check = v_check;
3829
3830         /* Read the old checksum */
3831         rd_u32b(&o_v_check);
3832
3833         /* Verify */
3834         if (o_v_check != n_v_check)
3835         {
3836 #ifdef JP
3837 note("¥Á¥§¥Ã¥¯¥µ¥à¤¬¤ª¤«¤·¤¤");
3838 #else
3839                 note("Invalid checksum");
3840 #endif
3841
3842                 return (11);
3843         }
3844
3845
3846         /* Save the encoded checksum */
3847         n_x_check = x_check;
3848
3849         /* Read the checksum */
3850         rd_u32b(&o_x_check);
3851
3852
3853         /* Verify */
3854         if (o_x_check != n_x_check)
3855         {
3856 #ifdef JP
3857 note("¥¨¥ó¥³¡¼¥É¤µ¤ì¤¿¥Á¥§¥Ã¥¯¥µ¥à¤¬¤ª¤«¤·¤¤");
3858 #else
3859                 note("Invalid encoded checksum");
3860 #endif
3861
3862                 return (11);
3863         }
3864
3865 #endif
3866
3867         /* Success */
3868         return (0);
3869 }
3870
3871
3872 /*
3873  * Actually read the savefile
3874  */
3875 errr rd_savefile_new(void)
3876 {
3877         errr err;
3878
3879         /* Grab permissions */
3880         safe_setuid_grab();
3881
3882         /* The savefile is a binary file */
3883         fff = my_fopen(savefile, "rb");
3884
3885         /* Drop permissions */
3886         safe_setuid_drop();
3887
3888         /* Paranoia */
3889         if (!fff) return (-1);
3890
3891         /* Call the sub-function */
3892         err = rd_savefile_new_aux();
3893
3894         /* Check for errors */
3895         if (ferror(fff)) err = -1;
3896
3897         /* Close the file */
3898         my_fclose(fff);
3899
3900         /* Result */
3901         return (err);
3902 }
3903
3904
3905 /*
3906  * Actually load and verify a floor save data
3907  */
3908 static bool load_floor_aux(saved_floor_type *sf_ptr)
3909 {
3910         byte tmp8u;
3911         u32b tmp32u;
3912
3913 #ifdef VERIFY_CHECKSUMS
3914         u32b n_x_check, n_v_check;
3915         u32b o_x_check, o_v_check;
3916 #endif
3917
3918         /* Hack -- decrypt (read xor_byte) */
3919         xor_byte = 0;
3920         rd_byte(&tmp8u);
3921
3922         /* Clear the checksums */
3923         v_check = 0L;
3924         x_check = 0L;
3925
3926         /* Set the version number to current version */
3927         /* Never load old temporal files */
3928         h_ver_extra = H_VER_EXTRA;
3929         h_ver_patch = H_VER_PATCH;
3930         h_ver_minor = H_VER_MINOR;
3931         h_ver_major = H_VER_MAJOR;
3932
3933         /* Verify the sign */
3934         rd_u32b(&tmp32u);
3935         if (saved_floor_file_sign != tmp32u) return FALSE;
3936
3937         /* Read -- have error? */
3938         if (rd_saved_floor(sf_ptr)) return FALSE;
3939
3940
3941 #ifdef VERIFY_CHECKSUMS
3942         /* Save the checksum */
3943         n_v_check = v_check;
3944
3945         /* Read the old checksum */
3946         rd_u32b(&o_v_check);
3947
3948         /* Verify */
3949         if (o_v_check != n_v_check) return FALSE;
3950
3951         /* Save the encoded checksum */
3952         n_x_check = x_check;
3953
3954         /* Read the checksum */
3955         rd_u32b(&o_x_check);
3956
3957         /* Verify */
3958         if (o_x_check != n_x_check) return FALSE;
3959 #endif
3960
3961         /* Success */
3962         return TRUE;
3963 }
3964
3965
3966 /*
3967  * Attempt to load the temporally saved-floor data
3968  */
3969 bool load_floor(saved_floor_type *sf_ptr, u32b mode)
3970 {
3971         FILE *old_fff = NULL;
3972         byte old_xor_byte = 0;
3973         u32b old_v_check = 0;
3974         u32b old_x_check = 0;
3975         byte old_h_ver_major = 0;
3976         byte old_h_ver_minor = 0;
3977         byte old_h_ver_patch = 0;
3978         byte old_h_ver_extra = 0;
3979  
3980         bool ok = TRUE;
3981         char floor_savefile[1024];
3982
3983         byte old_kanji_code = kanji_code;
3984
3985         /*
3986          * Temporal files are always written in system depended kanji
3987          * code.
3988          */
3989 #ifdef JP
3990 # ifdef EUC
3991         /* EUC kanji code */
3992         kanji_code = 2;
3993 # endif
3994 # ifdef SJIS
3995         /* SJIS kanji code */
3996         kanji_code = 3;
3997 # endif
3998 #else
3999         /* ASCII */
4000         kanji_code = 1;
4001 #endif
4002
4003
4004         /* We have one file already opened */
4005         if (mode & SLF_SECOND)
4006         {
4007                 /* Backup original values */
4008                 old_fff = fff;
4009                 old_xor_byte = xor_byte;
4010                 old_v_check = v_check;
4011                 old_x_check = x_check;
4012                 old_h_ver_major = h_ver_major;
4013                 old_h_ver_minor = h_ver_minor;
4014                 old_h_ver_patch = h_ver_patch;
4015                 old_h_ver_extra = h_ver_extra;
4016         }
4017
4018         /* floor savefile */
4019         sprintf(floor_savefile, "%s.F%02d", savefile, (int)sf_ptr->savefile_id);
4020
4021         /* Grab permissions */
4022         safe_setuid_grab();
4023
4024         /* The savefile is a binary file */
4025         fff = my_fopen(floor_savefile, "rb");
4026
4027         /* Drop permissions */
4028         safe_setuid_drop();
4029
4030         /* Couldn't read */
4031         if (!fff) ok = FALSE;
4032
4033         /* Attempt to load */
4034         if (ok)
4035         {
4036                 /* Load saved floor data from file */
4037                 ok = load_floor_aux(sf_ptr);
4038
4039                 /* Check for errors */
4040                 if (ferror(fff)) ok = FALSE;
4041
4042                 /* Close the file */
4043                 my_fclose(fff);
4044
4045                 /* Grab permissions */
4046                 safe_setuid_grab();
4047
4048                 /* Delete the file */
4049                 if (!(mode & SLF_NO_KILL)) (void)fd_kill(floor_savefile);
4050
4051                 /* Drop permissions */
4052                 safe_setuid_drop();
4053         }
4054
4055         /* We have one file already opened */
4056         if (mode & SLF_SECOND)
4057         {
4058                 /* Restore original values */
4059                 fff = old_fff;
4060                 xor_byte = old_xor_byte;
4061                 v_check = old_v_check;
4062                 x_check = old_x_check;
4063                 h_ver_major = old_h_ver_major;
4064                 h_ver_minor = old_h_ver_minor;
4065                 h_ver_patch = old_h_ver_patch;
4066                 h_ver_extra = old_h_ver_extra;
4067         }
4068
4069         /* Restore old knowledge */
4070         kanji_code = old_kanji_code;
4071
4072         /* Result */
4073         return ok;
4074 }