]> git.pond.sub.org Git - empserver/blobdiff - src/lib/commands/togg.c
Update copyright notice
[empserver] / src / lib / commands / togg.c
index ff4b653784e434a1fddef4ec1b23a0a0f6ca3e12..a971acf0b74465a3093d5412a80f23b92d662bfb 100644 (file)
@@ -1,11 +1,11 @@
 /*
  *  Empire - A multi-player, client/server Internet based war game.
- *  Copyright (C) 1986-2000, Dave Pare, Jeff Bailey, Thomas Ruschak,
- *                           Ken Stevens, Steve McClure
+ *  Copyright (C) 1986-2016, 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,
  *  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/>.
  *
  *  ---
  *
- *  See the "LEGAL", "LICENSE", "CREDITS" and "README" files for all the
- *  related information and legal notices. It is expected that any future
- *  projects/authors will amend these files as needed.
+ *  See files README, COPYING and CREDITS in the root of the source
+ *  tree for related information and legal notices.  It is expected
+ *  that future projects/authors will amend these files as needed.
  *
  *  ---
  *
  *  togg.c: Set player flags
- * 
+ *
  *  Known contributors to this file:
  *     Ken Stevens, 1995
  *     Steve McClure, 1996
  */
 
-#include "misc.h"
-#include "player.h"
-#include "file.h"
-#include "nat.h"
+#include <config.h>
+
 #include "commands.h"
 
 int
 togg(void)
 {
-       int     flag = 0;
-       int     pos;
-       s_char  *name;
-       struct  natstr *np;
+    int flag = 0;
+    int pos;
+    char *name;
+    struct natstr *np;
 
-       np = getnatp(player->cnum);
-       if (player->argp[1]) {
-               switch (*player->argp[1]) {
-               case 'i':
-                       name = "inform"; flag = NF_INFORM; break;
-               case 'f':
-                       name = "flash"; flag = NF_FLASH; break;
-               case 'b':
-                       name = "beep"; flag = NF_BEEP; break;
-               case 'c':
-                       name = "coastwatch"; flag = NF_COASTWATCH; break;
-               case 's':
-                       name = "sonar"; flag = NF_SONAR; break;
-               case 't':
-                       name = "techlists"; flag = NF_TECHLISTS; break;
-               default:
-                       return RET_SYN;
-               }
-               if (player->argp[2])
-                       if (!strcmp(player->argp[2], "on"))
-                               pos = 1;
-                       else if (!strcmp(player->argp[2], "off"))
-                               pos = 0;
-                       else
-                               return RET_SYN;
-               else
-                       pos = !(np->nat_flags & flag);
-               if (pos)
-                       np->nat_flags |= flag;
-               else
-                       np->nat_flags &= ~flag;
-               putnat(np);
-               pr("%s flag %s\n", name, pos?"on":"off");
-       } else {
-               if (np->nat_flags & NF_INFORM)
-                       pr("inform flag on\n");
-               else
-                       pr("inform flag off\n");
-               if (np->nat_flags & NF_FLASH)
-                       pr("flash flag on\n");
-               else
-                       pr("flash flag off\n");
-               if (np->nat_flags & NF_BEEP)
-                       pr("beep flag on\n");
-               else
-                       pr("beep flag off\n");
-               if (np->nat_flags & NF_COASTWATCH)
-                       pr("coastwatch flag on\n");
-               else
-                       pr("coastwatch flag off\n");
-               if (np->nat_flags & NF_SONAR)
-                       pr("sonar flag on\n");
-               else
-                       pr("sonar flag off\n");
-               if (np->nat_flags & NF_TECHLISTS)
-                       pr("techlists flag on\n");
-               else
-                       pr("techlists flag off\n");
+    np = getnatp(player->cnum);
+    if (player->argp[1]) {
+       switch (*player->argp[1]) {
+       case 'i':
+           name = "inform";
+           flag = NF_INFORM;
+           break;
+       case 'f':
+           name = "flash";
+           flag = NF_FLASH;
+           break;
+       case 'b':
+           name = "beep";
+           flag = NF_BEEP;
+           break;
+       case 'c':
+           name = "coastwatch";
+           flag = NF_COASTWATCH;
+           break;
+       case 's':
+           name = "sonar";
+           flag = NF_SONAR;
+           break;
+       case 't':
+           name = "techlists";
+           flag = NF_TECHLISTS;
+           break;
+       default:
+           return RET_SYN;
        }
+       if (player->argp[2])
+           if (!strcmp(player->argp[2], "on"))
+               pos = 1;
+           else if (!strcmp(player->argp[2], "off"))
+               pos = 0;
+           else
+               return RET_SYN;
+       else
+           pos = !(np->nat_flags & flag);
+       if (pos)
+           np->nat_flags |= flag;
+       else
+           np->nat_flags &= ~flag;
+       putnat(np);
+       pr("%s flag %s\n", name, pos ? "on" : "off");
+    } else {
+       if (np->nat_flags & NF_INFORM)
+           pr("inform flag on\n");
+       else
+           pr("inform flag off\n");
+       if (np->nat_flags & NF_FLASH)
+           pr("flash flag on\n");
+       else
+           pr("flash flag off\n");
+       if (np->nat_flags & NF_BEEP)
+           pr("beep flag on\n");
+       else
+           pr("beep flag off\n");
+       if (np->nat_flags & NF_COASTWATCH)
+           pr("coastwatch flag on\n");
+       else
+           pr("coastwatch flag off\n");
+       if (np->nat_flags & NF_SONAR)
+           pr("sonar flag on\n");
+       else
+           pr("sonar flag off\n");
+       if (np->nat_flags & NF_TECHLISTS)
+           pr("techlists flag on\n");
+       else
+           pr("techlists flag off\n");
+    }
 
-       return RET_OK;
+    return RET_OK;
 }