]> git.pond.sub.org Git - empserver/blob - include/treaty.h
Update copyright notice.
[empserver] / include / treaty.h
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2007, 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     short ef_type;
42     natid trt_cna;              /* proposer */
43     short trt_uid;
44     natid trt_cnb;              /* acceptor */
45     signed char trt_status;     /* treaty status */
46     char trt_fill;
47     short trt_acond;            /* conditions for proposer */
48     short trt_bcond;            /* conditions for accepter */
49     float trt_bond;             /* amount of bond involved (unused) */
50     time_t trt_exp;             /* expiration date */
51 };
52
53 #define TS_FREE         AGREE_FREE
54 #define TS_PROPOSED     AGREE_PROPOSED
55 #define TS_SIGNED       AGREE_SIGNED
56
57         /* treaty clauses */
58 #define LNDATT  bit(0)          /* no attacks on land units */
59 #define SEAATT  bit(1)          /* no attacks on ships */
60 #define SEAFIR  bit(2)          /* no shelling ships */
61 #define LANATT  bit(3)          /* no attacks on sectors */
62 #define LANFIR  bit(4)          /* no shelling sectors */
63 #define NEWSHP  bit(5)          /* no new ships */
64 #define NEWNUK  bit(6)          /* no new nuclear weapons */
65 #define NEWPLN  bit(7)          /* no new planes */
66 #define NEWLND  bit(8)          /* no new land units */
67 #define TRTENL  bit(9)          /* no enlistment */
68 #define SUBFIR  bit(10)         /* no depth-charging submarines */
69
70 #define gettre(n, p) ef_read(EF_TREATY, (n), (p))
71 #define puttre(n, p) ef_write(EF_TREATY, (n), (p))
72 #define gettrep(n) (struct trtstr *)ef_ptr(EF_TREATY, (n))
73
74 #endif