]> git.pond.sub.org Git - empserver/blob - src/lib/subs/ship.c
Update copyright notice
[empserver] / src / lib / subs / ship.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2021, 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  *  ship.c: Ship pre-write data massage
28  *
29  *  Known contributors to this file:
30  *     Dave Pare, 1989
31  *     Steve McClure, 1996
32  *     Markus Armbruster, 2004-2016
33  */
34
35 #include <config.h>
36
37 #include "lost.h"
38 #include "misc.h"
39 #include "optlist.h"
40 #include "player.h"
41 #include "prototypes.h"
42 #include "ship.h"
43 #include "unit.h"
44 #include "update.h"
45
46 void
47 shp_postread(int n, void *ptr)
48 {
49     struct shpstr *sp = ptr;
50
51     if (sp->shp_uid != n) {
52         logerror("shp_postread: Error - %d != %d, zeroing.\n",
53                  sp->shp_uid, n);
54         memset(sp, 0, sizeof(struct shpstr));
55     }
56
57     player->owner = (player->god || sp->shp_own == player->cnum);
58
59     if (opt_MOB_ACCESS & sp->shp_own && !update_running)
60         mob_inc_ship(sp, game_tick_to_now(&sp->shp_access));
61 }
62
63 void
64 shp_prewrite(int n, void *old, void *new)
65 {
66     struct shpstr *oldsp = old;
67     struct shpstr *sp = new;
68     natid own = sp->shp_effic < SHIP_MINEFF ? 0 : sp->shp_own;
69
70     if (!own) {
71         sp->shp_effic = 0;
72         if (sp->shp_own)
73             mpr(sp->shp_own, "\t%s sunk!\n", prship(sp));
74     }
75     item_prewrite(sp->shp_item);
76
77     /* We've avoided assigning to sp->shp_own, in case oldsp == sp */
78     if (oldsp->shp_own != own) {
79         lost_and_found(EF_SHIP, oldsp->shp_own, own,
80                        sp->shp_uid, sp->shp_x, sp->shp_y);
81         CANT_HAPPEN(!oldsp->shp_own
82                     && unit_update_cargo((struct empobj *)oldsp));
83     }
84
85     sp->shp_own = own;
86     if (!own || sp->shp_x != oldsp->shp_x || sp->shp_y != oldsp->shp_y)
87         unit_update_cargo((struct empobj *)sp);
88 }
89
90 char *
91 prship(struct shpstr *sp)
92 {
93     return prbuf("%s %s(#%d)",
94                  mchr[(int)sp->shp_type].m_name, sp->shp_name,
95                  sp->shp_uid);
96 }