ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/server/build_map.C
(Generate patch)

Comparing deliantra/server/server/build_map.C (file contents):
Revision 1.15 by root, Sat Dec 23 06:41:39 2006 UTC vs.
Revision 1.24 by root, Mon Feb 5 02:07:40 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) 2001 Mark Wedel & Crossfire Development Team 5 * Copyright (C) 2001 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 to <crossfire@schmorp.de> 22 * The authors can be reached via e-mail to <crossfire@schmorp.de>
22*/ 23 */
23 24
24#include <global.h> 25#include <global.h>
25#include <living.h> 26#include <living.h>
26#include <spells.h> 27#include <spells.h>
27#include <skills.h> 28#include <skills.h>
145 } 146 }
146 147
147 /* Now, find force in player's inventory */ 148 /* Now, find force in player's inventory */
148 force = pl->inv; 149 force = pl->inv;
149 while (force 150 while (force
150 && ((force->type != FORCE) || (!force->slaying) || (strcmp (force->slaying, pl->map->path)) || (!force->msg) 151 && ((force->type != FORCE) || !force->slaying || force->slaying != pl->map->path || !force->msg
151 || (strcmp (force->msg, rune->msg)))) 152 || force->msg != rune->msg))
152 force = force->below; 153 force = force->below;
153 154
154 if (!force) 155 if (!force)
155 /* No force, need to create & insert one */ 156 /* No force, need to create & insert one */
156 { 157 {
161 new_draw_info (NDI_UNIQUE, 0, pl, "Could not create more groups."); 162 new_draw_info (NDI_UNIQUE, 0, pl, "Could not create more groups.");
162 return -1; 163 return -1;
163 } 164 }
164 165
165 force = get_archetype (FORCE_NAME); 166 force = get_archetype (FORCE_NAME);
166 force->speed = 0;
167 update_ob_speed (force);
168 force->slaying = pl->map->path; 167 force->slaying = pl->map->path;
169 force->msg = rune->msg; 168 force->msg = rune->msg;
170 force->path_attuned = connected; 169 force->path_attuned = connected;
170 force->set_speed (0);
171 insert_ob_in_ob (force, pl); 171 insert_ob_in_ob (force, pl);
172 172
173 return connected; 173 return connected;
174 } 174 }
175 175
245 if (!wall) 245 if (!wall)
246 /* Nothing -> bail out */ 246 /* Nothing -> bail out */
247 return; 247 return;
248 248
249 /* Find base name */ 249 /* Find base name */
250 strcpy (archetype, wall->arch->name); 250 assign (archetype, wall->arch->name);
251 underscore = strchr (archetype, '_'); 251 underscore = strchr (archetype, '_');
252 252
253 /* search for the first _ before a number */ 253 /* search for the first _ before a number */
254 while (underscore && !isdigit (*(underscore + 1))) 254 while (underscore && !isdigit (*(underscore + 1)))
255 underscore = strchr (underscore + 1, '_'); 255 underscore = strchr (underscore + 1, '_');
263 263
264 int connect = 0; 264 int connect = 0;
265 265
266 if ((x > 0) && get_wall (map, x - 1, y)) 266 if ((x > 0) && get_wall (map, x - 1, y))
267 connect |= 1; 267 connect |= 1;
268 if ((x < MAP_WIDTH (map) - 1) && get_wall (map, x + 1, y)) 268 if ((x < map->width - 1) && get_wall (map, x + 1, y))
269 connect |= 2; 269 connect |= 2;
270 270
271 if ((y > 0) && get_wall (map, x, y - 1)) 271 if ((y > 0) && get_wall (map, x, y - 1))
272 connect |= 4; 272 connect |= 4;
273 273
274 if ((y < MAP_HEIGHT (map) - 1) && get_wall (map, x, y + 1)) 274 if ((y < map->height - 1) && get_wall (map, x, y + 1))
275 connect |= 8; 275 connect |= 8;
276 276
277 switch (connect) 277 switch (connect)
278 { 278 {
279 case 0: 279 case 0:
691 item = GET_MAP_OB (pl->map, x, y); 691 item = GET_MAP_OB (pl->map, x, y);
692 if (!item) 692 if (!item)
693 { 693 {
694 /* Should not happen with previous tests, but we never know */ 694 /* Should not happen with previous tests, but we never know */
695 new_draw_info (NDI_UNIQUE, 0, pl, "Invalid square."); 695 new_draw_info (NDI_UNIQUE, 0, pl, "Invalid square.");
696 LOG (llevError, "apply_builder_remove: (null) square at (%d, %d, %s)\n", x, y, pl->map->path); 696 LOG (llevError, "apply_builder_remove: (null) square at (%d, %d, %s)\n", x, y, &pl->map->path);
697 return; 697 return;
698 } 698 }
699 699
700 if (item->type == FLOOR || QUERY_FLAG (item, FLAG_IS_FLOOR)) 700 if (item->type == FLOOR || QUERY_FLAG (item, FLAG_IS_FLOOR))
701 item = item->above; 701 item = item->above;
702 702
703 if (!item) 703 if (!item)
704 {
705 new_draw_info (NDI_UNIQUE, 0, pl, "Nothing to remove."); 704 new_draw_info (NDI_UNIQUE, 0, pl, "Nothing to remove.");
706 return; 705 else if (item->type == BUILDABLE_WALL)
707 }
708
709 /* Now remove object, with special cases (buttons & such) */
710 switch (item->type)
711 {
712 case BUILDABLE_WALL:
713 new_draw_info (NDI_UNIQUE, 0, pl, "Can't remove a wall with that, build a floor."); 706 new_draw_info (NDI_UNIQUE, 0, pl, "Can't remove a wall with that, build a floor.");
714 return; 707 else if (!item->flag [FLAG_IS_BUILDABLE])
715
716 case DOOR:
717 case BUTTON:
718 case GATE:
719 case TIMED_GATE:
720 case DETECTOR:
721 case PEDESTAL:
722 case CF_HANDLE:
723 case MAGIC_EAR:
724 case SIGN:
725 /* Special case: must unconnect */
726 if (QUERY_FLAG (item, FLAG_IS_LINKED))
727 remove_button_link (item);
728
729 /* Fall through */
730
731 default:
732 /* Remove generic item */
733 if (!QUERY_FLAG (item, FLAG_IS_BUILDABLE))
734 {
735 new_draw_info_format (NDI_UNIQUE, 0, pl, "You can't remove the %s, it's not buildable!", query_name (item)); 708 new_draw_info_format (NDI_UNIQUE, 0, pl, "You can't remove the %s, it's not buildable!", query_name (item));
736 return; 709 else
737 } 710 {
738
739 new_draw_info_format (NDI_UNIQUE, 0, pl, "You remove the %s", query_name (item)); 711 new_draw_info_format (NDI_UNIQUE, 0, pl, "You remove the %s", query_name (item));
740 item->destroy (); 712 item->destroy ();
741 } 713 }
742} 714}
743 715
744/** 716/**
745 * Global building function 717 * Global building function
771 } 743 }
772 744
773 x = pl->x + freearr_x[dir]; 745 x = pl->x + freearr_x[dir];
774 y = pl->y + freearr_y[dir]; 746 y = pl->y + freearr_y[dir];
775 747
776 if ((1 > x) || (1 > y) || ((MAP_WIDTH (pl->map) - 2) < x) || ((MAP_HEIGHT (pl->map) - 2) < y)) 748 if ((1 > x) || (1 > y) || ((pl->map->width - 2) < x) || ((pl->map->height - 2) < y))
777 { 749 {
778 new_draw_info (NDI_UNIQUE, 0, pl, "Can't build on map edge..."); 750 new_draw_info (NDI_UNIQUE, 0, pl, "Can't build on map edge...");
779 return; 751 return;
780 } 752 }
781 753
788 760
789 tmp = GET_MAP_OB (pl->map, x, y); 761 tmp = GET_MAP_OB (pl->map, x, y);
790 if (!tmp) 762 if (!tmp)
791 { 763 {
792 /* Nothing, meaning player is standing next to an undefined square... */ 764 /* Nothing, meaning player is standing next to an undefined square... */
793 LOG (llevError, "apply_map_builder: undefined square at (%d, %d, %s)\n", x, y, pl->map->path); 765 LOG (llevError, "apply_map_builder: undefined square at (%d, %d, %s)\n", x, y, &pl->map->path);
794 new_draw_info (NDI_UNIQUE, 0, pl, "You'd better not build here, it looks weird."); 766 new_draw_info (NDI_UNIQUE, 0, pl, "You'd better not build here, it looks weird.");
795 return; 767 return;
796 } 768 }
797 tmp2 = find_marked_object (pl); 769 tmp2 = find_marked_object (pl);
798 while (tmp) 770 while (tmp)
799 { 771 {
800 LOG (llevDebug, "CHECK %s %d\n", &tmp->name, &tmp->arch->name, 1 * (QUERY_FLAG (tmp, FLAG_IS_BUILDABLE)));
801 if (!QUERY_FLAG (tmp, FLAG_IS_BUILDABLE) && ((tmp->type != SIGN) || (strcmp (tmp->arch->name, "rune_mark")))) 772 if (!QUERY_FLAG (tmp, FLAG_IS_BUILDABLE) && ((tmp->type != SIGN) || (strcmp (tmp->arch->name, "rune_mark"))))
802 { 773 {
803 /* The item building function already has it's own special 774 /* The item building function already has it's own special
804 * checks for this 775 * checks for this
805 */ 776 */

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines