]> git.pond.sub.org Git - empserver/blobdiff - src/lib/commands/upda.c
Update known contributors comments
[empserver] / src / lib / commands / upda.c
index e18472e65f91616149f9b09a69e16a5621b9ba5f..35c3f163b887530f809f3396ab792871b84a1ae3 100644 (file)
@@ -1,11 +1,11 @@
 /*
  *  Empire - A multi-player, client/server Internet based war game.
- *  Copyright (C) 1986-2006, Dave Pare, Jeff Bailey, Thomas Ruschak,
- *                           Ken Stevens, Steve McClure
+ *  Copyright (C) 1986-2011, Dave Pare, Jeff Bailey, Thomas Ruschak,
+ *                Ken Stevens, Steve McClure, Markus Armbruster
  *
- *  This program is free software; you can redistribute it and/or modify
+ *  Empire is free software: you can redistribute it and/or modify
  *  it under the terms of the GNU General Public License as published by
- *  the Free Software Foundation; either version 2 of the License, or
+ *  the Free Software Foundation, either version 3 of the License, or
  *  (at your option) any later version.
  *
  *  This program is distributed in the hope that it will be useful,
@@ -14,8 +14,7 @@
  *  GNU General Public License for more details.
  *
  *  You should have received a copy of the GNU General Public License
- *  along with this program; if not, write to the Free Software
- *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+ *  along with this program.  If not, see <http://www.gnu.org/licenses/>.
  *
  *  ---
  *
  *  ---
  *
  *  upda.c: Give the time of the next update
- * 
+ *
  *  Known contributors to this file:
- *  
+ *     Markus Armbruster, 2007-2010
  */
 
 #include <config.h>
 
-#include <stdio.h>
-#include <sys/types.h>
-#include <time.h>
-#include "misc.h"
-#include "player.h"
 #include "commands.h"
+#include "game.h"
 #include "optlist.h"
-#include "wantupd.h"
 #include "server.h"
 
 /*
 int
 upda(void)
 {
-    FILE *fp;
-    struct mob_acc_globals timestamps;
-    time_t now, next, delta;
-
-    if (opt_MOB_ACCESS) {
-       if ((fp = fopen(timestampfil, "rb")) == NULL)
-           logerror("Unable to open timestamp file.");
-       else {
-           rewind(fp);
-           fread(&timestamps, sizeof(timestamps), 1, fp);
-           fclose(fp);
-           if (updating_mob)
-               pr("Mobility updating is enabled.\n\n");
-           else {
-               pr("Mobility updating will come back on around %s",
-                  ctime(&timestamps.starttime));
-               pr("game time, within 3 minutes, depending on when the server checks.\n\n");
-           }
-       }
-    }
+    time_t now, next, stop;
 
     if (updates_disabled())
        pr("UPDATES ARE DISABLED!\n");
 
     (void)time(&now);
-    switch (update_policy) {
-    case UDP_NORMAL:
-       next_update_time(&now, &next, &delta);
+    next = update_time[0];
+    if (next) {
        pr("\nUpdates occur at times specified by the ETU rates.\n\n");
        pr("The next update is at %19.19s.\n", ctime(&next));
-       break;
-    case UDP_TIMES:
-       next_update_time(&now, &next, &delta);
-       pr("\nUpdates occur at scheduled times.\n\n");
-       pr("The next update is at %19.19s.\n", ctime(&next));
-       break;
-    case UDP_BLITZ:
-       next_update_time(&now, &next, &delta);
-       pr("\nBlitz Updates occur every %d minutes. \n\n", blitz_time);
-       pr("The next update is at %19.19s.\n", ctime(&next));
-       break;
-    case UDP_NOREG:
+    } else {
        pr("There are no regularly scheduled updates.\n");
-       break;
-    default:
-       pr("Update policy is inconsistent.\n");
     }
     pr("The current time is   %19.19s.\n\n", ctime(&now));
 
-    if (update_window) {
-       now = update_time - update_window;
-       next_update_time(&now, &next, &delta);
-       pr("The next update window starts at %19.19s.\n",
-          ctime(&next));
-       next += update_window;
-       pr("The next update window stops at %19.19s.\n", ctime(&next));
-    }
-    if (opt_DEMANDUPDATE) {
-       if (update_demandpolicy != UDDEM_DISABLE) {
-           switch (update_demandpolicy) {
-           case UDDEM_TMCHECK:
-               next_update_check_time(&now, &next, &delta);
-               pr("Demand updates occur at update CHECK times.\n");
-               pr("The next update check is at %19.19s.\n",
-                  ctime(&next));
-               break;
-           case UDDEM_COMSET:
-               pr("Demand updates occur right after the demand is set.\n");
-               break;
-           default:
-               pr("Update demand policy is inconsistent.\n");
-           }
-       }
+    if (next && update_window) {
+       pr("The next update window starts at %19.19s.\n", ctime(&next));
+       stop = next + update_window;
+       pr("The next update window stops at %19.19s.\n", ctime(&stop));
     }
 
-    if ((update_policy == UDP_TIMES) ||
-       ((update_demandpolicy == UDDEM_TMCHECK) && opt_DEMANDUPDATE)) {
-       if (*update_times != 0)
-           pr("The update schedule is: %s\n", update_times);
-    }
-    if (opt_DEMANDUPDATE) {
-       if (update_demandpolicy != UDDEM_DISABLE) {
-           if (*update_demandtimes != 0)
-               pr("Demand updates are allowed during: %s\n",
-                  update_demandtimes);
-           pr("Demand updates require %d country(s) to want one.\n",
-              update_wantmin);
+    switch (update_demand) {
+    case UPD_DEMAND_NONE:
+    default:
+       break;
+    case UPD_DEMAND_SCHED:
+       pr("Demand updates occur at update CHECK times.\n");
+       if (next) {
+           pr("The next update check is at %19.19s.\n", ctime(&next));
+       }
+       pr("Demand updates require %d country(s) to want one.\n",
+          update_wantmin);
+       break;
+    case UPD_DEMAND_ASYNC:
+       pr("Demand updates occur right after the demand is set.\n");
+       if (*update_demandtimes != 0) {
+           pr("Demand updates are allowed during: %s\n",
+              update_demandtimes);
        }
+       pr("Demand updates require %d country(s) to want one.\n",
+          update_wantmin);
     }
+
     if (*game_days != 0)
        pr("Game days are: %s\n", game_days);
     if (*game_hours != 0)
        pr("Game hours are: %s\n", game_hours);
 
+    pr("\nThis command is obsolete and will go away in a future version.\n"
+       "Please use \"show updates\".\n");
     return 0;
 }