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