]> git.pond.sub.org Git - empserver/blob - include/item.h
License upgrade to GPL version 3 or later
[empserver] / include / item.h
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2011, Dave Pare, Jeff Bailey, Thomas Ruschak,
4  *                Ken Stevens, Steve McClure, Markus Armbruster
5  *
6  *  Empire 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 3 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, see <http://www.gnu.org/licenses/>.
18  *
19  *  ---
20  *
21  *  See files README, COPYING and CREDITS in the root of the source
22  *  tree for related information and legal notices.  It is expected
23  *  that future projects/authors will amend these files as needed.
24  *
25  *  ---
26  *
27  *  item.h: Definitions for item characteristics stuff
28  *
29  *  Known contributors to this file:
30  *
31  */
32
33 #ifndef ITEM_H
34 #define ITEM_H
35
36 #include "misc.h"
37
38 enum i_packing {
39     IPKG,                       /* "inefficient" packaging (eff<60) */
40     NPKG,                       /* no special packaging */
41     WPKG,                       /* "warehouse" packaging */
42     UPKG,                       /* "urban" packaging */
43     BPKG                        /* "bank" packaging */
44 };
45
46 enum {
47     NUMPKG = BPKG + 1
48 };
49
50 typedef enum {
51     I_NONE = -1,
52     I_CIVIL,
53     I_MILIT,
54     I_SHELL,
55     I_GUN,
56     I_PETROL,
57     I_IRON,
58     I_DUST,
59     I_BAR,
60     I_FOOD,
61     I_OIL,
62     I_LCM,
63     I_HCM,
64     I_UW,
65     I_RAD,
66     I_MAX = I_RAD
67 } ATTRIBUTE((packed)) i_type;
68
69 struct ichrstr {
70     char i_mnem;                /* usually the initial letter */
71     i_type i_uid;               /* index in ichr[] */
72     int i_value;                /* mortgage value */
73     int i_sell;                 /* can this be sold? */
74     int i_lbs;                  /* how hard to move */
75     int i_pkg[NUMPKG];          /* units for reg, ware, urb, bank */
76     int i_melt_denom;           /* fallout meltdown denominator */
77     char *i_name;               /* full name of item */
78 };
79
80 /* variables using this structure */
81
82 extern struct ichrstr ichr[I_MAX + 2];
83
84 /* procedures using/returning this struct */
85
86 extern struct ichrstr *whatitem(char *, char *);
87 extern struct ichrstr *item_by_name(char *);
88
89 #endif