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.35 by root, Sun Jan 7 02:39:14 2007 UTC vs.
Revision 1.86 by root, Fri Jan 27 22:01:46 2012 UTC

1/* 1/*
2 CrossFire, A Multiplayer game for X-windows 2 * This file is part of Deliantra, the Roguelike Realtime MMORPG.
3 3 *
4 Copyright (C) 2005, 2006, 2007 Marc Lehmann & Crossfire+ Development Team 4 * Copyright (©) 2005,2006,2007,2008,2009,2010,2011,2012 Marc Alexander Lehmann / Robin Redeker / the Deliantra team
5 Copyright (C) 2002 Mark Wedel & Crossfire Development Team 5 * Copyright (©) 2002 Mark Wedel & Crossfire Development Team
6 Copyright (C) 1992 Frank Tore Johansen 6 * Copyright (©) 1992 Frank Tore Johansen
7 7 *
8 This program 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 2 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, write to the Free Software 19 * and the GNU General Public License along with this program. If not, see
20 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. 20 * <http://www.gnu.org/licenses/>.
21 21 *
22 The authors can be reached via e-mail at <crossfire@schmorp.de> 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#include <dirent.h>
30
31/* Handles misc. input request - things like hash table, malloc, maps, 28/* Handles misc. input request - things like hash table, malloc, maps, etc */
32 * who, etc.
33 */
34
35//TODO
36#if 0
37void
38map_info (object *op, char *search)
39{
40 maptile *m;
41 char buf[MAX_BUF], map_path[31];
42 long sec = time (0);
43
44 new_draw_info_format (NDI_UNIQUE, 0, op, "Current time is: %02ld:%02ld:%02ld.", (sec % 86400) / 3600, (sec % 3600) / 60, sec % 60);
45 new_draw_info (NDI_UNIQUE, 0, op, "Path Pl PlM IM TO Dif Reset");
46
47 for (maps_container::iterator i = maps.begin (); i != maps.end (); ++i)
48 {
49 maptile *m = i->second;
50
51 if (search && !strstr (m->path, search))
52 continue; /* Skip unwanted maps */
53
54 /* Print out the last 30 characters of the map name... */
55 strcpy (map_path, m->path + max (0, (int)strlen (m->path) - 30));
56
57 sprintf (buf, "%-30.30s %2d %2d %1d %4d %2d %02d:%02d:%02d",
58 map_path, m->players, players_on_map (m, FALSE),
59 m->in_memory, m->timeout, m->difficulty,
60 (m->reset_time % 86400) / 3600, (m->reset_time % 3600) / 60, m->reset_time % 60);
61 new_draw_info (NDI_UNIQUE, 0, op, buf);
62 }
63}
64
65int
66command_style_map_info (object *op, char *params)
67{
68 extern maptile *styles;
69 maptile *mp;
70 int maps_used = 0, mapmem = 0, objects_used = 0, x, y;
71 object *tmp;
72
73 for (mp = styles; mp != NULL; mp = mp->next)
74 {
75 maps_used++;
76 mapmem += mp->width * mp->height * (sizeof (object *) + sizeof (mapspace)) + sizeof (maptile);
77 for (x = 0; x < mp->width; x++)
78 {
79 for (y = 0; y < mp->height; y++)
80 {
81 for (tmp = GET_MAP_OB (mp, x, y); tmp != NULL; tmp = tmp->above)
82 objects_used++;
83 }
84 }
85 }
86 new_draw_info_format (NDI_UNIQUE, 0, op, "Style maps loaded: %d", maps_used);
87 new_draw_info (NDI_UNIQUE, 0, op, "Memory used, not");
88 new_draw_info_format (NDI_UNIQUE, 0, op, "including objects: %d", mapmem);
89 new_draw_info_format (NDI_UNIQUE, 0, op, "Style objects: %d", objects_used);
90 new_draw_info_format (NDI_UNIQUE, 0, op, "Mem for objects: %d", objects_used * sizeof (object));
91 return 0;
92}
93#endif
94
95/* This command dumps the body information for object *op.
96 * it doesn't care what the params are.
97 * This is mostly meant as a debug command.
98 */
99int
100command_body (object *op, char *params)
101{
102 int i;
103
104 /* Too hard to try and make a header that lines everything up, so just
105 * give a description.
106 */
107 new_draw_info (NDI_UNIQUE, 0, op, "The first column is the name of the body location.");
108 new_draw_info (NDI_UNIQUE, 0, op, "The second column is how many of those locations your body has.");
109 new_draw_info (NDI_UNIQUE, 0, op, "The third column is how many slots in that location are available.");
110 for (i = 0; i < NUM_BODY_LOCATIONS; i++)
111 {
112 /* really debugging - normally body_used should not be set to anything
113 * if body_info isn't also set.
114 */
115 if (op->body_info[i] || op->body_used[i])
116 {
117 new_draw_info_format (NDI_UNIQUE, 0, op, "%-30s %5d %5d", body_locations[i].use_name, op->body_info[i], op->body_used[i]);
118 }
119 }
120 if (!QUERY_FLAG (op, FLAG_USE_ARMOUR))
121 new_draw_info (NDI_UNIQUE, 0, op, "You are not allowed to wear armor");
122 if (!QUERY_FLAG (op, FLAG_USE_WEAPON))
123 new_draw_info (NDI_UNIQUE, 0, op, "You are not allowed to use weapons");
124
125 return 1;
126}
127
128
129int
130command_motd (object *op, char *params)
131{
132 display_motd (op);
133 return 1;
134}
135
136int
137command_bug (object *op, char *params)
138{
139 char buf[MAX_BUF];
140
141 if (params == NULL)
142 {
143 new_draw_info (NDI_UNIQUE, 0, op, "what bugs?");
144 return 1;
145 }
146 strcpy (buf, op->name);
147 strcat (buf, " bug-reports: ");
148 strncat (buf, ++params, MAX_BUF - strlen (buf));
149 buf[MAX_BUF - 1] = '\0';
150 bug_report (buf);
151 LOG (llevError, "%s\n", buf);
152 new_draw_info (NDI_ALL | NDI_UNIQUE, 1, NULL, buf);
153 new_draw_info (NDI_UNIQUE, 0, op, "OK, thanks!");
154 return 1;
155}
156
157/*
158 * Pretty much identical to current map_info, but on a bigger scale
159 * This function returns the name of the players current region, and
160 * a description of it. It is there merely for flavour text.
161 */
162void
163current_region_info (object *op)
164{
165 /*
166 * Ok I /suppose/ I should write a seperate function for this, but it isn't
167 * going to be /that/ slow, and won't get called much
168 */
169 region *r = get_region_by_name (get_name_of_region_for_map (op->map));
170
171 if (!r)
172 return;
173 /* This should only be possible if regions are not operating on this server. */
174
175 new_draw_info_format (NDI_UNIQUE, 0, op, "You are in %s. \n %s", get_region_longname (r), get_region_msg (r));
176}
177
178void
179current_map_info (object *op)
180{
181 maptile *m = op->map;
182
183 if (!m)
184 return;
185
186 new_draw_info_format (NDI_UNIQUE, 0, op, "%s (%s) in %s", &m->name, &m->path, get_name_of_region_for_map (m));
187
188 if (QUERY_FLAG (op, FLAG_WIZ))
189 {
190 new_draw_info_format (NDI_UNIQUE, 0, op,
191 "players:%d difficulty:%d size:%dx%d start:%dx%d timeout %ld",
192 m->players, m->difficulty, m->width, m->height, m->enter_x, m->enter_y, m->timeout);
193
194 }
195 if (m->msg)
196 new_draw_info (NDI_UNIQUE, NDI_NAVY, op, m->msg);
197}
198
199#ifdef DEBUG_MALLOC_LEVEL
200int
201command_malloc_verify (object *op, char *parms)
202{
203 extern int malloc_verify (void);
204
205 if (!malloc_verify ())
206 new_draw_info (NDI_UNIQUE, 0, op, "Heap is corrupted.");
207 else
208 new_draw_info (NDI_UNIQUE, 0, op, "Heap checks out OK.");
209 return 1;
210}
211#endif
212
213int
214command_whereabouts (object *op, char *params)
215{
216
217 region *reg;
218 player *pl;
219
220 /*
221 * reset the counter on the region, then use it to store the number of
222 * players there.
223 * I don't know how thread-safe this would be, I suspect not very....
224 */
225 for (reg = first_region; reg != NULL; reg = reg->next)
226 {
227 reg->counter = 0;
228 }
229 for_all_players (pl)
230 if (pl->ob->map != NULL)
231 get_region_by_map (pl->ob->map)->counter++;
232
233 /* we only want to print out by places with a 'longname' field... */
234 for (reg = first_region; reg != NULL; reg = reg->next)
235 {
236 if (reg->longname == NULL && reg->counter > 0)
237 {
238 if (reg->parent != NULL)
239 {
240 reg->parent->counter += reg->counter;
241 reg->counter = 0;
242 }
243 else /*uh oh, we shouldn't be here. */
244 LOG (llevError, "command_whereabouts() Region %s with no longname has no parent", reg->name);
245 }
246 }
247 new_draw_info_format (NDI_UNIQUE, 0, op, "In the world currently there are:");
248 for (reg = first_region; reg != NULL; reg = reg->next)
249 if (reg->counter > 0)
250 new_draw_info_format (NDI_UNIQUE, 0, op, "%u players in %s", reg->counter, get_region_longname (reg));
251 return 1;
252}
253
254typedef struct
255{
256 char namebuf[MAX_BUF];
257 int login_order;
258} chars_names;
259
260int
261command_afk (object *op, char *params)
262{
263 if ((op->contr->ns->afk = !op->contr->ns->afk))
264 new_draw_info (NDI_UNIQUE, 0, op, "You are no longer AFK");
265 else
266 new_draw_info (NDI_UNIQUE, 0, op, "You are now AFK");
267
268 return 1;
269}
270
271int
272command_mapinfo (object *op, char *params)
273{
274 current_map_info (op);
275 return 1;
276}
277
278int
279command_whereami (object *op, char *params)
280{
281 current_region_info (op);
282 return 1;
283}
284 29
285int 30int
286command_time (object *op, char *params) 31command_time (object *op, char *params)
287{ 32{
288 print_tod (op); 33 print_tod (op);
289 return 1;
290}
291
292int
293command_weather (object *op, char *params)
294{
295#if 0
296 int wx, wy, temp, sky;
297 char buf[MAX_BUF];
298
299 if (settings.dynamiclevel < 1)
300 return 1;
301
302 if (op->map == NULL)
303 return 1;
304
305 if (worldmap_to_weathermap (op->x, op->y, &wx, &wy, op->map) != 0)
306 return 1;
307
308 if (QUERY_FLAG (op, FLAG_WIZ))
309 {
310 /* dump the weather, Dm style! Yo! */
311 new_draw_info_format (NDI_UNIQUE, 0, op, "Real temp: %d", real_world_temperature (op->x, op->y, op->map));
312 new_draw_info_format (NDI_UNIQUE, 0, op, "Base temp: %d", weathermap[wx][wy].temp);
313 new_draw_info_format (NDI_UNIQUE, 0, op, "Humid: %d", weathermap[wx][wy].humid);
314 new_draw_info_format (NDI_UNIQUE, 0, op, "Wind: dir=%d speed=%d", weathermap[wx][wy].winddir, weathermap[wx][wy].windspeed);
315 new_draw_info_format (NDI_UNIQUE, 0, op, "Pressure: %d", weathermap[wx][wy].pressure);
316 new_draw_info_format (NDI_UNIQUE, 0, op, "Avg Elevation: %d", weathermap[wx][wy].avgelev);
317 new_draw_info_format (NDI_UNIQUE, 0, op, "Rainfall: %d Water: %d", weathermap[wx][wy].rainfall, weathermap[wx][wy].water);
318 }
319
320 temp = real_world_temperature (op->x, op->y, op->map);
321 new_draw_info_format (NDI_UNIQUE, 0, op, "It's currently %d degrees " "Centigrade out.", temp);
322
323 /* humid */
324 if (weathermap[wx][wy].humid < 20)
325 new_draw_info (NDI_UNIQUE, 0, op, "It is very dry.");
326 else if (weathermap[wx][wy].humid < 40)
327 new_draw_info (NDI_UNIQUE, 0, op, "It is very comfortable today.");
328 else if (weathermap[wx][wy].humid < 60)
329 new_draw_info (NDI_UNIQUE, 0, op, "It is a bit muggy.");
330 else if (weathermap[wx][wy].humid < 80)
331 new_draw_info (NDI_UNIQUE, 0, op, "It is muggy.");
332 else
333 new_draw_info (NDI_UNIQUE, 0, op, "It is uncomfortably muggy.");
334
335 /* wind */
336 switch (weathermap[wx][wy].winddir)
337 {
338 case 1:
339 sprintf (buf, "north");
340 break;
341 case 2:
342 sprintf (buf, "northeast");
343 break;
344 case 3:
345 sprintf (buf, "east");
346 break;
347 case 4:
348 sprintf (buf, "southeast");
349 break;
350 case 5:
351 sprintf (buf, "south");
352 break;
353 case 6:
354 sprintf (buf, "southwest");
355 break;
356 case 7:
357 sprintf (buf, "west");
358 break;
359 case 8:
360 sprintf (buf, "northwest");
361 break;
362 }
363 if (weathermap[wx][wy].windspeed < 5)
364 new_draw_info_format (NDI_UNIQUE, 0, op, "There is a mild breeze " "coming from the %s.", buf);
365 else if (weathermap[wx][wy].windspeed < 10)
366 new_draw_info_format (NDI_UNIQUE, 0, op, "There is a strong breeze " "coming from the %s.", buf);
367 else if (weathermap[wx][wy].windspeed < 15)
368 new_draw_info_format (NDI_UNIQUE, 0, op, "There is a light wind " "coming from the %s.", buf);
369 else if (weathermap[wx][wy].windspeed < 25)
370 new_draw_info_format (NDI_UNIQUE, 0, op, "There is a strong wind " "coming from the %s.", buf);
371 else if (weathermap[wx][wy].windspeed < 35)
372 new_draw_info_format (NDI_UNIQUE, 0, op, "There is a heavy wind " "coming from the %s.", buf);
373 else
374 new_draw_info_format (NDI_UNIQUE, 0, op, "The wind from the %s is " "incredibly strong!", buf);
375
376 sky = weathermap[wx][wy].sky;
377 if (temp <= 0 && sky > SKY_OVERCAST && sky < SKY_FOG)
378 sky += 10; /*let it snow */
379 switch (sky)
380 {
381 case SKY_CLEAR:
382 new_draw_info (NDI_UNIQUE, 0, op, "There isn''t a cloud in the sky.");
383 break;
384 case SKY_LIGHTCLOUD:
385 new_draw_info (NDI_UNIQUE, 0, op, "There are a few light clouds in the sky.");
386 break;
387 case SKY_OVERCAST:
388 new_draw_info (NDI_UNIQUE, 0, op, "The sky is cloudy and dreary.");
389 break;
390 case SKY_LIGHT_RAIN:
391 new_draw_info (NDI_UNIQUE, 0, op, "It is raining softly.");
392 break;
393 case SKY_RAIN:
394 new_draw_info (NDI_UNIQUE, 0, op, "It is raining.");
395 break;
396 case SKY_HEAVY_RAIN:
397 new_draw_info (NDI_UNIQUE, 0, op, "It is raining heavily.");
398 break;
399 case SKY_HURRICANE:
400 new_draw_info (NDI_UNIQUE, 0, op, "There is a heavy storm! You should go inside!");
401 break;
402 case SKY_FOG:
403 new_draw_info (NDI_UNIQUE, 0, op, "It''s foggy and miserable.");
404 break;
405 case SKY_HAIL:
406 new_draw_info (NDI_UNIQUE, 0, op, "It''s hailing out! Take cover!");
407 break;
408 case SKY_LIGHT_SNOW:
409 new_draw_info (NDI_UNIQUE, 0, op, "Snow is gently falling from the sky.");
410 break;
411 case SKY_SNOW:
412 new_draw_info (NDI_UNIQUE, 0, op, "It''s snowing out.");
413 break;
414 case SKY_HEAVY_SNOW:
415 new_draw_info (NDI_UNIQUE, 0, op, "The snow is falling very heavily now.");
416 break;
417 case SKY_BLIZZARD:
418 new_draw_info (NDI_UNIQUE, 0, op, "A full blown blizzard is in effect. You might want to take cover!");
419 break;
420 }
421#endif
422 return 1;
423}
424
425int
426command_archs (object *op, char *params)
427{
428 arch_info (op);
429 return 1;
430}
431
432int
433command_hiscore (object *op, char *params)
434{
435 display_high_score (op, op == NULL ? 9999 : 50, params);
436 return 1; 34 return 1;
437} 35}
438 36
439int 37int
440command_debug (object *op, char *params) 38command_debug (object *op, char *params)
446 { 44 {
447 sprintf (buf, "Global debug level is %d.", settings.debug); 45 sprintf (buf, "Global debug level is %d.", settings.debug);
448 new_draw_info (NDI_UNIQUE, 0, op, buf); 46 new_draw_info (NDI_UNIQUE, 0, op, buf);
449 return 1; 47 return 1;
450 } 48 }
451 if (op != NULL && !QUERY_FLAG (op, FLAG_WIZ)) 49
452 { 50 settings.debug = i;
453 new_draw_info (NDI_UNIQUE, 0, op, "Privileged command."); 51
454 return 1;
455 }
456 settings.debug = (enum LogLevel) FABS (i);
457 sprintf (buf, "Set debug level to %d.", i); 52 sprintf (buf, "Set debug level to %d.", i);
458 new_draw_info (NDI_UNIQUE, 0, op, buf); 53 new_draw_info (NDI_UNIQUE, 0, op, buf);
459 return 1; 54 return 1;
460} 55}
461
462 56
463/* 57/*
464 * Those dumps should be just one dump with good parser 58 * Those dumps should be just one dump with good parser
465 */ 59 */
466 60
477 } 71 }
478 return 0; 72 return 0;
479} 73}
480 74
481int 75int
482command_dumpfriendlyobjects (object *op, char *params)
483{
484 dump_friendly_objects ();
485 return 0;
486}
487
488int
489command_printlos (object *op, char *params)
490{
491 if (op)
492 print_los (op);
493 return 0;
494}
495
496
497int
498command_version (object *op, char *params) 76command_version (object *op, char *params)
499{ 77{
500 version (op); 78 version (op);
501 return 0; 79 return 0;
502}
503
504#ifndef BUG_LOG
505# define BUG_LOG "bug_log"
506#endif
507void
508bug_report (const char *reportstring)
509{
510 FILE *fp;
511
512 if ((fp = fopen (BUG_LOG, "a")) != NULL)
513 {
514 fprintf (fp, "%s\n", reportstring);
515 fclose (fp);
516 }
517 else
518 {
519 LOG (llevError, "Cannot write bugs file %s: %s\n", BUG_LOG, strerror (errno));
520 }
521}
522
523int
524command_output_sync (object *op, char *params)
525{
526 int val;
527
528 if (!params)
529 {
530 new_draw_info_format (NDI_UNIQUE, 0, op, "Output sync time is presently %d", op->contr->outputs_sync);
531 return 1;
532 }
533 val = atoi (params);
534 if (val > 0)
535 {
536 op->contr->outputs_sync = val;
537 new_draw_info_format (NDI_UNIQUE, 0, op, "Output sync time now set to %d", op->contr->outputs_sync);
538 }
539 else
540 new_draw_info (NDI_UNIQUE, 0, op, "Invalid value for output_sync.");
541
542 return 1;
543}
544
545int
546command_output_count (object *op, char *params)
547{
548 int val;
549
550 if (!params)
551 {
552 new_draw_info_format (NDI_UNIQUE, 0, op, "Output count is presently %d", op->contr->outputs_count);
553 return 1;
554 }
555 val = atoi (params);
556 if (val > 0)
557 {
558 op->contr->outputs_count = val;
559 new_draw_info_format (NDI_UNIQUE, 0, op, "Output count now set to %d", op->contr->outputs_count);
560 }
561 else
562 new_draw_info (NDI_UNIQUE, 0, op, "Invalid value for output_count.");
563
564 return 1;
565}
566
567int
568command_listen (object *op, char *params)
569{
570 int i;
571
572 if (params == NULL || !sscanf (params, "%d", &i))
573 {
574 new_draw_info_format (NDI_UNIQUE, 0, op, "Set listen to what (presently %d)?", op->contr->listening);
575 return 1;
576 }
577 op->contr->listening = (char) i;
578 new_draw_info_format (NDI_UNIQUE, 0, op, "Your verbose level is now %d.", i);
579 return 1;
580} 80}
581 81
582/* Prints out some useful information for the character. Everything we print 82/* Prints out some useful information for the character. Everything we print
583 * 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 -
584 * 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
587int 87int
588command_statistics (object *pl, char *params) 88command_statistics (object *pl, char *params)
589{ 89{
590 if (!pl->contr) 90 if (!pl->contr)
591 return 1; 91 return 1;
592 new_draw_info_format (NDI_UNIQUE, 0, pl, " Experience: %" PRId64, pl->stats.exp);
593 new_draw_info_format (NDI_UNIQUE, 0, pl, " Next Level: %" PRId64, level_exp (pl->level + 1, pl->expmul));
594 new_draw_info (NDI_UNIQUE, 0, pl, "\nStat Nat/Real/Max");
595 92
596 new_draw_info_format (NDI_UNIQUE, 0, pl, "Str %2d/ %3d/%3d", 93 dynbuf_text &msg = msg_dynbuf; msg.clear ();
597 pl->contr->orig_stats.Str, pl->stats.Str, 20 + pl->arch->clone.stats.Str); 94
598 new_draw_info_format (NDI_UNIQUE, 0, pl, "Dex %2d/ %3d/%3d", 95 msg << " Experience: " << pl->stats.exp << '\n'
599 pl->contr->orig_stats.Dex, pl->stats.Dex, 20 + pl->arch->clone.stats.Dex); 96 << " Next Level: " << level_exp (pl->level + 1, pl->expmul) << '\n'
600 new_draw_info_format (NDI_UNIQUE, 0, pl, "Con %2d/ %3d/%3d", 97 << "\n Stat Nat/Real/Max\n";
601 pl->contr->orig_stats.Con, pl->stats.Con, 20 + pl->arch->clone.stats.Con); 98
602 new_draw_info_format (NDI_UNIQUE, 0, pl, "Int %2d/ %3d/%3d", 99 for (int i = 0; i < NUM_STATS; ++i)
603 pl->contr->orig_stats.Int, pl->stats.Int, 20 + pl->arch->clone.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));
604 new_draw_info_format (NDI_UNIQUE, 0, pl, "Wis %2d/ %3d/%3d", 101
605 pl->contr->orig_stats.Wis, pl->stats.Wis, 20 + pl->arch->clone.stats.Wis); 102 msg << "\nYou are " << (pl->contr->peaceful ? "peaceful" : "hostile") << '.';
606 new_draw_info_format (NDI_UNIQUE, 0, pl, "Pow %2d/ %3d/%3d", 103
607 pl->contr->orig_stats.Pow, pl->stats.Pow, 20 + pl->arch->clone.stats.Pow); 104 pl->contr->infobox (MSG_CHANNEL ("statistics"), msg);
608 new_draw_info_format (NDI_UNIQUE, 0, pl, "Cha %2d/ %3d/%3d",
609 pl->contr->orig_stats.Cha, pl->stats.Cha, 20 + pl->arch->clone.stats.Cha);
610 new_draw_info_format (NDI_UNIQUE, 0, pl, "\nAttack Mode: %s", pl->contr->peaceful ? "Peaceful" : "Hostile");
611 105
612 /* Can't think of anything else to print right now */ 106 /* Can't think of anything else to print right now */
613 return 0; 107 return 0;
614} 108}
615 109
616int 110int
617command_fix_me (object *op, char *params) 111command_fix_me (object *op, char *params)
618{ 112{
619 sum_weight (op); 113 op->update_weight ();
620 op->update_stats (); 114 op->update_stats ();
621 return 1; 115 new_draw_info (NDI_UNIQUE, 0, op, "Your character was fixed.");
622}
623 116
624int
625command_players (object *op, char *paramss)
626{
627 char buf[MAX_BUF];
628 char *t;
629 DIR *Dir;
630
631 sprintf (buf, "%s/%s/", settings.localdir, settings.playerdir);
632 t = buf + strlen (buf);
633 if ((Dir = opendir (buf)) != NULL)
634 {
635 const struct dirent *Entry;
636
637 while ((Entry = readdir (Dir)))
638 {
639 /* skip '.' , '..' */
640 if (!((Entry->d_name[0] == '.' && Entry->d_name[1] == '\0') ||
641 (Entry->d_name[0] == '.' && Entry->d_name[1] == '.' && Entry->d_name[2] == '\0')))
642 {
643 struct stat Stat;
644
645 strcpy (t, Entry->d_name);
646 if (stat (buf, &Stat) == 0)
647 {
648 /* This was not posix compatible
649 * if ((Stat.st_mode & S_IFMT)==S_IFDIR) {
650 */
651 if (S_ISDIR (Stat.st_mode))
652 {
653 char buf2[MAX_BUF];
654 struct tm *tm = localtime (&Stat.st_mtime);
655
656 sprintf (buf2, "%s\t%04d %02d %02d %02d %02d %02d",
657 Entry->d_name, 1900 + tm->tm_year, 1 + tm->tm_mon, tm->tm_mday, tm->tm_hour, tm->tm_min, tm->tm_sec);
658 new_draw_info (NDI_UNIQUE, 0, op, buf2);
659 }
660 }
661 }
662 }
663 }
664 closedir (Dir);
665 return 0;
666}
667
668
669
670int
671command_logs (object *op, char *params)
672{
673 new_draw_info (NDI_UNIQUE, 0, op, "Nobody is currently logging kills.");
674
675 return 1;
676}
677
678int
679command_applymode (object *op, char *params)
680{
681 unapplymode unapply = op->contr->unapply;
682 static const char *const types[] = { "nochoice", "never", "always" };
683
684 if (!params)
685 {
686 new_draw_info_format (NDI_UNIQUE, 0, op, "applymode is set to %s", types[op->contr->unapply]);
687 return 1;
688 }
689
690 if (!strcmp (params, "nochoice"))
691 op->contr->unapply = unapply_nochoice;
692 else if (!strcmp (params, "never"))
693 op->contr->unapply = unapply_never;
694 else if (!strcmp (params, "always"))
695 op->contr->unapply = unapply_always;
696 else
697 {
698 new_draw_info_format (NDI_UNIQUE, 0, op, "applymode: Unknown options %s, valid options are nochoice, never, always", params);
699 return 0;
700 }
701 new_draw_info_format (NDI_UNIQUE, 0, op, "Applymode %s set to %s",
702 (unapply == op->contr->unapply ? "" : " now"), types[op->contr->unapply]);
703 return 1; 117 return 1;
704} 118}
705 119
706int 120int
707command_bowmode (object *op, char *params) 121command_bowmode (object *op, char *params)
708{ 122{
709 bowtype_t oldtype = op->contr->bowtype; 123 bowtype_t oldtype = op->contr->bowtype;
710 static const char *const types[] = { "normal", "threewide", "spreadshot", "firenorth", 124 static const char *const types[] = {
125 "normal", "threewide", "spreadshot", "firenorth",
711 "firene", "fireeast", "firese", "firesouth", 126 "firene", "fireeast", "firese", "firesouth",
712 "firesw", "firewest", "firenw", "bestarrow" 127 "firesw", "firewest", "firenw", "bestarrow"
713 }; 128 };
714 char buf[MAX_BUF]; 129 char buf[MAX_BUF];
715 int i, found; 130 int i, found;
727 found++; 142 found++;
728 op->contr->bowtype = (bowtype_t) i; 143 op->contr->bowtype = (bowtype_t) i;
729 break; 144 break;
730 } 145 }
731 } 146 }
147
732 if (!found) 148 if (!found)
733 { 149 {
734 sprintf (buf, "bowmode: Unknown options %s, valid options are:", params); 150 sprintf (buf, "bowmode: Unknown options %s, valid options are:", params);
151
735 for (i = 0; i <= bow_bestarrow; i++) 152 for (i = 0; i <= bow_bestarrow; i++)
736 { 153 {
737 strcat (buf, " "); 154 strcat (buf, " ");
738 strcat (buf, types[i]); 155 strcat (buf, types[i]);
739 if (i < bow_nw) 156 if (i < bow_nw)
742 strcat (buf, "."); 159 strcat (buf, ".");
743 } 160 }
744 new_draw_info_format (NDI_UNIQUE, 0, op, buf); 161 new_draw_info_format (NDI_UNIQUE, 0, op, buf);
745 return 0; 162 return 0;
746 } 163 }
164
747 new_draw_info_format (NDI_UNIQUE, 0, op, "bowmode %s set to %s", (oldtype == op->contr->bowtype ? "" : "now"), types[op->contr->bowtype]); 165 new_draw_info_format (NDI_UNIQUE, 0, op, "bowmode %s set to %s", (oldtype == op->contr->bowtype ? "" : "now"), types[op->contr->bowtype]);
748 return 1; 166 return 1;
749} 167}
750 168
751int 169int
752command_petmode (object *op, char *params)
753{
754 petmode_t oldtype = op->contr->petmode;
755 static const char *const types[] = { "normal", "sad", "defend", "arena" };
756
757 if (!params)
758 {
759 new_draw_info_format (NDI_UNIQUE, 0, op, "petmode is set to %s", types[op->contr->petmode]);
760 return 1;
761 }
762
763 if (!strcmp (params, "normal"))
764 op->contr->petmode = pet_normal;
765 else if (!strcmp (params, "sad"))
766 op->contr->petmode = pet_sad;
767 else if (!strcmp (params, "defend"))
768 op->contr->petmode = pet_defend;
769 else if (!strcmp (params, "arena"))
770 op->contr->petmode = pet_arena;
771 else
772 {
773 new_draw_info_format (NDI_UNIQUE, 0, op,
774 "petmode: Unknown options %s, valid options are normal," "sad (seek and destroy), defend, arena", params);
775 return 0;
776 }
777 new_draw_info_format (NDI_UNIQUE, 0, op, "petmode %s set to %s", (oldtype == op->contr->petmode ? "" : "now"), types[op->contr->petmode]);
778 return 1;
779}
780
781int
782command_showpets (object *op, char *params) 170command_showpets (object *op, char *params)
783{ 171{
784 objectlink *obl, *next;
785 int counter = 0, target = 0; 172 int counter = 0, target = 0;
786 int have_shown_pet = 0; 173 int have_shown_pet = 0;
787 174
175 dynbuf_text &msg = msg_dynbuf; msg.clear ();
176
788 if (params != NULL) 177 if (params)
789 target = atoi (params); 178 target = atoi (params);
179
790 for (obl = first_friendly_object; obl != NULL; obl = next) 180 for (objectlink *obl = first_friendly_object; obl; obl = obl->next)
791 { 181 {
792 object *ob = obl->ob; 182 object *ob = obl->ob;
793 183
794 next = obl->next;
795 if (ob->owner == op) 184 if (ob->owner == op)
796 { 185 {
797 if (target == 0) 186 if (target == 0)
798 { 187 {
799 if (counter == 0) 188 if (counter == 0)
800 new_draw_info (NDI_UNIQUE, 0, op, "Pets:"); 189 msg << "T<Pets>\n\n";
190
801 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);
802 } 192 }
803 else if (!have_shown_pet && ++counter == target) 193 else if (!have_shown_pet && ++counter == target)
804 { 194 {
805 new_draw_info_format (NDI_UNIQUE, 0, op, "level %d %s", ob->level, &ob->name); 195 msg.printf ("T<%s>\n\n"
806 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"
807 /* 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"
808 new_draw_info_format (NDI_UNIQUE, 0, op, "Str %d", ob->stats.Str); 198 " Str %2d\n"
809 new_draw_info_format (NDI_UNIQUE, 0, op, "Dex %d", ob->stats.Dex); 199 " Dex %2d\n"
810 new_draw_info_format (NDI_UNIQUE, 0, op, "Con %d", ob->stats.Con); 200 " Con %2d\n"
811 new_draw_info_format (NDI_UNIQUE, 0, op, "Int %d", ob->stats.Int); 201 " Int %2d\n"
812 new_draw_info_format (NDI_UNIQUE, 0, op, "Wis %d", ob->stats.Wis); 202 " Wis %2d\n"
813 new_draw_info_format (NDI_UNIQUE, 0, op, "Cha %d", ob->stats.Cha); 203 " Cha %2d\n"
814 new_draw_info_format (NDI_UNIQUE, 0, op, "Pow %d", ob->stats.Pow); 204 " Pow %2d\n"
815 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
816 have_shown_pet = 1; 218 have_shown_pet = 1;
817 } 219 }
818 } 220 }
819 } 221 }
222
820 if (counter == 0) 223 if (counter == 0)
821 new_draw_info (NDI_UNIQUE, 0, op, "you have no pets."); 224 msg << "you have no pets.";
822 else if (target != 0 && have_shown_pet == 0) 225 else if (target != 0 && have_shown_pet == 0)
823 new_draw_info (NDI_UNIQUE, 0, op, "no such pet."); 226 msg << "no such pet.";
824 return 0;
825}
826 227
827int 228 op->contr->infobox (MSG_CHANNEL ("pets"), msg);
828command_usekeys (object *op, char *params)
829{
830 usekeytype oldtype = op->contr->usekeys;
831 static const char *const types[] = { "inventory", "keyrings", "containers" };
832 229
833 if (!params)
834 {
835 new_draw_info_format (NDI_UNIQUE, 0, op, "usekeys is set to %s", types[op->contr->usekeys]);
836 return 1;
837 }
838
839 if (!strcmp (params, "inventory"))
840 op->contr->usekeys = key_inventory;
841 else if (!strcmp (params, "keyrings"))
842 op->contr->usekeys = keyrings;
843 else if (!strcmp (params, "containers"))
844 op->contr->usekeys = containers;
845 else
846 {
847 new_draw_info_format (NDI_UNIQUE, 0, op, "usekeys: Unknown options %s, valid options are inventory, keyrings, containers", params);
848 return 0;
849 }
850 new_draw_info_format (NDI_UNIQUE, 0, op, "usekeys %s set to %s", (oldtype == op->contr->usekeys ? "" : "now"), types[op->contr->usekeys]);
851 return 1; 230 return 0;
852} 231}
853 232
854int 233int
855command_resistances (object *op, char *params) 234command_resistances (object *op, char *params)
856{ 235{
857 int i; 236 dynbuf_text &msg = msg_dynbuf; msg.clear ();
858 237
859 if (!op) 238 msg << "Resistances:\n\n";
860 return 0;
861 239
862 for (i = 0; i < NROFATTACKS; i++) 240 for (int i = 0; i < NROFATTACKS; i++)
863 {
864 if (i == ATNR_INTERNAL) 241 if (i != ATNR_INTERNAL)
865 continue; 242 msg.printf (" %-20s %+4d\n", attacktype_desc [i], op->resist [i]);
866
867 new_draw_info_format (NDI_UNIQUE, 0, op, "%-20s %+5d", attacktype_desc[i], op->resist[i]);
868 }
869 243
870 /* If dragon player, let's display natural resistances */ 244 /* If dragon player, let's display natural resistances */
871 if (is_dragon_pl (op)) 245 if (op->is_dragon ())
872 {
873 int attack;
874 object *tmp;
875
876 for (tmp = op->inv; tmp != NULL; tmp = tmp->below) 246 for (object *tmp = op->inv; tmp; tmp = tmp->below)
877 {
878 if ((tmp->type == FORCE) && (strcmp (tmp->arch->name, "dragon_skin_force") == 0)) 247 if ((tmp->type == FORCE) && tmp->arch->archname == shstr_dragon_skin_force)
879 { 248 {
880 new_draw_info (NDI_UNIQUE, 0, op, "\nNatural skin resistances:"); 249 msg << "\nOf those, these are natural skin resistances:\n\n";
250
881 for (attack = 0; attack < NROFATTACKS; attack++) 251 for (int attack = 0; attack < NROFATTACKS; attack++)
882 {
883 if (atnr_is_dragon_enabled (attack)) 252 if (atnr_is_dragon_enabled (attack))
884 { 253 msg.printf (" %-20s %+4d\n", change_resist_msg [attack], tmp->resist [attack]);
885 new_draw_info_format (NDI_UNIQUE, 0, op, "%s: %d", change_resist_msg[attack], tmp->resist[attack]);
886 }
887 }
888 break;
889 }
890 }
891 }
892 254
893 return 0;
894}
895
896/*
897 * Actual commands.
898 * Those should be in small separate files (c_object.c, c_wiz.c, cmove.c,...)
899 */
900
901
902static void
903help_topics (object *op, int what)
904{
905 DIR *dirp;
906 struct dirent *de;
907 char filename[MAX_BUF], line[80];
908 int namelen, linelen = 0;
909
910 switch (what)
911 {
912 case 1:
913 sprintf (filename, "%s/wizhelp", settings.datadir);
914 new_draw_info (NDI_UNIQUE, 0, op, " Wiz commands:");
915 break;
916 case 3:
917 sprintf (filename, "%s/mischelp", settings.datadir);
918 new_draw_info (NDI_UNIQUE, 0, op, " Misc help:");
919 break;
920 default:
921 sprintf (filename, "%s/help", settings.datadir);
922 new_draw_info (NDI_UNIQUE, 0, op, " Commands:");
923 break;
924 }
925
926 if (!(dirp = opendir (filename)))
927 return;
928
929 line[0] = '\0';
930 while (de = readdir (dirp))
931 {
932 namelen = strlen (de->d_name);
933 if (namelen <= 2 && *de->d_name == '.' && (namelen == 1 || de->d_name[1] == '.'))
934 continue;
935 linelen += namelen + 1;
936 if (linelen > 42)
937 {
938 new_draw_info (NDI_UNIQUE, 0, op, line);
939 sprintf (line, " %s", de->d_name);
940 linelen = namelen + 1;
941 continue;
942 }
943 strcat (line, " ");
944 strcat (line, de->d_name);
945 }
946 new_draw_info (NDI_UNIQUE, 0, op, line);
947 closedir (dirp);
948}
949
950static void
951show_commands (object *op, int what)
952{
953 char line[80];
954 int i, size, namelen, linelen = 0;
955 CommArray_s *ap;
956 extern CommArray_s Commands[], WizCommands[];
957 extern const int CommandsSize, WizCommandsSize;
958
959 switch (what)
960 {
961 case 1:
962 ap = WizCommands;
963 size = WizCommandsSize;
964 new_draw_info (NDI_UNIQUE, 0, op, " Wiz commands:");
965 break; 255 break;
966 case 2:
967 ap = CommunicationCommands;
968 size = CommunicationCommandSize;
969 new_draw_info (NDI_UNIQUE, 0, op, " Communication commands:");
970 break;
971 default:
972 ap = Commands;
973 size = CommandsSize;
974 new_draw_info (NDI_UNIQUE, 0, op, " Commands:");
975 break;
976 }
977
978 line[0] = '\0';
979 for (i = 0; i < size; i++)
980 {
981 namelen = strlen (ap[i].name);
982 linelen += namelen + 1;
983 if (linelen > 42)
984 { 256 }
985 new_draw_info (NDI_UNIQUE, 0, op, line);
986 sprintf (line, " %s", ap[i].name);
987 linelen = namelen + 1;
988 continue;
989 }
990 strcat (line, " ");
991 strcat (line, ap[i].name);
992 }
993 new_draw_info (NDI_UNIQUE, 0, op, line);
994}
995 257
258 op->contr->infobox (MSG_CHANNEL ("resistances"), msg);
996 259
997int
998command_help (object *op, char *params)
999{
1000 struct stat st;
1001 FILE *fp;
1002 char filename[MAX_BUF], line[MAX_BUF];
1003 int len;
1004
1005 if (op != NULL)
1006 clear_win_info (op);
1007
1008/*
1009 * Main help page?
1010 */
1011 if (!params)
1012 {
1013 sprintf (filename, "%s/def_help", settings.datadir);
1014 if ((fp = fopen (filename, "r")) == NULL)
1015 {
1016 LOG (llevError, "Cannot open help file %s: %s\n", filename, strerror (errno));
1017 return 0;
1018 }
1019 while (fgets (line, MAX_BUF, fp))
1020 {
1021 line[MAX_BUF - 1] = '\0';
1022 len = strlen (line) - 1;
1023 if (line[len] == '\n')
1024 line[len] = '\0';
1025 new_draw_info (NDI_UNIQUE, 0, op, line);
1026 }
1027 fclose (fp);
1028 return 0;
1029 }
1030
1031 /*
1032 * Topics list
1033 */
1034 if (!strcmp (params, "topics"))
1035 {
1036 help_topics (op, 3);
1037 help_topics (op, 0);
1038 if (QUERY_FLAG (op, FLAG_WIZ))
1039 help_topics (op, 1);
1040 return 0;
1041 }
1042
1043 /*
1044 * Commands list
1045 */
1046 if (!strcmp (params, "commands"))
1047 {
1048 show_commands (op, 0);
1049 show_commands (op, 2); /* show comm commands */
1050 if (QUERY_FLAG (op, FLAG_WIZ))
1051 show_commands (op, 1);
1052 return 0;
1053 }
1054
1055 /*
1056 * User wants info about command
1057 */
1058 if (strchr (params, '.') || strchr (params, ' ') || strchr (params, '/'))
1059 {
1060 sprintf (line, "Illegal characters in '%s'", params);
1061 new_draw_info (NDI_UNIQUE, 0, op, line);
1062 return 0;
1063 }
1064
1065 sprintf (filename, "%s/mischelp/%s", settings.datadir, params);
1066 if (stat (filename, &st) || !S_ISREG (st.st_mode))
1067 {
1068 if (op)
1069 {
1070 sprintf (filename, "%s/help/%s", settings.datadir, params);
1071 if (stat (filename, &st) || !S_ISREG (st.st_mode))
1072 {
1073 if (QUERY_FLAG (op, FLAG_WIZ))
1074 {
1075 sprintf (filename, "%s/wizhelp/%s", settings.datadir, params);
1076 if (stat (filename, &st) || !S_ISREG (st.st_mode))
1077 goto nohelp;
1078 }
1079 else
1080 goto nohelp;
1081 }
1082 }
1083 }
1084
1085 /*
1086 * Found that. Just cat it to screen.
1087 */
1088 if ((fp = fopen (filename, "r")) == NULL)
1089 {
1090 LOG (llevError, "Cannot open help file %s: %s\n", filename, strerror (errno));
1091 return 0;
1092 }
1093 sprintf (line, "Help about '%s'", params);
1094 new_draw_info (NDI_UNIQUE, 0, op, line);
1095 while (fgets (line, MAX_BUF, fp))
1096 {
1097 line[MAX_BUF - 1] = '\0';
1098 len = strlen (line) - 1;
1099 if (line[len] == '\n')
1100 line[len] = '\0';
1101 new_draw_info (NDI_UNIQUE, 0, op, line);
1102 }
1103 fclose (fp);
1104 return 0;
1105
1106 /*
1107 * No_help -escape
1108 */
1109nohelp:
1110 sprintf (line, "No help available on '%s'", params);
1111 new_draw_info (NDI_UNIQUE, 0, op, line);
1112 return 0;
1113}
1114
1115
1116int
1117onoff_value (const char *line)
1118{
1119 int i;
1120
1121 if (sscanf (line, "%d", &i))
1122 return (i != 0);
1123 switch (line[0])
1124 {
1125 case 'o':
1126 switch (line[1])
1127 {
1128 case 'n':
1129 return 1; /* on */
1130 default:
1131 return 0; /* o[ff] */
1132 }
1133 case 'y': /* y[es] */
1134 case 'k': /* k[ylla] */
1135 case 's':
1136 case 'd':
1137 return 1;
1138 case 'n': /* n[o] */
1139 case 'e': /* e[i] */
1140 case 'u':
1141 default:
1142 return 0;
1143 }
1144}
1145
1146int
1147command_sound (object *op, char *params)
1148{
1149 if (op->contr->ns->sound)
1150 {
1151 op->contr->ns->sound = 0;
1152 new_draw_info (NDI_UNIQUE, 0, op, "Silence is golden...");
1153 }
1154 else
1155 {
1156 op->contr->ns->sound = 1;
1157 new_draw_info (NDI_UNIQUE, 0, op, "The sounds are enabled.");
1158 }
1159
1160 return 1; 260 return 0;
1161} 261}
1162 262
1163int 263int
1164command_title (object *op, char *params) 264command_title (object *op, char *params)
1165{ 265{
1170 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.");
1171 return 1; 271 return 1;
1172 } 272 }
1173 273
1174 /* dragon players cannot change titles */ 274 /* dragon players cannot change titles */
1175 if (is_dragon_pl (op)) 275 if (op->is_dragon ())
1176 { 276 {
1177 new_draw_info (NDI_UNIQUE, 0, op, "Dragons cannot change titles."); 277 new_draw_info (NDI_UNIQUE, 0, op, "Dragons cannot change titles.");
1178 return 1; 278 return 1;
1179 } 279 }
1180 280
1205 strcpy (op->contr->own_title, params); 305 strcpy (op->contr->own_title, params);
1206 return 1; 306 return 1;
1207} 307}
1208 308
1209int 309int
1210command_peaceful (object *op, char *params)
1211{
1212 new_draw_info (NDI_UNIQUE, 0, op,
1213 "You cannot change your peaceful setting with this command."
1214 " Please speak to the priest in the temple of Gorokh"
1215 " if you want to become hostile or in temple of Valriel" " if you want to become peaceful again.");
1216
1217/*
1218 if((op->contr->peaceful=!op->contr->peaceful))
1219 new_draw_info(NDI_UNIQUE, 0,op,"You will not attack other players.");
1220 else
1221 new_draw_info(NDI_UNIQUE, 0,op,"You will attack other players.");
1222*/
1223 return 1;
1224}
1225
1226int
1227command_wimpy (object *op, char *params)
1228{
1229 int i;
1230 char buf[MAX_BUF];
1231
1232 if (params == NULL || !sscanf (params, "%d", &i))
1233 {
1234 sprintf (buf, "Your current wimpy level is %d.", op->run_away);
1235 new_draw_info (NDI_UNIQUE, 0, op, buf);
1236 return 1;
1237 }
1238 sprintf (buf, "Your new wimpy level is %d.", i);
1239 new_draw_info (NDI_UNIQUE, 0, op, buf);
1240 op->run_away = i;
1241 return 1;
1242}
1243
1244int
1245command_brace (object *op, char *params)
1246{
1247 if (!params)
1248 op->contr->braced = !op->contr->braced;
1249 else
1250 op->contr->braced = onoff_value (params);
1251
1252 if (op->contr->braced)
1253 new_draw_info (NDI_UNIQUE, 0, op, "You are braced.");
1254 else
1255 new_draw_info (NDI_UNIQUE, 0, op, "Not braced.");
1256
1257 op->update_stats ();
1258 return 0;
1259}
1260
1261int
1262command_kill_pets (object *op, char *params) 310command_kill_pets (object *op, char *params)
1263{ 311{
1264 objectlink *obl, *next; 312 objectlink *obl, *next;
1265 int counter = 0, removecount = 0; 313 int counter = 0, removecount = 0;
1266 314
1267 if (params == NULL) 315 if (!params)
1268 { 316 {
1269 terminate_all_pets (op); 317 terminate_all_pets (op);
1270 new_draw_info (NDI_UNIQUE, 0, op, "Your pets have been killed."); 318 new_draw_info (NDI_UNIQUE, 0, op, "Your pets have been killed.");
1271 } 319 }
1272 else 320 else
1273 { 321 {
1274 int target = atoi (params); 322 int target = atoi (params);
1275 323
1276 for (obl = first_friendly_object; obl != NULL; obl = next) 324 for (obl = first_friendly_object; obl; obl = next)
1277 { 325 {
1278 object *ob = obl->ob; 326 object *ob = obl->ob;
1279 327
1280 next = obl->next; 328 next = obl->next;
329
1281 if (ob->owner == op) 330 if (ob->owner == op)
1282 if (++counter == target || (target == 0 && !strcasecmp (ob->name, params))) 331 if (++counter == target || (target == 0 && !strcasecmp (ob->name, params)))
1283 { 332 {
1284 ob->destroy (); 333 ob->destroy ();
1285 removecount++; 334 removecount++;
1286 } 335 }
1287 } 336 }
337
1288 if (removecount != 0) 338 if (removecount != 0)
1289 new_draw_info_format (NDI_UNIQUE, 0, op, "killed %d pets.\n", removecount); 339 new_draw_info_format (NDI_UNIQUE, 0, op, "killed %d pets.\n", removecount);
1290 else 340 else
1291 new_draw_info (NDI_UNIQUE, 0, op, "Couldn't find any suitable pets to kill.\n"); 341 new_draw_info (NDI_UNIQUE, 0, op, "Couldn't find any suitable pets to kill.\n");
1292 } 342 }
343
1293 return 0; 344 return 0;
1294} 345}

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines