]> git.pond.sub.org Git - empserver/blob - src/lib/subs/lostsub.c
Fix trailing whitespace
[empserver] / src / lib / subs / lostsub.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2008, 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  *     Markus Armbruster, 2008
33  */
34
35 #include <config.h>
36
37 #include "file.h"
38 #include "lost.h"
39 #include "misc.h"
40 #include "optlist.h"
41
42 static int findlost(short, natid, short, coord, coord, int);
43
44 /*
45  * Record item ID of type TYPE changed owner from EXOWN to OWN at X, Y.
46  */
47 void
48 lost_and_found(int type, natid exown, natid own, int id, coord x, coord y)
49 {
50     if (exown == own)
51         return;
52     if (exown)
53         makelost(type, exown, id, x, y);
54     if (own)
55         makenotlost(type, own, id, x, y);
56 }
57
58 void
59 makelost(short type, natid owner, short id, coord x, coord y)
60 {
61     struct loststr lost;
62     int n;
63
64     n = findlost(type, owner, id, x, y, 1);
65     ef_blank(EF_LOST, n, &lost);
66     lost.lost_type = type;
67     lost.lost_owner = owner;
68     lost.lost_id = id;
69     lost.lost_x = x;
70     lost.lost_y = y;
71     putlost(n, &lost);
72 }
73
74 void
75 makenotlost(short type, natid owner, short id, coord x, coord y)
76 {
77     struct loststr lost;
78     int n;
79
80     n = findlost(type, owner, id, x, y, 0);
81     if (n < 0)
82         return;
83     getlost(n, &lost);
84     lost.lost_owner = 0;
85     putlost(n, &lost);
86 }
87
88
89 /*
90  * Find a suitable slot in the lost file.
91  * If a record for TYPE, OWNER, ID, X, Y exists, return its index.
92  * Else if FREE is non-zero, return the index of an unused record.
93  * Else return -1.
94  */
95 static int
96 findlost(short type, natid owner, short 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 < 0)
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                 return n;
110             else if (lost.lost_id == id)
111                 return n;
112         }
113     }
114
115     if (free) {
116         if (freeslot < 0)
117             freeslot = n;
118         return freeslot;
119     }
120
121     return -1;
122 }
123
124 void
125 delete_old_lostitems(void)
126 {
127     time_t expiry_time = time(NULL) - hours(lost_keep_hours);
128     struct loststr lost;
129     int i;
130
131     for (i = 0; getlost(i, &lost); i++) {
132         if (!lost.lost_owner)
133             continue;
134         if (lost.lost_timestamp >= expiry_time)
135             continue;
136         lost.lost_owner = 0;
137         putlost(i, &lost);
138     }
139 }