]> git.pond.sub.org Git - empserver/blob - src/lib/commands/land.c
Update copyright notice
[empserver] / src / lib / commands / land.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2014, 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  *  land.c: List land units
28  *
29  *  Known contributors to this file:
30  *     Steve McClure, 1998
31  *     Markus Armbruster, 2004-2013
32  */
33
34 #include <config.h>
35
36 #include "commands.h"
37 #include "land.h"
38
39 int
40 land(void)
41 {
42     int nunits, noff;
43     struct nstr_item ni;
44     struct lndstr land;
45
46     if (!snxtitem(&ni, EF_LAND, player->argp[1], NULL))
47         return RET_SYN;
48
49     nunits = noff = 0;
50     while (nxtitem(&ni, &land)) {
51         if (land.lnd_own == 0)
52             continue;
53         if (!player->owner && !player->god)
54             continue;
55         if (nunits++ == 0) {
56             if (player->god)
57                 pr("own ");
58             pr("   # unit type          x,y    a   eff mil frt  mu  fd"
59                " tch retr xl ln carry\n");
60         }
61         if (land.lnd_off)
62             noff++;
63         if (player->god)
64             pr("%3d ", land.lnd_own);
65         pr("%4d ", ni.cur);
66         pr("%-15.15s", lchr[(int)land.lnd_type].l_name);
67         prxy(" %4d,%-4d ", land.lnd_x, land.lnd_y);
68         pr("%1.1s", &land.lnd_army);
69         pr(" %c%3d%%", land.lnd_off ? '!' : ' ', land.lnd_effic);
70         pr("%4d", land.lnd_item[I_MILIT]);
71         pr("%4d", land.lnd_harden);
72         pr("%4d", land.lnd_mobil);
73         pr("%4d", land.lnd_item[I_FOOD]);
74         pr("%4d ", land.lnd_tech);
75         pr("%3d%%", land.lnd_retreat);
76         pr("%3d", lnd_nxlight(&land));
77         pr("%3d", lnd_nland(&land));
78         if (land.lnd_ship >= 0)
79             pr(" %4dS", land.lnd_ship);
80         else if (land.lnd_land >= 0)
81             pr(" %4dL", land.lnd_land);
82         pr("\n");
83     }
84     if (nunits == 0) {
85         if (player->argp[1])
86             pr("%s: No unit(s)\n", player->argp[1]);
87         else
88             pr("%s: No unit(s)\n", "");
89         return RET_FAIL;
90     } else {
91         pr("%d unit%s", nunits, splur(nunits));
92         if (noff)
93             pr(", %d stopped (eff marked with !)", noff);
94         pr("\n");
95     }
96     return RET_OK;
97 }