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.73 by root, Thu Jan 8 00:54:55 2009 UTC vs.
Revision 1.78 by root, Fri Nov 6 13:03:34 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
102command_statistics (object *pl, char *params) 95command_statistics (object *pl, char *params)
103{ 96{
104 if (!pl->contr) 97 if (!pl->contr)
105 return 1; 98 return 1;
106 99
107 dynbuf_text msg (2048, 1024); 100 dynbuf_text &msg = msg_dynbuf; msg.clear ();
108 101
109 msg << " Experience: " << pl->stats.exp << '\n' 102 msg << " Experience: " << pl->stats.exp << '\n'
110 << " Next Level: " << level_exp (pl->level + 1, pl->expmul) << '\n' 103 << " Next Level: " << level_exp (pl->level + 1, pl->expmul) << '\n'
111 << "\n Stat Nat/Real/Max\n"; 104 << "\n Stat Nat/Real/Max\n";
112 105
184command_showpets (object *op, char *params) 177command_showpets (object *op, char *params)
185{ 178{
186 int counter = 0, target = 0; 179 int counter = 0, target = 0;
187 int have_shown_pet = 0; 180 int have_shown_pet = 0;
188 181
189 dynbuf_text msg (2048, 1024); 182 dynbuf_text &msg = msg_dynbuf; msg.clear ();
190 183
191 if (params) 184 if (params)
192 target = atoi (params); 185 target = atoi (params);
193 186
194 for (objectlink *obl = first_friendly_object; obl; obl = obl->next) 187 for (objectlink *obl = first_friendly_object; obl; obl = obl->next)
245} 238}
246 239
247int 240int
248command_resistances (object *op, char *params) 241command_resistances (object *op, char *params)
249{ 242{
250 dynbuf_text msg (2048, 1024); 243 dynbuf_text &msg = msg_dynbuf; msg.clear ();
251 244
252 msg << "Resistances:\n\n"; 245 msg << "Resistances:\n\n";
253 246
254 for (int i = 0; i < NROFATTACKS; i++) 247 for (int i = 0; i < NROFATTACKS; i++)
255 if (i != ATNR_INTERNAL) 248 if (i != ATNR_INTERNAL)
276 269
277/* 270/*
278 * Actual commands. 271 * Actual commands.
279 * Those should be in small separate files (c_object.c, c_wiz.c, cmove.c,...) 272 * Those should be in small separate files (c_object.c, c_wiz.c, cmove.c,...)
280 */ 273 */
281 274static int
282int
283onoff_value (const char *line) 275onoff_value (const char *line)
284{ 276{
285 int i; 277 int i;
286 278
287 if (sscanf (line, "%d", &i)) 279 if (sscanf (line, "%d", &i))

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines