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.34 by pippijn, Sat Jan 6 14:42:30 2007 UTC vs.
Revision 1.76 by root, Thu Oct 15 21:40:42 2009 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 Marc Alexander Lehmann / Robin Redeker / the Deliantra team
5 Copyright (C) 2002 Mark Wedel & Crossfire Development Team 5 * Copyright (©) 2002,2007 Mark Wedel & Crossfire Development Team
6 Copyright (C) 1992 Frank Tore Johansen 6 * Copyright (©) 1992,2007 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> 26#include <loader.h>
27#include <sproto.h> 27#include <sproto.h>
28 28
29#include <dirent.h>
30
31/* Handles misc. input request - things like hash table, malloc, maps, 29/* 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 30
254typedef struct 31typedef struct
255{ 32{
256 char namebuf[MAX_BUF]; 33 char namebuf[MAX_BUF];
257 int login_order; 34 int login_order;
258} chars_names; 35} chars_names;
259 36
260int 37int
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
285int
286command_time (object *op, char *params) 38command_time (object *op, char *params)
287{ 39{
288 print_tod (op); 40 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; 41 return 1;
437} 42}
438 43
439int 44int
440command_debug (object *op, char *params) 45command_debug (object *op, char *params)
446 { 51 {
447 sprintf (buf, "Global debug level is %d.", settings.debug); 52 sprintf (buf, "Global debug level is %d.", settings.debug);
448 new_draw_info (NDI_UNIQUE, 0, op, buf); 53 new_draw_info (NDI_UNIQUE, 0, op, buf);
449 return 1; 54 return 1;
450 } 55 }
451 if (op != NULL && !QUERY_FLAG (op, FLAG_WIZ)) 56
452 { 57 settings.debug = i;
453 new_draw_info (NDI_UNIQUE, 0, op, "Privileged command."); 58
454 return 1;
455 }
456 settings.debug = (enum LogLevel) FABS (i);
457 sprintf (buf, "Set debug level to %d.", i); 59 sprintf (buf, "Set debug level to %d.", i);
458 new_draw_info (NDI_UNIQUE, 0, op, buf); 60 new_draw_info (NDI_UNIQUE, 0, op, buf);
459 return 1; 61 return 1;
460} 62}
461 63
477 } 79 }
478 return 0; 80 return 0;
479} 81}
480 82
481int 83int
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) 84command_version (object *op, char *params)
499{ 85{
500 version (op); 86 version (op);
501 return 0; 87 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} 88}
581 89
582/* Prints out some useful information for the character. Everything we print 90/* 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 - 91 * 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 92 * rather, we are making it convenient to find the values. params have
587int 95int
588command_statistics (object *pl, char *params) 96command_statistics (object *pl, char *params)
589{ 97{
590 if (!pl->contr) 98 if (!pl->contr)
591 return 1; 99 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 100
596 new_draw_info_format (NDI_UNIQUE, 0, pl, "Str %2d/ %3d/%3d", 101 dynbuf_text &msg = msg_dynbuf; msg.clear ();
597 pl->contr->orig_stats.Str, pl->stats.Str, 20 + pl->arch->clone.stats.Str); 102
598 new_draw_info_format (NDI_UNIQUE, 0, pl, "Dex %2d/ %3d/%3d", 103 msg << " Experience: " << pl->stats.exp << '\n'
599 pl->contr->orig_stats.Dex, pl->stats.Dex, 20 + pl->arch->clone.stats.Dex); 104 << " Next Level: " << level_exp (pl->level + 1, pl->expmul) << '\n'
600 new_draw_info_format (NDI_UNIQUE, 0, pl, "Con %2d/ %3d/%3d", 105 << "\n Stat Nat/Real/Max\n";
601 pl->contr->orig_stats.Con, pl->stats.Con, 20 + pl->arch->clone.stats.Con); 106
602 new_draw_info_format (NDI_UNIQUE, 0, pl, "Int %2d/ %3d/%3d", 107 for (int i = 0; i < NUM_STATS; ++i)
603 pl->contr->orig_stats.Int, pl->stats.Int, 20 + pl->arch->clone.stats.Int); 108 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", 109
605 pl->contr->orig_stats.Wis, pl->stats.Wis, 20 + pl->arch->clone.stats.Wis); 110 msg << "\nYou are " << (pl->contr->peaceful ? "peaceful" : "hostile") << '.';
606 new_draw_info_format (NDI_UNIQUE, 0, pl, "Pow %2d/ %3d/%3d", 111
607 pl->contr->orig_stats.Pow, pl->stats.Pow, 20 + pl->arch->clone.stats.Pow); 112 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 113
612 /* Can't think of anything else to print right now */ 114 /* Can't think of anything else to print right now */
613 return 0; 115 return 0;
614} 116}
615 117
616int 118int
617command_fix_me (object *op, char *params) 119command_fix_me (object *op, char *params)
618{ 120{
619 sum_weight (op); 121 op->update_weight ();
620 op->update_stats (); 122 op->update_stats ();
621 return 1; 123 new_draw_info (NDI_UNIQUE, 0, op, "Your character was fixed.");
622}
623 124
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; 125 return 1;
704} 126}
705 127
706int 128int
707command_bowmode (object *op, char *params) 129command_bowmode (object *op, char *params)
708{ 130{
709 bowtype_t oldtype = op->contr->bowtype; 131 bowtype_t oldtype = op->contr->bowtype;
710 static const char *const types[] = { "normal", "threewide", "spreadshot", "firenorth", 132 static const char *const types[] = {
133 "normal", "threewide", "spreadshot", "firenorth",
711 "firene", "fireeast", "firese", "firesouth", 134 "firene", "fireeast", "firese", "firesouth",
712 "firesw", "firewest", "firenw", "bestarrow" 135 "firesw", "firewest", "firenw", "bestarrow"
713 }; 136 };
714 char buf[MAX_BUF]; 137 char buf[MAX_BUF];
715 int i, found; 138 int i, found;
727 found++; 150 found++;
728 op->contr->bowtype = (bowtype_t) i; 151 op->contr->bowtype = (bowtype_t) i;
729 break; 152 break;
730 } 153 }
731 } 154 }
155
732 if (!found) 156 if (!found)
733 { 157 {
734 sprintf (buf, "bowmode: Unknown options %s, valid options are:", params); 158 sprintf (buf, "bowmode: Unknown options %s, valid options are:", params);
159
735 for (i = 0; i <= bow_bestarrow; i++) 160 for (i = 0; i <= bow_bestarrow; i++)
736 { 161 {
737 strcat (buf, " "); 162 strcat (buf, " ");
738 strcat (buf, types[i]); 163 strcat (buf, types[i]);
739 if (i < bow_nw) 164 if (i < bow_nw)
742 strcat (buf, "."); 167 strcat (buf, ".");
743 } 168 }
744 new_draw_info_format (NDI_UNIQUE, 0, op, buf); 169 new_draw_info_format (NDI_UNIQUE, 0, op, buf);
745 return 0; 170 return 0;
746 } 171 }
172
747 new_draw_info_format (NDI_UNIQUE, 0, op, "bowmode %s set to %s", (oldtype == op->contr->bowtype ? "" : "now"), types[op->contr->bowtype]); 173 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; 174 return 1;
749} 175}
750 176
751int 177int
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) 178command_showpets (object *op, char *params)
783{ 179{
784 objectlink *obl, *next;
785 int counter = 0, target = 0; 180 int counter = 0, target = 0;
786 int have_shown_pet = 0; 181 int have_shown_pet = 0;
787 182
183 dynbuf_text &msg = msg_dynbuf; msg.clear ();
184
788 if (params != NULL) 185 if (params)
789 target = atoi (params); 186 target = atoi (params);
187
790 for (obl = first_friendly_object; obl != NULL; obl = next) 188 for (objectlink *obl = first_friendly_object; obl; obl = obl->next)
791 { 189 {
792 object *ob = obl->ob; 190 object *ob = obl->ob;
793 191
794 next = obl->next;
795 if (ob->owner == op) 192 if (ob->owner == op)
796 { 193 {
797 if (target == 0) 194 if (target == 0)
798 { 195 {
799 if (counter == 0) 196 if (counter == 0)
800 new_draw_info (NDI_UNIQUE, 0, op, "Pets:"); 197 msg << "T<Pets>\n\n";
198
801 new_draw_info_format (NDI_UNIQUE, 0, op, "%d %s - level %d", ++counter, &ob->name, ob->level); 199 msg.printf (" %3d %s, level %d\n", ++counter, &ob->name, ob->level);
802 } 200 }
803 else if (!have_shown_pet && ++counter == target) 201 else if (!have_shown_pet && ++counter == target)
804 { 202 {
805 new_draw_info_format (NDI_UNIQUE, 0, op, "level %d %s", ob->level, &ob->name); 203 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); 204 " level %d\n"
807 /* this is not a nice way to do this, it should be made to be more like the statistics command */ 205 " %d/%d HP, %d/%d SP\n"
808 new_draw_info_format (NDI_UNIQUE, 0, op, "Str %d", ob->stats.Str); 206 " Str %2d\n"
809 new_draw_info_format (NDI_UNIQUE, 0, op, "Dex %d", ob->stats.Dex); 207 " Dex %2d\n"
810 new_draw_info_format (NDI_UNIQUE, 0, op, "Con %d", ob->stats.Con); 208 " Con %2d\n"
811 new_draw_info_format (NDI_UNIQUE, 0, op, "Int %d", ob->stats.Int); 209 " Int %2d\n"
812 new_draw_info_format (NDI_UNIQUE, 0, op, "Wis %d", ob->stats.Wis); 210 " Wis %2d\n"
813 new_draw_info_format (NDI_UNIQUE, 0, op, "Cha %d", ob->stats.Cha); 211 " Cha %2d\n"
814 new_draw_info_format (NDI_UNIQUE, 0, op, "Pow %d", ob->stats.Pow); 212 " 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); 213 " wc %d damage %d ac %d\n",
214 &ob->name,
215 &ob->name,
216 ob->stats.hp, ob->stats.maxhp, ob->stats.sp, ob->stats.maxsp,
217 ob->stats.Str,
218 ob->stats.Dex,
219 ob->stats.Con,
220 ob->stats.Int,
221 ob->stats.Wis,
222 ob->stats.Cha,
223 ob->stats.Pow,
224 ob->stats.wc, ob->stats.dam, ob->stats.ac);
225
816 have_shown_pet = 1; 226 have_shown_pet = 1;
817 } 227 }
818 } 228 }
819 } 229 }
230
820 if (counter == 0) 231 if (counter == 0)
821 new_draw_info (NDI_UNIQUE, 0, op, "you have no pets."); 232 msg << "you have no pets.";
822 else if (target != 0 && have_shown_pet == 0) 233 else if (target != 0 && have_shown_pet == 0)
823 new_draw_info (NDI_UNIQUE, 0, op, "no such pet."); 234 msg << "no such pet.";
824 return 0;
825}
826 235
827int 236 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 237
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; 238 return 0;
852} 239}
853 240
854int 241int
855command_resistances (object *op, char *params) 242command_resistances (object *op, char *params)
856{ 243{
857 int i; 244 dynbuf_text &msg = msg_dynbuf; msg.clear ();
858 245
859 if (!op) 246 msg << "Resistances:\n\n";
860 return 0;
861 247
862 for (i = 0; i < NROFATTACKS; i++) 248 for (int i = 0; i < NROFATTACKS; i++)
863 {
864 if (i == ATNR_INTERNAL) 249 if (i != ATNR_INTERNAL)
865 continue; 250 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 251
870 /* If dragon player, let's display natural resistances */ 252 /* If dragon player, let's display natural resistances */
871 if (is_dragon_pl (op)) 253 if (is_dragon_pl (op))
872 {
873 int attack;
874 object *tmp;
875
876 for (tmp = op->inv; tmp != NULL; tmp = tmp->below) 254 for (object *tmp = op->inv; tmp; tmp = tmp->below)
877 {
878 if ((tmp->type == FORCE) && (strcmp (tmp->arch->name, "dragon_skin_force") == 0)) 255 if ((tmp->type == FORCE) && tmp->arch->archname == shstr_dragon_skin_force)
879 { 256 {
880 new_draw_info (NDI_UNIQUE, 0, op, "\nNatural skin resistances:"); 257 msg << "\nOf those, these are natural skin resistances:\n\n";
258
881 for (attack = 0; attack < NROFATTACKS; attack++) 259 for (int attack = 0; attack < NROFATTACKS; attack++)
882 {
883 if (atnr_is_dragon_enabled (attack)) 260 if (atnr_is_dragon_enabled (attack))
884 { 261 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]); 262
886 }
887 }
888 break; 263 break;
889 } 264 }
890 } 265
891 } 266 op->contr->infobox (MSG_CHANNEL ("resistances"), msg);
892 267
893 return 0; 268 return 0;
894} 269}
895 270
896/* 271/*
897 * Actual commands. 272 * Actual commands.
898 * Those should be in small separate files (c_object.c, c_wiz.c, cmove.c,...) 273 * Those should be in small separate files (c_object.c, c_wiz.c, cmove.c,...)
899 */ 274 */
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;
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 {
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
996
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 275
1116int 276int
1117onoff_value (const char *line) 277onoff_value (const char *line)
1118{ 278{
1119 int i; 279 int i;
1142 return 0; 302 return 0;
1143 } 303 }
1144} 304}
1145 305
1146int 306int
1147command_quit (object *op, char *params)
1148{
1149 new_draw_info (NDI_UNIQUE, 0, op,
1150 "Quitting will delete your character PERMANENTLY. If you are sure you want to do this, then use the quit_character command instead of quit.");
1151 return 1;
1152}
1153
1154int
1155command_real_quit (object *op, char *params)
1156{
1157 send_query (op->contr->ns, CS_QUERY_SINGLECHAR, "Quitting will delete your character.\nAre you sure you want to quit (y/n):");
1158
1159 op->contr->ns->state = ST_CONFIRM_QUIT;
1160 return 1;
1161}
1162
1163/*
1164 * don't allow people to exit explore mode. It otherwise becomes
1165 * really easy to abuse this.
1166 */
1167int
1168command_explore (object *op, char *params)
1169{
1170 if (settings.explore_mode == FALSE)
1171 return 1;
1172 /*
1173 * I guess this is the best way to see if we are solo or not. Actually,
1174 * are there any cases when first_player->next==NULL and we are not solo?
1175 */
1176 if ((first_player != op->contr) || (first_player->next != NULL))
1177 {
1178 new_draw_info (NDI_UNIQUE, 0, op, "You can not enter explore mode if you are in a party");
1179 }
1180 else if (op->contr->explore)
1181 new_draw_info (NDI_UNIQUE, 0, op, "There is no return from explore mode");
1182 else
1183 {
1184 op->contr->explore = 1;
1185 new_draw_info (NDI_UNIQUE, 0, op, "You are now in explore mode");
1186 }
1187 return 1;
1188}
1189
1190int
1191command_sound (object *op, char *params)
1192{
1193 if (op->contr->ns->sound)
1194 {
1195 op->contr->ns->sound = 0;
1196 new_draw_info (NDI_UNIQUE, 0, op, "Silence is golden...");
1197 }
1198 else
1199 {
1200 op->contr->ns->sound = 1;
1201 new_draw_info (NDI_UNIQUE, 0, op, "The sounds are enabled.");
1202 }
1203
1204 return 1;
1205}
1206
1207int
1208explore_mode (void)
1209{
1210 player *pl;
1211
1212 if (settings.explore_mode == TRUE)
1213 {
1214 for (pl = first_player; pl != (player *) NULL; pl = pl->next)
1215 if (pl->explore)
1216 return 1;
1217 }
1218 return 0;
1219}
1220
1221int
1222command_title (object *op, char *params) 307command_title (object *op, char *params)
1223{ 308{
1224 char buf[MAX_BUF]; 309 char buf[MAX_BUF];
1225 310
1226 if (settings.set_title == FALSE) 311 if (settings.set_title == FALSE)
1263 strcpy (op->contr->own_title, params); 348 strcpy (op->contr->own_title, params);
1264 return 1; 349 return 1;
1265} 350}
1266 351
1267int 352int
1268command_save (object *op, char *params)
1269{
1270 if (!op->stats.exp)
1271 new_draw_info (NDI_UNIQUE, 0, op, "You don't deserve to save yet.");
1272 else
1273 {
1274 op->contr->save ();
1275 new_draw_info (NDI_UNIQUE, 0, op, "You have been saved.");
1276 }
1277
1278 return 1;
1279}
1280
1281int
1282command_peaceful (object *op, char *params)
1283{
1284 new_draw_info (NDI_UNIQUE, 0, op,
1285 "You cannot change your peaceful setting with this command."
1286 " Please speak to the priest in the temple of Gorokh"
1287 " if you want to become hostile or in temple of Valriel" " if you want to become peaceful again.");
1288
1289/*
1290 if((op->contr->peaceful=!op->contr->peaceful))
1291 new_draw_info(NDI_UNIQUE, 0,op,"You will not attack other players.");
1292 else
1293 new_draw_info(NDI_UNIQUE, 0,op,"You will attack other players.");
1294*/
1295 return 1;
1296}
1297
1298int
1299command_wimpy (object *op, char *params)
1300{
1301 int i;
1302 char buf[MAX_BUF];
1303
1304 if (params == NULL || !sscanf (params, "%d", &i))
1305 {
1306 sprintf (buf, "Your current wimpy level is %d.", op->run_away);
1307 new_draw_info (NDI_UNIQUE, 0, op, buf);
1308 return 1;
1309 }
1310 sprintf (buf, "Your new wimpy level is %d.", i);
1311 new_draw_info (NDI_UNIQUE, 0, op, buf);
1312 op->run_away = i;
1313 return 1;
1314}
1315
1316int
1317command_brace (object *op, char *params)
1318{
1319 if (!params)
1320 op->contr->braced = !op->contr->braced;
1321 else
1322 op->contr->braced = onoff_value (params);
1323
1324 if (op->contr->braced)
1325 new_draw_info (NDI_UNIQUE, 0, op, "You are braced.");
1326 else
1327 new_draw_info (NDI_UNIQUE, 0, op, "Not braced.");
1328
1329 op->update_stats ();
1330 return 0;
1331}
1332
1333int
1334command_kill_pets (object *op, char *params) 353command_kill_pets (object *op, char *params)
1335{ 354{
1336 objectlink *obl, *next; 355 objectlink *obl, *next;
1337 int counter = 0, removecount = 0; 356 int counter = 0, removecount = 0;
1338 357
1339 if (params == NULL) 358 if (!params)
1340 { 359 {
1341 terminate_all_pets (op); 360 terminate_all_pets (op);
1342 new_draw_info (NDI_UNIQUE, 0, op, "Your pets have been killed."); 361 new_draw_info (NDI_UNIQUE, 0, op, "Your pets have been killed.");
1343 } 362 }
1344 else 363 else
1345 { 364 {
1346 int target = atoi (params); 365 int target = atoi (params);
1347 366
1348 for (obl = first_friendly_object; obl != NULL; obl = next) 367 for (obl = first_friendly_object; obl; obl = next)
1349 { 368 {
1350 object *ob = obl->ob; 369 object *ob = obl->ob;
1351 370
1352 next = obl->next; 371 next = obl->next;
372
1353 if (ob->owner == op) 373 if (ob->owner == op)
1354 if (++counter == target || (target == 0 && !strcasecmp (ob->name, params))) 374 if (++counter == target || (target == 0 && !strcasecmp (ob->name, params)))
1355 { 375 {
1356 ob->destroy (); 376 ob->destroy ();
1357 removecount++; 377 removecount++;
1358 } 378 }
1359 } 379 }
380
1360 if (removecount != 0) 381 if (removecount != 0)
1361 new_draw_info_format (NDI_UNIQUE, 0, op, "killed %d pets.\n", removecount); 382 new_draw_info_format (NDI_UNIQUE, 0, op, "killed %d pets.\n", removecount);
1362 else 383 else
1363 new_draw_info (NDI_UNIQUE, 0, op, "Couldn't find any suitable pets to kill.\n"); 384 new_draw_info (NDI_UNIQUE, 0, op, "Couldn't find any suitable pets to kill.\n");
1364 } 385 }
386
1365 return 0; 387 return 0;
1366} 388}

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines