X-Git-Url: https://plomlompom.com/repos/?a=blobdiff_plain;f=src%2Fclient%2Fio.c;h=a46f91ff65c9cd00876cd392454ae2e922c1e1a4;hb=81630285494cf6d9e5ddd845e4e55702d87029b0;hp=35e42e77c2340f3088ce9ea374c40d97a16962a0;hpb=e2788e0bb81b5b9bfe7d3662a3c55883100558a1;p=plomrogue diff --git a/src/client/io.c b/src/client/io.c index 35e42e7..a46f91f 100644 --- a/src/client/io.c +++ b/src/client/io.c @@ -10,7 +10,7 @@ #include /* PIPE_BUF */ #include /* halfdelay(), getch() */ #include /* NULL */ -#include /* uint8_t, uint16_t, uint32_t */ +#include /* uint8_t, uint16_t, uint32_t, UINT32_MAX */ #include /* FILE, sprintf(), fseek(), fflush() */ #include /* strcmp(), strlen(), memcpy() */ #include /* free(), atoi() */ @@ -80,8 +80,11 @@ static uint8_t read_worldstate(); */ static void test_and_poll_server(); -/* Read server out file for messages, act on them (i.e. derive log messages). */ -static uint8_t read_outfile(); +/* If "string", append \n-prefixed "append", else write "append" as "string". */ +static void nl_append_string(char * append, char ** string); + +/* Read messages from queue, act on them. */ +static uint8_t read_queue(); @@ -230,29 +233,74 @@ static void test_and_poll_server() -static uint8_t read_outfile() +static void nl_append_string(char * append, char ** string) { + char * err = "too large sizes"; + exit_trouble(UINT32_MAX < strlen(append), __func__, err); + uint32_t new_size = strlen(append); + uint32_t old_size = 0; + uint8_t add_nl = 0; + if (*string) + { + exit_trouble(UINT32_MAX < new_size + strlen(*string), __func__, err); + old_size = strlen(*string); + add_nl = 1; + } + char * new_string = try_malloc(old_size + add_nl + new_size + 1, __func__); + memcpy(new_string, *string, old_size); + char * pattern = add_nl ? "\n%s" : "%s"; + int test = sprintf(new_string + old_size, pattern, append); + exit_trouble(test < 0, __func__, "sprintf"); + free(*string); + *string = new_string; +} + + + +static uint8_t read_queue() +{ + static uint8_t things_below_player_parsing = 0; uint8_t ret = 0; char * msg; while (NULL != (msg = get_message_from_queue(&world.queue))) { char * log_prefix = "LOG "; - if (!strncmp(msg, log_prefix, strlen(log_prefix))) + if (!strcmp(msg, "THINGS_BELOW_PLAYER START")) { ret = 1; - char * log_msg = msg + strlen(log_prefix); - int old_size = 0; - if (world.log) + things_below_player_parsing = 1; + free(world.things_below_player); + world.things_below_player = NULL; + } + else if (!strcmp(msg, "THINGS_BELOW_PLAYER END")) + { + things_below_player_parsing = 0; + if (!world.things_below_player) { - old_size = strlen(world.log); + nl_append_string("(nothing)", &world.things_below_player); } - int new_size = strlen(log_msg); - char * new_log = try_malloc(old_size + 1 + new_size + 1, __func__); - memcpy(new_log, world.log, old_size); - int test = sprintf(new_log + old_size, "\n%s", log_msg); - exit_trouble(test < 0, __func__, "sprintf"); + } + else if (things_below_player_parsing) + { + ret = 1; + nl_append_string(msg, &world.things_below_player); + } + else if (!strncmp(msg, log_prefix, strlen(log_prefix))) + { + ret = 1; + nl_append_string(msg + strlen(log_prefix), &world.log); + } + else if (!strcmp(msg, "NEW_WORLD")) + { + ret = 1; free(world.log); - world.log = new_log; + world.log = NULL; + } + else if (!strcmp(msg, "WORLD_UPDATED")) + { + free(world.things_below_player); + world.things_below_player = NULL; + send("STACK"); } free(msg); } @@ -288,7 +336,7 @@ extern char * io_loop() world.winch = 0; change_in_client++; } - if (change_in_client || read_worldstate() || read_outfile()) + if (change_in_client || read_worldstate() || read_queue()) { if (world.turn != last_focused_turn && world.focus_each_turn) {