]> git.pond.sub.org Git - empserver/blob - src/lib/subs/plane.c
Update copyright notice
[empserver] / src / lib / subs / plane.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2016, 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  *  plane.c: Plane post-read and pre-write data massage
28  *
29  *  Known contributors to this file:
30  *     Dave Pare, 1989
31  *     Steve McClure, 1996
32  *     Markus Armbruster, 2006-2011
33  */
34
35 #include <config.h>
36
37 #include "file.h"
38 #include "lost.h"
39 #include "misc.h"
40 #include "optlist.h"
41 #include "plane.h"
42 #include "player.h"
43 #include "prototypes.h"
44 #include "unit.h"
45
46 void
47 pln_postread(int n, void *ptr)
48 {
49     struct plnstr *pp = ptr;
50
51     if (pp->pln_uid != n) {
52         logerror("pln_postread: Error - %d != %d, zeroing.\n",
53                  pp->pln_uid, n);
54         memset(pp, 0, sizeof(struct plnstr));
55     }
56     player->owner = (player->god || pp->pln_own == player->cnum);
57     if (opt_MOB_ACCESS)
58         pln_do_upd_mob(pp);
59 }
60
61 void
62 pln_prewrite(int n, void *old, void *new)
63 {
64     struct plnstr *oldpp = old;
65     struct plnstr *pp = new;
66     natid own = pp->pln_effic < PLANE_MINEFF ? 0 : pp->pln_own;
67     int ship = pp->pln_ship;
68     int land = pp->pln_land;
69
70     /* Be careful with writing to *pp, in case oldpp == pp */
71
72     if (!own) {
73         pp->pln_effic = 0;
74         ship = land = -1;
75     }
76
77     if (CANT_HAPPEN(ship >= 0 && land >= 0))
78         land = -1;
79     if (oldpp->pln_ship != ship)
80         pln_carrier_change(pp, EF_SHIP, oldpp->pln_ship, ship);
81     if (oldpp->pln_land != land)
82         pln_carrier_change(pp, EF_LAND, oldpp->pln_land, land);
83
84     if (oldpp->pln_own != own) {
85         lost_and_found(EF_PLANE, oldpp->pln_own, own,
86                        pp->pln_uid, pp->pln_x, pp->pln_y);
87         CANT_HAPPEN(!oldpp->pln_own
88                     && unit_update_cargo((struct empobj *)oldpp));
89     }
90
91     pp->pln_own = own;
92     pp->pln_ship = ship;
93     pp->pln_land = land;
94     if (!own || pp->pln_x != oldpp->pln_x || pp->pln_y != oldpp->pln_y)
95         unit_update_cargo((struct empobj *)pp);
96 }
97
98 char *
99 prplane(struct plnstr *pp)
100 {
101     return prbuf("%s #%d", plchr[(int)pp->pln_type].pl_name, pp->pln_uid);
102 }