]> git.pond.sub.org Git - empserver/blob - src/lib/as/as_hash.c
Remove a bunch of redundant casts.
[empserver] / src / lib / as / as_hash.c
1 /*
2  *  A* Search - A search library used in Empire to determine paths between
3  *              objects.
4  *  Copyright (C) 1990-1998 Phil Lapsley
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 #include <stdio.h>
21 #include <stdlib.h>
22 #include "as.h"
23
24 /*
25  * Return a pointer to the as_queue structure associated with
26  * this coordinate if the coordinate is in the queue.
27  */
28 struct as_queue *
29 as_iscinq(struct as_data *adp, struct as_coord c)
30 {
31     int hashval;
32     struct as_hash *hp;
33
34     hashval = (*adp->hash) (c) % adp->hashsize;
35
36     for (hp = adp->hashtab[hashval]; hp; hp = hp->next)
37         if (hp->c.x == c.x && hp->c.y == c.y)
38             return (hp->qp);
39
40     return (NULL);
41 }
42
43 /*
44  * Set the queue structure associated with this coordinate.
45  */
46 void
47 as_setcinq(struct as_data *adp, struct as_coord c, struct as_queue *qp)
48 {
49     int hashval;
50     struct as_hash *hp;
51     struct as_hash *new;
52
53     new = (struct as_hash *)malloc(sizeof(struct as_hash));
54     new->c = c;
55     new->qp = qp;
56
57     hashval = (*adp->hash) (c) % adp->hashsize;
58     hp = adp->hashtab[hashval];
59
60     new->next = (hp) ? hp : NULL;
61     adp->hashtab[hashval] = new;
62 }
63
64 /*
65  * Walk down the hash table array, freeing the chains and zeroing
66  * the chain pointers.
67  */
68 void
69 as_free_hashtab(struct as_data *adp)
70 {
71     int i;
72     struct as_hash *hp, *hp2;
73
74     for (i = 0; i < adp->hashsize; i++) {
75         for (hp = adp->hashtab[i]; hp; hp = hp2) {
76             hp2 = hp->next;
77             free(hp);
78         }
79         adp->hashtab[i] = NULL;
80     }
81 }