]> git.pond.sub.org Git - empserver/blob - src/lib/subs/sect.c
Remove pointless getFOO() from prewrite callbacks
[empserver] / src / lib / subs / sect.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  *  sect.c: Sector pre-write and post-read data massage
29  * 
30  *  Known contributors to this file:
31  *     Dave Pare, 1989
32  *     Steve McClure, 1996
33  */
34
35 #include <config.h>
36
37 #include <ctype.h>
38 #include "file.h"
39 #include "land.h"
40 #include "lost.h"
41 #include "misc.h"
42 #include "nat.h"
43 #include "nsc.h"
44 #include "optlist.h"
45 #include "plane.h"
46 #include "player.h"
47 #include "prototypes.h"
48 #include "sect.h"
49 #include "xy.h"
50
51 static int checksect(struct sctstr *);
52
53 void
54 sct_postread(int id, void *ptr)
55 {
56     struct sctstr *sp = ptr;
57
58     checksect(sp);
59     player->owner = (player->god || sp->sct_own == player->cnum);
60     if (opt_MOB_ACCESS)
61         sct_do_upd_mob(sp);
62 }
63
64 void
65 sct_prewrite(int id, void *ptr)
66 {
67     struct sctstr *sp = ptr;
68
69     bridge_damaged(sp);
70     checksect(sp);
71 }
72
73 void
74 item_prewrite(short *item)
75 {
76     i_type i;
77
78     for (i = I_NONE + 1; i <= I_MAX; ++i) {
79         if (CANT_HAPPEN(item[i] < 0))
80             item[i] = 0;
81         else if (CANT_HAPPEN(item[i] > ITEM_MAX))
82             item[i] = ITEM_MAX;
83     }
84 }
85
86 static int
87 checksect(struct sctstr *sp)
88 {
89     int mil, civs, loyalcivs;
90     natid own;
91
92     item_prewrite(sp->sct_item);
93
94     /* shouldn't happen, but... */
95     if (sp->sct_mobil > 127)
96         sp->sct_mobil = 0;
97
98     mil = sp->sct_item[I_MILIT];
99     civs = sp->sct_item[I_CIVIL];
100     if (sp->sct_own == sp->sct_oldown)
101         loyalcivs = civs;
102     else
103         loyalcivs = 0;
104
105     if (sp->sct_own != 0 && !civs) {
106         sp->sct_work = 100;
107         sp->sct_oldown = sp->sct_own;
108     }
109     /* If they have a military unit there, they still own it */
110     if (sp->sct_own && !loyalcivs && !(sp->sct_flags & MOVE_IN_PROGRESS)) {
111         if (!mil && !has_units(sp->sct_x, sp->sct_y, sp->sct_own, 0)) {
112             /* more cruft! */
113             own = sp->sct_own;
114             if (sp->sct_oldown == sp->sct_own) {
115                 makelost(EF_SECTOR, sp->sct_own, 0, sp->sct_x, sp->sct_y);
116                 sp->sct_own = 0;
117                 sp->sct_oldown = 0;
118             } else
119                 takeover(sp, sp->sct_oldown);
120             sp->sct_mobil = 0;
121             if (sp->sct_type == SCT_CAPIT || sp->sct_type == SCT_MOUNT)
122                 caploss(sp, own, "");
123         }
124     }
125     return 1;
126 }
127
128 int
129 issector(char *arg)
130 {
131     char c;
132
133     while (0 != (c = *arg++))
134         if (!isdigit(c) && !isspace(c) && (c != '/'))
135             return 1;
136
137     return 0;
138 }