]> git.pond.sub.org Git - empserver/blob - include/lost.h
3723944dda896190f7618812c17a81860e606e04
[empserver] / include / lost.h
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2006, 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  *  lost.h: Definitions for lost items
29  * 
30  *  Known contributors to this file:
31  *     Steve McClure, 1997
32  */
33
34 #ifndef LOST_H
35 #define LOST_H
36
37 #include <time.h>
38 #include "types.h"
39
40 struct loststr {
41     /* initial part must match struct empobj */
42     short ef_type;
43     natid lost_owner;           /* Who lost it */
44     /* end of part matching struct empobj */
45     int lost_uid;               /* lost ID (assigned, otherwise unused) */
46     short lost_type;            /* Type of thing (ship, plane, nuke, land, sector) */
47     short lost_id;              /* ID of lost thing */
48     coord lost_x;
49     coord lost_y;
50     time_t lost_timestamp;      /* When it was lost */
51 };
52
53 #define getlost(n, p) ef_read(EF_LOST, (n), (p))
54 #define putlost(n, p) ef_write(EF_LOST, (n), (p))
55
56 /* src/lib/subs/lostsub.c */
57 extern void makelost(short, natid, short, coord, coord);
58 extern void makenotlost(short, natid, short, coord, coord);
59
60 #endif