]> 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-2017, 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-2016
32  */
33
34 #include <config.h>
35
36 #include "lost.h"
37 #include "misc.h"
38 #include "optlist.h"
39
40 static int findlost(int, natid, int, coord, coord, int);
41
42 /*
43  * Record item @id of @type changed owner from @exown to @own at @x,@y.
44  */
45 void
46 lost_and_found(int type, natid exown, natid own, int id, coord x, coord y)
47 {
48     if (exown == own)
49         return;
50     if (exown)
51         makelost(type, exown, id, x, y);
52     if (own)
53         makenotlost(type, own, id, x, y);
54 }
55
56 void
57 makelost(int type, natid owner, int id, coord x, coord y)
58 {
59     struct loststr lost;
60     int n;
61
62     if (CANT_HAPPEN(!owner))
63         return;
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(int type, natid owner, int id, coord x, coord y)
76 {
77     struct loststr lost;
78     int n;
79
80     if (CANT_HAPPEN(!owner))
81         return;
82     n = findlost(type, owner, id, x, y, 0);
83     if (n < 0)
84         return;
85     getlost(n, &lost);
86     lost.lost_owner = 0;
87     putlost(n, &lost);
88 }
89
90
91 /*
92  * Find a suitable slot in the lost file.
93  * If a record for @type, @owner, @id, @x, @y exists, return its index.
94  * Else if @free is non-zero, return the index of an unused record.
95  * Else return -1.
96  */
97 static int
98 findlost(int type, natid owner, int id, coord x, coord y, int free)
99 {
100     struct loststr lost;
101     int n;
102     int freeslot = -1;
103
104     for (n = 0; getlost(n, &lost); n++) {
105         if (!lost.lost_owner && freeslot < 0)
106             freeslot = n;
107         if (!lost.lost_owner)
108             continue;
109         if (lost.lost_owner == owner && type == lost.lost_type) {
110             if (type == EF_SECTOR && lost.lost_x == x && lost.lost_y == y)
111                 return n;
112             if (type != EF_SECTOR && lost.lost_id == id)
113                 return n;
114         }
115     }
116
117     if (free) {
118         if (freeslot < 0)
119             freeslot = n;
120         return freeslot;
121     }
122
123     return -1;
124 }
125
126 void
127 delete_old_lostitems(void)
128 {
129     time_t expiry_time = time(NULL) - hours(lost_keep_hours);
130     struct loststr lost;
131     int i;
132
133     for (i = 0; getlost(i, &lost); i++) {
134         if (!lost.lost_owner)
135             continue;
136         if (lost.lost_timestamp >= expiry_time)
137             continue;
138         lost.lost_owner = 0;
139         putlost(i, &lost);
140     }
141 }