]> git.pond.sub.org Git - empserver/blob - src/lib/commands/shi.c
Fix trailing whitespace
[empserver] / src / lib / commands / shi.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2008, Dave Pare, Jeff Bailey, Thomas Ruschak,
4  *                           Ken Stevens, Steve McClure
5  *
6  *  This program is free software; you can redistribute it and/or modify
7  *  it under the terms of the GNU General Public License as published by
8  *  the Free Software Foundation; either version 2 of the License, or
9  *  (at your option) any later version.
10  *
11  *  This program is distributed in the hope that it will be useful,
12  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
13  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  *  GNU General Public License for more details.
15  *
16  *  You should have received a copy of the GNU General Public License
17  *  along with this program; if not, write to the Free Software
18  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19  *
20  *  ---
21  *
22  *  See files README, COPYING and CREDITS in the root of the source
23  *  tree for related information and legal notices.  It is expected
24  *  that future projects/authors will amend these files as needed.
25  *
26  *  ---
27  *
28  *  shi.c: Show a list of your ships
29  *
30  *  Known contributors to this file:
31  *     Steve McClure, 2000
32  */
33
34 #include <config.h>
35
36 #include "commands.h"
37 #include "land.h"
38 #include "optlist.h"
39 #include "ship.h"
40
41 int
42 shi(void)
43 {
44     int nships, noff, npln, nch, nxl;
45     struct nstr_item ni;
46     struct shpstr ship;
47
48     if (!snxtitem(&ni, EF_SHIP, player->argp[1], NULL))
49         return RET_SYN;
50
51     nships = noff = 0;
52     while (nxtitem(&ni, &ship)) {
53         if (!player->owner || ship.shp_own == 0)
54             continue;
55         if (nships++ == 0) {
56             if (player->god)
57                 pr("own ");
58             pr("shp#     ship type       x,y   fl   eff civ mil  uw  fd pn"
59                " he xl ln mob");
60             pr(" tech\n");
61         }
62         if (ship.shp_off)
63             noff++;
64         if (player->god)
65             pr("%3d ", ship.shp_own);
66         pr("%4d ", ni.cur);
67         pr("%-16.16s ", mchr[(int)ship.shp_type].m_name);
68         prxy("%4d,%-4d ", ship.shp_x, ship.shp_y, player->cnum);
69         pr("%1.1s", &ship.shp_fleet);
70         pr(" %c%3d%%", ship.shp_off ? '!' : ' ', ship.shp_effic);
71
72         pr("%4d", ship.shp_item[I_CIVIL]);
73         pr("%4d", ship.shp_item[I_MILIT]);
74         pr("%4d", ship.shp_item[I_UW]);
75         pr("%4d", ship.shp_item[I_FOOD]);
76
77         npln = shp_nplane(&ship, &nch, &nxl, NULL);
78         pr("%3d%3d%3d", npln - nch - nxl, nch, nxl);
79         pr("%3d", shp_nland(&ship));
80         pr("%4d", ship.shp_mobil);
81         pr("%5d\n", ship.shp_tech);
82         if (ship.shp_name[0] != 0) {
83             if (player->god)
84                 pr("    ");
85             pr("       %s\n", ship.shp_name);
86         }
87     }
88     if (nships == 0) {
89         if (player->argp[1])
90             pr("%s: No ship(s)\n", player->argp[1]);
91         else
92             pr("%s: No ship(s)\n", "");
93         return RET_FAIL;
94     } else {
95         pr("%d ship%s", nships, splur(nships));
96         if (noff)
97             pr(", %d stopped (eff marked with !)", noff);
98         pr("\n");
99     }
100     return RET_OK;
101 }