]> git.pond.sub.org Git - empserver/blob - src/lib/subs/distrea.c
Clean up superfluous include of nsc.h in prototypes.h
[empserver] / src / lib / subs / distrea.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2011, 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  *  distrea.c: Display treaty information
28  *
29  *  Known contributors to this file:
30  *
31  */
32
33 #include <config.h>
34
35 #include "file.h"
36 #include "nat.h"
37 #include "nsc.h"
38 #include "player.h"
39 #include "prototypes.h"
40 #include "treaty.h"
41
42 int
43 distrea(int n, struct trtstr *tp)
44 {
45     int i;
46     int acond, bcond, cond;
47     time_t now;
48
49     if (tp->trt_status == TS_FREE)
50         return 0;
51     if (tp->trt_cna != player->cnum &&
52         tp->trt_cnb != player->cnum && !player->god)
53         return 0;
54     (void)time(&now);
55     if (now > tp->trt_exp) {
56         tp->trt_status = TS_FREE;
57         if (!puttre(n, tp)) {
58             pr("Couldn't save treaty; get help!\n");
59             return 0;
60         }
61         pr("Treaty #%d expired %s", n, ctime(&tp->trt_exp));
62         return 0;
63     }
64     pr("\n      * * *  Empire Treaty #%d  * * *\n", n);
65     if (tp->trt_status == TS_PROPOSED)
66         pr("(proposed)\n");
67     pr("between %s and ", cname(tp->trt_cna));
68     pr("%s  expires %s", cname(tp->trt_cnb), ctime(&tp->trt_exp));
69     pr("%24.24s terms", cname(tp->trt_cna));
70     pr(" - %s terms\n", cname(tp->trt_cnb));
71     for (i = 0; 0 != (cond = treaty_flags[i].value); i++) {
72         acond = tp->trt_acond & cond;
73         bcond = tp->trt_bcond & cond;
74         if (acond | bcond) {
75             if (acond)
76                 pr("%30s", treaty_flags[i].name);
77             else
78                 pr("%30s", "");
79             if (bcond)
80                 pr(" - %s\n", treaty_flags[i].name);
81             else
82                 pr(" -\n");
83         }
84     }
85     return 1;
86 }