]> git.pond.sub.org Git - empserver/blob - include/empobj.h
(put_empobj): New. Put generic empobj into the appropriate data file.
[empserver] / include / empobj.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  *  empobj.h: General empire objects.
29  * 
30  *  Known contributors to this file:
31  *     Ron Koenderink, 2006
32  *     Markus Armbruster, 2006
33  */
34
35 #ifndef EMPOBJ_H
36 #define EMPOBJ_H
37
38 #include "commodity.h"
39 #include "land.h"
40 #include "loan.h"
41 #include "lost.h"
42 #include "nat.h"
43 #include "news.h"
44 #include "nuke.h"
45 #include "plane.h"
46 #include "sect.h"
47 #include "ship.h"
48 #include "trade.h"
49 #include "treaty.h"
50 #include "types.h"
51
52 struct empobj {
53     short ef_type;      /* is always valid */
54     natid own;          /* is valid if EFF_OWNER   is set in table def. */
55     short uid;
56     coord x;            /* is valid if EFF_XY      is set in table def. */
57     coord y;            /* is valid if EFF_XY      is set in table def. */
58     signed char type;
59     signed char effic;
60     signed char mobil;
61     unsigned char off;
62     short tech; 
63     char group;         /* is valid if EFF_GROUP   is set in table def. */
64     coord opx, opy;
65     short mission;
66     short radius;
67 };
68
69 union empobj_storage {
70     short ef_type;
71     struct empobj gen;
72     struct comstr comm;
73     struct lndstr land;
74     struct lonstr loan;
75     struct loststr lost;
76     struct natstr nat; 
77     struct nwsstr news;
78     struct nukstr nuke;
79     struct plnstr plane;
80     struct realmstr realm;
81     struct sctstr sect;
82     struct shpstr ship;
83     struct trdstr trade;
84     struct trtstr treaty;
85 };
86
87 extern char *obj_nameof(struct empobj *gp);
88 extern int put_empobj(struct empobj *gp);
89 extern void *get_empobj_chr(struct empobj *gp);
90
91 #endif