OSDN Git Service

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