OSDN Git Service

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