]> git.pond.sub.org Git - empserver/blob - src/lib/player/init_nats.c
0390e7e29576745a5fc65ce6c9ea9289e48d5c7d
[empserver] / src / lib / player / init_nats.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2017, 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  *  init_nats.c: Initialize country and nation file stuff
28  *
29  *  Known contributors to this file:
30  *     Dave Pare, 1994
31  *     Steve McClure, 2000
32  *     Markus Armbruster, 2007-2016
33  */
34
35 #include <config.h>
36
37 #include "game.h"
38 #include "misc.h"
39 #include "nat.h"
40 #include "optlist.h"
41 #include "player.h"
42 #include "prototypes.h"
43
44 int
45 init_nats(void)
46 {
47     struct natstr *np;
48
49     np = getnatp(player->cnum);
50     if (CANT_HAPPEN(!np))
51         return -1;
52
53     player->map = ef_ptr(EF_MAP, player->cnum);
54     player->bmap = ef_ptr(EF_BMAP, player->cnum);
55
56     player_set_nstat(player, np);
57     grant_btus(np, game_tick_to_now(&np->nat_access));
58
59     putnat(np);
60     return 0;
61 }
62
63 int
64 player_set_nstat(struct player *pl, struct natstr *np)
65 {
66     static int nstat[] = {
67         /* must match nat_status */
68         0, NONVIS, 0, SANCT | NONVIS, NORM | NONVIS,
69         GOD | NORM | NONVIS | CAP | MONEY
70     };
71
72     if (CANT_HAPPEN(pl->cnum != np->nat_cnum))
73         return pl->nstat;
74     pl->god = np->nat_stat == STAT_GOD;
75     pl->nstat = nstat[np->nat_stat];
76     if (np->nat_money >= 0)
77         pl->nstat |= MONEY;
78     if (np->nat_stat == STAT_ACTIVE && !influx(np))
79         pl->nstat |= CAP;
80     if (running_test_suite)
81         pl->nstat |= TESTING;
82     pl->nstat |= EXEC;
83     return pl->nstat;
84 }