]> git.pond.sub.org Git - empserver/blob - src/lib/commands/coun.c
Update copyright notice.
[empserver] / src / lib / commands / coun.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2004, 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 the "LEGAL", "LICENSE", "CREDITS" and "README" files for all the
23  *  related information and legal notices. It is expected that any future
24  *  projects/authors will amend these files as needed.
25  *
26  *  ---
27  *
28  *  coun.c: Do a country roster
29  * 
30  *  Known contributors to this file:
31  *     
32  */
33
34 #include "misc.h"
35 #include "player.h"
36 #include "var.h"
37 #include "sect.h"
38 #include "nat.h"
39 #include "xy.h"
40 #include "nsc.h"
41 #include "file.h"
42 #include <fcntl.h>
43 #include <ctype.h>
44 #include "commands.h"
45
46 static void coun_header(void);
47 static void coun_list(natid cn, struct natstr *natp);
48
49 int
50 coun(void)
51 {
52     struct nstr_item ni;
53     struct natstr nat;
54     int first;
55
56     pr("The 'country' command is temporarily out of order.\n");
57     pr("Please use the 'players' command instead.\n");
58     if (!snxtitem(&ni, EF_NATION, player->argp[1]))
59         return RET_SYN;
60     first = 1;
61     while (nxtitem(&ni, (s_char *)&nat)) {
62         if ((nat.nat_stat & STAT_INUSE) == 0)
63             continue;
64         if (((nat.nat_stat & GOD) != GOD) && !player->god)
65             continue;
66         if (first) {
67             coun_header();
68             first = 0;
69         }
70         coun_list((natid)ni.cur, &nat);
71     }
72     return RET_OK;
73 }
74
75 static void
76 coun_header(void)
77 {
78     prdate();
79     pr("  #   last access       time\tstatus\t\t country name\n");
80 }
81
82 static void
83 coun_list(natid cn, struct natstr *natp)
84 {
85     s_char *status;
86     struct sctstr sect;
87
88     if (natp->nat_connected)
89         pr("%3d  %-16.16s   [%d]", cn, " Now logged on", natp->nat_btu);
90     else
91         pr("%3d  %-16.16s   [%d]", cn, ctime(&natp->nat_last_login),
92            natp->nat_btu);
93
94     if (natp->nat_stat & STAT_GOD)
95         status = "DEITY";
96     else if (natp->nat_stat & STAT_NEW)
97         status = "New";
98     else if (natp->nat_stat & STAT_SANCT)
99         status = "Sanctuary";
100     else if (natp->nat_stat & STAT_NORM) {
101         getsect(natp->nat_xcap, natp->nat_ycap, &sect);
102         if (sect.sct_own != cn ||
103             (sect.sct_type != SCT_CAPIT && sect.sct_type != SCT_MOUNT))
104             status = "In flux";
105         else if (natp->nat_money < 0)
106             status = "Broke";
107         else
108             status = "Active";
109     } else {
110         status = "Visitor";
111     }
112     pr("\t%-9.9s\t %s\n", status, natp->nat_cnam);
113 }