]> 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-2015, Dave Pare, Jeff Bailey, Thomas Ruschak,
4  *                Ken Stevens, Steve McClure, Markus Armbruster
5  *
6  *  Empire 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 3 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, see <http://www.gnu.org/licenses/>.
18  *
19  *  ---
20  *
21  *  See files README, COPYING and CREDITS in the root of the source
22  *  tree for related information and legal notices.  It is expected
23  *  that future projects/authors will amend these files as needed.
24  *
25  *  ---
26  *
27  *  lostsub.c: Subroutines for lost items
28  *
29  *  Known contributors to this file:
30  *     Steve McClure, 1997
31  *     Markus Armbruster, 2008
32  */
33
34 #include <config.h>
35
36 #include "file.h"
37 #include "lost.h"
38 #include "misc.h"
39 #include "optlist.h"
40
41 static int findlost(int, natid, int, coord, coord, int);
42
43 /*
44  * Record item ID of type TYPE changed owner from EXOWN to OWN at X, Y.
45  */
46 void
47 lost_and_found(int type, natid exown, natid own, int id, coord x, coord y)
48 {
49     if (exown == own)
50         return;
51     if (exown)
52         makelost(type, exown, id, x, y);
53     if (own)
54         makenotlost(type, own, id, x, y);
55 }
56
57 void
58 makelost(int type, natid owner, int id, coord x, coord y)
59 {
60     struct loststr lost;
61     int n;
62
63     n = findlost(type, owner, id, x, y, 1);
64     ef_blank(EF_LOST, n, &lost);
65     lost.lost_type = type;
66     lost.lost_owner = owner;
67     lost.lost_id = id;
68     lost.lost_x = x;
69     lost.lost_y = y;
70     putlost(n, &lost);
71 }
72
73 void
74 makenotlost(int type, natid owner, int id, coord x, coord y)
75 {
76     struct loststr lost;
77     int n;
78
79     n = findlost(type, owner, id, x, y, 0);
80     if (n < 0)
81         return;
82     getlost(n, &lost);
83     lost.lost_owner = 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.
92  * Else return -1.
93  */
94 static int
95 findlost(int type, natid owner, int id, coord x, coord y, int free)
96 {
97     struct loststr lost;
98     int n;
99     int freeslot = -1;
100
101     for (n = 0; getlost(n, &lost); n++) {
102         if (!lost.lost_owner && freeslot < 0)
103             freeslot = n;
104         if (!lost.lost_owner)
105             continue;
106         if (lost.lost_owner == owner && type == lost.lost_type) {
107             if (type == EF_SECTOR && lost.lost_x == x && lost.lost_y == y)
108                 return n;
109             else if (lost.lost_id == id)
110                 return n;
111         }
112     }
113
114     if (free) {
115         if (freeslot < 0)
116             freeslot = n;
117         return freeslot;
118     }
119
120     return -1;
121 }
122
123 void
124 delete_old_lostitems(void)
125 {
126     time_t expiry_time = time(NULL) - hours(lost_keep_hours);
127     struct loststr lost;
128     int i;
129
130     for (i = 0; getlost(i, &lost); i++) {
131         if (!lost.lost_owner)
132             continue;
133         if (lost.lost_timestamp >= expiry_time)
134             continue;
135         lost.lost_owner = 0;
136         putlost(i, &lost);
137     }
138 }