]> git.pond.sub.org Git - empserver/blob - src/lib/subs/actofgod.c
edit: Report sector loss and gain properly for key 'L'
[empserver] / src / lib / subs / actofgod.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2013, 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  *  actofgod.c: Deity meddling subroutines
28  *
29  *  Known contributors to this file:
30  *     Markus Armbruster, 2013
31  */
32
33 #include <config.h>
34
35 #include "actofgod.h"
36 #include "file.h"
37 #include "news.h"
38 #include "optlist.h"
39 #include "player.h"
40 #include "prototypes.h"
41
42 static void
43 nreport_divine_aid(natid whom, int goodness)
44 {
45     if (opt_GODNEWS && getnatp(whom)->nat_stat != STAT_GOD && goodness)
46         nreport(player->cnum, goodness > 0 ? N_AIDS : N_HURTS, whom, 1);
47 }
48
49 void
50 report_god_takes(char *prefix, char *what, natid from)
51 {
52     if (from && from != player->cnum) {
53         wu(0, from, "%s%s taken from you by an act of %s!\n",
54            prefix, what, cname(player->cnum));
55         nreport_divine_aid(from, -1);
56     }
57 }
58
59 void
60 report_god_gives(char *prefix, char *what, natid to)
61 {
62     if (to && to != player->cnum) {
63         wu(0, to, "%s%s given to you by an act of %s!\n",
64            prefix, what, cname(player->cnum));
65         nreport_divine_aid(to, 1);
66     }
67 }