ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/server/c_misc.C
Revision: 1.14
Committed: Tue Nov 7 16:30:55 2006 UTC (17 years, 6 months ago) by root
Content type: text/plain
Branch: MAIN
Changes since 1.13: +3 -16 lines
Log Message:
re-implement dump and dumpbelow

File Contents

# User Rev Content
1 elmex 1.1 /*
2     CrossFire, A Multiplayer game for X-windows
3    
4     Copyright (C) 2002 Mark Wedel & Crossfire Development Team
5     Copyright (C) 1992 Frank Tore Johansen
6    
7     This program is free software; you can redistribute it and/or modify
8     it under the terms of the GNU General Public License as published by
9     the Free Software Foundation; either version 2 of the License, or
10     (at your option) any later version.
11    
12     This program is distributed in the hope that it will be useful,
13     but WITHOUT ANY WARRANTY; without even the implied warranty of
14     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15     GNU General Public License for more details.
16    
17     You should have received a copy of the GNU General Public License
18     along with this program; if not, write to the Free Software
19     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20    
21 root 1.8 The authors can be reached via e-mail at <crossfire@schmorp.de>
22 elmex 1.1 */
23    
24     #include <global.h>
25     #include <loader.h>
26     #ifndef __CEXTRACT__
27 root 1.7 # include <sproto.h>
28 elmex 1.1 #endif
29    
30     extern weathermap_t **weathermap;
31    
32     /* Handles misc. input request - things like hash table, malloc, maps,
33     * who, etc.
34     */
35    
36 root 1.7 void
37     map_info (object *op, char *search)
38     {
39 root 1.9 maptile *m;
40 elmex 1.1 char buf[MAX_BUF], map_path[MAX_BUF];
41 root 1.7 long sec = seconds ();
42    
43     new_draw_info_format (NDI_UNIQUE, 0, op, "Current time is: %02ld:%02ld:%02ld.", (sec % 86400) / 3600, (sec % 3600) / 60, sec % 60);
44     new_draw_info (NDI_UNIQUE, 0, op, "Path Pl PlM IM TO Dif Reset");
45     for (m = first_map; m != NULL; m = m->next)
46     {
47    
48     if (search && strstr (m->path, search) == NULL)
49     continue; /* Skip unwanted maps */
50     /* Print out the last 18 characters of the map name... */
51     if (strlen (m->path) <= 18)
52     strcpy (map_path, m->path);
53     else
54     strcpy (map_path, m->path + strlen (m->path) - 18);
55     sprintf (buf, "%-18.18s %2d %2d %1d %4d %2d %02d:%02d:%02d",
56     map_path, m->players, players_on_map (m, FALSE),
57     m->in_memory, m->timeout, m->difficulty,
58     (MAP_WHEN_RESET (m) % 86400) / 3600, (MAP_WHEN_RESET (m) % 3600) / 60, MAP_WHEN_RESET (m) % 60);
59     new_draw_info (NDI_UNIQUE, 0, op, buf);
60     }
61 elmex 1.1 }
62    
63     /* This command dumps the body information for object *op.
64     * it doesn't care what the params are.
65     * This is mostly meant as a debug command.
66     */
67 root 1.7 int
68     command_body (object *op, char *params)
69 elmex 1.1 {
70 root 1.7 int i;
71 elmex 1.1
72 root 1.7 /* Too hard to try and make a header that lines everything up, so just
73     * give a description.
74     */
75     new_draw_info (NDI_UNIQUE, 0, op, "The first column is the name of the body location.");
76     new_draw_info (NDI_UNIQUE, 0, op, "The second column is how many of those locations your body has.");
77     new_draw_info (NDI_UNIQUE, 0, op, "The third column is how many slots in that location are available.");
78     for (i = 0; i < NUM_BODY_LOCATIONS; i++)
79     {
80     /* really debugging - normally body_used should not be set to anything
81     * if body_info isn't also set.
82     */
83     if (op->body_info[i] || op->body_used[i])
84     {
85     new_draw_info_format (NDI_UNIQUE, 0, op, "%-30s %5d %5d", body_locations[i].use_name, op->body_info[i], op->body_used[i]);
86 root 1.3 }
87 elmex 1.1 }
88 root 1.7 if (!QUERY_FLAG (op, FLAG_USE_ARMOUR))
89     new_draw_info (NDI_UNIQUE, 0, op, "You are not allowed to wear armor");
90     if (!QUERY_FLAG (op, FLAG_USE_WEAPON))
91     new_draw_info (NDI_UNIQUE, 0, op, "You are not allowed to use weapons");
92 elmex 1.1
93 root 1.7 return 1;
94 elmex 1.1 }
95    
96    
97 root 1.7 int
98     command_motd (object *op, char *params)
99 elmex 1.1 {
100 root 1.7 display_motd (op);
101     return 1;
102 elmex 1.1 }
103    
104 root 1.7 int
105     command_bug (object *op, char *params)
106 elmex 1.1 {
107 root 1.7 char buf[MAX_BUF];
108 elmex 1.1
109 root 1.7 if (params == NULL)
110     {
111     new_draw_info (NDI_UNIQUE, 0, op, "what bugs?");
112 elmex 1.1 return 1;
113     }
114 root 1.7 strcpy (buf, op->name);
115     strcat (buf, " bug-reports: ");
116     strncat (buf, ++params, MAX_BUF - strlen (buf));
117     buf[MAX_BUF - 1] = '\0';
118     bug_report (buf);
119     LOG (llevError, "%s\n", buf);
120     new_draw_info (NDI_ALL | NDI_UNIQUE, 1, NULL, buf);
121     new_draw_info (NDI_UNIQUE, 0, op, "OK, thanks!");
122     return 1;
123 elmex 1.1 }
124    
125     /*
126     * Pretty much identical to current map_info, but on a bigger scale
127     * This function returns the name of the players current region, and
128     * a description of it. It is there merely for flavour text.
129     */
130 root 1.7 void
131     current_region_info (object *op)
132     {
133     /*
134     * Ok I /suppose/ I should write a seperate function for this, but it isn't
135     * going to be /that/ slow, and won't get called much
136     */
137     region *r = get_region_by_name (get_name_of_region_for_map (op->map));
138 elmex 1.1
139 root 1.7 if (!r)
140     return;
141     /* This should only be possible if regions are not operating on this server. */
142 elmex 1.1
143 root 1.7 new_draw_info_format (NDI_UNIQUE, 0, op, "You are in %s. \n %s", get_region_longname (r), get_region_msg (r));
144 elmex 1.1 }
145    
146 root 1.7 void
147     current_map_info (object *op)
148     {
149 root 1.9 maptile *m = op->map;
150 elmex 1.1
151 root 1.7 if (!m)
152     return;
153 elmex 1.1
154 root 1.7 new_draw_info_format (NDI_UNIQUE, 0, op, "%s (%s) in %s", m->name, m->path, get_name_of_region_for_map (m));
155 elmex 1.1
156 root 1.7 if (QUERY_FLAG (op, FLAG_WIZ))
157     {
158     new_draw_info_format (NDI_UNIQUE, 0, op,
159     "players:%d difficulty:%d size:%dx%d start:%dx%d timeout %ld",
160     m->players, m->difficulty, MAP_WIDTH (m), MAP_HEIGHT (m), MAP_ENTER_X (m), MAP_ENTER_Y (m), MAP_TIMEOUT (m));
161 elmex 1.1
162     }
163 root 1.7 if (m->msg)
164     new_draw_info (NDI_UNIQUE, NDI_NAVY, op, m->msg);
165 elmex 1.1 }
166    
167     #ifdef DEBUG_MALLOC_LEVEL
168 root 1.7 int
169     command_malloc_verify (object *op, char *parms)
170 elmex 1.1 {
171 root 1.7 extern int malloc_verify (void);
172 elmex 1.1
173 root 1.7 if (!malloc_verify ())
174     new_draw_info (NDI_UNIQUE, 0, op, "Heap is corrupted.");
175     else
176     new_draw_info (NDI_UNIQUE, 0, op, "Heap checks out OK.");
177     return 1;
178     }
179 elmex 1.1 #endif
180    
181 root 1.7 int
182     command_whereabouts (object *op, char *params)
183     {
184    
185     region *reg;
186     player *pl;
187 elmex 1.1
188 root 1.7 /*
189     * reset the counter on the region, then use it to store the number of
190     * players there.
191     * I don't know how thread-safe this would be, I suspect not very....
192     */
193     for (reg = first_region; reg != NULL; reg = reg->next)
194     {
195     reg->counter = 0;
196     }
197     for (pl = first_player; pl != NULL; pl = pl->next)
198     if (pl->ob->map != NULL)
199     get_region_by_map (pl->ob->map)->counter++;
200    
201     /* we only want to print out by places with a 'longname' field... */
202     for (reg = first_region; reg != NULL; reg = reg->next)
203     {
204     if (reg->longname == NULL && reg->counter > 0)
205     {
206     if (reg->parent != NULL)
207     {
208     reg->parent->counter += reg->counter;
209     reg->counter = 0;
210 root 1.3 }
211 root 1.7 else /*uh oh, we shouldn't be here. */
212     LOG (llevError, "command_whereabouts() Region %s with no longname has no parent", reg->name);
213 root 1.3 }
214     }
215 root 1.7 new_draw_info_format (NDI_UNIQUE, 0, op, "In the world currently there are:");
216     for (reg = first_region; reg != NULL; reg = reg->next)
217     if (reg->counter > 0)
218     new_draw_info_format (NDI_UNIQUE, 0, op, "%u players in %s", reg->counter, get_region_longname (reg));
219     return 1;
220 elmex 1.1 }
221    
222     typedef struct
223 root 1.7 {
224     char namebuf[MAX_BUF];
225     int login_order;
226     } chars_names;
227 elmex 1.1
228     /*local functon for qsort comparison*/
229 root 1.7 static int
230     name_cmp (const chars_names * c1, const chars_names * c2)
231     {
232     return strcasecmp (c1->namebuf, c2->namebuf);
233     }
234    
235     int
236     command_afk (object *op, char *params)
237     {
238     if QUERY_FLAG
239     (op, FLAG_AFK)
240     {
241     CLEAR_FLAG (op, FLAG_AFK);
242     new_draw_info (NDI_UNIQUE, 0, op, "You are no longer AFK");
243     }
244     else
245 elmex 1.1 {
246 root 1.7 SET_FLAG (op, FLAG_AFK);
247     new_draw_info (NDI_UNIQUE, 0, op, "You are now AFK");
248 elmex 1.1 }
249 root 1.7 return 1;
250 elmex 1.1 }
251    
252 root 1.7 int
253     command_mapinfo (object *op, char *params)
254 elmex 1.1 {
255 root 1.7 current_map_info (op);
256     return 1;
257     }
258 elmex 1.1
259 root 1.7 int
260     command_whereami (object *op, char *params)
261 elmex 1.1 {
262 root 1.7 current_region_info (op);
263     return 1;
264 elmex 1.1 }
265    
266 root 1.7 int
267     command_maps (object *op, char *params)
268 elmex 1.1 {
269 root 1.7 map_info (op, params);
270     return 1;
271     }
272 elmex 1.1
273 root 1.7 int
274     command_time (object *op, char *params)
275 elmex 1.1 {
276 root 1.2 print_tod (op);
277     return 1;
278     }
279 elmex 1.1
280 root 1.7 int
281     command_weather (object *op, char *params)
282 elmex 1.1 {
283 root 1.7 int wx, wy, temp, sky;
284     char buf[MAX_BUF];
285    
286     if (settings.dynamiclevel < 1)
287     return 1;
288    
289     if (op->map == NULL)
290     return 1;
291    
292     if (worldmap_to_weathermap (op->x, op->y, &wx, &wy, op->map) != 0)
293     return 1;
294    
295     if (QUERY_FLAG (op, FLAG_WIZ))
296     {
297     /* dump the weather, Dm style! Yo! */
298     new_draw_info_format (NDI_UNIQUE, 0, op, "Real temp: %d", real_world_temperature (op->x, op->y, op->map));
299     new_draw_info_format (NDI_UNIQUE, 0, op, "Base temp: %d", weathermap[wx][wy].temp);
300     new_draw_info_format (NDI_UNIQUE, 0, op, "Humid: %d", weathermap[wx][wy].humid);
301     new_draw_info_format (NDI_UNIQUE, 0, op, "Wind: dir=%d speed=%d", weathermap[wx][wy].winddir, weathermap[wx][wy].windspeed);
302     new_draw_info_format (NDI_UNIQUE, 0, op, "Pressure: %d", weathermap[wx][wy].pressure);
303     new_draw_info_format (NDI_UNIQUE, 0, op, "Avg Elevation: %d", weathermap[wx][wy].avgelev);
304     new_draw_info_format (NDI_UNIQUE, 0, op, "Rainfall: %d Water: %d", weathermap[wx][wy].rainfall, weathermap[wx][wy].water);
305     }
306    
307     temp = real_world_temperature (op->x, op->y, op->map);
308     new_draw_info_format (NDI_UNIQUE, 0, op, "It's currently %d degrees " "Centigrade out.", temp);
309    
310     /* humid */
311     if (weathermap[wx][wy].humid < 20)
312     new_draw_info (NDI_UNIQUE, 0, op, "It is very dry.");
313     else if (weathermap[wx][wy].humid < 40)
314     new_draw_info (NDI_UNIQUE, 0, op, "It is very comfortable today.");
315     else if (weathermap[wx][wy].humid < 60)
316     new_draw_info (NDI_UNIQUE, 0, op, "It is a bit muggy.");
317     else if (weathermap[wx][wy].humid < 80)
318     new_draw_info (NDI_UNIQUE, 0, op, "It is muggy.");
319     else
320     new_draw_info (NDI_UNIQUE, 0, op, "It is uncomfortably muggy.");
321 elmex 1.1
322 root 1.7 /* wind */
323     switch (weathermap[wx][wy].winddir)
324     {
325     case 1:
326     sprintf (buf, "north");
327     break;
328     case 2:
329     sprintf (buf, "northeast");
330     break;
331     case 3:
332     sprintf (buf, "east");
333     break;
334     case 4:
335     sprintf (buf, "southeast");
336     break;
337     case 5:
338     sprintf (buf, "south");
339     break;
340     case 6:
341     sprintf (buf, "southwest");
342     break;
343     case 7:
344     sprintf (buf, "west");
345     break;
346     case 8:
347     sprintf (buf, "northwest");
348     break;
349     }
350     if (weathermap[wx][wy].windspeed < 5)
351     new_draw_info_format (NDI_UNIQUE, 0, op, "There is a mild breeze " "coming from the %s.", buf);
352     else if (weathermap[wx][wy].windspeed < 10)
353     new_draw_info_format (NDI_UNIQUE, 0, op, "There is a strong breeze " "coming from the %s.", buf);
354     else if (weathermap[wx][wy].windspeed < 15)
355     new_draw_info_format (NDI_UNIQUE, 0, op, "There is a light wind " "coming from the %s.", buf);
356     else if (weathermap[wx][wy].windspeed < 25)
357     new_draw_info_format (NDI_UNIQUE, 0, op, "There is a strong wind " "coming from the %s.", buf);
358     else if (weathermap[wx][wy].windspeed < 35)
359     new_draw_info_format (NDI_UNIQUE, 0, op, "There is a heavy wind " "coming from the %s.", buf);
360     else
361     new_draw_info_format (NDI_UNIQUE, 0, op, "The wind from the %s is " "incredibly strong!", buf);
362 elmex 1.1
363 root 1.7 sky = weathermap[wx][wy].sky;
364     if (temp <= 0 && sky > SKY_OVERCAST && sky < SKY_FOG)
365     sky += 10; /*let it snow */
366     switch (sky)
367     {
368     case SKY_CLEAR:
369     new_draw_info (NDI_UNIQUE, 0, op, "There isn''t a cloud in the sky.");
370     break;
371     case SKY_LIGHTCLOUD:
372     new_draw_info (NDI_UNIQUE, 0, op, "There are a few light clouds in the sky.");
373     break;
374     case SKY_OVERCAST:
375     new_draw_info (NDI_UNIQUE, 0, op, "The sky is cloudy and dreary.");
376     break;
377     case SKY_LIGHT_RAIN:
378     new_draw_info (NDI_UNIQUE, 0, op, "It is raining softly.");
379     break;
380     case SKY_RAIN:
381     new_draw_info (NDI_UNIQUE, 0, op, "It is raining.");
382     break;
383     case SKY_HEAVY_RAIN:
384     new_draw_info (NDI_UNIQUE, 0, op, "It is raining heavily.");
385     break;
386     case SKY_HURRICANE:
387     new_draw_info (NDI_UNIQUE, 0, op, "There is a heavy storm! You should go inside!");
388     break;
389     case SKY_FOG:
390     new_draw_info (NDI_UNIQUE, 0, op, "It''s foggy and miserable.");
391     break;
392     case SKY_HAIL:
393     new_draw_info (NDI_UNIQUE, 0, op, "It''s hailing out! Take cover!");
394     break;
395     case SKY_LIGHT_SNOW:
396     new_draw_info (NDI_UNIQUE, 0, op, "Snow is gently falling from the sky.");
397     break;
398     case SKY_SNOW:
399     new_draw_info (NDI_UNIQUE, 0, op, "It''s snowing out.");
400     break;
401     case SKY_HEAVY_SNOW:
402     new_draw_info (NDI_UNIQUE, 0, op, "The snow is falling very heavily now.");
403     break;
404     case SKY_BLIZZARD:
405     new_draw_info (NDI_UNIQUE, 0, op, "A full blown blizzard is in effect. You might want to take cover!");
406     break;
407 elmex 1.1 }
408 root 1.7 return 1;
409 elmex 1.1 }
410    
411 root 1.7 int
412     command_archs (object *op, char *params)
413 elmex 1.1 {
414 root 1.7 arch_info (op);
415     return 1;
416     }
417 elmex 1.1
418 root 1.7 int
419     command_hiscore (object *op, char *params)
420 elmex 1.1 {
421 root 1.7 display_high_score (op, op == NULL ? 9999 : 50, params);
422     return 1;
423     }
424 elmex 1.1
425 root 1.7 int
426     command_debug (object *op, char *params)
427 elmex 1.1 {
428 root 1.7 int i;
429     char buf[MAX_BUF];
430    
431     if (params == NULL || !sscanf (params, "%d", &i))
432     {
433     sprintf (buf, "Global debug level is %d.", settings.debug);
434     new_draw_info (NDI_UNIQUE, 0, op, buf);
435 elmex 1.1 return 1;
436     }
437 root 1.7 if (op != NULL && !QUERY_FLAG (op, FLAG_WIZ))
438     {
439     new_draw_info (NDI_UNIQUE, 0, op, "Privileged command.");
440 elmex 1.1 return 1;
441     }
442 root 1.7 settings.debug = (enum LogLevel) FABS (i);
443     sprintf (buf, "Set debug level to %d.", i);
444     new_draw_info (NDI_UNIQUE, 0, op, buf);
445     return 1;
446     }
447 elmex 1.1
448    
449     /*
450     * Those dumps should be just one dump with good parser
451     */
452    
453 root 1.7 int
454     command_dumpbelow (object *op, char *params)
455 elmex 1.1 {
456 root 1.7 if (op && op->below)
457     {
458 root 1.14 char *dump = dump_object (op->below);
459     new_draw_info (NDI_UNIQUE, 0, op, dump);
460     free (dump);
461 elmex 1.1 /* Let's push that item on the dm's stack */
462 root 1.7 dm_stack_push (op->contr, op->below->count);
463     }
464 elmex 1.1 return 0;
465     }
466    
467 root 1.7 int
468     command_dumpfriendlyobjects (object *op, char *params)
469 elmex 1.1 {
470 root 1.7 dump_friendly_objects ();
471 elmex 1.1 return 0;
472     }
473    
474 root 1.7 int
475     command_dumpmap (object *op, char *params)
476 elmex 1.1 {
477 root 1.7 if (op)
478     dump_map (op->map);
479 elmex 1.1 return 0;
480     }
481    
482 root 1.7 int
483     command_dumpallmaps (object *op, char *params)
484 elmex 1.1 {
485 root 1.7 dump_all_maps ();
486 elmex 1.1 return 0;
487     }
488    
489 root 1.7 int
490     command_printlos (object *op, char *params)
491 elmex 1.1 {
492     if (op)
493 root 1.7 print_los (op);
494 elmex 1.1 return 0;
495     }
496    
497    
498 root 1.7 int
499     command_version (object *op, char *params)
500 elmex 1.1 {
501 root 1.7 version (op);
502     return 0;
503 elmex 1.1 }
504    
505    
506     #ifndef BUG_LOG
507 root 1.7 # define BUG_LOG "bug_log"
508 elmex 1.1 #endif
509 root 1.7 void
510     bug_report (const char *reportstring)
511     {
512     FILE *fp;
513    
514     if ((fp = fopen (BUG_LOG, "a")) != NULL)
515     {
516     fprintf (fp, "%s\n", reportstring);
517     fclose (fp);
518     }
519     else
520     {
521     LOG (llevError, "Cannot write bugs file %s: %s\n", BUG_LOG, strerror (errno));
522 elmex 1.1 }
523 root 1.7 }
524    
525     int
526     command_output_sync (object *op, char *params)
527     {
528     int val;
529    
530     if (!params)
531     {
532     new_draw_info_format (NDI_UNIQUE, 0, op, "Output sync time is presently %d", op->contr->outputs_sync);
533     return 1;
534     }
535     val = atoi (params);
536     if (val > 0)
537     {
538     op->contr->outputs_sync = val;
539     new_draw_info_format (NDI_UNIQUE, 0, op, "Output sync time now set to %d", op->contr->outputs_sync);
540     }
541     else
542     new_draw_info (NDI_UNIQUE, 0, op, "Invalid value for output_sync.");
543 elmex 1.1
544 root 1.7 return 1;
545 elmex 1.1 }
546    
547 root 1.7 int
548     command_output_count (object *op, char *params)
549 elmex 1.1 {
550 root 1.7 int val;
551 elmex 1.1
552 root 1.7 if (!params)
553     {
554     new_draw_info_format (NDI_UNIQUE, 0, op, "Output count is presently %d", op->contr->outputs_count);
555     return 1;
556 elmex 1.1 }
557 root 1.7 val = atoi (params);
558     if (val > 0)
559     {
560     op->contr->outputs_count = val;
561     new_draw_info_format (NDI_UNIQUE, 0, op, "Output count now set to %d", op->contr->outputs_count);
562     }
563     else
564     new_draw_info (NDI_UNIQUE, 0, op, "Invalid value for output_count.");
565 elmex 1.1
566 root 1.7 return 1;
567 elmex 1.1 }
568    
569 root 1.7 int
570     command_listen (object *op, char *params)
571 elmex 1.1 {
572     int i;
573    
574 root 1.7 if (params == NULL || !sscanf (params, "%d", &i))
575     {
576     new_draw_info_format (NDI_UNIQUE, 0, op, "Set listen to what (presently %d)?", op->contr->listening);
577 elmex 1.1 return 1;
578     }
579 root 1.7 op->contr->listening = (char) i;
580     new_draw_info_format (NDI_UNIQUE, 0, op, "Your verbose level is now %d.", i);
581     return 1;
582 elmex 1.1 }
583    
584     /* Prints out some useful information for the character. Everything we print
585     * out can be determined by the docs, so we aren't revealing anything extra -
586     * rather, we are making it convenient to find the values. params have
587     * no meaning here.
588     */
589 root 1.7 int
590     command_statistics (object *pl, char *params)
591 elmex 1.1 {
592 root 1.7 if (!pl->contr)
593     return 1;
594 elmex 1.1 #ifndef WIN32
595 root 1.7 new_draw_info_format (NDI_UNIQUE, 0, pl, " Experience: %lld", pl->stats.exp);
596     new_draw_info_format (NDI_UNIQUE, 0, pl, " Next Level: %lld", level_exp (pl->level + 1, pl->expmul));
597 elmex 1.1 #else
598 root 1.7 new_draw_info_format (NDI_UNIQUE, 0, pl, " Experience: %I64d", pl->stats.exp);
599     new_draw_info_format (NDI_UNIQUE, 0, pl, " Next Level: %I64d", level_exp (pl->level + 1, pl->expmul));
600 elmex 1.1 #endif
601 root 1.7 new_draw_info (NDI_UNIQUE, 0, pl, "\nStat Nat/Real/Max");
602 elmex 1.1
603 root 1.7 new_draw_info_format (NDI_UNIQUE, 0, pl, "Str %2d/ %3d/%3d",
604     pl->contr->orig_stats.Str, pl->stats.Str, 20 + pl->arch->clone.stats.Str);
605     new_draw_info_format (NDI_UNIQUE, 0, pl, "Dex %2d/ %3d/%3d",
606     pl->contr->orig_stats.Dex, pl->stats.Dex, 20 + pl->arch->clone.stats.Dex);
607     new_draw_info_format (NDI_UNIQUE, 0, pl, "Con %2d/ %3d/%3d",
608     pl->contr->orig_stats.Con, pl->stats.Con, 20 + pl->arch->clone.stats.Con);
609     new_draw_info_format (NDI_UNIQUE, 0, pl, "Int %2d/ %3d/%3d",
610     pl->contr->orig_stats.Int, pl->stats.Int, 20 + pl->arch->clone.stats.Int);
611     new_draw_info_format (NDI_UNIQUE, 0, pl, "Wis %2d/ %3d/%3d",
612     pl->contr->orig_stats.Wis, pl->stats.Wis, 20 + pl->arch->clone.stats.Wis);
613     new_draw_info_format (NDI_UNIQUE, 0, pl, "Pow %2d/ %3d/%3d",
614     pl->contr->orig_stats.Pow, pl->stats.Pow, 20 + pl->arch->clone.stats.Pow);
615     new_draw_info_format (NDI_UNIQUE, 0, pl, "Cha %2d/ %3d/%3d",
616     pl->contr->orig_stats.Cha, pl->stats.Cha, 20 + pl->arch->clone.stats.Cha);
617     new_draw_info_format (NDI_UNIQUE, 0, pl, "\nAttack Mode: %s", pl->contr->peaceful ? "Peaceful" : "Hostile");
618 elmex 1.1
619 root 1.7 /* Can't think of anything else to print right now */
620     return 0;
621 elmex 1.1 }
622    
623 root 1.7 int
624     command_fix_me (object *op, char *params)
625 elmex 1.1 {
626 root 1.7 sum_weight (op);
627     fix_player (op);
628     return 1;
629 elmex 1.1 }
630    
631 root 1.7 int
632     command_players (object *op, char *paramss)
633 elmex 1.1 {
634 root 1.7 char buf[MAX_BUF];
635     char *t;
636     DIR *Dir;
637    
638     sprintf (buf, "%s/%s/", settings.localdir, settings.playerdir);
639     t = buf + strlen (buf);
640     if ((Dir = opendir (buf)) != NULL)
641     {
642     const struct dirent *Entry;
643    
644     while ((Entry = readdir (Dir)) != NULL)
645     {
646     /* skip '.' , '..' */
647     if (!((Entry->d_name[0] == '.' && Entry->d_name[1] == '\0') ||
648     (Entry->d_name[0] == '.' && Entry->d_name[1] == '.' && Entry->d_name[2] == '\0')))
649 root 1.3 {
650 root 1.7 struct stat Stat;
651 elmex 1.1
652 root 1.7 strcpy (t, Entry->d_name);
653     if (stat (buf, &Stat) == 0)
654     {
655     /* This was not posix compatible
656     * if ((Stat.st_mode & S_IFMT)==S_IFDIR) {
657     */
658     if (S_ISDIR (Stat.st_mode))
659     {
660     char buf2[MAX_BUF];
661     struct tm *tm = localtime (&Stat.st_mtime);
662    
663     sprintf (buf2, "%s\t%04d %02d %02d %02d %02d %02d",
664     Entry->d_name, 1900 + tm->tm_year, 1 + tm->tm_mon, tm->tm_mday, tm->tm_hour, tm->tm_min, tm->tm_sec);
665     new_draw_info (NDI_UNIQUE, 0, op, buf2);
666 root 1.3 }
667     }
668     }
669     }
670 elmex 1.1 }
671 root 1.7 closedir (Dir);
672     return 0;
673 elmex 1.1 }
674    
675    
676    
677 root 1.7 int
678     command_logs (object *op, char *params)
679 elmex 1.1 {
680 root 1.10 new_draw_info (NDI_UNIQUE, 0, op, "Nobody is currently logging kills.");
681 elmex 1.1
682 root 1.7 return 1;
683 elmex 1.1 }
684    
685 root 1.7 int
686     command_applymode (object *op, char *params)
687 elmex 1.1 {
688 root 1.7 unapplymode unapply = op->contr->unapply;
689     static const char *const types[] = { "nochoice", "never", "always" };
690 elmex 1.1
691 root 1.7 if (!params)
692     {
693     new_draw_info_format (NDI_UNIQUE, 0, op, "applymode is set to %s", types[op->contr->unapply]);
694     return 1;
695     }
696    
697     if (!strcmp (params, "nochoice"))
698     op->contr->unapply = unapply_nochoice;
699     else if (!strcmp (params, "never"))
700     op->contr->unapply = unapply_never;
701     else if (!strcmp (params, "always"))
702     op->contr->unapply = unapply_always;
703     else
704     {
705     new_draw_info_format (NDI_UNIQUE, 0, op, "applymode: Unknown options %s, valid options are nochoice, never, always", params);
706     return 0;
707     }
708     new_draw_info_format (NDI_UNIQUE, 0, op, "Applymode %s set to %s",
709     (unapply == op->contr->unapply ? "" : " now"), types[op->contr->unapply]);
710     return 1;
711 elmex 1.1 }
712    
713 root 1.7 int
714     command_bowmode (object *op, char *params)
715 elmex 1.1 {
716 root 1.7 bowtype_t oldtype = op->contr->bowtype;
717     static const char *const types[] = { "normal", "threewide", "spreadshot", "firenorth",
718     "firene", "fireeast", "firese", "firesouth",
719     "firesw", "firewest", "firenw", "bestarrow"
720     };
721     char buf[MAX_BUF];
722     int i, found;
723    
724     if (!params)
725     {
726     new_draw_info_format (NDI_UNIQUE, 0, op, "bowmode is set to %s", types[op->contr->bowtype]);
727     return 1;
728     }
729    
730     for (i = 0, found = 0; i <= bow_bestarrow; i++)
731     {
732     if (!strcmp (params, types[i]))
733     {
734     found++;
735     op->contr->bowtype = (bowtype_t) i;
736     break;
737 root 1.3 }
738 elmex 1.1 }
739 root 1.7 if (!found)
740     {
741     sprintf (buf, "bowmode: Unknown options %s, valid options are:", params);
742     for (i = 0; i <= bow_bestarrow; i++)
743     {
744     strcat (buf, " ");
745     strcat (buf, types[i]);
746     if (i < bow_nw)
747     strcat (buf, ",");
748     else
749     strcat (buf, ".");
750 root 1.3 }
751 root 1.7 new_draw_info_format (NDI_UNIQUE, 0, op, buf);
752     return 0;
753 elmex 1.1 }
754 root 1.7 new_draw_info_format (NDI_UNIQUE, 0, op, "bowmode %s set to %s", (oldtype == op->contr->bowtype ? "" : "now"), types[op->contr->bowtype]);
755     return 1;
756 elmex 1.1 }
757    
758 root 1.7 int
759     command_petmode (object *op, char *params)
760 elmex 1.1 {
761 root 1.7 petmode_t oldtype = op->contr->petmode;
762     static const char *const types[] = { "normal", "sad", "defend", "arena" };
763 elmex 1.1
764 root 1.7 if (!params)
765     {
766     new_draw_info_format (NDI_UNIQUE, 0, op, "petmode is set to %s", types[op->contr->petmode]);
767     return 1;
768     }
769    
770     if (!strcmp (params, "normal"))
771     op->contr->petmode = pet_normal;
772     else if (!strcmp (params, "sad"))
773     op->contr->petmode = pet_sad;
774     else if (!strcmp (params, "defend"))
775     op->contr->petmode = pet_defend;
776     else if (!strcmp (params, "arena"))
777     op->contr->petmode = pet_arena;
778     else
779     {
780     new_draw_info_format (NDI_UNIQUE, 0, op,
781     "petmode: Unknown options %s, valid options are normal," "sad (seek and destroy), defend, arena", params);
782     return 0;
783     }
784     new_draw_info_format (NDI_UNIQUE, 0, op, "petmode %s set to %s", (oldtype == op->contr->petmode ? "" : "now"), types[op->contr->petmode]);
785     return 1;
786 elmex 1.1 }
787    
788 root 1.7 int
789     command_showpets (object *op, char *params)
790 elmex 1.1 {
791 root 1.7 objectlink *obl, *next;
792     int counter = 0, target = 0;
793     int have_shown_pet = 0;
794    
795     if (params != NULL)
796     target = atoi (params);
797     for (obl = first_friendly_object; obl != NULL; obl = next)
798     {
799     object *ob = obl->ob;
800    
801     next = obl->next;
802     if (get_owner (ob) == op)
803     {
804     if (target == 0)
805     {
806     if (counter == 0)
807     new_draw_info (NDI_UNIQUE, 0, op, "Pets:");
808     new_draw_info_format (NDI_UNIQUE, 0, op, "%d %s - level %d", ++counter, &ob->name, ob->level);
809     }
810     else if (!have_shown_pet && ++counter == target)
811     {
812     new_draw_info_format (NDI_UNIQUE, 0, op, "level %d %s", ob->level, &ob->name);
813     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);
814     /* this is not a nice way to do this, it should be made to be more like the statistics command */
815     new_draw_info_format (NDI_UNIQUE, 0, op, "Str %d", ob->stats.Str);
816     new_draw_info_format (NDI_UNIQUE, 0, op, "Dex %d", ob->stats.Dex);
817     new_draw_info_format (NDI_UNIQUE, 0, op, "Con %d", ob->stats.Con);
818     new_draw_info_format (NDI_UNIQUE, 0, op, "Int %d", ob->stats.Int);
819     new_draw_info_format (NDI_UNIQUE, 0, op, "Wis %d", ob->stats.Wis);
820     new_draw_info_format (NDI_UNIQUE, 0, op, "Cha %d", ob->stats.Cha);
821     new_draw_info_format (NDI_UNIQUE, 0, op, "Pow %d", ob->stats.Pow);
822     new_draw_info_format (NDI_UNIQUE, 0, op, "wc %d damage %d ac %d ", ob->stats.wc, ob->stats.dam, ob->stats.ac);
823     have_shown_pet = 1;
824 root 1.3 }
825     }
826 elmex 1.1 }
827 root 1.7 if (counter == 0)
828     new_draw_info (NDI_UNIQUE, 0, op, "you have no pets.");
829     else if (target != 0 && have_shown_pet == 0)
830     new_draw_info (NDI_UNIQUE, 0, op, "no such pet.");
831     return 0;
832 elmex 1.1 }
833    
834 root 1.7 int
835     command_usekeys (object *op, char *params)
836 elmex 1.1 {
837 root 1.7 usekeytype oldtype = op->contr->usekeys;
838     static const char *const types[] = { "inventory", "keyrings", "containers" };
839 elmex 1.1
840 root 1.7 if (!params)
841     {
842     new_draw_info_format (NDI_UNIQUE, 0, op, "usekeys is set to %s", types[op->contr->usekeys]);
843     return 1;
844     }
845    
846     if (!strcmp (params, "inventory"))
847     op->contr->usekeys = key_inventory;
848     else if (!strcmp (params, "keyrings"))
849     op->contr->usekeys = keyrings;
850     else if (!strcmp (params, "containers"))
851     op->contr->usekeys = containers;
852     else
853     {
854     new_draw_info_format (NDI_UNIQUE, 0, op, "usekeys: Unknown options %s, valid options are inventory, keyrings, containers", params);
855     return 0;
856     }
857     new_draw_info_format (NDI_UNIQUE, 0, op, "usekeys %s set to %s", (oldtype == op->contr->usekeys ? "" : "now"), types[op->contr->usekeys]);
858     return 1;
859 elmex 1.1 }
860    
861 root 1.7 int
862     command_resistances (object *op, char *params)
863 elmex 1.1 {
864 root 1.7 int i;
865 elmex 1.1
866 root 1.7 if (!op)
867     return 0;
868    
869     for (i = 0; i < NROFATTACKS; i++)
870     {
871     if (i == ATNR_INTERNAL)
872     continue;
873 elmex 1.1
874 root 1.7 new_draw_info_format (NDI_UNIQUE, 0, op, "%-20s %+5d", attacktype_desc[i], op->resist[i]);
875 elmex 1.1 }
876    
877 root 1.7 /* If dragon player, let's display natural resistances */
878     if (is_dragon_pl (op))
879     {
880     int attack;
881     object *tmp;
882    
883     for (tmp = op->inv; tmp != NULL; tmp = tmp->below)
884 elmex 1.1 {
885 root 1.7 if ((tmp->type == FORCE) && (strcmp (tmp->arch->name, "dragon_skin_force") == 0))
886 elmex 1.1 {
887 root 1.7 new_draw_info (NDI_UNIQUE, 0, op, "\nNatural skin resistances:");
888     for (attack = 0; attack < NROFATTACKS; attack++)
889 elmex 1.1 {
890 root 1.7 if (atnr_is_dragon_enabled (attack))
891 elmex 1.1 {
892 root 1.7 new_draw_info_format (NDI_UNIQUE, 0, op, "%s: %d", change_resist_msg[attack], tmp->resist[attack]);
893 elmex 1.1 }
894     }
895 root 1.7 break;
896 elmex 1.1 }
897     }
898 root 1.7 }
899 elmex 1.1
900 root 1.7 return 0;
901 elmex 1.1 }
902 root 1.7
903 elmex 1.1 /*
904     * Actual commands.
905     * Those should be in small separate files (c_object.c, c_wiz.c, cmove.c,...)
906     */
907    
908    
909 root 1.7 static void
910     help_topics (object *op, int what)
911 elmex 1.1 {
912 root 1.7 DIR *dirp;
913     struct dirent *de;
914     char filename[MAX_BUF], line[80];
915     int namelen, linelen = 0;
916    
917     switch (what)
918     {
919 root 1.3 case 1:
920 root 1.7 sprintf (filename, "%s/wizhelp", settings.datadir);
921     new_draw_info (NDI_UNIQUE, 0, op, " Wiz commands:");
922     break;
923 root 1.3 case 3:
924 root 1.7 sprintf (filename, "%s/mischelp", settings.datadir);
925     new_draw_info (NDI_UNIQUE, 0, op, " Misc help:");
926     break;
927 root 1.3 default:
928 root 1.7 sprintf (filename, "%s/help", settings.datadir);
929     new_draw_info (NDI_UNIQUE, 0, op, " Commands:");
930     break;
931     }
932     if (!(dirp = opendir (filename)))
933     return;
934    
935     line[0] = '\0';
936     for (de = readdir (dirp); de; de = readdir (dirp))
937     {
938     namelen = NAMLEN (de);
939     if (namelen <= 2 && *de->d_name == '.' && (namelen == 1 || de->d_name[1] == '.'))
940     continue;
941     linelen += namelen + 1;
942     if (linelen > 42)
943     {
944     new_draw_info (NDI_UNIQUE, 0, op, line);
945     sprintf (line, " %s", de->d_name);
946     linelen = namelen + 1;
947     continue;
948 root 1.3 }
949 root 1.7 strcat (line, " ");
950     strcat (line, de->d_name);
951 elmex 1.1 }
952 root 1.7 new_draw_info (NDI_UNIQUE, 0, op, line);
953     closedir (dirp);
954 elmex 1.1 }
955    
956 root 1.7 static void
957     show_commands (object *op, int what)
958 elmex 1.1 {
959     char line[80];
960 root 1.7 int i, size, namelen, linelen = 0;
961 elmex 1.1 CommArray_s *ap;
962     extern CommArray_s Commands[], WizCommands[];
963     extern const int CommandsSize, WizCommandsSize;
964 root 1.7
965     switch (what)
966     {
967     case 1:
968     ap = WizCommands;
969     size = WizCommandsSize;
970     new_draw_info (NDI_UNIQUE, 0, op, " Wiz commands:");
971     break;
972     case 2:
973     ap = CommunicationCommands;
974     size = CommunicationCommandSize;
975     new_draw_info (NDI_UNIQUE, 0, op, " Communication commands:");
976     break;
977     default:
978     ap = Commands;
979     size = CommandsSize;
980     new_draw_info (NDI_UNIQUE, 0, op, " Commands:");
981     break;
982     }
983    
984     line[0] = '\0';
985     for (i = 0; i < size; i++)
986     {
987     namelen = strlen (ap[i].name);
988     linelen += namelen + 1;
989     if (linelen > 42)
990     {
991     new_draw_info (NDI_UNIQUE, 0, op, line);
992     sprintf (line, " %s", ap[i].name);
993     linelen = namelen + 1;
994     continue;
995     }
996     strcat (line, " ");
997     strcat (line, ap[i].name);
998     }
999     new_draw_info (NDI_UNIQUE, 0, op, line);
1000 elmex 1.1 }
1001    
1002    
1003 root 1.7 int
1004     command_help (object *op, char *params)
1005 elmex 1.1 {
1006     struct stat st;
1007     FILE *fp;
1008     char filename[MAX_BUF], line[MAX_BUF];
1009     int len;
1010    
1011 root 1.7 if (op != NULL)
1012     clear_win_info (op);
1013 elmex 1.1
1014     /*
1015     * Main help page?
1016     */
1017 root 1.7 if (!params)
1018     {
1019     sprintf (filename, "%s/def_help", settings.datadir);
1020     if ((fp = fopen (filename, "r")) == NULL)
1021     {
1022     LOG (llevError, "Cannot open help file %s: %s\n", filename, strerror (errno));
1023     return 0;
1024     }
1025     while (fgets (line, MAX_BUF, fp))
1026     {
1027     line[MAX_BUF - 1] = '\0';
1028     len = strlen (line) - 1;
1029     if (line[len] == '\n')
1030     line[len] = '\0';
1031     new_draw_info (NDI_UNIQUE, 0, op, line);
1032     }
1033     fclose (fp);
1034 elmex 1.1 return 0;
1035     }
1036    
1037     /*
1038     * Topics list
1039     */
1040 root 1.7 if (!strcmp (params, "topics"))
1041     {
1042     help_topics (op, 3);
1043     help_topics (op, 0);
1044     if (QUERY_FLAG (op, FLAG_WIZ))
1045     help_topics (op, 1);
1046     return 0;
1047 elmex 1.1 }
1048 root 1.7
1049 elmex 1.1 /*
1050     * Commands list
1051     */
1052 root 1.7 if (!strcmp (params, "commands"))
1053     {
1054     show_commands (op, 0);
1055     show_commands (op, 2); /* show comm commands */
1056     if (QUERY_FLAG (op, FLAG_WIZ))
1057     show_commands (op, 1);
1058     return 0;
1059     }
1060 elmex 1.1
1061     /*
1062     * User wants info about command
1063     */
1064 root 1.7 if (strchr (params, '.') || strchr (params, ' ') || strchr (params, '/'))
1065     {
1066     sprintf (line, "Illegal characters in '%s'", params);
1067     new_draw_info (NDI_UNIQUE, 0, op, line);
1068     return 0;
1069     }
1070 elmex 1.1
1071 root 1.7 sprintf (filename, "%s/mischelp/%s", settings.datadir, params);
1072     if (stat (filename, &st) || !S_ISREG (st.st_mode))
1073     {
1074     if (op)
1075     {
1076     sprintf (filename, "%s/help/%s", settings.datadir, params);
1077     if (stat (filename, &st) || !S_ISREG (st.st_mode))
1078     {
1079     if (QUERY_FLAG (op, FLAG_WIZ))
1080     {
1081     sprintf (filename, "%s/wizhelp/%s", settings.datadir, params);
1082     if (stat (filename, &st) || !S_ISREG (st.st_mode))
1083     goto nohelp;
1084     }
1085     else
1086     goto nohelp;
1087     }
1088     }
1089     }
1090 elmex 1.1
1091     /*
1092     * Found that. Just cat it to screen.
1093     */
1094 root 1.7 if ((fp = fopen (filename, "r")) == NULL)
1095     {
1096     LOG (llevError, "Cannot open help file %s: %s\n", filename, strerror (errno));
1097     return 0;
1098     }
1099     sprintf (line, "Help about '%s'", params);
1100     new_draw_info (NDI_UNIQUE, 0, op, line);
1101     while (fgets (line, MAX_BUF, fp))
1102     {
1103     line[MAX_BUF - 1] = '\0';
1104     len = strlen (line) - 1;
1105     if (line[len] == '\n')
1106     line[len] = '\0';
1107     new_draw_info (NDI_UNIQUE, 0, op, line);
1108 elmex 1.1 }
1109 root 1.7 fclose (fp);
1110 elmex 1.1 return 0;
1111    
1112     /*
1113     * No_help -escape
1114     */
1115 root 1.7 nohelp:
1116     sprintf (line, "No help available on '%s'", params);
1117     new_draw_info (NDI_UNIQUE, 0, op, line);
1118 elmex 1.1 return 0;
1119     }
1120    
1121    
1122 root 1.7 int
1123     onoff_value (const char *line)
1124 elmex 1.1 {
1125     int i;
1126    
1127 root 1.7 if (sscanf (line, "%d", &i))
1128 elmex 1.1 return (i != 0);
1129 root 1.7 switch (line[0])
1130     {
1131     case 'o':
1132     switch (line[1])
1133     {
1134     case 'n':
1135     return 1; /* on */
1136     default:
1137     return 0; /* o[ff] */
1138     }
1139     case 'y': /* y[es] */
1140     case 'k': /* k[ylla] */
1141     case 's':
1142     case 'd':
1143     return 1;
1144     case 'n': /* n[o] */
1145     case 'e': /* e[i] */
1146     case 'u':
1147     default:
1148     return 0;
1149     }
1150 elmex 1.1 }
1151    
1152 root 1.7 int
1153     command_quit (object *op, char *params)
1154 elmex 1.1 {
1155 root 1.7 new_draw_info (NDI_UNIQUE, 0, op,
1156     "Quitting will delete your character PERMANENTLY. If you are sure you want to do this, then use the quit_character command instead of quit.");
1157     return 1;
1158 elmex 1.1 }
1159    
1160 root 1.7 int
1161     command_real_quit (object *op, char *params)
1162 elmex 1.1 {
1163 root 1.7 send_query (&op->contr->socket, CS_QUERY_SINGLECHAR, "Quitting will delete your character.\nAre you sure you want to quit (y/n):");
1164 elmex 1.1
1165 root 1.7 op->contr->state = ST_CONFIRM_QUIT;
1166     return 1;
1167     }
1168 elmex 1.1
1169     /*
1170     * don't allow people to exit explore mode. It otherwise becomes
1171     * really easy to abuse this.
1172     */
1173 root 1.7 int
1174     command_explore (object *op, char *params)
1175 elmex 1.1 {
1176 root 1.7 if (settings.explore_mode == FALSE)
1177     return 1;
1178 elmex 1.1 /*
1179     * I guess this is the best way to see if we are solo or not. Actually,
1180     * are there any cases when first_player->next==NULL and we are not solo?
1181     */
1182 root 1.7 if ((first_player != op->contr) || (first_player->next != NULL))
1183     {
1184     new_draw_info (NDI_UNIQUE, 0, op, "You can not enter explore mode if you are in a party");
1185     }
1186     else if (op->contr->explore)
1187     new_draw_info (NDI_UNIQUE, 0, op, "There is no return from explore mode");
1188     else
1189     {
1190     op->contr->explore = 1;
1191     new_draw_info (NDI_UNIQUE, 0, op, "You are now in explore mode");
1192 elmex 1.1 }
1193 root 1.7 return 1;
1194 elmex 1.1 }
1195    
1196 root 1.7 int
1197     command_sound (object *op, char *params)
1198 elmex 1.1 {
1199 root 1.7 if (op->contr->socket.sound)
1200     {
1201     op->contr->socket.sound = 0;
1202     new_draw_info (NDI_UNIQUE, 0, op, "Silence is golden...");
1203     }
1204     else
1205     {
1206     op->contr->socket.sound = 1;
1207     new_draw_info (NDI_UNIQUE, 0, op, "The sounds are enabled.");
1208 elmex 1.1 }
1209 root 1.7 return 1;
1210 elmex 1.1 }
1211    
1212     /* Perhaps these should be in player.c, but that file is
1213     * already a bit big.
1214     */
1215    
1216 root 1.7 void
1217     receive_player_name (object *op, char k)
1218     {
1219 elmex 1.1
1220 root 1.7 if (!check_name (op->contr, op->contr->write_buf + 1))
1221     {
1222     get_name (op);
1223     return;
1224 elmex 1.1 }
1225 root 1.7 op->name = op->contr->write_buf + 1;
1226     op->name_pl = op->contr->write_buf + 1;
1227     new_draw_info (NDI_UNIQUE, 0, op, op->contr->write_buf);
1228     op->contr->name_changed = 1;
1229     get_password (op);
1230 elmex 1.1 }
1231    
1232 root 1.7 void
1233     receive_player_password (object *op, char k)
1234     {
1235    
1236     unsigned int pwd_len = strlen (op->contr->write_buf);
1237 elmex 1.1
1238 root 1.7 if (pwd_len <= 1 || pwd_len > 17)
1239     {
1240     get_name (op);
1241     return;
1242     }
1243     new_draw_info (NDI_UNIQUE, 0, op, " "); /* To hide the password better */
1244 elmex 1.1
1245 root 1.7 if (checkbanned (op->name, op->contr->socket.host))
1246     {
1247     LOG (llevInfo, "Banned player tried to add: [%s@%s]\n", &op->name, op->contr->socket.host);
1248     new_draw_info (NDI_UNIQUE | NDI_RED, 0, op, "You are not allowed to play.");
1249     get_name (op);
1250     return;
1251     }
1252 elmex 1.1
1253 root 1.7 if (op->contr->state == ST_CONFIRM_PASSWORD)
1254     {
1255     if (!check_password (op->contr->write_buf + 1, op->contr->password))
1256     {
1257     new_draw_info (NDI_UNIQUE, 0, op, "The passwords did not match.");
1258     get_name (op);
1259     return;
1260     }
1261     clear_win_info (op);
1262     display_motd (op);
1263     new_draw_info (NDI_UNIQUE, 0, op, " ");
1264     new_draw_info (NDI_UNIQUE, 0, op, "Welcome, Brave New Warrior!");
1265     new_draw_info (NDI_UNIQUE, 0, op, " ");
1266     Roll_Again (op);
1267     op->contr->state = ST_ROLL_STAT;
1268 elmex 1.1 return;
1269     }
1270 root 1.7 strcpy (op->contr->password, crypt_string (op->contr->write_buf + 1, NULL));
1271     op->contr->state = ST_ROLL_STAT;
1272     check_login (op);
1273 elmex 1.1 return;
1274     }
1275    
1276    
1277 root 1.7 int
1278     explore_mode (void)
1279     {
1280     player *pl;
1281 elmex 1.1
1282 root 1.7 if (settings.explore_mode == TRUE)
1283     {
1284     for (pl = first_player; pl != (player *) NULL; pl = pl->next)
1285     if (pl->explore)
1286     return 1;
1287 elmex 1.1 }
1288 root 1.7 return 0;
1289 elmex 1.1 }
1290    
1291    
1292 root 1.7 int
1293     command_title (object *op, char *params)
1294 elmex 1.1 {
1295 root 1.7 char buf[MAX_BUF];
1296    
1297     if (settings.set_title == FALSE)
1298     {
1299     new_draw_info (NDI_UNIQUE, 0, op, "You cannot change your title.");
1300     return 1;
1301 elmex 1.1 }
1302 root 1.7
1303     /* dragon players cannot change titles */
1304     if (is_dragon_pl (op))
1305     {
1306     new_draw_info (NDI_UNIQUE, 0, op, "Dragons cannot change titles.");
1307     return 1;
1308     }
1309    
1310     if (params == NULL)
1311     {
1312     if (op->contr->own_title[0] == '\0')
1313     sprintf (buf, "Your title is '%s'.", op->contr->title);
1314     else
1315     sprintf (buf, "Your title is '%s'.", op->contr->own_title);
1316     new_draw_info (NDI_UNIQUE, 0, op, buf);
1317     return 1;
1318     }
1319     if (strcmp (params, "clear") == 0 || strcmp (params, "default") == 0)
1320     {
1321     if (op->contr->own_title[0] == '\0')
1322     new_draw_info (NDI_UNIQUE, 0, op, "Your title is the default title.");
1323     else
1324     new_draw_info (NDI_UNIQUE, 0, op, "Title set to default.");
1325     op->contr->own_title[0] = '\0';
1326     return 1;
1327     }
1328    
1329     if ((int) strlen (params) >= MAX_NAME)
1330     {
1331     new_draw_info (NDI_UNIQUE, 0, op, "Title too long.");
1332     return 1;
1333     }
1334     strcpy (op->contr->own_title, params);
1335     return 1;
1336 elmex 1.1 }
1337    
1338 root 1.7 int
1339     command_save (object *op, char *params)
1340 elmex 1.1 {
1341     // if (get_map_flags(op->map, NULL, op->x, op->y, NULL, NULL) & P_NO_CLERIC) {
1342 root 1.7 // new_draw_info(NDI_UNIQUE, 0, op, "You can not save on unholy ground");
1343 elmex 1.1 // } else
1344 root 1.7 if (!op->stats.exp)
1345     {
1346     new_draw_info (NDI_UNIQUE, 0, op, "You don't deserve to save yet.");
1347     }
1348     else
1349     {
1350     if (save_player (op, 1))
1351     new_draw_info (NDI_UNIQUE, 0, op, "You have been saved.");
1352     else
1353     new_draw_info (NDI_UNIQUE, 0, op, "SAVE FAILED!");
1354 elmex 1.1 }
1355 root 1.7 return 1;
1356 elmex 1.1 }
1357    
1358    
1359 root 1.7 int
1360     command_peaceful (object *op, char *params)
1361 elmex 1.1 {
1362 root 1.7 new_draw_info (NDI_UNIQUE, 0, op,
1363     "You cannot change your peaceful setting with this command."
1364     " Please speak to the priest in the temple of Gorokh"
1365     " if you want to become hostile or in temple of Valriel" " if you want to become peaceful again.");
1366 elmex 1.1
1367     /*
1368     if((op->contr->peaceful=!op->contr->peaceful))
1369     new_draw_info(NDI_UNIQUE, 0,op,"You will not attack other players.");
1370     else
1371     new_draw_info(NDI_UNIQUE, 0,op,"You will attack other players.");
1372     */
1373 root 1.7 return 1;
1374 elmex 1.1 }
1375    
1376    
1377    
1378 root 1.7 int
1379     command_wimpy (object *op, char *params)
1380 elmex 1.1 {
1381 root 1.7 int i;
1382     char buf[MAX_BUF];
1383 elmex 1.1
1384 root 1.7 if (params == NULL || !sscanf (params, "%d", &i))
1385     {
1386     sprintf (buf, "Your current wimpy level is %d.", op->run_away);
1387     new_draw_info (NDI_UNIQUE, 0, op, buf);
1388     return 1;
1389     }
1390     sprintf (buf, "Your new wimpy level is %d.", i);
1391     new_draw_info (NDI_UNIQUE, 0, op, buf);
1392     op->run_away = i;
1393     return 1;
1394 elmex 1.1 }
1395    
1396    
1397 root 1.7 int
1398     command_brace (object *op, char *params)
1399 elmex 1.1 {
1400     if (!params)
1401 root 1.7 op->contr->braced = !op->contr->braced;
1402 elmex 1.1 else
1403 root 1.7 op->contr->braced = onoff_value (params);
1404 elmex 1.1
1405 root 1.7 if (op->contr->braced)
1406     new_draw_info (NDI_UNIQUE, 0, op, "You are braced.");
1407 elmex 1.1 else
1408 root 1.7 new_draw_info (NDI_UNIQUE, 0, op, "Not braced.");
1409 elmex 1.1
1410 root 1.7 fix_player (op);
1411 elmex 1.1 return 0;
1412     }
1413    
1414 root 1.7 int
1415     command_style_map_info (object *op, char *params)
1416 elmex 1.1 {
1417 root 1.9 extern maptile *styles;
1418     maptile *mp;
1419 root 1.7 int maps_used = 0, mapmem = 0, objects_used = 0, x, y;
1420     object *tmp;
1421    
1422     for (mp = styles; mp != NULL; mp = mp->next)
1423     {
1424     maps_used++;
1425 root 1.9 mapmem += MAP_WIDTH (mp) * MAP_HEIGHT (mp) * (sizeof (object *) + sizeof (MapSpace)) + sizeof (maptile);
1426 root 1.7 for (x = 0; x < MAP_WIDTH (mp); x++)
1427     {
1428     for (y = 0; y < MAP_HEIGHT (mp); y++)
1429     {
1430     for (tmp = get_map_ob (mp, x, y); tmp != NULL; tmp = tmp->above)
1431     objects_used++;
1432 root 1.3 }
1433     }
1434 elmex 1.1 }
1435 root 1.7 new_draw_info_format (NDI_UNIQUE, 0, op, "Style maps loaded: %d", maps_used);
1436     new_draw_info (NDI_UNIQUE, 0, op, "Memory used, not");
1437     new_draw_info_format (NDI_UNIQUE, 0, op, "including objects: %d", mapmem);
1438     new_draw_info_format (NDI_UNIQUE, 0, op, "Style objects: %d", objects_used);
1439     new_draw_info_format (NDI_UNIQUE, 0, op, "Mem for objects: %d", objects_used * sizeof (object));
1440     return 0;
1441 elmex 1.1 }
1442    
1443 root 1.7 int
1444     command_kill_pets (object *op, char *params)
1445 elmex 1.1 {
1446 root 1.7 objectlink *obl, *next;
1447     int counter = 0, removecount = 0;
1448    
1449     if (params == NULL)
1450     {
1451     terminate_all_pets (op);
1452     new_draw_info (NDI_UNIQUE, 0, op, "Your pets have been killed.");
1453     }
1454     else
1455     {
1456     int target = atoi (params);
1457    
1458     for (obl = first_friendly_object; obl != NULL; obl = next)
1459     {
1460     object *ob = obl->ob;
1461    
1462     next = obl->next;
1463     if (get_owner (ob) == op)
1464     if (++counter == target || (target == 0 && !strcasecmp (ob->name, params)))
1465     {
1466     if (!QUERY_FLAG (ob, FLAG_REMOVED))
1467     remove_ob (ob);
1468     remove_friendly_object (ob);
1469     free_object (ob);
1470 root 1.3 removecount++;
1471 root 1.7 }
1472 root 1.3 }
1473 root 1.7 if (removecount != 0)
1474     new_draw_info_format (NDI_UNIQUE, 0, op, "killed %d pets.\n", removecount);
1475     else
1476     new_draw_info (NDI_UNIQUE, 0, op, "Couldn't find any suitable pets to kill.\n");
1477 elmex 1.1 }
1478 root 1.7 return 0;
1479 elmex 1.1 }