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.65 by root, Thu Nov 8 19:43:26 2007 UTC vs.
Revision 1.86 by root, Fri Jan 27 22:01:46 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 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,2007 Mark Wedel & Crossfire Development Team 5 * Copyright (©) 2002 Mark Wedel & Crossfire Development Team
6 * Copyright (©) 1992,2007 Frank Tore Johansen 6 * Copyright (©) 1992 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 <sproto.h> 26#include <sproto.h>
27 27
28/* Handles misc. input request - things like hash table, malloc, maps, etc */ 28/* Handles misc. input request - things like hash table, malloc, maps, etc */
29
30int
31command_motd (object *op, char *params)
32{
33 display_motd (op);
34 return 1;
35}
36
37#ifdef DEBUG_MALLOC_LEVEL
38int
39command_malloc_verify (object *op, char *parms)
40{
41 extern int malloc_verify (void);
42
43 if (!malloc_verify ())
44 new_draw_info (NDI_UNIQUE, 0, op, "Heap is corrupted.");
45 else
46 new_draw_info (NDI_UNIQUE, 0, op, "Heap checks out OK.");
47 return 1;
48}
49#endif
50
51typedef struct
52{
53 char namebuf[MAX_BUF];
54 int login_order;
55} chars_names;
56 29
57int 30int
58command_time (object *op, char *params) 31command_time (object *op, char *params)
59{ 32{
60 print_tod (op); 33 print_tod (op);
78 51
79 sprintf (buf, "Set debug level to %d.", i); 52 sprintf (buf, "Set debug level to %d.", i);
80 new_draw_info (NDI_UNIQUE, 0, op, buf); 53 new_draw_info (NDI_UNIQUE, 0, op, buf);
81 return 1; 54 return 1;
82} 55}
83
84 56
85/* 57/*
86 * Those dumps should be just one dump with good parser 58 * Those dumps should be just one dump with good parser
87 */ 59 */
88 60
99 } 71 }
100 return 0; 72 return 0;
101} 73}
102 74
103int 75int
104command_dumpfriendlyobjects (object *op, char *params)
105{
106 dump_friendly_objects ();
107 return 0;
108}
109
110int
111command_printlos (object *op, char *params)
112{
113 if (op)
114 print_los (op);
115 return 0;
116}
117
118
119int
120command_version (object *op, char *params) 76command_version (object *op, char *params)
121{ 77{
122 version (op); 78 version (op);
123 return 0; 79 return 0;
124}
125
126#ifndef BUG_LOG
127# define BUG_LOG "bug_log"
128#endif
129void
130bug_report (const char *reportstring)
131{
132 FILE *fp;
133
134 if ((fp = fopen (BUG_LOG, "a")) != NULL)
135 {
136 fprintf (fp, "%s\n", reportstring);
137 fclose (fp);
138 }
139 else
140 {
141 LOG (llevError, "Cannot write bugs file %s: %s\n", BUG_LOG, strerror (errno));
142 }
143} 80}
144 81
145/* Prints out some useful information for the character. Everything we print 82/* Prints out some useful information for the character. Everything we print
146 * out can be determined by the docs, so we aren't revealing anything extra - 83 * out can be determined by the docs, so we aren't revealing anything extra -
147 * rather, we are making it convenient to find the values. params have 84 * rather, we are making it convenient to find the values. params have
150int 87int
151command_statistics (object *pl, char *params) 88command_statistics (object *pl, char *params)
152{ 89{
153 if (!pl->contr) 90 if (!pl->contr)
154 return 1; 91 return 1;
155 new_draw_info_format (NDI_UNIQUE, 0, pl, " Experience: %" PRId64, pl->stats.exp);
156 new_draw_info_format (NDI_UNIQUE, 0, pl, " Next Level: %" PRId64, level_exp (pl->level + 1, pl->expmul));
157 new_draw_info (NDI_UNIQUE, 0, pl, "\nStat Nat/Real/Max");
158 92
159 new_draw_info_format (NDI_UNIQUE, 0, pl, "Str %2d/ %3d/%3d", 93 dynbuf_text &msg = msg_dynbuf; msg.clear ();
160 pl->contr->orig_stats.Str, pl->stats.Str, 20 + pl->arch->stats.Str); 94
161 new_draw_info_format (NDI_UNIQUE, 0, pl, "Dex %2d/ %3d/%3d", 95 msg << " Experience: " << pl->stats.exp << '\n'
162 pl->contr->orig_stats.Dex, pl->stats.Dex, 20 + pl->arch->stats.Dex); 96 << " Next Level: " << level_exp (pl->level + 1, pl->expmul) << '\n'
163 new_draw_info_format (NDI_UNIQUE, 0, pl, "Con %2d/ %3d/%3d", 97 << "\n Stat Nat/Real/Max\n";
164 pl->contr->orig_stats.Con, pl->stats.Con, 20 + pl->arch->stats.Con); 98
165 new_draw_info_format (NDI_UNIQUE, 0, pl, "Int %2d/ %3d/%3d", 99 for (int i = 0; i < NUM_STATS; ++i)
166 pl->contr->orig_stats.Int, pl->stats.Int, 20 + pl->arch->stats.Int); 100 msg.printf (" %s %2d/ %3d/%3d\n", short_stat_name [i], pl->contr->orig_stats.stat (i), pl->stats.stat (i), 20 + pl->arch->stats.stat (i));
167 new_draw_info_format (NDI_UNIQUE, 0, pl, "Wis %2d/ %3d/%3d", 101
168 pl->contr->orig_stats.Wis, pl->stats.Wis, 20 + pl->arch->stats.Wis); 102 msg << "\nYou are " << (pl->contr->peaceful ? "peaceful" : "hostile") << '.';
169 new_draw_info_format (NDI_UNIQUE, 0, pl, "Pow %2d/ %3d/%3d", 103
170 pl->contr->orig_stats.Pow, pl->stats.Pow, 20 + pl->arch->stats.Pow); 104 pl->contr->infobox (MSG_CHANNEL ("statistics"), msg);
171 new_draw_info_format (NDI_UNIQUE, 0, pl, "Cha %2d/ %3d/%3d",
172 pl->contr->orig_stats.Cha, pl->stats.Cha, 20 + pl->arch->stats.Cha);
173 new_draw_info_format (NDI_UNIQUE, 0, pl, "\nAttack Mode: %s", pl->contr->peaceful ? "Peaceful" : "Hostile");
174 105
175 /* Can't think of anything else to print right now */ 106 /* Can't think of anything else to print right now */
176 return 0; 107 return 0;
177} 108}
178 109
179int 110int
180command_fix_me (object *op, char *params) 111command_fix_me (object *op, char *params)
181{ 112{
182 sum_weight (op); 113 op->update_weight ();
183 op->update_stats (); 114 op->update_stats ();
184 new_draw_info (NDI_UNIQUE, 0, op, "Your character was fixed."); 115 new_draw_info (NDI_UNIQUE, 0, op, "Your character was fixed.");
185 116
186 return 1; 117 return 1;
187} 118}
188 119
189int 120int
190command_logs (object *op, char *params)
191{
192 new_draw_info (NDI_UNIQUE, 0, op, "Nobody is currently logging kills.");
193
194 return 1;
195}
196
197int
198command_bowmode (object *op, char *params) 121command_bowmode (object *op, char *params)
199{ 122{
200 bowtype_t oldtype = op->contr->bowtype; 123 bowtype_t oldtype = op->contr->bowtype;
201 static const char *const types[] = { "normal", "threewide", "spreadshot", "firenorth", 124 static const char *const types[] = {
125 "normal", "threewide", "spreadshot", "firenorth",
202 "firene", "fireeast", "firese", "firesouth", 126 "firene", "fireeast", "firese", "firesouth",
203 "firesw", "firewest", "firenw", "bestarrow" 127 "firesw", "firewest", "firenw", "bestarrow"
204 }; 128 };
205 char buf[MAX_BUF]; 129 char buf[MAX_BUF];
206 int i, found; 130 int i, found;
222 } 146 }
223 147
224 if (!found) 148 if (!found)
225 { 149 {
226 sprintf (buf, "bowmode: Unknown options %s, valid options are:", params); 150 sprintf (buf, "bowmode: Unknown options %s, valid options are:", params);
151
227 for (i = 0; i <= bow_bestarrow; i++) 152 for (i = 0; i <= bow_bestarrow; i++)
228 { 153 {
229 strcat (buf, " "); 154 strcat (buf, " ");
230 strcat (buf, types[i]); 155 strcat (buf, types[i]);
231 if (i < bow_nw) 156 if (i < bow_nw)
242} 167}
243 168
244int 169int
245command_showpets (object *op, char *params) 170command_showpets (object *op, char *params)
246{ 171{
247 objectlink *obl, *next;
248 int counter = 0, target = 0; 172 int counter = 0, target = 0;
249 int have_shown_pet = 0; 173 int have_shown_pet = 0;
250 174
175 dynbuf_text &msg = msg_dynbuf; msg.clear ();
176
251 if (params != NULL) 177 if (params)
252 target = atoi (params); 178 target = atoi (params);
179
253 for (obl = first_friendly_object; obl != NULL; obl = next) 180 for (objectlink *obl = first_friendly_object; obl; obl = obl->next)
254 { 181 {
255 object *ob = obl->ob; 182 object *ob = obl->ob;
256 183
257 next = obl->next;
258 if (ob->owner == op) 184 if (ob->owner == op)
259 { 185 {
260 if (target == 0) 186 if (target == 0)
261 { 187 {
262 if (counter == 0) 188 if (counter == 0)
263 new_draw_info (NDI_UNIQUE, 0, op, "Pets:"); 189 msg << "T<Pets>\n\n";
190
264 new_draw_info_format (NDI_UNIQUE, 0, op, "%d %s - level %d", ++counter, &ob->name, ob->level); 191 msg.printf (" %3d %s, level %d\n", ++counter, &ob->name, ob->level);
265 } 192 }
266 else if (!have_shown_pet && ++counter == target) 193 else if (!have_shown_pet && ++counter == target)
267 { 194 {
268 new_draw_info_format (NDI_UNIQUE, 0, op, "level %d %s", ob->level, &ob->name); 195 msg.printf ("T<%s>\n\n"
269 new_draw_info_format (NDI_UNIQUE, 0, op, "%d/%d HP, %d/%d SP", ob->stats.hp, ob->stats.maxhp, ob->stats.sp, ob->stats.maxsp); 196 " level %d\n"
270 /* this is not a nice way to do this, it should be made to be more like the statistics command */ 197 " %d/%d HP, %d/%d SP\n"
271 new_draw_info_format (NDI_UNIQUE, 0, op, "Str %d", ob->stats.Str); 198 " Str %2d\n"
272 new_draw_info_format (NDI_UNIQUE, 0, op, "Dex %d", ob->stats.Dex); 199 " Dex %2d\n"
273 new_draw_info_format (NDI_UNIQUE, 0, op, "Con %d", ob->stats.Con); 200 " Con %2d\n"
274 new_draw_info_format (NDI_UNIQUE, 0, op, "Int %d", ob->stats.Int); 201 " Int %2d\n"
275 new_draw_info_format (NDI_UNIQUE, 0, op, "Wis %d", ob->stats.Wis); 202 " Wis %2d\n"
276 new_draw_info_format (NDI_UNIQUE, 0, op, "Cha %d", ob->stats.Cha); 203 " Cha %2d\n"
277 new_draw_info_format (NDI_UNIQUE, 0, op, "Pow %d", ob->stats.Pow); 204 " Pow %2d\n"
278 new_draw_info_format (NDI_UNIQUE, 0, op, "wc %d damage %d ac %d ", ob->stats.wc, ob->stats.dam, ob->stats.ac); 205 " wc %d damage %d ac %d\n",
206 &ob->name,
207 ob->level,
208 ob->stats.hp, ob->stats.maxhp, ob->stats.sp, ob->stats.maxsp,
209 ob->stats.Str,
210 ob->stats.Dex,
211 ob->stats.Con,
212 ob->stats.Int,
213 ob->stats.Wis,
214 ob->stats.Cha,
215 ob->stats.Pow,
216 ob->stats.wc, ob->stats.dam, ob->stats.ac);
217
279 have_shown_pet = 1; 218 have_shown_pet = 1;
280 } 219 }
281 } 220 }
282 } 221 }
222
283 if (counter == 0) 223 if (counter == 0)
284 new_draw_info (NDI_UNIQUE, 0, op, "you have no pets."); 224 msg << "you have no pets.";
285 else if (target != 0 && have_shown_pet == 0) 225 else if (target != 0 && have_shown_pet == 0)
286 new_draw_info (NDI_UNIQUE, 0, op, "no such pet."); 226 msg << "no such pet.";
227
228 op->contr->infobox (MSG_CHANNEL ("pets"), msg);
229
287 return 0; 230 return 0;
288} 231}
289 232
290int 233int
291command_resistances (object *op, char *params) 234command_resistances (object *op, char *params)
292{ 235{
293 int i; 236 dynbuf_text &msg = msg_dynbuf; msg.clear ();
294 237
295 if (!op) 238 msg << "Resistances:\n\n";
296 return 0;
297 239
298 for (i = 0; i < NROFATTACKS; i++) 240 for (int i = 0; i < NROFATTACKS; i++)
299 {
300 if (i == ATNR_INTERNAL) 241 if (i != ATNR_INTERNAL)
301 continue; 242 msg.printf (" %-20s %+4d\n", attacktype_desc [i], op->resist [i]);
302
303 new_draw_info_format (NDI_UNIQUE, 0, op, "%-20s %+5d", attacktype_desc[i], op->resist[i]);
304 }
305 243
306 /* If dragon player, let's display natural resistances */ 244 /* If dragon player, let's display natural resistances */
307 if (is_dragon_pl (op)) 245 if (op->is_dragon ())
308 {
309 int attack;
310 object *tmp;
311
312 for (tmp = op->inv; tmp != NULL; tmp = tmp->below) 246 for (object *tmp = op->inv; tmp; tmp = tmp->below)
313 {
314 if ((tmp->type == FORCE) && tmp->arch->archname == shstr_dragon_skin_force) 247 if ((tmp->type == FORCE) && tmp->arch->archname == shstr_dragon_skin_force)
315 { 248 {
316 new_draw_info (NDI_UNIQUE, 0, op, "\nNatural skin resistances:"); 249 msg << "\nOf those, these are natural skin resistances:\n\n";
250
317 for (attack = 0; attack < NROFATTACKS; attack++) 251 for (int attack = 0; attack < NROFATTACKS; attack++)
318 {
319 if (atnr_is_dragon_enabled (attack)) 252 if (atnr_is_dragon_enabled (attack))
320 { 253 msg.printf (" %-20s %+4d\n", change_resist_msg [attack], tmp->resist [attack]);
321 new_draw_info_format (NDI_UNIQUE, 0, op, "%s: %d", change_resist_msg[attack], tmp->resist[attack]); 254
322 }
323 }
324 break; 255 break;
325 } 256 }
326 }
327 }
328 257
329 return 0; 258 op->contr->infobox (MSG_CHANNEL ("resistances"), msg);
330}
331 259
332/* 260 return 0;
333 * Actual commands.
334 * Those should be in small separate files (c_object.c, c_wiz.c, cmove.c,...)
335 */
336
337int
338onoff_value (const char *line)
339{
340 int i;
341
342 if (sscanf (line, "%d", &i))
343 return (i != 0);
344 switch (line[0])
345 {
346 case 'o':
347 switch (line[1])
348 {
349 case 'n':
350 return 1; /* on */
351 default:
352 return 0; /* o[ff] */
353 }
354 case 'y': /* y[es] */
355 case 'k': /* k[ylla] */
356 case 's':
357 case 'd':
358 return 1;
359 case 'n': /* n[o] */
360 case 'e': /* e[i] */
361 case 'u':
362 default:
363 return 0;
364 }
365} 261}
366 262
367int 263int
368command_title (object *op, char *params) 264command_title (object *op, char *params)
369{ 265{
374 new_draw_info (NDI_UNIQUE, 0, op, "You cannot change your title."); 270 new_draw_info (NDI_UNIQUE, 0, op, "You cannot change your title.");
375 return 1; 271 return 1;
376 } 272 }
377 273
378 /* dragon players cannot change titles */ 274 /* dragon players cannot change titles */
379 if (is_dragon_pl (op)) 275 if (op->is_dragon ())
380 { 276 {
381 new_draw_info (NDI_UNIQUE, 0, op, "Dragons cannot change titles."); 277 new_draw_info (NDI_UNIQUE, 0, op, "Dragons cannot change titles.");
382 return 1; 278 return 1;
383 } 279 }
384 280

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines