]> git.pond.sub.org Git - empserver/blobdiff - src/lib/commands/setres.c
Update copyright notice
[empserver] / src / lib / commands / setres.c
index 4f716530b0109244980a18ca40d65359c9e23f8f..2a668356d163dea5316f0875f00de34ed4caa011 100644 (file)
@@ -1,11 +1,11 @@
 /*
  *  Empire - A multi-player, client/server Internet based war game.
- *  Copyright (C) 1986-2007, Dave Pare, Jeff Bailey, Thomas Ruschak,
- *                           Ken Stevens, Steve McClure
+ *  Copyright (C) 1986-2012, 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/>.
  *
  *  ---
  *
@@ -26,7 +25,7 @@
  *  ---
  *
  *  setres.c: Set resources of a sector
- * 
+ *
  *  Known contributors to this file:
  *     David Muir Sharnoff
  *     Karl Hagen
@@ -49,109 +48,62 @@ setres(void)
     char *p;
     struct nstr_sect nstr;
     char buf[1024];
+    char char0;
+
+    what = getstarg(player->argp[1],
+                   "Set what (iron, gold, oil, uranium, fertility)? ",
+                   buf);
+    if (!what)
+       return RET_SYN;
+    char0 = what[0];
 
-    if ((what = getstarg(player->argp[1],
-                        "Set What (iron, gold, oil, uranium, fertility)? ",
-                        buf)) == 0)
+    if (!snxtsct(&nstr, player->argp[2]))
        return RET_SYN;
-    switch (what[0]) {
-    case 'i':
-       if (!snxtsct(&nstr, player->argp[2]))
+    while (nxtsct(&nstr, &sect) > 0) {
+       p = getstarg(player->argp[3], "What value : ", buf);
+       if (!p || !*p)
            return RET_SYN;
-       while (nxtsct(&nstr, &sect) > 0) {
-           if (!(p = getstarg(player->argp[3], "What value : ", buf)) ||
-               (*p == '\0'))
-               return RET_SYN;
-           amt = atoi(p);
-           if (amt > 100)
-               amt = 100;
-           if (amt < 0)
-               amt = 0;
+       amt = atoi(p);
+       if (amt > 100)
+           amt = 100;
+       if (amt < 0)
+           amt = 0;
+       check_sect_ok(&sect);
+       switch (char0) {
+       case 'i':
            if (sect.sct_own != 0)
                resnoise(&sect, 1, "Iron ore content",
                         (int)sect.sct_min, amt);
            sect.sct_min = (unsigned char)amt;
-           putsect(&sect);
-       }
-       break;
-    case 'g':
-       if (!snxtsct(&nstr, player->argp[2]))
-           return RET_SYN;
-       while (nxtsct(&nstr, &sect) > 0) {
-           if (!(p = getstarg(player->argp[3], "What value : ", buf)) ||
-               (*p == '\0'))
-               return RET_SYN;
-           amt = atoi(p);
-           if (amt > 100)
-               amt = 100;
-           if (amt < 0)
-               amt = 0;
+           break;
+       case 'g':
            if (sect.sct_own != 0)
                resnoise(&sect, 1, "Gold content",
                         (int)sect.sct_gmin, amt);
            sect.sct_gmin = (unsigned char)amt;
-           putsect(&sect);
-       }
-       break;
-    case 'o':
-       if (!snxtsct(&nstr, player->argp[2]))
-           return RET_SYN;
-       while (nxtsct(&nstr, &sect) > 0) {
-           if (!(p = getstarg(player->argp[3], "What value : ", buf)) ||
-               (*p == '\0'))
-               return RET_SYN;
-           amt = atoi(p);
-           if (amt > 100)
-               amt = 100;
-           if (amt < 0)
-               amt = 0;
+           break;
+       case 'o':
            if (sect.sct_own != 0)
                resnoise(&sect, 1, "Oil content", (int)sect.sct_oil, amt);
            sect.sct_oil = (unsigned char)amt;
-           putsect(&sect);
-       }
-       break;
-    case 'f':
-       if (!snxtsct(&nstr, player->argp[2]))
-           return RET_SYN;
-       while (nxtsct(&nstr, &sect) > 0) {
-           if (!(p = getstarg(player->argp[3], "What value : ", buf)) ||
-               (*p == '\0'))
-               return RET_SYN;
-           amt = atoi(p);
-           if (amt > 100)
-               amt = 100;
-           if (amt < 0)
-               amt = 0;
+           break;
+       case 'f':
            if (sect.sct_own != 0)
                resnoise(&sect, 1, "Fertility content",
                         (int)sect.sct_fertil, amt);
            sect.sct_fertil = (unsigned char)amt;
-           putsect(&sect);
-       }
-       break;
-    case 'u':
-       if (!snxtsct(&nstr, player->argp[2]))
-           return RET_SYN;
-       while (nxtsct(&nstr, &sect) > 0) {
-           if (!(p = getstarg(player->argp[3], "What value : ", buf)) ||
-               (*p == '\0'))
-               return RET_SYN;
-           amt = atoi(p);
-           if (amt > 100)
-               amt = 100;
-           if (amt < 0)
-               amt = 0;
+           break;
+       case 'u':
            if (sect.sct_own != 0)
                resnoise(&sect, 1, "Uranium content",
                         (int)sect.sct_uran, amt);
            sect.sct_uran = (unsigned char)amt;
-           putsect(&sect);
+           break;
+       default:
+           pr("huh?\n");
+           return RET_SYN;
        }
-       break;
-    default:
-       pr("huh?\n");
-       return RET_SYN;
+       putsect(&sect);
     }
     return RET_OK;
 }