OSDN Git Service

[Refactor] #38997 coords_to_dir() に player_type * 引数を追加. / Add player_type * argument...
[hengband/hengband.git] / src / geometry.h
1 #pragma once
2
3 typedef struct player_type player_type;
4
5 extern const POSITION ddd[9];
6 extern const POSITION ddx[10];
7 extern const POSITION ddy[10];
8 extern const POSITION ddx_ddd[9];
9 extern const POSITION ddy_ddd[9];
10 extern const POSITION cdd[8];
11 extern const POSITION ddx_cdd[8];
12 extern const POSITION ddy_cdd[8];
13
14 extern DIRECTION coords_to_dir(player_type *creature_ptr, POSITION y, POSITION x);
15
16 /*
17  * project()関数に用いられる、遠隔攻撃特性ビットフラグ / Bit flags for the "project()" function
18  */
19 #define PROJECT_JUMP        0x0001 /*!< 遠隔攻撃特性: 発動者からの軌跡を持たず、指定地点に直接発生する(予め置いたトラップ、上空からの発生などのイメージ) / Jump directly to the target location (this is a hack) */
20 #define PROJECT_BEAM        0x0002 /*!< 遠隔攻撃特性: ビーム範囲を持つ。 / Work as a beam weapon (affect every grid passed through) */
21 #define PROJECT_THRU        0x0004 /*!< 遠隔攻撃特性: 目標地点に到達しても射程と遮蔽の限り引き延ばす。 / Continue "through" the target (used for "bolts"/"beams") */
22 #define PROJECT_STOP        0x0008 /*!< 遠隔攻撃特性: 道中にプレイヤーかモンスターがいた時点で到達地点を更新して停止する(壁や森はPROJECT_DISIがない限り最初から貫通しない) */
23 #define PROJECT_GRID        0x0010 /*!< 遠隔攻撃特性: 射程内の地形に影響を及ぼす / Affect each grid in the "blast area" in some way */
24 #define PROJECT_ITEM        0x0020 /*!< 遠隔攻撃特性: 射程内のアイテムに影響を及ぼす / Affect each object in the "blast area" in some way */
25 #define PROJECT_KILL        0x0040 /*!< 遠隔攻撃特性: 射程内のモンスターに影響を及ぼす / Affect each monster in the "blast area" in some way */
26 #define PROJECT_HIDE        0x0080 /*!< 遠隔攻撃特性: / Hack -- disable "visual" feedback from projection */
27 #define PROJECT_DISI        0x0100 /*!< 遠隔攻撃特性: / Disintegrate non-permanent features */
28 #define PROJECT_PLAYER      0x0200 /*!< 遠隔攻撃特性: / Main target is player (used for riding player) */
29 #define PROJECT_AIMED       0x0400 /*!< 遠隔攻撃特性: / Target is only player or monster, so don't affect another. Depend on PROJECT_PLAYER. (used for minimum (rad == 0) balls on riding player) */
30 #define PROJECT_REFLECTABLE 0x0800 /*!< 遠隔攻撃特性: 反射可能(ボルト系魔法に利用) / Refrectable spell attacks (used for "bolts") */
31 #define PROJECT_NO_HANGEKI  0x1000 /*!< 遠隔攻撃特性: / Avoid counter attacks of monsters */
32 #define PROJECT_PATH        0x2000 /*!< 遠隔攻撃特性: / Only used for printing project path */
33 #define PROJECT_FAST        0x4000 /*!< 遠隔攻撃特性: / Hide "visual" of flying bolts until blast */
34 #define PROJECT_LOS         0x8000 /*!< 遠隔攻撃特性: /  */
35 extern sint project_path(u16b *gp, POSITION range, POSITION y1, POSITION x1, POSITION y2, POSITION x2, BIT_FLAGS flg);
36
37 extern POSITION distance(POSITION y1, POSITION x1, POSITION y2, POSITION x2);
38 extern bool los(POSITION y1, POSITION x1, POSITION y2, POSITION x2);
39
40 extern bool projectable(POSITION y1, POSITION x1, POSITION y2, POSITION x2);
41 extern void scatter(POSITION *yp, POSITION *xp, POSITION y, POSITION x, POSITION d, BIT_FLAGS mode);
42 extern void mmove2(POSITION *y, POSITION *x, POSITION y1, POSITION x1, POSITION y2, POSITION x2);
43
44 extern bool player_can_see_bold(POSITION y, POSITION x);
45 extern bool no_lite(void);
46
47 /*!
48  * @brief 視界及び光源の過渡処理配列サイズ / Maximum size of the "temp" array (see "p_ptr->current_floor_ptr->grid_array.c")
49  * @details We must be as large as "VIEW_MAX" and "LITE_MAX" for proper functioning
50  * of "update_view()" and "update_lite()".  We must also be as large as the
51  * largest illuminatable room, but no room is larger than 800 grids.  We
52  * must also be large enough to allow "good enough" use as a circular queue,
53  * to calculate monster flow, but note that the flow code is "paranoid".
54  */
55 #define TEMP_MAX 2298
56
57 //!< 対象グリッドの一覧をまとめる構造体
58 typedef struct
59 {
60         POSITION_IDX n; //!< Array of grids for use by various functions (see grid.c")
61         POSITION y[TEMP_MAX];
62         POSITION x[TEMP_MAX];
63 } pos_list;
64
65 //!< ターゲット指定構造体
66 typedef struct
67 {
68         DIRECTION dir;
69         POSITION y;
70         POSITION x;
71 } target_dir;
72
73 /*
74  * Simple structure to hold a map location
75  */
76 typedef struct coord coord;
77
78 struct coord
79 {
80         POSITION y;
81         POSITION x;
82 };
83
84 /*
85  * Is the monster seen by the player?
86  */
87 #define is_seen(A) \
88         ((bool)((A)->ml && (!ignore_unview || p_ptr->phase_out || \
89          (player_can_see_bold((A)->fy, (A)->fx) && projectable(p_ptr->y, p_ptr->x, (A)->fy, (A)->fx)))))
90