]> git.pond.sub.org Git - empserver/blob - src/lib/subs/check.c
77f91b72d71ebd7c453c378f3f3d37ffd41b23e2
[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  *     Markus Armbruster, 2004-2009
33  */
34
35 #include <config.h>
36
37 #include "commodity.h"
38 #include "empobj.h"
39 #include "file.h"
40 #include "player.h"
41 #include "prototypes.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     return memcmp(&tobj, &old, sz);
57 }
58
59 int
60 check_sect_ok(struct sctstr *sectp)
61 {
62     if (obj_changed((struct empobj *)sectp, sizeof(*sectp))) {
63         pr("Sector %s has changed!\n",
64            xyas(sectp->sct_x, sectp->sct_y, player->cnum));
65         return 0;
66     }
67     return 1;
68 }
69
70 int
71 check_ship_ok(struct shpstr *shipp)
72 {
73     if (obj_changed((struct empobj *)shipp, sizeof(*shipp))) {
74         pr("Ship #%d has changed!\n", shipp->shp_uid);
75         return 0;
76     }
77     return 1;
78 }
79
80 int
81 check_plane_ok(struct plnstr *planep)
82 {
83     if (obj_changed((struct empobj *)planep, sizeof(*planep))) {
84         pr("Plane #%d has changed!\n", planep->pln_uid);
85         return 0;
86     }
87     return 1;
88 }
89
90 int
91 check_land_ok(struct lndstr *landp)
92 {
93     if (obj_changed((struct empobj *)landp, sizeof(*landp))) {
94         pr("Land unit #%d has changed!\n", landp->lnd_uid);
95         return 0;
96     }
97     return 1;
98 }
99
100 int
101 check_nuke_ok(struct nukstr *nukep)
102 {
103     if (obj_changed((struct empobj *)nukep, sizeof(*nukep))) {
104         pr("Nuke %d has changed!\n", nukep->nuk_uid);
105         return 0;
106     }
107     return 1;
108 }
109
110 int
111 check_loan_ok(struct lonstr *loanp)
112 {
113     if (obj_changed((struct empobj *)loanp, sizeof(*loanp))) {
114         pr("Loan %d has changed!\n", loanp->l_uid);
115         return 0;
116     }
117     return 1;
118 }
119
120 int
121 check_comm_ok(struct comstr *commp)
122 {
123     if (obj_changed((struct empobj *)commp, sizeof(*commp))) {
124         pr("Commodity %d has changed!\n", commp->com_uid);
125         return 0;
126     }
127     return 1;
128 }
129
130 int
131 check_trade_ok(struct trdstr *tp)
132 {
133     if (obj_changed((struct empobj *)tp, sizeof(*tp))) {
134         pr("Trade lot #%d has changed!\n", tp->trd_uid);
135         return 0;
136     }
137     return 1;
138 }