ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/server/c_wiz.C
Revision: 1.68
Committed: Sun Apr 5 20:17:37 2009 UTC (15 years, 2 months ago) by root
Content type: text/plain
Branch: MAIN
Changes since 1.67: +7 -7 lines
Log Message:
*** empty log message ***

File Contents

# Content
1 /*
2 * This file is part of Deliantra, the Roguelike Realtime MMORPG.
3 *
4 * Copyright (©) 2005,2006,2007,2008 Marc Alexander Lehmann / Robin Redeker / the Deliantra team
5 * Copyright (©) 2002,2007 Mark Wedel & Crossfire Development Team
6 * Copyright (©) 1992,2007 Frank Tore Johansen
7 *
8 * Deliantra is free software: you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation, either version 3 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program. If not, see <http://www.gnu.org/licenses/>.
20 *
21 * The authors can be reached via e-mail to <support@deliantra.net>
22 */
23
24 #include <global.h>
25 #include <sproto.h>
26 #include <spells.h>
27 #include <treasure.h>
28 #include <skills.h>
29
30 /** Defines for DM item stack **/
31 #define STACK_SIZE 50 /* Stack size, static */
32
33 /* Values for 'from' field of get_dm_object */
34 #define STACK_FROM_NONE 0 /* Item was not found */
35 #define STACK_FROM_TOP 1 /* Item is stack top */
36 #define STACK_FROM_STACK 2 /* Item is somewhere in stack */
37 #define STACK_FROM_NUMBER 3 /* Item is a number (may be top) */
38
39
40 /**
41 * Enough of the DM functions seem to need this that I broke
42 * it out to a seperate function. name is the person
43 * being saught, rq is who is looking for them. This
44 * prints diagnostics messages, and returns the
45 * other player, or NULL otherwise.
46 */
47 static player *
48 get_other_player_from_name (object *op, char *name)
49 {
50 if (!name)
51 return NULL;
52
53 for_all_players (pl)
54 if (!strncmp (pl->ob->name, name, MAX_NAME))
55 {
56 if (pl->ob == op)
57 {
58 new_draw_info (NDI_UNIQUE, 0, op, "You can't do that to yourself.");
59 return NULL;
60 }
61
62 if (pl->ns->state != ST_PLAYING)
63 {
64 new_draw_info (NDI_UNIQUE, 0, op, "That player is in no state for that right now.");
65 return NULL;
66 }
67
68 return pl;
69 }
70
71 new_draw_info (NDI_UNIQUE, 0, op, "No such player.");
72 return 0;
73 }
74
75 /**
76 * Actually hides specified player (obviously a DM).
77 * If 'silent_dm' is non zero, other players are informed of DM entering/leaving,
78 * else they just think someone left/entered.
79 */
80 void
81 do_wizard_hide (object *op, int silent_dm)
82 {
83 if (op->contr->hidden)
84 {
85 op->contr->hidden = 0;
86 op->invisible = 1;
87 new_draw_info (NDI_UNIQUE, 0, op, "You are no longer hidden from other players");
88 op->map->players++;
89 new_draw_info_format (NDI_UNIQUE | NDI_ALL | NDI_DK_ORANGE, 5, NULL, "%s has entered the game.", &op->name);
90
91 if (!silent_dm)
92 new_draw_info (NDI_UNIQUE | NDI_ALL | NDI_LT_GREEN, 1, NULL, "The Dungeon Master has arrived!");
93 }
94 else
95 {
96 op->contr->hidden = 1;
97 new_draw_info (NDI_UNIQUE, 0, op, "Other players will no longer see you.");
98 op->map->players--;
99
100 if (!silent_dm)
101 new_draw_info (NDI_UNIQUE | NDI_ALL | NDI_LT_GREEN, 1, NULL, "The Dungeon Master is gone..");
102
103 new_draw_info_format (NDI_UNIQUE | NDI_ALL | NDI_DK_ORANGE, 5, NULL, "%s leaves the game.", &op->name);
104 new_draw_info_format (NDI_UNIQUE | NDI_ALL | NDI_DK_ORANGE, 5, NULL, "%s left the game.", &op->name);
105 }
106 }
107
108 int
109 command_hide (object *op, char *params)
110 {
111 do_wizard_hide (op, 0);
112 return 1;
113 }
114
115 /**
116 * This finds and returns the object which matches the name or
117 * object nubmer (specified via num #whatever).
118 */
119 static object *
120 find_object_both (char *params)
121 {
122 if (!params)
123 return NULL;
124
125 if (params[0] == '#')
126 return find_object (atol (params + 1));
127 else
128 return find_object_name (params);
129 }
130
131 /**
132 * Sets the god for some objects. params should contain two values -
133 * first the object to change, followed by the god to change it to.
134 */
135 int
136 command_setgod (object *op, char *params)
137 {
138 object *ob, *god;
139 char *str;
140
141 if (!params || !(str = strchr (params, ' ')))
142 {
143 new_draw_info (NDI_UNIQUE, 0, op, "Usage: setgod object god");
144 return 0;
145 }
146
147 /* kill the space, and set string to the next param */
148 *str++ = '\0';
149 if (!(ob = find_object_both (params)))
150 {
151 new_draw_info_format (NDI_UNIQUE, 0, op, "Set whose god - can not find object %s?", params);
152 return 1;
153 }
154
155 /*
156 * Perhaps this is overly restrictive? Should we perhaps be able
157 * to rebless altars and the like?
158 */
159 if (ob->type != PLAYER)
160 {
161 new_draw_info_format (NDI_UNIQUE, 0, op, "%s is not a player - can not change its god", &ob->name);
162 return 1;
163 }
164
165 god = find_god (str);
166 if (god == NULL)
167 {
168 new_draw_info_format (NDI_UNIQUE, 0, op, "No such god %s.", str);
169 return 1;
170 }
171
172 become_follower (ob, god);
173 return 1;
174 }
175
176 // TODO: Rewrite banish in perl and get rid of the following two functions
177 int
178 command_kick (object *op, char *params)
179 {
180 for_all_players (pl)
181 if ((params == NULL || !strcmp (&pl->ob->name, params)) && !INVOKE_PLAYER (KICK, pl, ARG_STRING (params)))
182 {
183 object *plop = pl->ob;
184
185 if (!QUERY_FLAG (plop, FLAG_REMOVED) && !QUERY_FLAG (plop, FLAG_FREED))
186 {
187 new_draw_info_format (NDI_UNIQUE | NDI_ALL | NDI_RED, 5, op, "%s is kicked out of the game.", &plop->name);
188 plop->contr->killer = op;
189 }
190
191 pl->ns->destroy ();
192 }
193
194 return 1;
195 }
196
197 //TODO
198 #if 0
199 int
200 command_save_overlay (object *op, char *params)
201 {
202 if (!op)
203 return 0;
204
205 if (op != NULL && !QUERY_FLAG (op, FLAG_WIZ))
206 {
207 new_draw_info (NDI_UNIQUE, 0, op, "Sorry, you can't force an overlay save.");
208 return 1;
209 }
210
211 new_save_map (op->map, 2);
212 new_save_map (op->map, 0);
213 new_draw_info (NDI_UNIQUE, 0, op, "Current map has been saved as an" " overlay.");
214
215 ready_map_name (op->map->path, 0);
216
217 return 1;
218 }
219 #endif
220
221 int
222 command_freeze (object *op, char *params)
223 {
224 int ticks;
225 player *pl;
226
227 if (!params)
228 {
229 new_draw_info (NDI_UNIQUE, 0, op, "Usage: freeze [ticks] <player>.");
230 return 1;
231 }
232
233 ticks = atoi (params);
234 if (ticks)
235 {
236 while ((isdigit (*params) || isspace (*params)) && *params != 0)
237 params++;
238 if (*params == 0)
239 {
240 new_draw_info (NDI_UNIQUE, 0, op, "Usage: freeze [ticks] <player>.");
241 return 1;
242 }
243 }
244 else
245 ticks = 100;
246
247 pl = get_other_player_from_name (op, params);
248 if (!pl)
249 return 1;
250
251 new_draw_info (NDI_UNIQUE | NDI_RED, 0, pl->ob, "You have been frozen by the DM!");
252 new_draw_info_format (NDI_UNIQUE, 0, op, "You freeze %s for %d ticks", &pl->ob->name, ticks);
253 pl->ob->speed_left = -(pl->ob->speed * ticks);
254 return 0;
255 }
256
257 int
258 command_arrest (object *op, char *params)
259 {
260 object *dummy;
261 player *pl;
262
263 if (!op)
264 return 0;
265
266 if (params == NULL)
267 {
268 new_draw_info (NDI_UNIQUE, 0, op, "Usage: arrest <player>.");
269 return 1;
270 }
271
272 pl = get_other_player_from_name (op, params);
273 if (!pl)
274 return 1;
275
276 dummy = get_jail_exit (pl->ob);
277 if (!dummy)
278 {
279 /* we have nowhere to send the prisoner.... */
280 new_draw_info (NDI_UNIQUE, 0, op, "can't jail player, there is no map to hold them");
281 return 0;
282 }
283
284 pl->ob->player_goto (dummy->slaying, dummy->stats.hp, dummy->stats.sp);//TODO
285 dummy->destroy ();
286
287 new_draw_info (NDI_UNIQUE, 0, pl->ob, "You have been arrested.");
288 new_draw_info (NDI_UNIQUE, 0, op, "OK.");
289 LOG (llevInfo, "Player %s arrested by %s\n", &pl->ob->name, &op->name);
290 return 1;
291 }
292
293 int
294 command_summon (object *op, char *params)
295 {
296 int i;
297 object *dummy;
298 player *pl;
299
300 if (!op)
301 return 0;
302
303 if (params == NULL)
304 {
305 new_draw_info (NDI_UNIQUE, 0, op, "Usage: summon <player>.");
306 return 1;
307 }
308
309 pl = get_other_player_from_name (op, params);
310 if (!pl)
311 return 1;
312
313 i = find_free_spot (op, op->map, op->x, op->y, 1, 9);
314 if (i == -1)
315 {
316 new_draw_info (NDI_UNIQUE, 0, op, "Can not find a free spot to place summoned player.");
317 return 1;
318 }
319
320 pl->ob->player_goto (op->map->path, op->x + freearr_x[i], op->y + freearr_y[i]);
321 new_draw_info (NDI_UNIQUE, 0, pl->ob, "You are summoned.");
322 new_draw_info (NDI_UNIQUE, 0, op, "OK.");
323
324 return 1;
325 }
326
327 /**
328 * This function is a real mess, because we're stucking getting
329 * the entire item description in one block of text, so we just
330 * can't simply parse it - we need to look for double quotes
331 * for example. This could actually get much simpler with just a
332 * little help from the client - if we could get line breaks, it
333 * makes parsing much easier, eg, something like:
334 * arch dragon
335 * name big nasty creature
336 * hp 5
337 * sp 30
338 * Is much easier to parse than
339 * dragon name "big nasty creature" hp 5 sp 30
340 * for example.
341 */
342 int
343 command_create (object *op, char *params)
344 {
345 object *tmp = NULL;
346 int nrof, i, magic, set_magic = 0, set_nrof = 0, gotquote, gotspace;
347 char buf[MAX_BUF], *cp, *bp = buf, *bp2, *bp3, *bp4, *endline;
348 archetype *at, *at_spell = NULL;
349 artifact *art = NULL;
350
351 if (!op)
352 return 0;
353
354 if (params == NULL)
355 {
356 new_draw_info (NDI_UNIQUE, 0, op, "Usage: create [nr] [magic] <archetype> [ of <artifact>]" " [variable_to_patch setting]");
357 return 1;
358 }
359
360 bp = params;
361
362 /* We need to know where the line ends */
363 endline = bp + strlen (bp);
364
365 if (sscanf (bp, "%d ", &nrof))
366 {
367 if ((bp = strchr (params, ' ')) == NULL)
368 {
369 new_draw_info (NDI_UNIQUE, 0, op, "Usage: create [nr] [magic] <archetype> [ of <artifact>]" " [variable_to_patch setting]");
370 return 1;
371 }
372 bp++;
373 set_nrof = 1;
374 LOG (llevDebug, "%s creates: (%d) %s\n", &op->name, nrof, bp);
375 }
376
377 if (sscanf (bp, "%d ", &magic))
378 {
379 if ((bp = strchr (bp, ' ')) == NULL)
380 {
381 new_draw_info (NDI_UNIQUE, 0, op, "Usage: create [nr] [magic] <archetype> [ of <artifact>]" " [variable_to_patch setting]");
382 return 1;
383 }
384
385 bp++;
386 set_magic = 1;
387 LOG (llevDebug, "%s creates: (%d) (%d) %s\n", &op->name, nrof, magic, bp);
388 }
389
390 if ((cp = strstr (bp, " of ")) != NULL)
391 {
392 *cp = '\0';
393 cp += 4;
394 }
395
396 for (bp2 = bp; *bp2; bp2++)
397 {
398 if (*bp2 == ' ')
399 {
400 *bp2 = '\0';
401 bp2++;
402 break;
403 }
404 }
405
406 if ((at = archetype::find (bp)) == NULL)
407 {
408 new_draw_info (NDI_UNIQUE, 0, op, "No such archetype.");
409 return 1;
410 }
411
412 if (cp)
413 {
414 char spell_name[MAX_BUF], *fsp = NULL;
415
416 /*
417 * Try to find a spell object for this. Note that
418 * we also set up spell_name which is only
419 * the first word.
420 */
421
422 at_spell = archetype::find (cp);
423 if (!at_spell || at_spell->type != SPELL)
424 at_spell = find_archetype_by_object_name (cp);
425 if (!at_spell || at_spell->type != SPELL)
426 {
427 assign (spell_name, cp);
428 fsp = strchr (spell_name, ' ');
429 if (fsp)
430 {
431 *fsp = 0;
432 fsp++;
433 at_spell = archetype::find (spell_name);
434
435 /* Got a spell, update the first string pointer */
436 if (at_spell && at_spell->type == SPELL)
437 bp2 = cp + strlen (spell_name) + 1;
438 else
439 at_spell = NULL;
440 }
441 }
442
443 /* OK - we didn't find a spell - presume the 'of'
444 * in this case means its an artifact.
445 */
446 if (!at_spell)
447 {
448 if (find_artifactlist (at->type) == NULL)
449 new_draw_info_format (NDI_UNIQUE, 0, op, "No artifact list for type %d\n", at->type);
450 else
451 {
452 art = find_artifactlist (at->type)->items;
453
454 while (art)
455 {
456 if (!strcmp (&art->item->name, cp))
457 break;
458
459 art = art->next;
460 }
461
462 if (!art)
463 new_draw_info_format (NDI_UNIQUE, 0, op, "No such artifact ([%d] of %s)", at->type, cp);
464 }
465
466 LOG (llevDebug, "%s creates: (%d) (%d) (%s) of (%s)\n", &op->name, set_nrof ? nrof : 0, set_magic ? magic : 0, bp, cp);
467 }
468 } /* if cp */
469
470 if ((at->type == ROD || at->type == WAND || at->type == SCROLL ||
471 at->type == HORN || at->type == SPELLBOOK) && !at_spell)
472 {
473 new_draw_info_format (NDI_UNIQUE, 0, op, "Unable to find spell %s for object that needs it, or it is of wrong type", cp);
474 return 1;
475 }
476
477 /*
478 * Rather than have two different blocks with a lot of similar code,
479 * just create one object, do all the processing, and then determine
480 * if that one object should be inserted or if we need to make copies.
481 */
482 tmp = arch_to_object (at);
483
484 if (set_magic)
485 set_abs_magic (tmp, magic);
486
487 if (art)
488 give_artifact_abilities (tmp, art->item);
489
490 if (need_identify (tmp))
491 {
492 SET_FLAG (tmp, FLAG_IDENTIFIED);
493 CLEAR_FLAG (tmp, FLAG_KNOWN_MAGICAL);
494 }
495
496 /*
497 * This entire block here tries to find variable pairings,
498 * eg, 'hp 4' or the like. The mess here is that values
499 * can be quoted (eg "my cool sword"); So the basic logic
500 * is we want to find two spaces, but if we got a quote,
501 * any spaces there don't count.
502 */
503 while (*bp2 && bp2 <= endline)
504 {
505 bp4 = NULL;
506 gotspace = 0;
507 gotquote = 0;
508
509 /* find the first quote */
510 for (bp3 = bp2; *bp3 && gotspace < 2 && gotquote < 2; bp3++)
511 {
512
513 /* Found a quote - now lets find the second one */
514 if (*bp3 == '"')
515 {
516 *bp3 = ' ';
517 bp2 = bp3 + 1; /* Update start of string */
518 bp3++;
519 gotquote++;
520 while (*bp3)
521 {
522 if (*bp3 == '"')
523 {
524 *bp3 = '\0';
525 gotquote++;
526 }
527 else
528 bp3++;
529 }
530 }
531 else if (*bp3 == ' ')
532 gotspace++;
533 }
534
535 /*
536 * If we got two spaces, send the second one to null.
537 * if we've reached the end of the line, increase gotspace -
538 * this is perfectly valid for the list entry listed.
539 */
540 if (gotspace == 2 || gotquote == 2)
541 {
542 bp3--; /* Undo the extra increment */
543 *bp3 = '\0';
544 }
545 else if (*bp3 == '\0')
546 gotspace++;
547
548 if ((gotquote && gotquote != 2) || (gotspace != 2 && gotquote != 2))
549 {
550 /*
551 * Unfortunately, we've clobbered lots of values, so printing
552 * out what we have probably isn't useful. Break out, because
553 * trying to recover is probably won't get anything useful
554 * anyways, and we'd be confused about end of line pointers
555 * anyways.
556 */
557 new_draw_info_format (NDI_UNIQUE, 0, op, "Malformed create line: %s", bp2);
558 break;
559 }
560
561 /* bp2 should still point to the start of this line,
562 * with bp3 pointing to the end
563 */
564 if (set_variable (tmp, bp2) == -1)
565 new_draw_info_format (NDI_UNIQUE, 0, op, "Unknown variable %s", bp2);
566 else
567 new_draw_info_format (NDI_UNIQUE, 0, op, "(%s#%d)->%s", &tmp->name, tmp->count, bp2);
568
569 bp2 = bp3 + 1;
570 }
571
572 if (at->nrof)
573 {
574 if (at_spell)
575 tmp->insert (arch_to_object (at_spell));
576
577 tmp->x = op->x;
578 tmp->y = op->y;
579 tmp->map = op->map;
580
581 if (set_nrof)
582 tmp->nrof = nrof;
583
584 op->insert (tmp);
585
586 /* Let's put this created item on stack so dm can access it easily. */
587 dm_stack_push (op->contr, tmp->count);
588
589 return 1;
590 }
591 else
592 {
593 for (i = 0; i < (set_nrof ? nrof : 1); i++)
594 {
595 object *prev = 0, *head = 0;
596
597 for (archetype *atmp = at; atmp; atmp = (archetype *)atmp->more)
598 {
599 object *dup = arch_to_object (atmp);
600
601 if (at_spell)
602 insert_ob_in_ob (arch_to_object (at_spell), dup);
603
604 /*
605 * The head is what contains all the important bits,
606 * so just copying it over should be fine.
607 */
608 if (!head)
609 {
610 head = dup;
611 tmp->copy_to (dup);
612 }
613
614 dup->x = op->x + dup->arch->x;
615 dup->y = op->y + dup->arch->y;
616 dup->map = op->map;
617
618 if (head != dup)
619 {
620 dup->head = head;
621 prev->more = dup;
622 }
623
624 prev = dup;
625 }
626
627 if (QUERY_FLAG (head, FLAG_ALIVE))
628 {
629 object *check = head;
630 int size_x = 0;
631 int size_y = 0;
632
633 while (check)
634 {
635 size_x = MAX (size_x, check->arch->x);
636 size_y = MAX (size_y, check->arch->y);
637 check = check->more;
638 }
639
640 if (out_of_map (op->map, head->x + size_x, head->y + size_y))
641 {
642 if (head->x < size_x || head->y < size_y)
643 {
644 dm_stack_pop (op->contr);
645 head->destroy ();
646 new_draw_info (NDI_UNIQUE, 0, op, "Object too big to insert in map, or wrong position.");
647 tmp->destroy ();
648 return 1;
649 }
650
651 check = head;
652
653 while (check)
654 {
655 check->x -= size_x;
656 check->y -= size_y;
657 check = check->more;
658 }
659 }
660
661 insert_ob_in_map (head, op->map, op, 0);
662 }
663 else
664 head = insert_ob_in_ob (head, op);
665
666 /* Let's put this created item on stack so dm can access it easily. */
667 /* Wonder if we really want to push all of these, but since
668 * things like rods have nrof 0, we want to cover those.
669 */
670 dm_stack_push (op->contr, head->count);
671
672 if (at->randomitems && !at_spell)
673 create_treasure (at->randomitems, head, GT_APPLY, op->map->difficulty, 0);
674 }
675
676 /* free the one we used to copy */
677 tmp->destroy ();
678 }
679
680 return 1;
681 }
682
683 /*
684 * Now follows dm-commands which are also acceptable from sockets
685 */
686
687 int
688 command_inventory (object *op, char *params)
689 {
690 int i;
691 object *tmp;
692
693 if (!params || !sscanf (params, "%d", &i) || !(tmp = find_object (i)))
694 {
695 op->contr->failmsg ("Inventory of what object (nr)?");
696 return 1;
697 }
698
699 op->contr->infobox (MSG_CHANNEL ("examine"), tmp->query_inventory (op));
700
701 return 1;
702 }
703
704 /* just show player's their skills for now. Dm's can
705 * already see skills w/ inventory command - b.t.
706 */
707
708 int
709 command_skills (object *op, char *params)
710 {
711 show_skills (op, params);
712 return 0;
713 }
714
715 int
716 command_dump (object *op, char *params)
717 {
718 object *tmp;
719
720 tmp = get_dm_object (op->contr, &params, NULL);
721 if (!tmp)
722 return 1;
723
724 char *dump = dump_object (tmp);
725 new_draw_info (NDI_UNIQUE, 0, op, dump);
726 free (dump);
727
728 if (QUERY_FLAG (tmp, FLAG_OBJ_ORIGINAL))
729 new_draw_info (NDI_UNIQUE, 0, op, "Object is marked original");
730
731 return 1;
732 }
733
734 int
735 command_patch (object *op, char *params)
736 {
737 char *arg, *arg2;
738 object *tmp;
739
740 tmp = get_dm_object (op->contr, &params, NULL);
741 if (!tmp)
742 /* Player already informed of failure */
743 return 1;
744
745 /* params set to first value by get_dm_default */
746 arg = params;
747 if (arg == NULL)
748 {
749 new_draw_info (NDI_UNIQUE, 0, op, "Patch what values?");
750 return 1;
751 }
752
753 if ((arg2 = strchr (arg, ' ')))
754 arg2++;
755
756 if (set_variable (tmp, arg) == -1)
757 new_draw_info_format (NDI_UNIQUE, 0, op, "Unknown variable %s", arg);
758 else
759 new_draw_info_format (NDI_UNIQUE, 0, op, "(%s#%d)->%s=%s", &tmp->name, tmp->count, arg, arg2);
760
761 return 1;
762 }
763
764 int
765 command_remove (object *op, char *params)
766 {
767 object *tmp;
768 int from;
769
770 tmp = get_dm_object (op->contr, &params, &from);
771 if (!tmp)
772 {
773 new_draw_info (NDI_UNIQUE, 0, op, "Remove what object (nr)?");
774 return 1;
775 }
776
777 if (tmp->type == PLAYER)
778 {
779 new_draw_info (NDI_UNIQUE, 0, op, "Unable to remove a player!");
780 return 1;
781 }
782
783 if (QUERY_FLAG (tmp, FLAG_REMOVED))
784 {
785 new_draw_info_format (NDI_UNIQUE, 0, op, "%s is already removed!", query_name (tmp));
786 return 1;
787 }
788
789 if (from != STACK_FROM_STACK)
790 /* Item is either stack top, or is a number thus is now stack top, let's remove it */
791 dm_stack_pop (op->contr);
792
793 /* Always work on the head - otherwise object will get in odd state */
794 if (tmp->head)
795 tmp = tmp->head;
796 tmp->remove ();
797 return 1;
798 }
799
800 int
801 command_free (object *op, char *params)
802 {
803 object *tmp;
804 int from;
805
806 tmp = get_dm_object (op->contr, &params, &from);
807
808 if (!tmp)
809 {
810 new_draw_info (NDI_UNIQUE, 0, op, "Free what object (nr)?");
811 return 1;
812 }
813
814 if (from != STACK_FROM_STACK)
815 /* Item is either stack top, or is a number thus is now stack top, let's remove it */
816 dm_stack_pop (op->contr);
817
818 if (tmp->head)
819 tmp = tmp->head;
820
821 tmp->destroy ();
822 return 1;
823 }
824
825 /**
826 * This adds exp to a player. We now allow adding to a specific skill.
827 */
828 int
829 command_addexp (object *op, char *params)
830 {
831 char buf[MAX_BUF], skill[MAX_BUF];
832 int q;
833 long long i; // use sint64 and finally provide format specifiers for sint64 etc. via configure
834 object *skillob = NULL;
835
836 skill[0] = '\0';
837 if ((params == NULL) || (strlen (params) > MAX_BUF) || ((q = sscanf (params, "%s %lld %s", buf, &i, skill)) < 2))
838 {
839 new_draw_info (NDI_UNIQUE, 0, op, "Usage: addexp <who> <how much> [<skill>].");
840 return 1;
841 }
842
843 for_all_players (pl)
844 if (!strncmp (pl->ob->name, buf, MAX_NAME))
845 {
846 if (q >= 3)
847 {
848 skillob = find_skill_by_name (pl->ob, skill);
849 if (!skillob)
850 {
851 new_draw_info_format (NDI_UNIQUE, 0, op, "Unable to find skill %s in %s", skill, buf);
852 return 1;
853 }
854
855 i = check_exp_adjust (skillob, i);
856 skillob->stats.exp += i;
857 calc_perm_exp (skillob);
858 player_lvl_adj (pl->ob, skillob);
859 }
860
861 pl->ob->stats.exp += i;
862 calc_perm_exp (pl->ob);
863 player_lvl_adj (pl->ob, NULL);
864
865 return 1;
866 }
867
868 new_draw_info (NDI_UNIQUE, 0, op, "No such player.");
869 return 1;
870 }
871
872 /**************************************************************************/
873
874 /* Mods made by Tyler Van Gorder, May 10-13, 1992. */
875
876 /* CSUChico : tvangod@cscihp.ecst.csuchico.edu */
877
878 /**************************************************************************/
879
880 int
881 command_stats (object *op, char *params)
882 {
883 char thing[20];
884 char buf[MAX_BUF];
885
886 thing[0] = '\0';
887 if (params == NULL || !sscanf (params, "%s", thing) || thing == NULL)
888 {
889 new_draw_info (NDI_UNIQUE, 0, op, "Who?");
890 return 1;
891 }
892
893 for_all_players (pl)
894 if (!strcmp (&pl->ob->name, thing))
895 {
896 sprintf (buf, "Str : %-2d H.P. : %-4d MAX : %d", pl->ob->stats.Str, pl->ob->stats.hp, pl->ob->stats.maxhp);
897 new_draw_info (NDI_UNIQUE, 0, op, buf);
898 sprintf (buf, "Dex : %-2d S.P. : %-4d MAX : %d", pl->ob->stats.Dex, pl->ob->stats.sp, pl->ob->stats.maxsp);
899 new_draw_info (NDI_UNIQUE, 0, op, buf);
900 sprintf (buf, "Con : %-2d AC : %-4d WC : %d", pl->ob->stats.Con, pl->ob->stats.ac, pl->ob->stats.wc);
901 new_draw_info (NDI_UNIQUE, 0, op, buf);
902 sprintf (buf, "Int : %-2d Damage : %d", pl->ob->stats.Int, pl->ob->stats.dam);
903 new_draw_info (NDI_UNIQUE, 0, op, buf);
904 sprintf (buf, "Wis : %-2d EXP : %" PRId64, pl->ob->stats.Wis, pl->ob->stats.exp);
905 new_draw_info (NDI_UNIQUE, 0, op, buf);
906 sprintf (buf, "Pow : %-2d Grace : %d", pl->ob->stats.Pow, pl->ob->stats.grace);
907 new_draw_info (NDI_UNIQUE, 0, op, buf);
908 sprintf (buf, "Cha : %-2d Food : %d", pl->ob->stats.Cha, pl->ob->stats.food);
909 new_draw_info (NDI_UNIQUE, 0, op, buf);
910 return 1;
911 }
912
913 new_draw_info (NDI_UNIQUE, 0, op, "No such player.");
914 return 1;
915 }
916
917 int
918 command_abil (object *op, char *params)
919 {
920 char thing[20], thing2[20];
921 int iii;
922 char buf[MAX_BUF];
923
924 iii = 0;
925 thing[0] = '\0';
926 thing2[0] = '\0';
927 if (params == NULL || !sscanf (params, "%s %s %d", thing, thing2, &iii) || thing == NULL)
928 {
929 new_draw_info (NDI_UNIQUE, 0, op, "Who?");
930 return 1;
931 }
932
933 if (thing2 == NULL)
934 {
935 new_draw_info (NDI_UNIQUE, 0, op, "You can't change that.");
936 return 1;
937 }
938
939 if (iii < MIN_STAT || iii > MAX_STAT)
940 {
941 new_draw_info (NDI_UNIQUE, 0, op, "Illegal range of stat.\n");
942 return 1;
943 }
944
945 for_all_players (pl)
946 {
947 if (!strcmp (&pl->ob->name, thing))
948 {
949 if (!strcmp ("str", thing2)) pl->ob->stats.Str = iii, pl->orig_stats.Str = iii;
950 if (!strcmp ("dex", thing2)) pl->ob->stats.Dex = iii, pl->orig_stats.Dex = iii;
951 if (!strcmp ("con", thing2)) pl->ob->stats.Con = iii, pl->orig_stats.Con = iii;
952 if (!strcmp ("wis", thing2)) pl->ob->stats.Wis = iii, pl->orig_stats.Wis = iii;
953 if (!strcmp ("cha", thing2)) pl->ob->stats.Cha = iii, pl->orig_stats.Cha = iii;
954 if (!strcmp ("int", thing2)) pl->ob->stats.Int = iii, pl->orig_stats.Int = iii;
955 if (!strcmp ("pow", thing2)) pl->ob->stats.Pow = iii, pl->orig_stats.Pow = iii;
956
957 sprintf (buf, "%s has been altered.", &pl->ob->name);
958 new_draw_info (NDI_UNIQUE, 0, op, buf);
959 pl->ob->update_stats ();
960 return 1;
961 }
962 }
963
964 new_draw_info (NDI_UNIQUE, 0, op, "No such player.");
965 return 1;
966 }
967
968 int
969 command_nowiz (object *op, char *params)
970 { /* 'nodm' is alias */
971 CLEAR_FLAG (op, FLAG_WIZ);
972 CLEAR_FLAG (op, FLAG_WIZPASS);
973 CLEAR_FLAG (op, FLAG_WIZCAST);
974 CLEAR_FLAG (op, FLAG_WIZLOOK);
975 op->contr->do_los = 1;
976
977 if (op->contr->hidden)
978 {
979 new_draw_info (NDI_UNIQUE, 0, op, "You are no longer hidden from other players");
980 op->map->players++;
981 new_draw_info_format (NDI_UNIQUE | NDI_ALL | NDI_DK_ORANGE, 5, NULL, "%s has entered the game.", &op->name);
982 op->contr->hidden = 0;
983 op->invisible = 1;
984 }
985 else
986 new_draw_info (NDI_UNIQUE | NDI_ALL | NDI_LT_GREEN, 1, NULL, "The Dungeon Master is gone..");
987
988 return 1;
989 }
990
991 /**
992 * object *op is trying to become dm.
993 * pl_name is name supplied by player. Restrictive DM will make it harder
994 * for socket users to become DM - in that case, it will check for the players
995 * character name.
996 */
997 static int
998 checkdm (object *op, const char *pl_name, const char *pl_passwd, const char *pl_host)
999 {
1000 FILE *dmfile;
1001 char buf[MAX_BUF];
1002 char line_buf[160], name[160], passwd[160], host[160];
1003
1004 #ifdef RESTRICTIVE_DM
1005 *pl_name = op->name ? op->name : "*";
1006 #endif
1007
1008 sprintf (buf, "%s/%s", settings.confdir, DMFILE);
1009 if ((dmfile = fopen (buf, "r")) == NULL)
1010 {
1011 LOG (llevDebug, "Could not find DM file.\n");
1012 return 0;
1013 }
1014
1015 while (fgets (line_buf, 160, dmfile) != NULL)
1016 {
1017 if (line_buf[0] == '#')
1018 continue;
1019 if (sscanf (line_buf, "%[^:]:%[^:]:%s\n", name, passwd, host) != 3)
1020 {
1021 LOG (llevError, "Warning - malformed dm file entry: %s\n", line_buf);
1022 }
1023 else if ((!strcmp (name, "*") || (pl_name && !strcmp (pl_name, name)))
1024 && (!strcmp (passwd, "*") || !strcmp (passwd, pl_passwd)) && (!strcmp (host, "*") || !strcmp (host, pl_host)))
1025 {
1026 fclose (dmfile);
1027 return (1);
1028 }
1029 }
1030 fclose (dmfile);
1031 return (0);
1032 }
1033
1034 int
1035 do_wizard_dm (object *op, char *params, int silent)
1036 {
1037 if (!op->contr)
1038 return 0;
1039
1040 if (QUERY_FLAG (op, FLAG_WIZ))
1041 {
1042 new_draw_info (NDI_UNIQUE, 0, op, "You are already the Dungeon Master!");
1043 return 0;
1044 }
1045
1046 if (checkdm (op, op->name, (params ? params : "*"), op->contr->ns->host))
1047 {
1048 SET_FLAG (op, FLAG_WIZ);
1049 SET_FLAG (op, FLAG_WIZPASS);
1050 SET_FLAG (op, FLAG_WIZCAST);
1051 SET_FLAG (op, FLAG_WIZLOOK);
1052 op->contr->do_los = 1;
1053
1054 new_draw_info (NDI_UNIQUE, 0, op, "Ok, you are the Dungeon Master!");
1055 op->contr->write_buf[0] = '\0';
1056
1057 if (!silent)
1058 new_draw_info (NDI_UNIQUE | NDI_ALL | NDI_LT_GREEN, 1, NULL, "The Dungeon Master has arrived!");
1059
1060 return 1;
1061 }
1062 else
1063 {
1064 new_draw_info (NDI_UNIQUE, 0, op, "Sorry Pal, I don't think so.");
1065 op->contr->write_buf[0] = '\0';
1066 return 0;
1067 }
1068 }
1069
1070 /*
1071 * Actual command to perhaps become dm. Changed aroun a bit in version 0.92.2
1072 * - allow people on sockets to become dm, and allow better dm file
1073 */
1074 int
1075 command_dm (object *op, char *params)
1076 {
1077 if (!op->contr)
1078 return 0;
1079
1080 do_wizard_dm (op, params, 0);
1081
1082 return 1;
1083 }
1084
1085 int
1086 command_invisible (object *op, char *params)
1087 {
1088 if (op)
1089 {
1090 op->invisible += 100;
1091 update_object (op, UP_OBJ_CHANGE);
1092 new_draw_info (NDI_UNIQUE, 0, op, "You turn invisible.");
1093 }
1094
1095 return 0;
1096 }
1097
1098 /**
1099 * Returns spell object (from archetypes) by name.
1100 * Returns NULL if 0 or more than one spell matches.
1101 * Used for wizard's learn spell/prayer.
1102 *
1103 * op is the player issuing the command.
1104 */
1105 static object *
1106 get_spell_by_name (object *op, shstr_cmp spell_name)
1107 {
1108 archetype *at;
1109 archetype *found;
1110 int conflict_found;
1111
1112 /* First check for full name matches. */
1113 conflict_found = 0;
1114 found = NULL;
1115 for_all_archetypes (at)
1116 {
1117 if (at->type != SPELL)
1118 continue;
1119
1120 if (at->object::name != spell_name)
1121 continue;
1122
1123 if (found)
1124 {
1125 if (!conflict_found)
1126 {
1127 conflict_found = 1;
1128 new_draw_info_format (NDI_UNIQUE, 0, op, "More than one archetype matches the spell name %s:", &spell_name);
1129 new_draw_info_format (NDI_UNIQUE, 0, op, "- %s", &found->archname);
1130 }
1131
1132 new_draw_info_format (NDI_UNIQUE, 0, op, "- %s", &at->archname);
1133 continue;
1134 }
1135
1136 found = at;
1137 }
1138
1139 /* No match if more more than one archetype matches. */
1140 if (conflict_found)
1141 return NULL;
1142
1143 /* Return if exactly one archetype matches. */
1144 if (found)
1145 return arch_to_object (found);
1146
1147 /* No full match found: now check for partial matches. */
1148 conflict_found = 0;
1149 found = NULL;
1150 for_all_archetypes (at)
1151 {
1152 if (at->type != SPELL)
1153 continue;
1154
1155 if (at->object::name != spell_name)
1156 continue;
1157
1158 if (strncmp (at->archname, "spelldirect_", 12) == 0)
1159 continue;
1160
1161 if (found)
1162 {
1163 if (!conflict_found)
1164 {
1165 conflict_found = 1;
1166 new_draw_info_format (NDI_UNIQUE, 0, op, "More than one spell matches %s:", &spell_name);
1167 new_draw_info_format (NDI_UNIQUE, 0, op, "- %s", &found->object::name);
1168 }
1169
1170 new_draw_info_format (NDI_UNIQUE, 0, op, "- %s", &at->object::name);
1171 continue;
1172 }
1173
1174 found = at;
1175 }
1176
1177 /* No match if more more than one archetype matches. */
1178 if (conflict_found)
1179 return NULL;
1180
1181 /* Return if exactly one archetype matches. */
1182 if (found)
1183 return arch_to_object (found);
1184
1185 /* No spell found: just print an error message. */
1186 new_draw_info_format (NDI_UNIQUE, 0, op, "The spell %s does not exist.", &spell_name);
1187
1188 return NULL;
1189 }
1190
1191 static int
1192 command_learn_spell_or_prayer (object *op, char *params, int special_prayer)
1193 {
1194 object *tmp;
1195
1196 if (op->contr == NULL || params == NULL)
1197 {
1198 new_draw_info (NDI_UNIQUE, 0, op, "Which spell do you want to learn?");
1199 return 0;
1200 }
1201
1202 tmp = get_spell_by_name (op, params);
1203 if (tmp == NULL)
1204 {
1205 return 0;
1206 }
1207
1208 if (check_spell_known (op, tmp->name))
1209 {
1210 new_draw_info_format (NDI_UNIQUE, 0, op, "You already know the spell %s.", &tmp->name);
1211 return 0;
1212 }
1213
1214 do_learn_spell (op, tmp, special_prayer);
1215 tmp->destroy ();
1216 return 1;
1217 }
1218
1219 int
1220 command_learn_spell (object *op, char *params)
1221 {
1222 return command_learn_spell_or_prayer (op, params, 0);
1223 }
1224
1225 int
1226 command_learn_special_prayer (object *op, char *params)
1227 {
1228 return command_learn_spell_or_prayer (op, params, 1);
1229 }
1230
1231 int
1232 command_forget_spell (object *op, char *params)
1233 {
1234 object *spell;
1235
1236 if (op->contr == NULL || params == NULL)
1237 {
1238 new_draw_info (NDI_UNIQUE, 0, op, "Which spell do you want to forget?");
1239 return 0;
1240 }
1241
1242 spell = lookup_spell_by_name (op, params);
1243 if (spell == NULL)
1244 {
1245 new_draw_info_format (NDI_UNIQUE, 0, op, "You do not know the spell %s.", params);
1246 return 0;
1247 }
1248
1249 do_forget_spell (op, spell->name);
1250 return 1;
1251 }
1252
1253 /**
1254 * A players wants to become DM and hide.
1255 * Let's see if that's authorized.
1256 * Make sure to not tell anything to anyone.
1257 */
1258 int
1259 command_dmhide (object *op, char *params)
1260 {
1261 if (!do_wizard_dm (op, params, 1))
1262 return 0;
1263
1264 do_wizard_hide (op, 1);
1265
1266 return 1;
1267 }
1268
1269 void
1270 dm_stack_pop (player *pl)
1271 {
1272 if (!pl->stack_items || !pl->stack_position)
1273 {
1274 new_draw_info (NDI_UNIQUE, 0, pl->ob, "Empty stack!");
1275 return;
1276 }
1277
1278 pl->stack_position--;
1279 new_draw_info_format (NDI_UNIQUE, 0, pl->ob, "Popped item from stack, %d left.", pl->stack_position);
1280 }
1281
1282 /**
1283 * Get current stack top item for player.
1284 * Returns NULL if no stacked item.
1285 * If stacked item disappeared (freed), remove it.
1286 *
1287 * Ryo, august 2004
1288 */
1289 object *
1290 dm_stack_peek (player *pl)
1291 {
1292 object *ob;
1293
1294 if (!pl->stack_position)
1295 {
1296 new_draw_info (NDI_UNIQUE, 0, pl->ob, "Empty stack!");
1297 return NULL;
1298 }
1299
1300 ob = find_object (pl->stack_items[pl->stack_position - 1]);
1301 if (!ob)
1302 {
1303 new_draw_info (NDI_UNIQUE, 0, pl->ob, "Stacked item was removed!");
1304 dm_stack_pop (pl);
1305 return NULL;
1306 }
1307
1308 return ob;
1309 }
1310
1311 /**
1312 * Push specified item on player stack.
1313 * Inform player of position.
1314 * Initializes variables if needed.
1315 */
1316 void
1317 dm_stack_push (player *pl, tag_t item)
1318 {
1319 if (!pl->stack_items)
1320 {
1321 pl->stack_items = (tag_t *) malloc (sizeof (tag_t) * STACK_SIZE);
1322 memset (pl->stack_items, 0, sizeof (tag_t) * STACK_SIZE);
1323 }
1324
1325 if (pl->stack_position == STACK_SIZE)
1326 {
1327 new_draw_info (NDI_UNIQUE, 0, pl->ob, "Item stack full!");
1328 return;
1329 }
1330
1331 pl->stack_items[pl->stack_position] = item;
1332 new_draw_info_format (NDI_UNIQUE, 0, pl->ob, "Item stacked as %d.", pl->stack_position);
1333 pl->stack_position++;
1334 }
1335
1336 /**
1337 * Checks 'params' for object code.
1338 *
1339 * Can be:
1340 * * empty => get current object stack top for player
1341 * * number => get item with that tag, stack it for future use
1342 * * $number => get specified stack item
1343 * * "me" => player himself
1344 *
1345 * At function exit, params points to first non-object char
1346 *
1347 * 'from', if not NULL, contains at exit:
1348 * * STACK_FROM_NONE => object not found
1349 * * STACK_FROM_TOP => top item stack, may be NULL if stack was empty
1350 * * STACK_FROM_STACK => item from somewhere in the stack
1351 * * STACK_FROM_NUMBER => item by number, pushed on stack
1352 *
1353 * Ryo, august 2004
1354 */
1355 object *
1356 get_dm_object (player *pl, char **params, int *from)
1357 {
1358 int item_tag, item_position;
1359 object *ob;
1360
1361 if (!pl)
1362 return NULL;
1363
1364 if (!params || !*params || **params == '\0')
1365 {
1366 if (from)
1367 *from = STACK_FROM_TOP;
1368 /* No parameter => get stack item */
1369 return dm_stack_peek (pl);
1370 }
1371
1372 /* Let's clean white spaces */
1373 while (**params == ' ')
1374 (*params)++;
1375
1376 /* Next case: number => item tag */
1377 if (sscanf (*params, "%d", &item_tag))
1378 {
1379 /* Move parameter to next item */
1380 while (isdigit (**params))
1381 (*params)++;
1382
1383 /* And skip blanks, too */
1384 while (**params == ' ')
1385 (*params)++;
1386
1387 /* Get item */
1388 ob = find_object (item_tag);
1389 if (!ob)
1390 {
1391 if (from)
1392 *from = STACK_FROM_NONE;
1393 new_draw_info_format (NDI_UNIQUE, 0, pl->ob, "No such item %d!", item_tag);
1394 return NULL;
1395 }
1396
1397 /* Got one, let's push it on stack */
1398 dm_stack_push (pl, item_tag);
1399 if (from)
1400 *from = STACK_FROM_NUMBER;
1401 return ob;
1402 }
1403
1404 /* Next case: $number => stack item */
1405 if (sscanf (*params, "$%d", &item_position))
1406 {
1407 /* Move parameter to next item */
1408 (*params)++;
1409
1410 while (isdigit (**params))
1411 (*params)++;
1412 while (**params == ' ')
1413 (*params)++;
1414
1415 if (item_position >= pl->stack_position)
1416 {
1417 if (from)
1418 *from = STACK_FROM_NONE;
1419 new_draw_info_format (NDI_UNIQUE, 0, pl->ob, "No such stack item %d!", item_position);
1420 return NULL;
1421 }
1422
1423 ob = find_object (pl->stack_items[item_position]);
1424 if (!ob)
1425 {
1426 if (from)
1427 *from = STACK_FROM_NONE;
1428 new_draw_info_format (NDI_UNIQUE, 0, pl->ob, "Stack item %d was removed.", item_position);
1429 return NULL;
1430 }
1431
1432 if (from)
1433 *from = item_position < pl->stack_position - 1 ? STACK_FROM_STACK : STACK_FROM_TOP;
1434 return ob;
1435 }
1436
1437 /* Next case: 'me' => return pl->ob */
1438 if (!strncmp (*params, "me", 2))
1439 {
1440 if (from)
1441 *from = STACK_FROM_NUMBER;
1442 dm_stack_push (pl, pl->ob->count);
1443
1444 /* Skip to next token */
1445 (*params) += 2;
1446 while (**params == ' ')
1447 (*params)++;
1448
1449 return pl->ob;
1450 }
1451
1452 /* Last case: get stack top */
1453 if (from)
1454 *from = STACK_FROM_TOP;
1455 return dm_stack_peek (pl);
1456 }
1457
1458 /**
1459 * Pop the stack top.
1460 */
1461 int
1462 command_stack_pop (object *op, char *params)
1463 {
1464 dm_stack_pop (op->contr);
1465 return 0;
1466 }
1467
1468 /**
1469 * Push specified item on stack.
1470 */
1471 int
1472 command_stack_push (object *op, char *params)
1473 {
1474 object *ob;
1475 int from;
1476
1477 ob = get_dm_object (op->contr, &params, &from);
1478
1479 if (ob && from != STACK_FROM_NUMBER)
1480 /* Object was from stack, need to push it again */
1481 dm_stack_push (op->contr, ob->count);
1482
1483 return 0;
1484 }
1485
1486 /**
1487 * Displays stack contents.
1488 */
1489 int
1490 command_stack_list (object *op, char *params)
1491 {
1492 int item;
1493 object *display;
1494 player *pl = op->contr;
1495
1496 new_draw_info (NDI_UNIQUE, 0, op, "Item stack contents:");
1497
1498 for (item = 0; item < pl->stack_position; item++)
1499 {
1500 display = find_object (pl->stack_items[item]);
1501 if (display)
1502 new_draw_info_format (NDI_UNIQUE, 0, op, " %d : %s [%d]", item, &display->name, display->count);
1503 else
1504 /* Item was freed */
1505 new_draw_info_format (NDI_UNIQUE, 0, op, " %d : (lost item: %d)", item, pl->stack_items[item]);
1506 }
1507
1508 return 0;
1509 }
1510
1511 /**
1512 * Empty DM item stack.
1513 */
1514 int
1515 command_stack_clear (object *op, char *params)
1516 {
1517 op->contr->stack_position = 0;
1518 new_draw_info (NDI_UNIQUE, 0, op, "Item stack cleared.");
1519 return 0;
1520 }
1521
1522 int
1523 command_insert_into (object *op, char *params)
1524 {
1525 object *left, *right, *inserted;
1526 int left_from, right_from;
1527
1528 left = get_dm_object (op->contr, &params, &left_from);
1529 if (!left)
1530 {
1531 new_draw_info (NDI_UNIQUE, 0, op, "Insert into what object?");
1532 return 0;
1533 }
1534
1535 if (left_from == STACK_FROM_NUMBER)
1536 /* Item was stacked, remove it else right will be the same... */
1537 dm_stack_pop (op->contr);
1538
1539 right = get_dm_object (op->contr, &params, &right_from);
1540
1541 if (!right)
1542 {
1543 new_draw_info (NDI_UNIQUE, 0, op, "Insert what item?");
1544 return 0;
1545 }
1546
1547 if (left_from == STACK_FROM_TOP && right_from == STACK_FROM_TOP)
1548 {
1549 /*
1550 * Special case: both items were taken from stack top.
1551 * Override the behaviour, taking left as item just below top, if exists.
1552 * See function description for why.
1553 * Besides, can't insert an item into itself.
1554 */
1555 if (op->contr->stack_position > 1)
1556 {
1557 left = find_object (op->contr->stack_items[op->contr->stack_position - 2]);
1558 if (left)
1559 new_draw_info (NDI_UNIQUE, 0, op, "(Note: item to insert into taken from undertop)");
1560 else
1561 /* Stupid case: item under top was freed, fallback to stack top */
1562 left = right;
1563 }
1564 }
1565
1566 if (left == right)
1567 {
1568 new_draw_info (NDI_UNIQUE, 0, op, "Can't insert an object into itself!");
1569 return 0;
1570 }
1571
1572 if (right->type == PLAYER)
1573 {
1574 new_draw_info (NDI_UNIQUE, 0, op, "Can't insert a player into something!");
1575 return 0;
1576 }
1577
1578 if (!QUERY_FLAG (right, FLAG_REMOVED))
1579 right->remove ();
1580
1581 insert_ob_in_ob (right, left);
1582
1583 new_draw_info_format (NDI_UNIQUE, 0, op, "Inserted %s in %s", query_name (inserted), query_name (left));
1584
1585 return 0;
1586
1587 }