]> git.pond.sub.org Git - empserver/blob - src/lib/player/dispatch.c
Update copyright notice.
[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 int
50 dispatch(s_char *buf, s_char *redir)
51 {
52     struct natstr *np;
53     struct cmndstr *command;
54     int cmd;
55
56     cmd = comtch(player->argp[0], player_coms,
57                  player->ncomstat, player->god);
58     if (cmd < 0) {
59         if (cmd == M_NOTUNIQUE)
60             pr("\"%s\" is ambiguous -- ", buf);
61         else if (cmd == M_IGNORE)
62             return 0;
63         else {
64             pr("\"%s\" is not a legal command ", buf);
65             if (player->nstat != player->ncomstat)
66                 pr("now ");
67             pr("\n");
68         }
69         return -1;
70     }
71     command = &player_coms[cmd];
72     np = getnatp(player->cnum);
73     if (np->nat_btu < command->c_cost && command->c_cost > 0) {
74         if (player->god || opt_BLITZ)
75             np->nat_btu = max_btus;
76         else {
77             pr("You don't have the BTU's, bozo\n");
78             return 0;
79         }
80     }
81     if (command->c_addr == 0) {
82         pr("Command not implemented\n");
83         return 0;
84     }
85     if (update_pending) {
86         pr("Update in progress...command failed\n");
87         return 0;
88     }
89     if (redir) {
90         prredir(redir);
91         pr("%s\n", buf);
92     }
93     player->command = command;
94     switch (command->c_addr()) {
95     case RET_OK:
96         player->btused += command->c_cost;
97         break;
98     case RET_FAIL:
99         pr("command failed\n");
100         player->btused += command->c_cost;
101         break;
102     case RET_SYN:
103         pr("Usage: %s\n", command->c_form);
104         break;
105     default:
106         logerror("%s: returned bad value", command->c_form);
107         break;
108     }
109     player->command = 0;
110     return 0;
111 }