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