]> git.pond.sub.org Git - empserver/blob - src/lib/subs/aswplnsubs.c
Update copyright notice.
[empserver] / src / lib / subs / aswplnsubs.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2005, 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  *  aswplnsubs.c: Various subroutines used for ASW planes
29  * 
30  *  Known contributors to this file:
31  *  Ron Koenderink, 2004
32  *     
33  */
34
35 #include <stdlib.h>
36 #include "misc.h"
37 #include "file.h"
38 #include "ship.h"
39 #include "plane.h"
40 #include "prototypes.h"
41
42 int
43 on_shiplist(short uid, struct shiplist *head)
44 {
45     struct shiplist *s;
46
47     s = head;
48     while (s != NULL) {
49         if (s->uid == uid)
50             return 1;
51         s = s->next;
52     }
53     return 0;
54 }
55
56 void
57 add_shiplist(short uid, struct shiplist **head)
58 {
59     struct shiplist *s, *s2;
60
61     s = *head;
62     s2 = NULL;
63
64     while (s != NULL) {
65         if (s->uid == uid) {
66             return;
67         }
68         s2 = s;
69         s = s->next;
70     }
71
72     s = malloc(sizeof(struct shiplist));
73     if (s2 != NULL) 
74         s2->next = s;
75     else
76         *head = s;
77     s->uid = uid;
78     s->next = NULL;
79 }
80
81 void
82 free_shiplist(struct shiplist **head)
83 {
84     struct shiplist *s, *s2;
85
86     s = *head;
87
88     while (s != NULL) {
89         s2 = s;
90         s = s->next;
91         free(s2);
92     }
93     *head = NULL;
94 }
95
96 void
97 print_shiplist(struct shiplist *head)
98 {
99     struct shiplist *s;
100     int first;
101     struct mchrstr *mp;
102     struct shpstr ship;
103
104     s = head;
105     first = 1;
106
107     while (s != NULL) {
108         getship(s->uid, &ship);
109         mp = &mchr[(int)ship.shp_type];
110         if (first) {
111             pr(" #          player->owner           eff        type\n");
112             first = 0;
113         }
114         pr("(#%3d) %10.10s  %12.12s  %s\n", ship.shp_uid,
115            cname(ship.shp_own), effadv(ship.shp_effic), prship(&ship));
116         s = s->next;
117     }
118 }