]> git.pond.sub.org Git - empserver/blob - src/lib/common/nat.c
ebdcef98e1c03ee06a1b79a4b415c2975940178d
[empserver] / src / lib / common / nat.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2016, 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  *  nat.c: Misc. accesses on the nation file
28  *
29  *  Known contributors to this file:
30  *     Dave Pare, 1989
31  *     Ron Koenderink, 2005
32  *     Markus Armbruster, 2006-2011
33  */
34
35 #include <config.h>
36
37 #include <string.h>
38 #include "misc.h"
39 #include "nat.h"
40 #include "optlist.h"
41 #include "sect.h"
42 #include "tel.h"
43
44 char *relates[] = {
45     /* must follow nation relation defines in nat.h */
46     "At War", "Hostile", "Neutral", "Friendly", "Allied"
47 };
48
49 char *
50 cname(natid n)
51 {
52     struct natstr *np;
53
54     if (!(np = getnatp(n)))
55         return NULL;
56     return np->nat_cnam;
57 }
58
59 char *
60 relatename(struct natstr *np, natid other)
61 {
62     return relates[getrel(np, other)];
63 }
64
65 char *
66 natstate(struct natstr *np)
67 {
68     static char *stnam[] = {
69         /* must match nat_status */
70         "FREE", "VISITOR", "VISITOR", "SANCTUARY", "ACTIVE", "DEITY"
71     };
72     return stnam[np->nat_stat];
73 }
74
75 /* This returns the relations that np has with them */
76 int
77 getrel(struct natstr *np, natid them)
78 {
79     return np->nat_relate[them];
80 }
81
82 /*
83  * Return relations @us has with @them.
84  * Countries are considered allied to themselves.
85  */
86 int
87 relations_with(natid us, natid them)
88 {
89     return us == them ? ALLIED : getrel(getnatp(us), them);
90 }
91
92 int
93 getrejects(natid them, struct natstr *np)
94 {
95     return np->nat_rejects[them];
96 }
97
98 void
99 agecontact(struct natstr *np)
100 {
101     int them;
102
103     for (them = 1; them < MAXNOC; ++them) {
104         if (them != np->nat_cnum && np->nat_contact[them]) {
105             --np->nat_contact[them];
106         }
107     }
108 }
109
110 int
111 in_contact(struct natstr *np, natid them)
112 {
113     return np->nat_contact[them];
114 }
115
116 void
117 putrel(struct natstr *np, natid them, int relate)
118 {
119     np->nat_relate[them] = relate;
120 }
121
122 void
123 putreject(struct natstr *np, natid them, int how, int what)
124 {
125     if (how)
126         np->nat_rejects[them] |= what;
127     else
128         np->nat_rejects[them] &= ~what;
129 }
130
131 int
132 influx(struct natstr *np)
133 {
134     struct sctstr sect;
135
136     getsect(np->nat_xcap, np->nat_ycap, &sect);
137     if (sect.sct_own != np->nat_cnum ||
138         (sect.sct_type != SCT_CAPIT && sect.sct_type != SCT_MOUNT &&
139          sect.sct_type != SCT_SANCT) ||
140         (np->nat_flags & NF_SACKED))
141         return 1;
142     else
143         return 0;
144 }
145
146 /*
147  * Initialize @natp for country #@cnum in status @stat.
148  * @stat must be STAT_UNUSED, STAT_NEW, STAT_VIS or STAT_GOD.
149  * Also wipe realms and telegrams.
150  */
151 struct natstr *
152 nat_reset(struct natstr *natp, natid cnum, char *name, char *rep,
153           enum nat_status stat)
154 {
155     struct realmstr newrealm;
156     char buf[1024];
157     int i;
158
159     ef_blank(EF_NATION, cnum, natp);
160     natp->nat_stat = stat;
161     strncpy(natp->nat_cnam, name, sizeof(natp->nat_cnam) - 1);
162     strncpy(natp->nat_pnam, rep, sizeof(natp->nat_pnam) - 1);
163     if (stat == STAT_GOD)
164         natp->nat_money = 123456789;
165     for (i = 0; i < MAXNOR; i++) {
166         ef_blank(EF_REALM, i + cnum * MAXNOR, &newrealm);
167         putrealm(&newrealm);
168     }
169     mailbox_create(mailbox(buf, cnum));
170     /* FIXME natp->nat_ann = #annos */
171     natp->nat_level[NAT_HLEV] = start_happiness;
172     natp->nat_level[NAT_RLEV] = start_research;
173     natp->nat_level[NAT_TLEV] = start_technology;
174     natp->nat_level[NAT_ELEV] = start_education;
175     for (i = 0; i < MAXNOC; i++)
176         natp->nat_relate[i] = NEUTRAL;
177     natp->nat_flags =
178         NF_FLASH | NF_BEEP | NF_COASTWATCH | NF_SONAR | NF_TECHLISTS;
179     return natp;
180 }