]> git.pond.sub.org Git - empserver/blob - src/lib/player/dispatch.c
(dispatch): Argument buf is user text and must be printed as such. In
[empserver] / src / lib / player / dispatch.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2005, 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  *  dispatch.c: Actually execute the command given
29  * 
30  *  Known contributors to this file:
31  *     Dave Pare, 1994
32  *     Steve McClure, 1998
33  */
34
35 #include "prototypes.h"
36 #include "misc.h"
37 #include "player.h"
38 #include "com.h"
39 #include "match.h"
40 #include "nat.h"
41 #include "file.h"
42 #include "proto.h"
43 #include "empio.h"
44 #include "optlist.h"
45 #include "subs.h"
46 #include "common.h"
47 #include "server.h"
48
49 /*
50  * Execute command named by player->argp[0].
51  * BUF is the raw command line (user text).  It should have been
52  * passed to parse() to set up player->argp.
53  * If REDIR is not null, it's the command's redirection; it is user
54  * text.
55  * Return -1 if the command is not unique or doesn't exist, else 0.
56  */
57 int
58 dispatch(char *buf, char *redir)
59 {
60     struct natstr *np;
61     struct cmndstr *command;
62     int cmd;
63
64     cmd = comtch(player->argp[0], player_coms,
65                  player->ncomstat, player->god);
66     if (cmd < 0) {
67         if (cmd == M_NOTUNIQUE)
68             pr("Command \"%s\" is ambiguous -- ", player->argp[0]);
69         else if (cmd == M_IGNORE)
70             return 0;
71         else {
72             pr("\"%s\" is not a legal command ", player->argp[0]);
73             if (player->nstat != player->ncomstat)
74                 pr("now ");
75             pr("\n");
76         }
77         return -1;
78     }
79     command = &player_coms[cmd];
80     np = getnatp(player->cnum);
81     if (np->nat_btu < command->c_cost && command->c_cost > 0) {
82         if (player->god || opt_BLITZ)
83             np->nat_btu = max_btus;
84         else {
85             pr("You don't have the BTU's, bozo\n");
86             return 0;
87         }
88     }
89     if (command->c_addr == 0) {
90         pr("Command not implemented\n");
91         return 0;
92     }
93     if (update_pending) {
94         pr("Update in progress...command failed\n");
95         return 0;
96     }
97     if (redir) {
98         prredir(redir);
99         uprnf(buf);
100         pr("\n");
101     }
102     player->command = command;
103     switch (command->c_addr()) {
104     case RET_OK:
105         player->btused += command->c_cost;
106         break;
107     case RET_FAIL:
108         pr("command failed\n");
109         player->btused += command->c_cost;
110         break;
111     case RET_SYN:
112         pr("Usage: %s\n", command->c_form);
113         break;
114     default:
115         logerror("%s: returned bad value", command->c_form);
116         break;
117     }
118     player->command = 0;
119     return 0;
120 }