]> git.pond.sub.org Git - empserver/blob - src/lib/subs/natsub.c
cdec7a40446017b7d13c75164ea0cc3cc281c6c4
[empserver] / src / lib / subs / natsub.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2009, 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 files README, COPYING and CREDITS in the root of the source
23  *  tree for related information and legal notices.  It is expected
24  *  that future projects/authors will amend these files as needed.
25  *
26  *  ---
27  *
28  *  nat.c: Nation subroutines
29  *
30  *  Known contributors to this file:
31  *     Markus Armbruster, 2008
32  */
33
34 #include <config.h>
35
36 #include <string.h>
37 #include <ctype.h>
38 #include <fcntl.h>
39 #include <sys/stat.h>
40 #include <unistd.h>
41 #include "file.h"
42 #include "game.h"
43 #include "nat.h"
44 #include "optlist.h"
45 #include "prototypes.h"
46 #include "tel.h"
47 #include "xy.h"
48
49 /*
50  * Reset NATP for status STAT with origin/capital at X,Y.
51  * Wipes everything but nat_cnum, nat_cnam and nat_pnam.
52  * Also wipes realms and telegrams.
53  */
54 struct natstr *
55 nat_reset(struct natstr *natp, enum nat_status stat, coord x, coord y)
56 {
57     static struct range defrealm = { -8, -5, 10, 5, 0, 0 };
58     struct realmstr newrealm;
59     struct range absrealm;
60     char buf[1024];
61     int i;
62
63     natp->nat_stat = stat;
64     *natp->nat_hostaddr = '\0';
65     *natp->nat_hostname = '\0';
66     *natp->nat_userid = '\0';
67
68     natp->nat_xcap = natp->nat_xorg = x;
69     natp->nat_ycap = natp->nat_yorg = y;
70     if (stat == STAT_SANCT)
71         xyabsrange(natp, &defrealm, &absrealm);
72     else
73         memset(&absrealm, 0, sizeof(absrealm));
74     for (i = 0; i < MAXNOR; i++) {
75         ef_blank(EF_REALM, i + natp->nat_cnum * MAXNOR, &newrealm);
76         newrealm.r_cnum = natp->nat_cnum;
77         newrealm.r_realm = i;
78         newrealm.r_xl = absrealm.lx;
79         newrealm.r_xh = absrealm.hx;
80         newrealm.r_yl = absrealm.ly;
81         newrealm.r_yh = absrealm.hy;
82         putrealm(&newrealm);
83     }
84     if (players_at_00) {
85         natp->nat_xorg = 0;
86         natp->nat_yorg = 0;
87     }
88
89     natp->nat_timeused = 0;
90     natp->nat_update = 0;
91
92     natp->nat_tgms = 0;
93     close(creat(mailbox(buf, natp->nat_cnum), S_IRWUG));
94     natp->nat_ann = 0;          /* FIXME number of annos */
95
96     natp->nat_btu = stat == STAT_SANCT ? max_btus : 0;
97     natp->nat_access = 0;
98     game_tick_to_now(&natp->nat_access);
99     natp->nat_reserve = 0;
100     natp->nat_money = stat == STAT_SANCT ? start_cash : 0;
101     natp->nat_last_login = natp->nat_last_logout = 0;
102     natp->nat_newstim = 0;
103     natp->nat_annotim = 0;
104     natp->nat_level[NAT_HLEV] = start_happiness;
105     natp->nat_level[NAT_RLEV] = start_research;
106     natp->nat_level[NAT_TLEV] = start_technology;
107     natp->nat_level[NAT_ELEV] = start_education;
108     for (i = 0; i < MAXNOC; i++)
109         natp->nat_relate[i] = NEUTRAL;
110     memset(natp->nat_contact, 0, sizeof(natp->nat_rejects));
111     memset(natp->nat_rejects, 0, sizeof(natp->nat_rejects));
112     natp->nat_flags =
113         NF_FLASH | NF_BEEP | NF_COASTWATCH | NF_SONAR | NF_TECHLISTS;
114
115     return natp;
116 }
117
118 int
119 check_nat_name(char *cname)
120 {
121     struct natstr *natp;
122     natid cn;
123     int allblank;
124     char *p;
125
126     if (strlen(cname) >= sizeof(natp->nat_cnam)) {
127         pr("Country name too long\n");
128         return 0;
129     }
130
131     allblank = 1;
132     for (p = cname; *p != '\0'; p++) {
133         if (iscntrl(*p)) {
134             pr("No control characters allowed in country names!\n");
135             return 0;
136         } else if (!isspace(*p))
137             allblank = 0;
138     }
139     if (allblank) {
140         pr("Country name can't be all blank\n");
141         return 0;
142     }
143
144     for (cn = 0; NULL != (natp = getnatp(cn)); cn++) {
145         if (!strcmp(cname, natp->nat_cnam)) {
146             pr("Country #%d is already called `%s'\n", cn, cname);
147             return 0;
148         }
149     }
150     return 1;
151 }