X-Git-Url: https://plomlompom.com/repos/?a=blobdiff_plain;f=src%2Fserver%2Fmain.c;h=1ae00f1397d3f69b672d6ed6d2e628528ad3844a;hb=36519c3ce33ac973889e92971abded12b51f04db;hp=6cf6b413bc7c92215cd4b4ecd1386d28d6f88575;hpb=dd9d65ee727ac7e95801da0f8b5bae7009811802;p=plomrogue diff --git a/src/server/main.c b/src/server/main.c index 6cf6b41..1ae00f1 100644 --- a/src/server/main.c +++ b/src/server/main.c @@ -1,16 +1,16 @@ -/* src/server/main.c */ +/* src/server/main.c + * + * This file is part of PlomRogue. PlomRogue is licensed under the GPL version 3 + * or any later version. For details on its copyright, license, and warranties, + * see the file NOTICE in the root directory of the PlomRogue source package. + */ -#include /* global errno */ #include /* printf() */ #include /* exit() */ -#include /* mkfifo(), mkdir() */ -#include /* access() */ -#include "../common/rexit.h" /* exit_err, exit_trouble(), set_cleanup_func() */ +#include "../common/rexit.h" /* exit_err, set_cleanup_func() */ #include "cleanup.h" /* set_cleanup_flag(), cleanup() */ -#include "init.h" /* run_game(), obey_argv() */ -#include "map_object_actions.h" /* init_map_object_actions() */ -#include "map_objects.h" /* init_map_object_defs() */ -#include "run.h" /* obey_argv(), run_game() */ +#include "hardcoded_strings.h" /* s */ +#include "init.h" /* run_game(), obey_argv(), obey_argv(), setup_server_io() */ #include "world.h" /* struct World */ @@ -21,12 +21,11 @@ struct World world; int main(int argc, char ** argv) { - char * f_name = "main()"; - /* So error exits also go through the server's cleanup() function. */ set_cleanup_func(cleanup); /* Init settings from command line / hard-coded values. Print start info. */ + init_strings(); obey_argv(argc, argv); if (world.is_verbose) { @@ -36,29 +35,14 @@ int main(int argc, char ** argv) if (world.replay) { test = printf("Replay mode. Auto-replaying up to turn %d.\n", - world.replay); + world.replay); exit_err(-1 == test, printf_err); } } - world.path_in = "server/in"; - world.path_out = "server/out"; - world.path_record = "record"; - world.tmp_suffix = "_tmp"; - - /* Treat world.path_in file as server process lock file. */ - char * err = "Found pre-existing input fifo file. This indicates another " - "roguelike-server may be running. It should be killed first."; - exit_err(!access(world.path_in, F_OK), err); - int test = mkdir("server", 0700); - exit_trouble(test && EEXIST != errno, f_name, "mkdir()"); - exit_trouble(mkfifo(world.path_in, 0600), f_name, "mkfifo()"); - set_cleanup_flag(CLEANUP_FIFO); - - /* Init from config files map object (action) definitions. */ - init_map_object_defs("confserver/defs"); - init_map_object_actions("confserver/map_object_actions"); + world.map.length = 64; /* Just a sane default value. */ - /* Enter play or replay mode loops, then leave properly. */ + /* Init server i/o, Enter play or replay mode loops, then leave properly. */ + setup_server_io(); run_game(); cleanup(); exit(EXIT_SUCCESS);