]> git.pond.sub.org Git - empserver/blob - include/item.h
3a8fce854906a269682e7815e846ef159b69539a
[empserver] / include / item.h
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2007, 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  *  item.h: Definitions for item characteristics stuff
29  * 
30  *  Known contributors to this file:
31  *  
32  */
33
34 #ifndef ITEM_H
35 #define ITEM_H
36
37 #include "misc.h"
38
39 typedef enum {
40     IPKG,                       /* "inefficient" packaging (eff<60) */
41     NPKG,                       /* no special packaging */
42     WPKG,                       /* "warehouse" packaging */
43     UPKG,                       /* "urban" packaging */
44     BPKG                        /* "bank" packaging */
45 } i_packing;
46
47 enum {
48     NUMPKG = BPKG + 1
49 };
50
51 typedef enum {
52         I_NONE = -1,
53         I_CIVIL,
54         I_MILIT,
55         I_SHELL,
56         I_GUN,
57         I_PETROL,
58         I_IRON,
59         I_DUST,
60         I_BAR,
61         I_FOOD,
62         I_OIL,
63         I_LCM,
64         I_HCM,
65         I_UW,
66         I_RAD,
67         I_MAX = I_RAD
68 } ATTRIBUTE((packed)) i_type;
69
70 struct ichrstr {
71     char i_mnem;                /* usually the initial letter */
72     i_type i_uid;               /* index in ichr[] */
73     int i_value;                /* mortgage value */
74     int i_sell;                 /* can this be sold? */
75     int i_lbs;                  /* how hard to move */
76     int i_pkg[NUMPKG];          /* units for reg, ware, urb, bank */
77     int i_melt_denom;           /* fallout meltdown denominator */
78     char *i_name;               /* full name of item */
79 };
80
81 /* variables using this structure */
82
83 extern struct ichrstr ichr[I_MAX + 2];
84
85 /* procedures using/returning this struct */
86
87 extern struct ichrstr *whatitem(char *, char *);
88 extern struct ichrstr *item_by_name(char *);
89
90 #endif