X-Git-Url: https://plomlompom.com/repos/foo.html?a=blobdiff_plain;f=src%2Fclient%2Fmain.c;h=473228c70840eb2af513dc51713539f690326d07;hb=e8e8f91cff96eebc1b440df18d9c3ef4ced1ca60;hp=6a71592b20fd9293a5ee158d7f9b297900b799b9;hpb=a8097b8fef09444ebac0f1e2d3ffc4e621557b28;p=plomrogue diff --git a/src/client/main.c b/src/client/main.c index 6a71592..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,20 +17,32 @@ 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(); /* 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();