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

Comparing deliantra/server/server/rune.C (file contents):
Revision 1.11 by root, Wed Dec 13 03:28:42 2006 UTC vs.
Revision 1.20 by root, Sun Feb 18 18:30:28 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) 2003 Mark Wedel & Crossfire Development Team 5 * Copyright (C) 2003 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#ifndef __CEXTRACT__
26# include <sproto.h> 26#include <sproto.h>
27#endif
28#include <spells.h> 27#include <spells.h>
29
30 28
31#ifndef sqr 29#ifndef sqr
32# define sqr(x) ((x)*(x)) 30# define sqr(x) ((x)*(x))
33#endif 31#endif
34
35 32
36/* peterm: 33/* peterm:
37 * write_rune: 34 * write_rune:
38 * op: rune writer 35 * op: rune writer
39 * skop: skill object used for casting this rune 36 * skop: skill object used for casting this rune
59 56
60 nx = op->x + freearr_x[dir]; 57 nx = op->x + freearr_x[dir];
61 ny = op->y + freearr_y[dir]; 58 ny = op->y + freearr_y[dir];
62 m = op->map; 59 m = op->map;
63 60
64 if (get_map_flags (m, &m, nx, ny, &nx, &ny)) 61 if (get_map_flags (m, &m, nx, ny, &nx, &ny) & (P_OUT_OF_MAP | P_SAFE | P_NO_MAGIC | P_NO_CLERIC))
65 { 62 {
66 new_draw_info (NDI_UNIQUE, 0, op, "Can't make a rune there!"); 63 new_draw_info (NDI_UNIQUE, 0, op, "Can't make a rune there!");
67 return 0; 64 return 0;
68 } 65 }
69 66
70 for (tmp = get_map_ob (m, nx, ny); tmp != NULL; tmp = tmp->above) 67 for (tmp = m->at (nx, ny).bot; tmp; tmp = tmp->above)
71 if (tmp->type == RUNE) 68 if (tmp->type == RUNE)
72 break; 69 break;
73 70
74 if (tmp) 71 if (tmp)
75 { 72 {
76 new_draw_info (NDI_UNIQUE, 0, op, "You can't write a rune there."); 73 new_draw_info (NDI_UNIQUE, 0, op, "You can't write a rune on top of another rune.");
77 return 0; 74 return 0;
78 } 75 }
79 76
80 if (spell->other_arch) 77 if (spell->other_arch)
81 rune_spell = arch_to_object (spell->other_arch); 78 rune_spell = arch_to_object (spell->other_arch);
93 return 0; 90 return 0;
94 } 91 }
95 92
96 rune_spell = NULL; 93 rune_spell = NULL;
97 for (tmp = op->inv; tmp; tmp = tmp->below) 94 for (tmp = op->inv; tmp; tmp = tmp->below)
98 {
99 if (tmp->type == SPELL) 95 if (tmp->type == SPELL)
100 { 96 {
101 ms = item_matched_string (op, tmp, runename); 97 ms = item_matched_string (op, tmp, runename);
102 if (ms > bestmatch) 98 if (ms > bestmatch)
103 { 99 {
104 bestmatch = ms; 100 bestmatch = ms;
105 rune_spell = tmp; 101 rune_spell = tmp;
106 } 102 }
107 } 103 }
108 }
109 104
110 if (!rune_spell) 105 if (!rune_spell)
111 { 106 {
112 new_draw_info_format (NDI_UNIQUE, 0, op, "You don't know any spell named %s", runename); 107 new_draw_info_format (NDI_UNIQUE, 0, op, "You don't know any spell named %s", runename);
113 return 0; 108 return 0;
117 { 112 {
118 new_draw_info_format (NDI_UNIQUE, 0, op, "You can't cast %s with %s", &rune_spell->name, &spell->name); 113 new_draw_info_format (NDI_UNIQUE, 0, op, "You can't cast %s with %s", &rune_spell->name, &spell->name);
119 return 0; 114 return 0;
120 } 115 }
121 116
122 if (caster->path_denied & spell->path_attuned) 117 if (caster->path_denied & spell->path_attuned && !caster->flag [FLAG_WIZCAST])
123 { 118 {
124 new_draw_info_format (NDI_UNIQUE, 0, op, "%s belongs to a spell path denied to you.", &rune_spell->name); 119 new_draw_info_format (NDI_UNIQUE, 0, op, "%s belongs to a spell path denied to you.", &rune_spell->name);
125 return 0; 120 return 0;
126 } 121 }
127 122
128 if (caster_level (caster, rune_spell) < rune_spell->level) 123 if (caster_level (caster, rune_spell) < rune_spell->level && !caster->flag [FLAG_WIZCAST])
129 { 124 {
130 new_draw_info_format (NDI_UNIQUE, 0, op, "%s is beyond your ability to cast!", &rune_spell->name); 125 new_draw_info_format (NDI_UNIQUE, 0, op, "%s is beyond your ability to cast!", &rune_spell->name);
131 return 0; 126 return 0;
132 } 127 }
133 128
147 op->stats.sp -= SP_level_spellpoint_cost (caster, rune_spell, SPELL_MANA); 142 op->stats.sp -= SP_level_spellpoint_cost (caster, rune_spell, SPELL_MANA);
148 } 143 }
149 144
150 /* already proper rune. Note this should only be the case if other_arch was set */ 145 /* already proper rune. Note this should only be the case if other_arch was set */
151 if (rune_spell->type == RUNE) 146 if (rune_spell->type == RUNE)
152 {
153 rune = rune_spell; 147 rune = rune_spell;
154 }
155 else 148 else
156 { 149 {
157 rune = get_archetype (GENERIC_RUNE); 150 rune = get_archetype (GENERIC_RUNE);
158 sprintf (buf, "You set off a rune of %s\n", &rune_spell->name); 151 sprintf (buf, "You set off a rune of %s\n", &rune_spell->name);
159 rune->msg = buf; 152 rune->msg = buf;
160 tmp = rune_spell->clone (); 153 rune->insert (rune_spell->clone ());
161 insert_ob_in_ob (tmp, rune);
162 154
163 if (spell->face != blank_face) 155 if (spell->face != blank_face)
164 rune->face = spell->face; 156 rune->face = spell->face;
165 } 157 }
166 158
167 rune->level = caster_level (caster, spell); 159 rune->level = caster_level (caster, spell);
168 rune->stats.Cha = rune->level / 2; /* the invisibility parameter */ 160 rune->stats.Cha = rune->level / 2; /* the invisibility parameter */
169 rune->x = nx;
170 rune->y = ny;
171 rune->map = m;
172 rune->direction = dir; /* where any spell will go upon detonation */ 161 rune->direction = dir; /* where any spell will go upon detonation */
173 rune->set_owner (op); /* runes without need no owner */ 162 rune->set_owner (op); /* runes without need no owner */
174 set_spell_skill (op, caster, spell, rune); 163 set_spell_skill (op, caster, spell, rune);
175 insert_ob_in_map (rune, m, op, 0); 164
165 m->insert (rune, nx, ny, op);
176 return 1; 166 return 1;
177
178} 167}
179
180
181 168
182/* move_rune: peterm 169/* move_rune: peterm
183 comments on runes: 170 comments on runes:
184 rune->level : level at which rune will cast its spell. 171 rune->level : level at which rune will cast its spell.
185 rune->hp : number of detonations before rune goes away 172 rune->hp : number of detonations before rune goes away
189 rune->attacktype: type of damage it does, if not casting spells 176 rune->attacktype: type of damage it does, if not casting spells
190 rune->other_arch: spell in the rune 177 rune->other_arch: spell in the rune
191 rune->Cha : how hidden the rune is 178 rune->Cha : how hidden the rune is
192 rune->maxhp : number of spells the rune casts 179 rune->maxhp : number of spells the rune casts
193*/ 180*/
194
195void 181void
196move_rune (object *op) 182move_rune (object *op)
197{ 183{
198 int det = 0; 184 /* runes of level zero cannot detonate. */
199
200 if (!op->level) 185 if (!op->level)
201 {
202 return; 186 return;
203 } /* runes of level zero cannot detonate. */ 187
204 det = op->invisible; 188 int det = op->invisible;
189
205 if (!(rndm (0, MAX (1, (op->stats.Cha)) - 1))) 190 if (!(rndm (0, MAX (1, (op->stats.Cha)) - 1)))
206 { 191 {
207 op->invisible = 0; 192 op->invisible = 0;
208 op->speed_left -= 1; 193 op->speed_left -= 1;
209 } 194 }
210 else 195 else
211 op->invisible = 1; 196 op->invisible = 1;
197
212 if (op->invisible != det) 198 if (op->invisible != det)
213 update_object (op, UP_OBJ_FACE); 199 update_object (op, UP_OBJ_FACE);
214} 200}
215 201
216 202
228 214
229 if (victim->destroyed ()) 215 if (victim->destroyed ())
230 return; 216 return;
231 217
232 /* if there's a disease in the needle, put it in the player */ 218 /* if there's a disease in the needle, put it in the player */
233 if (HAS_RANDOM_ITEMS (op)) 219 if (op->has_random_items ())
234 create_treasure (op->randomitems, op, 0, (victim->map ? victim->map->difficulty : 1), 0); 220 create_treasure (op->randomitems, op, 0, (victim->map ? victim->map->difficulty : 1), 0);
235 221
236 if (op->inv && op->inv->type == DISEASE) 222 if (op->inv && op->inv->type == DISEASE)
237 { 223 {
238 object *disease = op->inv; 224 object *disease = op->inv;
357 { 343 {
358 new_draw_info (NDI_UNIQUE, 0, op, "There's nothing there!"); 344 new_draw_info (NDI_UNIQUE, 0, op, "There's nothing there!");
359 return 0; 345 return 0;
360 } 346 }
361 347
362 for (tmp = get_map_ob (m, x, y); tmp != NULL; tmp = tmp->above) 348 for (tmp = GET_MAP_OB (m, x, y); tmp != NULL; tmp = tmp->above)
363 { 349 {
364 if (tmp->type == RUNE || tmp->type == TRAP) 350 if (tmp->type == RUNE || tmp->type == TRAP)
365 break; 351 break;
366 352
367 /* we could put a probability chance here, but since nothing happens 353 /* we could put a probability chance here, but since nothing happens
420} 406}
421 407
422int 408int
423trap_show (object *trap, object *where) 409trap_show (object *trap, object *where)
424{ 410{
425 object *tmp2;
426
427 if (where == NULL) 411 if (where == NULL)
428 return 0; 412 return 0;
413
429 tmp2 = get_archetype ("runedet"); 414 object *tmp = get_archetype ("runedet");
430 tmp2->face = &new_faces[GET_ANIMATION (trap, 0)]; 415 tmp->face = &new_faces[GET_ANIMATION (trap, 0)];
431 tmp2->x = where->x; 416 tmp->insert_at (where, 0);
432 tmp2->y = where->y; 417
433 tmp2->map = where->map;
434 insert_ob_in_map (tmp2, where->map, NULL, 0);
435 return 1; 418 return 1;
436
437} 419}
438
439 420
440int 421int
441trap_disarm (object *disarmer, object *trap, int risk, object *skill) 422trap_disarm (object *disarmer, object *trap, int risk, object *skill)
442{ 423{
443 int trapworth; /* need to compute the experience worth of the trap 424 int trapworth; /* need to compute the experience worth of the trap

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines