OSDN Git Service

09c77f966484bd9c7ed42a2dce03be4f8bac5923
[hengband/hengband.git] / src / init2.c
1 /* File: init2.c */
2
3 /* Purpose: Initialization (part 2) -BEN- */
4
5 #include "angband.h"
6
7 #include "init.h"
8
9 #ifndef MACINTOSH
10 #ifdef CHECK_MODIFICATION_TIME
11 #include <sys/types.h>
12 #include <sys/stat.h>
13 #endif /* CHECK_MODIFICATION_TIME */
14 #endif
15
16 /*
17  * This file is used to initialize various variables and arrays for the
18  * Angband game.  Note the use of "fd_read()" and "fd_write()" to bypass
19  * the common limitation of "read()" and "write()" to only 32767 bytes
20  * at a time.
21  *
22  * Several of the arrays for Angband are built from "template" files in
23  * the "lib/file" directory, from which quick-load binary "image" files
24  * are constructed whenever they are not present in the "lib/data"
25  * directory, or if those files become obsolete, if we are allowed.
26  *
27  * Warning -- the "ascii" file parsers use a minor hack to collect the
28  * name and text information in a single pass.  Thus, the game will not
29  * be able to load any template file with more than 20K of names or 60K
30  * of text, even though technically, up to 64K should be legal.
31  *
32  * The "init1.c" file is used only to parse the ascii template files,
33  * to create the binary image files.  If you include the binary image
34  * files instead of the ascii template files, then you can undefine
35  * "ALLOW_TEMPLATES", saving about 20K by removing "init1.c".  Note
36  * that the binary image files are extremely system dependant.
37  */
38
39
40
41 /*
42  * Find the default paths to all of our important sub-directories.
43  *
44  * The purpose of each sub-directory is described in "variable.c".
45  *
46  * All of the sub-directories should, by default, be located inside
47  * the main "lib" directory, whose location is very system dependant.
48  *
49  * This function takes a writable buffer, initially containing the
50  * "path" to the "lib" directory, for example, "/pkg/lib/angband/",
51  * or a system dependant string, for example, ":lib:".  The buffer
52  * must be large enough to contain at least 32 more characters.
53  *
54  * Various command line options may allow some of the important
55  * directories to be changed to user-specified directories, most
56  * importantly, the "info" and "user" and "save" directories,
57  * but this is done after this function, see "main.c".
58  *
59  * In general, the initial path should end in the appropriate "PATH_SEP"
60  * string.  All of the "sub-directory" paths (created below or supplied
61  * by the user) will NOT end in the "PATH_SEP" string, see the special
62  * "path_build()" function in "util.c" for more information.
63  *
64  * Mega-Hack -- support fat raw files under NEXTSTEP, using special
65  * "suffixed" directories for the "ANGBAND_DIR_DATA" directory, but
66  * requiring the directories to be created by hand by the user.
67  *
68  * Hack -- first we free all the strings, since this is known
69  * to succeed even if the strings have not been allocated yet,
70  * as long as the variables start out as "NULL".  This allows
71  * this function to be called multiple times, for example, to
72  * try several base "path" values until a good one is found.
73  */
74 void init_file_paths(char *path)
75 {
76         char *tail;
77
78 #ifdef PRIVATE_USER_PATH
79         char buf[1024];
80 #endif /* PRIVATE_USER_PATH */
81
82         /*** Free everything ***/
83
84         /* Free the main path */
85         string_free(ANGBAND_DIR);
86
87         /* Free the sub-paths */
88         string_free(ANGBAND_DIR_APEX);
89         string_free(ANGBAND_DIR_BONE);
90         string_free(ANGBAND_DIR_DATA);
91         string_free(ANGBAND_DIR_EDIT);
92         string_free(ANGBAND_DIR_SCRIPT);
93         string_free(ANGBAND_DIR_FILE);
94         string_free(ANGBAND_DIR_HELP);
95         string_free(ANGBAND_DIR_INFO);
96         string_free(ANGBAND_DIR_SAVE);
97         string_free(ANGBAND_DIR_USER);
98         string_free(ANGBAND_DIR_XTRA);
99
100
101         /*** Prepare the "path" ***/
102
103         /* Hack -- save the main directory */
104         ANGBAND_DIR = string_make(path);
105
106         /* Prepare to append to the Base Path */
107         tail = path + strlen(path);
108
109
110 #ifdef VM
111
112         /*** Use "flat" paths with VM/ESA ***/
113
114         /* Use "blank" path names */
115         ANGBAND_DIR_APEX = string_make("");
116         ANGBAND_DIR_BONE = string_make("");
117         ANGBAND_DIR_DATA = string_make("");
118         ANGBAND_DIR_EDIT = string_make("");
119         ANGBAND_DIR_SCRIPT = string_make("");
120         ANGBAND_DIR_FILE = string_make("");
121         ANGBAND_DIR_HELP = string_make("");
122         ANGBAND_DIR_INFO = string_make("");
123         ANGBAND_DIR_SAVE = string_make("");
124         ANGBAND_DIR_USER = string_make("");
125         ANGBAND_DIR_XTRA = string_make("");
126
127
128 #else /* VM */
129
130
131         /*** Build the sub-directory names ***/
132
133         /* Build a path name */
134         strcpy(tail, "apex");
135         ANGBAND_DIR_APEX = string_make(path);
136
137         /* Build a path name */
138         strcpy(tail, "bone");
139         ANGBAND_DIR_BONE = string_make(path);
140
141         /* Build a path name */
142         strcpy(tail, "data");
143         ANGBAND_DIR_DATA = string_make(path);
144
145         /* Build a path name */
146         strcpy(tail, "edit");
147         ANGBAND_DIR_EDIT = string_make(path);
148
149         /* Build a path name */
150         strcpy(tail, "script");
151         ANGBAND_DIR_SCRIPT = string_make(path);
152
153         /* Build a path name */
154         strcpy(tail, "file");
155         ANGBAND_DIR_FILE = string_make(path);
156
157         /* Build a path name */
158         strcpy(tail, "help");
159         ANGBAND_DIR_HELP = string_make(path);
160
161         /* Build a path name */
162         strcpy(tail, "info");
163         ANGBAND_DIR_INFO = string_make(path);
164
165         /* Build a path name */
166         strcpy(tail, "pref");
167         ANGBAND_DIR_PREF = string_make(path);
168
169         /* Build a path name */
170         strcpy(tail, "save");
171         ANGBAND_DIR_SAVE = string_make(path);
172
173 #ifdef PRIVATE_USER_PATH
174
175         /* Build the path to the user specific directory */
176         path_build(buf, sizeof(buf), PRIVATE_USER_PATH, VERSION_NAME);
177
178         /* Build a relative path name */
179         ANGBAND_DIR_USER = string_make(buf);
180
181 #else /* PRIVATE_USER_PATH */
182
183         /* Build a path name */
184         strcpy(tail, "user");
185         ANGBAND_DIR_USER = string_make(path);
186
187 #endif /* PRIVATE_USER_PATH */
188
189         /* Build a path name */
190         strcpy(tail, "xtra");
191         ANGBAND_DIR_XTRA = string_make(path);
192
193 #endif /* VM */
194
195
196 #ifdef NeXT
197
198         /* Allow "fat binary" usage with NeXT */
199         if (TRUE)
200         {
201                 cptr next = NULL;
202
203 # if defined(m68k)
204                 next = "m68k";
205 # endif
206
207 # if defined(i386)
208                 next = "i386";
209 # endif
210
211 # if defined(sparc)
212                 next = "sparc";
213 # endif
214
215 # if defined(hppa)
216                 next = "hppa";
217 # endif
218
219                 /* Use special directory */
220                 if (next)
221                 {
222                         /* Forget the old path name */
223                         string_free(ANGBAND_DIR_DATA);
224
225                         /* Build a new path name */
226                         sprintf(tail, "data-%s", next);
227                         ANGBAND_DIR_DATA = string_make(path);
228                 }
229         }
230
231 #endif /* NeXT */
232
233 }
234
235
236
237 #ifdef ALLOW_TEMPLATES
238
239
240 /*
241  * Hack -- help give useful error messages
242  */
243 int error_idx;
244 int error_line;
245
246
247 /*
248  * Standard error message text
249  */
250 cptr err_str[PARSE_ERROR_MAX] =
251 {
252         NULL,
253 #ifdef JP
254         "ʸˡ¥¨¥é¡¼",
255         "¸Å¤¤¥Õ¥¡¥¤¥ë",
256         "µ­Ï¿¥Ø¥Ã¥À¤¬¤Ê¤¤",
257         "ÉÔϢ³¥ì¥³¡¼¥É",
258         "¤ª¤«¤·¤Ê¥Õ¥é¥°Â¸ºß",
259         "̤ÄêµÁÌ¿Îá",
260         "¥á¥â¥êÉÔ­",
261         "ºÂɸÈϰϳ°",
262         "°ú¿ôÉÔ­",
263 #else
264         "parse error",
265         "obsolete file",
266         "missing record header",
267         "non-sequential records",
268         "invalid flag specification",
269         "undefined directive",
270         "out of memory",
271         "coordinates out of bounds",
272         "too few arguments",
273 #endif
274
275 };
276
277
278 #endif /* ALLOW_TEMPLATES */
279
280
281 /*
282  * File headers
283  */
284 header v_head;
285 header f_head;
286 header k_head;
287 header a_head;
288 header e_head;
289 header r_head;
290 header d_head;
291 header s_head;
292 header m_head;
293
294 #ifdef CHECK_MODIFICATION_TIME
295
296 static errr check_modification_date(int fd, cptr template_file)
297 {
298         char buf[1024];
299
300         struct stat txt_stat, raw_stat;
301
302         /* Build the filename */
303         path_build(buf, sizeof(buf), ANGBAND_DIR_EDIT, template_file);
304
305         /* Access stats on text file */
306         if (stat(buf, &txt_stat))
307         {
308                 /* No text file - continue */
309         }
310
311         /* Access stats on raw file */
312         else if (fstat(fd, &raw_stat))
313         {
314                 /* Error */
315                 return (-1);
316         }
317
318         /* Ensure text file is not newer than raw file */
319         else if (txt_stat.st_mtime > raw_stat.st_mtime)
320         {
321                 /* Reprocess text file */
322                 return (-1);
323         }
324
325         return (0);
326 }
327
328 #endif /* CHECK_MODIFICATION_TIME */
329
330
331
332 /*** Initialize from binary image files ***/
333
334
335 /*
336  * Initialize the "*_info" array, by parsing a binary "image" file
337  */
338 static errr init_info_raw(int fd, header *head)
339 {
340         header test;
341
342         /* Read and Verify the header */
343         if (fd_read(fd, (char*)(&test), sizeof(header)) ||
344             (test.v_major != head->v_major) ||
345             (test.v_minor != head->v_minor) ||
346             (test.v_patch != head->v_patch) ||
347             (test.info_num != head->info_num) ||
348             (test.info_len != head->info_len) ||
349             (test.head_size != head->head_size) ||
350             (test.info_size != head->info_size))
351         {
352                 /* Error */
353                 return (-1);
354         }
355
356
357         /* Accept the header */
358         (*head) = test;
359
360
361         /* Allocate the "*_info" array */
362         C_MAKE(head->info_ptr, head->info_size, char);
363
364         /* Read the "*_info" array */
365         fd_read(fd, head->info_ptr, head->info_size);
366
367
368         if (head->name_size)
369         {
370                 /* Allocate the "*_name" array */
371                 C_MAKE(head->name_ptr, head->name_size, char);
372
373                 /* Read the "*_name" array */
374                 fd_read(fd, head->name_ptr, head->name_size);
375         }
376
377
378         if (head->text_size)
379         {
380                 /* Allocate the "*_text" array */
381                 C_MAKE(head->text_ptr, head->text_size, char);
382
383                 /* Read the "*_text" array */
384                 fd_read(fd, head->text_ptr, head->text_size);
385         }
386
387         /* Success */
388         return (0);
389 }
390
391
392
393 /*
394  * Initialize the header of an *_info.raw file.
395  */
396 static void init_header(header *head, int num, int len)
397 {
398         /* Save the "version" */
399         head->v_major = FAKE_VER_MAJOR;
400         head->v_minor = FAKE_VER_MINOR;
401         head->v_patch = FAKE_VER_PATCH;
402         head->v_extra = 0;
403
404         /* Save the "record" information */
405         head->info_num = num;
406         head->info_len = len;
407
408         /* Save the size of "*_head" and "*_info" */
409         head->head_size = sizeof(header);
410         head->info_size = head->info_num * head->info_len;
411 }
412
413
414 /*
415  * Initialize the "*_info" array
416  *
417  * Note that we let each entry have a unique "name" and "text" string,
418  * even if the string happens to be empty (everyone has a unique '\0').
419  */
420 static errr init_info(cptr filename, header *head,
421                         void **info, char **name, char **text)
422 {
423         int fd;
424
425         int mode = 0644;
426
427         errr err = 1;
428
429         FILE *fp;
430
431         /* General buffer */
432         char buf[1024];
433
434
435 #ifdef ALLOW_TEMPLATES
436
437         /*** Load the binary image file ***/
438
439         /* Build the filename */
440 #ifdef JP
441         path_build(buf, sizeof(buf), ANGBAND_DIR_DATA, format("%s_j.raw", filename));
442 #else
443         path_build(buf, sizeof(buf), ANGBAND_DIR_DATA, format("%s.raw", filename));
444 #endif
445
446
447         /* Attempt to open the "raw" file */
448         fd = fd_open(buf, O_RDONLY);
449
450         /* Process existing "raw" file */
451         if (fd >= 0)
452         {
453 #ifdef CHECK_MODIFICATION_TIME
454
455                 err = check_modification_date(fd, format("%s.txt", filename));
456
457 #endif /* CHECK_MODIFICATION_TIME */
458
459                 /* Attempt to parse the "raw" file */
460                 if (!err)
461                         err = init_info_raw(fd, head);
462
463                 /* Close it */
464                 (void)fd_close(fd);
465         }
466
467
468         /* Do we have to parse the *.txt file? */
469         if (err)
470         {
471                 /*** Make the fake arrays ***/
472
473                 /* Allocate the "*_info" array */
474                 C_MAKE(head->info_ptr, head->info_size, char);
475
476                 /* Hack -- make "fake" arrays */
477                 if (name) C_MAKE(head->name_ptr, FAKE_NAME_SIZE, char);
478                 if (text) C_MAKE(head->text_ptr, FAKE_TEXT_SIZE, char);
479
480                 if (info) (*info) = head->info_ptr;
481                 if (name) (*name) = head->name_ptr;
482                 if (text) (*text) = head->text_ptr;
483
484                 /*** Load the ascii template file ***/
485
486                 /* Build the filename */
487
488                 path_build(buf, sizeof(buf), ANGBAND_DIR_EDIT, format("%s.txt", filename));
489
490                 /* Open the file */
491                 fp = my_fopen(buf, "r");
492
493                 /* Parse it */
494 #ifdef JP
495                 if (!fp) quit(format("'%s.txt'¥Õ¥¡¥¤¥ë¤ò¥ª¡¼¥×¥ó¤Ç¤­¤Þ¤»¤ó¡£", filename));
496 #else
497                 if (!fp) quit(format("Cannot open '%s.txt' file.", filename));
498 #endif
499
500
501                 /* Parse the file */
502                 err = init_info_txt(fp, buf, head, head->parse_info_txt);
503
504                 /* Close it */
505                 my_fclose(fp);
506
507                 /* Errors */
508                 if (err)
509                 {
510                         cptr oops;
511
512 #ifdef JP
513                         /* Error string */
514                         oops = ((err > 0) ? err_str[err] : "̤ÃΤÎ");
515
516                         /* Oops */
517                         msg_format("'%s.txt'¥Õ¥¡¥¤¥ë¤Î %d ¹ÔÌܤ˥¨¥é¡¼¡£", filename, error_line);
518                         msg_format("¥ì¥³¡¼¥É %d ¤Ï '%s' ¥¨¥é¡¼¤¬¤¢¤ê¤Þ¤¹¡£", error_idx, oops);
519                         msg_format("¹½Ê¸ '%s'¡£", buf);
520                         msg_print(NULL);
521
522                         /* Quit */
523                         quit(format("'%s.txt'¥Õ¥¡¥¤¥ë¤Ë¥¨¥é¡¼", filename));
524 #else
525                         /* Error string */
526                         oops = (((err > 0) && (err < PARSE_ERROR_MAX)) ? err_str[err] : "unknown");
527
528                         /* Oops */
529                         msg_format("Error %d at line %d of '%s.txt'.", err, error_line, filename);
530                         msg_format("Record %d contains a '%s' error.", error_idx, oops);
531                         msg_format("Parsing '%s'.", buf);
532                         msg_print(NULL);
533
534                         /* Quit */
535                         quit(format("Error in '%s.txt' file.", filename));
536 #endif
537
538                 }
539
540
541                 /*** Dump the binary image file ***/
542
543                 /* File type is "DATA" */
544                 FILE_TYPE(FILE_TYPE_DATA);
545
546                 /* Build the filename */
547 #ifdef JP
548                 path_build(buf, sizeof(buf), ANGBAND_DIR_DATA, format("%s_j.raw", filename));
549 #else
550                 path_build(buf, sizeof(buf), ANGBAND_DIR_DATA, format("%s.raw", filename));
551 #endif
552
553
554                 /* Kill the old file */
555                 (void)fd_kill(buf);
556
557                 /* Attempt to create the raw file */
558                 fd = fd_make(buf, mode);
559
560                 /* Dump to the file */
561                 if (fd >= 0)
562                 {
563                         /* Dump it */
564                         fd_write(fd, (cptr)(head), head->head_size);
565
566                 /* Dump the "*_info" array */
567                         fd_write(fd, head->info_ptr, head->info_size);
568
569                         /* Dump the "*_name" array */
570                         fd_write(fd, head->name_ptr, head->name_size);
571
572                         /* Dump the "*_text" array */
573                         fd_write(fd, head->text_ptr, head->text_size);
574
575                         /* Close */
576                         (void)fd_close(fd);
577                 }
578
579
580                 /*** Kill the fake arrays ***/
581
582                 /* Free the "*_info" array */
583                 C_KILL(head->info_ptr, head->info_size, char);
584
585                 /* Hack -- Free the "fake" arrays */
586                 if (name) C_KILL(head->name_ptr, FAKE_NAME_SIZE, char);
587                 if (text) C_KILL(head->text_ptr, FAKE_TEXT_SIZE, char);
588
589 #endif  /* ALLOW_TEMPLATES */
590
591
592                 /*** Load the binary image file ***/
593
594                 /* Build the filename */
595 #ifdef JP
596                 path_build(buf, sizeof(buf), ANGBAND_DIR_DATA, format("%s_j.raw", filename));
597 #else
598                 path_build(buf, sizeof(buf), ANGBAND_DIR_DATA, format("%s.raw", filename));
599 #endif
600
601
602                 /* Attempt to open the "raw" file */
603                 fd = fd_open(buf, O_RDONLY);
604
605                 /* Process existing "raw" file */
606 #ifdef JP
607                 if (fd < 0) quit(format("'%s_j.raw'¥Õ¥¡¥¤¥ë¤ò¥í¡¼¥É¤Ç¤­¤Þ¤»¤ó¡£", filename));
608 #else
609                 if (fd < 0) quit(format("Cannot load '%s.raw' file.", filename));
610 #endif
611
612
613                 /* Attempt to parse the "raw" file */
614                 err = init_info_raw(fd, head);
615
616                 /* Close it */
617                 (void)fd_close(fd);
618
619                 /* Error */
620 #ifdef JP
621                 if (err) quit(format("'%s_j.raw'¥Õ¥¡¥¤¥ë¤ò²òÀϤǤ­¤Þ¤»¤ó¡£", filename));
622 #else
623                 if (err) quit(format("Cannot parse '%s.raw' file.", filename));
624 #endif
625
626 #ifdef ALLOW_TEMPLATES
627         }
628 #endif
629
630         if (info) (*info) = head->info_ptr;
631         if (name) (*name) = head->name_ptr;
632         if (text) (*text) = head->text_ptr;
633
634         /* Success */
635         return (0);
636 }
637
638
639 /*
640  * Initialize the "f_info" array
641  */
642 static errr init_f_info(void)
643 {
644         /* Init the header */
645         init_header(&f_head, max_f_idx, sizeof(feature_type));
646
647 #ifdef ALLOW_TEMPLATES
648
649         /* Save a pointer to the parsing function */
650         f_head.parse_info_txt = parse_f_info;
651
652 #endif /* ALLOW_TEMPLATES */
653
654         return init_info("f_info", &f_head,
655                          (void*)&f_info, (void*)&f_name, NULL);
656 }
657
658
659 /*
660  * Initialize the "k_info" array
661  */
662 static errr init_k_info(void)
663 {
664         /* Init the header */
665         init_header(&k_head, max_k_idx, sizeof(object_kind));
666
667 #ifdef ALLOW_TEMPLATES
668
669         /* Save a pointer to the parsing function */
670         k_head.parse_info_txt = parse_k_info;
671
672 #endif /* ALLOW_TEMPLATES */
673
674         return init_info("k_info", &k_head,
675                          (void*)&k_info, (void*)&k_name, (void*)&k_text);
676 }
677
678
679
680 /*
681  * Initialize the "a_info" array
682  */
683 static errr init_a_info(void)
684 {
685         /* Init the header */
686         init_header(&a_head, max_a_idx, sizeof(artifact_type));
687
688 #ifdef ALLOW_TEMPLATES
689
690         /* Save a pointer to the parsing function */
691         a_head.parse_info_txt = parse_a_info;
692
693 #endif /* ALLOW_TEMPLATES */
694
695         return init_info("a_info", &a_head,
696                          (void*)&a_info, (void*)&a_name, (void*)&a_text);
697 }
698
699
700
701 /*
702  * Initialize the "e_info" array
703  */
704 static errr init_e_info(void)
705 {
706         /* Init the header */
707         init_header(&e_head, max_e_idx, sizeof(ego_item_type));
708
709 #ifdef ALLOW_TEMPLATES
710
711         /* Save a pointer to the parsing function */
712         e_head.parse_info_txt = parse_e_info;
713
714 #endif /* ALLOW_TEMPLATES */
715
716         return init_info("e_info", &e_head,
717                          (void*)&e_info, (void*)&e_name, (void*)&e_text);
718 }
719
720
721
722 /*
723  * Initialize the "r_info" array
724  */
725 static errr init_r_info(void)
726 {
727         /* Init the header */
728         init_header(&r_head, max_r_idx, sizeof(monster_race));
729
730 #ifdef ALLOW_TEMPLATES
731
732         /* Save a pointer to the parsing function */
733         r_head.parse_info_txt = parse_r_info;
734
735 #endif /* ALLOW_TEMPLATES */
736
737         return init_info("r_info", &r_head,
738                          (void*)&r_info, (void*)&r_name, (void*)&r_text);
739 }
740
741
742
743 /*
744  * Initialize the "d_info" array
745  */
746 static errr init_d_info(void)
747 {
748         /* Init the header */
749         init_header(&d_head, max_d_idx, sizeof(dungeon_info_type));
750
751 #ifdef ALLOW_TEMPLATES
752
753         /* Save a pointer to the parsing function */
754         d_head.parse_info_txt = parse_d_info;
755
756 #endif /* ALLOW_TEMPLATES */
757
758         return init_info("d_info", &d_head,
759                          (void*)&d_info, (void*)&d_name, (void*)&d_text);
760 }
761
762
763 /*
764  * Initialize the "v_info" array
765  *
766  * Note that we let each entry have a unique "name" and "text" string,
767  * even if the string happens to be empty (everyone has a unique '\0').
768  */
769 errr init_v_info(void)
770 {
771         /* Init the header */
772         init_header(&v_head, max_v_idx, sizeof(vault_type));
773
774 #ifdef ALLOW_TEMPLATES
775
776         /* Save a pointer to the parsing function */
777         v_head.parse_info_txt = parse_v_info;
778
779 #endif /* ALLOW_TEMPLATES */
780
781         return init_info("v_info", &v_head,
782                          (void*)&v_info, (void*)&v_name, (void*)&v_text);
783 }
784
785
786 /*
787  * Initialize the "s_info" array
788  */
789 static errr init_s_info(void)
790 {
791         /* Init the header */
792         init_header(&s_head, MAX_CLASS, sizeof(skill_table));
793
794 #ifdef ALLOW_TEMPLATES
795
796         /* Save a pointer to the parsing function */
797         s_head.parse_info_txt = parse_s_info;
798
799 #endif /* ALLOW_TEMPLATES */
800
801         return init_info("s_info", &s_head,
802                          (void*)&s_info, NULL, NULL);
803 }
804
805
806 /*
807  * Initialize the "m_info" array
808  */
809 static errr init_m_info(void)
810 {
811         /* Init the header */
812         init_header(&m_head, MAX_CLASS, sizeof(player_magic));
813
814 #ifdef ALLOW_TEMPLATES
815
816         /* Save a pointer to the parsing function */
817         m_head.parse_info_txt = parse_m_info;
818
819 #endif /* ALLOW_TEMPLATES */
820
821         return init_info("m_info", &m_head,
822                          (void*)&m_info, NULL, NULL);
823 }
824
825
826
827 /*** Initialize others ***/
828
829 /*
830  * Hack -- Objects sold in the stores -- by tval/sval pair.
831  */
832 static byte store_table[MAX_STORES][STORE_CHOICES][2] =
833 {
834         {
835                 /* General Store */
836
837                 { TV_FOOD, SV_FOOD_RATION },
838                 { TV_FOOD, SV_FOOD_RATION },
839                 { TV_FOOD, SV_FOOD_RATION },
840                 { TV_FOOD, SV_FOOD_RATION },
841
842                 { TV_FOOD, SV_FOOD_RATION },
843                 { TV_FOOD, SV_FOOD_BISCUIT },
844                 { TV_FOOD, SV_FOOD_JERKY },
845                 { TV_FOOD, SV_FOOD_JERKY },
846
847                 { TV_FOOD, SV_FOOD_PINT_OF_WINE },
848                 { TV_FOOD, SV_FOOD_PINT_OF_ALE },
849                 { TV_LITE, SV_LITE_TORCH },
850                 { TV_LITE, SV_LITE_TORCH },
851
852                 { TV_LITE, SV_LITE_TORCH },
853                 { TV_LITE, SV_LITE_TORCH },
854                 { TV_LITE, SV_LITE_LANTERN },
855                 { TV_LITE, SV_LITE_LANTERN },
856
857                 { TV_FLASK, 0 },
858                 { TV_FLASK, 0 },
859                 { TV_FLASK, 0 },
860                 { TV_FLASK, 0 },
861
862                 { TV_FLASK, 0 },
863                 { TV_FLASK, 0 },
864                 { TV_SPIKE, 0 },
865                 { TV_SPIKE, 0 },
866
867                 { TV_SHOT, SV_AMMO_NORMAL },
868                 { TV_ARROW, SV_AMMO_NORMAL },
869                 { TV_BOLT, SV_AMMO_NORMAL },
870                 { TV_DIGGING, SV_SHOVEL },
871
872                 { TV_DIGGING, SV_PICK },
873                 { TV_CLOAK, SV_CLOAK },
874                 { TV_CLOAK, SV_CLOAK },
875                 { TV_CLOAK, SV_FUR_CLOAK },
876
877                 { TV_FOOD, SV_FOOD_RATION },
878                 { TV_FOOD, SV_FOOD_RATION },
879                 { TV_FOOD, SV_FOOD_RATION },
880                 { TV_FOOD, SV_FOOD_RATION },
881
882                 { TV_POTION, SV_POTION_WATER },
883                 { TV_POTION, SV_POTION_WATER },
884                 { TV_LITE, SV_LITE_LANTERN },
885                 { TV_LITE, SV_LITE_LANTERN },
886
887                 { TV_FLASK, 0 },
888                 { TV_FLASK, 0 },
889                 { TV_CAPTURE, 0 },
890                 { TV_FIGURINE, 0 },
891
892                 { TV_SHOT, SV_AMMO_NORMAL },
893                 { TV_ARROW, SV_AMMO_NORMAL },
894                 { TV_BOLT, SV_AMMO_NORMAL },
895                 { TV_DIGGING, SV_SHOVEL }
896         },
897
898         {
899                 /* Armoury */
900
901                 { TV_BOOTS, SV_PAIR_OF_SOFT_LEATHER_BOOTS },
902                 { TV_BOOTS, SV_PAIR_OF_SOFT_LEATHER_BOOTS },
903                 { TV_BOOTS, SV_PAIR_OF_HARD_LEATHER_BOOTS },
904                 { TV_BOOTS, SV_PAIR_OF_HARD_LEATHER_BOOTS },
905
906                 { TV_HELM, SV_HARD_LEATHER_CAP },
907                 { TV_HELM, SV_HARD_LEATHER_CAP },
908                 { TV_HELM, SV_METAL_CAP },
909                 { TV_HELM, SV_IRON_HELM },
910
911                 { TV_SOFT_ARMOR, SV_ROBE },
912                 { TV_SOFT_ARMOR, SV_ROBE },
913                 { TV_SOFT_ARMOR, SV_SOFT_LEATHER_ARMOR },
914                 { TV_SOFT_ARMOR, SV_SOFT_LEATHER_ARMOR },
915
916                 { TV_SOFT_ARMOR, SV_HARD_LEATHER_ARMOR },
917                 { TV_SOFT_ARMOR, SV_HARD_LEATHER_ARMOR },
918                 { TV_SOFT_ARMOR, SV_HARD_STUDDED_LEATHER },
919                 { TV_SOFT_ARMOR, SV_HARD_STUDDED_LEATHER },
920
921                 { TV_SOFT_ARMOR, SV_RHINO_HIDE_ARMOR },
922                 { TV_SOFT_ARMOR, SV_LEATHER_SCALE_MAIL },
923                 { TV_HARD_ARMOR, SV_METAL_SCALE_MAIL },
924                 { TV_HARD_ARMOR, SV_CHAIN_MAIL },
925
926                 { TV_HARD_ARMOR, SV_DOUBLE_RING_MAIL },
927                 { TV_HARD_ARMOR, SV_AUGMENTED_CHAIN_MAIL },
928                 { TV_HARD_ARMOR, SV_BAR_CHAIN_MAIL },
929                 { TV_HARD_ARMOR, SV_DOUBLE_CHAIN_MAIL },
930
931                 { TV_HARD_ARMOR, SV_METAL_BRIGANDINE_ARMOUR },
932                 { TV_HARD_ARMOR, SV_SPLINT_MAIL },
933                 { TV_GLOVES, SV_SET_OF_LEATHER_GLOVES },
934                 { TV_GLOVES, SV_SET_OF_LEATHER_GLOVES },
935
936                 { TV_GLOVES, SV_SET_OF_GAUNTLETS },
937                 { TV_SHIELD, SV_SMALL_LEATHER_SHIELD },
938                 { TV_SHIELD, SV_LARGE_LEATHER_SHIELD },
939                 { TV_SHIELD, SV_SMALL_METAL_SHIELD },
940
941                 { TV_BOOTS, SV_PAIR_OF_HARD_LEATHER_BOOTS },
942                 { TV_BOOTS, SV_PAIR_OF_HARD_LEATHER_BOOTS },
943                 { TV_HELM, SV_HARD_LEATHER_CAP },
944                 { TV_HELM, SV_HARD_LEATHER_CAP },
945
946                 { TV_SOFT_ARMOR, SV_ROBE },
947                 { TV_SOFT_ARMOR, SV_SOFT_LEATHER_ARMOR },
948                 { TV_SOFT_ARMOR, SV_SOFT_LEATHER_ARMOR },
949                 { TV_SOFT_ARMOR, SV_HARD_LEATHER_ARMOR },
950
951                 { TV_SOFT_ARMOR, SV_LEATHER_JACK },
952                 { TV_HARD_ARMOR, SV_METAL_SCALE_MAIL },
953                 { TV_HARD_ARMOR, SV_CHAIN_MAIL },
954                 { TV_HARD_ARMOR, SV_CHAIN_MAIL },
955
956                 { TV_GLOVES, SV_SET_OF_LEATHER_GLOVES },
957                 { TV_GLOVES, SV_SET_OF_GAUNTLETS },
958                 { TV_SHIELD, SV_SMALL_LEATHER_SHIELD },
959                 { TV_SHIELD, SV_SMALL_LEATHER_SHIELD }
960         },
961
962         {
963                 /* Weaponsmith */
964
965                 { TV_SWORD, SV_DAGGER },
966                 { TV_SWORD, SV_MAIN_GAUCHE },
967                 { TV_SWORD, SV_RAPIER },
968                 { TV_SWORD, SV_SMALL_SWORD },
969
970                 { TV_SWORD, SV_SHORT_SWORD },
971                 { TV_SWORD, SV_SABRE },
972                 { TV_SWORD, SV_CUTLASS },
973                 { TV_SWORD, SV_TULWAR },
974
975                 { TV_SWORD, SV_BROAD_SWORD },
976                 { TV_SWORD, SV_LONG_SWORD },
977                 { TV_SWORD, SV_SCIMITAR },
978                 { TV_SWORD, SV_KATANA },
979
980                 { TV_SWORD, SV_BASTARD_SWORD },
981                 { TV_POLEARM, SV_SPEAR },
982                 { TV_POLEARM, SV_AWL_PIKE },
983                 { TV_POLEARM, SV_TRIDENT },
984
985                 { TV_POLEARM, SV_PIKE },
986                 { TV_POLEARM, SV_BEAKED_AXE },
987                 { TV_POLEARM, SV_BROAD_AXE },
988                 { TV_POLEARM, SV_LANCE },
989
990                 { TV_POLEARM, SV_BATTLE_AXE },
991                 { TV_POLEARM, SV_HATCHET },
992                 { TV_BOW, SV_SLING },
993                 { TV_BOW, SV_SHORT_BOW },
994
995                 { TV_BOW, SV_LIGHT_XBOW },
996                 { TV_SHOT, SV_AMMO_NORMAL },
997                 { TV_SHOT, SV_AMMO_NORMAL },
998                 { TV_ARROW, SV_AMMO_NORMAL },
999
1000                 { TV_ARROW, SV_AMMO_NORMAL },
1001                 { TV_BOLT, SV_AMMO_NORMAL },
1002                 { TV_BOLT, SV_AMMO_NORMAL },
1003                 { TV_BOW, SV_LIGHT_XBOW },
1004
1005                 { TV_ARROW, SV_AMMO_NORMAL },
1006                 { TV_BOLT, SV_AMMO_NORMAL },
1007                 { TV_BOW, SV_SHORT_BOW },
1008                 { TV_BOW, SV_LIGHT_XBOW },
1009
1010                 { TV_SWORD, SV_DAGGER },
1011                 { TV_SWORD, SV_TANTO },
1012                 { TV_SWORD, SV_RAPIER },
1013                 { TV_SWORD, SV_SMALL_SWORD },
1014
1015                 { TV_SWORD, SV_SHORT_SWORD },
1016                 { TV_SWORD, SV_LONG_SWORD },
1017                 { TV_SWORD, SV_SCIMITAR },
1018                 { TV_SWORD, SV_BROAD_SWORD },
1019
1020                 { TV_HISSATSU_BOOK, 0 },
1021                 { TV_HISSATSU_BOOK, 0 },
1022                 { TV_HISSATSU_BOOK, 1 },
1023                 { TV_HISSATSU_BOOK, 1 },
1024         },
1025
1026         {
1027                 /* Temple */
1028
1029                 { TV_HAFTED, SV_NUNCHAKU },
1030                 { TV_HAFTED, SV_QUARTERSTAFF },
1031                 { TV_HAFTED, SV_MACE },
1032                 { TV_HAFTED, SV_BO_STAFF },
1033
1034                 { TV_HAFTED, SV_WAR_HAMMER },
1035                 { TV_HAFTED, SV_WAR_HAMMER },
1036                 { TV_HAFTED, SV_MORNING_STAR },
1037                 { TV_HAFTED, SV_FLAIL },
1038
1039                 { TV_HAFTED, SV_LEAD_FILLED_MACE },
1040                 { TV_SCROLL, SV_SCROLL_REMOVE_CURSE },
1041                 { TV_SCROLL, SV_SCROLL_BLESSING },
1042                 { TV_SCROLL, SV_SCROLL_HOLY_CHANT },
1043
1044                 { TV_POTION, SV_POTION_HEROISM },
1045                 { TV_SCROLL, SV_SCROLL_WORD_OF_RECALL },
1046                 { TV_SCROLL, SV_SCROLL_WORD_OF_RECALL },
1047                 { TV_SCROLL, SV_SCROLL_WORD_OF_RECALL },
1048
1049                 { TV_POTION, SV_POTION_CURE_LIGHT },
1050                 { TV_POTION, SV_POTION_CURE_SERIOUS },
1051                 { TV_POTION, SV_POTION_CURE_SERIOUS },
1052                 { TV_POTION, SV_POTION_CURE_CRITICAL },
1053
1054                 { TV_POTION, SV_POTION_CURE_CRITICAL },
1055                 { TV_POTION, SV_POTION_RESTORE_EXP },
1056                 { TV_POTION, SV_POTION_RESTORE_EXP },
1057                 { TV_POTION, SV_POTION_RESTORE_EXP },
1058
1059                 { TV_LIFE_BOOK, 0 },
1060                 { TV_LIFE_BOOK, 0 },
1061                 { TV_LIFE_BOOK, 1 },
1062                 { TV_LIFE_BOOK, 1 },
1063
1064                 { TV_CRUSADE_BOOK, 0 },
1065                 { TV_CRUSADE_BOOK, 0 },
1066                 { TV_CRUSADE_BOOK, 1 },
1067                 { TV_CRUSADE_BOOK, 1 },
1068
1069                 { TV_HAFTED, SV_WHIP },
1070                 { TV_HAFTED, SV_MACE },
1071                 { TV_HAFTED, SV_BALL_AND_CHAIN },
1072                 { TV_HAFTED, SV_WAR_HAMMER },
1073
1074                 { TV_SCROLL, SV_SCROLL_WORD_OF_RECALL },
1075                 { TV_SCROLL, SV_SCROLL_WORD_OF_RECALL },
1076                 { TV_SCROLL, SV_SCROLL_WORD_OF_RECALL },
1077                 { TV_POTION, SV_POTION_CURE_CRITICAL },
1078
1079                 { TV_POTION, SV_POTION_CURE_CRITICAL },
1080                 { TV_POTION, SV_POTION_RESTORE_EXP },
1081
1082                 { TV_FIGURINE, 0 },
1083                 { TV_STATUE, SV_ANY },
1084
1085                 { TV_SCROLL, SV_SCROLL_REMOVE_CURSE },
1086                 { TV_SCROLL, SV_SCROLL_REMOVE_CURSE },
1087                 { TV_SCROLL, SV_SCROLL_STAR_REMOVE_CURSE },
1088                 { TV_SCROLL, SV_SCROLL_STAR_REMOVE_CURSE }
1089         },
1090
1091         {
1092                 /* Alchemy shop */
1093
1094                 { TV_SCROLL, SV_SCROLL_ENCHANT_WEAPON_TO_HIT },
1095                 { TV_SCROLL, SV_SCROLL_ENCHANT_WEAPON_TO_DAM },
1096                 { TV_SCROLL, SV_SCROLL_ENCHANT_ARMOR },
1097                 { TV_SCROLL, SV_SCROLL_IDENTIFY },
1098
1099                 { TV_SCROLL, SV_SCROLL_IDENTIFY },
1100                 { TV_SCROLL, SV_SCROLL_IDENTIFY },
1101                 { TV_SCROLL, SV_SCROLL_IDENTIFY },
1102                 { TV_SCROLL, SV_SCROLL_LIGHT },
1103
1104                 { TV_SCROLL, SV_SCROLL_PHASE_DOOR },
1105                 { TV_SCROLL, SV_SCROLL_PHASE_DOOR },
1106                 { TV_SCROLL, SV_SCROLL_TELEPORT },
1107                 { TV_SCROLL, SV_SCROLL_MONSTER_CONFUSION },
1108
1109                 { TV_SCROLL, SV_SCROLL_MAPPING },
1110                 { TV_SCROLL, SV_SCROLL_DETECT_GOLD },
1111                 { TV_SCROLL, SV_SCROLL_DETECT_ITEM },
1112                 { TV_SCROLL, SV_SCROLL_DETECT_TRAP },
1113
1114                 { TV_SCROLL, SV_SCROLL_DETECT_INVIS },
1115                 { TV_SCROLL, SV_SCROLL_RECHARGING },
1116                 { TV_SCROLL, SV_SCROLL_TELEPORT },
1117                 { TV_SCROLL, SV_SCROLL_WORD_OF_RECALL },
1118
1119                 { TV_SCROLL, SV_SCROLL_WORD_OF_RECALL },
1120                 { TV_SCROLL, SV_SCROLL_WORD_OF_RECALL },
1121                 { TV_SCROLL, SV_SCROLL_WORD_OF_RECALL },
1122                 { TV_SCROLL, SV_SCROLL_TELEPORT },
1123
1124                 { TV_SCROLL, SV_SCROLL_TELEPORT },
1125                 { TV_POTION, SV_POTION_RES_STR },
1126                 { TV_POTION, SV_POTION_RES_INT },
1127                 { TV_POTION, SV_POTION_RES_WIS },
1128
1129                 { TV_POTION, SV_POTION_RES_DEX },
1130                 { TV_POTION, SV_POTION_RES_CON },
1131                 { TV_POTION, SV_POTION_RES_CHR },
1132                 { TV_SCROLL, SV_SCROLL_IDENTIFY },
1133
1134                 { TV_SCROLL, SV_SCROLL_IDENTIFY },
1135                 { TV_SCROLL, SV_SCROLL_STAR_IDENTIFY },  /* Yep, occasionally! */
1136                 { TV_SCROLL, SV_SCROLL_STAR_IDENTIFY },
1137                 { TV_SCROLL, SV_SCROLL_LIGHT },
1138
1139                 { TV_POTION, SV_POTION_RES_STR },
1140                 { TV_POTION, SV_POTION_RES_INT },
1141                 { TV_POTION, SV_POTION_RES_WIS },
1142                 { TV_POTION, SV_POTION_RES_DEX },
1143
1144                 { TV_POTION, SV_POTION_RES_CON },
1145                 { TV_POTION, SV_POTION_RES_CHR },
1146                 { TV_SCROLL, SV_SCROLL_ENCHANT_ARMOR },
1147                 { TV_SCROLL, SV_SCROLL_ENCHANT_ARMOR },
1148
1149                 { TV_SCROLL, SV_SCROLL_RECHARGING },
1150                 { TV_SCROLL, SV_SCROLL_PHASE_DOOR },
1151                 { TV_SCROLL, SV_SCROLL_ENCHANT_WEAPON_TO_HIT },
1152                 { TV_SCROLL, SV_SCROLL_ENCHANT_WEAPON_TO_DAM },
1153
1154         },
1155
1156         {
1157                 /* Magic-User store */
1158
1159                 { TV_RING, SV_RING_PROTECTION },
1160                 { TV_RING, SV_RING_FEATHER_FALL },
1161                 { TV_RING, SV_RING_PROTECTION },
1162                 { TV_RING, SV_RING_RESIST_FIRE },
1163
1164                 { TV_RING, SV_RING_RESIST_COLD },
1165                 { TV_AMULET, SV_AMULET_CHARISMA },
1166                 { TV_RING, SV_RING_WARNING },
1167                 { TV_AMULET, SV_AMULET_RESIST_ACID },
1168
1169                 { TV_AMULET, SV_AMULET_SEARCHING },
1170                 { TV_WAND, SV_WAND_SLOW_MONSTER },
1171                 { TV_WAND, SV_WAND_CONFUSE_MONSTER },
1172                 { TV_WAND, SV_WAND_SLEEP_MONSTER },
1173
1174                 { TV_WAND, SV_WAND_MAGIC_MISSILE },
1175                 { TV_WAND, SV_WAND_STINKING_CLOUD },
1176                 { TV_WAND, SV_WAND_WONDER },
1177                 { TV_WAND, SV_WAND_DISARMING },
1178
1179                 { TV_STAFF, SV_STAFF_LITE },
1180                 { TV_STAFF, SV_STAFF_MAPPING },
1181                 { TV_STAFF, SV_STAFF_DETECT_TRAP },
1182                 { TV_STAFF, SV_STAFF_DETECT_DOOR },
1183
1184                 { TV_STAFF, SV_STAFF_DETECT_GOLD },
1185                 { TV_STAFF, SV_STAFF_DETECT_ITEM },
1186                 { TV_STAFF, SV_STAFF_DETECT_INVIS },
1187                 { TV_STAFF, SV_STAFF_DETECT_EVIL },
1188
1189                 { TV_STAFF, SV_STAFF_TELEPORTATION },
1190                 { TV_STAFF, SV_STAFF_TELEPORTATION },
1191                 { TV_STAFF, SV_STAFF_TELEPORTATION },
1192                 { TV_STAFF, SV_STAFF_TELEPORTATION },
1193
1194                 { TV_STAFF, SV_STAFF_IDENTIFY },
1195                 { TV_STAFF, SV_STAFF_IDENTIFY },
1196                 { TV_STAFF, SV_STAFF_IDENTIFY },
1197
1198                 { TV_STAFF, SV_STAFF_IDENTIFY },
1199                 { TV_STAFF, SV_STAFF_REMOVE_CURSE },
1200                 { TV_STAFF, SV_STAFF_CURE_LIGHT },
1201                 { TV_STAFF, SV_STAFF_PROBING },
1202
1203                 { TV_FIGURINE, 0 },
1204
1205                 { TV_SORCERY_BOOK, 0 },
1206                 { TV_SORCERY_BOOK, 0 },
1207                 { TV_SORCERY_BOOK, 1 },
1208                 { TV_SORCERY_BOOK, 1 },
1209
1210                 { TV_ARCANE_BOOK, 0 },
1211                 { TV_ARCANE_BOOK, 0 },
1212                 { TV_ARCANE_BOOK, 1 },
1213                 { TV_ARCANE_BOOK, 1 },
1214
1215                 { TV_ARCANE_BOOK, 2 },
1216                 { TV_ARCANE_BOOK, 2 },
1217                 { TV_ARCANE_BOOK, 3 },
1218                 { TV_ARCANE_BOOK, 3 },
1219
1220         },
1221
1222         {
1223                 /* Black Market (unused) */
1224                 { 0, 0 },
1225                 { 0, 0 },
1226                 { 0, 0 },
1227                 { 0, 0 },
1228                 { 0, 0 },
1229                 { 0, 0 },
1230                 { 0, 0 },
1231                 { 0, 0 },
1232                 { 0, 0 },
1233                 { 0, 0 },
1234                 { 0, 0 },
1235                 { 0, 0 },
1236                 { 0, 0 },
1237                 { 0, 0 },
1238                 { 0, 0 },
1239                 { 0, 0 },
1240                 { 0, 0 },
1241                 { 0, 0 },
1242                 { 0, 0 },
1243                 { 0, 0 },
1244                 { 0, 0 },
1245                 { 0, 0 },
1246                 { 0, 0 },
1247                 { 0, 0 },
1248                 { 0, 0 },
1249                 { 0, 0 },
1250                 { 0, 0 },
1251                 { 0, 0 },
1252                 { 0, 0 },
1253                 { 0, 0 },
1254                 { 0, 0 },
1255                 { 0, 0 }
1256         },
1257
1258         {
1259                 /* Home (unused) */
1260                 { 0, 0 },
1261                 { 0, 0 },
1262                 { 0, 0 },
1263                 { 0, 0 },
1264                 { 0, 0 },
1265                 { 0, 0 },
1266                 { 0, 0 },
1267                 { 0, 0 },
1268                 { 0, 0 },
1269                 { 0, 0 },
1270                 { 0, 0 },
1271                 { 0, 0 },
1272                 { 0, 0 },
1273                 { 0, 0 },
1274                 { 0, 0 },
1275                 { 0, 0 },
1276                 { 0, 0 },
1277                 { 0, 0 },
1278                 { 0, 0 },
1279                 { 0, 0 },
1280                 { 0, 0 },
1281                 { 0, 0 },
1282                 { 0, 0 },
1283                 { 0, 0 },
1284                 { 0, 0 },
1285                 { 0, 0 },
1286                 { 0, 0 },
1287                 { 0, 0 },
1288                 { 0, 0 },
1289                 { 0, 0 },
1290                 { 0, 0 },
1291                 { 0, 0 }
1292         },
1293
1294         {
1295                 /* Bookstore */
1296                 { TV_SORCERY_BOOK, 0 },
1297                 { TV_SORCERY_BOOK, 0 },
1298                 { TV_SORCERY_BOOK, 1 },
1299                 { TV_SORCERY_BOOK, 1 },
1300
1301                 { TV_NATURE_BOOK, 0 },
1302                 { TV_NATURE_BOOK, 0 },
1303                 { TV_NATURE_BOOK, 1 },
1304                 { TV_NATURE_BOOK, 1 },
1305
1306                 { TV_CHAOS_BOOK, 0 },
1307                 { TV_CHAOS_BOOK, 0 },
1308                 { TV_CHAOS_BOOK, 1 },
1309                 { TV_CHAOS_BOOK, 1 },
1310
1311                 { TV_DEATH_BOOK, 0 },
1312                 { TV_DEATH_BOOK, 0 },
1313                 { TV_DEATH_BOOK, 1 },
1314                 { TV_DEATH_BOOK, 1 },
1315
1316                 { TV_TRUMP_BOOK, 0 },           /* +16 */
1317                 { TV_TRUMP_BOOK, 0 },
1318                 { TV_TRUMP_BOOK, 1 },
1319                 { TV_TRUMP_BOOK, 1 },
1320
1321                 { TV_ARCANE_BOOK, 0 },
1322                 { TV_ARCANE_BOOK, 1 },
1323                 { TV_ARCANE_BOOK, 2 },
1324                 { TV_ARCANE_BOOK, 3 },
1325
1326                 { TV_ENCHANT_BOOK, 0 },
1327                 { TV_ENCHANT_BOOK, 0 },
1328                 { TV_ENCHANT_BOOK, 1 },
1329                 { TV_ENCHANT_BOOK, 1 },
1330
1331                 { TV_DAEMON_BOOK, 0 },
1332                 { TV_DAEMON_BOOK, 0 },
1333                 { TV_DAEMON_BOOK, 1 },
1334                 { TV_DAEMON_BOOK, 1 },
1335
1336                 { TV_MUSIC_BOOK, 0 },
1337                 { TV_MUSIC_BOOK, 0 },
1338                 { TV_MUSIC_BOOK, 1 },
1339                 { TV_MUSIC_BOOK, 1 },
1340         },
1341
1342         {
1343                 /* Museum (unused) */
1344                 { 0, 0 },
1345                 { 0, 0 },
1346                 { 0, 0 },
1347                 { 0, 0 },
1348                 { 0, 0 },
1349                 { 0, 0 },
1350                 { 0, 0 },
1351                 { 0, 0 },
1352                 { 0, 0 },
1353                 { 0, 0 },
1354                 { 0, 0 },
1355                 { 0, 0 },
1356                 { 0, 0 },
1357                 { 0, 0 },
1358                 { 0, 0 },
1359                 { 0, 0 },
1360                 { 0, 0 },
1361                 { 0, 0 },
1362                 { 0, 0 },
1363                 { 0, 0 },
1364                 { 0, 0 },
1365                 { 0, 0 },
1366                 { 0, 0 },
1367                 { 0, 0 },
1368                 { 0, 0 },
1369                 { 0, 0 },
1370                 { 0, 0 },
1371                 { 0, 0 },
1372                 { 0, 0 },
1373                 { 0, 0 },
1374                 { 0, 0 },
1375                 { 0, 0 }
1376         }
1377 };
1378
1379
1380 /*
1381  * Initialize misc. values
1382  */
1383 static errr init_misc(void)
1384 {
1385         /* Initialize the values */
1386         process_dungeon_file("misc.txt", 0, 0, 0, 0);
1387
1388         return 0;
1389 }
1390
1391
1392 /*
1393  * Initialize town array
1394  */
1395 static errr init_towns(void)
1396 {
1397         int i, j, k;
1398
1399         /*** Prepare the Towns ***/
1400
1401         /* Allocate the towns */
1402         C_MAKE(town, max_towns, town_type);
1403
1404         for (i = 1; i < max_towns; i++)
1405         {
1406                 /*** Prepare the Stores ***/
1407
1408                 /* Allocate the stores */
1409                 C_MAKE(town[i].store, MAX_STORES, store_type);
1410
1411                 /* Fill in each store */
1412                 for (j = 0; j < MAX_STORES; j++)
1413                 {
1414                         /* Access the store */
1415                         store_type *st_ptr = &town[i].store[j];
1416
1417                         if ((i > 1) && (j == STORE_MUSEUM || j == STORE_HOME)) continue;
1418
1419                         /* Assume full stock */
1420
1421                 /*
1422                  * ²æ¤¬²È¤¬ 20 ¥Ú¡¼¥¸¤Þ¤Ç»È¤¨¤ë±£¤·µ¡Ç½¤Î¤¿¤á¤Î½àÈ÷¡£
1423                  * ¥ª¥×¥·¥ç¥ó¤¬Í­¸ú¤Ç¤â¤½¤¦¤Ç¤Ê¤¯¤Æ¤â°ì±þ¥¹¥Ú¡¼¥¹
1424                  * ¤òºî¤Ã¤Æ¤ª¤¯¡£
1425                  */
1426                 if (j == STORE_HOME)
1427                 {
1428                         st_ptr->stock_size = (STORE_INVEN_MAX * 10);
1429                 }
1430                 else if (j == STORE_MUSEUM)
1431                 {
1432                         st_ptr->stock_size = (STORE_INVEN_MAX * 50);
1433                 }
1434                 else
1435                 {
1436                         st_ptr->stock_size = STORE_INVEN_MAX;
1437                 }
1438
1439
1440                         /* Allocate the stock */
1441                         C_MAKE(st_ptr->stock, st_ptr->stock_size, object_type);
1442
1443                         /* No table for the black market or home */
1444                         if ((j == STORE_BLACK) || (j == STORE_HOME) || (j == STORE_MUSEUM)) continue;
1445
1446                         /* Assume full table */
1447                         st_ptr->table_size = STORE_CHOICES;
1448
1449                         /* Allocate the stock */
1450                         C_MAKE(st_ptr->table, st_ptr->table_size, s16b);
1451
1452                         /* Scan the choices */
1453                         for (k = 0; k < STORE_CHOICES; k++)
1454                         {
1455                                 int k_idx;
1456
1457                                 /* Extract the tval/sval codes */
1458                                 int tv = store_table[j][k][0];
1459                                 int sv = store_table[j][k][1];
1460
1461                                 /* Look for it */
1462                                 for (k_idx = 1; k_idx < max_k_idx; k_idx++)
1463                                 {
1464                                         object_kind *k_ptr = &k_info[k_idx];
1465
1466                                         /* Found a match */
1467                                         if ((k_ptr->tval == tv) && (k_ptr->sval == sv)) break;
1468                                 }
1469
1470                                 /* Catch errors */
1471                                 if (k_idx == max_k_idx) continue;
1472
1473                                 /* Add that item index to the table */
1474                                 st_ptr->table[st_ptr->table_num++] = k_idx;
1475                         }
1476                 }
1477         }
1478
1479         return 0;
1480 }
1481
1482 /*
1483  * Initialize buildings
1484  */
1485 errr init_buildings(void)
1486 {
1487         int i, j;
1488
1489         for (i = 0; i < MAX_BLDG; i++)
1490         {
1491                 building[i].name[0] = '\0';
1492                 building[i].owner_name[0] = '\0';
1493                 building[i].owner_race[0] = '\0';
1494
1495                 for (j = 0; j < 8; j++)
1496                 {
1497                         building[i].act_names[j][0] = '\0';
1498                         building[i].member_costs[j] = 0;
1499                         building[i].other_costs[j] = 0;
1500                         building[i].letters[j] = 0;
1501                         building[i].actions[j] = 0;
1502                         building[i].action_restr[j] = 0;
1503                 }
1504
1505                 for (j = 0; j < MAX_CLASS; j++)
1506                 {
1507                         building[i].member_class[j] = 0;
1508                 }
1509
1510                 for (j = 0; j < MAX_RACES; j++)
1511                 {
1512                         building[i].member_race[j] = 0;
1513                 }
1514
1515                 for (j = 0; j < MAX_MAGIC+1; j++)
1516                 {
1517                         building[i].member_realm[j] = 0;
1518                 }
1519         }
1520
1521         return (0);
1522 }
1523
1524
1525 /*
1526  * Initialize quest array
1527  */
1528 static errr init_quests(void)
1529 {
1530         int i;
1531
1532         /*** Prepare the quests ***/
1533
1534         /* Allocate the quests */
1535         C_MAKE(quest, max_quests, quest_type);
1536
1537         /* Set all quest to "untaken" */
1538         for (i = 0; i < max_quests; i++)
1539         {
1540                 quest[i].status = QUEST_STATUS_UNTAKEN;
1541         }
1542
1543         return 0;
1544 }
1545
1546
1547 /*
1548  * Initialize some other arrays
1549  */
1550 static errr init_other(void)
1551 {
1552         int i, n;
1553
1554
1555         /*** Prepare the "dungeon" information ***/
1556
1557         /* Allocate and Wipe the object list */
1558         C_MAKE(o_list, max_o_idx, object_type);
1559
1560         /* Allocate and Wipe the monster list */
1561         C_MAKE(m_list, max_m_idx, monster_type);
1562
1563         /* Allocate and Wipe the max dungeon level */
1564         C_MAKE(max_dlv, max_d_idx, s16b);
1565
1566         /* Allocate and wipe each line of the cave */
1567         for (i = 0; i < MAX_HGT; i++)
1568         {
1569                 /* Allocate one row of the cave */
1570                 C_MAKE(cave[i], MAX_WID, cave_type);
1571         }
1572
1573
1574         /*** Prepare the various "bizarre" arrays ***/
1575
1576         /* Macro variables */
1577         C_MAKE(macro__pat, MACRO_MAX, cptr);
1578         C_MAKE(macro__act, MACRO_MAX, cptr);
1579         C_MAKE(macro__cmd, MACRO_MAX, bool);
1580
1581         /* Macro action buffer */
1582         C_MAKE(macro__buf, 1024, char);
1583
1584         /* Quark variables */
1585         C_MAKE(quark__str, QUARK_MAX, cptr);
1586
1587         /* Message variables */
1588         C_MAKE(message__ptr, MESSAGE_MAX, u16b);
1589         C_MAKE(message__buf, MESSAGE_BUF, char);
1590
1591         /* Hack -- No messages yet */
1592         message__tail = MESSAGE_BUF;
1593
1594
1595         /*** Prepare the Player inventory ***/
1596
1597         /* Allocate it */
1598         C_MAKE(inventory, INVEN_TOTAL, object_type);
1599
1600
1601         /*** Pre-allocate the basic "auto-inscriptions" ***/
1602
1603         /* The "basic" feelings */
1604 #ifdef JP
1605         (void)quark_add("¼ö¤ï¤ì¤Æ¤¤¤ë");
1606         (void)quark_add("²õ¤ì¤Æ¤¤¤ë");
1607         (void)quark_add("ÊÂ");
1608         (void)quark_add("¾å¼Á");
1609 #else
1610         (void)quark_add("cursed");
1611         (void)quark_add("broken");
1612         (void)quark_add("average");
1613         (void)quark_add("good");
1614 #endif
1615
1616
1617         /* The "extra" feelings */
1618 #ifdef JP
1619         (void)quark_add("¹âµéÉÊ");
1620         (void)quark_add("̵²ÁÃÍ");
1621         (void)quark_add("ÆÃÊÌÀ½");
1622         (void)quark_add("¶²¤í¤·¤¤");
1623 #else
1624         (void)quark_add("excellent");
1625         (void)quark_add("worthless");
1626         (void)quark_add("special");
1627         (void)quark_add("terrible");
1628 #endif
1629
1630
1631         /* Some extra strings */
1632 #ifdef JP
1633         (void)quark_add("¼ö¤¤¤Ê¤·");
1634         (void)quark_add("Çä½ÐÃæ");
1635 #else
1636         (void)quark_add("uncursed");
1637         (void)quark_add("on sale");
1638 #endif
1639
1640
1641
1642         /*** Prepare the options ***/
1643
1644         /* Scan the options */
1645         for (i = 0; option_info[i].o_desc; i++)
1646         {
1647                 int os = option_info[i].o_set;
1648                 int ob = option_info[i].o_bit;
1649
1650                 /* Set the "default" options */
1651                 if (option_info[i].o_var)
1652                 {
1653                         /* Accept */
1654                         option_mask[os] |= (1L << ob);
1655
1656                         /* Set */
1657                         if (option_info[i].o_norm)
1658                         {
1659                                 /* Set */
1660                                 option_flag[os] |= (1L << ob);
1661                         }
1662
1663                         /* Clear */
1664                         else
1665                         {
1666                                 /* Clear */
1667                                 option_flag[os] &= ~(1L << ob);
1668                         }
1669                 }
1670         }
1671
1672         /* Analyze the windows */
1673         for (n = 0; n < 8; n++)
1674         {
1675                 /* Analyze the options */
1676                 for (i = 0; i < 32; i++)
1677                 {
1678                         /* Accept */
1679                         if (window_flag_desc[i])
1680                         {
1681                                 /* Accept */
1682                                 window_mask[n] |= (1L << i);
1683                         }
1684                 }
1685         }
1686
1687         /*
1688          *  Set the "default" window flags
1689          *  Window 1 : Display messages
1690          *  Window 2 : Display inven/equip
1691          */
1692         window_flag[1] = 1L << 6;
1693         window_flag[2] = 1L << 0;
1694
1695
1696         /*** Pre-allocate space for the "format()" buffer ***/
1697
1698         /* Hack -- Just call the "format()" function */
1699         (void)format("%s (%s).", "Mr.Hoge", MAINTAINER);
1700
1701
1702         /* Success */
1703         return (0);
1704 }
1705
1706
1707
1708 /*
1709  * Initialize some other arrays
1710  */
1711 static errr init_alloc(void)
1712 {
1713         int i;
1714         monster_race *r_ptr;
1715
1716 #ifdef SORT_R_INFO
1717
1718         tag_type *elements;
1719
1720         /* Allocate the "r_info" array */
1721         C_MAKE(elements, max_r_idx, tag_type);
1722
1723         /* Scan the monsters */
1724         for (i = 1; i < max_r_idx; i++)
1725         {
1726                 elements[i].tag = r_info[i].level;
1727                 elements[i].pointer = (void*)i;
1728         }
1729
1730         tag_sort(elements, max_r_idx);
1731
1732         /*** Initialize monster allocation info ***/
1733
1734         /* Size of "alloc_race_table" */
1735         alloc_race_size = max_r_idx;
1736
1737         /* Allocate the alloc_race_table */
1738         C_MAKE(alloc_race_table, alloc_race_size, alloc_entry);
1739
1740         /* Scan the monsters */
1741         for (i = 1; i < max_r_idx; i++)
1742         {
1743                 /* Get the i'th race */
1744                 r_ptr = &r_info[(int)elements[i].pointer];
1745
1746                 /* Count valid pairs */
1747                 if (r_ptr->rarity)
1748                 {
1749                         int p, x;
1750
1751                         /* Extract the base level */
1752                         x = r_ptr->level;
1753
1754                         /* Extract the base probability */
1755                         p = (100 / r_ptr->rarity);
1756
1757                         /* Load the entry */
1758                         alloc_race_table[i].index = (int)elements[i].pointer;
1759                         alloc_race_table[i].level = x;
1760                         alloc_race_table[i].prob1 = p;
1761                         alloc_race_table[i].prob2 = p;
1762                         alloc_race_table[i].prob3 = p;
1763                 }
1764         }
1765
1766         /* Free the "r_info" array */
1767         C_KILL(elements, max_r_idx, tag_type);
1768
1769 #else /* SORT_R_INFO */
1770
1771         int j;
1772         alloc_entry *table;
1773         s16b num[MAX_DEPTH];
1774         s16b aux[MAX_DEPTH];
1775
1776         /*** Analyze monster allocation info ***/
1777
1778         /* Clear the "aux" array */
1779         C_WIPE(&aux, MAX_DEPTH, s16b);
1780
1781         /* Clear the "num" array */
1782         C_WIPE(&num, MAX_DEPTH, s16b);
1783
1784         /* Size of "alloc_race_table" */
1785         alloc_race_size = 0;
1786
1787         /* Scan the monsters */
1788         for (i = 1; i < max_r_idx; i++)
1789         {
1790                 /* Get the i'th race */
1791                 r_ptr = &r_info[i];
1792
1793                 /* Legal monsters */
1794                 if (r_ptr->rarity)
1795                 {
1796                         /* Count the entries */
1797                         alloc_race_size++;
1798
1799                         /* Group by level */
1800                         num[r_ptr->level]++;
1801                 }
1802         }
1803
1804         /* Collect the level indexes */
1805         for (i = 1; i < MAX_DEPTH; i++)
1806         {
1807                 /* Group by level */
1808                 num[i] += num[i-1];
1809         }
1810
1811         /* Paranoia */
1812 #ifdef JP
1813         if (!num[0]) quit("Ä®¤Î¥â¥ó¥¹¥¿¡¼¤¬¤Ê¤¤¡ª");
1814 #else
1815         if (!num[0]) quit("No town monsters!");
1816 #endif
1817
1818
1819
1820         /*** Initialize monster allocation info ***/
1821
1822         /* Allocate the alloc_race_table */
1823         C_MAKE(alloc_race_table, alloc_race_size, alloc_entry);
1824
1825         /* Access the table entry */
1826         table = alloc_race_table;
1827
1828         /* Scan the monsters */
1829         for (i = 1; i < max_r_idx; i++)
1830         {
1831                 /* Get the i'th race */
1832                 r_ptr = &r_info[i];
1833
1834                 /* Count valid pairs */
1835                 if (r_ptr->rarity)
1836                 {
1837                         int p, x, y, z;
1838
1839                         /* Extract the base level */
1840                         x = r_ptr->level;
1841
1842                         /* Extract the base probability */
1843                         p = (100 / r_ptr->rarity);
1844
1845                         /* Skip entries preceding our locale */
1846                         y = (x > 0) ? num[x-1] : 0;
1847
1848                         /* Skip previous entries at this locale */
1849                         z = y + aux[x];
1850
1851                         /* Load the entry */
1852                         table[z].index = i;
1853                         table[z].level = x;
1854                         table[z].prob1 = p;
1855                         table[z].prob2 = p;
1856                         table[z].prob3 = p;
1857
1858                         /* Another entry complete for this locale */
1859                         aux[x]++;
1860                 }
1861         }
1862
1863 #endif /* SORT_R_INFO */
1864
1865         /* Init the "alloc_kind_table" */
1866         (void)init_object_alloc();
1867
1868         /* Success */
1869         return (0);
1870 }
1871
1872
1873
1874 /*
1875  * Hack -- take notes on line 23
1876  */
1877 static void note(cptr str)
1878 {
1879         Term_erase(0, 23, 255);
1880         Term_putstr(20, 23, -1, TERM_WHITE, str);
1881         Term_fresh();
1882 }
1883
1884
1885
1886 /*
1887  * Hack -- Explain a broken "lib" folder and quit (see below).
1888  *
1889  * XXX XXX XXX This function is "messy" because various things
1890  * may or may not be initialized, but the "plog()" and "quit()"
1891  * functions are "supposed" to work under any conditions.
1892  */
1893 static void init_angband_aux(cptr why)
1894 {
1895         /* Why */
1896         plog(why);
1897
1898 #ifdef JP
1899         /* Explain */
1900         plog("'lib'¥Ç¥£¥ì¥¯¥È¥ê¤¬Â¸ºß¤·¤Ê¤¤¤«²õ¤ì¤Æ¤¤¤ë¤è¤¦¤Ç¤¹¡£");
1901
1902         /* More details */
1903         plog("¤Ò¤ç¤Ã¤È¤¹¤ë¤È¥¢¡¼¥«¥¤¥Ö¤¬Àµ¤·¤¯²òÅव¤ì¤Æ¤¤¤Ê¤¤¤Î¤«¤â¤·¤ì¤Þ¤»¤ó¡£");
1904
1905         /* Explain */
1906         plog("³ºÅö¤¹¤ë'README'¥Õ¥¡¥¤¥ë¤òÆɤó¤Ç³Îǧ¤·¤Æ¤ß¤Æ²¼¤µ¤¤¡£");
1907
1908         /* Quit with error */
1909         quit("Ã×̿Ū¤Ê¥¨¥é¡¼¡£");
1910 #else
1911         /* Explain */
1912         plog("The 'lib' directory is probably missing or broken.");
1913
1914         /* More details */
1915         plog("Perhaps the archive was not extracted correctly.");
1916
1917         /* Explain */
1918         plog("See the 'README' file for more information.");
1919
1920         /* Quit with error */
1921         quit("Fatal Error.");
1922 #endif
1923
1924 }
1925
1926
1927 /*
1928  * Hack -- main Angband initialization entry point
1929  *
1930  * Verify some files, display the "news.txt" file, create
1931  * the high score file, initialize all internal arrays, and
1932  * load the basic "user pref files".
1933  *
1934  * Be very careful to keep track of the order in which things
1935  * are initialized, in particular, the only thing *known* to
1936  * be available when this function is called is the "z-term.c"
1937  * package, and that may not be fully initialized until the
1938  * end of this function, when the default "user pref files"
1939  * are loaded and "Term_xtra(TERM_XTRA_REACT,0)" is called.
1940  *
1941  * Note that this function attempts to verify the "news" file,
1942  * and the game aborts (cleanly) on failure, since without the
1943  * "news" file, it is likely that the "lib" folder has not been
1944  * correctly located.  Otherwise, the news file is displayed for
1945  * the user.
1946  *
1947  * Note that this function attempts to verify (or create) the
1948  * "high score" file, and the game aborts (cleanly) on failure,
1949  * since one of the most common "extraction" failures involves
1950  * failing to extract all sub-directories (even empty ones), such
1951  * as by failing to use the "-d" option of "pkunzip", or failing
1952  * to use the "save empty directories" option with "Compact Pro".
1953  * This error will often be caught by the "high score" creation
1954  * code below, since the "lib/apex" directory, being empty in the
1955  * standard distributions, is most likely to be "lost", making it
1956  * impossible to create the high score file.
1957  *
1958  * Note that various things are initialized by this function,
1959  * including everything that was once done by "init_some_arrays".
1960  *
1961  * This initialization involves the parsing of special files
1962  * in the "lib/data" and sometimes the "lib/edit" directories.
1963  *
1964  * Note that the "template" files are initialized first, since they
1965  * often contain errors.  This means that macros and message recall
1966  * and things like that are not available until after they are done.
1967  *
1968  * We load the default "user pref files" here in case any "color"
1969  * changes are needed before character creation.
1970  *
1971  * Note that the "graf-xxx.prf" file must be loaded separately,
1972  * if needed, in the first (?) pass through "TERM_XTRA_REACT".
1973  */
1974 void init_angband(void)
1975 {
1976         int fd = -1;
1977
1978         int mode = 0644;
1979
1980         FILE *fp;
1981
1982         char buf[1024];
1983
1984
1985         /*** Verify the "news" file ***/
1986
1987         /* Build the filename */
1988 #ifdef JP
1989         path_build(buf, sizeof(buf), ANGBAND_DIR_FILE, "news_j.txt");
1990 #else
1991         path_build(buf, sizeof(buf), ANGBAND_DIR_FILE, "news.txt");
1992 #endif
1993
1994
1995         /* Attempt to open the file */
1996         fd = fd_open(buf, O_RDONLY);
1997
1998         /* Failure */
1999         if (fd < 0)
2000         {
2001                 char why[1024];
2002
2003                 /* Message */
2004 #ifdef JP
2005         sprintf(why, "'%s'¥Õ¥¡¥¤¥ë¤Ë¥¢¥¯¥»¥¹¤Ç¤­¤Þ¤»¤ó!", buf);
2006 #else
2007                 sprintf(why, "Cannot access the '%s' file!", buf);
2008 #endif
2009
2010
2011                 /* Crash and burn */
2012                 init_angband_aux(why);
2013         }
2014
2015         /* Close it */
2016         (void)fd_close(fd);
2017
2018
2019         /*** Display the "news" file ***/
2020
2021         /* Clear screen */
2022         Term_clear();
2023
2024         /* Build the filename */
2025 #ifdef JP
2026         path_build(buf, sizeof(buf), ANGBAND_DIR_FILE, "news_j.txt");
2027 #else
2028         path_build(buf, sizeof(buf), ANGBAND_DIR_FILE, "news.txt");
2029 #endif
2030
2031
2032         /* Open the News file */
2033         fp = my_fopen(buf, "r");
2034
2035         /* Dump */
2036         if (fp)
2037         {
2038                 int i = 0;
2039
2040                 /* Dump the file to the screen */
2041                 while (0 == my_fgets(fp, buf, sizeof(buf)))
2042                 {
2043                         /* Display and advance */
2044                         Term_putstr(0, i++, -1, TERM_WHITE, buf);
2045                 }
2046
2047                 /* Close */
2048                 my_fclose(fp);
2049         }
2050
2051         /* Flush it */
2052         Term_fresh();
2053
2054
2055         /*** Verify (or create) the "high score" file ***/
2056
2057         /* Build the filename */
2058         path_build(buf, sizeof(buf), ANGBAND_DIR_APEX, "scores.raw");
2059
2060         /* Attempt to open the high score file */
2061         fd = fd_open(buf, O_RDONLY);
2062
2063         /* Failure */
2064         if (fd < 0)
2065         {
2066                 /* File type is "DATA" */
2067                 FILE_TYPE(FILE_TYPE_DATA);
2068
2069                 /* Create a new high score file */
2070                 fd = fd_make(buf, mode);
2071
2072                 /* Failure */
2073                 if (fd < 0)
2074                 {
2075                         char why[1024];
2076
2077                         /* Message */
2078 #ifdef JP
2079                         sprintf(why, "'%s'¥Õ¥¡¥¤¥ë¤òºîÀ®¤Ç¤­¤Þ¤»¤ó!", buf);
2080 #else
2081                         sprintf(why, "Cannot create the '%s' file!", buf);
2082 #endif
2083
2084
2085                         /* Crash and burn */
2086                         init_angband_aux(why);
2087                 }
2088         }
2089
2090         /* Close it */
2091         (void)fd_close(fd);
2092
2093
2094         /*** Initialize some arrays ***/
2095
2096         /* Initialize misc. values */
2097 #ifdef JP
2098 note("[ÊÑ¿ô¤ò½é´ü²½¤·¤Æ¤¤¤Þ¤¹...(¤½¤Î¾)");
2099 #else
2100         note("[Initializing values... (misc)]");
2101 #endif
2102
2103 #ifdef JP
2104 if (init_misc()) quit("¤½¤Î¾¤ÎÊÑ¿ô¤ò½é´ü²½¤Ç¤­¤Þ¤»¤ó");
2105 #else
2106         if (init_misc()) quit("Cannot initialize misc. values");
2107 #endif
2108
2109
2110         /* Initialize feature info */
2111 #ifdef JP
2112         note("[¥Ç¡¼¥¿¤Î½é´ü²½Ãæ... (ÃÏ·Á)]");
2113         if (init_f_info()) quit("ÃÏ·Á½é´ü²½ÉÔǽ");
2114 #else
2115         note("[Initializing arrays... (features)]");
2116         if (init_f_info()) quit("Cannot initialize features");
2117 #endif
2118
2119
2120         /* Initialize object info */
2121 #ifdef JP
2122         note("[¥Ç¡¼¥¿¤Î½é´ü²½Ãæ... (¥¢¥¤¥Æ¥à)]");
2123         if (init_k_info()) quit("¥¢¥¤¥Æ¥à½é´ü²½ÉÔǽ");
2124 #else
2125         note("[Initializing arrays... (objects)]");
2126         if (init_k_info()) quit("Cannot initialize objects");
2127 #endif
2128
2129
2130         /* Initialize artifact info */
2131 #ifdef JP
2132         note("[¥Ç¡¼¥¿¤Î½é´ü²½Ãæ... (ÅÁÀâ¤Î¥¢¥¤¥Æ¥à)]");
2133         if (init_a_info()) quit("ÅÁÀâ¤Î¥¢¥¤¥Æ¥à½é´ü²½ÉÔǽ");
2134 #else
2135         note("[Initializing arrays... (artifacts)]");
2136         if (init_a_info()) quit("Cannot initialize artifacts");
2137 #endif
2138
2139
2140         /* Initialize ego-item info */
2141 #ifdef JP
2142         note("[¥Ç¡¼¥¿¤Î½é´ü²½Ãæ... (̾¤Î¤¢¤ë¥¢¥¤¥Æ¥à)]");
2143         if (init_e_info()) quit("̾¤Î¤¢¤ë¥¢¥¤¥Æ¥à½é´ü²½ÉÔǽ");
2144 #else
2145         note("[Initializing arrays... (ego-items)]");
2146         if (init_e_info()) quit("Cannot initialize ego-items");
2147 #endif
2148
2149
2150         /* Initialize monster info */
2151 #ifdef JP
2152         note("[¥Ç¡¼¥¿¤Î½é´ü²½Ãæ... (¥â¥ó¥¹¥¿¡¼)]");
2153         if (init_r_info()) quit("¥â¥ó¥¹¥¿¡¼½é´ü²½ÉÔǽ");
2154 #else
2155         note("[Initializing arrays... (monsters)]");
2156         if (init_r_info()) quit("Cannot initialize monsters");
2157 #endif
2158
2159
2160         /* Initialize dungeon info */
2161 #ifdef JP
2162         note("[¥Ç¡¼¥¿¤Î½é´ü²½Ãæ... (¥À¥ó¥¸¥ç¥ó)]");
2163         if (init_d_info()) quit("¥À¥ó¥¸¥ç¥ó½é´ü²½ÉÔǽ");
2164 #else
2165         note("[Initializing arrays... (dungeon)]");
2166         if (init_d_info()) quit("Cannot initialize dungeon");
2167 #endif
2168         {
2169                 int i;
2170                 for (i = 1; i < max_d_idx; i++)
2171                         if (d_info[i].final_guardian)
2172                                 r_info[d_info[i].final_guardian].flags7 |= RF7_GUARDIAN;
2173         }
2174
2175         /* Initialize magic info */
2176 #ifdef JP
2177         note("[¥Ç¡¼¥¿¤Î½é´ü²½Ãæ... (ËâË¡)]");
2178         if (init_m_info()) quit("ËâË¡½é´ü²½ÉÔǽ");
2179 #else
2180         note("[Initializing arrays... (magic)]");
2181         if (init_m_info()) quit("Cannot initialize magic");
2182 #endif
2183
2184         /* Initialize weapon_exp info */
2185 #ifdef JP
2186         note("[¥Ç¡¼¥¿¤Î½é´ü²½Ãæ... (½ÏÎýÅÙ)]");
2187         if (init_s_info()) quit("½ÏÎýÅÙ½é´ü²½ÉÔǽ");
2188 #else
2189         note("[Initializing arrays... (skill)]");
2190         if (init_s_info()) quit("Cannot initialize skill");
2191 #endif
2192
2193         /* Initialize wilderness array */
2194 #ifdef JP
2195 note("[ÇÛÎó¤ò½é´ü²½¤·¤Æ¤¤¤Þ¤¹... (¹ÓÌî)]");
2196 #else
2197         note("[Initializing arrays... (wilderness)]");
2198 #endif
2199
2200 #ifdef JP
2201 if (init_wilderness()) quit("¹ÓÌî¤ò½é´ü²½¤Ç¤­¤Þ¤»¤ó");
2202 #else
2203         if (init_wilderness()) quit("Cannot initialize wilderness");
2204 #endif
2205
2206
2207         /* Initialize town array */
2208 #ifdef JP
2209 note("[ÇÛÎó¤ò½é´ü²½¤·¤Æ¤¤¤Þ¤¹... (³¹)]");
2210 #else
2211         note("[Initializing arrays... (towns)]");
2212 #endif
2213
2214 #ifdef JP
2215 if (init_towns()) quit("³¹¤ò½é´ü²½¤Ç¤­¤Þ¤»¤ó");
2216 #else
2217         if (init_towns()) quit("Cannot initialize towns");
2218 #endif
2219
2220
2221         /* Initialize building array */
2222 #ifdef JP
2223 note("[ÇÛÎó¤ò½é´ü²½¤·¤Æ¤¤¤Þ¤¹... (·úʪ)]");
2224 #else
2225         note("[Initializing arrays... (buildings)]");
2226 #endif
2227
2228 #ifdef JP
2229 if (init_buildings()) quit("·úʪ¤ò½é´ü²½¤Ç¤­¤Þ¤»¤ó");
2230 #else
2231         if (init_buildings()) quit("Cannot initialize buildings");
2232 #endif
2233
2234
2235         /* Initialize quest array */
2236 #ifdef JP
2237 note("[ÇÛÎó¤ò½é´ü²½¤·¤Æ¤¤¤Þ¤¹... (¥¯¥¨¥¹¥È)]");
2238 #else
2239         note("[Initializing arrays... (quests)]");
2240 #endif
2241
2242 #ifdef JP
2243 if (init_quests()) quit("¥¯¥¨¥¹¥È¤ò½é´ü²½¤Ç¤­¤Þ¤»¤ó");
2244 #else
2245         if (init_quests()) quit("Cannot initialize quests");
2246 #endif
2247
2248
2249         /* Initialize some other arrays */
2250 #ifdef JP
2251         note("[¥Ç¡¼¥¿¤Î½é´ü²½Ãæ... (¤½¤Î¾)]");
2252         if (init_other()) quit("¤½¤Î¾¤Î¥Ç¡¼¥¿½é´ü²½ÉÔǽ");
2253 #else
2254         note("[Initializing arrays... (other)]");
2255         if (init_other()) quit("Cannot initialize other stuff");
2256 #endif
2257
2258
2259         /* Initialize some other arrays */
2260 #ifdef JP
2261         /* translation */
2262         note("[¥Ç¡¼¥¿¤Î½é´ü²½Ãæ... (¥¢¥í¥±¡¼¥·¥ç¥ó)]");
2263         if (init_alloc()) quit("¥¢¥í¥±¡¼¥·¥ç¥ó¡¦¥¹¥¿¥Ã¥Õ½é´ü²½ÉÔǽ");
2264 #else
2265         note("[Initializing arrays... (alloc)]");
2266         if (init_alloc()) quit("Cannot initialize alloc stuff");
2267 #endif
2268
2269
2270
2271         /*** Load default user pref files ***/
2272
2273         /* Initialize feature info */
2274 #ifdef JP
2275 note("[¥æ¡¼¥¶¡¼ÀßÄê¥Õ¥¡¥¤¥ë¤ò½é´ü²½¤·¤Æ¤¤¤Þ¤¹...]");
2276 #else
2277         note("[Initializing user pref files...]");
2278 #endif
2279
2280
2281         /* Access the "basic" pref file */
2282         strcpy(buf, "pref.prf");
2283
2284         /* Process that file */
2285         process_pref_file(buf);
2286
2287         /* Access the "basic" system pref file */
2288         sprintf(buf, "pref-%s.prf", ANGBAND_SYS);
2289
2290         /* Process that file */
2291         process_pref_file(buf);
2292
2293         /* Done */
2294 #ifdef JP
2295         note("[½é´ü²½½ªÎ»]");
2296 #else
2297         note("[Initialization complete]");
2298 #endif
2299
2300 }
2301
2302 /*
2303  *  Get check sum in string form
2304  */
2305 cptr get_check_sum(void)
2306 {
2307         return format("%02x%02x%02x%02x%02x%02x%02x%02x%02x", 
2308                       f_head.v_extra, 
2309                       k_head.v_extra, 
2310                       a_head.v_extra, 
2311                       e_head.v_extra, 
2312                       r_head.v_extra, 
2313                       d_head.v_extra, 
2314                       m_head.v_extra, 
2315                       s_head.v_extra, 
2316                       v_head.v_extra);
2317 }
2318