]> git.pond.sub.org Git - empserver/blob - src/lib/subs/lostsub.c
New lost_and_found() to record ownership changes.
[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
40 static int findlost(short, natid, short, coord, coord, int);
41
42 /*
43  * Record item ID of type 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(short type, natid owner, short id, coord x, coord y)
58 {
59     struct loststr lost;
60     int n;
61
62     n = findlost(type, owner, id, x, y, 1);
63     ef_blank(EF_LOST, n, &lost);
64     lost.lost_type = type;
65     lost.lost_owner = owner;
66     lost.lost_id = id;
67     lost.lost_x = x;
68     lost.lost_y = y;
69     putlost(n, &lost);
70 }
71
72 void
73 makenotlost(short type, natid owner, short 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     putlost(n, &lost);
84 }
85
86
87 /*
88  * Find a suitable slot in the lost file.
89  * If a record for TYPE, OWNER, ID, X, Y exists, return its index.
90  * Else if FREE is non-zero, return the index of an unused record.
91  * Else return -1.
92  */
93 static int
94 findlost(short type, natid owner, short id, coord x, coord y, int free)
95 {
96     struct loststr lost;
97     int n;
98     int freeslot = -1;
99
100     for (n = 0; getlost(n, &lost); n++) {
101         if (!lost.lost_owner && freeslot < 0)
102             freeslot = n;
103         if (!lost.lost_owner)
104             continue;
105         if (lost.lost_owner == owner && type == lost.lost_type) {
106             if (type == EF_SECTOR && lost.lost_x == x && lost.lost_y == y)
107                 return n;
108             else if (lost.lost_id == id)
109                 return n;
110         }
111     }
112
113     if (free) {
114         if (freeslot < 0)
115             freeslot = n;
116         return freeslot;
117     }
118
119     return -1;
120 }