]> git.pond.sub.org Git - empserver/blob - include/empobj.h
Update copyright notice
[empserver] / include / empobj.h
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  *  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 "game.h"
40 #include "land.h"
41 #include "loan.h"
42 #include "lost.h"
43 #include "nat.h"
44 #include "news.h"
45 #include "nuke.h"
46 #include "plane.h"
47 #include "sect.h"
48 #include "ship.h"
49 #include "trade.h"
50 #include "treaty.h"
51 #include "types.h"
52
53 struct empobj {
54     short ef_type;      /* is always valid */
55     natid own;          /* is valid if EFF_OWNER   is set in table def. */
56     short uid;
57     coord x;            /* is valid if EFF_XY      is set in table def. */
58     coord y;            /* is valid if EFF_XY      is set in table def. */
59     signed char type;
60     signed char effic;
61     signed char mobil;
62     unsigned char off;
63     short tech; 
64     char group;         /* is valid if EFF_GROUP   is set in table def. */
65     coord opx, opy;
66     short mission;
67     short radius;
68 };
69
70 union empobj_storage {
71     short ef_type;
72     struct empobj gen;
73     struct comstr comm;
74     struct gamestr game;
75     struct lndstr land;
76     struct lonstr loan;
77     struct loststr lost;
78     struct natstr nat; 
79     struct nwsstr news;
80     struct nukstr nuke;
81     struct plnstr plane;
82     struct realmstr realm;
83     struct sctstr sect;
84     struct shpstr ship;
85     struct trdstr trade;
86     struct trtstr treaty;
87 };
88
89 struct empobj_chr;
90
91 extern char *obj_nameof(struct empobj *gp);
92 extern struct empobj *get_empobjp(int type, int id);
93 extern int put_empobj(struct empobj *gp);
94 extern struct empobj_chr *get_empobj_chr(struct empobj *gp);
95 extern char *emp_obj_chr_name(struct empobj *gp);
96 extern int get_empobj_mob_max(int type);
97
98 #endif