aboutsummaryrefslogtreecommitdiffstats
path: root/FICS/shutdown.c
diff options
context:
space:
mode:
authorMarkus Uhlin <markus@nifty-networks.net>2023-12-18 21:52:21 +0100
committerMarkus Uhlin <markus@nifty-networks.net>2023-12-18 21:52:21 +0100
commit4091baee1851626140043af00be215665730efc8 (patch)
tree38af8e203a3c601e36ad867867bb23dabe61e858 /FICS/shutdown.c
parent51772a48b1febbda8864eda6b59c6f341163fd4a (diff)
Reformatted com_shutdown()
Diffstat (limited to 'FICS/shutdown.c')
-rw-r--r--FICS/shutdown.c204
1 files changed, 113 insertions, 91 deletions
diff --git a/FICS/shutdown.c b/FICS/shutdown.c
index 2b2c58d..dab8ca3 100644
--- a/FICS/shutdown.c
+++ b/FICS/shutdown.c
@@ -130,102 +130,124 @@ PUBLIC int check_and_print_shutdown(int p)
/*
- * shutdown
- *
* Usage: shutdown [now,cancel,time]
*
- * This command shutsdown the server. If the parameter is omitted or
- * is 'now' then the server is immediately halted cleanly. If a time is
- * given then a countdown commences and the server is halted when time is
- * up. If 'cancel' is given then the countdown is stopped.
+ * This command shuts down the server. If the parameter is omitted or
+ * is 'now' then the server is immediately halted cleanly. If a time
+ * is given then a countdown commences and the server is halted when
+ * time is up. If 'cancel' is given then the countdown is stopped.
*/
-PUBLIC int com_shutdown(int p, param_list param)
+PUBLIC int
+com_shutdown(int p, param_list param)
{
- char *ptr;
- int p1, secs;
+ char *ptr;
+ int p1, secs;
- ASSERT(parray[p].adminLevel >= ADMIN_ADMIN);
- strcpy(downer, parray[p].name);
- shutdownStartTime = time(0);
- if (shutdownTime) { /* Cancel any pending shutdowns */
- for (p1 = 0; p1 < p_num; p1++) {
- if (parray[p1].status != PLAYER_PROMPT)
- continue;
- pprintf(p1, "\n\n **** Server shutdown canceled by %s. ****\n", downer);
- }
- shutdownTime = 0;
- if (param[0].type == TYPE_NULL)
- return COM_OK;
- }
- /* Work out how soon to shut down */
- if (param[0].type == TYPE_NULL)
- shutdownTime = 300;
- else {
- if (!strcmp(param[0].val.word, "now"))
- shutdownTime = 0;
- else if (!strcmp(param[0].val.word, "die")) {
- fprintf (stderr,"%s salutes FICS and presses the self-destruct button.\n",
- parray[p].name);
- output_shut_mess();
- abort();
- } else if (!strcmp(param[0].val.word, "cancel"))
- return COM_OK;
- else {
- ptr = param[0].val.word;
- shutdownTime = secs = 0;
- p1 = 2;
- while (*ptr) {
- switch (*ptr) {
- case '0':
- case '1':
- case '2':
- case '3':
- case '4':
- case '5':
- case '6':
- case '7':
- case '8':
- case '9':
- secs = secs * 10 + *ptr - '0';
- break;
- case ':':
- if (p1--) {
- shutdownTime = shutdownTime * 60 + secs;
- secs = 0;
- break;
- }
- default:
- shutdownTime = 0;
- pprintf(p, "I don't know what you mean by %s\n", param[0].val.word);
- return COM_OK;
- }
- ptr++;
- }
- shutdownTime = shutdownTime * 60 + secs;
- }
- }
- if (shutdownTime <= 0)
- ShutDown();
- if (param[1].type == TYPE_STRING)
- strcpy (reason,param[1].val.string);
- else
- reason[0] = '\0'; /* No reason - perhaps admin is in a bad mood? :) */
- for (p1 = 0; p1 < p_num; p1++) {
- if (parray[p1].status != PLAYER_PROMPT)
- continue;
- pprintf(p1, "\n\n **** Server shutdown ordered by %s. ****\n", downer);
- if (reason[0] != '\0')
- pprintf(p1, " **** We are going down because: %s. ****\n",reason);
- pprintf(p1,
- " **** Server going down in %d minutes and %d seconds. ****\n",
- shutdownTime / 60, shutdownTime % 60);
- if (p != p1) /* fix double prompt - DAV */
- pprintf_prompt (p1,"\n");
- else
- pprintf (p1,"\n");
- }
- lastTimeLeft = 0;
- return COM_OK;
+ ASSERT(parray[p].adminLevel >= ADMIN_ADMIN);
+ strcpy(downer, parray[p].name);
+ shutdownStartTime = time(0);
+
+ if (shutdownTime) { // Cancel any pending shutdowns
+ for (p1 = 0; p1 < p_num; p1++) {
+ if (parray[p1].status != PLAYER_PROMPT)
+ continue;
+ pprintf(p1, "\n\n **** Server shutdown canceled by "
+ "%s. ****\n", downer);
+ }
+
+ shutdownTime = 0;
+
+ if (param[0].type == TYPE_NULL)
+ return COM_OK;
+ }
+
+ /*
+ * Work out how soon to shut down
+ */
+ if (param[0].type == TYPE_NULL) {
+ shutdownTime = 300;
+ } else {
+ if (!strcmp(param[0].val.word, "now")) {
+ shutdownTime = 0;
+ } else if (!strcmp(param[0].val.word, "die")) {
+ fprintf(stderr,"%s salutes FICS and presses the "
+ "self-destruct button.\n", parray[p].name);
+ output_shut_mess();
+ abort();
+ } else if (!strcmp(param[0].val.word, "cancel")) {
+ return COM_OK;
+ } else {
+ ptr = param[0].val.word;
+ shutdownTime = secs = 0;
+ p1 = 2;
+
+ while (*ptr) {
+ switch (*ptr) {
+ case '0':
+ case '1':
+ case '2':
+ case '3':
+ case '4':
+ case '5':
+ case '6':
+ case '7':
+ case '8':
+ case '9':
+ secs = (secs * 10 + *ptr - '0');
+ break;
+ case ':':
+ if (p1--) {
+ shutdownTime = (shutdownTime *
+ 60 + secs);
+ secs = 0;
+ break;
+ }
+ default:
+ shutdownTime = 0;
+ pprintf(p, "I don't know what you mean "
+ "by %s\n", param[0].val.word);
+ return COM_OK;
+ }
+
+ ptr++;
+ }
+
+ shutdownTime = (shutdownTime * 60 + secs);
+ }
+ }
+
+ if (shutdownTime <= 0)
+ ShutDown();
+ if (param[1].type == TYPE_STRING)
+ strcpy(reason, param[1].val.string);
+ else
+ reason[0] = '\0'; // No reason - perhaps admin is in a
+ // bad mood? :)
+
+ for (p1 = 0; p1 < p_num; p1++) {
+ if (parray[p1].status != PLAYER_PROMPT)
+ continue;
+
+ pprintf(p1, "\n\n **** Server shutdown ordered by %s. "
+ "****\n", downer);
+
+ if (reason[0] != '\0') {
+ pprintf(p1, " **** We are going down because: "
+ "%s. ****\n", reason);
+ }
+
+ pprintf(p1, " **** Server going down in %d minutes and %d "
+ "seconds. ****\n",
+ (shutdownTime / 60),
+ (shutdownTime % 60));
+ if (p != p1) // fix double prompt - DAV
+ pprintf_prompt(p1, "\n");
+ else
+ pprintf(p1, "\n");
+ }
+
+ lastTimeLeft = 0;
+ return COM_OK;
}
PUBLIC int