]> git.pond.sub.org Git - empserver/blob - src/lib/commands/togg.c
Import of Empire 4.2.12
[empserver] / src / lib / commands / togg.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2000, Dave Pare, Jeff Bailey, Thomas Ruschak,
4  *                           Ken Stevens, Steve McClure
5  *
6  *  This program is free software; you can redistribute it and/or modify
7  *  it under the terms of the GNU General Public License as published by
8  *  the Free Software Foundation; either version 2 of the License, or
9  *  (at your option) any later version.
10  *
11  *  This program is distributed in the hope that it will be useful,
12  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
13  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  *  GNU General Public License for more details.
15  *
16  *  You should have received a copy of the GNU General Public License
17  *  along with this program; if not, write to the Free Software
18  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19  *
20  *  ---
21  *
22  *  See the "LEGAL", "LICENSE", "CREDITS" and "README" files for all the
23  *  related information and legal notices. It is expected that any future
24  *  projects/authors will amend these files as needed.
25  *
26  *  ---
27  *
28  *  togg.c: Set player flags
29  * 
30  *  Known contributors to this file:
31  *     Ken Stevens, 1995
32  *     Steve McClure, 1996
33  */
34
35 #include "misc.h"
36 #include "player.h"
37 #include "file.h"
38 #include "nat.h"
39 #include "commands.h"
40
41 int
42 togg(void)
43 {
44         int     flag = 0;
45         int     pos;
46         s_char  *name;
47         struct  natstr *np;
48
49         np = getnatp(player->cnum);
50         if (player->argp[1]) {
51                 switch (*player->argp[1]) {
52                 case 'i':
53                         name = "inform"; flag = NF_INFORM; break;
54                 case 'f':
55                         name = "flash"; flag = NF_FLASH; break;
56                 case 'b':
57                         name = "beep"; flag = NF_BEEP; break;
58                 case 'c':
59                         name = "coastwatch"; flag = NF_COASTWATCH; break;
60                 case 's':
61                         name = "sonar"; flag = NF_SONAR; break;
62                 case 't':
63                         name = "techlists"; flag = NF_TECHLISTS; break;
64                 default:
65                         return RET_SYN;
66                 }
67                 if (player->argp[2])
68                         if (!strcmp(player->argp[2], "on"))
69                                 pos = 1;
70                         else if (!strcmp(player->argp[2], "off"))
71                                 pos = 0;
72                         else
73                                 return RET_SYN;
74                 else
75                         pos = !(np->nat_flags & flag);
76                 if (pos)
77                         np->nat_flags |= flag;
78                 else
79                         np->nat_flags &= ~flag;
80                 putnat(np);
81                 pr("%s flag %s\n", name, pos?"on":"off");
82         } else {
83                 if (np->nat_flags & NF_INFORM)
84                         pr("inform flag on\n");
85                 else
86                         pr("inform flag off\n");
87                 if (np->nat_flags & NF_FLASH)
88                         pr("flash flag on\n");
89                 else
90                         pr("flash flag off\n");
91                 if (np->nat_flags & NF_BEEP)
92                         pr("beep flag on\n");
93                 else
94                         pr("beep flag off\n");
95                 if (np->nat_flags & NF_COASTWATCH)
96                         pr("coastwatch flag on\n");
97                 else
98                         pr("coastwatch flag off\n");
99                 if (np->nat_flags & NF_SONAR)
100                         pr("sonar flag on\n");
101                 else
102                         pr("sonar flag off\n");
103                 if (np->nat_flags & NF_TECHLISTS)
104                         pr("techlists flag on\n");
105                 else
106                         pr("techlists flag off\n");
107         }
108
109         return RET_OK;
110 }