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.76 by root, Thu Oct 15 21:40:42 2009 UTC vs.
Revision 1.82 by root, Sat Jan 30 23:30:26 2010 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 Marc Alexander Lehmann / Robin Redeker / the Deliantra team 4 * Copyright (©) 2005,2006,2007,2008,2009,2010 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 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
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#include <global.h> 25#include <global.h>
26#include <loader.h>
27#include <sproto.h> 26#include <sproto.h>
28 27
29/* Handles misc. input request - things like hash table, malloc, maps, etc */ 28/* Handles misc. input request - things like hash table, malloc, maps, etc */
30 29
31typedef struct 30typedef struct
58 57
59 sprintf (buf, "Set debug level to %d.", i); 58 sprintf (buf, "Set debug level to %d.", i);
60 new_draw_info (NDI_UNIQUE, 0, op, buf); 59 new_draw_info (NDI_UNIQUE, 0, op, buf);
61 return 1; 60 return 1;
62} 61}
63
64 62
65/* 63/*
66 * Those dumps should be just one dump with good parser 64 * Those dumps should be just one dump with good parser
67 */ 65 */
68 66
210 " Wis %2d\n" 208 " Wis %2d\n"
211 " Cha %2d\n" 209 " Cha %2d\n"
212 " Pow %2d\n" 210 " Pow %2d\n"
213 " wc %d damage %d ac %d\n", 211 " wc %d damage %d ac %d\n",
214 &ob->name, 212 &ob->name,
215 &ob->name, 213 ob->level,
216 ob->stats.hp, ob->stats.maxhp, ob->stats.sp, ob->stats.maxsp, 214 ob->stats.hp, ob->stats.maxhp, ob->stats.sp, ob->stats.maxsp,
217 ob->stats.Str, 215 ob->stats.Str,
218 ob->stats.Dex, 216 ob->stats.Dex,
219 ob->stats.Con, 217 ob->stats.Con,
220 ob->stats.Int, 218 ob->stats.Int,
248 for (int i = 0; i < NROFATTACKS; i++) 246 for (int i = 0; i < NROFATTACKS; i++)
249 if (i != ATNR_INTERNAL) 247 if (i != ATNR_INTERNAL)
250 msg.printf (" %-20s %+4d\n", attacktype_desc [i], op->resist [i]); 248 msg.printf (" %-20s %+4d\n", attacktype_desc [i], op->resist [i]);
251 249
252 /* If dragon player, let's display natural resistances */ 250 /* If dragon player, let's display natural resistances */
253 if (is_dragon_pl (op)) 251 if (op->is_dragon ())
254 for (object *tmp = op->inv; tmp; tmp = tmp->below) 252 for (object *tmp = op->inv; tmp; tmp = tmp->below)
255 if ((tmp->type == FORCE) && tmp->arch->archname == shstr_dragon_skin_force) 253 if ((tmp->type == FORCE) && tmp->arch->archname == shstr_dragon_skin_force)
256 { 254 {
257 msg << "\nOf those, these are natural skin resistances:\n\n"; 255 msg << "\nOf those, these are natural skin resistances:\n\n";
258 256
266 op->contr->infobox (MSG_CHANNEL ("resistances"), msg); 264 op->contr->infobox (MSG_CHANNEL ("resistances"), msg);
267 265
268 return 0; 266 return 0;
269} 267}
270 268
271/*
272 * Actual commands.
273 * Those should be in small separate files (c_object.c, c_wiz.c, cmove.c,...)
274 */
275
276int
277onoff_value (const char *line)
278{
279 int i;
280
281 if (sscanf (line, "%d", &i))
282 return (i != 0);
283 switch (line[0])
284 {
285 case 'o':
286 switch (line[1])
287 {
288 case 'n':
289 return 1; /* on */
290 default:
291 return 0; /* o[ff] */
292 }
293 case 'y': /* y[es] */
294 case 'k': /* k[ylla] */
295 case 's':
296 case 'd':
297 return 1;
298 case 'n': /* n[o] */
299 case 'e': /* e[i] */
300 case 'u':
301 default:
302 return 0;
303 }
304}
305
306int 269int
307command_title (object *op, char *params) 270command_title (object *op, char *params)
308{ 271{
309 char buf[MAX_BUF]; 272 char buf[MAX_BUF];
310 273
313 new_draw_info (NDI_UNIQUE, 0, op, "You cannot change your title."); 276 new_draw_info (NDI_UNIQUE, 0, op, "You cannot change your title.");
314 return 1; 277 return 1;
315 } 278 }
316 279
317 /* dragon players cannot change titles */ 280 /* dragon players cannot change titles */
318 if (is_dragon_pl (op)) 281 if (op->is_dragon ())
319 { 282 {
320 new_draw_info (NDI_UNIQUE, 0, op, "Dragons cannot change titles."); 283 new_draw_info (NDI_UNIQUE, 0, op, "Dragons cannot change titles.");
321 return 1; 284 return 1;
322 } 285 }
323 286

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines