]> git.pond.sub.org Git - empserver/blob - include/trade.h
92b858448343938702642a9d44737ee139c5f261
[empserver] / include / trade.h
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2011, 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  *  trade.h: Definitions for trading units/ships/planes in a time delay
28  *           system
29  *
30  *  Known contributors to this file:
31  *     Dave Pare
32  *     Pat Loney, 1992
33  *     Steve McClure, 1996
34  */
35
36 #ifndef TRADE_H
37 #define TRADE_H
38
39 #include <time.h>
40 #include "types.h"
41
42 struct trdstr {
43     /* initial part must match struct empobj */
44     signed ef_type: 8;
45     unsigned trd_seqno: 12;
46     unsigned trd_generation: 12;
47     int trd_uid;
48     time_t trd_timestamp;
49     natid trd_owner;
50     /* end of part matching struct empobj */
51     short trd_type;
52     int trd_unitid;
53     long trd_price;
54     int trd_maxbidder;
55     time_t trd_markettime;
56     coord trd_x;                /* destination for teleporting trade */
57     coord trd_y;
58 };
59
60 extern int trade_check_ok(struct trdstr *, union empobj_storage *);
61 extern int trade_check_item_ok(union empobj_storage *);
62 extern char *trade_nameof(struct trdstr *, union empobj_storage *);
63 extern int trade_desc(struct trdstr *, union empobj_storage *);
64 extern int trade_getitem(struct trdstr *, union empobj_storage *);
65
66 #define gettrade(n, p) ef_read(EF_TRADE, (n), (p))
67 #define puttrade(n, p) ef_write(EF_TRADE, (n), (p))
68 #define gettradep(n) ((struct trdstr *)ef_ptr(EF_TRADE, (n)))
69
70 #endif