]> 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-2007, 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 files README, COPYING and CREDITS in the root of the source
23  *  tree for related information and legal notices.  It is expected
24  *  that future 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 <config.h>
36
37 #include "com.h"
38 #include "empio.h"
39 #include "file.h"
40 #include "match.h"
41 #include "misc.h"
42 #include "nat.h"
43 #include "optlist.h"
44 #include "player.h"
45 #include "proto.h"
46 #include "prototypes.h"
47 #include "server.h"
48
49 /*
50  * Execute command named by player->argp[0].
51  * BUF is the raw UTF-8 command line.  It should have been passed to
52  * parse() to set up player->argp.
53  * If REDIR is not null, it's the command's redirection, in UTF-8.
54  * Return -1 if the command is not unique or doesn't exist, else 0.
55  */
56 int
57 dispatch(char *buf, char *redir)
58 {
59     struct natstr *np;
60     struct cmndstr *command;
61     int cmd;
62
63     cmd = comtch(player->argp[0], player_coms, player->ncomstat);
64     if (cmd < 0) {
65         if (cmd == M_NOTUNIQUE)
66             pr("Command \"%s\" is ambiguous -- ", player->argp[0]);
67         else if (cmd == M_IGNORE)
68             return 0;
69         else {
70             pr("\"%s\" is not a legal command ", player->argp[0]);
71             if (player->nstat != player->ncomstat)
72                 pr("now ");
73             pr("\n");
74         }
75         return -1;
76     }
77     command = &player_coms[cmd];
78     np = getnatp(player->cnum);
79     if (np->nat_btu < command->c_cost && command->c_cost > 0) {
80         if (player->god || opt_BLITZ)
81             np->nat_btu = max_btus;
82         else {
83             pr("You don't have the BTU's, bozo\n");
84             return 0;
85         }
86     }
87     if (command->c_addr == 0) {
88         pr("Command not implemented\n");
89         return 0;
90     }
91     if (update_pending) {
92         pr("Update in progress...command failed\n");
93         return 0;
94     }
95     if (redir) {
96         prredir(redir);
97         uprnf(buf);
98         pr("\n");
99     }
100     player->command = command;
101     switch (command->c_addr()) {
102     case RET_OK:
103         player->btused += command->c_cost;
104         break;
105     case RET_FAIL:
106         pr("command failed\n");
107         player->btused += command->c_cost;
108         break;
109     case RET_SYN:
110         pr("Usage: %s\n", command->c_form);
111         break;
112     default:
113         logerror("%s: returned bad value", command->c_form);
114         break;
115     }
116     player->command = 0;
117     return 0;
118 }