]> git.pond.sub.org Git - empserver/blob - include/nuke.h
Generation numbers to catch write back of stale copies
[empserver] / include / nuke.h
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  *  nuke.h: Definitions for things having to do with nukes
29  *
30  *  Known contributors to this file:
31  *     Dave Pare, 1986
32  */
33
34 #ifndef NUKE_H
35 #define NUKE_H
36
37 #include <time.h>
38 #include "types.h"
39
40 #define N_MAXNUKE       20
41 #define MIN_DRNUKE_CONST        0.001
42
43 struct nukstr {
44     /* initial part must match struct empobj */
45     signed ef_type: 8;
46     unsigned nuk_seqno: 12;
47     unsigned nuk_generation: 12;
48     int nuk_uid;                /* unit id (nuke #) */
49     time_t nuk_timestamp;       /* Last time this nuke was touched */
50     natid nuk_own;
51     coord nuk_x, nuk_y;         /* current loc of device */
52     signed char nuk_type;       /* index in nchr[] */
53     signed char nuk_effic;      /* unused, always 100% */
54     signed char nuk_mobil;      /* unused, always 0 */
55     unsigned char nuk_off;      /* repairs stopped? (unused) */
56     short nuk_tech;             /* nuke's tech level */
57     char nuk_stockpile;         /* group membership, unused */
58     coord nuk_opx, nuk_opy;     /* Op sector coords, unused */
59     short nuk_mission;          /* mission code, unused */
60     short nuk_radius;           /* mission radius, unused */
61     /* end of part matching struct empobj */
62     int nuk_plane;              /* uid of transporting plane, or -1 */
63 };
64
65 struct nchrstr {
66     char *n_name;               /* warhead unit name */
67     int n_lcm;                  /* costs to build */
68     int n_hcm;
69     int n_oil;
70     int n_rad;
71     int n_blast;                /* blast radius */
72     int n_dam;                  /* damage at center */
73     int n_cost;
74     int n_tech;                 /* tech needed to build */
75     int n_weight;
76     int n_flags;                /* description of capability */
77     signed char n_type;         /* index in nchr[] */
78 };
79
80 #define N_NEUT  bit(0)          /* Neutron bomb (low damage, high fallout) */
81
82 #define getnuke(n, p) ef_read(EF_NUKE, (n), (p))
83 #define putnuke(n, p) ef_write(EF_NUKE, (n), (p))
84 #define getnukep(n) ((struct nukstr *)ef_ptr(EF_NUKE, (n)))
85
86 /* Work required for building */
87 #define NUK_BLD_WORK(lcm, hcm, oil, rad) \
88   (((lcm) + 2 * (hcm) + (oil) + (rad) + 4) / 5)
89
90 extern struct nchrstr nchr[N_MAXNUKE + 1];
91
92 /* src/lib/common/cargo.c */
93 extern void nuk_carrier_change(struct nukstr *, int, int, int);
94 extern int nuk_on_plane(struct plnstr *);
95
96 #endif