Crossfire Server, Branch 1.12  R12190
Functions | Variables
spell_util.c File Reference

Spell-related helper functions. More...

#include <global.h>
#include <spells.h>
#include <object.h>
#include <errno.h>
#include <sproto.h>
#include <sounds.h>
#include <assert.h>
Include dependency graph for spell_util.c:

Go to the source code of this file.

Functions

static int can_be_transmuted (object *op)
 Determines if an item can be transmuted after a cast failure.
int cast_create_obj (object *op, object *new_op, int dir)
 Creates object new_op in direction dir or if that is blocked, beneath the player (op).
int cast_spell (object *op, object *caster, int dir, object *spell_ob, char *stringarg)
 Main dispatch when someone casts a spell.
int caster_level (const object *caster, const object *spell)
 This function returns the effective level the spell is being cast at.
void check_spell_expiry (object *spell)
 Checks if player should be warned of soon expiring spell.
object * check_spell_known (object *op, const char *name)
 Checks to see if player knows the spell.
void check_spells (void)
 It goes through the spells looking for any obvious errors.
void drain_rod_charge (object *rod)
 Drain charges from a rod.
void drain_wand_charge (object *wand)
 Drains a charge from a wand.
void dump_spells (void)
 Dumps all the spells - now also dumps skill associated with the spell.
object * find_random_spell_in_ob (object *ob, const char *skill)
 This returns a random spell from 'ob'.
object * find_target_for_friendly_spell (object *op, int dir)
 This function is commonly used to find a friendly target for spells such as heal or protection or armour.
int fire_arch_from_position (object *op, object *caster, sint16 x, sint16 y, int dir, object *spell)
 Fires an archetype.
static void handle_spell_confusion (object *op)
 This does a random effect for op, which tried to cast a spell in a confused state.
object * lookup_spell_by_name (object *op, const char *spname)
 Look at object 'op' and see if they know the spell spname.
int min_casting_level (const object *caster, const object *spell)
 This function takes a caster and spell and presents the effective level the caster needs to be to cast the spell.
int ok_to_put_more (mapstruct *m, sint16 x, sint16 y, object *op, uint32 immune_stop)
 Returns true if it is ok to put spell op on the space/may provided.
static void prayer_failure (object *op, int failure, int power)
 Called when a player fails at casting a prayer.
static int put_a_monster (object *op, const char *monstername)
 Puts a monster named monstername near by op.
int reflwall (mapstruct *m, int x, int y, object *sp_op)
 Decides weither the (spell-)object sp_op will be reflected from the given mapsquare.
void regenerate_rod (object *rod)
 Regenerates a rod's charges.
void set_spell_skill (object *op, object *caster, object *spob, object *dest)
 Utility function to assign the correct skill when casting.
void shuffle_attack (object *op, int change_face)
 This routine shuffles the attack of op to one of the ones in the list.
int SP_level_dam_adjust (const object *caster, const object *spob)
 Returns adjusted damage based on the caster.
int SP_level_duration_adjust (const object *caster, const object *spob)
 Adjust the duration of the spell based on level.
int SP_level_range_adjust (const object *caster, const object *spob)
 Adjust the range of the spell based on level.
sint16 SP_level_spellpoint_cost (object *caster, object *spell, int flags)
 Scales the spellpoint cost of a spell by it's increased effectiveness.
void spell_effect (object *spob, int x, int y, mapstruct *map, object *originator)
 Inserts into map a spell effect based on other_arch.
void spell_failure (object *op, int failure, int power, object *skill)
 Handles the various effects for differing degrees of failure badness.
int spell_find_dir (mapstruct *m, int x, int y, object *exclude)
 Search what direction a spell should go in, first the center square then some close squares in the given map at the given coordinates for live objects.
void store_spell_expiry (object *spell)
 Stores in the spell when to warn player of expiration.
int summon_hostile_monsters (object *op, int n, const char *monstername)
 Summons hostile monsters and places them in nearby squares.
static void swap_random_stats (object *op)
 Randomly swaps 2 stats of op.
static void transmute_item_to_flower (object *op)
 This transforms one random item of op to a flower.

Variables

const char *const spell_mapping []

Detailed Description

Spell-related helper functions.

Definition in file spell_util.c.


