]> git.pond.sub.org Git - empserver/blob - src/lib/subs/sect.c
Update copyright notice
[empserver] / src / lib / subs / sect.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2015, 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  *  sect.c: Sector pre-write and post-read data massage
28  *
29  *  Known contributors to this file:
30  *     Dave Pare, 1989
31  *     Steve McClure, 1996
32  *     Markus Armbruster, 2004-2014
33  */
34
35 #include <config.h>
36
37 #include <ctype.h>
38 #include "file.h"
39 #include "lost.h"
40 #include "misc.h"
41 #include "nsc.h"
42 #include "optlist.h"
43 #include "player.h"
44 #include "prototypes.h"
45 #include "sect.h"
46 #include "xy.h"
47
48 void
49 sct_postread(int id, void *ptr)
50 {
51     struct sctstr *sp = ptr;
52
53     player->owner = (player->god || sp->sct_own == player->cnum);
54     if (opt_MOB_ACCESS)
55         sct_do_upd_mob(sp);
56 }
57
58 void
59 sct_prewrite(int id, void *old, void *new)
60 {
61     struct sctstr *oldsp = old;
62     struct sctstr *sp = new;
63     coord x, y;
64     int mil, civs;
65     natid own, prev_own;
66
67     sctoff2xy(&x, &y, sp->sct_uid);
68     if (CANT_HAPPEN(sp->sct_x != x || sp->sct_y != y)) {
69         sp->sct_x = x;
70         sp->sct_y = y;
71     }
72
73     bridge_damaged(sp);
74     item_prewrite(sp->sct_item);
75
76     mil = sp->sct_item[I_MILIT];
77     civs = sp->sct_item[I_CIVIL];
78     own = sp->sct_own;
79     prev_own = oldsp->sct_own;
80
81     if (own && !civs) {
82         sp->sct_work = 100;
83         sp->sct_oldown = own;
84     }
85
86     if (own && !civs && !mil && !has_units(sp->sct_x, sp->sct_y, own)
87         && !(sp->sct_flags & MOVE_IN_PROGRESS)) {
88         /* more cruft! */
89         own = sp->sct_own = 0;
90         sp->sct_mobil = 0;
91         if (sp->sct_type == SCT_CAPIT || sp->sct_type == SCT_MOUNT)
92             caploss(sp, prev_own, "");
93     }
94
95     if (prev_own != own)
96         lost_and_found(EF_SECTOR, prev_own, own, 0, sp->sct_x, sp->sct_y);
97 }
98
99 void
100 item_prewrite(short *item)
101 {
102     i_type i;
103
104     for (i = I_NONE + 1; i <= I_MAX; ++i) {
105         if (CANT_HAPPEN(item[i] < 0))
106             item[i] = 0;
107         else if (CANT_HAPPEN(item[i] > ITEM_MAX))
108             item[i] = ITEM_MAX;
109     }
110 }
111
112 int
113 issector(char *arg)
114 {
115     char c;
116
117     while (0 != (c = *arg++))
118         if (!isdigit(c) && !isspace(c) && (c != '/'))
119             return 1;
120
121     return 0;
122 }