]> git.pond.sub.org Git - empserver/blob - src/lib/player/dispatch.c
Update known contributors comment.
[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  *     Markus Armbruster, 2007
34  */
35
36 #include <config.h>
37
38 #include "com.h"
39 #include "empio.h"
40 #include "file.h"
41 #include "match.h"
42 #include "misc.h"
43 #include "nat.h"
44 #include "optlist.h"
45 #include "player.h"
46 #include "proto.h"
47 #include "prototypes.h"
48 #include "server.h"
49
50 /*
51  * Execute command named by player->argp[0].
52  * BUF is the raw UTF-8 command line.  It should have been passed to
53  * parse() to set up player->argp.
54  * If REDIR is not null, it's the command's redirection, in UTF-8.
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, player->ncomstat);
65     if (cmd < 0) {
66         if (cmd == M_NOTUNIQUE)
67             pr("Command \"%s\" is ambiguous -- ", player->argp[0]);
68         else if (cmd == M_IGNORE)
69             return 0;
70         else {
71             pr("\"%s\" is not a legal command ", player->argp[0]);
72             if (player->nstat != player->ncomstat)
73                 pr("now ");
74             pr("\n");
75         }
76         return -1;
77     }
78     command = &player_coms[cmd];
79     np = getnatp(player->cnum);
80     if (np->nat_btu < command->c_cost && command->c_cost > 0) {
81         if (player->god || opt_BLITZ)
82             np->nat_btu = max_btus;
83         else {
84             pr("You don't have the BTU's, bozo\n");
85             return 0;
86         }
87     }
88     if (command->c_addr == 0) {
89         pr("Command not implemented\n");
90         return 0;
91     }
92     /*
93      * Rwlocks can hand out read locks while a write lock is wanted.
94      * Unfair to writers, but possible.  This lets commands run with
95      * !player->aborted, which can then block on input and thus delay
96      * the update indefinitely.  We could avoid that by setting
97      * player->aborted here, but spinning until the update is done is
98      * nicer to players.
99      */
100     while (play_wrlock_wanted)
101         empth_yield();
102     player->command = command;
103     empth_rwlock_rdlock(play_lock);
104     if (redir) {
105         prredir(redir);
106         uprnf(buf);
107         pr("\n");
108     }
109     switch (command->c_addr()) {
110     case RET_OK:
111         player->btused += command->c_cost;
112         break;
113     case RET_FAIL:
114         pr("command failed\n");
115         player->btused += command->c_cost;
116         break;
117     case RET_SYN:
118         pr("Usage: %s\n", command->c_form);
119         break;
120     default:
121         logerror("%s: returned bad value", command->c_form);
122         break;
123     }
124     empth_rwlock_unlock(play_lock);
125     player->command = NULL;
126     return 0;
127 }