]> git.pond.sub.org Git - empserver/blob - src/lib/common/nat.c
(getcontact, putcontact, nat_contact): Change nat_contact
[empserver] / src / lib / common / nat.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  *  nat.c: Misc. accesses on the nation file
29  * 
30  *  Known contributors to this file:
31  *     Dave Pare, 1989
32  */
33
34 #include "misc.h"
35 #include "nat.h"
36 #include "file.h"
37 #include "optlist.h"
38
39 s_char *relates[] = {
40     /* must follow nation relation defines in nat.h */
41     "At War", "Sitzkrieg", "Mobilizing", "Hostile", "Neutral", "Friendly",
42     "Allied"
43 };
44
45 s_char *
46 cname(natid n)
47 {
48     struct natstr *np;
49
50     if ((np = getnatp(n)) == 0)
51         return 0;
52     return np->nat_cnam;
53 }
54
55 s_char *
56 relatename(struct natstr *np, natid other)
57 {
58     return relates[getrel(np, other)];
59 }
60
61 s_char *
62 rejectname(struct natstr *np, natid other)
63 {
64     s_char *rejects[] = {
65         /* must follow reject flags defined in nat.h */
66         "  YES  YES  YES  YES",
67         "  NO   YES  YES  YES",
68         "  YES  NO   YES  YES",
69         "  NO   NO   YES  YES",
70         "  YES  YES  NO   YES",
71         "  NO   YES  NO   YES",
72         "  YES  NO   NO   YES",
73         "  NO   NO   NO   YES",
74         "  YES  YES  YES  NO ",
75         "  NO   YES  YES  NO ",
76         "  YES  NO   YES  NO ",
77         "  NO   NO   YES  NO ",
78         "  YES  YES  NO   NO ",
79         "  NO   YES  NO   NO ",
80         "  YES  NO   NO   NO ",
81         "  NO   NO   NO   NO "
82     };
83
84     return rejects[getrejects(other, np)];
85 }
86
87 s_char *
88 natstate(struct natstr *np)
89 {
90     if ((np->nat_stat & STAT_INUSE) == 0)
91         return "FREE";
92     if (np->nat_stat & STAT_GOD)
93         return "DEITY";
94     if ((np->nat_stat & STAT_NORM) == 0)
95         return "VISITOR";
96     return "ACTIVE";
97 }
98
99 /* This returns the relations that np has with them */
100 int
101 getrel(struct natstr *np, natid them)
102 {
103     return np->nat_relate[them];
104 }
105
106 int
107 getrejects(natid them, struct natstr *np)
108 {
109     int ind;
110     int shift;
111     int reject;
112
113     ind = them / 4;
114     shift = 12 - ((them - ((them / 4) << 2)) * 4);
115     reject = (np->nat_rejects[ind] >> shift) & 0x0f;
116     return reject;
117 }
118
119 void
120 agecontact(struct natstr *np)
121 {
122     int them;
123
124     for (them = 1; them < MAXNOC; ++them) {
125         if (them != np->nat_cnum && np->nat_contact[them]) {
126             --np->nat_contact[them];
127         }
128     }
129 }
130
131 unsigned char
132 getcontact(struct natstr *np, natid them)
133 {
134     return np->nat_contact[them];
135 }
136
137 void
138 putrel(struct natstr *np, natid them, int relate)
139 {
140     np->nat_relate[them] = relate;
141 }
142
143 void
144 putreject(struct natstr *np, natid them, int how, int what)
145 {
146     int shift;
147     int newrej;
148     int ind;
149
150     what &= 0x0f;
151     ind = them / 4;
152     shift = 12 - ((them - ((them / 4) << 2)) * 4);
153     newrej = np->nat_rejects[ind];
154     if (how)
155         newrej |= (what << shift);
156     else
157         newrej &= ~(what << shift);
158     np->nat_rejects[ind] = newrej;
159 }
160
161 void
162 putcontact(struct natstr *np, natid them, unsigned char contact)
163 {
164     if (np->nat_contact[them] < contact)
165         np->nat_contact[them] = contact;
166 }