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

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines