]> git.pond.sub.org Git - empserver/blob - src/lib/subs/nuke.c
0708ff579afeaf3df9ebf464a4629926df35c168
[empserver] / src / lib / subs / nuke.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2008, 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  *  nuke.c: Nuke post-read and pre-write data massage
29  * 
30  *  Known contributors to this file:
31  *     Dave Pare, 1989
32  *     Steve McClure, 1996
33  *     Markus Armbruster, 2006-2008
34  */
35
36 #include <config.h>
37
38 #include "file.h"
39 #include "lost.h"
40 #include "misc.h"
41 #include "nat.h"
42 #include "nsc.h"
43 #include "nuke.h"
44 #include "plane.h"
45 #include "player.h"
46 #include "prototypes.h"
47
48 void
49 nuk_postread(int n, void *ptr)
50 {
51     struct nukstr *np = ptr;
52     struct plnstr plane;
53
54     if (np->nuk_uid != n) {
55         logerror("nuk_postread: Error - %d != %d, zeroing.\n",
56                  np->nuk_uid, n);
57         memset(np, 0, sizeof(struct nukstr));
58     }
59
60     if (np->nuk_plane >= 0 && np->nuk_own && np->nuk_effic >= 0) {
61         if (getplane(np->nuk_plane, &plane)
62             && plane.pln_effic >= PLANE_MINEFF) {
63             if (np->nuk_x != plane.pln_x || np->nuk_y != plane.pln_y) {
64                 time(&np->nuk_timestamp);
65                 np->nuk_x = plane.pln_x;
66                 np->nuk_y = plane.pln_y;
67             }
68         }
69     }
70
71     player->owner = (player->god || np->nuk_own == player->cnum);
72 }
73
74 void
75 nuk_prewrite(int n, void *old, void *new)
76 {
77     struct nukstr *oldnp = old;
78     struct nukstr *np = new;
79     natid own = np->nuk_own;
80
81     if (np->nuk_effic == 0) {
82         own = 0;
83         np->nuk_plane = -1;
84     }
85
86     if (oldnp->nuk_plane != np->nuk_plane)
87         nuk_carrier_change(np, EF_PLANE, oldnp->nuk_plane, np->nuk_plane);
88
89     /* We've avoided assigning to np->nuk_own, in case oldsp == sp */
90     if (oldnp->nuk_own != own)
91         lost_and_found(EF_NUKE, oldnp->nuk_own, own,
92                        np->nuk_uid, np->nuk_x, np->nuk_y);
93
94     np->nuk_own = own;
95 }
96
97 int
98 nuk_on_plane(struct nukstr *np, int pluid)
99 {
100     struct nstr_item ni;
101
102     snxtitem_all(&ni, EF_NUKE);
103     while (nxtitem(&ni, np)) {
104         if (np->nuk_own == 0)
105             continue;
106         if (np->nuk_plane == pluid)
107             return np->nuk_uid;
108     }
109     return -1;
110 }
111
112 void
113 nuk_oninit(void *ptr)
114 {
115     struct nukstr *np = ptr;
116
117     np->nuk_plane = -1;
118 }
119
120 char *
121 prnuke(struct nukstr *np)
122 {
123     return prbuf("%s warhead #%d",
124                  nchr[(int)np->nuk_type].n_name, np->nuk_uid);
125 }