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.8 by root, Thu Sep 14 22:34:03 2006 UTC vs.
Revision 1.51 by pippijn, Fri Mar 2 10:55:00 2007 UTC

1/* 1/*
2 CrossFire, A Multiplayer game for X-windows 2 * CrossFire, A Multiplayer game for X-windows
3 3 *
4 * Copyright (C) 2005, 2006, 2007 Marc Lehmann & Crossfire+ Development Team
4 Copyright (C) 2002 Mark Wedel & Crossfire Development Team 5 * Copyright (C) 2002 Mark Wedel & Crossfire Development Team
5 Copyright (C) 1992 Frank Tore Johansen 6 * Copyright (C) 1992 Frank Tore Johansen
6 7 *
7 This program is free software; you can redistribute it and/or modify 8 * 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 * 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 * the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version. 11 * (at your option) any later version.
11 12 *
12 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,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of 14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details. 16 * GNU General Public License for more details.
16 17 *
17 You should have received a copy of the GNU General Public License 18 * 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 * along with this program; if not, write to the Free Software
19 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. 20 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20 21 *
21 The authors can be reached via e-mail at <crossfire@schmorp.de> 22 * The authors can be reached via e-mail at <crossfire@schmorp.de>
22*/ 23 */
23 24
24#include <global.h> 25#include <global.h>
25#include <loader.h> 26#include <loader.h>
26#ifndef __CEXTRACT__
27# include <sproto.h> 27#include <sproto.h>
28#endif
29
30extern weathermap_t **weathermap;
31 28
32/* Handles misc. input request - things like hash table, malloc, maps, 29/* Handles misc. input request - things like hash table, malloc, maps,
33 * who, etc. 30 * who, etc.
34 */ 31 */
35
36void
37map_info (object *op, char *search)
38{
39 mapstruct *m;
40 char buf[MAX_BUF], map_path[MAX_BUF];
41 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}
62 32
63/* This command dumps the body information for object *op. 33/* This command dumps the body information for object *op.
64 * it doesn't care what the params are. 34 * it doesn't care what the params are.
65 * This is mostly meant as a debug command. 35 * This is mostly meant as a debug command.
66 */ 36 */
99{ 69{
100 display_motd (op); 70 display_motd (op);
101 return 1; 71 return 1;
102} 72}
103 73
104int
105command_bug (object *op, char *params)
106{
107 char buf[MAX_BUF];
108
109 if (params == NULL)
110 {
111 new_draw_info (NDI_UNIQUE, 0, op, "what bugs?");
112 return 1;
113 }
114 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}
124
125/* 74/*
126 * Pretty much identical to current map_info, but on a bigger scale 75 * Pretty much identical to current map_info, but on a bigger scale
127 * This function returns the name of the players current region, and 76 * This function returns the name of the players current region, and
128 * a description of it. It is there merely for flavour text. 77 * a description of it. It is there merely for flavour text.
129 */ 78 */
130void 79void
131current_region_info (object *op) 80current_region_info (object *op)
132{ 81{
133 /* 82 if (region *reg = op->region ())
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
139 if (!r)
140 return;
141 /* This should only be possible if regions are not operating on this server. */
142
143 new_draw_info_format (NDI_UNIQUE, 0, op, "You are in %s. \n %s", get_region_longname (r), get_region_msg (r)); 83 new_draw_info_format (NDI_UNIQUE, 0, op, "You are %s.\n%s", &reg->longname, &reg->msg);
144} 84}
145 85
146void 86void
147current_map_info (object *op) 87current_map_info (object *op)
148{ 88{
149 mapstruct *m = op->map; 89 maptile *m = op->map;
150 90
151 if (!m) 91 if (!m)
152 return; 92 return;
153 93
154 new_draw_info_format (NDI_UNIQUE, 0, op, "%s (%s) in %s", m->name, m->path, get_name_of_region_for_map (m)); 94 new_draw_info_format (NDI_UNIQUE, 0, op, "%s (%s) %s", &m->name, &m->path, &op->region ()->longname);
155 95
156 if (QUERY_FLAG (op, FLAG_WIZ)) 96 if (QUERY_FLAG (op, FLAG_WIZ))
157 {
158 new_draw_info_format (NDI_UNIQUE, 0, op, 97 new_draw_info_format (NDI_UNIQUE, 0, op,
159 "players:%d difficulty:%d size:%dx%d start:%dx%d timeout %ld", 98 "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)); 99 m->players, m->difficulty, m->width, m->height, m->enter_x, m->enter_y, m->timeout);
161 100
162 }
163 if (m->msg) 101 if (m->msg)
164 new_draw_info (NDI_UNIQUE, NDI_NAVY, op, m->msg); 102 new_draw_info (NDI_UNIQUE, NDI_NAVY, op, m->msg);
165} 103}
166 104
167#ifdef DEBUG_MALLOC_LEVEL 105#ifdef DEBUG_MALLOC_LEVEL
179#endif 117#endif
180 118
181int 119int
182command_whereabouts (object *op, char *params) 120command_whereabouts (object *op, char *params)
183{ 121{
184 122 //TODO: should obviously not waste space in struct region for this.
185 region *reg;
186 player *pl;
187
188 /* 123 /*
189 * reset the counter on the region, then use it to store the number of 124 * reset the counter on the region, then use it to store the number of
190 * players there. 125 * players there.
191 * I don't know how thread-safe this would be, I suspect not very.... 126 * I don't know how thread-safe this would be, I suspect not very....
192 */ 127 */
193 for (reg = first_region; reg != NULL; reg = reg->next) 128 for_all_regions (rgn)
194 {
195 reg->counter = 0; 129 rgn->counter = 0;
196 } 130
197 for (pl = first_player; pl != NULL; pl = pl->next) 131 for_all_players (pl)
198 if (pl->ob->map != NULL) 132 if (pl->ob->map)
199 get_region_by_map (pl->ob->map)->counter++; 133 ++pl->ob->region ()->counter;
200 134
201 /* we only want to print out by places with a 'longname' field... */ 135 /* we only want to print out by places with a 'longname' field... */
202 for (reg = first_region; reg != NULL; reg = reg->next) 136 for_all_regions (rgn)
203 { 137 {
204 if (reg->longname == NULL && reg->counter > 0) 138 if (!rgn->longname && rgn->counter > 0)
205 { 139 {
206 if (reg->parent != NULL) 140 if (rgn->parent)
207 { 141 {
208 reg->parent->counter += reg->counter; 142 rgn->parent->counter += rgn->counter;
209 reg->counter = 0; 143 rgn->counter = 0;
210 } 144 }
211 else /*uh oh, we shouldn't be here. */ 145 else /*uh oh, we shouldn't be here. */
212 LOG (llevError, "command_whereabouts() Region %s with no longname has no parent", reg->name); 146 LOG (llevError, "command_whereabouts() Region %s with no longname has no parent", &rgn->name);
213 } 147 }
214 } 148 }
149
215 new_draw_info_format (NDI_UNIQUE, 0, op, "In the world currently there are:"); 150 new_draw_info_format (NDI_UNIQUE, 0, op, "In the world currently there are:");
216 for (reg = first_region; reg != NULL; reg = reg->next) 151
152 for_all_regions (rgn)
217 if (reg->counter > 0) 153 if (rgn->counter)
218 new_draw_info_format (NDI_UNIQUE, 0, op, "%u players in %s", reg->counter, get_region_longname (reg)); 154 new_draw_info_format (NDI_UNIQUE, 0, op, "%u players %s", rgn->counter, &rgn->longname);
155
219 return 1; 156 return 1;
220} 157}
221 158
222typedef struct 159typedef struct
223{ 160{
224 char namebuf[MAX_BUF]; 161 char namebuf[MAX_BUF];
225 int login_order; 162 int login_order;
226} chars_names; 163} chars_names;
227 164
228/*local functon for qsort comparison*/
229static int
230name_cmp (const chars_names * c1, const chars_names * c2)
231{
232 return strcasecmp (c1->namebuf, c2->namebuf);
233}
234
235int
236command_who (object *op, char *params)
237{
238 player *pl;
239 uint16 i;
240 region *reg;
241 char *format;
242 int num_players = 0;
243 int num_wiz = 0;
244 int num_afk = 0;
245 chars_names *chars = NULL;
246
247 /*
248 * The who formats are defined in config to be blank. They should have been
249 * overridden by the settings file, if there are no entries however, it will
250 * have stayed blank. Since this probably isn't what is wanted, we will check if
251 * new formats have been specified, and if not we will use the old defaults.
252 */
253 if (!strcmp (settings.who_format, ""))
254 strcpy (settings.who_format, "%N_%T%t%h%d%n[%m]");
255 if (!strcmp (settings.who_wiz_format, ""))
256 strcpy (settings.who_wiz_format, "%N_%T%t%h%d%nLevel %l [%m](@%i)(%c)");
257 if (op == NULL || QUERY_FLAG (op, FLAG_WIZ))
258 format = settings.who_wiz_format;
259 else
260 format = settings.who_format;
261
262 reg = get_region_from_string (params);
263
264 for (pl = first_player; pl != NULL; pl = pl->next)
265 {
266 if (pl->ob->map == NULL)
267 continue;
268 if (pl->hidden && !QUERY_FLAG (op, FLAG_WIZ))
269 continue;
270
271 if (!region_is_child_of_region (get_region_by_map (pl->ob->map), reg))
272 continue;
273
274 if (pl->state == ST_PLAYING || pl->state == ST_GET_PARTY_PASSWORD)
275 {
276
277 num_players++;
278 chars = (chars_names *) realloc (chars, num_players * sizeof (chars_names));
279 if (chars == NULL)
280 {
281 new_draw_info (NDI_UNIQUE, 0, op, "who failed - out of memory!");
282 return 0;
283 }
284 sprintf (chars[num_players - 1].namebuf, "%s", &pl->ob->name);
285 chars[num_players - 1].login_order = num_players;
286 /*Check for WIZ's & AFK's */
287 if (QUERY_FLAG (pl->ob, FLAG_WIZ))
288 num_wiz++;
289 if (QUERY_FLAG (pl->ob, FLAG_AFK))
290 num_afk++;
291 }
292 }
293 if (first_player != (player *) NULL)
294 {
295 if (reg == NULL)
296 new_draw_info_format (NDI_UNIQUE, 0, op, "Total Players (%d) -- WIZ(%d) AFK(%d)", num_players, num_wiz, num_afk);
297 else if (reg->longname == NULL)
298 new_draw_info_format (NDI_UNIQUE, 0, op, "Total Players in %s (%d) -- WIZ(%d) AFK(%d)", reg->name, num_players, num_wiz, num_afk);
299 else
300 new_draw_info_format (NDI_UNIQUE, 0, op, "Total Players in %s (%d) -- WIZ(%d) AFK(%d)",
301 reg->longname, num_players, num_wiz, num_afk);
302 }
303 qsort (chars, num_players, sizeof (chars_names), (int (*)(const void *, const void *)) name_cmp);
304 for (i = 0; i < num_players; i++)
305 display_who_entry (op, find_player (chars[i].namebuf), format);
306 free (chars);
307 return 1;
308}
309
310/* Display a line of 'who' to op, about pl, using the formatting specified by format */
311void
312display_who_entry (object *op, player *pl, const char *format)
313{
314 char tmpbuf[MAX_BUF];
315 char outbuf[MAX_BUF];
316 size_t i;
317
318 outbuf[0] = '\0'; /* we strcat to this, so reset it here. */
319 if (pl == NULL)
320 {
321 LOG (llevError, "display_who_entry(): I was passed a null player");
322 return;
323 }
324 for (i = 0; i <= strlen (format); i++)
325 {
326 if (format[i] == '%')
327 {
328 i++;
329 get_who_escape_code_value (tmpbuf, format[i], pl);
330 strcat (outbuf, tmpbuf);
331 }
332 else if (format[i] == '_')
333 strcat (outbuf, " "); /* allow '_' to be used in place of spaces */
334 else
335 {
336 sprintf (tmpbuf, "%c", format[i]);
337 strcat (outbuf, tmpbuf);
338 }
339 }
340 new_draw_info (NDI_UNIQUE, 0, op, outbuf);
341}
342
343/* Returns the value of the escape code used in the who format specifier
344 * the values are:
345 * N Name of character
346 * t title of character
347 * T the optional "the " sequence value (depend if player has own_title or not)
348 * c count
349 * n newline
350 * h [Hostile] if character is hostile, nothing otherwise
351 * d [WIZ] if character is a dm, nothing otherwise
352 * a [AFK] if character is afk, nothing otherwise
353 * l the level of the character
354 * m the map path the character is currently on
355 * M the map name of the map the character is currently on
356 * r the region name (eg scorn, wolfsburg)
357 * R the regional title (eg The Kingdom of Scorn, The Port of Wolfsburg)
358 * i player's ip adress
359 * % a literal %
360 * _ a literal underscore
361 */
362
363void
364get_who_escape_code_value (char *return_val, const char letter, player *pl)
365{
366
367 switch (letter)
368 {
369 case 'N':
370 strcpy (return_val, pl->ob->name);
371 break;
372 case 't':
373 strcpy (return_val, (pl->own_title[0] == '\0' ? pl->title : pl->own_title));
374 break;
375 case 'T':
376 if (pl->own_title[0] == '\0')
377 strcpy (return_val, "the ");
378 else
379 *return_val = '\0';
380 break;
381 case 'c':
382 sprintf (return_val, "%d", pl->ob->count);
383 break;
384 case 'n':
385 strcpy (return_val, "\n");
386 break;
387 case 'h':
388 strcpy (return_val, pl->peaceful ? "" : " [Hostile]");
389 break;
390 case 'l':
391 sprintf (return_val, "%d", pl->ob->level);
392 break;
393 case 'd':
394 strcpy (return_val, (QUERY_FLAG (pl->ob, FLAG_WIZ) ? " [WIZ]" : ""));
395 break;
396 case 'a':
397 strcpy (return_val, (QUERY_FLAG (pl->ob, FLAG_AFK) ? " [AFK]" : ""));
398 break;
399 case 'm':
400 strcpy (return_val, pl->ob->map->path);
401 break;
402 case 'M':
403 strcpy (return_val, pl->ob->map->name ? pl->ob->map->name : "Untitled");
404 break;
405 case 'r':
406 strcpy (return_val, get_name_of_region_for_map (pl->ob->map));
407 break;
408 case 'R':
409 strcpy (return_val, get_region_longname (get_region_by_map (pl->ob->map)));
410 break;
411 case 'i':
412 strcpy (return_val, pl->socket.host);
413 break;
414 case '%':
415 strcpy (return_val, "%");
416 break;
417 case '_':
418 strcpy (return_val, "_");
419 break;
420 }
421
422}
423
424
425int
426command_afk (object *op, char *params)
427{
428 if QUERY_FLAG
429 (op, FLAG_AFK)
430 {
431 CLEAR_FLAG (op, FLAG_AFK);
432 new_draw_info (NDI_UNIQUE, 0, op, "You are no longer AFK");
433 }
434 else
435 {
436 SET_FLAG (op, FLAG_AFK);
437 new_draw_info (NDI_UNIQUE, 0, op, "You are now AFK");
438 }
439 return 1;
440}
441
442int 165int
443command_mapinfo (object *op, char *params) 166command_mapinfo (object *op, char *params)
444{ 167{
445 current_map_info (op); 168 current_map_info (op);
446 return 1; 169 return 1;
452 current_region_info (op); 175 current_region_info (op);
453 return 1; 176 return 1;
454} 177}
455 178
456int 179int
457command_maps (object *op, char *params)
458{
459 map_info (op, params);
460 return 1;
461}
462
463int
464command_time (object *op, char *params) 180command_time (object *op, char *params)
465{ 181{
466 print_tod (op); 182 print_tod (op);
467 return 1; 183 return 1;
468} 184}
469 185
470int 186int
471command_weather (object *op, char *params) 187command_weather (object *op, char *params)
472{ 188{
189#if 0
473 int wx, wy, temp, sky; 190 int wx, wy, temp, sky;
474 char buf[MAX_BUF]; 191 char buf[MAX_BUF];
475 192
476 if (settings.dynamiclevel < 1) 193 if (settings.dynamiclevel < 1)
477 return 1; 194 return 1;
593 break; 310 break;
594 case SKY_BLIZZARD: 311 case SKY_BLIZZARD:
595 new_draw_info (NDI_UNIQUE, 0, op, "A full blown blizzard is in effect. You might want to take cover!"); 312 new_draw_info (NDI_UNIQUE, 0, op, "A full blown blizzard is in effect. You might want to take cover!");
596 break; 313 break;
597 } 314 }
598 return 1; 315#endif
599}
600
601int
602command_archs (object *op, char *params)
603{
604 arch_info (op);
605 return 1; 316 return 1;
606} 317}
607 318
608int 319int
609command_hiscore (object *op, char *params) 320command_hiscore (object *op, char *params)
622 { 333 {
623 sprintf (buf, "Global debug level is %d.", settings.debug); 334 sprintf (buf, "Global debug level is %d.", settings.debug);
624 new_draw_info (NDI_UNIQUE, 0, op, buf); 335 new_draw_info (NDI_UNIQUE, 0, op, buf);
625 return 1; 336 return 1;
626 } 337 }
627 if (op != NULL && !QUERY_FLAG (op, FLAG_WIZ))
628 {
629 new_draw_info (NDI_UNIQUE, 0, op, "Privileged command.");
630 return 1;
631 }
632 settings.debug = (enum LogLevel) FABS (i); 338 settings.debug = (enum LogLevel) FABS (i);
633 sprintf (buf, "Set debug level to %d.", i); 339 sprintf (buf, "Set debug level to %d.", i);
634 new_draw_info (NDI_UNIQUE, 0, op, buf); 340 new_draw_info (NDI_UNIQUE, 0, op, buf);
635 return 1; 341 return 1;
636} 342}
643int 349int
644command_dumpbelow (object *op, char *params) 350command_dumpbelow (object *op, char *params)
645{ 351{
646 if (op && op->below) 352 if (op && op->below)
647 { 353 {
648 dump_object (op->below); 354 char *dump = dump_object (op->below);
649 new_draw_info (NDI_UNIQUE, 0, op, errmsg); 355 new_draw_info (NDI_UNIQUE, 0, op, dump);
356 free (dump);
650 /* Let's push that item on the dm's stack */ 357 /* Let's push that item on the dm's stack */
651 dm_stack_push (op->contr, op->below->count); 358 dm_stack_push (op->contr, op->below->count);
652 } 359 }
653 return 0; 360 return 0;
654} 361}
655 362
656int 363int
657command_wizpass (object *op, char *params)
658{
659 int i;
660
661 if (!op)
662 return 0;
663
664 if (!params)
665 i = (QUERY_FLAG (op, FLAG_WIZPASS)) ? 0 : 1;
666 else
667 i = onoff_value (params);
668
669 if (i)
670 {
671 new_draw_info (NDI_UNIQUE, 0, op, "You will now walk through walls.\n");
672 SET_FLAG (op, FLAG_WIZPASS);
673 }
674 else
675 {
676 new_draw_info (NDI_UNIQUE, 0, op, "You will now be stopped by walls.\n");
677 CLEAR_FLAG (op, FLAG_WIZPASS);
678 }
679 return 0;
680}
681
682int
683command_wizcast (object *op, char *params)
684{
685 int i;
686
687 if (!op)
688 return 0;
689
690 if (!params)
691 i = (QUERY_FLAG (op, FLAG_WIZCAST)) ? 0 : 1;
692 else
693 i = onoff_value (params);
694
695 if (i)
696 {
697 new_draw_info (NDI_UNIQUE, 0, op, "You can now cast spells anywhere.");
698 SET_FLAG (op, FLAG_WIZCAST);
699 }
700 else
701 {
702 new_draw_info (NDI_UNIQUE, 0, op, "You now cannot cast spells in no-magic areas.");
703 CLEAR_FLAG (op, FLAG_WIZCAST);
704 }
705 return 0;
706}
707
708int
709command_dumpallobjects (object *op, char *params)
710{
711 dump_all_objects ();
712 return 0;
713}
714
715int
716command_dumpfriendlyobjects (object *op, char *params) 364command_dumpfriendlyobjects (object *op, char *params)
717{ 365{
718 dump_friendly_objects (); 366 dump_friendly_objects ();
719 return 0;
720}
721
722int
723command_dumpallarchetypes (object *op, char *params)
724{
725 dump_all_archetypes ();
726 return 0;
727}
728
729int
730command_dumpmap (object *op, char *params)
731{
732 if (op)
733 dump_map (op->map);
734 return 0;
735}
736
737int
738command_dumpallmaps (object *op, char *params)
739{
740 dump_all_maps ();
741 return 0; 367 return 0;
742} 368}
743 369
744int 370int
745command_printlos (object *op, char *params) 371command_printlos (object *op, char *params)
754command_version (object *op, char *params) 380command_version (object *op, char *params)
755{ 381{
756 version (op); 382 version (op);
757 return 0; 383 return 0;
758} 384}
759
760 385
761#ifndef BUG_LOG 386#ifndef BUG_LOG
762# define BUG_LOG "bug_log" 387# define BUG_LOG "bug_log"
763#endif 388#endif
764void 389void
819 new_draw_info (NDI_UNIQUE, 0, op, "Invalid value for output_count."); 444 new_draw_info (NDI_UNIQUE, 0, op, "Invalid value for output_count.");
820 445
821 return 1; 446 return 1;
822} 447}
823 448
824int
825command_listen (object *op, char *params)
826{
827 int i;
828
829 if (params == NULL || !sscanf (params, "%d", &i))
830 {
831 new_draw_info_format (NDI_UNIQUE, 0, op, "Set listen to what (presently %d)?", op->contr->listening);
832 return 1;
833 }
834 op->contr->listening = (char) i;
835 new_draw_info_format (NDI_UNIQUE, 0, op, "Your verbose level is now %d.", i);
836 return 1;
837}
838
839/* Prints out some useful information for the character. Everything we print 449/* Prints out some useful information for the character. Everything we print
840 * out can be determined by the docs, so we aren't revealing anything extra - 450 * out can be determined by the docs, so we aren't revealing anything extra -
841 * rather, we are making it convenient to find the values. params have 451 * rather, we are making it convenient to find the values. params have
842 * no meaning here. 452 * no meaning here.
843 */ 453 */
844int 454int
845command_statistics (object *pl, char *params) 455command_statistics (object *pl, char *params)
846{ 456{
847 if (!pl->contr) 457 if (!pl->contr)
848 return 1; 458 return 1;
849#ifndef WIN32
850 new_draw_info_format (NDI_UNIQUE, 0, pl, " Experience: %lld", pl->stats.exp);
851 new_draw_info_format (NDI_UNIQUE, 0, pl, " Next Level: %lld", level_exp (pl->level + 1, pl->expmul));
852#else
853 new_draw_info_format (NDI_UNIQUE, 0, pl, " Experience: %I64d", pl->stats.exp); 459 new_draw_info_format (NDI_UNIQUE, 0, pl, " Experience: %" PRId64, pl->stats.exp);
854 new_draw_info_format (NDI_UNIQUE, 0, pl, " Next Level: %I64d", level_exp (pl->level + 1, pl->expmul)); 460 new_draw_info_format (NDI_UNIQUE, 0, pl, " Next Level: %" PRId64, level_exp (pl->level + 1, pl->expmul));
855#endif
856 new_draw_info (NDI_UNIQUE, 0, pl, "\nStat Nat/Real/Max"); 461 new_draw_info (NDI_UNIQUE, 0, pl, "\nStat Nat/Real/Max");
857 462
858 new_draw_info_format (NDI_UNIQUE, 0, pl, "Str %2d/ %3d/%3d", 463 new_draw_info_format (NDI_UNIQUE, 0, pl, "Str %2d/ %3d/%3d",
859 pl->contr->orig_stats.Str, pl->stats.Str, 20 + pl->arch->clone.stats.Str); 464 pl->contr->orig_stats.Str, pl->stats.Str, 20 + pl->arch->clone.stats.Str);
860 new_draw_info_format (NDI_UNIQUE, 0, pl, "Dex %2d/ %3d/%3d", 465 new_draw_info_format (NDI_UNIQUE, 0, pl, "Dex %2d/ %3d/%3d",
877 482
878int 483int
879command_fix_me (object *op, char *params) 484command_fix_me (object *op, char *params)
880{ 485{
881 sum_weight (op); 486 sum_weight (op);
882 fix_player (op); 487 op->update_stats ();
883 return 1; 488 new_draw_info (NDI_UNIQUE, 0, op, "Your character was fixed.");
884}
885 489
886int
887command_players (object *op, char *paramss)
888{
889 char buf[MAX_BUF];
890 char *t;
891 DIR *Dir;
892
893 sprintf (buf, "%s/%s/", settings.localdir, settings.playerdir);
894 t = buf + strlen (buf);
895 if ((Dir = opendir (buf)) != NULL)
896 {
897 const struct dirent *Entry;
898
899 while ((Entry = readdir (Dir)) != NULL)
900 {
901 /* skip '.' , '..' */
902 if (!((Entry->d_name[0] == '.' && Entry->d_name[1] == '\0') ||
903 (Entry->d_name[0] == '.' && Entry->d_name[1] == '.' && Entry->d_name[2] == '\0')))
904 {
905 struct stat Stat;
906
907 strcpy (t, Entry->d_name);
908 if (stat (buf, &Stat) == 0)
909 {
910 /* This was not posix compatible
911 * if ((Stat.st_mode & S_IFMT)==S_IFDIR) {
912 */
913 if (S_ISDIR (Stat.st_mode))
914 {
915 char buf2[MAX_BUF];
916 struct tm *tm = localtime (&Stat.st_mtime);
917
918 sprintf (buf2, "%s\t%04d %02d %02d %02d %02d %02d",
919 Entry->d_name, 1900 + tm->tm_year, 1 + tm->tm_mon, tm->tm_mday, tm->tm_hour, tm->tm_min, tm->tm_sec);
920 new_draw_info (NDI_UNIQUE, 0, op, buf2);
921 }
922 }
923 }
924 }
925 }
926 closedir (Dir);
927 return 0; 490 return 1;
928} 491}
929
930
931 492
932int 493int
933command_logs (object *op, char *params) 494command_logs (object *op, char *params)
934{ 495{
935 int i;
936 int first;
937
938 first = 1;
939 for (i = 2; i < socket_info.allocated_sockets; i++)
940 {
941 if (init_sockets[i].old_mode == Old_Listen)
942 {
943 if (first)
944 {
945 new_draw_info (NDI_UNIQUE, 0, op, "Kill-logs are sent to:");
946 first = 0;
947 }
948 new_draw_info_format (NDI_UNIQUE, 0, op, "%s: %s", init_sockets[i].host, init_sockets[i].comment);
949 }
950 }
951 if (first)
952 {
953 new_draw_info (NDI_UNIQUE, 0, op, "Nobody is currently logging kills."); 496 new_draw_info (NDI_UNIQUE, 0, op, "Nobody is currently logging kills.");
954 }
955 return 1;
956}
957 497
958int
959command_applymode (object *op, char *params)
960{
961 unapplymode unapply = op->contr->unapply;
962 static const char *const types[] = { "nochoice", "never", "always" };
963
964 if (!params)
965 {
966 new_draw_info_format (NDI_UNIQUE, 0, op, "applymode is set to %s", types[op->contr->unapply]);
967 return 1;
968 }
969
970 if (!strcmp (params, "nochoice"))
971 op->contr->unapply = unapply_nochoice;
972 else if (!strcmp (params, "never"))
973 op->contr->unapply = unapply_never;
974 else if (!strcmp (params, "always"))
975 op->contr->unapply = unapply_always;
976 else
977 {
978 new_draw_info_format (NDI_UNIQUE, 0, op, "applymode: Unknown options %s, valid options are nochoice, never, always", params);
979 return 0;
980 }
981 new_draw_info_format (NDI_UNIQUE, 0, op, "Applymode %s set to %s",
982 (unapply == op->contr->unapply ? "" : " now"), types[op->contr->unapply]);
983 return 1; 498 return 1;
984} 499}
985 500
986int 501int
987command_bowmode (object *op, char *params) 502command_bowmode (object *op, char *params)
1007 found++; 522 found++;
1008 op->contr->bowtype = (bowtype_t) i; 523 op->contr->bowtype = (bowtype_t) i;
1009 break; 524 break;
1010 } 525 }
1011 } 526 }
527
1012 if (!found) 528 if (!found)
1013 { 529 {
1014 sprintf (buf, "bowmode: Unknown options %s, valid options are:", params); 530 sprintf (buf, "bowmode: Unknown options %s, valid options are:", params);
1015 for (i = 0; i <= bow_bestarrow; i++) 531 for (i = 0; i <= bow_bestarrow; i++)
1016 { 532 {
1022 strcat (buf, "."); 538 strcat (buf, ".");
1023 } 539 }
1024 new_draw_info_format (NDI_UNIQUE, 0, op, buf); 540 new_draw_info_format (NDI_UNIQUE, 0, op, buf);
1025 return 0; 541 return 0;
1026 } 542 }
543
1027 new_draw_info_format (NDI_UNIQUE, 0, op, "bowmode %s set to %s", (oldtype == op->contr->bowtype ? "" : "now"), types[op->contr->bowtype]); 544 new_draw_info_format (NDI_UNIQUE, 0, op, "bowmode %s set to %s", (oldtype == op->contr->bowtype ? "" : "now"), types[op->contr->bowtype]);
1028 return 1;
1029}
1030
1031int
1032command_petmode (object *op, char *params)
1033{
1034 petmode_t oldtype = op->contr->petmode;
1035 static const char *const types[] = { "normal", "sad", "defend", "arena" };
1036
1037 if (!params)
1038 {
1039 new_draw_info_format (NDI_UNIQUE, 0, op, "petmode is set to %s", types[op->contr->petmode]);
1040 return 1;
1041 }
1042
1043 if (!strcmp (params, "normal"))
1044 op->contr->petmode = pet_normal;
1045 else if (!strcmp (params, "sad"))
1046 op->contr->petmode = pet_sad;
1047 else if (!strcmp (params, "defend"))
1048 op->contr->petmode = pet_defend;
1049 else if (!strcmp (params, "arena"))
1050 op->contr->petmode = pet_arena;
1051 else
1052 {
1053 new_draw_info_format (NDI_UNIQUE, 0, op,
1054 "petmode: Unknown options %s, valid options are normal," "sad (seek and destroy), defend, arena", params);
1055 return 0;
1056 }
1057 new_draw_info_format (NDI_UNIQUE, 0, op, "petmode %s set to %s", (oldtype == op->contr->petmode ? "" : "now"), types[op->contr->petmode]);
1058 return 1; 545 return 1;
1059} 546}
1060 547
1061int 548int
1062command_showpets (object *op, char *params) 549command_showpets (object *op, char *params)
1070 for (obl = first_friendly_object; obl != NULL; obl = next) 557 for (obl = first_friendly_object; obl != NULL; obl = next)
1071 { 558 {
1072 object *ob = obl->ob; 559 object *ob = obl->ob;
1073 560
1074 next = obl->next; 561 next = obl->next;
1075 if (get_owner (ob) == op) 562 if (ob->owner == op)
1076 { 563 {
1077 if (target == 0) 564 if (target == 0)
1078 { 565 {
1079 if (counter == 0) 566 if (counter == 0)
1080 new_draw_info (NDI_UNIQUE, 0, op, "Pets:"); 567 new_draw_info (NDI_UNIQUE, 0, op, "Pets:");
1103 new_draw_info (NDI_UNIQUE, 0, op, "no such pet."); 590 new_draw_info (NDI_UNIQUE, 0, op, "no such pet.");
1104 return 0; 591 return 0;
1105} 592}
1106 593
1107int 594int
1108command_usekeys (object *op, char *params)
1109{
1110 usekeytype oldtype = op->contr->usekeys;
1111 static const char *const types[] = { "inventory", "keyrings", "containers" };
1112
1113 if (!params)
1114 {
1115 new_draw_info_format (NDI_UNIQUE, 0, op, "usekeys is set to %s", types[op->contr->usekeys]);
1116 return 1;
1117 }
1118
1119 if (!strcmp (params, "inventory"))
1120 op->contr->usekeys = key_inventory;
1121 else if (!strcmp (params, "keyrings"))
1122 op->contr->usekeys = keyrings;
1123 else if (!strcmp (params, "containers"))
1124 op->contr->usekeys = containers;
1125 else
1126 {
1127 new_draw_info_format (NDI_UNIQUE, 0, op, "usekeys: Unknown options %s, valid options are inventory, keyrings, containers", params);
1128 return 0;
1129 }
1130 new_draw_info_format (NDI_UNIQUE, 0, op, "usekeys %s set to %s", (oldtype == op->contr->usekeys ? "" : "now"), types[op->contr->usekeys]);
1131 return 1;
1132}
1133
1134int
1135command_resistances (object *op, char *params) 595command_resistances (object *op, char *params)
1136{ 596{
1137 int i; 597 int i;
1138 598
1139 if (!op) 599 if (!op)
1187 char filename[MAX_BUF], line[80]; 647 char filename[MAX_BUF], line[80];
1188 int namelen, linelen = 0; 648 int namelen, linelen = 0;
1189 649
1190 switch (what) 650 switch (what)
1191 { 651 {
1192 case 1: 652 case 1:
1193 sprintf (filename, "%s/wizhelp", settings.datadir); 653 sprintf (filename, "%s/wizhelp", settings.datadir);
1194 new_draw_info (NDI_UNIQUE, 0, op, " Wiz commands:"); 654 new_draw_info (NDI_UNIQUE, 0, op, " Wiz commands:");
1195 break; 655 break;
1196 case 3: 656 case 3:
1197 sprintf (filename, "%s/mischelp", settings.datadir); 657 sprintf (filename, "%s/mischelp", settings.datadir);
1198 new_draw_info (NDI_UNIQUE, 0, op, " Misc help:"); 658 new_draw_info (NDI_UNIQUE, 0, op, " Misc help:");
1199 break; 659 break;
1200 default: 660 default:
1201 sprintf (filename, "%s/help", settings.datadir); 661 sprintf (filename, "%s/help", settings.datadir);
1202 new_draw_info (NDI_UNIQUE, 0, op, " Commands:"); 662 new_draw_info (NDI_UNIQUE, 0, op, " Commands:");
1203 break; 663 break;
1204 } 664 }
665
1205 if (!(dirp = opendir (filename))) 666 if (!(dirp = opendir (filename)))
1206 return; 667 return;
1207 668
1208 line[0] = '\0'; 669 line[0] = '\0';
1209 for (de = readdir (dirp); de; de = readdir (dirp)) 670 while ((de = readdir (dirp)))
1210 { 671 {
1211 namelen = NAMLEN (de); 672 namelen = strlen (de->d_name);
1212 if (namelen <= 2 && *de->d_name == '.' && (namelen == 1 || de->d_name[1] == '.')) 673 if (namelen <= 2 && *de->d_name == '.' && (namelen == 1 || de->d_name[1] == '.'))
1213 continue; 674 continue;
1214 linelen += namelen + 1; 675 linelen += namelen + 1;
1215 if (linelen > 42) 676 if (linelen > 42)
1216 { 677 {
1421 return 0; 882 return 0;
1422 } 883 }
1423} 884}
1424 885
1425int 886int
1426command_quit (object *op, char *params)
1427{
1428 new_draw_info (NDI_UNIQUE, 0, op,
1429 "Quitting will delete your character PERMANENTLY. If you are sure you want to do this, then use the quit_character command instead of quit.");
1430 return 1;
1431}
1432
1433int
1434command_real_quit (object *op, char *params)
1435{
1436 send_query (&op->contr->socket, CS_QUERY_SINGLECHAR, "Quitting will delete your character.\nAre you sure you want to quit (y/n):");
1437
1438 op->contr->state = ST_CONFIRM_QUIT;
1439 return 1;
1440}
1441
1442/*
1443 * don't allow people to exit explore mode. It otherwise becomes
1444 * really easy to abuse this.
1445 */
1446int
1447command_explore (object *op, char *params)
1448{
1449 if (settings.explore_mode == FALSE)
1450 return 1;
1451 /*
1452 * I guess this is the best way to see if we are solo or not. Actually,
1453 * are there any cases when first_player->next==NULL and we are not solo?
1454 */
1455 if ((first_player != op->contr) || (first_player->next != NULL))
1456 {
1457 new_draw_info (NDI_UNIQUE, 0, op, "You can not enter explore mode if you are in a party");
1458 }
1459 else if (op->contr->explore)
1460 new_draw_info (NDI_UNIQUE, 0, op, "There is no return from explore mode");
1461 else
1462 {
1463 op->contr->explore = 1;
1464 new_draw_info (NDI_UNIQUE, 0, op, "You are now in explore mode");
1465 }
1466 return 1;
1467}
1468
1469int
1470command_sound (object *op, char *params)
1471{
1472 if (op->contr->socket.sound)
1473 {
1474 op->contr->socket.sound = 0;
1475 new_draw_info (NDI_UNIQUE, 0, op, "Silence is golden...");
1476 }
1477 else
1478 {
1479 op->contr->socket.sound = 1;
1480 new_draw_info (NDI_UNIQUE, 0, op, "The sounds are enabled.");
1481 }
1482 return 1;
1483}
1484
1485/* Perhaps these should be in player.c, but that file is
1486 * already a bit big.
1487 */
1488
1489void
1490receive_player_name (object *op, char k)
1491{
1492
1493 if (!check_name (op->contr, op->contr->write_buf + 1))
1494 {
1495 get_name (op);
1496 return;
1497 }
1498 op->name = op->contr->write_buf + 1;
1499 op->name_pl = op->contr->write_buf + 1;
1500 new_draw_info (NDI_UNIQUE, 0, op, op->contr->write_buf);
1501 op->contr->name_changed = 1;
1502 get_password (op);
1503}
1504
1505void
1506receive_player_password (object *op, char k)
1507{
1508
1509 unsigned int pwd_len = strlen (op->contr->write_buf);
1510
1511 if (pwd_len <= 1 || pwd_len > 17)
1512 {
1513 get_name (op);
1514 return;
1515 }
1516 new_draw_info (NDI_UNIQUE, 0, op, " "); /* To hide the password better */
1517
1518 if (checkbanned (op->name, op->contr->socket.host))
1519 {
1520 LOG (llevInfo, "Banned player tried to add: [%s@%s]\n", &op->name, op->contr->socket.host);
1521 new_draw_info (NDI_UNIQUE | NDI_RED, 0, op, "You are not allowed to play.");
1522 get_name (op);
1523 return;
1524 }
1525
1526 if (op->contr->state == ST_CONFIRM_PASSWORD)
1527 {
1528 if (!check_password (op->contr->write_buf + 1, op->contr->password))
1529 {
1530 new_draw_info (NDI_UNIQUE, 0, op, "The passwords did not match.");
1531 get_name (op);
1532 return;
1533 }
1534 clear_win_info (op);
1535 display_motd (op);
1536 new_draw_info (NDI_UNIQUE, 0, op, " ");
1537 new_draw_info (NDI_UNIQUE, 0, op, "Welcome, Brave New Warrior!");
1538 new_draw_info (NDI_UNIQUE, 0, op, " ");
1539 Roll_Again (op);
1540 op->contr->state = ST_ROLL_STAT;
1541 return;
1542 }
1543 strcpy (op->contr->password, crypt_string (op->contr->write_buf + 1, NULL));
1544 op->contr->state = ST_ROLL_STAT;
1545 check_login (op);
1546 return;
1547}
1548
1549
1550int
1551explore_mode (void)
1552{
1553 player *pl;
1554
1555 if (settings.explore_mode == TRUE)
1556 {
1557 for (pl = first_player; pl != (player *) NULL; pl = pl->next)
1558 if (pl->explore)
1559 return 1;
1560 }
1561 return 0;
1562}
1563
1564
1565int
1566command_title (object *op, char *params) 887command_title (object *op, char *params)
1567{ 888{
1568 char buf[MAX_BUF]; 889 char buf[MAX_BUF];
1569 890
1570 if (settings.set_title == FALSE) 891 if (settings.set_title == FALSE)
1607 strcpy (op->contr->own_title, params); 928 strcpy (op->contr->own_title, params);
1608 return 1; 929 return 1;
1609} 930}
1610 931
1611int 932int
1612command_save (object *op, char *params)
1613{
1614// if (get_map_flags(op->map, NULL, op->x, op->y, NULL, NULL) & P_NO_CLERIC) {
1615// new_draw_info(NDI_UNIQUE, 0, op, "You can not save on unholy ground");
1616// } else
1617 if (!op->stats.exp)
1618 {
1619 new_draw_info (NDI_UNIQUE, 0, op, "You don't deserve to save yet.");
1620 }
1621 else
1622 {
1623 if (save_player (op, 1))
1624 new_draw_info (NDI_UNIQUE, 0, op, "You have been saved.");
1625 else
1626 new_draw_info (NDI_UNIQUE, 0, op, "SAVE FAILED!");
1627 }
1628 return 1;
1629}
1630
1631
1632int
1633command_peaceful (object *op, char *params)
1634{
1635 new_draw_info (NDI_UNIQUE, 0, op,
1636 "You cannot change your peaceful setting with this command."
1637 " Please speak to the priest in the temple of Gorokh"
1638 " if you want to become hostile or in temple of Valriel" " if you want to become peaceful again.");
1639
1640/*
1641 if((op->contr->peaceful=!op->contr->peaceful))
1642 new_draw_info(NDI_UNIQUE, 0,op,"You will not attack other players.");
1643 else
1644 new_draw_info(NDI_UNIQUE, 0,op,"You will attack other players.");
1645*/
1646 return 1;
1647}
1648
1649
1650
1651int
1652command_wimpy (object *op, char *params)
1653{
1654 int i;
1655 char buf[MAX_BUF];
1656
1657 if (params == NULL || !sscanf (params, "%d", &i))
1658 {
1659 sprintf (buf, "Your current wimpy level is %d.", op->run_away);
1660 new_draw_info (NDI_UNIQUE, 0, op, buf);
1661 return 1;
1662 }
1663 sprintf (buf, "Your new wimpy level is %d.", i);
1664 new_draw_info (NDI_UNIQUE, 0, op, buf);
1665 op->run_away = i;
1666 return 1;
1667}
1668
1669
1670int
1671command_brace (object *op, char *params)
1672{
1673 if (!params)
1674 op->contr->braced = !op->contr->braced;
1675 else
1676 op->contr->braced = onoff_value (params);
1677
1678 if (op->contr->braced)
1679 new_draw_info (NDI_UNIQUE, 0, op, "You are braced.");
1680 else
1681 new_draw_info (NDI_UNIQUE, 0, op, "Not braced.");
1682
1683 fix_player (op);
1684 return 0;
1685}
1686
1687int
1688command_style_map_info (object *op, char *params)
1689{
1690 extern mapstruct *styles;
1691 mapstruct *mp;
1692 int maps_used = 0, mapmem = 0, objects_used = 0, x, y;
1693 object *tmp;
1694
1695 for (mp = styles; mp != NULL; mp = mp->next)
1696 {
1697 maps_used++;
1698 mapmem += MAP_WIDTH (mp) * MAP_HEIGHT (mp) * (sizeof (object *) + sizeof (MapSpace)) + sizeof (mapstruct);
1699 for (x = 0; x < MAP_WIDTH (mp); x++)
1700 {
1701 for (y = 0; y < MAP_HEIGHT (mp); y++)
1702 {
1703 for (tmp = get_map_ob (mp, x, y); tmp != NULL; tmp = tmp->above)
1704 objects_used++;
1705 }
1706 }
1707 }
1708 new_draw_info_format (NDI_UNIQUE, 0, op, "Style maps loaded: %d", maps_used);
1709 new_draw_info (NDI_UNIQUE, 0, op, "Memory used, not");
1710 new_draw_info_format (NDI_UNIQUE, 0, op, "including objects: %d", mapmem);
1711 new_draw_info_format (NDI_UNIQUE, 0, op, "Style objects: %d", objects_used);
1712 new_draw_info_format (NDI_UNIQUE, 0, op, "Mem for objects: %d", objects_used * sizeof (object));
1713 return 0;
1714}
1715
1716int
1717command_kill_pets (object *op, char *params) 933command_kill_pets (object *op, char *params)
1718{ 934{
1719 objectlink *obl, *next; 935 objectlink *obl, *next;
1720 int counter = 0, removecount = 0; 936 int counter = 0, removecount = 0;
1721 937
1731 for (obl = first_friendly_object; obl != NULL; obl = next) 947 for (obl = first_friendly_object; obl != NULL; obl = next)
1732 { 948 {
1733 object *ob = obl->ob; 949 object *ob = obl->ob;
1734 950
1735 next = obl->next; 951 next = obl->next;
1736 if (get_owner (ob) == op) 952 if (ob->owner == op)
1737 if (++counter == target || (target == 0 && !strcasecmp (ob->name, params))) 953 if (++counter == target || (target == 0 && !strcasecmp (ob->name, params)))
1738 { 954 {
1739 if (!QUERY_FLAG (ob, FLAG_REMOVED))
1740 remove_ob (ob);
1741 remove_friendly_object (ob);
1742 free_object (ob); 955 ob->destroy ();
1743 removecount++; 956 removecount++;
1744 } 957 }
1745 } 958 }
1746 if (removecount != 0) 959 if (removecount != 0)
1747 new_draw_info_format (NDI_UNIQUE, 0, op, "killed %d pets.\n", removecount); 960 new_draw_info_format (NDI_UNIQUE, 0, op, "killed %d pets.\n", removecount);

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines