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.20 by root, Tue Dec 12 21:39:57 2006 UTC vs.
Revision 1.52 by pippijn, Fri Mar 2 11:07:59 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 maptile *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 maptile *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
228int 165int
229command_afk (object *op, char *params)
230{
231 if QUERY_FLAG
232 (op, FLAG_AFK)
233 {
234 CLEAR_FLAG (op, FLAG_AFK);
235 new_draw_info (NDI_UNIQUE, 0, op, "You are no longer AFK");
236 }
237 else
238 {
239 SET_FLAG (op, FLAG_AFK);
240 new_draw_info (NDI_UNIQUE, 0, op, "You are now AFK");
241 }
242 return 1;
243}
244
245int
246command_mapinfo (object *op, char *params) 166command_mapinfo (object *op, char *params)
247{ 167{
248 current_map_info (op); 168 current_map_info (op);
249 return 1; 169 return 1;
250} 170}
255 current_region_info (op); 175 current_region_info (op);
256 return 1; 176 return 1;
257} 177}
258 178
259int 179int
260command_maps (object *op, char *params)
261{
262 map_info (op, params);
263 return 1;
264}
265
266int
267command_time (object *op, char *params) 180command_time (object *op, char *params)
268{ 181{
269 print_tod (op); 182 print_tod (op);
270 return 1; 183 return 1;
271} 184}
272 185
273int 186int
274command_weather (object *op, char *params) 187command_weather (object *op, char *params)
275{ 188{
189#if 0
276 int wx, wy, temp, sky; 190 int wx, wy, temp, sky;
277 char buf[MAX_BUF]; 191 char buf[MAX_BUF];
278 192
279 if (settings.dynamiclevel < 1) 193 if (settings.dynamiclevel < 1)
280 return 1; 194 return 1;
396 break; 310 break;
397 case SKY_BLIZZARD: 311 case SKY_BLIZZARD:
398 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!");
399 break; 313 break;
400 } 314 }
401 return 1; 315#endif
402}
403
404int
405command_archs (object *op, char *params)
406{
407 arch_info (op);
408 return 1; 316 return 1;
409} 317}
410 318
411int 319int
412command_hiscore (object *op, char *params) 320command_hiscore (object *op, char *params)
423 331
424 if (params == NULL || !sscanf (params, "%d", &i)) 332 if (params == NULL || !sscanf (params, "%d", &i))
425 { 333 {
426 sprintf (buf, "Global debug level is %d.", settings.debug); 334 sprintf (buf, "Global debug level is %d.", settings.debug);
427 new_draw_info (NDI_UNIQUE, 0, op, buf); 335 new_draw_info (NDI_UNIQUE, 0, op, buf);
428 return 1;
429 }
430 if (op != NULL && !QUERY_FLAG (op, FLAG_WIZ))
431 {
432 new_draw_info (NDI_UNIQUE, 0, op, "Privileged command.");
433 return 1; 336 return 1;
434 } 337 }
435 settings.debug = (enum LogLevel) FABS (i); 338 settings.debug = (enum LogLevel) FABS (i);
436 sprintf (buf, "Set debug level to %d.", i); 339 sprintf (buf, "Set debug level to %d.", i);
437 new_draw_info (NDI_UNIQUE, 0, op, buf); 340 new_draw_info (NDI_UNIQUE, 0, op, buf);
463 dump_friendly_objects (); 366 dump_friendly_objects ();
464 return 0; 367 return 0;
465} 368}
466 369
467int 370int
468command_dumpmap (object *op, char *params)
469{
470 if (op)
471 dump_map (op->map);
472 return 0;
473}
474
475int
476command_dumpallmaps (object *op, char *params)
477{
478 dump_all_maps ();
479 return 0;
480}
481
482int
483command_printlos (object *op, char *params) 371command_printlos (object *op, char *params)
484{ 372{
485 if (op) 373 if (op)
486 print_los (op); 374 print_los (op);
487 return 0; 375 return 0;
492command_version (object *op, char *params) 380command_version (object *op, char *params)
493{ 381{
494 version (op); 382 version (op);
495 return 0; 383 return 0;
496} 384}
497
498 385
499#ifndef BUG_LOG 386#ifndef BUG_LOG
500# define BUG_LOG "bug_log" 387# define BUG_LOG "bug_log"
501#endif 388#endif
502void 389void
511 } 398 }
512 else 399 else
513 { 400 {
514 LOG (llevError, "Cannot write bugs file %s: %s\n", BUG_LOG, strerror (errno)); 401 LOG (llevError, "Cannot write bugs file %s: %s\n", BUG_LOG, strerror (errno));
515 } 402 }
516}
517
518int
519command_output_sync (object *op, char *params)
520{
521 int val;
522
523 if (!params)
524 {
525 new_draw_info_format (NDI_UNIQUE, 0, op, "Output sync time is presently %d", op->contr->outputs_sync);
526 return 1;
527 }
528 val = atoi (params);
529 if (val > 0)
530 {
531 op->contr->outputs_sync = val;
532 new_draw_info_format (NDI_UNIQUE, 0, op, "Output sync time now set to %d", op->contr->outputs_sync);
533 }
534 else
535 new_draw_info (NDI_UNIQUE, 0, op, "Invalid value for output_sync.");
536
537 return 1;
538}
539
540int
541command_output_count (object *op, char *params)
542{
543 int val;
544
545 if (!params)
546 {
547 new_draw_info_format (NDI_UNIQUE, 0, op, "Output count is presently %d", op->contr->outputs_count);
548 return 1;
549 }
550 val = atoi (params);
551 if (val > 0)
552 {
553 op->contr->outputs_count = val;
554 new_draw_info_format (NDI_UNIQUE, 0, op, "Output count now set to %d", op->contr->outputs_count);
555 }
556 else
557 new_draw_info (NDI_UNIQUE, 0, op, "Invalid value for output_count.");
558
559 return 1;
560}
561
562int
563command_listen (object *op, char *params)
564{
565 int i;
566
567 if (params == NULL || !sscanf (params, "%d", &i))
568 {
569 new_draw_info_format (NDI_UNIQUE, 0, op, "Set listen to what (presently %d)?", op->contr->listening);
570 return 1;
571 }
572 op->contr->listening = (char) i;
573 new_draw_info_format (NDI_UNIQUE, 0, op, "Your verbose level is now %d.", i);
574 return 1;
575} 403}
576 404
577/* Prints out some useful information for the character. Everything we print 405/* Prints out some useful information for the character. Everything we print
578 * out can be determined by the docs, so we aren't revealing anything extra - 406 * out can be determined by the docs, so we aren't revealing anything extra -
579 * rather, we are making it convenient to find the values. params have 407 * rather, we are making it convenient to find the values. params have
610 438
611int 439int
612command_fix_me (object *op, char *params) 440command_fix_me (object *op, char *params)
613{ 441{
614 sum_weight (op); 442 sum_weight (op);
615 fix_player (op); 443 op->update_stats ();
616 return 1; 444 new_draw_info (NDI_UNIQUE, 0, op, "Your character was fixed.");
617}
618 445
619int
620command_players (object *op, char *paramss)
621{
622 char buf[MAX_BUF];
623 char *t;
624 DIR *Dir;
625
626 sprintf (buf, "%s/%s/", settings.localdir, settings.playerdir);
627 t = buf + strlen (buf);
628 if ((Dir = opendir (buf)) != NULL)
629 {
630 const struct dirent *Entry;
631
632 while ((Entry = readdir (Dir)) != NULL)
633 {
634 /* skip '.' , '..' */
635 if (!((Entry->d_name[0] == '.' && Entry->d_name[1] == '\0') ||
636 (Entry->d_name[0] == '.' && Entry->d_name[1] == '.' && Entry->d_name[2] == '\0')))
637 {
638 struct stat Stat;
639
640 strcpy (t, Entry->d_name);
641 if (stat (buf, &Stat) == 0)
642 {
643 /* This was not posix compatible
644 * if ((Stat.st_mode & S_IFMT)==S_IFDIR) {
645 */
646 if (S_ISDIR (Stat.st_mode))
647 {
648 char buf2[MAX_BUF];
649 struct tm *tm = localtime (&Stat.st_mtime);
650
651 sprintf (buf2, "%s\t%04d %02d %02d %02d %02d %02d",
652 Entry->d_name, 1900 + tm->tm_year, 1 + tm->tm_mon, tm->tm_mday, tm->tm_hour, tm->tm_min, tm->tm_sec);
653 new_draw_info (NDI_UNIQUE, 0, op, buf2);
654 }
655 }
656 }
657 }
658 }
659 closedir (Dir);
660 return 0; 446 return 1;
661} 447}
662
663
664 448
665int 449int
666command_logs (object *op, char *params) 450command_logs (object *op, char *params)
667{ 451{
668 new_draw_info (NDI_UNIQUE, 0, op, "Nobody is currently logging kills."); 452 new_draw_info (NDI_UNIQUE, 0, op, "Nobody is currently logging kills.");
669 453
670 return 1;
671}
672
673int
674command_applymode (object *op, char *params)
675{
676 unapplymode unapply = op->contr->unapply;
677 static const char *const types[] = { "nochoice", "never", "always" };
678
679 if (!params)
680 {
681 new_draw_info_format (NDI_UNIQUE, 0, op, "applymode is set to %s", types[op->contr->unapply]);
682 return 1;
683 }
684
685 if (!strcmp (params, "nochoice"))
686 op->contr->unapply = unapply_nochoice;
687 else if (!strcmp (params, "never"))
688 op->contr->unapply = unapply_never;
689 else if (!strcmp (params, "always"))
690 op->contr->unapply = unapply_always;
691 else
692 {
693 new_draw_info_format (NDI_UNIQUE, 0, op, "applymode: Unknown options %s, valid options are nochoice, never, always", params);
694 return 0;
695 }
696 new_draw_info_format (NDI_UNIQUE, 0, op, "Applymode %s set to %s",
697 (unapply == op->contr->unapply ? "" : " now"), types[op->contr->unapply]);
698 return 1; 454 return 1;
699} 455}
700 456
701int 457int
702command_bowmode (object *op, char *params) 458command_bowmode (object *op, char *params)
722 found++; 478 found++;
723 op->contr->bowtype = (bowtype_t) i; 479 op->contr->bowtype = (bowtype_t) i;
724 break; 480 break;
725 } 481 }
726 } 482 }
483
727 if (!found) 484 if (!found)
728 { 485 {
729 sprintf (buf, "bowmode: Unknown options %s, valid options are:", params); 486 sprintf (buf, "bowmode: Unknown options %s, valid options are:", params);
730 for (i = 0; i <= bow_bestarrow; i++) 487 for (i = 0; i <= bow_bestarrow; i++)
731 { 488 {
737 strcat (buf, "."); 494 strcat (buf, ".");
738 } 495 }
739 new_draw_info_format (NDI_UNIQUE, 0, op, buf); 496 new_draw_info_format (NDI_UNIQUE, 0, op, buf);
740 return 0; 497 return 0;
741 } 498 }
499
742 new_draw_info_format (NDI_UNIQUE, 0, op, "bowmode %s set to %s", (oldtype == op->contr->bowtype ? "" : "now"), types[op->contr->bowtype]); 500 new_draw_info_format (NDI_UNIQUE, 0, op, "bowmode %s set to %s", (oldtype == op->contr->bowtype ? "" : "now"), types[op->contr->bowtype]);
743 return 1;
744}
745
746int
747command_petmode (object *op, char *params)
748{
749 petmode_t oldtype = op->contr->petmode;
750 static const char *const types[] = { "normal", "sad", "defend", "arena" };
751
752 if (!params)
753 {
754 new_draw_info_format (NDI_UNIQUE, 0, op, "petmode is set to %s", types[op->contr->petmode]);
755 return 1;
756 }
757
758 if (!strcmp (params, "normal"))
759 op->contr->petmode = pet_normal;
760 else if (!strcmp (params, "sad"))
761 op->contr->petmode = pet_sad;
762 else if (!strcmp (params, "defend"))
763 op->contr->petmode = pet_defend;
764 else if (!strcmp (params, "arena"))
765 op->contr->petmode = pet_arena;
766 else
767 {
768 new_draw_info_format (NDI_UNIQUE, 0, op,
769 "petmode: Unknown options %s, valid options are normal," "sad (seek and destroy), defend, arena", params);
770 return 0;
771 }
772 new_draw_info_format (NDI_UNIQUE, 0, op, "petmode %s set to %s", (oldtype == op->contr->petmode ? "" : "now"), types[op->contr->petmode]);
773 return 1; 501 return 1;
774} 502}
775 503
776int 504int
777command_showpets (object *op, char *params) 505command_showpets (object *op, char *params)
785 for (obl = first_friendly_object; obl != NULL; obl = next) 513 for (obl = first_friendly_object; obl != NULL; obl = next)
786 { 514 {
787 object *ob = obl->ob; 515 object *ob = obl->ob;
788 516
789 next = obl->next; 517 next = obl->next;
790 if (get_owner (ob) == op) 518 if (ob->owner == op)
791 { 519 {
792 if (target == 0) 520 if (target == 0)
793 { 521 {
794 if (counter == 0) 522 if (counter == 0)
795 new_draw_info (NDI_UNIQUE, 0, op, "Pets:"); 523 new_draw_info (NDI_UNIQUE, 0, op, "Pets:");
818 new_draw_info (NDI_UNIQUE, 0, op, "no such pet."); 546 new_draw_info (NDI_UNIQUE, 0, op, "no such pet.");
819 return 0; 547 return 0;
820} 548}
821 549
822int 550int
823command_usekeys (object *op, char *params)
824{
825 usekeytype oldtype = op->contr->usekeys;
826 static const char *const types[] = { "inventory", "keyrings", "containers" };
827
828 if (!params)
829 {
830 new_draw_info_format (NDI_UNIQUE, 0, op, "usekeys is set to %s", types[op->contr->usekeys]);
831 return 1;
832 }
833
834 if (!strcmp (params, "inventory"))
835 op->contr->usekeys = key_inventory;
836 else if (!strcmp (params, "keyrings"))
837 op->contr->usekeys = keyrings;
838 else if (!strcmp (params, "containers"))
839 op->contr->usekeys = containers;
840 else
841 {
842 new_draw_info_format (NDI_UNIQUE, 0, op, "usekeys: Unknown options %s, valid options are inventory, keyrings, containers", params);
843 return 0;
844 }
845 new_draw_info_format (NDI_UNIQUE, 0, op, "usekeys %s set to %s", (oldtype == op->contr->usekeys ? "" : "now"), types[op->contr->usekeys]);
846 return 1;
847}
848
849int
850command_resistances (object *op, char *params) 551command_resistances (object *op, char *params)
851{ 552{
852 int i; 553 int i;
853 554
854 if (!op) 555 if (!op)
902 char filename[MAX_BUF], line[80]; 603 char filename[MAX_BUF], line[80];
903 int namelen, linelen = 0; 604 int namelen, linelen = 0;
904 605
905 switch (what) 606 switch (what)
906 { 607 {
907 case 1: 608 case 1:
908 sprintf (filename, "%s/wizhelp", settings.datadir); 609 sprintf (filename, "%s/wizhelp", settings.datadir);
909 new_draw_info (NDI_UNIQUE, 0, op, " Wiz commands:"); 610 new_draw_info (NDI_UNIQUE, 0, op, " Wiz commands:");
910 break; 611 break;
911 case 3: 612 case 3:
912 sprintf (filename, "%s/mischelp", settings.datadir); 613 sprintf (filename, "%s/mischelp", settings.datadir);
913 new_draw_info (NDI_UNIQUE, 0, op, " Misc help:"); 614 new_draw_info (NDI_UNIQUE, 0, op, " Misc help:");
914 break; 615 break;
915 default: 616 default:
916 sprintf (filename, "%s/help", settings.datadir); 617 sprintf (filename, "%s/help", settings.datadir);
917 new_draw_info (NDI_UNIQUE, 0, op, " Commands:"); 618 new_draw_info (NDI_UNIQUE, 0, op, " Commands:");
918 break; 619 break;
919 } 620 }
621
920 if (!(dirp = opendir (filename))) 622 if (!(dirp = opendir (filename)))
921 return; 623 return;
922 624
923 line[0] = '\0'; 625 line[0] = '\0';
924 for (de = readdir (dirp); de; de = readdir (dirp)) 626 while ((de = readdir (dirp)))
925 { 627 {
926 namelen = NAMLEN (de); 628 namelen = strlen (de->d_name);
927 if (namelen <= 2 && *de->d_name == '.' && (namelen == 1 || de->d_name[1] == '.')) 629 if (namelen <= 2 && *de->d_name == '.' && (namelen == 1 || de->d_name[1] == '.'))
928 continue; 630 continue;
929 linelen += namelen + 1; 631 linelen += namelen + 1;
930 if (linelen > 42) 632 if (linelen > 42)
931 { 633 {
1136 return 0; 838 return 0;
1137 } 839 }
1138} 840}
1139 841
1140int 842int
1141command_quit (object *op, char *params)
1142{
1143 new_draw_info (NDI_UNIQUE, 0, op,
1144 "Quitting will delete your character PERMANENTLY. If you are sure you want to do this, then use the quit_character command instead of quit.");
1145 return 1;
1146}
1147
1148int
1149command_real_quit (object *op, char *params)
1150{
1151 send_query (&op->contr->socket, CS_QUERY_SINGLECHAR, "Quitting will delete your character.\nAre you sure you want to quit (y/n):");
1152
1153 op->contr->state = ST_CONFIRM_QUIT;
1154 return 1;
1155}
1156
1157/*
1158 * don't allow people to exit explore mode. It otherwise becomes
1159 * really easy to abuse this.
1160 */
1161int
1162command_explore (object *op, char *params)
1163{
1164 if (settings.explore_mode == FALSE)
1165 return 1;
1166 /*
1167 * I guess this is the best way to see if we are solo or not. Actually,
1168 * are there any cases when first_player->next==NULL and we are not solo?
1169 */
1170 if ((first_player != op->contr) || (first_player->next != NULL))
1171 {
1172 new_draw_info (NDI_UNIQUE, 0, op, "You can not enter explore mode if you are in a party");
1173 }
1174 else if (op->contr->explore)
1175 new_draw_info (NDI_UNIQUE, 0, op, "There is no return from explore mode");
1176 else
1177 {
1178 op->contr->explore = 1;
1179 new_draw_info (NDI_UNIQUE, 0, op, "You are now in explore mode");
1180 }
1181 return 1;
1182}
1183
1184int
1185command_sound (object *op, char *params)
1186{
1187 if (op->contr->socket.sound)
1188 {
1189 op->contr->socket.sound = 0;
1190 new_draw_info (NDI_UNIQUE, 0, op, "Silence is golden...");
1191 }
1192 else
1193 {
1194 op->contr->socket.sound = 1;
1195 new_draw_info (NDI_UNIQUE, 0, op, "The sounds are enabled.");
1196 }
1197 return 1;
1198}
1199
1200/* Perhaps these should be in player.c, but that file is
1201 * already a bit big.
1202 */
1203
1204void
1205receive_player_name (object *op, char k)
1206{
1207
1208 if (!check_name (op->contr, op->contr->write_buf + 1))
1209 {
1210 get_name (op);
1211 return;
1212 }
1213 op->name = op->contr->write_buf + 1;
1214 op->name_pl = op->contr->write_buf + 1;
1215 new_draw_info (NDI_UNIQUE, 0, op, op->contr->write_buf);
1216 op->contr->name_changed = 1;
1217 get_password (op);
1218}
1219
1220void
1221receive_player_password (object *op, char k)
1222{
1223
1224 unsigned int pwd_len = strlen (op->contr->write_buf);
1225
1226 if (pwd_len <= 1 || pwd_len > 17)
1227 {
1228 get_name (op);
1229 return;
1230 }
1231 new_draw_info (NDI_UNIQUE, 0, op, " "); /* To hide the password better */
1232
1233 if (checkbanned (op->name, op->contr->socket.host))
1234 {
1235 LOG (llevInfo, "Banned player tried to add: [%s@%s]\n", &op->name, op->contr->socket.host);
1236 new_draw_info (NDI_UNIQUE | NDI_RED, 0, op, "You are not allowed to play.");
1237 get_name (op);
1238 return;
1239 }
1240
1241 if (op->contr->state == ST_CONFIRM_PASSWORD)
1242 {
1243 if (!check_password (op->contr->write_buf + 1, op->contr->password))
1244 {
1245 new_draw_info (NDI_UNIQUE, 0, op, "The passwords did not match.");
1246 get_name (op);
1247 return;
1248 }
1249 clear_win_info (op);
1250 display_motd (op);
1251 new_draw_info (NDI_UNIQUE, 0, op, " ");
1252 new_draw_info (NDI_UNIQUE, 0, op, "Welcome, Brave New Warrior!");
1253 new_draw_info (NDI_UNIQUE, 0, op, " ");
1254 Roll_Again (op);
1255 op->contr->state = ST_ROLL_STAT;
1256 return;
1257 }
1258 strcpy (op->contr->password, crypt_string (op->contr->write_buf + 1, NULL));
1259 op->contr->state = ST_ROLL_STAT;
1260 check_login (op);
1261 return;
1262}
1263
1264
1265int
1266explore_mode (void)
1267{
1268 player *pl;
1269
1270 if (settings.explore_mode == TRUE)
1271 {
1272 for (pl = first_player; pl != (player *) NULL; pl = pl->next)
1273 if (pl->explore)
1274 return 1;
1275 }
1276 return 0;
1277}
1278
1279
1280int
1281command_title (object *op, char *params) 843command_title (object *op, char *params)
1282{ 844{
1283 char buf[MAX_BUF]; 845 char buf[MAX_BUF];
1284 846
1285 if (settings.set_title == FALSE) 847 if (settings.set_title == FALSE)
1322 strcpy (op->contr->own_title, params); 884 strcpy (op->contr->own_title, params);
1323 return 1; 885 return 1;
1324} 886}
1325 887
1326int 888int
1327command_save (object *op, char *params)
1328{
1329// if (get_map_flags(op->map, NULL, op->x, op->y, NULL, NULL) & P_NO_CLERIC) {
1330// new_draw_info(NDI_UNIQUE, 0, op, "You can not save on unholy ground");
1331// } else
1332 if (!op->stats.exp)
1333 {
1334 new_draw_info (NDI_UNIQUE, 0, op, "You don't deserve to save yet.");
1335 }
1336 else
1337 {
1338 if (save_player (op, 1))
1339 new_draw_info (NDI_UNIQUE, 0, op, "You have been saved.");
1340 else
1341 new_draw_info (NDI_UNIQUE, 0, op, "SAVE FAILED!");
1342 }
1343 return 1;
1344}
1345
1346
1347int
1348command_peaceful (object *op, char *params)
1349{
1350 new_draw_info (NDI_UNIQUE, 0, op,
1351 "You cannot change your peaceful setting with this command."
1352 " Please speak to the priest in the temple of Gorokh"
1353 " if you want to become hostile or in temple of Valriel" " if you want to become peaceful again.");
1354
1355/*
1356 if((op->contr->peaceful=!op->contr->peaceful))
1357 new_draw_info(NDI_UNIQUE, 0,op,"You will not attack other players.");
1358 else
1359 new_draw_info(NDI_UNIQUE, 0,op,"You will attack other players.");
1360*/
1361 return 1;
1362}
1363
1364
1365
1366int
1367command_wimpy (object *op, char *params)
1368{
1369 int i;
1370 char buf[MAX_BUF];
1371
1372 if (params == NULL || !sscanf (params, "%d", &i))
1373 {
1374 sprintf (buf, "Your current wimpy level is %d.", op->run_away);
1375 new_draw_info (NDI_UNIQUE, 0, op, buf);
1376 return 1;
1377 }
1378 sprintf (buf, "Your new wimpy level is %d.", i);
1379 new_draw_info (NDI_UNIQUE, 0, op, buf);
1380 op->run_away = i;
1381 return 1;
1382}
1383
1384
1385int
1386command_brace (object *op, char *params)
1387{
1388 if (!params)
1389 op->contr->braced = !op->contr->braced;
1390 else
1391 op->contr->braced = onoff_value (params);
1392
1393 if (op->contr->braced)
1394 new_draw_info (NDI_UNIQUE, 0, op, "You are braced.");
1395 else
1396 new_draw_info (NDI_UNIQUE, 0, op, "Not braced.");
1397
1398 fix_player (op);
1399 return 0;
1400}
1401
1402int
1403command_style_map_info (object *op, char *params)
1404{
1405 extern maptile *styles;
1406 maptile *mp;
1407 int maps_used = 0, mapmem = 0, objects_used = 0, x, y;
1408 object *tmp;
1409
1410 for (mp = styles; mp != NULL; mp = mp->next)
1411 {
1412 maps_used++;
1413 mapmem += MAP_WIDTH (mp) * MAP_HEIGHT (mp) * (sizeof (object *) + sizeof (MapSpace)) + sizeof (maptile);
1414 for (x = 0; x < MAP_WIDTH (mp); x++)
1415 {
1416 for (y = 0; y < MAP_HEIGHT (mp); y++)
1417 {
1418 for (tmp = get_map_ob (mp, x, y); tmp != NULL; tmp = tmp->above)
1419 objects_used++;
1420 }
1421 }
1422 }
1423 new_draw_info_format (NDI_UNIQUE, 0, op, "Style maps loaded: %d", maps_used);
1424 new_draw_info (NDI_UNIQUE, 0, op, "Memory used, not");
1425 new_draw_info_format (NDI_UNIQUE, 0, op, "including objects: %d", mapmem);
1426 new_draw_info_format (NDI_UNIQUE, 0, op, "Style objects: %d", objects_used);
1427 new_draw_info_format (NDI_UNIQUE, 0, op, "Mem for objects: %d", objects_used * sizeof (object));
1428 return 0;
1429}
1430
1431int
1432command_kill_pets (object *op, char *params) 889command_kill_pets (object *op, char *params)
1433{ 890{
1434 objectlink *obl, *next; 891 objectlink *obl, *next;
1435 int counter = 0, removecount = 0; 892 int counter = 0, removecount = 0;
1436 893
1446 for (obl = first_friendly_object; obl != NULL; obl = next) 903 for (obl = first_friendly_object; obl != NULL; obl = next)
1447 { 904 {
1448 object *ob = obl->ob; 905 object *ob = obl->ob;
1449 906
1450 next = obl->next; 907 next = obl->next;
1451 if (get_owner (ob) == op) 908 if (ob->owner == op)
1452 if (++counter == target || (target == 0 && !strcasecmp (ob->name, params))) 909 if (++counter == target || (target == 0 && !strcasecmp (ob->name, params)))
1453 { 910 {
1454 ob->destroy (); 911 ob->destroy ();
1455 removecount++; 912 removecount++;
1456 } 913 }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines