]> git.pond.sub.org Git - empserver/blob - src/lib/common/empobj.c
b72fd052e02a53c2349c57b289db3610ad523a6d
[empserver] / src / lib / common / empobj.c
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  *  empobj.c: Common functions on struct empobj and
28  *            union empobj_storage
29  *
30  *  Known contributors to this file:
31  *     Ron Koenderink, 2006
32  *     Markus Armbruster, 2006-2016
33  */
34
35 #include <config.h>
36
37 #include "empobj.h"
38 #include "news.h"
39 #include "optlist.h"
40 #include "product.h"
41
42 char *
43 empobj_chr_name(struct empobj *gp)
44 {
45     switch (gp->ef_type) {
46     case EF_LAND:
47         return lchr[(int)gp->type].l_name;
48     case EF_SHIP:
49         return mchr[(int)gp->type].m_name;
50     case EF_PLANE:
51         return plchr[(int)gp->type].pl_name;
52     case EF_NUKE:
53         return nchr[(int)gp->type].n_name;
54     case EF_SECTOR:
55         return dchr[(int)gp->type].d_name;
56     }
57     CANT_REACH();
58     return "The Beast";
59 }
60
61 int
62 empobj_in_use(int type, void *p)
63 {
64     switch (type) {
65     case EF_SHIP:
66     case EF_PLANE:
67     case EF_LAND:
68     case EF_NUKE:
69     case EF_TRADE:
70     case EF_COMM:
71     case EF_LOST:
72         return ((struct empobj *)p)->own != 0;
73     case EF_NATION:
74     case EF_COUNTRY:
75         return ((struct natstr *)p)->nat_stat != STAT_UNUSED;
76     case EF_RELAT:
77     case EF_CONTACT:
78     case EF_REJECT:
79         return empobj_in_use(EF_NATION,
80                              ef_ptr(EF_NATION,
81                                     ((struct ef_typedstr *)p)->uid));
82     case EF_NEWS:
83         return ((struct nwsstr *)p)->nws_vrb != 0;
84     case EF_LOAN:
85         return ((struct lonstr *)p)->l_status != LS_FREE;
86     case EF_REALM:
87         return empobj_in_use(EF_NATION,
88                              ef_ptr(EF_NATION,
89                                     ((struct realmstr *)p)->r_cnum));
90     case EF_PRODUCT:
91         return ((struct pchrstr *)p)->p_sname[0];
92     case EF_SHIP_CHR:
93         return ((struct mchrstr *)p)->m_name[0];
94     case EF_PLANE_CHR:
95         return ((struct plchrstr *)p)->pl_name[0];
96     case EF_LAND_CHR:
97         return ((struct lchrstr *)p)->l_name[0];
98     case EF_NUKE_CHR:
99         return ((struct nchrstr *)p)->n_name[0];
100     case EF_NEWS_CHR:
101         return ((struct rptstr *)p)->r_newspage != 0;
102     default:
103         return 1;
104     }
105 }