From 58ba781eb96909de2ea598f0c6e83bbebd474dd2 Mon Sep 17 00:00:00 2001 From: Marko Lindqvist Date: Thu, 16 Sep 2021 05:48:53 +0300 Subject: [PATCH 33/33] Macrofy client_player() See osdn #42865 Signed-off-by: Marko Lindqvist --- client/client_main.c | 8 -------- client/client_main.h | 4 +++- 2 files changed, 3 insertions(+), 9 deletions(-) diff --git a/client/client_main.c b/client/client_main.c index 1444c6e7e0..8d5fb73540 100644 --- a/client/client_main.c +++ b/client/client_main.c @@ -1332,14 +1332,6 @@ bool client_has_player(void) return client.conn.playing != NULL; } -/**********************************************************************//** - Either controlling or observing. -**************************************************************************/ -struct player *client_player(void) -{ - return client.conn.playing; -} - /**********************************************************************//** Return the vision of the player on a tile. Client version of ./server/maphand/map_is_known_and_seen(). diff --git a/client/client_main.h b/client/client_main.h index 6f98d06ef8..adba91d2a7 100644 --- a/client/client_main.h +++ b/client/client_main.h @@ -101,7 +101,9 @@ bool client_is_observer(void); bool client_is_global_observer(void); int client_player_number(void); bool client_has_player(void); -struct player *client_player(void); + +#define client_player() client.conn.playing + bool client_map_is_known_and_seen(const struct tile *ptile, const struct player *pplayer, enum vision_layer vlayer); -- 2.33.0