X-Git-Url: https://plomlompom.com/repos/?a=blobdiff_plain;f=src%2Fclient%2Fmain.c;h=c25c4f9b509ab91dd3789e78384c4f2c1e042628;hb=65d60eba28c8e3128e1603e577c1436a2182f6bd;hp=61c53b8f7d1861ad28c8799c7bd3b6dc2d85d7e9;hpb=fb9b40f0535b28b37b64983240c4b78e74ee9a2c;p=plomrogue diff --git a/src/client/main.c b/src/client/main.c index 61c53b8..c25c4f9 100644 --- a/src/client/main.c +++ b/src/client/main.c @@ -2,13 +2,17 @@ #include /* keypad() */ #include /* struct sigaction, sigaction() */ +#include /* NULL */ #include /* exit() */ #include /* memset() */ -#include "../common/rexit.h" /* set_cleanup_func(), exit_trouble() */ +#include /* access() */ +#include "../common/err_try_fgets.h" /* set_err_try_fgets_delim() */ +#include "../common/rexit.h" /* set_cleanup_func(), exit_trouble(),exit_err() */ #include "cleanup.h" /* cleanup(), set_cleanup_flag() */ #include "command_db.h" /* init_command_db() */ #include "io.h" /* io_loop(), try_send() */ #include "misc.h" /* load_interface_conf(), winch_called() */ +#include "windows.h" /* winch_called() */ #include "world.h" /* struct World */ @@ -21,9 +25,13 @@ 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"; + /* Declare hard-coded paths and values here. */ + world.path_server_in = "server/in"; + world.path_commands = "confclient/commands"; + world.path_interface = "confclient/interface_conf"; + world.winDB.legal_ids = "012ciklm"; + world.delim = "%\n"; + set_err_try_fgets_delim(world.delim); /* Parse command line arguments. */ obey_argv(argc, argv); @@ -31,12 +39,16 @@ int main(int argc, char * argv[]) /* So error exits also go through the client's cleanup() function. */ set_cleanup_func(cleanup); + /* Check existence of config files. */ + exit_err(access(world.path_commands, F_OK), "No commands config file."); + exit_err(access(world.path_interface, F_OK), "No interface config file."); + /* Initialize the whole interface. */ - world.wins.screen = initscr(); + world.winDB.t_screen = initscr(); set_cleanup_flag(CLEANUP_NCURSES); noecho(); curs_set(0); - keypad(world.wins.screen, TRUE); + keypad(world.winDB.t_screen, TRUE); init_command_db(); /* The command DB needs to be initialized before */ load_interface_conf(); /* the interface, whose keybindings depend on it. */