]> git.pond.sub.org Git - empserver/blob - src/lib/commands/zdon.c
Import of Empire 4.2.12
[empserver] / src / lib / commands / zdon.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2000, 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 the "LEGAL", "LICENSE", "CREDITS" and "README" files for all the
23  *  related information and legal notices. It is expected that any future
24  *  projects/authors will amend these files as needed.
25  *
26  *  ---
27  *
28  *  zdon.c: Update right now
29  * 
30  *  Known contributors to this file:
31  *     Doug Hay, 1990
32  */
33
34 /*
35  * Syntax:
36  *  Normal player:   zdone [Y|N|C]
37  *  Deity        :   zdone [country_num [Y|N|C]]
38  *
39  *  Where:
40  *         Y  = Yes, wants an update.
41  *         N  = No, change status to not wanting an update.
42  *         C  = Check (the default), check how many want an update.
43  *
44  * Sets/Unsets a nation flag.
45  *
46  * Only considers NORMAL, active countries.  No Deities or sanctuaries.
47  *
48  * After the change, send a message to the "tm" for it to check
49  * if an update should occur.
50  */
51
52 #include <stdio.h>
53 #include "misc.h"
54 #include "player.h"
55 #include "nat.h"
56 #include "file.h"
57 #include "deity.h"
58 #include "empthread.h"
59 #include "commands.h"
60 #include "optlist.h"
61
62 int
63 zdon(void)
64 {
65         extern  empth_sem_t *update_sem;
66         natid   whichcnum;
67         struct  natstr *natp;
68         register s_char *p;
69
70         int     update;
71         int     checking;
72         int     wantupd;
73         int     totpop;
74         int     totwant;
75         int     dowant;
76         s_char  buf[1024];
77
78         if (!opt_DEMANDUPDATE) {
79             pr("Demand updates are not enabled.\n");
80             return RET_FAIL;
81         }
82         whichcnum = player->cnum;
83         p = NULL;
84         if (player->god) {
85                 /* Deity syntax "country what" */
86                 whichcnum = onearg(player->argp[1], "Which country no.? ");
87                 if ((whichcnum > 0)  && (getnatp(whichcnum)))
88                         p = getstarg(player->argp[2], "Want update? [Yes|No|Check] ", buf);
89         } else {
90                 p = getstarg(player->argp[1], "Want update? [Yes|No|Check] ", buf);
91         }
92         if (player->aborted)
93                 return RET_FAIL;
94
95         if (!p) {
96                 /* Default response is checking only */
97                 checking = 1;
98         } else {
99                 checking = 0;
100                 if (*p == 'n' || *p == 'N') {
101                         wantupd = 0;
102                 } else if (*p == 'y' || *p == 'Y') {
103                         wantupd = 1;
104                 } else {
105                         /* Default response is checking only */
106                         checking = 1;
107                 }
108         }
109
110         if (!checking) {
111                 if (!(natp = getnatp(whichcnum))) {
112                         pr("Unable to find country. %d\n", whichcnum);
113                         pr("Notify the Deity.\n");
114                         return RET_FAIL;
115                 }
116                 if (wantupd) {
117                         update = natp->nat_update | WUPD_WANT;
118                         natp->nat_missed = 0;
119                         pr("You (%d) now want an update.\n",
120                                 whichcnum);
121                 } else {
122                         update = natp->nat_update & ~WUPD_WANT;
123                         pr("You (%d) now DON'T want an update.\n",
124                                 whichcnum);
125                 }
126                 natp->nat_update = update;
127                 putnat(natp);
128         }
129
130         dowant = demand_update_want(&totwant, &totpop, whichcnum);
131         if (checking) {
132                 if (dowant) {
133                         pr("You want an update.\n");
134                 } else
135                         pr("You DON'T want an update, yet.\n");
136         }
137
138         pr("%d of a total of %d lunatics want an update.\n", totwant, totpop);
139
140         if (!checking && wantupd && demandupdatecheck()) {
141                 pr("Here goes...\n");
142                 empth_sem_signal(update_sem);
143         }
144         return RET_OK;
145 }