From 635aedce924f5fd7702b3d769e01d3c8c0710608 Mon Sep 17 00:00:00 2001 From: quenousimporte Date: Sun, 30 Mar 2025 20:01:18 +0200 Subject: [PATCH] refactor --- w/w.c | 23 ++++++++++++++--------- 1 file changed, 14 insertions(+), 9 deletions(-) diff --git a/w/w.c b/w/w.c index b752ac5..8aceb34 100644 --- a/w/w.c +++ b/w/w.c @@ -2,16 +2,16 @@ #include #include -#define CMD_LEN 10 -#define NAME_LEN 10 -#define POV_3D_SIZE 10 -#define POV_SIZE 3 -#define NULL_CMD "-" +#define CMD_LEN 10 +#define NAME_LEN 10 +#define POV_3D_SIZE 10 +#define POV_SIZE 3 +#define NULL_CMD "-" -#define PLACE_TITLE 0 -#define PLACE_SETNAME 1 -#define PLACE_STATION 2 -#define PLACE_MAP 3 +#define PLACE_TITLE 0 +#define PLACE_SETNAME 1 +#define PLACE_STATION 2 +#define PLACE_MAP 3 typedef struct { int x; @@ -233,6 +233,11 @@ void update3dpov() } } +char currentchar() +{ + return charatpos(state.location.x, state.location.y); +} + void updatepov() { int x = state.location.x;