X-Git-Url: https://plomlompom.com/repos/foo.html?a=blobdiff_plain;f=src%2Fclient%2Fmain.c;h=473228c70840eb2af513dc51713539f690326d07;hb=e8e8f91cff96eebc1b440df18d9c3ef4ced1ca60;hp=26ad72822063d95fe9ac3a10a258b11691e9450d;hpb=dd9d65ee727ac7e95801da0f8b5bae7009811802;p=plomrogue diff --git a/src/client/main.c b/src/client/main.c index 26ad728..473228c 100644 --- a/src/client/main.c +++ b/src/client/main.c @@ -1,12 +1,14 @@ /* 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 "windows.h" /* init_win_meta(); */ +#include "misc.h" /* load_interface_conf(), winch_called() */ +#include "windows.h" /* init_wmeta_and_ncurses(); */ #include "world.h" /* struct World */ @@ -15,19 +17,31 @@ 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); /* Initialize the whole interface. */ - init_win_meta(); + init_wmeta_and_ncurses(); keypad(world.wmeta.screen, TRUE); - init_command_db(); - load_interface_conf(); + 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();