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