OSDN Git Service

[Refactor] #3286 Removed player-redraw-types.h
[hengbandforosx/hengbandosx.git] / src / cmd-io / cmd-floor.cpp
1 #include "cmd-io/cmd-floor.h"
2 #include "core/asking-player.h"
3 #include "core/stuff-handler.h"
4 #include "core/window-redrawer.h"
5 #include "floor/geometry.h"
6 #include "game-option/keymap-directory-getter.h"
7 #include "io/cursor.h"
8 #include "io/screen-util.h"
9 #include "main/sound-of-music.h"
10 #include "system/player-type-definition.h"
11 #include "system/redrawing-flags-updater.h"
12 #include "target/target-checker.h"
13 #include "target/target-setter.h"
14 #include "target/target-types.h"
15 #include "term/z-form.h"
16 #include "util/bit-flags-calculator.h"
17 #include "view/display-messages.h"
18 #include "window/main-window-util.h"
19
20 /*!
21  * @brief ターゲットを設定するコマンドのメインルーチン
22  * Target command
23  */
24 void do_cmd_target(PlayerType *player_ptr)
25 {
26     if (player_ptr->wild_mode) {
27         return;
28     }
29
30     if (target_set(player_ptr, TARGET_KILL)) {
31         msg_print(_("ターゲット決定。", "Target Selected."));
32     } else {
33         msg_print(_("ターゲット解除。", "Target Aborted."));
34     }
35 }
36
37 /*!
38  * @brief 周囲を見渡すコマンドのメインルーチン
39  * Look command
40  */
41 void do_cmd_look(PlayerType *player_ptr)
42 {
43     set_bits(player_ptr->window_flags, PW_SIGHT_MONSTERS | PW_FLOOR_ITEMS);
44     handle_stuff(player_ptr);
45     if (target_set(player_ptr, TARGET_LOOK)) {
46         msg_print(_("ターゲット決定。", "Target Selected."));
47     }
48 }
49
50 /*!
51  * @brief 位置を確認するコマンドのメインルーチン
52  * Allow the player to examine other sectors on the map
53  */
54 void do_cmd_locate(PlayerType *player_ptr)
55 {
56     const char *dirstrings[3][3] = {
57         { _("北西", " northwest of"), _("北", " north of"), _("北東", " northeast of") },
58         { _("西", " west of"), _("真上", ""), _("東", " east of") },
59         { _("南西", " southwest of"), _("南", " south of"), _("南東", " southeast of") },
60     };
61     DIRECTION dir;
62     POSITION y1, x1;
63     TERM_LEN wid, hgt;
64     get_screen_size(&wid, &hgt);
65     POSITION y2 = y1 = panel_row_min;
66     POSITION x2 = x1 = panel_col_min;
67     constexpr auto fmt = _("マップ位置 [%d(%02d),%d(%02d)] (プレイヤーの%s)  方向?", "Map sector [%d(%02d),%d(%02d)], which is%s your sector.  Direction?");
68     while (true) {
69         std::string_view dirstring = dirstrings[(y2 < y1) ? 0 : ((y2 > y1) ? 2 : 1)][(x2 < x1) ? 0 : ((x2 > x1) ? 2 : 1)];
70         std::string out_val = format(fmt, y2 / (hgt / 2), y2 % (hgt / 2), x2 / (wid / 2), x2 % (wid / 2), dirstring.data());
71
72         dir = 0;
73         while (!dir) {
74             char command;
75             if (!get_com(out_val, &command, true)) {
76                 break;
77             }
78
79             dir = get_keymap_dir(command);
80             if (!dir) {
81                 bell();
82             }
83         }
84
85         if (!dir) {
86             break;
87         }
88
89         if (change_panel(player_ptr, ddy[dir], ddx[dir])) {
90             y2 = panel_row_min;
91             x2 = panel_col_min;
92         }
93     }
94
95     verify_panel(player_ptr);
96     auto &rfu = RedrawingFlagsUpdater::get_instance();
97     rfu.set_flag(StatusRedrawingFlag::MONSTER_STATUSES);
98     rfu.set_flag(MainWindowRedrawingFlag::MAP);
99     player_ptr->window_flags |= PW_OVERHEAD | PW_DUNGEON;
100     handle_stuff(player_ptr);
101 }