]> git.pond.sub.org Git - empserver/blob - src/lib/commands/plan.c
717b9b4022c69f8eafeb447dd3be18888dbd87c5
[empserver] / src / lib / commands / plan.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2016, 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  *  plan.c: Do a plane report
28  *
29  *  Known contributors to this file:
30  *     Dave Pare, 1986
31  *     Steve McClure, 2000
32  *     Markus Armbruster, 2006-2010
33  */
34
35 #include <config.h>
36
37 #include "commands.h"
38 #include "nuke.h"
39 #include "plane.h"
40
41 int
42 plan(void)
43 {
44     int nplanes, noff;
45     struct nstr_item np;
46     struct plnstr plane;
47     struct nukstr nuke;
48
49     if (!snxtitem(&np, EF_PLANE, player->argp[1], NULL))
50         return RET_SYN;
51     nplanes = noff = 0;
52     while (nxtitem(&np, &plane)) {
53         if (!player->owner || plane.pln_own == 0)
54             continue;
55         if (nplanes++ == 0) {
56             if (player->god)
57                 pr("own ");
58             pr("   #    type                x,y    w   eff  mu def tech ran hard carry special\n");
59         }
60         if (plane.pln_off)
61             noff++;
62         if (player->god)
63             pr("%3d ", plane.pln_own);
64         pr("%4d %-19.19s ", np.cur, plchr[(int)plane.pln_type].pl_name);
65         prxy("%4d,%-4d", plane.pln_x, plane.pln_y);
66         pr(" %1.1s %c%3d%% %3d %3d %4d %3d  %3d",
67            &plane.pln_wing, plane.pln_off ? '!' : ' ', plane.pln_effic,
68            plane.pln_mobil, pln_def(&plane), plane.pln_tech,
69            plane.pln_range, plane.pln_harden);
70         if (plane.pln_ship >= 0)
71             pr("%5dS", plane.pln_ship);
72         else if (plane.pln_land >= 0)
73             pr("%5dL", plane.pln_land);
74         else
75             pr("      ");
76         if (pln_is_in_orbit(&plane))
77             pr((plane.pln_flags & PLN_SYNCHRONOUS) ? " geosync" : " orbit");
78         else if (getnuke(nuk_on_plane(&plane), &nuke))
79             pr(" %-5.5s %c",
80                nchr[nuke.nuk_type].n_name,
81                plane.pln_flags & PLN_AIRBURST ? 'A' : 'G');
82         pr("\n");
83     }
84
85     if (nplanes == 0) {
86         if (player->argp[1])
87             pr("%s: No plane(s)\n", player->argp[1]);
88         else
89             pr("%s: No plane(s)\n", "");
90         return RET_FAIL;
91     } else {
92         pr("%d plane%s", nplanes, splur(nplanes));
93         if (noff)
94             pr(", %d stopped (eff marked with !)", noff);
95         pr("\n");
96     }
97
98     return RET_OK;
99 }