OSDN Git Service

To avoid implying that the path obeys the "angle of incidence equals the angle of...
[hengband/hengband.git] / src / grid.h
1 #pragma once
2
3 /*!
4  * @file grid.h
5  * @brief ダンジョンの生成処理の基幹部分ヘッダーファイル
6  * @date 2014/08/15
7  * @details
8  * Purpose: header file for grid.c, used only in dungeon generation
9  * files (generate.c, rooms.c)
10  * @author
11  * Copyright (c) 1989 James E. Wilson, Robert A. Koeneke
12  * This software may be copied and distributed for educational, research, and
13  * not for profit purposes provided that this copyright and statement are
14  * included in all such copies.
15  */
16
17
18  /*
19   * A single "grid" in a Cave
20   *
21   * Note that several aspects of the code restrict the actual grid
22   * to a max size of 256 by 256.  In partcular, locations are often
23   * saved as bytes, limiting each coordinate to the 0-255 range.
24   *
25   * The "o_idx" and "m_idx" fields are very interesting.  There are
26   * many places in the code where we need quick access to the actual
27   * monster or object(s) in a given grid.  The easiest way to
28   * do this is to simply keep the index of the monster and object
29   * (if any) with the grid, but this takes 198*66*4 bytes of memory.
30   * Several other methods come to mind, which require only half this
31   * amound of memory, but they all seem rather complicated, and would
32   * probably add enough code that the savings would be lost.  So for
33   * these reasons, we simply store an index into the "o_list" and
34   * ">m_list" arrays, using "zero" when no monster/object is present.
35   *
36   * Note that "o_idx" is the index of the top object in a stack of
37   * objects, using the "next_o_idx" field of objects (see below) to
38   * create the singly linked list of objects.  If "o_idx" is zero
39   * then there are no objects in the grid.
40   *
41   * Note the special fields for the "MONSTER_FLOW" code.
42   */
43
44 typedef struct grid_type grid_type;
45
46 struct grid_type
47 {
48         BIT_FLAGS info;         /* Hack -- grid flags */
49
50         FEAT_IDX feat;          /* Hack -- feature type */
51         OBJECT_IDX o_idx;               /* Object in this grid */
52         MONSTER_IDX m_idx;              /* Monster in this grid */
53
54         /*! 地形の特別な情報を保存する / Special grid info
55          * 具体的な使用一覧はクエスト行き階段の移行先クエストID、
56          * 各ダンジョン入口の移行先ダンジョンID、
57          *
58          */
59         s16b special;
60
61         FEAT_IDX mimic;         /* Feature to mimic */
62
63         byte cost;              /* Hack -- cost of flowing */
64         byte dist;              /* Hack -- distance from player */
65         byte when;              /* Hack -- when cost was computed */
66 };
67
68 /*
69  *  A structure type for terrain template of saving dungeon floor
70  */
71 typedef struct
72 {
73         BIT_FLAGS info;
74         FEAT_IDX feat;
75         FEAT_IDX mimic;
76         s16b special;
77         u16b occurrence;
78 } grid_template_type;
79
80 #define feat_locked_door_random(DOOR_TYPE) \
81         (feat_door[(DOOR_TYPE)].num_locked ? \
82          feat_door[(DOOR_TYPE)].locked[randint0(feat_door[(DOOR_TYPE)].num_locked)] : feat_none)
83
84 #define feat_jammed_door_random(DOOR_TYPE) \
85         (feat_door[(DOOR_TYPE)].num_jammed ? \
86          feat_door[(DOOR_TYPE)].jammed[randint0(feat_door[(DOOR_TYPE)].num_jammed)] : feat_none)
87
88 /* Macros */
89 #define set_cave_feat(FL,Y,X,F)    ((FL)->grid_array[(Y)][(X)].feat = (F))
90 #define add_cave_info(FL,Y,X,I)    ((FL)->grid_array[(Y)][(X)].info |= (I))
91
92 /*!
93  * @brief 指定座標に瓦礫を配置する
94  * @param Y 指定Y座標
95  * @param X 指定X座標
96  */
97 #define place_rubble(F,Y,X)       set_cave_feat(F,Y,X,feat_rubble)
98
99 /*!
100  * @brief 指定座標がFLOOR属性を持ったマスかどうかを返す
101  * @param Y 指定Y座標
102  * @param X 指定X座標
103  * @return FLOOR属性を持っているならばTRUE
104  */
105 #define is_floor_bold(F,Y,X) (F->grid_array[Y][X].info & CAVE_FLOOR)
106 #define is_extra_bold(F,Y,X) (F->grid_array[Y][X].info & CAVE_EXTRA)
107
108 #define is_inner_bold(F,Y,X) (F->grid_array[Y][X].info & CAVE_INNER)
109 #define is_outer_bold(F,Y,X) (F->grid_array[Y][X].info & CAVE_OUTER)
110 #define is_solid_bold(F,Y,X) (F->grid_array[Y][X].info & CAVE_SOLID)
111
112 #define is_floor_grid(C) ((C)->info & CAVE_FLOOR)
113 #define is_extra_grid(C) ((C)->info & CAVE_EXTRA)
114 #define is_inner_grid(C) ((C)->info & CAVE_INNER)
115 #define is_outer_grid(C) ((C)->info & CAVE_OUTER)
116 #define is_solid_grid(C) ((C)->info & CAVE_SOLID)
117
118 /*
119  * 特殊なマス状態フラグ / Special grid flags
120  */
121 #define CAVE_MARK       0x0001    /*!< 現在プレイヤーの記憶に収まっている / memorized feature */
122 #define CAVE_GLOW       0x0002    /*!< マス自体が光源を持っている / self-illuminating */
123 #define CAVE_ICKY       0x0004    /*!< 生成されたVaultの一部である / part of a vault */
124 #define CAVE_ROOM       0x0008    /*!< 生成された部屋の一部である / part of a room */
125 #define CAVE_LITE       0x0010    /*!< 現在光に照らされている / lite flag  */
126 #define CAVE_VIEW       0x0020    /*!< 現在プレイヤーの視界に収まっている / view flag */
127 #define CAVE_TEMP       0x0040    /*!< 光源に関する処理のアルゴリズム用記録フラグ / temp flag */
128 #define CAVE_XTRA       0x0080    /*!< 視界に関する処理のアルゴリズム用記録フラグ(update_view()等参照) / misc flag */
129 #define CAVE_MNLT       0x0100    /*!< モンスターの光源によって照らされている / Illuminated by monster */
130 #define CAVE_MNDK       0x8000    /*!< モンスターの暗源によって暗闇になっている / Darken by monster */
131
132 /* Used only while floor generation */
133 #define CAVE_FLOOR      0x0200  /*!< フロア属性のあるマス */
134 #define CAVE_EXTRA      0x0400
135 #define CAVE_INNER      0x0800
136 #define CAVE_OUTER      0x1000
137 #define CAVE_SOLID      0x2000
138 #define CAVE_VAULT      0x4000
139 #define CAVE_MASK (CAVE_FLOOR | CAVE_EXTRA | CAVE_INNER | CAVE_OUTER | CAVE_SOLID | CAVE_VAULT)
140
141 /* Used only after floor generation */
142 #define CAVE_KNOWN      0x0200    /* Directly viewed or map detected flag */
143 #define CAVE_NOTE       0x0400    /* Flag for delayed visual update (needs note_spot()) */
144 #define CAVE_REDRAW     0x0800    /* Flag for delayed visual update (needs lite_spot()) */
145 #define CAVE_OBJECT     0x1000    /* Mirror, glyph, etc. */
146 #define CAVE_UNSAFE     0x2000    /* Might have trap */
147 #define CAVE_IN_DETECT  0x4000    /* trap detected area (inner circle only) */
148
149 /* Types of conversions */
150 #define CONVERT_TYPE_FLOOR   0
151 #define CONVERT_TYPE_WALL    1
152 #define CONVERT_TYPE_INNER   2
153 #define CONVERT_TYPE_OUTER   3
154 #define CONVERT_TYPE_SOLID   4
155 #define CONVERT_TYPE_STREAM1 5
156 #define CONVERT_TYPE_STREAM2 6
157
158 /* Externs */
159
160 extern bool new_player_spot(player_type *creature_ptr);
161
162 /* Types of doors */
163 #define DOOR_DEFAULT    -1
164 #define DOOR_DOOR        0
165 #define DOOR_GLASS_DOOR  1
166 #define DOOR_CURTAIN     2
167
168 #define MAX_DOOR_TYPES   3
169
170 extern void place_bound_perm_wall(player_type *player_ptr, grid_type *g_ptr);
171
172 extern bool is_known_trap(player_type *player_ptr, grid_type *g_ptr);
173 extern bool is_hidden_door(player_type *player_ptr, grid_type *g_ptr);
174 extern bool is_mirror_grid(grid_type *g_ptr);
175 extern bool is_glyph_grid(grid_type *g_ptr);
176 extern bool is_explosive_rune_grid(grid_type *g_ptr);
177
178 extern bool player_can_enter(player_type *creature_ptr, FEAT_IDX feature, BIT_FLAGS16 mode);
179
180 /*!
181  * マス構造体のspecial要素を利用する地形かどうかを判定するマクロ / Is this feature has special meaning (except floor_id) with g_ptr->special?
182  */
183 #define feat_uses_special(F) (have_flag(f_info[(F)].flags, FF_SPECIAL))
184
185 /*!
186  * grids.c
187  * ここにfloor_type を引数として加えるとコンパイルエラー
188  */
189 extern POSITION distance(POSITION y1, POSITION x1, POSITION y2, POSITION x2);
190 extern void update_local_illumination(player_type *creature_ptr, POSITION y, POSITION x);
191 extern bool no_lite(player_type *creature_ptr);
192 extern void print_rel(player_type *subject_ptr, SYMBOL_CODE c, TERM_COLOR a, TERM_LEN y, TERM_LEN x);
193 extern void note_spot(player_type *player_ptr, POSITION y, POSITION x);
194 extern void lite_spot(player_type *player_ptr, POSITION y, POSITION x);
195 extern void update_flow(player_type *subject_ptr);
196 extern FEAT_IDX feat_state(player_type *player_ptr, FEAT_IDX feat, int action);
197 extern void cave_alter_feat(player_type *player_ptr, POSITION y, POSITION x, int action);
198 extern void remove_mirror(player_type *caster_ptr, POSITION y, POSITION x);
199 extern bool is_open(player_type *player_ptr, FEAT_IDX feat);
200 extern bool check_local_illumination(player_type *creature_ptr, POSITION y, POSITION x);
201
202 extern bool cave_monster_teleportable_bold(player_type *player_ptr, MONSTER_IDX m_idx, POSITION y, POSITION x, BIT_FLAGS mode);
203 extern bool cave_player_teleportable_bold(player_type *player_ptr, POSITION y, POSITION x, BIT_FLAGS mode);
204
205 typedef enum grid_bold_type
206 {
207         gb_floor,
208         gb_extra,
209         gb_extra_perm,
210         gb_inner,
211         gb_inner_perm,
212         gb_outer,
213         gb_outer_noperm,
214         gb_solid,
215         gb_solid_perm,
216         gb_solid_noperm
217 } grid_bold_type;
218
219 extern void place_grid(player_type *player_ptr, grid_type *g_ptr, grid_bold_type pg_type);
220 extern bool darkened_grid(player_type *player_ptr, grid_type *g_ptr);
221 extern void delete_monster(player_type *player_ptr, POSITION y, POSITION x);
222 extern void place_bold(player_type *player_ptr, POSITION y, POSITION x, grid_bold_type gh_type);
223
224 /*
225  * Get feature mimic from f_info[] (applying "mimic" field)
226  */
227 #define get_feat_mimic(C) \
228         (f_info[(C)->mimic ? (C)->mimic : (C)->feat].mimic)
229
230 /*
231  * This macro allows us to efficiently add a grid to the "lite" array,
232  * note that we are never called for illegal grids, or for grids which
233  * have already been placed into the "lite" array, and we are never
234  * called when the "lite" array is full.
235  */
236 #define cave_lite_hack(F,Y,X) \
237 {\
238         if (!((F)->grid_array[Y][X].info & (CAVE_LITE))) \
239         { \
240                 (F)->grid_array[Y][X].info |= (CAVE_LITE); \
241                 (F)->lite_y[(F)->lite_n] = (Y); \
242                 (F)->lite_x[(F)->lite_n++] = (X); \
243         } \
244 }
245
246 /*
247  * For delayed visual update
248  */
249 #define cave_note_and_redraw_later(F,C,Y,X) \
250 {\
251         (C)->info |= CAVE_NOTE; \
252         cave_redraw_later((F), (C), (Y), (X)); \
253 }
254
255 /*
256 * For delayed visual update
257 */
258 #define cave_redraw_later(F,G,Y,X) \
259 {\
260         if (!((G)->info & CAVE_REDRAW)) \
261         { \
262                 (G)->info |= CAVE_REDRAW; \
263                 (F)->redraw_y[(F)->redraw_n] = (Y); \
264                 (F)->redraw_x[(F)->redraw_n++] = (X); \
265         } \
266 }
267
268 /*
269  * This macro allows us to efficiently add a grid to the "view" array,
270  * note that we are never called for illegal grids, or for grids which
271  * have already been placed into the "view" array, and we are never
272  * called when the "view" array is full.
273  */
274 #define cave_view_hack(F,C,Y,X) \
275 {\
276     if (!((C)->info & (CAVE_VIEW))){\
277     (C)->info |= (CAVE_VIEW); \
278     (F)->view_y[(F)->view_n] = (Y); \
279     (F)->view_x[(F)->view_n] = (X); \
280     (F)->view_n++;}\
281 }