X-Git-Url: https://plomlompom.com/repos/foo.html?a=blobdiff_plain;f=src%2Fclient%2Fmain.c;h=473228c70840eb2af513dc51713539f690326d07;hb=e8e8f91cff96eebc1b440df18d9c3ef4ced1ca60;hp=4fb6b3bce7b282e9ba36040b19fa377946b3abd4;hpb=bdd8f79ade82ef1a7445580fa61a53fd1a5311db;p=plomrogue diff --git a/src/client/main.c b/src/client/main.c index 4fb6b3b..473228c 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 */ @@ -15,10 +17,16 @@ struct World world; -int main() +int main(int argc, char * argv[]) { + char * f_name = "main()"; + /* Declare hard-coded paths here. */ world.path_server_in = "server/in"; + world.path_interface_conf = "confclient/interface_conf"; + + /* Parse command line arguments. */ + obey_argv(argc, argv); /* So error exits also go through the client's cleanup() function. */ set_cleanup_func(cleanup); @@ -29,6 +37,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();