X-Git-Url: https://plomlompom.com/repos/?a=blobdiff_plain;f=src%2Fserver%2Finit.h;h=f99126c88aaadc5c06f73673dd568d1a5f0ea852;hb=6b1d36c9e673fd8f8595119080dca63a39ba483b;hp=12d0c0876ed80d4020ea4a6800622d560880ef1c;hpb=fd2cb2cba67e6f26bb02b827d9e458524fd1f0d4;p=plomrogue diff --git a/src/server/init.h b/src/server/init.h index 12d0c08..f99126c 100644 --- a/src/server/init.h +++ b/src/server/init.h @@ -13,14 +13,17 @@ /* Parses command line arguments -v and -s into server configuration. */ extern void obey_argv(int argc, char * argv[]); +/* Start server in file and out file, latter with server process test string. */ +extern void setup_server_io(); + /* Dissolves old game world if it exists, and generates a new one from "seed". - * Unlinks any pre-existing file at world.path_record to re-start record. + * Unlinks a pre-existing file at world.path_record if called on a world.turn>0, + * i.e. if called after iterating through an already established game world. * * Map object (action) definitions read in from server config directory are not - * affected. world.last_update_turn is set to 0 and world.turn to 1, so that - * io_round()'s criteria for updating the output file are triggered even when - * this function is called during a round 1. How many map objects of what type - * id are generated on the map is currently hard-coded. + * affected. The map is populated accordingly. world.last_update_turn is set to + * 0 and world.turn to 1, so that io_round()'s criteria for updating the output + * file are triggered even when this function is called during a round 1. */ extern void remake_world(uint32_t seed);