]> git.pond.sub.org Git - empserver/blob - include/commodity.h
Merge branch 'readline'
[empserver] / include / commodity.h
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2016, 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  *  commodity.h: Definitions for buy/market/sell commands in a time delay
28  *               market
29  *
30  *  Known contributors to this file:
31  *     Pat Loney, 1992
32  *     Steve McClure, 1996
33  */
34
35 #ifndef COMMODITY_H
36 #define COMMODITY_H
37
38 #include "file.h"
39 #include "types.h"
40 #include "item.h"
41
42 struct comstr {
43     /* initial part must match struct empobj */
44     signed ef_type: 8;
45     unsigned com_seqno: 12;
46     unsigned com_generation: 12;
47     int com_uid;
48     time_t com_timestamp;
49     natid com_owner;
50     /* end of part matching struct empobj */
51     i_type com_type;
52     int com_amount;
53     float com_price;
54     int com_maxbidder;
55     time_t com_markettime;
56     coord com_x;
57     coord com_y;
58     coord sell_x;
59     coord sell_y;
60 };
61
62 #define getcomm(n, p) ef_read(EF_COMM, (n), (p))
63 #define putcomm(n, p) ef_write(EF_COMM, (n), (p))
64
65 #endif