]> git.pond.sub.org Git - empserver/blob - src/lib/commands/shi.c
Update copyright notice
[empserver] / src / lib / commands / shi.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2018, Dave Pare, Jeff Bailey, Thomas Ruschak,
4  *                Ken Stevens, Steve McClure, Markus Armbruster
5  *
6  *  Empire 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 3 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, see <http://www.gnu.org/licenses/>.
18  *
19  *  ---
20  *
21  *  See files README, COPYING and CREDITS in the root of the source
22  *  tree for related information and legal notices.  It is expected
23  *  that future projects/authors will amend these files as needed.
24  *
25  *  ---
26  *
27  *  shi.c: Show a list of your ships
28  *
29  *  Known contributors to this file:
30  *     Steve McClure, 2000
31  */
32
33 #include <config.h>
34
35 #include "commands.h"
36 #include "ship.h"
37
38 int
39 shi(void)
40 {
41     int nships, noff, npln, nch, nxl;
42     struct nstr_item ni;
43     struct shpstr ship;
44
45     if (!snxtitem(&ni, EF_SHIP, player->argp[1], NULL))
46         return RET_SYN;
47
48     nships = noff = 0;
49     while (nxtitem(&ni, &ship)) {
50         if (!player->owner || ship.shp_own == 0)
51             continue;
52         if (nships++ == 0) {
53             if (player->god)
54                 pr("own ");
55             pr("shp#     ship type       x,y   fl   eff civ mil  uw  fd pn"
56                " he xl ln mob tech\n");
57         }
58         if (ship.shp_off)
59             noff++;
60         if (player->god)
61             pr("%3d ", ship.shp_own);
62         pr("%4d ", ni.cur);
63         pr("%-16.16s ", mchr[(int)ship.shp_type].m_name);
64         prxy("%4d,%-4d ", ship.shp_x, ship.shp_y);
65         pr("%1.1s", &ship.shp_fleet);
66         pr(" %c%3d%%", ship.shp_off ? '!' : ' ', ship.shp_effic);
67
68         pr("%4d", ship.shp_item[I_CIVIL]);
69         pr("%4d", ship.shp_item[I_MILIT]);
70         pr("%4d", ship.shp_item[I_UW]);
71         pr("%4d", ship.shp_item[I_FOOD]);
72
73         npln = shp_nplane(&ship, &nch, &nxl, NULL);
74         pr("%3d%3d%3d", npln - nch - nxl, nch, nxl);
75         pr("%3d", shp_nland(&ship));
76         pr("%4d", ship.shp_mobil);
77         pr("%5d\n", ship.shp_tech);
78         if (ship.shp_name[0] != 0) {
79             if (player->god)
80                 pr("    ");
81             pr("       %s\n", ship.shp_name);
82         }
83     }
84     if (nships == 0) {
85         if (player->argp[1])
86             pr("%s: No ship(s)\n", player->argp[1]);
87         else
88             pr("%s: No ship(s)\n", "");
89         return RET_FAIL;
90     } else {
91         pr("%d ship%s", nships, splur(nships));
92         if (noff)
93             pr(", %d stopped (eff marked with !)", noff);
94         pr("\n");
95     }
96     return RET_OK;
97 }