]> git.pond.sub.org Git - empserver/blob - src/lib/subs/nuke.c
Indented with src/scripts/indent-emp.
[empserver] / src / lib / subs / nuke.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2000, 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 the "LEGAL", "LICENSE", "CREDITS" and "README" files for all the
23  *  related information and legal notices. It is expected that any future
24  *  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  */
34
35 #include "misc.h"
36 #include "player.h"
37 #include "var.h"
38 #include "nuke.h"
39 #include "sect.h"
40 #include "xy.h"
41 #include "nsc.h"
42 #include "file.h"
43 #include "nat.h"
44 #include "deity.h"
45 #include "prototypes.h"
46
47 /*ARGSUSED*/
48 int
49 nuk_postread(int n, s_char *ptr)
50 {
51     struct nukstr *np = (struct nukstr *)ptr;
52
53     if (np->nuk_uid != n) {
54         logerror("nuk_postread: Error - %d != %d, zeroing.\n", np->nuk_uid,
55                  n);
56         bzero(ptr, sizeof(struct nukstr));
57     }
58     player->owner = (player->god || np->nuk_own == player->cnum);
59     return 1;
60 }
61
62 /*ARGSUSED*/
63 int
64 nuk_prewrite(int n, s_char *ptr)
65 {
66     struct nukstr *np = (struct nukstr *)ptr;
67     struct nukstr nuke;
68
69     np->ef_type = EF_NUKE;
70     np->nuk_uid = n;
71
72     time(&np->nuk_timestamp);
73
74     getnuke(n, &nuke);
75
76     return 1;
77 }
78
79 void
80 nuk_init(int n, s_char *ptr)
81 {
82     struct nukstr *np = (struct nukstr *)ptr;
83
84     np->ef_type = EF_NUKE;
85     np->nuk_uid = n;
86     np->nuk_own = 0;
87 }
88
89 void
90 nuk_add(coord x, coord y, int type, int num)
91 {
92     struct nukstr nuke;
93     struct sctstr sect;
94     int nuk_uid;
95     natid own;
96     int n;
97
98     /* getsect in case of world wraparound */
99     getsect(x, y, &sect);
100     if (!(own = sect.sct_own))
101         return;
102     x = sect.sct_x;
103     y = sect.sct_y;
104
105     /*
106      * either find a stockpile in x,y or add a new one
107      */
108     nuk_uid = -1;
109     for (n = 0; getnuke(n, &nuke); n++) {
110         if (nuke.nuk_own == own) {
111             if (nuke.nuk_x == x && nuke.nuk_y == y) {
112                 nuk_uid = n;
113                 break;
114             }
115         } else if (nuke.nuk_own == 0 && nuk_uid == -1)
116             nuk_uid = n;
117     }
118     if (nuk_uid == -1)
119         nuk_uid = n;
120     if (getnuke(nuk_uid, &nuke) == 0) {
121         ef_extend(EF_NUKE, 10);
122         bzero((s_char *)&nuke, sizeof(struct nukstr));
123         nuke.nuk_uid = nuk_uid;
124         nuke.nuk_ship = -1;
125         nuke.nuk_n = 0;
126         makenotlost(EF_NUKE, nuke.nuk_own, nuke.nuk_uid, nuke.nuk_x,
127                     nuke.nuk_y);
128     }
129     nuke.nuk_x = x;
130     nuke.nuk_y = y;
131     nuke.nuk_own = own;
132     nuke.nuk_types[type] += num;
133     nuke.nuk_n += num;
134
135     if (!putnuke(nuke.nuk_uid, &nuke))
136         pr("Problem with the nuclear stockpiles, tell the deity.\n");
137
138 }
139
140 void
141 nuk_delete(struct nukstr *np, int type, int num)
142 {
143     if (np->nuk_types[type] < num)
144         num = np->nuk_types[type];
145     np->nuk_types[type] -= num;
146     np->nuk_n -= num;
147     if (np->nuk_n <= 0) {
148         makelost(EF_NUKE, np->nuk_own, np->nuk_uid, np->nuk_x, np->nuk_y);
149         np->nuk_own = 0;
150     }
151     putnuke(np->nuk_uid, np);
152 }