]> git.pond.sub.org Git - empserver/blob - src/lib/commands/zdon.c
Indented with src/scripts/indent-emp.
[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] ",
89                          buf);
90     } else {
91         p = getstarg(player->argp[1], "Want update? [Yes|No|Check] ", buf);
92     }
93     if (player->aborted)
94         return RET_FAIL;
95
96     if (!p) {
97         /* Default response is checking only */
98         checking = 1;
99     } else {
100         checking = 0;
101         if (*p == 'n' || *p == 'N') {
102             wantupd = 0;
103         } else if (*p == 'y' || *p == 'Y') {
104             wantupd = 1;
105         } else {
106             /* Default response is checking only */
107             checking = 1;
108         }
109     }
110
111     if (!checking) {
112         if (!(natp = getnatp(whichcnum))) {
113             pr("Unable to find country. %d\n", whichcnum);
114             pr("Notify the Deity.\n");
115             return RET_FAIL;
116         }
117         if (wantupd) {
118             update = natp->nat_update | WUPD_WANT;
119             natp->nat_missed = 0;
120             pr("You (%d) now want an update.\n", whichcnum);
121         } else {
122             update = natp->nat_update & ~WUPD_WANT;
123             pr("You (%d) now DON'T want an update.\n", whichcnum);
124         }
125         natp->nat_update = update;
126         putnat(natp);
127     }
128
129     dowant = demand_update_want(&totwant, &totpop, whichcnum);
130     if (checking) {
131         if (dowant) {
132             pr("You want an update.\n");
133         } else
134             pr("You DON'T want an update, yet.\n");
135     }
136
137     pr("%d of a total of %d lunatics want an update.\n", totwant, totpop);
138
139     if (!checking && wantupd && demandupdatecheck()) {
140         pr("Here goes...\n");
141         empth_sem_signal(update_sem);
142     }
143     return RET_OK;
144 }