]> git.pond.sub.org Git - empserver/blob - src/lib/subs/check.c
Clean up superfluous include of nsc.h in prototypes.h
[empserver] / src / lib / subs / check.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2011, 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  *  check.c: Check a sector, plane, land unit, ship or nuke
28  *
29  *  Known contributors to this file:
30  *     Steve McClure, 1998
31  *     Markus Armbruster, 2004-2009
32  */
33
34 #include <config.h>
35
36 #include "commodity.h"
37 #include "empobj.h"
38 #include "file.h"
39 #include "player.h"
40 #include "prototypes.h"
41 #include "xy.h"
42
43 /* Note that timestamps make things tricky.  And, we don't
44  * really care about the timestamp, we just care about the rest
45  * of the structure.  So, we make a copy, and zero the timestamps
46  * in both copies, and then compare. */
47
48 static int
49 obj_changed(struct empobj *obj, size_t sz)
50 {
51     union empobj_storage old, tobj;
52
53     get_empobj(obj->ef_type, obj->uid, &old);
54     memcpy(&tobj, obj, sz);
55     old.gen.timestamp = tobj.gen.timestamp = 0;
56     old.gen.generation = tobj.gen.generation = 0;
57     if (memcmp(&tobj, &old, sz))
58         return 1;
59     ef_mark_fresh(obj->ef_type, obj);
60     return 0;
61 }
62
63 int
64 check_sect_ok(struct sctstr *sectp)
65 {
66     if (obj_changed((struct empobj *)sectp, sizeof(*sectp))) {
67         pr("Sector %s has changed!\n",
68            xyas(sectp->sct_x, sectp->sct_y, player->cnum));
69         return 0;
70     }
71     return 1;
72 }
73
74 int
75 check_ship_ok(struct shpstr *shipp)
76 {
77     if (obj_changed((struct empobj *)shipp, sizeof(*shipp))) {
78         pr("Ship #%d has changed!\n", shipp->shp_uid);
79         return 0;
80     }
81     return 1;
82 }
83
84 int
85 check_plane_ok(struct plnstr *planep)
86 {
87     if (obj_changed((struct empobj *)planep, sizeof(*planep))) {
88         pr("Plane #%d has changed!\n", planep->pln_uid);
89         return 0;
90     }
91     return 1;
92 }
93
94 int
95 check_land_ok(struct lndstr *landp)
96 {
97     if (obj_changed((struct empobj *)landp, sizeof(*landp))) {
98         pr("Land unit #%d has changed!\n", landp->lnd_uid);
99         return 0;
100     }
101     return 1;
102 }
103
104 int
105 check_nuke_ok(struct nukstr *nukep)
106 {
107     if (obj_changed((struct empobj *)nukep, sizeof(*nukep))) {
108         pr("Nuke %d has changed!\n", nukep->nuk_uid);
109         return 0;
110     }
111     return 1;
112 }
113
114 int
115 check_loan_ok(struct lonstr *loanp)
116 {
117     if (obj_changed((struct empobj *)loanp, sizeof(*loanp))) {
118         pr("Loan %d has changed!\n", loanp->l_uid);
119         return 0;
120     }
121     return 1;
122 }
123
124 int
125 check_comm_ok(struct comstr *commp)
126 {
127     if (obj_changed((struct empobj *)commp, sizeof(*commp))) {
128         pr("Commodity %d has changed!\n", commp->com_uid);
129         return 0;
130     }
131     return 1;
132 }
133
134 int
135 check_trade_ok(struct trdstr *tp)
136 {
137     if (obj_changed((struct empobj *)tp, sizeof(*tp))) {
138         pr("Trade lot #%d has changed!\n", tp->trd_uid);
139         return 0;
140     }
141     return 1;
142 }