]> git.pond.sub.org Git - empserver/blob - src/lib/common/nat.c
Update copyright notice.
[empserver] / src / lib / common / nat.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2004, 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     if (opt_LOSE_CONTACT) {
125         for (them = 1; them < MAXNOC; ++them) {
126             if (them != np->nat_cnum && np->nat_contact[them]) {
127                 --np->nat_contact[them];
128             }
129         }
130     }
131 }
132
133 int
134 getcontact(struct natstr *np, natid them)
135 {
136     int contact;
137
138     if (opt_LOSE_CONTACT) {
139         contact = np->nat_contact[them];
140     } else {
141         int ind = them / 16;
142         int shift = (them % 16);
143
144         contact = (np->nat_contact[ind] >> shift) & 1;
145     }
146     return contact;
147 }
148
149 void
150 putrel(struct natstr *np, natid them, int relate)
151 {
152     np->nat_relate[them] = relate;
153 }
154
155 void
156 putreject(struct natstr *np, natid them, int how, int what)
157 {
158     int shift;
159     int newrej;
160     int ind;
161
162     what &= 0x0f;
163     ind = them / 4;
164     shift = 12 - ((them - ((them / 4) << 2)) * 4);
165     newrej = np->nat_rejects[ind];
166     if (how)
167         newrej |= (what << shift);
168     else
169         newrej &= ~(what << shift);
170     np->nat_rejects[ind] = newrej;
171 }
172
173 void
174 putcontact(struct natstr *np, natid them, int contact)
175 {
176     if (opt_LOSE_CONTACT) {
177         if (np->nat_contact[them] > contact)
178             return;
179         np->nat_contact[them] = contact;
180     } else {
181         int ind = them / 16;
182         int shift = them % 16;
183         int new = np->nat_contact[ind];
184         if (contact)
185             contact = 1;
186         new &= ~(1 << shift);
187         new |= (contact << shift);
188         np->nat_contact[ind] = new;
189     }
190 }