]> git.pond.sub.org Git - empserver/blob - src/lib/commands/acce.c
ce781f03946484dfd7d0b3a7208c5d6c562dd732
[empserver] / src / lib / commands / acce.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2021, 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  *  acce.c: Report rejection status of telegrams/annos/loans
28  *
29  *  Known contributors to this file:
30  *     Markus Armbruster, 2006-2016
31  */
32
33 #include <config.h>
34
35 #include "commands.h"
36
37 static void pr_accept(natid, natid);
38
39 /*
40  * report rejection status
41  * Optional argument reports staus from the
42  * viewpoint of another country
43  */
44 int
45 acce(void)
46 {
47     struct natstr *natp;
48     struct natstr *np;
49     natid cn;
50     natid as;
51
52     if (!player->argp[1]) {
53         natp = getnatp(player->cnum);
54     } else {
55         if (!(natp = natargp(player->argp[1], NULL)))
56             return RET_SYN;
57     }
58     as = natp->nat_cnum;
59     pr("\t%s Acceptance Status Report\t", cname(as));
60     prdate();
61     pr("\n  Acceptance status       %s           theirs\n",
62        player->cnum == as ? "yours" : " his ");
63     pr("                       tel anno loan   tel anno loan\n");
64     for (cn = 0; cn < MAXNOC; cn++) {
65         if (cn == as)
66             continue;
67         if (!(np = getnatp(cn)))
68             break;
69         if (np->nat_stat == STAT_UNUSED)
70             continue;
71         pr("%3d) %-14.14s ", cn, cname(cn));
72         pr_accept(as, cn);
73         pr_accept(cn, as);
74         pr("\n");
75     }
76     return RET_OK;
77 }
78
79 static void
80 pr_accept(natid to, natid from)
81 {
82     static char *yes_no[] = { "YES", " NO" };
83
84     pr("   %s  %s  %s",
85        yes_no[!nat_accepts(to, from, REJ_TELE)],
86        yes_no[!nat_accepts(to, from, REJ_ANNO)],
87        yes_no[!nat_accepts(to, from, REJ_LOAN)]);
88 }