]> git.pond.sub.org Git - empserver/blobdiff - src/lib/commands/skyw.c
Make skywatch report satellite uid
[empserver] / src / lib / commands / skyw.c
index 90f27b7e49c8672c25ac3254c4628043cfe7437b..349ca7e96c77edfde10d670dddc5241be561c0d7 100644 (file)
@@ -1,6 +1,6 @@
 /*
  *  Empire - A multi-player, client/server Internet based war game.
- *  Copyright (C) 1986-2006, Dave Pare, Jeff Bailey, Thomas Ruschak,
+ *  Copyright (C) 1986-2010, Dave Pare, Jeff Bailey, Thomas Ruschak,
  *                           Ken Stevens, Steve McClure
  *
  *  This program is free software; you can redistribute it and/or modify
  *  ---
  *
  *  skyw.c: Look at satellites in the sky.
- * 
+ *
  *  Known contributors to this file:
  *     Ken Stevens, 1995
  */
 
 #include <config.h>
 
-#include "misc.h"
-#include "player.h"
-#include "sect.h"
-#include "plane.h"
-#include "nat.h"
-#include "xy.h"
-#include "nsc.h"
-#include "file.h"
 #include "commands.h"
 #include "optlist.h"
+#include "plane.h"
 
 #define        TSIZE   200
 
@@ -75,13 +68,13 @@ skyw(void)
     if (!snxtsct(&nstr, player->argp[1]))
        return RET_SYN;
     for (i = 0; i < TSIZE; i++)
-       list[i] = 0;
+       list[i] = NULL;
     skyp = malloc(sizeof(*skyp));
     snxtitem_all(&ni, EF_PLANE);
     while (nxtitem(&ni, &skyp->s_sat)) {
        if (!skyp->s_sat.pln_own)
            continue;
-       if (!(skyp->s_sat.pln_flags & PLN_LAUNCHED))
+       if (!pln_is_in_orbit(&skyp->s_sat))
            continue;
        getsect(skyp->s_sat.pln_x, skyp->s_sat.pln_y, &sect);
        n = scthash(skyp->s_sat.pln_x, skyp->s_sat.pln_y, TSIZE);
@@ -94,7 +87,7 @@ skyw(void)
     /* get that last one! */
     free(skyp);
     pr("- = [ Skywatch report for %s ] = -\n", cname(player->cnum));
-    pr(" %18s%20s        %s\n", "Country", "Satellite", "Location");
+    pr("  Country            Satellite     Location\n");
     tech = tfact(player->cnum, 1.0);
     while (nxtsct(&nstr, &sect) && nsat) {
        if (sect.sct_own != player->cnum)
@@ -118,7 +111,7 @@ skyw(void)
                    continue;
                y = ynorm(sect.sct_y + k);
                n = scthash(x, y, TSIZE);
-               if (list[n] == 0)
+               if (!list[n])
                    continue;
                nsat -= showsat(&list[n], x, y);
            }
@@ -138,30 +131,28 @@ static int
 showsat(struct sky **skypp, int x, int y)
 {
     struct sky *skyp;
-    struct sky *todelete = 0;
+    struct sky *todelete = NULL;
     struct sky **prev;
     struct plchrstr *pcp;
-    char *name;
     int nsat = 0;
 
-    prev = 0;
+    prev = NULL;
     skyp = *skypp;
     prev = skypp;
     do {
        /* we delete it, we free it. */
        if (todelete) {
            free(todelete);
-           todelete = 0;
+           todelete = NULL;
        }
        if (skyp->s_sat.pln_x != x || skyp->s_sat.pln_y != y) {
            prev = &(*prev)->s_next;
            continue;
        }
        pcp = &plchr[(int)skyp->s_sat.pln_type];
-       name = pcp->pl_name;
-       pr(" %12.12s (#%d) %20s            %s\n",
+       pr(" %12.12s (#%3d) %s @ %s\n",
           cname(skyp->s_sat.pln_own), skyp->s_sat.pln_own,
-          name, xyas(x, y, player->cnum));
+          prplane(&skyp->s_sat), xyas(x, y, player->cnum));
        if (opt_HIDDEN) {
            /* FOUND_COAST should probably be changed to FOUND_SKY -KHS */
            setcont(player->cnum, skyp->s_sat.pln_own, FOUND_COAST);