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