OSDN Git Service

Merge branch 'master' into For2.2.2-Refactoring
[hengband/hengband.git] / src / init.h
1 /*!
2  * @file init.h
3  * @brief ゲームデータ初期化処理のヘッダファイル
4  * @date 2015/01/02
5  * @author
6  * Copyright (c) 2000 Robert Ruehlmann
7  * @details
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.
11  */
12
13 #ifndef INCLUDED_INIT_H
14 #define INCLUDED_INIT_H
15
16 #include "h-basic.h"
17
18
19 #if 0
20 /*
21  * Parse errors
22  */
23 #define PARSE_ERROR_GENERIC                  1
24 #define PARSE_ERROR_OBSOLETE_FILE            2
25 #define PARSE_ERROR_MISSING_RECORD_HEADER    3
26 #define PARSE_ERROR_NON_SEQUENTIAL_RECORDS   4
27 #define PARSE_ERROR_INVALID_FLAG             5
28 #define PARSE_ERROR_UNDEFINED_DIRECTIVE      6
29 #define PARSE_ERROR_OUT_OF_MEMORY            7
30 #define PARSE_ERROR_OUT_OF_BOUNDS            8
31 #define PARSE_ERROR_TOO_FEW_ARGUMENTS        9
32 #define PARSE_ERROR_TOO_MANY_ARGUMENTS      10
33 #define PARSE_ERROR_TOO_MANY_ALLOCATIONS    11
34 #define PARSE_ERROR_INVALID_SPELL_FREQ      12
35 #define PARSE_ERROR_INVALID_ITEM_NUMBER     13
36 #define PARSE_ERROR_TOO_MANY_ENTRIES        14
37
38 #define PARSE_ERROR_MAX                     15
39 #endif /* 0 */
40
41
42 typedef struct header header;
43
44 typedef errr (*parse_info_txt_func)(char *buf, header *head);
45
46 /*
47  * Size of memory reserved for initialization of some arrays
48  */
49 #define FAKE_NAME_SIZE  40 * 1024L /*!< ゲーム情報の種別毎に用意される名前用バッファの容量 */
50 #define FAKE_TEXT_SIZE 150 * 1024L /*!< ゲーム情報の種別毎に用意されるテキスト用バッファの容量 */
51 #define FAKE_TAG_SIZE   10 * 1024L /*!< ゲーム情報の種別毎に用意されるタグ用バッファの容量 */
52
53 #define VER_INFO_ROW 3   //!< タイトル表記(行)
54
55 /*!
56  * @brief マクロ登録の最大数 / Maximum number of macros (see "io.c")
57  * @note Default: assume at most 256 macros are used
58  */
59 #define MACRO_MAX       256
60
61
62 /*!
63  * @struct header
64  * @brief 各初期データ用ヘッダ構造体 / Template file header information (see "init.c").  16 bytes.
65  * @details
66  * Note that the sizes of many of the "arrays" are between 32768 and
67  * 65535, and so we must use "unsigned" values to hold the "sizes" of
68  * these arrays below.  Normally, I try to avoid using unsigned values,
69  * since they can cause all sorts of bizarre problems, but I have no
70  * choice here, at least, until the "race" array is split into "normal"
71  * and "unique" monsters, which may or may not actually help.
72  *
73  * Note that, on some machines, for example, the Macintosh, the standard
74  * "read()" and "write()" functions cannot handle more than 32767 bytes
75  * at one time, so we need replacement functions, see "util.c" for details.
76  *
77  * Note that, on some machines, for example, the Macintosh, the standard
78  * "malloc()" function cannot handle more than 32767 bytes at one time,
79  * but we may assume that the "ralloc()" function can handle up to 65535
80  * butes at one time.  We should not, however, assume that the "ralloc()"
81  * function can handle more than 65536 bytes at a time, since this might
82  * result in segmentation problems on certain older machines, and in fact,
83  * we should not assume that it can handle exactly 65536 bytes at a time,
84  * since the internal functions may use an unsigned short to specify size.
85  *
86  * In general, these problems occur only on machines (such as most personal
87  * computers) which use 2 byte "int" values, and which use "int" for the
88  * arguments to the relevent functions.
89  */
90 struct header
91 {
92         byte v_major;           /* Version -- major */
93         byte v_minor;           /* Version -- minor */
94         byte v_patch;           /* Version -- patch */
95         byte v_extra;           /* Version -- extra */
96
97         u16b info_num;          /* Number of "info" records */
98         int info_len;           /* Size of each "info" record */
99         u16b head_size;         /* Size of the "header" in bytes */
100
101         STR_OFFSET info_size;           /* Size of the "info" array in bytes */
102         STR_OFFSET name_size;           /* Size of the "name" array in bytes */
103         STR_OFFSET text_size;           /* Size of the "text" array in bytes */
104         STR_OFFSET tag_size;            /* Size of the "tag" array in bytes */
105
106         void *info_ptr;
107         char *name_ptr;
108         char *text_ptr;
109         char *tag_ptr;
110
111         parse_info_txt_func parse_info_txt;
112
113         void (*retouch)(header *head);
114 };
115
116 extern errr init_info_txt(FILE *fp, char *buf, header *head,
117                           parse_info_txt_func parse_info_txt_line);
118
119 #ifdef ALLOW_TEMPLATES
120 extern errr parse_z_info(char *buf, header *head);
121 extern errr parse_v_info(char *buf, header *head);
122 extern errr parse_f_info(char *buf, header *head);
123 extern void retouch_f_info(header *head);
124 extern errr parse_k_info(char *buf, header *head);
125 extern errr parse_a_info(char *buf, header *head);
126 extern errr parse_e_info(char *buf, header *head);
127 extern errr parse_r_info(char *buf, header *head);
128 extern errr parse_d_info(char *buf, header *head);
129 extern errr parse_s_info(char *buf, header *head);
130 extern errr parse_m_info(char *buf, header *head);
131
132 /*
133  * Error tracking
134  */
135 extern int error_idx;
136 extern int error_line;
137
138 #endif /* ALLOW_TEMPLATES */
139
140
141 /*
142  * File headers
143  */
144 extern header z_head;
145 extern header v_head;
146 extern header f_head;
147 extern header k_head;
148 extern header a_head;
149 extern header e_head;
150 extern header r_head;
151 extern header p_head;
152 extern header h_head;
153 extern header b_head;
154 extern header g_head;
155
156 #endif /* INCLUDED_INIT_H */
157
158 extern s16b f_tag_to_index(concptr str);
159 extern s16b f_tag_to_index_in_init(concptr str);
160 extern void init_angband(void);
161 extern concptr get_check_sum(void);
162 extern void init_file_paths(char *path);