X-Git-Url: https://plomlompom.com/repos/berlin_corona.txt?a=blobdiff_plain;f=src%2Fclient%2Fmain.c;h=51d5606c8ae9316095f9ee6808cbe0188d1f6d8a;hb=0b7798939c0193fd794985b503737e40d8602313;hp=4fb6b3bce7b282e9ba36040b19fa377946b3abd4;hpb=1c20e240bb704cddfa80b60dfa20863218edc6d8;p=plomrogue diff --git a/src/client/main.c b/src/client/main.c index 4fb6b3b..51d5606 100644 --- a/src/client/main.c +++ b/src/client/main.c @@ -1,11 +1,13 @@ /* main.c */ +#include /* struct sigaction, sigaction() */ #include /* exit() */ -#include "../common/rexit.h" /* set_cleanup_func() */ +#include /* memset() */ +#include "../common/rexit.h" /* set_cleanup_func(), exit_trouble() */ #include "cleanup.h" /* cleanup() */ #include "command_db.h" /* init_command_db() */ #include "io.h" /* io_loop(), try_send() */ -#include "misc.h" /* load_interface_conf() */ +#include "misc.h" /* load_interface_conf(), winch_called() */ #include "windows.h" /* init_wmeta_and_ncurses(); */ #include "world.h" /* struct World */ @@ -17,6 +19,8 @@ struct World world; int main() { + char * f_name = "main()"; + /* Declare hard-coded paths here. */ world.path_server_in = "server/in"; @@ -29,6 +33,12 @@ int main() init_command_db(); /* The command DB needs to be initialized before */ load_interface_conf(); /* the interface, whose keybindings depend on it. */ + /* Set handler for terminal window resizing. */ + struct sigaction act; + memset(&act, 0, sizeof(act)); + act.sa_handler = &winch_called; + exit_trouble(sigaction(SIGWINCH, &act, NULL), f_name, "sigaction()"); + /* This is where most everything happens. */ char * quit_msg = io_loop();