]> git.pond.sub.org Git - empserver/blob - src/lib/subs/mtch.c
Indented with src/scripts/indent-emp.
[empserver] / src / lib / subs / mtch.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2000, 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 "deity.h"
42 #include "match.h"
43 #include "prototypes.h"
44
45 /*
46  * find a matching integer from a member of a structure.
47  * Inspired by stmtch above.
48  */
49 int
50 intmatch(register int value, register int *ptr, int size)
51 {
52     register int i;
53
54     size /= sizeof(*ptr);
55     for (i = 0; *ptr; i++, ptr += size)
56         if (value == *ptr)
57             return i;
58     return -1;
59 }
60
61 /*
62  * find a matching command from coms[].  Return status is:
63  *  >= 0: match found, value is array entry in coms[]
64  */
65 int
66 comtch(register s_char *command, struct cmndstr *coms, int comstat,
67        int god)
68 {
69     register struct cmndstr *com;
70     register int status;
71     register int i;
72
73     if (command == 0 || *command == 0)
74         return M_IGNORE;
75     status = M_NOTFOUND;
76     for (com = coms; com->c_form != 0; com++) {
77         if ((com->c_permit & comstat) != com->c_permit && !god)
78             continue;
79         if ((i = mineq(command, com->c_form)) == ME_MISMATCH)
80             continue;
81         if (i == ME_EXACT)
82             return com - coms;
83         /* partial */
84         if (status != M_NOTFOUND)
85             return M_NOTUNIQUE;
86         status = com - coms;
87     }
88
89     return status;
90 }