]> git.pond.sub.org Git - empserver/blob - src/lib/common/type.c
Update copyright notice.
[empserver] / src / lib / common / type.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2004, 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 the "LEGAL", "LICENSE", "CREDITS" and "README" files for all the
23  *  related information and legal notices. It is expected that any future
24  *  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  */
34
35 #include <stddef.h>
36 #include <string.h>
37 #include "misc.h"
38 #include "ship.h"
39 #include "land.h"
40 #include "plane.h"
41 #include "sect.h"
42 #include "nuke.h"
43 #include "file.h"
44 #include "common.h"
45 #include "match.h"
46
47 /*
48  * Return index of sector called NAME in dchr[], or M_NOTFOUND.
49  */
50 int
51 sct_typematch(char *name)
52 {
53     int i;
54
55     if (name[0] && !name[1])
56         for (i = 0; dchr[i].d_name; ++i)
57             if (dchr[i].d_mnem == *name)
58                 return i;
59     return M_NOTFOUND;
60 }
61
62 /*
63  * Search for NAME in the characteristics table for TYPE, return index.
64  * Return M_NOTFOUND if there are no matches, M_NOTUNIQUE if there are
65  * several.
66  * If TYPE is EF_SECTOR, search dchr[]
67  * If TYPE is EF_SHIP, search mchr[].
68  * If TYPE is EF_PLANE, search plchr[].
69  * If TYPE is EF_LAND, search lchr[].
70  * If TYPE is EF_NUKE, search nchr[].
71  */
72 int
73 typematch(char *name, int type)
74 {
75     switch (type) {
76     case EF_SECTOR:
77         return sct_typematch(name);
78     case EF_SHIP:
79         return stmtch(name, mchr,
80                       offsetof(struct mchrstr, m_name),
81                       sizeof(mchr[0]));
82     case EF_LAND:
83         return stmtch(name, lchr,
84                       offsetof(struct lchrstr, l_name),
85                       sizeof(lchr[0]));
86     case EF_PLANE:
87         return stmtch(name, plchr,
88                       offsetof(struct plchrstr, pl_name),
89                       sizeof(plchr[0]));
90     case EF_NUKE:
91         return stmtch(name, nchr,
92                       offsetof(struct nchrstr, n_name),
93                       sizeof(nchr[0]));
94     default:
95         break;
96     }
97     return M_NOTFOUND;
98 }