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

Comparing deliantra/server/server/c_misc.C (file contents):
Revision 1.74 by root, Mon Apr 27 01:38:49 2009 UTC vs.
Revision 1.79 by root, Fri Nov 6 13:31:47 2009 UTC

3 * 3 *
4 * Copyright (©) 2005,2006,2007,2008 Marc Alexander Lehmann / Robin Redeker / the Deliantra team 4 * Copyright (©) 2005,2006,2007,2008 Marc Alexander Lehmann / Robin Redeker / the Deliantra team
5 * Copyright (©) 2002,2007 Mark Wedel & Crossfire Development Team 5 * Copyright (©) 2002,2007 Mark Wedel & Crossfire Development Team
6 * Copyright (©) 1992,2007 Frank Tore Johansen 6 * Copyright (©) 1992,2007 Frank Tore Johansen
7 * 7 *
8 * Deliantra is free software: you can redistribute it and/or modify 8 * Deliantra is free software: you can redistribute it and/or modify it under
9 * it under the terms of the GNU General Public License as published by 9 * the terms of the Affero GNU General Public License as published by the
10 * the Free Software Foundation, either version 3 of the License, or 10 * Free Software Foundation, either version 3 of the License, or (at your
11 * (at your 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 GNU General Public License 18 * You should have received a copy of the Affero GNU General Public License
19 * along with this program. If not, see <http://www.gnu.org/licenses/>. 19 * and the GNU General Public License along with this program. If not, see
20 * <http://www.gnu.org/licenses/>.
20 * 21 *
21 * 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>
22 */ 23 */
23 24
24#include <global.h> 25#include <global.h>
25#include <loader.h> 26#include <loader.h>
26#include <sproto.h> 27#include <sproto.h>
27 28
28/* Handles misc. input request - things like hash table, malloc, maps, etc */ 29/* Handles misc. input request - things like hash table, malloc, maps, etc */
29 30
30int
31command_motd (object *op, char *params)
32{
33 display_motd (op);
34 return 1;
35}
36
37typedef struct 31typedef struct
38{ 32{
39 char namebuf[MAX_BUF]; 33 char namebuf[MAX_BUF];
40 int login_order; 34 int login_order;
41} chars_names; 35} chars_names;
64 58
65 sprintf (buf, "Set debug level to %d.", i); 59 sprintf (buf, "Set debug level to %d.", i);
66 new_draw_info (NDI_UNIQUE, 0, op, buf); 60 new_draw_info (NDI_UNIQUE, 0, op, buf);
67 return 1; 61 return 1;
68} 62}
69
70 63
71/* 64/*
72 * Those dumps should be just one dump with good parser 65 * Those dumps should be just one dump with good parser
73 */ 66 */
74 67
272 op->contr->infobox (MSG_CHANNEL ("resistances"), msg); 265 op->contr->infobox (MSG_CHANNEL ("resistances"), msg);
273 266
274 return 0; 267 return 0;
275} 268}
276 269
277/*
278 * Actual commands.
279 * Those should be in small separate files (c_object.c, c_wiz.c, cmove.c,...)
280 */
281
282int
283onoff_value (const char *line)
284{
285 int i;
286
287 if (sscanf (line, "%d", &i))
288 return (i != 0);
289 switch (line[0])
290 {
291 case 'o':
292 switch (line[1])
293 {
294 case 'n':
295 return 1; /* on */
296 default:
297 return 0; /* o[ff] */
298 }
299 case 'y': /* y[es] */
300 case 'k': /* k[ylla] */
301 case 's':
302 case 'd':
303 return 1;
304 case 'n': /* n[o] */
305 case 'e': /* e[i] */
306 case 'u':
307 default:
308 return 0;
309 }
310}
311
312int 270int
313command_title (object *op, char *params) 271command_title (object *op, char *params)
314{ 272{
315 char buf[MAX_BUF]; 273 char buf[MAX_BUF];
316 274

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines