]> git.pond.sub.org Git - empserver/blob - include/budg.h
Update copyright notice
[empserver] / include / budg.h
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2014, 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  *  budg.h: Budget related definitions
28  *
29  *  Known contributors to this file:
30  *     Ville Virrankoski, 1995
31  *     Markus Armbruster, 2004-2013
32  */
33
34 #ifndef BUDG_H
35 #define BUDG_H
36
37 #include "types.h"
38 #include "item.h"
39
40 #define SCT_EFFIC (SCT_TYPE_MAX + 1)
41 #define SCT_MAINT (SCT_TYPE_MAX + 2)
42 #define SCT_BUDG_MAX SCT_MAINT
43
44 struct bp *bp_alloc(void);
45 void bp_set_from_sect(struct bp *, struct sctstr *);
46 int bp_get_item(struct bp *, struct sctstr *, i_type);
47 void bp_put_item(struct bp *, struct sctstr *, i_type, int);
48 void bp_put_items(struct bp *, struct sctstr *, short *);
49 int bp_get_avail(struct bp *, struct sctstr *);
50 void bp_put_avail(struct bp *, struct sctstr *, int);
51
52 int get_materials(struct sctstr *, struct bp *, int *, int);
53
54 extern int money[MAXNOC];
55 extern int pops[MAXNOC];
56 extern int sea_money[MAXNOC];
57 extern int lnd_money[MAXNOC];
58 extern int air_money[MAXNOC];
59 extern int tpops[MAXNOC];
60 extern float levels[MAXNOC][4];
61
62 #endif