]> git.pond.sub.org Git - empserver/blobdiff - src/lib/commands/sinf.c
Update copyright notice
[empserver] / src / lib / commands / sinf.c
index 46e7ad3c490c148370bf431c23e4fbc787f97018..85f749dd403551203a0ea35e0f289e94db978e54 100644 (file)
@@ -1,6 +1,6 @@
 /*
  *  Empire - A multi-player, client/server Internet based war game.
- *  Copyright (C) 1986-2004, Dave Pare, Jeff Bailey, Thomas Ruschak,
+ *  Copyright (C) 1986-2009, Dave Pare, Jeff Bailey, Thomas Ruschak,
  *                           Ken Stevens, Steve McClure
  *
  *  This program is free software; you can redistribute it and/or modify
  *
  *  ---
  *
- *  See the "LEGAL", "LICENSE", "CREDITS" and "README" files for all the
- *  related information and legal notices. It is expected that any future
- *  projects/authors will amend these files as needed.
+ *  See files README, COPYING and CREDITS in the root of the source
+ *  tree for related information and legal notices.  It is expected
+ *  that future projects/authors will amend these files as needed.
  *
  *  ---
  *
  *  sinf.c: Do an infrastructure report
- * 
+ *
  *  Known contributors to this file:
  *     Steve McClure, 1996
  */
 
-#include "misc.h"
-#include "player.h"
-#include "xy.h"
-#include "sect.h"
-#include "nsc.h"
-#include "nat.h"
-#include "path.h"
-#include "file.h"
-#include "commands.h"
+#include <config.h>
+
 #include "combat.h"
+#include "commands.h"
+#include "optlist.h"
+#include "path.h"
+
+static void prmobcost(struct sctstr *, int);
 
 int
 sinfra(void)
@@ -74,10 +72,13 @@ sinfra(void)
            pr(" ");
        pr("%4d%% ", sect.sct_effic);
        pr("%4d%% ", sect.sct_road);
-       pr("%4.3f ", sector_mcost(&sect, MOB_ROAD));
-       pr("%4d%% ", sect.sct_rail);
-       pr("%4.3f ", sector_mcost(&sect, MOB_RAIL));
-       pr("%4d%% ", sect.sct_defense);
+       prmobcost(&sect, MOB_MOVE);
+       if (opt_RAILWAYS)
+           pr(sct_rail_track(&sect) ? "  yes " : "   no ");
+       else
+           pr("%4d%% ", sect.sct_rail);
+       prmobcost(&sect, MOB_RAIL);
+       pr("%4d%% ", SCT_DEFENSE(&sect));
        pr("%5.2f\n", sector_strength(&sect));
     }
     if (nsect == 0) {
@@ -90,3 +91,14 @@ sinfra(void)
        pr("%d sector%s\n", nsect, splur(nsect));
     return 0;
 }
+
+static void
+prmobcost(struct sctstr *sp, int mobtype)
+{
+    double cost = sector_mcost(sp, mobtype);
+
+    if (cost < 0)
+       pr(" N/A  ");
+    else
+       pr("%5.3f ", cost);
+}