]> git.pond.sub.org Git - empserver/blob - src/lib/subs/lostsub.c
Update copyright notice.
[empserver] / src / lib / subs / lostsub.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2007, 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 "file.h"
37 #include "lost.h"
38
39 static int findlost(short, natid, short, coord, coord, int);
40
41 void
42 makelost(short type, natid owner, short id, coord x, coord y)
43 {
44     struct loststr lost;
45     int n;
46
47     n = findlost(type, owner, id, x, y, 1);
48     if (n < 0) {
49         ef_extend(EF_LOST, 25);
50         n = findlost(type, owner, id, x, y, 1);
51         if (n < 0)
52             return;
53     }
54
55     getlost(n, &lost);
56     lost.lost_type = type;
57     lost.lost_owner = owner;
58     lost.lost_id = id;
59     lost.lost_x = x;
60     lost.lost_y = y;
61     lost.lost_uid = n;
62     time(&lost.lost_timestamp);
63     putlost(n, &lost);
64 }
65
66 void
67 makenotlost(short type, natid owner, short id, coord x, coord y)
68 {
69     struct loststr lost;
70     int n;
71
72     n = findlost(type, owner, id, x, y, 0);
73     if (n < 0)
74         return;
75     getlost(n, &lost);
76     lost.lost_owner = 0;
77     lost.lost_timestamp = 0;
78     putlost(n, &lost);
79 }
80
81
82 /*
83  * Find a suitable slot in the lost file.
84  * If a record for TYPE, OWNER, ID, X, Y exists, return its index.
85  * Else if FREE is non-zero, return the index of an unused record if
86  * there is one.
87  * Else return -1.
88  */
89 static int
90 findlost(short type, natid owner, short id, coord x, coord y, int free)
91 {
92     struct loststr lost;
93     int n;
94     int freeslot = -1;
95
96     for (n = 0; getlost(n, &lost); n++) {
97         if (!lost.lost_owner && freeslot == -1 && free == 1)
98             freeslot = n;
99         if (!lost.lost_owner)
100             continue;
101         if (lost.lost_owner == owner && type == lost.lost_type) {
102             if (type == EF_SECTOR && lost.lost_x == x && lost.lost_y == y) {
103                 freeslot = n;
104                 break;
105             } else if (lost.lost_id == id) {
106                 freeslot = n;
107                 break;
108             }
109         }
110     }
111     return freeslot;
112 }