Function Documentation

static int can_be_transmuted ( object *  op) [static]

Determines if an item can be transmuted after a cast failure.

Parameters:
opitem to check.
Returns:
1 if op can be transmuted, 0 else.

Definition at line 1134 of file spell_util.c.

References POTION, ROD, SCROLL, WAND, and WEAPON.

Referenced by transmute_item_to_flower().

Here is the caller graph for this function:

int cast_create_obj ( object *  op,
object *  new_op,
int  dir 
)

Creates object new_op in direction dir or if that is blocked, beneath the player (op).

we pass 'caster', but don't use it for anything. This is really just a simple wrapper function .

Parameters:
opwho is casting.
new_opobject to insert.
dirdirection to insert into. Can be 0.
Returns:
direction that the object was actually placed in.

Definition at line 517 of file spell_util.c.

References draw_ext_info(), freearr_x, freearr_y, get_map_flags(), GET_MAP_MOVE_BLOCK, insert_ob_in_map(), MSG_TYPE_SPELL, MSG_TYPE_SPELL_INFO, NDI_UNIQUE, OB_TYPE_MOVE_BLOCK, and P_OUT_OF_MAP.

Referenced by cast_create_food(), cast_create_missile(), and cast_create_town_portal().

Here is the call graph for this function:

Here is the caller graph for this function:

int cast_spell ( object *  op,
object *  caster,
int  dir,
object *  spell_ob,
char *  stringarg 
)

Main dispatch when someone casts a spell.

Will decrease mana/gr points, check for skill, confusion and such.

Note that this function is really a dispatch routine that calls other functions - it just blindly returns what ever value those functions return. So if your writing a new function that is called from this, it should also return 1 on success, 0 on failure.

if it is a player casting the spell (op->type == PLAYER, op == caster), this function will decrease the mana/grace appropriately. For other objects, the caller should do what it considers appropriate.

