ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/server/commands.C
(Generate patch)

Comparing deliantra/server/server/commands.C (file contents):
Revision 1.66 by root, Sat Apr 10 04:54:09 2010 UTC vs.
Revision 1.72 by root, Mon Nov 26 15:12:16 2012 UTC

1/* 1/*
2 * This file is part of Deliantra, the Roguelike Realtime MMORPG. 2 * This file is part of Deliantra, the Roguelike Realtime MMORPG.
3 * 3 *
4 * Copyright (©) 2005,2006,2007,2008,2009,2010 Marc Alexander Lehmann / Robin Redeker / the Deliantra team 4 * Copyright (©) 2005,2006,2007,2008,2009,2010,2011,2012 Marc Alexander Lehmann / Robin Redeker / the Deliantra team
5 * Copyright (©) 2002 Mark Wedel & Crossfire Development Team 5 * Copyright (©) 2002 Mark Wedel & Crossfire Development Team
6 * Copyright (©) 1992 Frank Tore Johansen 6 * Copyright (©) 1992 Frank Tore Johansen
7 * 7 *
8 * Deliantra is free software: you can redistribute it and/or modify it under 8 * Deliantra is free software: you can redistribute it and/or modify it under
9 * the terms of the Affero GNU General Public License as published by the 9 * the terms of the Affero GNU General Public License as published by the
10 * Free Software Foundation, either version 3 of the License, or (at your 10 * Free Software Foundation, either version 3 of the License, or (at your
11 * option) any later version. 11 * option) any later version.
12 * 12 *
13 * This program is distributed in the hope that it will be useful, 13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of 14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details. 16 * GNU General Public License for more details.
17 * 17 *
18 * You should have received a copy of the Affero GNU General Public License 18 * You should have received a copy of the Affero GNU General Public License
19 * and the GNU General Public License along with this program. If not, see 19 * and the GNU General Public License along with this program. If not, see
20 * <http://www.gnu.org/licenses/>. 20 * <http://www.gnu.org/licenses/>.
21 * 21 *
22 * The authors can be reached via e-mail to <support@deliantra.net> 22 * The authors can be reached via e-mail to <support@deliantra.net>
23 */ 23 */
24 24
25/* This file deals with administrative commands from the client. */ 25/* This file deals with administrative commands from the client. */
26#include <global.h> 26#include <global.h>
46 {"party", command_party, 1.0}, 46 {"party", command_party, 1.0},
47 {"gsay", command_gsay, 1.0}, 47 {"gsay", command_gsay, 1.0},
48 48
49 {"apply", command_apply, 1.0}, /* should be variable */ 49 {"apply", command_apply, 1.0}, /* should be variable */
50 {"cast", command_cast, 1.0}, /* Is this right? */ 50 {"cast", command_cast, 1.0}, /* Is this right? */
51 {"dm", command_dm, 0.0},
52 {"dmhide", command_dmhide, 0.0}, /* Like dm, but don't tell a dm arrived, hide player */
53 {"drop", command_drop, 1.0}, 51 {"drop", command_drop, 1.0},
54 {"dropall", command_dropall, 0.5 / TICK}, 52 {"dropall", command_dropall, 0.5 / TICK},
55 {"examine", command_examine, 0.5 / TICK}, 53 {"examine", command_examine, 0.5 / TICK},
56 {"fix_me", command_fix_me, 0.0}, 54 {"fix_me", command_fix_me, 0.0},
57 {"get", command_take, 1.0}, 55 {"get", command_take, 1.0},
91 {"run" , command_run , 0.0}, 89 {"run" , command_run , 0.0},
92 {"run_stop" , command_run_stop , 0.0}, 90 {"run_stop" , command_run_stop , 0.0},
93 {"fire" , command_fire , 0.0}, 91 {"fire" , command_fire , 0.0},
94 {"fire_stop", command_fire_stop, 0.0}, 92 {"fire_stop", command_fire_stop, 0.0},
95}; 93};
96static const int CommandsSize = sizeof (Commands) / sizeof (CommArray_s); 94static const int CommandsSize = array_length (Commands);
97 95
98/* 96/*
99 * Wizard commands (for both) 97 * Wizard commands (for both)
100 */ 98 */
101static CommArray_s WizCommands[] = { 99static CommArray_s WizCommands[] = {
107 {"dump", command_dump, 0.0}, 105 {"dump", command_dump, 0.0},
108 {"dumpbelow", command_dumpbelow, 0.0}, 106 {"dumpbelow", command_dumpbelow, 0.0},
109 {"forget_spell", command_forget_spell, 0.0}, 107 {"forget_spell", command_forget_spell, 0.0},
110 {"free", command_free, 0.0}, 108 {"free", command_free, 0.0},
111 {"freeze", command_freeze, 0.0}, 109 {"freeze", command_freeze, 0.0},
112 {"hide", command_hide, 0.0},
113 {"insert_into", command_insert_into, 0.0}, 110 {"insert_into", command_insert_into, 0.0},
114 {"inventory", command_inventory, 0.0}, 111 {"inventory", command_inventory, 0.0},
115 {"invisible", command_invisible, 0.0}, 112 {"invisible", command_invisible, 0.0},
116 {"learn_special_prayer", command_learn_special_prayer, 0.0}, 113 {"learn_special_prayer", command_learn_special_prayer, 0.0},
117 {"learn_spell", command_learn_spell, 0.0}, 114 {"learn_spell", command_learn_spell, 0.0},
118 {"nodm", command_nowiz, 0.0},
119 {"nowiz", command_nowiz, 0.0},
120 {"patch", command_patch, 0.0}, 115 {"patch", command_patch, 0.0},
121 {"remove", command_remove, 0.0}, 116 {"remove", command_remove, 0.0},
122 {"set_god", command_setgod, 0.0}, 117 {"set_god", command_setgod, 0.0},
123 {"stack_clear", command_stack_clear, 0.0}, 118 {"stack_clear", command_stack_clear, 0.0},
124 {"stack_list", command_stack_list, 0.0}, 119 {"stack_list", command_stack_list, 0.0},
126 {"stack_push", command_stack_push, 0.0}, 121 {"stack_push", command_stack_push, 0.0},
127 {"stats", command_stats, 0.0}, 122 {"stats", command_stats, 0.0},
128 {"summon", command_summon, 0.0}, 123 {"summon", command_summon, 0.0},
129 //{"overlay_save", command_save_overlay, 0.0}, 124 //{"overlay_save", command_save_overlay, 0.0},
130}; 125};
131static const int WizCommandsSize = sizeof (WizCommands) / sizeof (CommArray_s); 126static const int WizCommandsSize = array_length (WizCommands);
132 127
133static int 128static int
134compare_A (const void *a, const void *b) 129compare_A (const void *a, const void *b)
135{ 130{
136 return strcmp (((CommArray_s *)a)->name, ((CommArray_s *)b)->name); 131 return strcmp (((CommArray_s *)a)->name, ((CommArray_s *)b)->name);
185 180
186 if (!INVOKE_PLAYER (COMMAND, pl->contr, ARG_STRING (command), ARG_STRING (cp))) 181 if (!INVOKE_PLAYER (COMMAND, pl->contr, ARG_STRING (command), ARG_STRING (cp)))
187 { 182 {
188 csp = find_command_element (command, Commands, CommandsSize); 183 csp = find_command_element (command, Commands, CommandsSize);
189 184
190 if (!csp && QUERY_FLAG (pl, FLAG_WIZ)) 185 if (!csp && pl->flag [FLAG_WIZ])
191 csp = find_command_element (command, WizCommands, WizCommandsSize); 186 csp = find_command_element (command, WizCommands, WizCommandsSize);
192 187
193 if (csp) 188 if (csp)
194 { 189 {
195 pl->speed_left -= csp->time; 190 pl->speed_left -= csp->time;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines