OSDN Git Service

Merge pull request #3569 from sikabane-works/release/3.0.0.88-alpha
[hengbandforosx/hengbandosx.git] / src / window / main-window-util.h
1 #pragma once
2
3 #include "system/angband.h"
4
5 #define ROW_MAP 0
6 #define COL_MAP 12
7
8 class ItemEntity;
9 extern ItemEntity *autopick_obj;
10 extern POSITION panel_row_min;
11 extern POSITION panel_row_max;
12 extern POSITION panel_col_min;
13 extern POSITION panel_col_max;
14 extern POSITION panel_col_prt;
15 extern POSITION panel_row_prt;
16 extern int match_autopick;
17 extern int feat_priority;
18
19 class PlayerType;
20 void print_field(concptr info, TERM_LEN row, TERM_LEN col);
21 void print_map(PlayerType *player_ptr);
22 void display_map(PlayerType *player_ptr, int *cy, int *cx);
23 void set_term_color(PlayerType *player_ptr, POSITION y, POSITION x, TERM_COLOR *ap, char *cp);
24 int panel_col_of(int col);