]> git.pond.sub.org Git - empserver/blob - include/treaty.h
Fix trailing whitespace
[empserver] / include / treaty.h
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  *  treaty.h: Definitions for treaties
29  *
30  *  Known contributors to this file:
31  *      Steve McClure, 1998
32  */
33
34 #ifndef TREATY_H
35 #define TREATY_H
36
37 #include <time.h>
38 #include "types.h"
39
40 struct trtstr {
41     /* initial part must match struct empobj */
42     short ef_type;
43     short trt_uid;
44     unsigned trt_seqno;
45     time_t trt_timestamp;
46     /* end of part matching struct empobj */
47     natid trt_cna;              /* proposer */
48     natid trt_cnb;              /* acceptor */
49     signed char trt_status;     /* treaty status */
50     char trt_fill;
51     short trt_acond;            /* conditions for proposer */
52     short trt_bcond;            /* conditions for accepter */
53     float trt_bond;             /* amount of bond involved (unused) */
54     time_t trt_exp;             /* expiration date */
55 };
56
57 #define TS_FREE         AGREE_FREE
58 #define TS_PROPOSED     AGREE_PROPOSED
59 #define TS_SIGNED       AGREE_SIGNED
60
61         /* treaty clauses */
62 #define LNDATT  bit(0)          /* no attacks on land units */
63 #define SEAATT  bit(1)          /* no attacks on ships */
64 #define SEAFIR  bit(2)          /* no shelling ships */
65 #define LANATT  bit(3)          /* no attacks on sectors */
66 #define LANFIR  bit(4)          /* no shelling sectors */
67 #define NEWSHP  bit(5)          /* no new ships */
68 #define NEWNUK  bit(6)          /* no new nuclear weapons */
69 #define NEWPLN  bit(7)          /* no new planes */
70 #define NEWLND  bit(8)          /* no new land units */
71 #define TRTENL  bit(9)          /* no enlistment */
72 #define SUBFIR  bit(10)         /* no depth-charging submarines */
73
74 #define gettre(n, p) ef_read(EF_TREATY, (n), (p))
75 #define puttre(n, p) ef_write(EF_TREATY, (n), (p))
76 #define gettrep(n) ((struct trtstr *)ef_ptr(EF_TREATY, (n)))
77
78 #endif