home · contact · privacy
Remove C variant of server, redefine build system to match this change.
[plomrogue] / src / server / main.c
diff --git a/src/server/main.c b/src/server/main.c
deleted file mode 100644 (file)
index 1ae00f1..0000000
+++ /dev/null
@@ -1,49 +0,0 @@
-/* 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 <stdio.h> /* printf() */
-#include <stdlib.h> /* exit() */
-#include "../common/rexit.h" /* exit_err, set_cleanup_func() */
-#include "cleanup.h" /* set_cleanup_flag(), cleanup() */
-#include "hardcoded_strings.h" /* s */
-#include "init.h" /* run_game(), obey_argv(), obey_argv(), setup_server_io() */
-#include "world.h" /* struct World */
-
-
-
-struct World world;
-
-
-
-int main(int argc, char ** argv)
-{
-    /* 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)
-    {
-        char * printf_err = "Trouble in main() with printf().";
-        int test = printf("Starting plomrogue-server.\n");
-        exit_err(-1 == test, printf_err);
-        if (world.replay)
-        {
-            test = printf("Replay mode. Auto-replaying up to turn %d.\n",
-                          world.replay);
-            exit_err(-1 == test, printf_err);
-        }
-    }
-    world.map.length = 64;                      /* Just a sane default value. */
-
-    /* Init server i/o, Enter play or replay mode loops, then leave properly. */
-    setup_server_io();
-    run_game();
-    cleanup();
-    exit(EXIT_SUCCESS);
-}