]> git.pond.sub.org Git - empserver/blob - src/lib/subs/lostsub.c
COPYING duplicates information from README. Remove. Move GPL from
[empserver] / src / lib / subs / lostsub.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2006, 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 files README, COPYING and CREDITS in the root of the source
23  *  tree for related information and legal notices.  It is expected
24  *  that future projects/authors will amend these files as needed.
25  *
26  *  ---
27  *
28  *  lostsub.c: Subroutines for lost items
29  * 
30  *  Known contributors to this file:
31  *     Steve McClure, 1997
32  */
33
34 #include <config.h>
35
36 #include "misc.h"
37 #include "player.h"
38 #include "file.h"
39 #include "land.h"
40 #include "ship.h"
41 #include "nsc.h"
42 #include "lost.h"
43 #include "prototypes.h"
44
45 static int findlost(char, natid, short, coord, coord, int);
46
47 void
48 makelost(char type, natid owner, short int id, coord x, coord y)
49 {
50     struct loststr lost;
51     int n;
52
53     n = findlost(type, owner, id, x, y, 1);
54     if (n < 0) {
55         ef_extend(EF_LOST, 25);
56         n = findlost(type, owner, id, x, y, 1);
57         if (n < 0)
58             return;
59     }
60
61     getlost(n, &lost);
62     lost.lost_type = type;
63     lost.lost_owner = owner;
64     lost.lost_id = id;
65     lost.lost_x = x;
66     lost.lost_y = y;
67     lost.lost_uid = n;
68     time(&lost.lost_timestamp);
69     putlost(n, &lost);
70 }
71
72 void
73 makenotlost(char type, natid owner, short int id, coord x, coord y)
74 {
75     struct loststr lost;
76     int n;
77
78     n = findlost(type, owner, id, x, y, 0);
79     if (n < 0)
80         return;
81     getlost(n, &lost);
82     lost.lost_owner = 0;
83     lost.lost_timestamp = 0;
84     putlost(n, &lost);
85 }
86
87
88 /*
89  * Find a suitable slot in the lost file.
90  * If a record for TYPE, OWNER, ID, X, Y exists, return its index.
91  * Else if FREE is non-zero, return the index of an unused record if
92  * there is one.
93  * Else return -1.
94  */
95 static int
96 findlost(char type, natid owner, short int id, coord x, coord y, int free)
97 {
98     struct loststr lost;
99     int n;
100     int freeslot = -1;
101
102     for (n = 0; getlost(n, &lost); n++) {
103         if (!lost.lost_owner && freeslot == -1 && free == 1)
104             freeslot = n;
105         if (!lost.lost_owner)
106             continue;
107         if (lost.lost_owner == owner && type == lost.lost_type) {
108             if (type == EF_SECTOR && lost.lost_x == x && lost.lost_y == y) {
109                 freeslot = n;
110                 break;
111             } else if (lost.lost_id == id) {
112                 freeslot = n;
113                 break;
114             }
115         }
116     }
117     return freeslot;
118 }