]> git.pond.sub.org Git - empserver/blobdiff - src/lib/commands/expl.c
Update copyright notice.
[empserver] / src / lib / commands / expl.c
index 17d95f587976fc0564a4bee394ab67e85df04621..af1ab6b7885eab394a7fd42c3502da012e9a4c73 100644 (file)
@@ -1,6 +1,6 @@
 /*
  *  Empire - A multi-player, client/server Internet based war game.
- *  Copyright (C) 1986-2000, Dave Pare, Jeff Bailey, Thomas Ruschak,
+ *  Copyright (C) 1986-2004, Dave Pare, Jeff Bailey, Thomas Ruschak,
  *                           Ken Stevens, Steve McClure
  *
  *  This program is free software; you can redistribute it and/or modify
 #include "nsc.h"
 #include "item.h"
 #include "file.h"
-#include "deity.h"
 #include "nat.h"
 #include "optlist.h"
 #include "commands.h"
 
 static int explore_map(s_char *what, coord curx, coord cury, s_char *arg);
 
-extern int etu_per_update;
-extern int sect_mob_neg_factor;
-
 int
 explore(void)
 {
@@ -75,11 +71,10 @@ explore(void)
     s_char buf[1024];
     s_char prompt[128];
 
-    if ((ip =
-        whatitem(player->argp[1], "explore with what? (civ/mil) ")) == 0)
+    if (!(ip = whatitem(player->argp[1], "explore with what? (civ/mil) ")))
        return RET_SYN;
     vtype = ip->i_vtype;
-    if ((vtype != V_CIVIL) && (vtype != V_MILIT)) {
+    if ((vtype != I_CIVIL) && (vtype != I_MILIT)) {
        pr("You can only explore with civs and mil.\n");
        return RET_FAIL;
     }
@@ -91,15 +86,15 @@ explore(void)
        pr("Not yours\n");
        return RET_FAIL;
     }
-    infected = getvar(V_PSTAGE, (s_char *)&sect, EF_SECTOR) == PLG_INFECT;
-    if ((amt_src = getvar(vtype, (s_char *)&sect, EF_SECTOR)) <= 0) {
+    infected = sect.sct_pstage == PLG_INFECT;
+    if ((amt_src = sect.sct_item[vtype]) <= 0) {
        pr("No %s in %s\n", ip->i_name,
           xyas(sect.sct_x, sect.sct_y, player->cnum));
        return RET_SYN;
     }
     own = sect.sct_own;
     mob = (int)sect.sct_mobil;
-    if (vtype == V_CIVIL && sect.sct_oldown != own) {
+    if (vtype == I_CIVIL && sect.sct_oldown != own) {
        pr("You can't explore with conquered populace!\n");
        return RET_SYN;
     }
@@ -108,15 +103,13 @@ explore(void)
           xyas(sect.sct_x, sect.sct_y, player->cnum));
        return RET_SYN;
     }
-    if (vtype == V_CIVIL) {
-       work = sect.sct_work;
-       if (work != 100)
-           pr("Warning: civil unrest\n");
-       loyal = sect.sct_loyal;
-    } else if (vtype == V_MILIT) {
-       work = 100;
-       loyal = 0;
-    }
+
+    /* only used when moving civs; but prevent spurious compiler warnings */
+    work = sect.sct_work;
+    loyal = sect.sct_loyal;
+    if (vtype == I_CIVIL && work != 100)
+       pr("Warning: civil unrest\n");
+
     sprintf(prompt, "Number of %s to explore with? (max %d) ",
            ip->i_name, amt_src);
     amount = onearg(player->argp[3], prompt);
@@ -140,14 +133,14 @@ explore(void)
     weight = amount * ip->i_lbs;
     /* remove commodities from source sector */
     getsect(x, y, &start);
-    amt_src = getvar(vtype, (s_char *)&start, EF_SECTOR);
+    amt_src = start.sct_item[vtype];
     amt_src -= amount;
     if (amt_src < 0) {
        pr("%s in %s are gone!\n", ip->i_name,
           xyas(start.sct_x, start.sct_y, player->cnum));
        return RET_OK;
     }
