OSDN Git Service

8f5aaa049fa68696b31ba092f68cee6ce1b2dce3
[hengband/hengband.git] / src / types.h
1 /*!
2  * @file types.h
3  * @brief グローバルな構造体の定義 / global type declarations
4  * @date 2014/08/10
5  * @author
6  * <pre>
7  * Copyright (c) 1997 Ben Harrison, James E. Wilson, Robert A. Koeneke
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  * </pre>
12  * @details
13  * <pre>
14  * このファイルはangband.hでのみインクルードすること。
15  * This file should ONLY be included by "angband.h"
16  *
17  * Note that "char" may or may not be signed, and that "signed char"
18  * may or may not work on all machines.  So always use "s16b" or "s32b"
19  * for signed values.  Also, note that unsigned values cause math problems
20  * in many cases, so try to only use "u16b" and "u32b" for "bit flags",
21  * unless you really need the extra bit of information, or you really
22  * need to restrict yourself to a single byte for storage reasons.
23  *
24  * Also, if possible, attempt to restrict yourself to sub-fields of
25  * known size (use "s16b" or "s32b" instead of "int", and "byte" instead
26  * of "bool"), and attempt to align all fields along four-byte words, to
27  * optimize storage issues on 32-bit machines.  Also, avoid "bit flags"
28  * since these increase the code size and slow down execution.  When
29  * you need to store bit flags, use one byte per flag, or, where space
30  * is an issue, use a "byte" or "u16b" or "u32b", and add special code
31  * to access the various bit flags.
32  *
33  * Many of these structures were developed to reduce the number of global
34  * variables, facilitate structured program design, allow the use of ascii
35  * template files, simplify access to indexed data, or facilitate efficient
36  * clearing of many variables at once.
37  *
38  * Certain data is saved in multiple places for efficient access, currently,
39  * this includes the tval/sval/weight fields in "object_type", various fields
40  * in "header_type", and the "m_idx" and "o_idx" fields in "cave_type".  All
41  * of these could be removed, but this would, in general, slow down the game
42  * and increase the complexity of the code.
43  * </pre>
44  */
45
46
47 /*!
48  * @struct feature_state
49  * @brief 地形状態変化指定構造体 / Feature state structure
50  */
51 typedef struct feature_state feature_state;
52
53 struct feature_state
54 {
55         byte action; /*!< 変化条件をFF_*のIDで指定 / Action (FF_*) */
56         s16b result; /*!< 変化先ID / Result (f_info ID) */
57 };
58
59
60 /*!
61  * @struct feature_type
62  * @brief 地形情報の構造体 / Information about terrain "features"
63  */
64
65 typedef struct feature_type feature_type;
66
67 struct feature_type
68 {
69         STR_OFFSET name;                /*!< 地形名参照のためのネームバッファオフセット値 / Name (offset) */
70         STR_OFFSET text;                /*!< 地形説明参照のためのネームバッファオフセット値 /  Text (offset) */
71         STR_OFFSET tag;                 /*!< 地形特性タグ参照のためのネームバッファオフセット値 /  Tag (offset) */
72
73         IDX mimic;               /*!< 未確定時の外形地形ID / Feature to mimic */
74
75         BIT_FLAGS flags[FF_FLAG_SIZE]; /*!< 地形の基本特性ビット配列 / Flags */
76
77         u16b priority;            /*!< 縮小表示で省略する際の表示優先度 / Map priority */
78         IDX destroyed;           /*!< *破壊*に巻き込まれた時の地形移行先(未実装?) / Default destroyed state */
79
80         feature_state state[MAX_FEAT_STATES]; /*!< feature_state テーブル */
81
82         byte subtype;  /*!< 副特性値 */
83         FEAT_POWER power;    /*!< 地形強度 */
84
85         SYMBOL_COLOR d_attr[F_LIT_MAX];   /*!< デフォルトの地形シンボルカラー / Default feature attribute */
86         SYMBOL_CODE d_char[F_LIT_MAX];   /*!< デフォルトの地形シンボルアルファベット / Default feature character */
87
88         SYMBOL_COLOR x_attr[F_LIT_MAX];   /*!< 設定変更後の地形シンボルカラー / Desired feature attribute */
89         SYMBOL_CODE x_char[F_LIT_MAX];   /*!< 設定変更後の地形シンボルアルファベット / Desired feature character */
90 };
91
92
93 /*!
94  * @struct object_kind
95  * @brief ベースアイテム情報の構造体 / Information about object "kinds", including player knowledge.
96  * @details
97  * ゲーム進行用のセーブファイル上では aware と tried のみ保存対象とすること。と英文ではあるが実際はもっとある様子である。 /
98  * Only "aware" and "tried" are saved in the savefile
99  */
100
101 typedef struct object_kind object_kind;
102
103 struct object_kind
104 {
105         STR_OFFSET name;                        /*!< ベースアイテム名参照のためのネームバッファオフセット値 / Name (offset) */
106         STR_OFFSET text;                        /*!< 解説テキスト参照のためのネームバッファオフセット値 / Text (offset) */
107         STR_OFFSET flavor_name; /*!< 未確定名参照のためのネームバッファオフセット値 / Flavor name (offset) */
108
109         OBJECT_TYPE_VALUE tval;                 /*!< ベースアイテム種別の大項目値 Object type */
110         OBJECT_SUBTYPE_VALUE sval;                      /*!< ベースアイテム種別の小項目値 Object sub type */
111
112         PARAMETER_VALUE pval;   /*!< ベースアイテムのpval(能力修正共通値) Object extra info */
113
114         HIT_PROB to_h;                  /*!< ベースアイテムの命中修正値 / Bonus to hit */
115         HIT_POINT to_d;                 /*!< ベースアイテムのダメージ修正値 / Bonus to damage */
116         ARMOUR_CLASS to_a;                      /*!< ベースアイテムのAC修正値 / Bonus to armor */
117
118         ARMOUR_CLASS ac;                        /*!< ベースアイテムのAC基本値 /  Base armor */
119
120         DICE_NUMBER dd;
121         DICE_SID ds;            /*!< ダメージダイスの数と大きさ / Damage dice/sides */
122
123         WEIGHT weight;          /*!< ベースアイテムの重量 / Weight */
124
125         PRICE cost;                     /*!< ベースアイテムの基本価値 / Object "base cost" */
126
127         BIT_FLAGS flags[TR_FLAG_SIZE];  /*!< ベースアイテムの基本特性ビット配列 / Flags */
128
129         BIT_FLAGS gen_flags;            /*!< ベースアイテムの生成特性ビット配列 / flags for generate */
130
131         DEPTH locale[4];                /*!< ベースアイテムの生成階テーブル / Allocation level(s) */
132         byte chance[4];         /*!< ベースアイテムの生成確率テーブル / Allocation chance(s) */
133
134         DEPTH level;                    /*!< ベースアイテムの基本生成階 / Level */
135         byte extra;                     /*!< その他色々のビットフラグ配列 / Something */
136
137         SYMBOL_COLOR d_attr;            /*!< デフォルトのアイテムシンボルカラー / Default object attribute */
138         SYMBOL_CODE d_char;             /*!< デフォルトのアイテムシンボルアルファベット / Default object character */
139
140         SYMBOL_COLOR x_attr;            /*!< 設定変更後のアイテムシンボルカラー /  Desired object attribute */
141         SYMBOL_CODE x_char;             /*!< 設定変更後のアイテムシンボルアルファベット /  Desired object character */
142
143         s16b flavor;            /*!< 調査中(TODO) / Special object flavor (or zero) */
144
145         bool easy_know;         /*!< ベースアイテムが初期からベース名を判断可能かどうか / This object is always known (if aware) */
146
147         bool aware;                     /*!< ベースアイテムが鑑定済かどうか /  The player is "aware" of the item's effects */
148
149         bool tried;                     /*!< ベースアイテムを未鑑定のまま試したことがあるか /  The player has "tried" one of the items */
150
151         IDX act_idx;            /*!< 発動能力のID /  Activative ability index */
152 };
153
154
155
156 typedef struct artifact_type artifact_type;
157
158 /*!
159  * @struct artifact_type
160  * @brief 固定アーティファクト情報の構造体 / Artifact structure.
161  * @details
162  * @note
163  * the save-file only writes "cur_num" to the savefile.
164  * "max_num" is always "1" (if that artifact "exists")
165  */
166 struct artifact_type
167 {
168         STR_OFFSET name;                        /*!< アーティファクト名(headerオフセット参照) / Name (offset) */
169         STR_OFFSET text;                        /*!< アーティファクト解説(headerオフセット参照) / Text (offset) */
170
171         OBJECT_TYPE_VALUE tval;         /*!< ベースアイテム大項目ID / Artifact type */
172         OBJECT_SUBTYPE_VALUE sval;      /*!< ベースアイテム小項目ID / Artifact sub type */
173
174         PARAMETER_VALUE pval;   /*!< pval修正値 / Artifact extra info */
175
176         HIT_PROB to_h;                  /*!< 命中ボーナス値 /  Bonus to hit */
177         HIT_POINT to_d;         /*!< ダメージボーナス値 / Bonus to damage */
178         ARMOUR_CLASS to_a;                      /*!< ACボーナス値 / Bonus to armor */
179
180         ARMOUR_CLASS ac;                        /*!< 上書きベースAC値 / Base armor */
181
182         DICE_NUMBER dd;
183         DICE_SID ds;    /*!< ダイス値 / Damage when hits */
184
185         WEIGHT weight;          /*!< 重量 / Weight */
186
187         PRICE cost;                     /*!< 基本価格 / Artifact "cost" */
188
189         BIT_FLAGS flags[TR_FLAG_SIZE];       /*! アイテムフラグ / Artifact Flags */
190
191         BIT_FLAGS gen_flags;            /*! アイテム生成フラグ / flags for generate */
192
193         DEPTH level;            /*! 基本生成階 / Artifact level */
194         RARITY rarity;          /*! レアリティ / Artifact rarity */
195
196         byte cur_num;           /*! 現在の生成数 / Number created (0 or 1) */
197         byte max_num;           /*! (未使用)最大生成数 / Unused (should be "1") */
198
199         s16b floor_id;      /*! アイテムを落としたフロアのID / Leaved on this location last time */
200
201         byte act_idx;           /*! 発動能力ID / Activative ability index */
202 };
203
204
205 /*
206  * Information about "ego-items".
207  */
208
209 typedef struct ego_item_type ego_item_type;
210
211 struct ego_item_type
212 {
213         STR_OFFSET name;                        /* Name (offset) */
214         STR_OFFSET text;                        /* Text (offset) */
215
216         byte slot;                      /* Standard slot value */
217         byte rating;            /* Rating boost */
218
219         DEPTH level;                    /* Minimum level */
220         RARITY rarity;          /* Object rarity */
221
222         HIT_PROB max_to_h;              /* Maximum to-hit bonus */
223         HIT_POINT max_to_d;             /* Maximum to-dam bonus */
224         ARMOUR_CLASS max_to_a;          /* Maximum to-ac bonus */
225
226         PARAMETER_VALUE max_pval;               /* Maximum pval */
227
228         PRICE cost;                     /* Ego-item "cost" */
229
230         BIT_FLAGS flags[TR_FLAG_SIZE];  /* Ego-Item Flags */
231         BIT_FLAGS gen_flags;            /* flags for generate */
232
233         IDX act_idx;            /* Activative ability index */
234 };
235
236
237
238
239 /*
240  * Monster blow structure
241  *
242  *      - Method (RBM_*)
243  *      - Effect (RBE_*)
244  *      - Damage Dice
245  *      - Damage Sides
246  */
247
248 typedef struct monster_blow monster_blow;
249
250 struct monster_blow
251 {
252         byte method;
253         byte effect;
254         DICE_NUMBER d_dice;
255         DICE_SID d_side;
256 };
257
258
259 typedef struct mbe_info_type mbe_info_type;
260
261 struct mbe_info_type
262 {
263         int power;        /* The attack "power" */
264         int explode_type; /* Explosion effect */
265 };
266
267
268 /*
269  * Monster "race" information, including racial memories
270  *
271  * Note that "d_attr" and "d_char" are used for MORE than "visual" stuff.
272  *
273  * Note that "x_attr" and "x_char" are used ONLY for "visual" stuff.
274  *
275  * Note that "cur_num" (and "max_num") represent the number of monsters
276  * of the given race currently on (and allowed on) the current level.
277  * This information yields the "dead" flag for Unique monsters.
278  *
279  * Note that "max_num" is reset when a new player is created.
280  * Note that "cur_num" is reset when a new level is created.
281  *
282  * Note that several of these fields, related to "recall", can be
283  * scrapped if space becomes an issue, resulting in less "complete"
284  * monster recall (no knowledge of spells, etc).  All of the "recall"
285  * fields have a special prefix to aid in searching for them.
286  */
287
288
289 typedef struct monster_race monster_race;
290
291 struct monster_race
292 {
293         STR_OFFSET name;        /*!< 名前データのオフセット(日本語) /  Name offset(Japanese) */
294 #ifdef JP
295         STR_OFFSET E_name;              /*!< 名前データのオフセット(英語) /  Name offset(English) */
296 #endif
297         STR_OFFSET text;                /*!< 思い出テキストのオフセット / Lore text offset */
298
299         DICE_NUMBER hdice;              /*!< HPのダイス数 / Creatures hit dice count */
300         DICE_SID hside;                 /*!< HPのダイス面数 / Creatures hit dice sides */
301
302         ARMOUR_CLASS ac;                /*!< アーマークラス / Armour Class */
303
304         s16b sleep;                             /*!< 睡眠値 / Inactive counter (base) */
305         byte aaf;                               /*!< 感知範囲(1-100スクエア) / Area affect radius (1-100) */
306         SPEED speed;                            /*!< 加速(110で+0) / Speed (normally 110) */
307
308         EXP mexp;                               /*!< 殺害時基本経験値 / Exp value for kill */
309
310         s16b extra;                             /*!< 未使用 /  Unused (for now) */
311
312         byte freq_spell;                /*!< 魔法&特殊能力仕様頻度(1/n) /  Spell frequency */
313
314         BIT_FLAGS flags1;                       /* Flags 1 (general) */
315         BIT_FLAGS flags2;                       /* Flags 2 (abilities) */
316         BIT_FLAGS flags3;                       /* Flags 3 (race/resist) */
317         BIT_FLAGS flags4;                       /* Flags 4 (inate/breath) */
318         BIT_FLAGS flags7;                       /* Flags 7 (movement related abilities) */
319         BIT_FLAGS flags8;                       /* Flags 8 (wilderness info) */
320         BIT_FLAGS flags9;                       /* Flags 9 (drops info) */
321         BIT_FLAGS flagsr;                       /* Flags R (resistances info) */
322
323         BIT_FLAGS a_ability_flags1;     /* Activate Ability Flags 5 (normal spells) */
324         BIT_FLAGS a_ability_flags2;     /* Activate Ability Flags 6 (special spells) */
325         BIT_FLAGS a_ability_flags3;     /* Activate Ability Flags 7 (implementing) */
326         BIT_FLAGS a_ability_flags4;     /* Activate Ability Flags 8 (implementing) */
327
328         monster_blow blow[4];   /* Up to four blows per round */
329         MONRACE_IDX reinforce_id[6];
330         DICE_NUMBER reinforce_dd[6];
331         DICE_SID reinforce_ds[6];
332
333         ARTIFACT_IDX artifact_id[4];    /* 特定アーティファクトドロップID */
334         RARITY artifact_rarity[4];      /* 特定アーティファクトレア度 */
335         PERCENTAGE artifact_percent[4]; /* 特定アーティファクトドロップ率 */
336
337         PERCENTAGE arena_ratio;         /* アリーナの評価修正値(%基準 / 0=100%) / Arena */
338
339         MONRACE_IDX next_r_idx;
340         EXP next_exp;
341
342         DEPTH level;                    /* Level of creature */
343         RARITY rarity;                  /* Rarity of creature */
344
345
346         SYMBOL_COLOR d_attr;            /* Default monster attribute */
347         SYMBOL_CODE d_char;                     /* Default monster character */
348
349
350         SYMBOL_COLOR x_attr;            /* Desired monster attribute */
351         SYMBOL_CODE x_char;                     /* Desired monster character */
352
353
354         byte max_num;                   /* Maximum population allowed per level */
355
356         byte cur_num;                   /* Monster population on current level */
357
358         s16b floor_id;          /* Location of unique monster */
359
360
361         s16b r_sights;                  /* Count sightings of this monster */
362         s16b r_deaths;                  /* Count deaths from this monster */
363
364         s16b r_pkills;                  /* Count visible monsters killed in this life */
365         s16b r_akills;                  /* Count all monsters killed in this life */
366         s16b r_tkills;                  /* Count monsters killed in all lives */
367
368         byte r_wake;                    /* Number of times woken up (?) */
369         byte r_ignore;                  /* Number of times ignored (?) */
370
371         byte r_xtra1;                   /* Something (unused) */
372         byte r_xtra2;                   /* Something (unused) */
373
374         byte r_drop_gold;               /* Max number of gold dropped at once */
375         byte r_drop_item;               /* Max number of item dropped at once */
376
377         byte r_cast_spell;              /* Max number of other spells seen */
378
379         byte r_blows[4];                /* Number of times each blow type was seen */
380
381         u32b r_flags1;                  /* Observed racial flags */
382         u32b r_flags2;                  /* Observed racial flags */
383         u32b r_flags3;                  /* Observed racial flags */
384         u32b r_flags4;                  /* Observed racial flags */
385         u32b r_flags5;                  /* Observed racial flags */
386         u32b r_flags6;                  /* Observed racial flags */
387         /* u32b r_flags7; */    /* Observed racial flags */
388         u32b r_flagsr;                  /* Observed racial resistance flags */
389 };
390
391
392
393 /*
394  * Information about "vault generation"
395  */
396
397 typedef struct vault_type vault_type;
398
399 struct vault_type
400 {
401         STR_OFFSET name;        /* Name (offset) */
402         STR_OFFSET text;        /* Text (offset) */
403
404         byte typ;                       /* Vault type */
405         byte rat;                       /* Vault rating */
406         POSITION hgt;           /* Vault height */
407         POSITION wid;           /* Vault width */
408 };
409
410
411 /*
412  * Information about "skill"
413  */
414
415 typedef struct skill_table skill_table;
416
417 struct skill_table
418 {
419         SUB_EXP w_start[5][64];   /* start weapon exp */
420         SUB_EXP w_max[5][64];        /* max weapon exp */
421         SUB_EXP s_start[10];      /* start skill */
422         SUB_EXP s_max[10];           /* max skill */
423 };
424
425
426 /*
427  * A single "grid" in a Cave
428  *
429  * Note that several aspects of the code restrict the actual cave
430  * to a max size of 256 by 256.  In partcular, locations are often
431  * saved as bytes, limiting each coordinate to the 0-255 range.
432  *
433  * The "o_idx" and "m_idx" fields are very interesting.  There are
434  * many places in the code where we need quick access to the actual
435  * monster or object(s) in a given cave grid.  The easiest way to
436  * do this is to simply keep the index of the monster and object
437  * (if any) with the grid, but this takes 198*66*4 bytes of memory.
438  * Several other methods come to mind, which require only half this
439  * amound of memory, but they all seem rather complicated, and would
440  * probably add enough code that the savings would be lost.  So for
441  * these reasons, we simply store an index into the "o_list" and
442  * "m_list" arrays, using "zero" when no monster/object is present.
443  *
444  * Note that "o_idx" is the index of the top object in a stack of
445  * objects, using the "next_o_idx" field of objects (see below) to
446  * create the singly linked list of objects.  If "o_idx" is zero
447  * then there are no objects in the grid.
448  *
449  * Note the special fields for the "MONSTER_FLOW" code.
450  */
451
452 typedef struct cave_type cave_type;
453
454 struct cave_type
455 {
456         u16b info;              /* Hack -- cave flags */
457
458         IDX feat;               /* Hack -- feature type */
459         IDX o_idx;              /* Object in this grid */
460         MONSTER_IDX m_idx;              /* Monster in this grid */
461
462         s16b special;   /* Special cave info */
463
464         s16b mimic;             /* Feature to mimic */
465
466         byte cost;              /* Hack -- cost of flowing */
467         byte dist;              /* Hack -- distance from player */
468         byte when;              /* Hack -- when cost was computed */
469 };
470
471
472
473 /*
474  * Simple structure to hold a map location
475  */
476 typedef struct coord coord;
477
478 struct coord
479 {
480         POSITION y;
481         POSITION x;
482 };
483
484
485
486 /*
487  * Object information, for a specific object.
488  *
489  * Note that a "discount" on an item is permanent and never goes away.
490  *
491  * Note that inscriptions are now handled via the "quark_str()" function
492  * applied to the "note" field, which will return NULL if "note" is zero.
493  *
494  * Note that "object" records are "copied" on a fairly regular basis,
495  * and care must be taken when handling such objects.
496  *
497  * Note that "object flags" must now be derived from the object kind,
498  * the artifact and ego-item indexes, and the two "xtra" fields.
499  *
500  * Each cave grid points to one (or zero) objects via the "o_idx"
501  * field (above).  Each object then points to one (or zero) objects
502  * via the "next_o_idx" field, forming a singly linked list, which
503  * in game terms, represents a "stack" of objects in the same grid.
504  *
505  * Each monster points to one (or zero) objects via the "hold_o_idx"
506  * field (below).  Each object then points to one (or zero) objects
507  * via the "next_o_idx" field, forming a singly linked list, which
508  * in game terms, represents a pile of objects held by the monster.
509  *
510  * The "held_m_idx" field is used to indicate which monster, if any,
511  * is holding the object.  Objects being held have "ix=0" and "iy=0".
512  */
513
514 typedef struct object_type object_type;
515
516 struct object_type
517 {
518         IDX k_idx;                      /* Kind index (zero if "dead") */
519
520         POSITION iy;                    /* Y-position on map, or zero */
521         POSITION ix;                    /* X-position on map, or zero */
522
523         OBJECT_TYPE_VALUE tval;                 /* Item type (from kind) */
524         OBJECT_SUBTYPE_VALUE sval;                      /* Item sub-type (from kind) */
525
526         PARAMETER_VALUE pval;                   /* Item extra-parameter */
527
528         DISCOUNT_RATE discount;         /* Discount (if any) */
529
530         ITEM_NUMBER number;     /* Number of items */
531
532         WEIGHT weight;          /* Item weight */
533
534         IDX name1;                      /* Artifact type, if any */
535         IDX name2;                      /* Ego-Item type, if any */
536
537         XTRA8 xtra1;                    /* Extra info type (now unused) */
538         XTRA8 xtra2;                    /* Extra info activation index */
539         XTRA8 xtra3;                    /* Extra info for weaponsmith */
540         XTRA16 xtra4;                   /* Extra info fuel or captured monster's current HP */
541         XTRA16 xtra5;                   /* Extra info captured monster's max HP */
542
543         HIT_PROB to_h;                  /* Plusses to hit */
544         HIT_POINT to_d;                 /* Plusses to damage */
545         ARMOUR_CLASS to_a;                      /* Plusses to AC */
546
547         ARMOUR_CLASS ac;                        /* Normal AC */
548
549         DICE_NUMBER dd;
550         DICE_SID ds;            /* Damage dice/sides */
551
552         TIME_EFFECT timeout;    /* Timeout Counter */
553
554         byte ident;                     /* Special flags  */
555
556         byte marked;            /* Object is marked */
557
558         u16b inscription;       /* Inscription index */
559         u16b art_name;      /* Artifact name (random artifacts) */
560
561         byte feeling;          /* Game generated inscription number (eg, pseudo-id) */
562
563         BIT_FLAGS art_flags[TR_FLAG_SIZE];        /* Extra Flags for ego and artifacts */
564         BIT_FLAGS curse_flags;        /* Flags for curse */
565
566         IDX next_o_idx; /* Next object in stack (if any) */
567         IDX held_m_idx; /* Monster holding us (if any) */
568 };
569
570
571
572 /*
573  * Monster information, for a specific monster.
574  *
575  * Note: fy, fx constrain dungeon size to 256x256
576  *
577  * The "hold_o_idx" field points to the first object of a stack
578  * of objects (if any) being carried by the monster (see above).
579  */
580
581 typedef struct monster_type monster_type;
582
583 struct monster_type
584 {
585         MONRACE_IDX r_idx;              /* Monster race index */
586         IDX ap_r_idx;           /* Monster race appearance index */
587         byte sub_align;         /* Sub-alignment for a neutral monster */
588
589         POSITION fy;            /* Y location on map */
590         POSITION fx;            /* X location on map */
591
592         HIT_POINT hp;           /* Current Hit points */
593         HIT_POINT maxhp;                /* Max Hit points */
594         HIT_POINT max_maxhp;            /* Max Max Hit points */
595         u32b dealt_damage;              /* Sum of damages dealt by player */
596
597         TIME_EFFECT mtimed[MAX_MTIMED]; /* Timed status counter */
598
599         SPEED mspeed;           /* Monster "speed" */
600         ACTION_ENERGY energy_need;      /* Monster "energy" */
601
602         POSITION cdis;          /* Current dis from player */
603
604         BIT_FLAGS8 mflag;       /* Extra monster flags */
605         BIT_FLAGS8 mflag2;      /* Extra monster flags */
606
607         bool ml;                /* Monster is "visible" */
608
609         OBJECT_IDX hold_o_idx;  /* Object being held (if any) */
610
611         POSITION target_y;              /* Can attack !los player */
612         POSITION target_x;              /* Can attack !los player */
613
614         STR_OFFSET nickname;            /* Monster's Nickname */
615
616         EXP exp;
617
618         BIT_FLAGS smart;                        /* Field for "smart_learn" */
619
620         MONSTER_IDX parent_m_idx;
621 };
622
623
624
625
626 /*
627  * An entry for the object/monster allocation functions
628  *
629  * Pass 1 is determined from allocation information
630  * Pass 2 is determined from allocation restriction
631  * Pass 3 is determined from allocation calculation
632  */
633
634 typedef struct alloc_entry alloc_entry;
635
636 struct alloc_entry
637 {
638         IDX index;              /* The actual index */
639
640         DEPTH level;            /* Base dungeon level */
641         PROB prob1;             /* Probability, pass 1 */
642         PROB prob2;             /* Probability, pass 2 */
643         PROB prob3;             /* Probability, pass 3 */
644
645         u16b total;             /* Unused for now */
646 };
647
648
649
650 /*
651  * Available "options"
652  *
653  *      - Address of actual option variable (or NULL)
654  *
655  *      - Normal Value (TRUE or FALSE)
656  *
657  *      - Option Page Number (or zero)
658  *
659  *      - Savefile Set (or zero)
660  *      - Savefile Bit in that set
661  *
662  *      - Textual name (or NULL)
663  *      - Textual description
664  */
665
666 typedef struct option_type option_type;
667
668 struct option_type
669 {
670         bool    *o_var;
671
672         byte    o_norm;
673
674         byte    o_page;
675
676         byte    o_set;
677         byte    o_bit;
678
679         cptr    o_text;
680         cptr    o_desc;
681 };
682
683
684 typedef struct quest_type quest_type;
685
686 /*!
687  * @struct quest_type
688  * @brief クエスト情報の構造体 / Structure for the "quests".
689  */
690
691 struct quest_type
692 {
693         s16b status;            /*!< クエストの進行ステータス / Is the quest taken, completed, finished? */
694
695         s16b type;              /*!< クエストの種別 / The quest type */
696
697         char name[60];          /*!< クエスト名 / Quest name */
698         DEPTH level;            /*!< 処理階層 / Dungeon level */
699         MONRACE_IDX r_idx;      /*!< クエスト対象のモンスターID / Monster race */
700
701         MONSTER_NUMBER cur_num; /*!< 撃破したモンスターの数 / Number killed */
702         MONSTER_NUMBER max_num; /*!< 求められるモンスターの撃破数 / Number required */
703
704         IDX k_idx;              /*!< クエスト対象のアイテムID / object index */
705         MONSTER_NUMBER num_mon; /*!< QUEST_TYPE_KILL_NUMBER時の目標撃破数 number of monsters on level */
706
707         byte flags;             /*!< クエストに関するフラグビット / quest flags */
708         byte dungeon;           /*!< クエスト対象のダンジョンID / quest dungeon */
709
710         byte complev;           /*!< クリア時プレイヤーレベル / player level (complete) */
711         u32b comptime;          /*!< クリア時ゲーム時間 /  quest clear time*/
712 };
713
714
715 /*
716  * A store owner
717  */
718 typedef struct owner_type owner_type;
719
720 struct owner_type
721 {
722         cptr owner_name;        /* Name */
723
724         s32b max_cost;          /* Purse limit */
725
726         byte max_inflate;       /* Inflation (max) */
727         byte min_inflate;       /* Inflation (min) */
728
729         byte haggle_per;        /* Haggle unit */
730
731         byte insult_max;        /* Insult limit */
732
733         byte owner_race;        /* Owner race */
734 };
735
736
737
738
739 /*
740  * A store, with an owner, various state flags, a current stock
741  * of items, and a table of items that are often purchased.
742  */
743 typedef struct store_type store_type;
744
745 struct store_type
746 {
747         byte type;                              /* Store type */
748
749         byte owner;                             /* Owner index */
750         byte extra;                             /* Unused for now */
751
752         s16b insult_cur;                /* Insult counter */
753
754         s16b good_buy;                  /* Number of "good" buys */
755         s16b bad_buy;                   /* Number of "bad" buys */
756
757         s32b store_open;                /* Closed until this turn */
758
759         s32b last_visit;                /* Last visited on this turn */
760
761         s16b table_num;                 /* Table -- Number of entries */
762         s16b table_size;                /* Table -- Total Size of Array */
763         s16b *table;                    /* Table -- Legal item kinds */
764
765         s16b stock_num;                 /* Stock -- Number of entries */
766         s16b stock_size;                /* Stock -- Total Size of Array */
767         object_type *stock;             /* Stock -- Actual stock items */
768 };
769
770
771 /*
772  * The "name" of spell 'N' is stored as spell_names[X][N],
773  * where X is 0 for mage-spells and 1 for priest-spells.
774  */
775 typedef struct magic_type magic_type;
776
777 struct magic_type
778 {
779         PLAYER_LEVEL slevel;    /* Required level (to learn) */
780         MANA_POINT smana;               /* Required mana (to cast) */
781         PERCENTAGE sfail;               /* Minimum chance of failure */
782         EXP sexp;                               /* Encoded experience bonus */
783 };
784
785
786 /*
787  * Information about the player's "magic"
788  *
789  * Note that a player with a "spell_book" of "zero" is illiterate.
790  */
791
792 typedef struct player_magic player_magic;
793
794 struct player_magic
795 {
796         OBJECT_TYPE_VALUE spell_book; /* Tval of spell books (if any) */
797         int spell_xtra;         /* Something for later */
798
799         int spell_stat;         /* Stat for spells (if any)  */
800         int spell_type;         /* Spell type (mage/priest) */
801
802         int spell_first;                /* Level of first spell */
803         int spell_weight;               /* Weight that hurts spells */
804
805         magic_type info[MAX_MAGIC][32];    /* The available spells */
806 };
807
808
809
810 /*
811  * Player sex info
812  */
813
814 typedef struct player_sex player_sex;
815
816 struct player_sex
817 {
818         cptr title;                     /* Type of sex */
819         cptr winner;            /* Name of winner */
820 #ifdef JP
821         cptr E_title;           /* 英語性別 */
822         cptr E_winner;          /* 英語性別 */
823 #endif
824 };
825
826
827 /*
828  * Player racial info
829  */
830
831 typedef struct player_race player_race;
832
833 struct player_race
834 {
835         cptr title;                     /* Type of race */
836
837 #ifdef JP
838         cptr E_title;           /* 英語種族 */
839 #endif
840         s16b r_adj[6];          /* Racial stat bonuses */
841
842         s16b r_dis;                     /* disarming */
843         s16b r_dev;                     /* magic devices */
844         s16b r_sav;                     /* saving throw */
845         s16b r_stl;                     /* stealth */
846         s16b r_srh;                     /* search ability */
847         s16b r_fos;                     /* search frequency */
848         s16b r_thn;                     /* combat (normal) */
849         s16b r_thb;                     /* combat (shooting) */
850
851         byte r_mhp;                     /* Race hit-dice modifier */
852         byte r_exp;                     /* Race experience factor */
853
854         byte b_age;                     /* base age */
855         byte m_age;                     /* mod age */
856
857         byte m_b_ht;            /* base height (males) */
858         byte m_m_ht;            /* mod height (males) */
859         byte m_b_wt;            /* base weight (males) */
860         byte m_m_wt;            /* mod weight (males) */
861
862         byte f_b_ht;            /* base height (females) */
863         byte f_m_ht;            /* mod height (females)   */
864         byte f_b_wt;            /* base weight (females) */
865         byte f_m_wt;            /* mod weight (females) */
866
867         byte infra;                     /* Infra-vision range */
868
869         u32b choice;        /* Legal class choices */
870 /*    byte choice_xtra;   */
871 };
872
873
874 /*
875  * Player class info
876  */
877
878 typedef struct player_class player_class;
879
880 struct player_class
881 {
882         cptr title;                     /* Type of class */
883
884 #ifdef JP
885         cptr E_title;           /* 英語職業 */
886 #endif
887         s16b c_adj[6];          /* Class stat modifier */
888
889         s16b c_dis;                     /* class disarming */
890         s16b c_dev;                     /* class magic devices */
891         s16b c_sav;                     /* class saving throws */
892         s16b c_stl;                     /* class stealth */
893         s16b c_srh;                     /* class searching ability */
894         s16b c_fos;                     /* class searching frequency */
895         s16b c_thn;                     /* class to hit (normal) */
896         s16b c_thb;                     /* class to hit (bows) */
897
898         s16b x_dis;                     /* extra disarming */
899         s16b x_dev;                     /* extra magic devices */
900         s16b x_sav;                     /* extra saving throws */
901         s16b x_stl;                     /* extra stealth */
902         s16b x_srh;                     /* extra searching ability */
903         s16b x_fos;                     /* extra searching frequency */
904         s16b x_thn;                     /* extra to hit (normal) */
905         s16b x_thb;                     /* extra to hit (bows) */
906
907         s16b c_mhp;                     /* Class hit-dice adjustment */
908         s16b c_exp;                     /* Class experience factor */
909
910         byte pet_upkeep_div; /* Pet upkeep divider */
911 };
912
913
914 typedef struct player_seikaku player_seikaku;
915 struct player_seikaku
916 {
917         cptr title;                     /* Type of seikaku */
918
919 #ifdef JP
920         cptr E_title;           /* 英語性格 */
921 #endif
922
923         s16b a_adj[6];          /* seikaku stat bonuses */
924
925         s16b a_dis;                     /* seikaku disarming */
926         s16b a_dev;                     /* seikaku magic devices */
927         s16b a_sav;                     /* seikaku saving throw */
928         s16b a_stl;                     /* seikaku stealth */
929         s16b a_srh;                     /* seikaku search ability */
930         s16b a_fos;                     /* seikaku search frequency */
931         s16b a_thn;                     /* seikaku combat (normal) */
932         s16b a_thb;                     /* seikaku combat (shooting) */
933
934         s16b a_mhp;                     /* Race hit-dice modifier */
935
936         byte no;                        /* の */
937         byte sex;                       /* seibetu seigen */
938 };
939
940
941 /*
942  * Most of the "player" information goes here.
943  *
944  * This stucture gives us a large collection of player variables.
945  *
946  * This structure contains several "blocks" of information.
947  *   (1) the "permanent" info
948  *   (2) the "variable" info
949  *   (3) the "transient" info
950  *
951  * All of the "permanent" info, and most of the "variable" info,
952  * is saved in the savefile.  The "transient" info is recomputed
953  * whenever anything important changes.
954  */
955
956 typedef struct player_type player_type;
957
958 struct player_type
959 {
960         POSITION oldpy;         /* Previous player location -KMW- */
961         POSITION oldpx;         /* Previous player location -KMW- */
962
963         CHARACTER_IDX psex;                     /* Sex index */
964         CHARACTER_IDX prace;                    /* Race index */
965         CHARACTER_IDX pclass;           /* Class index */
966         CHARACTER_IDX pseikaku;         /* Seikaku index */
967         REALM_IDX realm1;        /* First magic realm */
968         REALM_IDX realm2;        /* Second magic realm */
969         CHARACTER_IDX oops;                     /* Unused */
970
971         DICE_SID hitdie;                /* Hit dice (sides) */
972         u16b expfact;       /* Experience factor
973                              * Note: was byte, causing overflow for Amberite
974                              * characters (such as Amberite Paladins)
975                              */
976
977         s16b age;                       /* Characters age */
978         s16b ht;                        /* Height */
979         s16b wt;                        /* Weight */
980         s16b sc;                        /* Social Class */
981
982         PRICE au;                       /* Current Gold */
983
984         EXP max_max_exp;        /* Max max experience (only to calculate score) */
985         EXP max_exp;            /* Max experience */
986         EXP exp;                        /* Cur experience */
987         u32b exp_frac;          /* Cur exp frac (times 2^16) */
988
989         PLAYER_LEVEL lev;                       /* Level */
990
991         s16b town_num;                  /* Current town number */
992         s16b arena_number;              /* monster number in arena -KMW- */
993         bool inside_arena;              /* Is character inside arena? */
994         QUEST_IDX inside_quest;         /* Inside quest level */
995         bool inside_battle;             /* Is character inside tougijou? */
996
997         POSITION wilderness_x;  /* Coordinates in the wilderness */
998         POSITION wilderness_y;
999         bool wild_mode;
1000
1001         HIT_POINT mhp;                  /* Max hit pts */
1002         HIT_POINT chp;                  /* Cur hit pts */
1003         u32b chp_frac;          /* Cur hit frac (times 2^16) */
1004
1005         MANA_POINT msp;                 /* Max mana pts */
1006         MANA_POINT csp;                 /* Cur mana pts */
1007         u32b csp_frac;          /* Cur mana frac (times 2^16) */
1008
1009         s16b max_plv;           /* Max Player Level */
1010
1011         BASE_STATUS stat_max[6];        /* Current "maximal" stat values */
1012         BASE_STATUS stat_max_max[6];    /* Maximal "maximal" stat values */
1013         BASE_STATUS stat_cur[6];        /* Current "natural" stat values */
1014
1015         s16b learned_spells;
1016         s16b add_spells;
1017
1018         u32b count;
1019
1020         TIME_EFFECT fast;               /* Timed -- Fast */
1021         TIME_EFFECT slow;               /* Timed -- Slow */
1022         TIME_EFFECT blind;              /* Timed -- Blindness */
1023         TIME_EFFECT paralyzed;          /* Timed -- Paralysis */
1024         TIME_EFFECT confused;           /* Timed -- Confusion */
1025         TIME_EFFECT afraid;             /* Timed -- Fear */
1026         TIME_EFFECT image;              /* Timed -- Hallucination */
1027         TIME_EFFECT poisoned;           /* Timed -- Poisoned */
1028         TIME_EFFECT cut;                /* Timed -- Cut */
1029         TIME_EFFECT stun;               /* Timed -- Stun */
1030
1031         TIME_EFFECT protevil;           /* Timed -- Protection */
1032         TIME_EFFECT invuln;             /* Timed -- Invulnerable */
1033         TIME_EFFECT ult_res;            /* Timed -- Ultimate Resistance */
1034         TIME_EFFECT hero;               /* Timed -- Heroism */
1035         TIME_EFFECT shero;              /* Timed -- Super Heroism */
1036         TIME_EFFECT shield;             /* Timed -- Shield Spell */
1037         TIME_EFFECT blessed;            /* Timed -- Blessed */
1038         TIME_EFFECT tim_invis;          /* Timed -- See Invisible */
1039         TIME_EFFECT tim_infra;          /* Timed -- Infra Vision */
1040         TIME_EFFECT tsuyoshi;           /* Timed -- Tsuyoshi Special */
1041         TIME_EFFECT ele_attack; /* Timed -- Elemental Attack */
1042         TIME_EFFECT ele_immune; /* Timed -- Elemental Immune */
1043
1044         TIME_EFFECT oppose_acid;        /* Timed -- oppose acid */
1045         TIME_EFFECT oppose_elec;        /* Timed -- oppose lightning */
1046         TIME_EFFECT oppose_fire;        /* Timed -- oppose heat */
1047         TIME_EFFECT oppose_cold;        /* Timed -- oppose cold */
1048         TIME_EFFECT oppose_pois;        /* Timed -- oppose poison */
1049
1050         TIME_EFFECT tim_esp;       /* Timed ESP */
1051         TIME_EFFECT wraith_form;   /* Timed wraithform */
1052
1053         TIME_EFFECT resist_magic;  /* Timed Resist Magic (later) */
1054         TIME_EFFECT tim_regen;
1055         TIME_EFFECT kabenuke;
1056         TIME_EFFECT tim_stealth;
1057         TIME_EFFECT tim_levitation;
1058         TIME_EFFECT tim_sh_touki;
1059         TIME_EFFECT lightspeed;
1060         TIME_EFFECT tsubureru;
1061         TIME_EFFECT magicdef;
1062         TIME_EFFECT tim_res_nether;     /* Timed -- Nether resistance */
1063         TIME_EFFECT tim_res_time;       /* Timed -- Time resistance */
1064         IDX mimic_form;
1065         TIME_EFFECT tim_mimic;
1066         TIME_EFFECT tim_sh_fire;
1067         TIME_EFFECT tim_sh_holy;
1068         TIME_EFFECT tim_eyeeye;
1069
1070         /* for mirror master */
1071         TIME_EFFECT tim_reflect;       /* Timed -- Reflect */
1072         TIME_EFFECT multishadow;       /* Timed -- Multi-shadow */
1073         TIME_EFFECT dustrobe;          /* Timed -- Robe of dust */
1074
1075         s16b chaos_patron;
1076         BIT_FLAGS muta1;
1077         BIT_FLAGS muta2;
1078         BIT_FLAGS muta3;
1079
1080         s16b virtues[8];
1081         s16b vir_types[8];
1082
1083         TIME_EFFECT word_recall;          /* Word of recall counter */
1084         TIME_EFFECT alter_reality;        /* Alter reality counter */
1085         DUNGEON_IDX recall_dungeon;      /* Dungeon set to be recalled */
1086
1087         ENERGY energy_need;       /* Energy needed for next move */
1088         ENERGY enchant_energy_need;       /* Energy needed for next upkeep effect        */
1089
1090         FEED food;                /* Current nutrition */
1091
1092         BIT_FLAGS special_attack;         /* Special attack capacity -LM- */
1093         BIT_FLAGS special_defense;        /* Special block capacity -LM- */
1094         byte action;              /* Currently action */
1095
1096         BIT_FLAGS spell_learned1;         /* bit mask of spells learned */
1097         BIT_FLAGS spell_learned2;         /* bit mask of spells learned */
1098         BIT_FLAGS spell_worked1;          /* bit mask of spells tried and worked */
1099         BIT_FLAGS spell_worked2;          /* bit mask of spells tried and worked */
1100         BIT_FLAGS spell_forgotten1;       /* bit mask of spells learned but forgotten */
1101         BIT_FLAGS spell_forgotten2;       /* bit mask of spells learned but forgotten */
1102         SPELL_IDX spell_order[64];  /* order spells learned/remembered/forgotten */
1103
1104         SUB_EXP spell_exp[64];        /* Proficiency of spells */
1105         SUB_EXP weapon_exp[5][64];    /* Proficiency of weapons */
1106         SUB_EXP skill_exp[GINOU_MAX]; /* Proficiency of misc. skill */
1107
1108         MAGIC_NUM1 magic_num1[108];     /*!< Array for non-spellbook type magic */
1109         MAGIC_NUM2 magic_num2[108];     /*!< Flags for non-spellbook type magics */
1110
1111         SPELL_IDX mane_spell[MAX_MANE];
1112         HIT_POINT mane_dam[MAX_MANE];
1113         s16b mane_num;
1114
1115         s16b concent;      /* Sniper's concentration level */
1116
1117         HIT_POINT player_hp[PY_MAX_LEVEL];
1118         char died_from[80];       /* What killed the player */
1119         cptr last_message;        /* Last message on death or retirement */
1120         char history[4][60];      /* Textual "history" for the Player */
1121
1122         u16b total_winner;        /* Total winner */
1123         u16b panic_save;          /* Panic save */
1124
1125         u16b noscore;             /* Cheating flags */
1126
1127         bool wait_report_score;   /* Waiting to report score */
1128         bool is_dead;             /* Player is dead */
1129
1130         bool wizard;              /* Player is in wizard mode */
1131
1132         MONSTER_IDX riding;              /* Riding on a monster of this index */
1133         byte knowledge;           /* Knowledge about yourself */
1134         BIT_FLAGS visit;               /* Visited towns */
1135
1136         byte start_race;          /* Race at birth */
1137         BIT_FLAGS old_race1;           /* Record of race changes */
1138         BIT_FLAGS old_race2;           /* Record of race changes */
1139         s16b old_realm;           /* Record of realm changes */
1140
1141         s16b pet_follow_distance; /* Length of the imaginary "leash" for pets */
1142         s16b pet_extra_flags;     /* Various flags for controling pets */
1143
1144         s16b today_mon;           /* Wanted monster */
1145
1146         bool dtrap;               /* Whether you are on trap-safe grids */
1147         s16b floor_id;            /* Current floor location */ 
1148
1149         bool autopick_autoregister; /* auto register is in-use or not */
1150
1151         byte feeling;           /* Most recent dungeon feeling */
1152         s32b feeling_turn;      /* The turn of the last dungeon feeling */
1153
1154
1155         /*** Temporary fields ***/
1156
1157         bool playing;                   /* True if player is playing */
1158         bool leaving;                   /* True if player is leaving */
1159
1160         byte exit_bldg;                 /* Goal obtained in arena? -KMW- */
1161
1162         bool leaving_dungeon;   /* True if player is leaving the dungeon */
1163         bool teleport_town;
1164         bool enter_dungeon;     /* Just enter the dungeon */
1165
1166         IDX health_who; /* Health bar trackee */
1167
1168         IDX monster_race_idx;   /* Monster race trackee */
1169
1170         IDX object_kind_idx;    /* Object kind trackee */
1171
1172         s16b new_spells;        /* Number of spells available */
1173         s16b old_spells;
1174
1175         s16b old_food_aux;      /* Old value of food */
1176
1177         bool old_cumber_armor;
1178         bool old_cumber_glove;
1179         bool old_heavy_wield[2];
1180         bool old_heavy_shoot;
1181         bool old_icky_wield[2];
1182         bool old_riding_wield[2];
1183         bool old_riding_ryoute;
1184         bool old_monlite;
1185
1186         s16b old_lite;          /* Old radius of lite (if any) */
1187
1188         bool cumber_armor;      /* Mana draining armor */
1189         bool cumber_glove;      /* Mana draining gloves */
1190         bool heavy_wield[2];    /* Heavy weapon */
1191         bool heavy_shoot;       /* Heavy shooter */
1192         bool icky_wield[2];     /* Icky weapon */
1193         bool riding_wield[2];   /* Riding weapon */
1194         bool riding_ryoute;     /* Riding weapon */
1195         bool monlite;
1196
1197         s16b cur_lite;          /* Radius of lite (if any) */
1198
1199
1200         u32b notice;            /* Special Updates (bit flags) */
1201         u32b update;            /* Pending Updates (bit flags) */
1202         u32b redraw;            /* Normal Redraws (bit flags) */
1203         u32b window;            /* Window Redraws (bit flags) */
1204
1205         s16b stat_use[6];       /* Current modified stats */
1206         s16b stat_top[6];       /* Maximal modified stats */
1207
1208         bool sutemi;
1209         bool counter;
1210
1211         s32b align;                             /* Good/evil/neutral */
1212         POSITION run_py;
1213         POSITION run_px;
1214
1215
1216         /*** Extracted fields ***/
1217
1218         u32b total_weight;      /* Total weight being carried */
1219
1220         s16b stat_add[6];       /* Modifiers to stat values */
1221         s16b stat_ind[6];       /* Indexes into stat tables */
1222
1223         bool immune_acid;       /* Immunity to acid */
1224         bool immune_elec;       /* Immunity to lightning */
1225         bool immune_fire;       /* Immunity to fire */
1226         bool immune_cold;       /* Immunity to cold */
1227
1228         bool resist_acid;       /* Resist acid */
1229         bool resist_elec;       /* Resist lightning */
1230         bool resist_fire;       /* Resist fire */
1231         bool resist_cold;       /* Resist cold */
1232         bool resist_pois;       /* Resist poison */
1233
1234         bool resist_conf;       /* Resist confusion */
1235         bool resist_sound;      /* Resist sound */
1236         bool resist_lite;       /* Resist light */
1237         bool resist_dark;       /* Resist darkness */
1238         bool resist_chaos;      /* Resist chaos */
1239         bool resist_disen;      /* Resist disenchant */
1240         bool resist_shard;      /* Resist shards */
1241         bool resist_nexus;      /* Resist nexus */
1242         bool resist_blind;      /* Resist blindness */
1243         bool resist_neth;       /* Resist nether */
1244         bool resist_fear;       /* Resist fear */
1245         bool resist_time;       /* Resist time */
1246
1247         bool reflect;       /* Reflect 'bolt' attacks */
1248         bool sh_fire;       /* Fiery 'immolation' effect */
1249         bool sh_elec;       /* Electric 'immolation' effect */
1250         bool sh_cold;       /* Cold 'immolation' effect */
1251
1252         bool anti_magic;    /* Anti-magic */
1253         bool anti_tele;     /* Prevent teleportation */
1254
1255         bool sustain_str;       /* Keep strength */
1256         bool sustain_int;       /* Keep intelligence */
1257         bool sustain_wis;       /* Keep wisdom */
1258         bool sustain_dex;       /* Keep dexterity */
1259         bool sustain_con;       /* Keep constitution */
1260         bool sustain_chr;       /* Keep charisma */
1261
1262         u32b cursed;            /* Player is cursed */
1263
1264         bool can_swim;          /* No damage falling */
1265         bool levitation;                /* No damage falling */
1266         bool lite;              /* Permanent light */
1267         bool free_act;          /* Never paralyzed */
1268         bool see_inv;           /* Can see invisible */
1269         bool regenerate;        /* Regenerate hit pts */
1270         bool hold_exp;          /* Resist exp draining */
1271
1272         bool telepathy;         /* Telepathy */
1273         bool esp_animal;
1274         bool esp_undead;
1275         bool esp_demon;
1276         bool esp_orc;
1277         bool esp_troll;
1278         bool esp_giant;
1279         bool esp_dragon;
1280         bool esp_human;
1281         bool esp_evil;
1282         bool esp_good;
1283         bool esp_nonliving;
1284         bool esp_unique;
1285
1286         bool slow_digest;       /* Slower digestion */
1287         bool bless_blade;       /* Blessed blade */
1288         bool xtra_might;        /* Extra might bow */
1289         bool impact[2];         /* Earthquake blows */
1290         bool pass_wall;     /* Permanent wraithform */
1291         bool kill_wall;
1292         bool dec_mana;
1293         bool easy_spell;
1294         bool heavy_spell;
1295         bool warning;
1296         bool mighty_throw;
1297         bool see_nocto;         /* Noctovision */
1298
1299         s16b to_dd[2]; /* Extra dice/sides */
1300         s16b to_ds[2];
1301
1302         s16b dis_to_h[2];       /* Known bonus to hit (wield) */
1303         s16b dis_to_h_b;        /* Known bonus to hit (bow) */
1304         s16b dis_to_d[2];       /* Known bonus to dam (wield) */
1305         s16b dis_to_a;          /* Known bonus to ac */
1306
1307         s16b dis_ac;            /* Known base ac */
1308
1309         s16b to_h[2];                   /* Bonus to hit (wield) */
1310         s16b to_h_b;                    /* Bonus to hit (bow) */
1311         s16b to_h_m;                    /* Bonus to hit (misc) */
1312         s16b to_d[2];                   /* Bonus to dam (wield) */
1313         s16b to_d_m;                    /* Bonus to dam (misc) */
1314         s16b to_a;                      /* Bonus to ac */
1315
1316         s16b to_m_chance;               /* Minusses to cast chance */
1317
1318         bool ryoute;
1319         bool migite;
1320         bool hidarite;
1321         bool no_flowed;
1322
1323         s16b ac;                        /* Base ac */
1324
1325         s16b see_infra;         /* Infravision range */
1326
1327         s16b skill_dis;         /* Skill: Disarming */
1328         s16b skill_dev;         /* Skill: Magic Devices */
1329         s16b skill_sav;         /* Skill: Saving throw */
1330         s16b skill_stl;         /* Skill: Stealth factor */
1331         s16b skill_srh;         /* Skill: Searching ability */
1332         s16b skill_fos;         /* Skill: Searching frequency */
1333         s16b skill_thn;         /* Skill: To hit (normal) */
1334         s16b skill_thb;         /* Skill: To hit (shooting) */
1335         s16b skill_tht;         /* Skill: To hit (throwing) */
1336         s16b skill_dig;         /* Skill: Digging */
1337
1338         s16b num_blow[2];       /* Number of blows */
1339         s16b num_fire;          /* Number of shots */
1340
1341         byte tval_xtra;         /* Correct xtra tval */
1342
1343         byte tval_ammo;         /* Correct ammo tval */
1344
1345         byte pspeed;            /* Current speed */
1346
1347         s16b energy_use;        /* Energy use this turn */
1348
1349         POSITION y;     /* Player location in dungeon */
1350         POSITION x;     /* Player location in dungeon */
1351         char name[32]; /* Current player's character name */
1352 };
1353
1354
1355 /*
1356  * A structure to hold "rolled" information
1357  */
1358 typedef struct birther birther;
1359
1360 struct birther
1361 {
1362         byte psex;         /* Sex index */
1363         byte prace;        /* Race index */
1364         byte pclass;       /* Class index */
1365         byte pseikaku;     /* Seikaku index */
1366         REALM_IDX realm1;       /* First magic realm */
1367         REALM_IDX realm2;       /* Second magic realm */
1368
1369         s16b age;
1370         s16b ht;
1371         s16b wt;
1372         s16b sc;
1373
1374         s32b au;
1375
1376         BASE_STATUS stat_max[6];        /* Current "maximal" stat values */
1377         BASE_STATUS stat_max_max[6];    /* Maximal "maximal" stat values */
1378         HIT_POINT player_hp[PY_MAX_LEVEL];
1379
1380         s16b chaos_patron;
1381
1382         s16b vir_types[8];
1383
1384         char history[4][60];
1385
1386         bool quick_ok;
1387 };
1388
1389
1390 /* For Monk martial arts */
1391
1392 typedef struct martial_arts martial_arts;
1393
1394 struct martial_arts
1395 {
1396         cptr    desc;       /* A verbose attack description */
1397         int     min_level;  /* Minimum level to use */
1398         int     chance;     /* Chance of 'success' */
1399         int     dd;         /* Damage dice */
1400         int     ds;         /* Damage sides */
1401         int     effect;     /* Special effects */
1402 };
1403
1404 typedef struct kamae kamae;
1405
1406 struct kamae
1407 {
1408         cptr    desc;       /* A verbose kamae description */
1409         int     min_level;  /* Minimum level to use */
1410         cptr    info;
1411 };
1412
1413 /* Mindcrafters */
1414 typedef struct mind_type mind_type;
1415 struct mind_type
1416 {
1417         int     min_lev;
1418         int     mana_cost;
1419         int     fail;
1420         cptr    name;
1421 };
1422
1423 typedef struct mind_power mind_power;
1424 struct mind_power
1425 {
1426         mind_type info[MAX_MIND_POWERS];
1427 };
1428
1429 /* Imitator */
1430
1431 typedef struct monster_power monster_power;
1432 struct monster_power
1433 {
1434         int     level;
1435         int     smana;
1436         int     fail;
1437         int     manedam;
1438         int     manefail;
1439         int     use_stat;
1440         cptr    name;
1441 };
1442
1443
1444 /*
1445  * A structure to describe a building.
1446  * From Kamband
1447  */
1448 typedef struct building_type building_type;
1449
1450 struct building_type
1451 {
1452         char name[20];                  /* proprietor name */
1453         char owner_name[20];            /* proprietor name */
1454         char owner_race[20];            /* proprietor race */
1455
1456         char act_names[8][30];          /* action names */
1457         s32b member_costs[8];           /* Costs for class members of building */
1458         s32b other_costs[8];                /* Costs for nonguild members */
1459         char letters[8];                /* action letters */
1460         s16b actions[8];                /* action codes */
1461         s16b action_restr[8];           /* action restrictions */
1462
1463         s16b member_class[MAX_CLASS];   /* which classes are part of guild */
1464         s16b member_race[MAX_RACES];    /* which classes are part of guild */
1465         s16b member_realm[MAX_MAGIC+1]; /* which realms are part of guild */
1466 };
1467
1468
1469 /* Border */
1470 typedef struct border_type border_type;
1471 struct border_type
1472 {
1473         s16b north[MAX_WID];
1474         s16b south[MAX_WID];
1475         s16b east[MAX_HGT];
1476         s16b west[MAX_HGT];
1477         s16b north_west;
1478         s16b north_east;
1479         s16b south_west;
1480         s16b south_east;
1481 };
1482
1483
1484 /*
1485  * A structure describing a wilderness area
1486  * with a terrain or a town
1487  */
1488 typedef struct wilderness_type wilderness_type;
1489 struct wilderness_type
1490 {
1491         int         terrain;
1492         int         town;
1493         int         road;
1494         u32b        seed;
1495         DEPTH        level;
1496         byte        entrance;
1497 };
1498
1499
1500 /*
1501  * A structure describing a town with
1502  * stores and buildings
1503  */
1504 typedef struct town_type town_type;
1505 struct town_type
1506 {
1507         char        name[32];
1508         u32b        seed;      /* Seed for RNG */
1509         store_type      *store;    /* The stores [MAX_STORES] */
1510         byte        numstores;
1511 };
1512
1513 /* Dungeons */
1514 typedef struct dun_type dun_type;
1515 struct dun_type
1516 {
1517         byte min_level; /* Minimum level in the dungeon */
1518         byte max_level; /* Maximum dungeon level allowed */
1519
1520         cptr name;      /* The name of the dungeon */
1521 };
1522
1523 /*
1524  * Sort-array element
1525  */
1526 typedef struct tag_type tag_type;
1527
1528 struct tag_type
1529 {
1530         int     tag;
1531         int     index;
1532 };
1533
1534 typedef bool (*monster_hook_type)(MONRACE_IDX r_idx);
1535
1536
1537 /*
1538  * This seems like a pretty standard "typedef"
1539  */
1540 typedef int (*inven_func)(object_type *);
1541
1542
1543 /*
1544  * Semi-Portable High Score List Entry (128 bytes) -- BEN
1545  *
1546  * All fields listed below are null terminated ascii strings.
1547  *
1548  * In addition, the "number" fields are right justified, and
1549  * space padded, to the full available length (minus the "null").
1550  *
1551  * Note that "string comparisons" are thus valid on "pts".
1552  */
1553
1554 typedef struct high_score high_score;
1555
1556 struct high_score
1557 {
1558         char what[8];           /* Version info (string) */
1559
1560         char pts[10];           /* Total Score (number) */
1561
1562         char gold[10];          /* Total Gold (number) */
1563
1564         char turns[10];         /* Turns Taken (number) */
1565
1566         char day[10];           /* Time stamp (string) */
1567
1568         char who[16];           /* Player Name (string) */
1569
1570         char uid[8];            /* Player UID (number) */
1571
1572         char sex[2];            /* Player Sex (string) */
1573         char p_r[3];            /* Player Race (number) */
1574         char p_c[3];            /* Player Class (number) */
1575         char p_a[3];            /* Player Seikaku (number) */
1576
1577         char cur_lev[4];                /* Current Player Level (number) */
1578         char cur_dun[4];                /* Current Dungeon Level (number) */
1579         char max_lev[4];                /* Max Player Level (number) */
1580         char max_dun[4];                /* Max Dungeon Level (number) */
1581
1582         char how[40];           /* Method of death (string) */
1583 };
1584
1585
1586 typedef struct
1587 {
1588         FEAT_IDX feat;    /* Feature tile */
1589         PERCENTAGE percent; /* Chance of type */
1590 }
1591 feat_prob;
1592
1593
1594 /* A structure for the != dungeon types */
1595 typedef struct dungeon_info_type dungeon_info_type;
1596 struct dungeon_info_type {
1597         STR_OFFSET name;                /* Name */
1598         STR_OFFSET text;                /* Description */
1599
1600         POSITION dy;
1601         POSITION dx;
1602
1603         feat_prob floor[DUNGEON_FEAT_PROB_NUM]; /* Floor probability */
1604         feat_prob fill[DUNGEON_FEAT_PROB_NUM];  /* Cave wall probability */
1605         FEAT_IDX outer_wall;                        /* Outer wall tile */
1606         FEAT_IDX inner_wall;                        /* Inner wall tile */
1607         FEAT_IDX stream1;                           /* stream tile */
1608         FEAT_IDX stream2;                           /* stream tile */
1609
1610         DEPTH mindepth;         /* Minimal depth */
1611         DEPTH maxdepth;         /* Maximal depth */
1612         PLAYER_LEVEL min_plev;         /* Minimal plev needed to enter -- it's an anti-cheating mesure */
1613         BIT_FLAGS16 pit;
1614         BIT_FLAGS16 nest;
1615         byte mode;              /* Mode of combinaison of the monster flags */
1616
1617         int min_m_alloc_level;  /* Minimal number of monsters per level */
1618         int max_m_alloc_chance; /* There is a 1/max_m_alloc_chance chance per round of creating a new monster */
1619
1620         BIT_FLAGS flags1;               /* Flags 1 */
1621
1622         BIT_FLAGS mflags1;              /* The monster flags that are allowed */
1623         BIT_FLAGS mflags2;
1624         BIT_FLAGS mflags3;
1625         BIT_FLAGS mflags4;
1626         BIT_FLAGS mflags7;
1627         BIT_FLAGS mflags8;
1628         BIT_FLAGS mflags9;
1629         BIT_FLAGS mflagsr;
1630
1631         BIT_FLAGS m_a_ability_flags1;
1632         BIT_FLAGS m_a_ability_flags2;
1633         BIT_FLAGS m_a_ability_flags3;
1634         BIT_FLAGS m_a_ability_flags4;
1635
1636         char r_char[5];         /* Monster race allowed */
1637         int final_object;       /* The object you'll find at the bottom */
1638         int final_artifact;     /* The artifact you'll find at the bottom */
1639         int final_guardian;     /* The artifact's guardian. If an artifact is specified, then it's NEEDED */
1640
1641         byte special_div;       /* % of monsters affected by the flags/races allowed, to add some variety */
1642         int tunnel_percent;
1643         int obj_great;
1644         int obj_good;
1645 };
1646
1647
1648 /*!
1649  * @struct autopick_type
1650  * @brief 自動拾い/破壊設定データの構造体 / A structure type for entry of auto-picker/destroyer
1651  */
1652 typedef struct {
1653         cptr name;          /*!< 自動拾い/破壊定義の名称一致基準 / Items which have 'name' as part of its name match */
1654         cptr insc;          /*!< 対象となったアイテムに自動で刻む内容 / Items will be auto-inscribed as 'insc' */
1655         u32b flag[2];       /*!< キーワードに関する汎用的な条件フラグ / Misc. keyword to be matched */
1656         byte action;        /*!< 対象のアイテムを拾う/破壊/放置するかの指定フラグ / Auto-pickup or Destroy or Leave items */
1657         byte dice;          /*!< 武器のダイス値基準値 / Weapons which have more than 'dice' dice match */
1658         byte bonus;         /*!< アイテムのボーナス基準値 / Items which have more than 'bonus' magical bonus match */
1659 } autopick_type;
1660
1661
1662 /*
1663  *  A structure type for the saved floor
1664  */
1665 typedef struct 
1666 {
1667         s16b floor_id;        /* No recycle until 65536 IDs are all used */
1668         byte savefile_id;     /* ID for savefile (from 0 to MAX_SAVED_FLOOR) */
1669         DEPTH dun_level;
1670         s32b last_visit;      /* Time count of last visit. 0 for new floor. */
1671         u32b visit_mark;      /* Older has always smaller mark. */
1672         s16b upper_floor_id;  /* a floor connected with level teleportation */
1673         s16b lower_floor_id;  /* a floor connected with level tel. and trap door */
1674 } saved_floor_type;
1675
1676
1677 /*
1678  *  A structure type for terrain template of saving dungeon floor
1679  */
1680 typedef struct
1681 {
1682         u16b info;
1683         s16b feat;
1684         s16b mimic;
1685         s16b special;
1686         u16b occurrence;
1687 } cave_template_type;
1688
1689
1690 /*!
1691  * @struct arena_type
1692  * @brief 闘技場のモンスターエントリー構造体 / A structure type for arena entry
1693  */
1694 typedef struct
1695 {
1696         s16b r_idx; /*!< 闘技場のモンスター種族ID(0ならば表彰式) / Monster (0 means victory prizing) */
1697         byte tval;  /*!< モンスター打倒後に得られるアイテムの大カテゴリID / tval of prize (0 means no prize) */
1698         byte sval;  /*!< モンスター打倒後に得られるアイテムの小カテゴリID / sval of prize */
1699 } arena_type;
1700
1701
1702 /*
1703  * A structure type for doors
1704  */
1705 typedef struct
1706 {
1707         FEAT_IDX open;
1708         FEAT_IDX broken;
1709         FEAT_IDX closed;
1710         FEAT_IDX locked[MAX_LJ_DOORS];
1711         FEAT_IDX num_locked;
1712         FEAT_IDX jammed[MAX_LJ_DOORS];
1713         FEAT_IDX num_jammed;
1714 } door_type;
1715
1716
1717 #ifdef TRAVEL
1718 /*
1719  *  A structure type for travel command
1720  */
1721 typedef struct {
1722         int run; /* Remaining grid number */
1723         int cost[MAX_HGT][MAX_WID];
1724         int x; /* Target X */
1725         int y; /* Target Y */
1726         int dir; /* Running direction */
1727 } travel_type;
1728 #endif
1729
1730 typedef struct {
1731         cptr flag;
1732         byte index;
1733         byte level;
1734         s32b value;
1735         struct {
1736                 int constant;
1737                 int dice;
1738         } timeout;
1739         cptr desc;
1740 } activation_type;
1741
1742 typedef struct {
1743         int flag;
1744         int type;
1745         cptr name;
1746 } dragonbreath_type;