Parameters:
opcreature that is owner of the object that is casting the spell - eg, the player or monster.
casteractual object (wand, potion) casting the spell. can be same as op.
dirdirection to cast in. Note in some cases, if the spell is self only, dir really doesn't make a difference.
spell_obspell object that is being cast. From that, we can determine what to do. *
stringargany options that are being used. It can be NULL. Almost certainly, only players will set it. It is basically used as optional parameters to a spell (eg, item to create, information for marking runes, etc.
Returns:
1 on successful cast, or 0 on error. These values should really be swapped, so that 0 is successful, and non zero is failure, with a code of what it failed.
Todo:
return a failure value?

Definition at line 1308 of file spell_util.c.

References alchemy(), animate_weapon(), apply_anim_suffix(), cast_bless(), cast_cause_disease(), cast_change_ability(), cast_change_map_lightlevel(), cast_cone(), cast_consecrate(), cast_create_food(), cast_create_missile(), cast_create_town_portal(), cast_curse(), cast_destruction(), cast_detection(), cast_earth_to_dust(), cast_heal(), cast_identify(), cast_invisible(), cast_item_curse_or_curse(), cast_light(), cast_polymorph(), cast_raise_dead_spell(), cast_smite_spell(), cast_transfer(), cast_wonder(), cast_word_of_recall(), caster_level(), Settings::casting_time, change_skill(), cleric_chance, create_aura(), create_bomb(), determine_god(), dimension_door(), dispel_rune(), draw_ext_info(), draw_ext_info_format(), draw_magic_map(), FABS, find_random_spell_in_ob(), find_skill_by_name(), fire_arch_from_position(), fire_bolt(), fire_bullet(), fire_swarm(), FIREWALL, FLAG_ALIVE, FLAG_CONFUSED, FLAG_MONSTER, FLAG_WIZ, FLAG_WIZCAST, freearr_x, freearr_y, get_map_flags(), get_owner(), handle_spell_confusion(), HORN, llevError, LOG(), magic_wall(), MAX, MAX_BUF, min_casting_level(), mood_change(), MSG_TYPE_APPLY, MSG_TYPE_APPLY_ERROR, MSG_TYPE_SKILL, MSG_TYPE_SKILL_FAILURE, MSG_TYPE_SKILL_MISSING, MSG_TYPE_SPELL, MSG_TYPE_SPELL_ERROR, MSG_TYPE_SPELL_FAILURE, MSG_TYPE_SPELL_INFO, NDI_UNIQUE, P_NO_CLERIC, P_NO_MAGIC, PATH_TIME_MULT, perceive_self(), play_sound_map(), play_sound_player_only(), PLAYER, POTION, prayer_failure(), PREFER_HIGH, PREFER_LOW, probe(), QUERY_FLAG, query_name(), random_roll(), range_golem, range_magic, range_misc, recharge(), remove_curse(), rndm(), ROD, RUNE, SCROLL, settings, SOUND_TYPE_SPELL, SP_ALCHEMY, SP_ANIMATE_WEAPON, SP_AURA, SP_BLESS, SP_BOLT, SP_BOMB, SP_BULLET, SP_CAUSE_DISEASE, SP_CHANGE_ABILITY, SP_CHANGE_MANA, SP_CHANGE_MAP_LIGHT, SP_CHARGING, SP_CONE, SP_CONSECRATE, SP_CREATE_FOOD, SP_CREATE_MISSILE, SP_CURSE, SP_DESTRUCTION, SP_DETECTION, SP_DIMENSION_DOOR, SP_DISPEL_RUNE, SP_EARTH_TO_DUST, SP_FAERY_FIRE, SP_HEALING, SP_IDENTIFY, SP_INVISIBLE, SP_ITEM_CURSE_BLESS, SP_level_spellpoint_cost(), SP_LIGHT, SP_MAGIC_MAPPING, SP_MAGIC_MISSILE, SP_MAGIC_WALL, SP_MAKE_MARK, SP_MOOD_CHANGE, SP_MOVING_BALL, SP_PERCEIVE_SELF, SP_POLYMORPH, SP_PROBE, SP_RAISE_DEAD, SP_REMOVE_CURSE, SP_RUNE, SP_SMITE, SP_SUMMON_GOLEM, SP_SUMMON_MONSTER, SP_SWARM, SP_TOWN_PORTAL, SP_WONDER, SP_WORD_OF_RECALL, SPELL, spell_effect(), spell_failure(), Settings::spell_failure_effects, SPELL_GRACE, SPELL_MANA, strdup_local(), summon_golem(), summon_object(), TRUE, WAND, write_mark(), and write_rune().

Referenced by altar_type_move_on(), cast_dust(), cast_wonder(), cfapi_object_cast(), command_cast_spell(), fire(), fire_misc_object(), monster_cast_spell(), monster_use_range(), move_firewall(), potion_type_apply(), scroll_type_apply(), spring_trap(), and START_TEST().

Here is the caller graph for this function:

int caster_level ( const object *  caster,
const object *  spell 
)

This function returns the effective level the spell is being cast at.

Note that I changed the repelled/attuned bonus to 2 from 5. This is because the new code compares casting_level against min_caster_level, so the difference is effectively 4

Parameters:
casterperson casting the spell.
spellspell object.
Returns:
adjusted level.

Definition at line 237 of file spell_util.c.

References NUM_SKILLS, and PLAYER.

Referenced by animate_weapon(), cast_cause_disease(), cast_cone(), cast_consecrate(), cast_create_town_portal(), cast_detection(), cast_polymorph(), cast_raise_dead_spell(), cast_smite_spell(), cast_spell(), cast_transfer(), create_aura(), fire_arch_from_position(), fire_swarm(), magic_wall(), mood_change(), remove_curse(), SP_level_dam_adjust(), SP_level_duration_adjust(), SP_level_range_adjust(), SP_level_spellpoint_cost(), summon_golem(), summon_object(), and write_rune().

Here is the caller graph for this function:

void check_spell_expiry ( object *  spell)

Checks if player should be warned of soon expiring spell.

Should be called at each move of the spell. Will use key stored by store_spell_expiry(). If the spell effect/force isn't in a player's inventory, won't do anything.

Parameters:
spellforce or spell whose effects will expire.

Definition at line 1854 of file spell_util.c.

References draw_ext_info_format(), get_ob_key_value(), MSG_TYPE_SPELL, MSG_TYPE_SPELL_INFO, NDI_NAVY, NDI_UNIQUE, and PLAYER.

Referenced by move_aura(), and remove_force().

Here is the call graph for this function:

Here is the caller graph for this function:

object* check_spell_known ( object *  op,
const char *  name 
)

Checks to see if player knows the spell.

If the name is the same as an existing spell, we presume they know it.

Parameters:
opobject we're looking into.
namespell name. Doesn't need to be a shared string.
Returns:
1 if op knows the spell, 0 if it don't.

Definition at line 408 of file spell_util.c.

References SPELL.

Referenced by cfapi_object_check_spell(), command_learn_spell_or_prayer(), do_forget_spell(), do_learn_spell(), dragon_ability_gain(), god_intervention(), and spellbook_type_apply().

Here is the caller graph for this function:

void check_spells ( void  )

It goes through the spells looking for any obvious errors.

This was most useful in debugging when re-doing all the spells to catch simple errors. To use it all the time will result in it spitting out messages that aren't really errors.

Definition at line 120 of file spell_util.c.

References find_archetype(), first_archetype, llevDebug, llevError, LOG(), NUM_SKILLS, skill_names, SPELL, and spell_mapping.

Referenced by init_beforeplay().

Here is the call graph for this function:

Here is the caller graph for this function:

void drain_rod_charge ( object *  rod)

Drain charges from a rod.

Parameters:
rodrod to drain.

Definition at line 743 of file spell_util.c.

References SP_level_spellpoint_cost(), and SPELL_HIGHEST.

Referenced by fire_misc_object(), and monster_use_range().

Here is the call graph for this function:

Here is the caller graph for this function:

void drain_wand_charge ( object *  wand)

Drains a charge from a wand.

Handles animation fix, and player update if required.

Parameters:
wandwand to drain. Must be of type WAND.

Definition at line 753 of file spell_util.c.

References CLEAR_FLAG, esrv_update_item(), FLAG_ANIMATE, get_player_container(), UPD_ANIM, update_ob_speed(), and WAND.

Referenced by fire_misc_object(), and monster_use_range().

Here is the call graph for this function:

Here is the caller graph for this function:

void dump_spells ( void  )

Dumps all the spells - now also dumps skill associated with the spell.

not sure what this would be used for, as the data seems pretty minimal, but easy enough to keep around.

Definition at line 157 of file spell_util.c.

References first_archetype, and SPELL.

Referenced by init_beforeplay().

Here is the caller graph for this function:

object* find_random_spell_in_ob ( object *  ob,
const char *  skill 
)

This returns a random spell from 'ob'.

If skill is set, then the spell must be of this skill, it can be NULL in which case all matching spells are used.

Parameters:
obobject to find spells in.
skillskill the spell should match, NULL if can match any spell.
Returns:
random spell, or NULL if none found.
Todo:
change skill to sstring.

Definition at line 60 of file spell_util.c.

References SPELL.

Referenced by cast_spell(), and write_scroll().

Here is the caller graph for this function:

object* find_target_for_friendly_spell ( object *  op,
int  dir 
)

This function is commonly used to find a friendly target for spells such as heal or protection or armour.

Parameters:
opwhat is looking for the target (which can be a player).
dirdirection we are looking in.
Returns:
object found, or NULL if no good object.

Definition at line 779 of file spell_util.c.

References FLAG_MONSTER, freearr_x, freearr_y, get_map_flags(), GET_MAP_OB, get_owner(), P_OUT_OF_MAP, PLAYER, QUERY_FLAG, RUNE, and TRANSPORT.

Referenced by cast_bless(), cast_change_ability(), and cast_heal().

Here is the call graph for this function:

Here is the caller graph for this function:

int fire_arch_from_position ( object *  op,
object *  caster,
sint16  x,
sint16  y,
int  dir,
object *  spell 
)

Fires an archetype.

Note:
it uses op->map for the map for these coordinates, which is probably a really bad idea.
Parameters:
opperson firing the object.
casterobject casting the spell.
x
ywhere to fire the spell.
dirdirection to fire in.
spellspell that is being fired. It uses other_arch for the archetype to fire.
Returns:
0 on failure, 1 on success.
Todo:
check the note?

Definition at line 653 of file spell_util.c.

References arch_to_object(), AT_GODPOWER, AT_HOLYWORD, caster_level(), copy_owner(), draw_ext_info(), FLAG_IS_TURNABLE, free_object(), get_map_flags(), GET_MAP_MOVE_BLOCK, get_owner(), insert_ob_in_map(), MSG_TYPE_SPELL, MSG_TYPE_SPELL_ERROR, NDI_UNIQUE, ob_process(), OB_TYPE_MOVE_BLOCK, P_OUT_OF_MAP, PLAYER, QUERY_FLAG, SET_ANIMATION, set_owner(), set_spell_skill(), SP_level_dam_adjust(), SP_level_duration_adjust(), SP_level_range_adjust(), and tailor_god_spell().

Referenced by alchemy_failure_effect(), cast_spell(), and move_swarm_spell().

Here is the call graph for this function:

Here is the caller graph for this function:

static void handle_spell_confusion ( object *  op) [static]

This does a random effect for op, which tried to cast a spell in a confused state.

Note that random spell casting is handled in cast_spell itself.

Used for spell casting when confused.

Parameters:
opplayer for which to produce a random effect.

Definition at line 1261 of file spell_util.c.

References swap_random_stats(), and transmute_item_to_flower().

Referenced by cast_spell().

Here is the call graph for this function:

Here is the caller graph for this function:

object* lookup_spell_by_name ( object *  op,
const char *  spname 
)

Look at object 'op' and see if they know the spell spname.

This is pretty close to check_spell_known above, but it uses a looser matching mechanism.

Parameters:
opobject we're searching the inventory.
spnamepartial spell name.
Returns:
matching spell object, or NULL. If we match multiple spells but don't get an exact match, we also return NULL.

Definition at line 430 of file spell_util.c.

References llevError, LOG(), and SPELL.

Referenced by command_cast_spell(), and command_forget_spell().

Here is the call graph for this function:

Here is the caller graph for this function:

int min_casting_level ( const object *  caster,
const object *  spell 
)

This function takes a caster and spell and presents the effective level the caster needs to be to cast the spell.

Basically, it just adjusts the spell->level with attuned/repelled spellpaths.

Parameters:
casterperson casting the spell.
spellspell object.
Returns:
adjusted level.

Definition at line 207 of file spell_util.c.

References MAX.

Referenced by cast_spell(), SP_level_dam_adjust(), SP_level_duration_adjust(), and SP_level_range_adjust().

Here is the caller graph for this function:

int ok_to_put_more ( mapstruct m,
sint16  x,
sint16  y,
object *  op,
uint32  immune_stop 
)

Returns true if it is ok to put spell op on the space/may provided.

Parameters:
m
x
ycoordinates to test.
opspell to test for.
immune_stopbasically the attacktype of the spell (why passed as a different value, not sure of). If immune_stop has the AT_MAGIC bit set, and there is a counterwall on the space, the object doesn't get placed. if immune_stop does not have AT_MAGIC, then counterwalls do not effect the spell.
Returns:
1 if we can add op, 0 else.

Definition at line 555 of file spell_util.c.

References ARROW, AT_COUNTERSPELL, AT_MAGIC, BOW, FLAG_MONSTER, get_map_flags(), GET_MAP_MOVE_BLOCK, GET_MAP_OB, GOLEM, OB_TYPE_MOVE_BLOCK, P_OUT_OF_MAP, PLAYER, QUERY_FLAG, Statistics::spell_suppressions, statistics, and WEAPON.

Referenced by explosion(), and move_cone().

Here is the call graph for this function:

Here is the caller graph for this function:

static void prayer_failure ( object *  op,
int  failure,
int  power 
) [static]

Called when a player fails at casting a prayer.

Parameters:
opplayer.
failurebasically how much grace they had.
powerhow much grace the spell would normally take to cast.

Definition at line 1025 of file spell_util.c.

References cast_cone(), cast_magic_storm(), confuse_living(), create_archetype(), determine_god(), draw_ext_info(), draw_ext_info_format(), free_object(), GOD_POWER, MSG_TYPE_SPELL, MSG_TYPE_SPELL_FAILURE, NDI_UNIQUE, paralyze_living(), and SPELL_WONDER.

Referenced by cast_spell().

Here is the call graph for this function:

Here is the caller graph for this function:

static int put_a_monster ( object *  op,
const char *  monstername 
) [static]

Puts a monster named monstername near by op.

This creates the treasures for the monsters, and also deals with multipart monsters properly.

Parameters:
opvictim.
monsternamemonster's archetype name.
Returns:
1 if a monster was put, 0 else (no free space around the spot or invalid monster name).
Todo:
there is a multipart-aware archetype conversion function, use it.

Definition at line 901 of file spell_util.c.

References arch_to_object(), create_archetype(), create_treasure(), find_archetype(), find_first_free_spot(), freearr_x, freearr_y, GT_INVISIBLE, and insert_ob_in_map().

Referenced by summon_hostile_monsters().

Here is the call graph for this function:

Here is the caller graph for this function:

int reflwall ( mapstruct m,
int  x,
int  y,
object *  sp_op 
)

Decides weither the (spell-)object sp_op will be reflected from the given mapsquare.

Returns 1 if true.

(Note that for living creatures there is a small chance that reflect_spell fails.)

Caller should be sure it passes us valid map coordinates eg, updated for tiled maps.

Parameters:
m
x
yposition of the object to test.
sp_opspell object to test.
Returns:
1 if reflected, 0 else.

Definition at line 490 of file spell_util.c.

References FLAG_ALIVE, FLAG_REFL_SPELL, GET_MAP_OB, OUT_OF_REAL_MAP, QUERY_FLAG, and rndm().

Referenced by move_bolt(), and move_bullet().

Here is the call graph for this function:

Here is the caller graph for this function:

void regenerate_rod ( object *  rod)

Regenerates a rod's charges.

Parameters:
rodrod to regenerate.

Definition at line 728 of file spell_util.c.

Referenced by legacy_ob_process().

Here is the caller graph for this function:

void set_spell_skill ( object *  op,
object *  caster,
object *  spob,
object *  dest 
)

Utility function to assign the correct skill when casting.

Relatively simple function that gets used a lot. Basically, it sets up the skill pointer for the spell being cast. If op is really casting the spell, then the skill is whatever skill the spell requires. if instead caster (rod, horn, wand, etc) is casting the skill, then they get exp for the skill that you need to use for that object (use magic device).

Parameters:
opobject casting the spell.
casterobject used to cast the spell (rod, wand, ...).
spobspell object.
destobject to set the skill for.

Definition at line 105 of file spell_util.c.

References add_refcount(), and FREE_AND_CLEAR_STR.

Referenced by animate_weapon(), cast_cause_disease(), cast_cone(), cast_smite_spell(), create_aura(), create_bomb(), fire_arch_from_position(), fire_bolt(), fire_bullet(), fire_swarm(), magic_wall(), mood_change(), summon_golem(), summon_object(), and write_rune().

Here is the call graph for this function:

Here is the caller graph for this function:

void shuffle_attack ( object *  op,
int  change_face 
)

This routine shuffles the attack of op to one of the ones in the list.

It does this at random. It also chooses a face appropriate to the attack that is being committed by that square at the moment.

right now it's being used by color spray and create pool of chaos.

This could really be a better implementation - the faces and attacktypes above are hardcoded, which is never good. The faces refer to faces in the animation sequence. Not sure how to do better - but not having it hardcoded would be nice.

I also fixed a bug here in that attacktype was |= - to me, that would be that it would quickly get all attacktypes, which probably wasn't the intent. MSW 2003-06-03

Parameters:
opobject to change.
change_faceif set, also changes the face, else only changes the attacktype.

Definition at line 1004 of file spell_util.c.

References AT_MAGIC, ATTACKS, Chaos_Attacks::attacktype, rndm(), and SET_ANIMATION.

Referenced by hit_map().

Here is the call graph for this function:

Here is the caller graph for this function:

int SP_level_dam_adjust ( const object *  caster,
const object *  spob 
)

Returns adjusted damage based on the caster.

Parameters:
casterwho is casting.
spobspell we are adjusting.
Returns:
adjusted damage.

Definition at line 332 of file spell_util.c.

References caster_level(), and min_casting_level().

Referenced by alchemy(), animate_weapon(), append_spell(), cast_cause_disease(), cast_change_ability(), cast_cone(), cast_create_missile(), cast_destruction(), cast_identify(), cast_light(), cast_smite_spell(), cast_transfer(), create_aura(), create_bomb(), esrv_update_spells(), fire_arch_from_position(), fire_bolt(), fire_bullet(), magic_wall(), recharge(), summon_golem(), and summon_object().

Here is the call graph for this function:

Here is the caller graph for this function:

int SP_level_duration_adjust ( const object *  caster,
const object *  spob 
)

Adjust the duration of the spell based on level.

This is basically the same as SP_level_dam_adjust() above, but instead looks at the level_modifier value.

Parameters:
casterwho is casting.
spobspell we are adjusting.
Returns:
adjusted duration.

Definition at line 357 of file spell_util.c.

References caster_level(), and min_casting_level().

Referenced by alchemy(), animate_weapon(), cast_bless(), cast_cause_disease(), cast_change_ability(), cast_cone(), cast_create_food(), cast_create_missile(), cast_curse(), cast_destruction(), cast_invisible(), cast_light(), cast_word_of_recall(), create_aura(), create_bomb(), fire_arch_from_position(), fire_bolt(), fire_bullet(), fire_swarm(), magic_wall(), and summon_golem().

Here is the call graph for this function:

Here is the caller graph for this function:

int SP_level_range_adjust ( const object *  caster,
const object *  spob 
)

Adjust the range of the spell based on level.

This is basically the same as SP_level_dam_adjust() above, but instead looks at the level_modifier value.

Parameters:
casterwho is casting.
spobspell we are adjusting.
Returns:
adjusted range.

Definition at line 383 of file spell_util.c.

References caster_level(), and min_casting_level().

Referenced by animate_weapon(), cast_cause_disease(), cast_cone(), cast_destruction(), cast_detection(), cast_earth_to_dust(), cast_light(), cast_polymorph(), cast_smite_spell(), create_bomb(), dimension_door(), fire_arch_from_position(), fire_bolt(), fire_bullet(), magic_wall(), mood_change(), probe(), and summon_golem().

Here is the call graph for this function:

Here is the caller graph for this function:

sint16 SP_level_spellpoint_cost ( object *  caster,
object *  spell,
int  flags 
)

Scales the spellpoint cost of a spell by it's increased effectiveness.

Some of the lower level spells become incredibly vicious at high levels. Very cheap mass destruction. This function is intended to keep the sp cost related to the effectiveness.

Note that it is now possible for a spell to cost both grace and mana. In that case, we return which ever value is higher.

Parameters:
casterwhat is casting the spell.
spellspell object.
flagsone of Spell/grace points.
Returns:
sp/mana points cost.

Definition at line 281 of file spell_util.c.

References caster_level(), llevError, LOG(), MAX, PATH_SP_MULT, settings, SPELL_GRACE, SPELL_HIGHEST, SPELL_MANA, Settings::spellpoint_level_depend, and TRUE.

Referenced by append_spell(), cast_spell(), drain_rod_charge(), esrv_update_spells(), fire_misc_object(), monster_cast_spell(), show_matching_spells(), write_rune(), and write_scroll().

Here is the call graph for this function:

Here is the caller graph for this function:

void spell_effect ( object *  spob,
int  x,
int  y,
mapstruct map,
object *  originator 
)

Inserts into map a spell effect based on other_arch.

Parameters:
spobspell object to insert object from.
x
y
mapcoordinates to put the effect at.
originatorwhat causes the effect to be inserted. Can be NULL.

Definition at line 182 of file spell_util.c.

References arch_to_object(), and insert_ob_in_map().

Referenced by cast_identify(), and cast_spell().

Here is the call graph for this function:

Here is the caller graph for this function:

void spell_failure ( object *  op,
int  failure,
int  power,
object *  skill 
)

Handles the various effects for differing degrees of failure badness.

Parameters:
opplayer that failed.
failurerandom value of how badly you failed.
powerhow many spellpoints you'd normally need for the spell.
skillskill needed to cast the spell.

Definition at line 1078 of file spell_util.c.

References AT_INTERNAL, cast_cone(), confuse_living(), create_archetype(), draw_ext_info(), FALSE, free_object(), get_map_flags(), hit_player(), insert_ob_in_map(), isqrt(), LOOSE_MANA, MSG_TYPE_SPELL, MSG_TYPE_SPELL_FAILURE, NDI_UNIQUE, P_NO_MAGIC, paralyze_living(), settings, Settings::spell_failure_effects, and SPELL_WONDER.

Referenced by cast_spell().

Here is the call graph for this function:

Here is the caller graph for this function:

int spell_find_dir ( mapstruct m,
int  x,
int  y,
object *  exclude 
)

Search what direction a spell should go in, first the center square then some close squares in the given map at the given coordinates for live objects.

It will not consider the object given as exclude (= caster) among possible live objects. If the caster is a player, the spell will go after monsters/generators only. If not, the spell will hunt players only.

Exception is player on a battleground, who will be targeted unless excluded.

Parameters:
m
x
ywhere to search from.
excludewhat object to avoid. Can be NULL, in which case all bets are off.
Returns:
direction toward the first/closest live object if it finds any, otherwise -1.

Definition at line 852 of file spell_util.c.

References can_see_monsterP(), FLAG_GENERATOR, FLAG_MONSTER, freearr_x, freearr_y, freedir, get_map_flags(), GET_MAP_OB, op_on_battleground(), P_BLOCKSVIEW, P_OUT_OF_MAP, PLAYER, QUERY_FLAG, rndm(), and SIZEOFFREE.

Referenced by move_ball_spell(), and move_missile().

Here is the call graph for this function:

Here is the caller graph for this function:

void store_spell_expiry ( object *  spell)

Stores in the spell when to warn player of expiration.

Parameters:
spellspell we're considering.

Definition at line 1829 of file spell_util.c.

References set_ob_key_value(), and snprintf().

Referenced by cast_change_ability(), and create_aura().

Here is the call graph for this function:

Here is the caller graph for this function:

int summon_hostile_monsters ( object *  op,
int  n,
const char *  monstername 
)

Summons hostile monsters and places them in nearby squares.

Note:
this is not used by any spells (summon evil monsters use to call this, but best I can tell, that spell/ability was never used. This is however used by various failures on the players part (alchemy, reincarnation, etc)
Parameters:
opthe summoner.
nnumber of monsters.
monsternamename of the monster to summon, should be a valid archetype.
Returns:
number of monsters actually put on the map.

Definition at line 970 of file spell_util.c.

References put_a_monster().

Referenced by alchemy_failure_effect(), and cast_raise_dead_spell().

Here is the call graph for this function:

Here is the caller graph for this function:

static void swap_random_stats ( object *  op) [static]

Randomly swaps 2 stats of op.

Swapping is merely a FORCE inserted into op's inventory.

Used for spell casting when confused.

Parameters:
opplayer who is the victim.

Definition at line 1225 of file spell_util.c.

References change_abil(), create_archetype(), draw_ext_info_format(), fix_object(), FLAG_APPLIED, FORCE_NAME, get_attr_value(), insert_ob_in_ob(), MSG_TYPE_VICTIM, MSG_TYPE_VICTIM_SPELL, NDI_UNIQUE, NUM_STATS, rndm(), set_attr_value(), SET_FLAG, and update_ob_speed().

Referenced by handle_spell_confusion().

Here is the call graph for this function:

Here is the caller graph for this function:

static void transmute_item_to_flower ( object *  op) [static]

This transforms one random item of op to a flower.

Only some items are considered, mostly magical ones.

Transformed item is put in a force in a flower, weights are adjusted.

See remove_force() in server/time.c to see object removal.

Parameters:
opplayer who is the victim.

Definition at line 1156 of file spell_util.c.

References AP_IGNORE_CURSE, AP_NOPRINT, AP_UNAPPLY, can_be_transmuted(), create_archetype(), draw_ext_info_format(), esrv_del_item(), esrv_send_item(), FLAG_APPLIED, FORCE_NAME, FORCE_TRANSFORMED_ITEM, HUGE_BUF, insert_ob_in_ob(), manual_apply(), MSG_TYPE_ITEM, MSG_TYPE_ITEM_CHANGE, NDI_UNIQUE, QUERY_FLAG, query_short_name(), remove_ob(), rndm(), and update_ob_speed().

Referenced by handle_spell_confusion().

Here is the call graph for this function:

Here is the caller graph for this function:


Variable Documentation

const char* const spell_mapping[]