-    putvar(vtype, amt_src, (s_char *)&start, EF_SECTOR);
+    start.sct_item[vtype] = amt_src;
     start.sct_flags |= MOVE_IN_PROGRESS;
     putsect(&start);
     /*
@@ -155,7 +148,7 @@ explore(void)
      */
     dam = 1;
     mcost = move_ground((s_char *)ip, &sect, &endsect,
-                       (double)sect.sct_mobil, weight, player->argp[4],
+                       weight, player->argp[4],
                        explore_map, 1, &dam);
 
     if (dam) {
@@ -197,6 +190,12 @@ explore(void)
      *      Check for a multitude of problems
      */
     getsect(endsect.sct_x, endsect.sct_y, &chksect);
+    if (amount <= 0) {
+       getsect(start.sct_x, start.sct_y, &start);
+       sect.sct_flags &= ~MOVE_IN_PROGRESS;
+       putsect(&sect);
+       return RET_FAIL;
+    }
     if (chksect.sct_type == '.') {
        pr("Bridge disappeared!\n");
        getsect(start.sct_x, start.sct_y, &start);
@@ -207,7 +206,7 @@ explore(void)
     if (!player->god && chksect.sct_own && chksect.sct_own != player->cnum
        && chksect.sct_type != SCT_SANCT) {
        pr("Somebody beat you there!\n");
-       /* Send them xback home */
+       /* Send them back home */
        getsect(start.sct_x, start.sct_y, &sect);
        if (sect.sct_own != own) {
            pr("Someone captured the sector you started from!\n");
@@ -219,13 +218,13 @@ explore(void)
     }
 
     if (!player->god && !player->owner && sect.sct_type != SCT_SANCT) {
-       (void)takeover(&sect, player->cnum);
+       takeover(&sect, player->cnum);
        justtook = 1;
        sect.sct_oldown = own;
-       sect.sct_work = work;
-       sect.sct_loyal = loyal;
+       sect.sct_work = 100;
+       sect.sct_loyal = 0;
     }
-    if (vtype == V_CIVIL && sect.sct_oldown != player->cnum) {
+    if (vtype == I_CIVIL && sect.sct_oldown != player->cnum) {
        pr("Your civilians don't want to stay!\n");
        getsect(start.sct_x, start.sct_y, &sect);
        if (sect.sct_own != own) {
@@ -236,21 +235,14 @@ explore(void)
            return RET_FAIL;
        }
     }
-    getsect(start.sct_x, start.sct_y, &start);
-    start.sct_flags &= ~MOVE_IN_PROGRESS;
-    putsect(&start);
-    amt_dst = getvar(vtype, (s_char *)&sect, EF_SECTOR);
-    if (32767 - amt_dst < amount) {
-       amount = 32767 - amt_dst;
+    amt_dst = sect.sct_item[vtype];
+    if (amount > ITEM_MAX - amt_dst) {
+       amount = ITEM_MAX - amt_dst;
        pr("Only %d can be left there.\n", amount);
        if (amount <= 0)
            getsect(start.sct_x, start.sct_y, &sect);
     }
-    if (putvar(vtype, amount + amt_dst, (s_char *)&sect, EF_SECTOR) < 0) {
-       pr("No more room in %s.\n",
-          xyas(sect.sct_x, sect.sct_y, player->cnum));
-       return RET_OK;
-    }
+    sect.sct_item[vtype] = amount + amt_dst;
     /*
      * Now add commodities to destination sector,
      * along with plague that came along for the ride.
@@ -266,24 +258,18 @@ explore(void)
            sect.sct_mobil = 0;
        }
     }
-    if (infected && getvar(V_PSTAGE, (s_char *)&sect, EF_SECTOR) == 0)
-       putvar(V_PSTAGE, PLG_EXPOSED, (s_char *)&sect, EF_SECTOR);
-    if (vtype == V_CIVIL) {
-       if (opt_NEW_WORK) {
-           sect.sct_loyal = ((amt_dst * sect.sct_loyal) +
-                             (amount * loyal)) / (amt_dst + amount);
-           sect.sct_work = ((amt_dst * sect.sct_work) +
-                            (amount * work)) / (amt_dst + amount);
-       } else {                /* ! NEW_WORK */
-
-           /* It only takes one bad apple... */
-           if (sect.sct_loyal < loyal)
-               sect.sct_loyal = loyal;
-           if (sect.sct_work > work)
-               sect.sct_work = work;
-       }                       /* end NEW_WORK */
+    if (infected && sect.sct_pstage == PLG_HEALTHY)
+       sect.sct_pstage = PLG_EXPOSED;
+    if (vtype == I_CIVIL) {
+       sect.sct_loyal
+           = (amt_dst * sect.sct_loyal + amount * loyal) / (amt_dst + amount);
+       sect.sct_work
+           = (amt_dst * sect.sct_work + amount * work) / (amt_dst + amount);
     }
     putsect(&sect);
+    getsect(start.sct_x, start.sct_y, &start);
+    start.sct_flags &= ~MOVE_IN_PROGRESS;
+    putsect(&start);
     return RET_OK;
 }