]> git.pond.sub.org Git - empserver/blob - src/lib/subs/mtch.c
Update copyright notice.
[empserver] / src / lib / subs / mtch.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  *  mtch.c: Matching operations on structures and commands.
29  * 
30  *  Known contributors to this file:
31  *     (List known contributors to this file)
32  */
33 /*
34  * XXX These routines gamble that structures are all longword-aligned.
35  * If this is not true, they will BREAK!
36  */
37
38 #include "misc.h"
39 #include "player.h"
40 #include "com.h"
41 #include "match.h"
42 #include "prototypes.h"
43
44 /*
45  * find a matching integer from a member of a structure.
46  * Inspired by stmtch above.
47  */
48 int
49 intmatch(register int value, register int *ptr, int size)
50 {
51     register int i;
52
53     size /= sizeof(*ptr);
54     for (i = 0; *ptr; i++, ptr += size)
55         if (value == *ptr)
56             return i;
57     return -1;
58 }
59
60 /*
61  * find a matching command from coms[].  Return status is:
62  *  >= 0: match found, value is array entry in coms[]
63  */
64 int
65 comtch(register s_char *command, struct cmndstr *coms, int comstat,
66        int god)
67 {
68     register struct cmndstr *com;
69     register int status;
70     register int i;
71
72     if (command == 0 || *command == 0)
73         return M_IGNORE;
74     status = M_NOTFOUND;
75     for (com = coms; com->c_form != 0; com++) {
76         if ((com->c_permit & comstat) != com->c_permit && !god)
77             continue;
78         if ((i = mineq(command, com->c_form)) == ME_MISMATCH)
79             continue;
80         if (i == ME_EXACT)
81             return com - coms;
82         /* partial */
83         if (status != M_NOTFOUND)
84             return M_NOTUNIQUE;
85         status = com - coms;
86     }
87
88     return status;
89 }