OSDN Git Service

[Refactor] #40413 Separated bit-flags-calculator.h from util.h
[hengbandforosx/hengbandosx.git] / src / info-reader / artifact-reader.c
1 #include "info-reader/artifact-reader.h"
2 #include "info-reader/kind-info-tokens-table.h"
3 #include "object-enchant/artifact.h"
4 #include "object-enchant/tr-types.h"
5 #include "util/bit-flags-calculator.h"
6 #include "view/display-messages.h"
7
8 /*!
9  * @brief テキストトークンを走査してフラグを一つ得る(アーティファクト用) /
10  * Grab one activation index flag
11  * @param a_ptr 保管先のアーティファクト構造体参照ポインタ
12  * @param what 参照元の文字列ポインタ
13  * @return エラーがあった場合1、エラーがない場合0を返す
14  */
15 static errr grab_one_artifact_flag(artifact_type *a_ptr, concptr what)
16 {
17     for (int i = 0; i < TR_FLAG_MAX; i++) {
18         if (streq(what, k_info_flags[i])) {
19             add_flag(a_ptr->flags, i);
20             return 0;
21         }
22     }
23
24     if (grab_one_flag(&a_ptr->gen_flags, k_info_gen_flags, what) == 0)
25         return 0;
26
27     msg_format(_("未知の伝説のアイテム・フラグ '%s'。", "Unknown artifact flag '%s'."), what);
28     return 1;
29 }
30
31 /*!
32  * @brief 固定アーティファクト情報(a_info)のパース関数 /
33  * Initialize the "a_info" array, by parsing an ascii "template" file
34  * @param buf テキスト列
35  * @param head ヘッダ構造体
36  * @return エラーコード
37  */
38 errr parse_a_info(char *buf, angband_header *head)
39 {
40     static artifact_type *a_ptr = NULL;
41     char *s, *t;
42     if (buf[0] == 'N') {
43         s = angband_strchr(buf + 2, ':');
44         if (!s)
45             return 1;
46
47         *s++ = '\0';
48 #ifdef JP
49         if (!*s)
50             return 1;
51 #endif
52         int i = atoi(buf + 2);
53         if (i < error_idx)
54             return 4;
55         if (i >= head->info_num)
56             return 2;
57
58         error_idx = i;
59         a_ptr = &a_info[i];
60         add_flag(a_ptr->flags, TR_IGNORE_ACID);
61         add_flag(a_ptr->flags, TR_IGNORE_ELEC);
62         add_flag(a_ptr->flags, TR_IGNORE_FIRE);
63         add_flag(a_ptr->flags, TR_IGNORE_COLD);
64 #ifdef JP
65         if (!add_name(&a_ptr->name, head, s))
66             return 7;
67 #endif
68     } else if (!a_ptr) {
69         return 3;
70     }
71 #ifdef JP
72     /* 英語名を読むルーチンを追加 */
73     /* 'E' から始まる行は英語名としている */
74     else if (buf[0] == 'E') {
75         /* nothing to do */
76     }
77 #else
78     else if (buf[0] == 'E') {
79         s = buf + 2;
80         if (!add_name(&a_ptr->name, head, s))
81             return 7;
82     }
83 #endif
84     else if (buf[0] == 'D') {
85 #ifdef JP
86         if (buf[2] == '$')
87             return 0;
88         s = buf + 2;
89 #else
90         if (buf[2] != '$')
91             return 0;
92         s = buf + 3;
93 #endif
94         if (!add_text(&a_ptr->text, head, s, TRUE))
95             return 7;
96     } else if (buf[0] == 'I') {
97         int tval, sval, pval;
98         if (3 != sscanf(buf + 2, "%d:%d:%d", &tval, &sval, &pval))
99             return 1;
100
101         a_ptr->tval = (tval_type)tval;
102         a_ptr->sval = (OBJECT_SUBTYPE_VALUE)sval;
103         a_ptr->pval = (PARAMETER_VALUE)pval;
104     } else if (buf[0] == 'W') {
105         int level, rarity, wgt;
106         long cost;
107         if (4 != sscanf(buf + 2, "%d:%d:%d:%ld", &level, &rarity, &wgt, &cost))
108             return 1;
109
110         a_ptr->level = (DEPTH)level;
111         a_ptr->rarity = (RARITY)rarity;
112         a_ptr->weight = (WEIGHT)wgt;
113         a_ptr->cost = (PRICE)cost;
114     } else if (buf[0] == 'P') {
115         int ac, hd1, hd2, th, td, ta;
116         if (6 != sscanf(buf + 2, "%d:%dd%d:%d:%d:%d", &ac, &hd1, &hd2, &th, &td, &ta))
117             return 1;
118
119         a_ptr->ac = (ARMOUR_CLASS)ac;
120         a_ptr->dd = (DICE_NUMBER)hd1;
121         a_ptr->ds = (DICE_SID)hd2;
122         a_ptr->to_h = (HIT_PROB)th;
123         a_ptr->to_d = (HIT_POINT)td;
124         a_ptr->to_a = (ARMOUR_CLASS)ta;
125     } else if (buf[0] == 'U') {
126         byte n;
127         n = grab_one_activation_flag(buf + 2);
128         if (n > 0) {
129             a_ptr->act_idx = n;
130         } else {
131             return 5;
132         }
133     } else if (buf[0] == 'F') {
134         for (s = buf + 2; *s;) {
135             /* loop */
136             for (t = s; *t && (*t != ' ') && (*t != '|'); ++t)
137                 ;
138
139             if (*t) {
140                 *t++ = '\0';
141                 while ((*t == ' ') || (*t == '|'))
142                     t++;
143             }
144
145             if (0 != grab_one_artifact_flag(a_ptr, s))
146                 return 5;
147
148             s = t;
149         }
150     } else {
151         return 6;
152     }
153
154     return 0;
155 }