]> git.pond.sub.org Git - empserver/blob - src/lib/subs/natsub.c
Fix trailing whitespace
[empserver] / src / lib / subs / natsub.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2008, 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 <fcntl.h>
38 #include <sys/stat.h>
39 #include <unistd.h>
40 #include "file.h"
41 #include "game.h"
42 #include "nat.h"
43 #include "optlist.h"
44 #include "tel.h"
45 #include "xy.h"
46
47 /*
48  * Reset NATP for status STAT with origin/capital at X,Y.
49  * Wipes everything but nat_cnum, nat_cnam and nat_pnam.
50  * Also wipes realms and telegrams.
51  */
52 struct natstr *
53 nat_reset(struct natstr *natp, enum nat_status stat, coord x, coord y)
54 {
55     static struct range defrealm = { -8, -5, 10, 5, 0, 0 };
56     struct realmstr newrealm;
57     struct range absrealm;
58     char buf[1024];
59     int i;
60
61     natp->nat_stat = stat;
62     *natp->nat_hostaddr = '\0';
63     *natp->nat_hostname = '\0';
64     *natp->nat_userid = '\0';
65
66     natp->nat_xcap = natp->nat_xorg = x;
67     natp->nat_ycap = natp->nat_yorg = y;
68     if (stat == STAT_SANCT)
69         xyabsrange(natp, &defrealm, &absrealm);
70     else
71         memset(&absrealm, 0, sizeof(absrealm));
72     for (i = 0; i < MAXNOR; i++) {
73         ef_blank(EF_REALM, i + natp->nat_cnum * MAXNOR, &newrealm);
74         newrealm.r_cnum = natp->nat_cnum;
75         newrealm.r_realm = i;
76         newrealm.r_xl = absrealm.lx;
77         newrealm.r_xh = absrealm.hx;
78         newrealm.r_yl = absrealm.ly;
79         newrealm.r_yh = absrealm.hy;
80         putrealm(&newrealm);
81     }
82     if (players_at_00) {
83         natp->nat_xorg = 0;
84         natp->nat_yorg = 0;
85     }
86
87     natp->nat_dayno = 0;
88     natp->nat_minused = 0;
89     natp->nat_update = 0;
90
91     natp->nat_tgms = 0;
92     close(creat(mailbox(buf, natp->nat_cnum), S_IRWUG));
93     natp->nat_ann = 0;          /* FIXME number of annos */
94
95     natp->nat_btu = stat == STAT_SANCT ? max_btus : 0;
96     natp->nat_access = 0;
97     game_tick_to_now(&natp->nat_access);
98     natp->nat_reserve = 0;
99     natp->nat_money = stat == STAT_SANCT ? start_cash : 0;
100     natp->nat_last_login = natp->nat_last_login = 0;
101     natp->nat_newstim = 0;
102     natp->nat_annotim = 0;
103     natp->nat_level[NAT_HLEV] = start_happiness;
104     natp->nat_level[NAT_RLEV] = start_research;
105     natp->nat_level[NAT_TLEV] = start_technology;
106     natp->nat_level[NAT_ELEV] = start_education;
107     for (i = 0; i < MAXNOC; i++)
108         natp->nat_relate[i] = NEUTRAL;
109     memset(natp->nat_contact, 0, sizeof(natp->nat_rejects));
110     memset(natp->nat_rejects, 0, sizeof(natp->nat_rejects));
111     natp->nat_flags =
112         NF_FLASH | NF_BEEP | NF_COASTWATCH | NF_SONAR | NF_TECHLISTS;
113
114     return natp;
115 }