]> git.pond.sub.org Git - empserver/blob - src/lib/subs/mtch.c
(comtch, stmtch): Make more similar, document. No functional changes.
[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  * Search for COMMAND in COMS[], return its index.
62  * Return M_NOTFOUND if there are no matches, M_NOTUNIQUE if there are
63  * several, M_IGNORE if the command should be ignored.
64  * Ignore commands that require more permissions than COMSTAT.
65  */
66 int
67 comtch(register s_char *command, struct cmndstr *coms, int comstat,
68        int god)
69 {
70     register struct cmndstr *com;
71     register int status;
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         switch (mineq(command, com->c_form)) {
80         case ME_MISMATCH:
81             break;
82         case ME_PARTIAL:
83             if (status >= 0)
84                 return M_NOTUNIQUE;
85             status = com - coms;
86         case ME_EXACT:
87             return com - coms;
88         }
89     }
90
91     return status;
92 }