]> git.pond.sub.org Git - empserver/blob - src/lib/common/type.c
dc99425664724aa3d483996e070fad148d32c2c7
[empserver] / src / lib / common / type.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2009, 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  *  type.c: typename to array offset translation
29  *
30  *  Known contributors to this file:
31  *     Dave Pare, 1989
32  *     Steve McClure, 2000
33  *     Markus Armbruster, 2004-2006
34  */
35
36 #include <config.h>
37
38 #include "file.h"
39 #include "item.h"
40 #include "land.h"
41 #include "match.h"
42 #include "nuke.h"
43 #include "plane.h"
44 #include "product.h"
45 #include "prototypes.h"
46 #include "sect.h"
47 #include "ship.h"
48
49 /*
50  * Return index of sector called NAME in dchr[], or M_NOTFOUND.
51  */
52 int
53 sct_typematch(char *name)
54 {
55     int i;
56
57     if (name[0] && !name[1])
58         for (i = 0; dchr[i].d_name; ++i)
59             if (dchr[i].d_mnem == *name)
60                 return i;
61     return M_NOTFOUND;
62 }
63
64 /*
65  * Search table TYPE for an element matching NAME, return its index.
66  * Accepts EF_BAD, but of course never finds anything then.
67  * Return M_NOTFOUND if there are no matches, M_NOTUNIQUE if there are
68  * several.
69  */
70 int
71 ef_elt_byname(int type, char *name)
72 {
73     switch (type) {
74     case EF_BAD:
75         return M_NOTFOUND;
76     case EF_NATION:
77         return cnumb(name);
78     case EF_SECTOR_CHR:
79         return sct_typematch(name);
80     case EF_SHIP_CHR:
81         return stmtch(name, mchr,
82                       offsetof(struct mchrstr, m_name),
83                       sizeof(mchr[0]));
84     case EF_LAND_CHR:
85         return stmtch(name, lchr,
86                       offsetof(struct lchrstr, l_name),
87                       sizeof(lchr[0]));
88     case EF_PLANE_CHR:
89         return stmtch(name, plchr,
90                       offsetof(struct plchrstr, pl_name),
91                       sizeof(plchr[0]));
92     case EF_NUKE_CHR:
93         return stmtch(name, nchr,
94                       offsetof(struct nchrstr, n_name),
95                       sizeof(nchr[0]));
96     case EF_ITEM:
97         return stmtch(name, ichr,
98                       offsetof(struct ichrstr, i_name),
99                       sizeof(ichr[0]));
100     case EF_PRODUCT:
101         return stmtch(name, pchr,
102                       offsetof(struct pchrstr, p_sname),
103                       sizeof(pchr[0]));
104     case EF_TABLE:
105         return stmtch(name, empfile,
106                       offsetof(struct empfile, name),
107                       sizeof(empfile[0]));
108     default:
109         if (ef_cadef(type) == symbol_ca)
110             return stmtch(name, ef_ptr(type, 0),
111                           offsetof(struct symbol, name),
112                           sizeof(struct symbol));
113     }
114     return M_NOTFOUND;
115 }