dsI/bin/
dsI/extra/creremote/
dsI/extra/mingw/
dsI/extra/wolfpaw/
dsI/fluffos-2.7-ds2.018/
dsI/fluffos-2.7-ds2.018/ChangeLog.old/
dsI/fluffos-2.7-ds2.018/Win32/
dsI/fluffos-2.7-ds2.018/compat/
dsI/fluffos-2.7-ds2.018/compat/simuls/
dsI/fluffos-2.7-ds2.018/testsuite/
dsI/fluffos-2.7-ds2.018/testsuite/clone/
dsI/fluffos-2.7-ds2.018/testsuite/command/
dsI/fluffos-2.7-ds2.018/testsuite/data/
dsI/fluffos-2.7-ds2.018/testsuite/etc/
dsI/fluffos-2.7-ds2.018/testsuite/include/
dsI/fluffos-2.7-ds2.018/testsuite/inherit/
dsI/fluffos-2.7-ds2.018/testsuite/inherit/master/
dsI/fluffos-2.7-ds2.018/testsuite/log/
dsI/fluffos-2.7-ds2.018/testsuite/single/
dsI/fluffos-2.7-ds2.018/testsuite/single/tests/compiler/
dsI/fluffos-2.7-ds2.018/testsuite/single/tests/efuns/
dsI/fluffos-2.7-ds2.018/testsuite/single/tests/operators/
dsI/fluffos-2.7-ds2.018/testsuite/u/
dsI/fluffos-2.7-ds2.018/tmp/
dsI/lib/cfg/
dsI/lib/cmds/common/
dsI/lib/cmds/creators/include/
dsI/lib/cmds/creators/include/SCCS/
dsI/lib/daemon/services/
dsI/lib/doc/
dsI/lib/domains/Ylsrim/
dsI/lib/domains/Ylsrim/adm/
dsI/lib/domains/Ylsrim/armour/
dsI/lib/domains/Ylsrim/broken/
dsI/lib/domains/Ylsrim/fish/
dsI/lib/domains/Ylsrim/meal/
dsI/lib/domains/Ylsrim/npc/
dsI/lib/domains/Ylsrim/virtual/
dsI/lib/domains/Ylsrim/weapon/
dsI/lib/domains/default/creator/
dsI/lib/domains/default/etc/
dsI/lib/domains/default/room/
dsI/lib/lib/comp/
dsI/lib/lib/lvs/
dsI/lib/lib/user/
dsI/lib/lib/virtual/
dsI/lib/obj/
dsI/lib/obj/include/
dsI/lib/realms/
dsI/lib/save/kills/a/
dsI/lib/save/kills/b/
dsI/lib/save/kills/f/
dsI/lib/save/kills/m/
dsI/lib/save/kills/q/
dsI/lib/save/kills/r/
dsI/lib/secure/cfg/
dsI/lib/secure/cfg/classes/
dsI/lib/secure/cfg/races/SCCS/
dsI/lib/secure/cmds/creators/include/
dsI/lib/secure/cmds/players/
dsI/lib/secure/cmds/players/include/
dsI/lib/secure/daemon/include/
dsI/lib/secure/lib/
dsI/lib/secure/lib/include/
dsI/lib/secure/lib/net/
dsI/lib/secure/lib/net/include/
dsI/lib/secure/lib/std/
dsI/lib/secure/obj/
dsI/lib/secure/obj/include/
dsI/lib/secure/save/
dsI/lib/spells/
dsI/lib/verbs/admins/include/
dsI/lib/verbs/common/
dsI/lib/verbs/common/include/
dsI/lib/verbs/creators/
dsI/lib/verbs/creators/include/
dsI/lib/verbs/players/include/SCCS/
dsI/lib/verbs/rooms/
dsI/lib/verbs/rooms/include/
dsI/lib/www/
dsI/v22.2b14/
dsI/win32/
/*    /lib/magic.c
 *    From Dead Souls LPMud
 *    A module for allowing living beings to cast magic spells.
 *    Created by Descartes of Borg 961027
 *    Version: @(#) magic.c 1.13@(#)
 *    Last modified: 96/11/03
 */

#include <daemons.h>
#include <rounds.h>
#include <magic.h>

private mapping SpellBook = ([]);

// abstract methods
int GetInCombat();
int GetMagicPoints();
string GetName();
int GetParalyzed();
varargs mixed eventPrint(string msg, mixed args...);
int GetSkillLevel(string skill);
int GetStaminaPoints();
void SetAttack(object array e, function f, int type);
// end abstract methods

static varargs void eventCast(object spell, string limb, object array targs);
static void eventTrainSpell(object spell);

mapping GetSpellBook() {
    return copy(SpellBook);
}

static void SetSpellBook(mapping book) {
    SpellBook = book;
}

int GetSpellLevel(string spell) {
    return SpellBook[spell];
}

varargs mixed CanCast(object spell) {
    string tmp;

    if( GetParalyzed() ) {
	return "You cannot do anything.";
    }
    if( environment()->GetProperty("no magic") ) {
	return "Supernatural forces prevent your magic.";
    }
    if( !spell ) {
	return "No such spell exists in this reality.";
    }
    if( spell->GetVerb() == "pray" ) {
	tmp = "prayer";
    }
    else {
	tmp = "spell";
    }
    if( !SpellBook[spell->GetSpell()] ) {
	return "You have never heard of that " + tmp + " before.";
    }
    if( GetMagicPoints() < spell->GetRequiredMagic() ) {
	return "You do not have the power required.";
    }
    if( GetStaminaPoints() < spell->GetRequiredStamina() ) {
	return "You are too tired.";
    }
    foreach(string skill in spell->GetSkills()) {
	if( GetSkillLevel(skill) < spell->GetSkillRequired(skill) ) {
	    return "That " + tmp + " is beyond your comprehension.";
	}
    }
    return 1;
}

varargs mixed eventPrepareCast(string verb, mixed array args...) {
    object spell = SPELLS_D->GetSpell(verb = lower_case(verb));
    object array targets, send_to;
    string special, arg;
    mixed tmp;
    int type;

    tmp = spell->eventParse(this_object(), args...);
    if( !arrayp(tmp) ) {
	if( stringp(tmp) ) {
	    eventPrint(tmp);
	}
	else {
	    eventPrint("You are confused.");
	}
	return 1;
    }
    args = tmp;
    targets = spell->GetTargets(this_object(), args...);
    args = filter(args, (: stringp :));
    if( spell->GetAutoHeal() == 0 ) {
	if( !sizeof(args) ) {
	    object array existing = filter(targets, (: $1 :));
	    
	    if( sizeof(existing) != 1 ) {
		error("This spell was poorly constructed.");
	    }
	    arg = existing[0]->GetRandomLimb("torso");
	}
	else {
	    arg = args[0];
	}
    }
    else {
	if( !sizeof(args) ) {
	    arg = 0;
	}
	else {
	    arg = args[0];
	}
    }
    if( spell->GetVerb() == "pray" ) {
	special = "a prayer";
    }
    else {
	special = "an incantation";
    }
    if( targets ) {
	send_to = filter(targets, (: environment($1) == environment() :));
    }
    else {
	send_to = 0;
    }
    send_messages(({ "close", "begin" }),
		  "$agent_name $agent_verb $agent_possessive eyes and "
		  "$agent_verb uttering " + special + ".", this_object(),
		  send_to, environment());
    type = spell->GetSpellType();
    if( GetInCombat() || (type == SPELL_COMBAT) ) {
	if( type == SPELL_COMBAT ) {
	    SetAttack(targets, (: eventCast($(spell), $(arg), $(targets)) :),
		      ROUND_MAGIC);
	}
	else {
	    SetAttack(0, (: eventCast($(spell), $(arg), $(targets)) :),
		      ROUND_MAGIC);
	}
    }
    else {
	eventCast(spell, arg, targets);
    }
    return 1;
}

static varargs void eventCast(object spell, string limb, object array targs) {
    string name = spell->GetSpell();
    
    if( SpellBook[name] < 100 ) {
	eventTrainSpell(spell);
    }
    if( spell->CanCast(this_object(), SpellBook[name], limb, targs) ) {
	spell->eventCast(this_object(), SpellBook[name], limb, targs);
    }
}

mixed eventLearnSpell(string spell) {
    object magic = SPELLS_D->GetSpell(spell = lower_case(spell));

    foreach(string skill in magic->GetSkills()) {
	if( magic->GetRequiredSkill(skill) > GetSkillLevel(skill) ) {
	    return 0;
	}
    }
    if( !SpellBook[spell] ) {
	SpellBook[spell] = 1;
    }
    return 1;
}

static void eventTrainSpell(object spell) {
    string name = spell->GetSpell();
    int x = SpellBook[name] + 1;
    
    foreach(string skill in spell->GetSkills() ) {
	if( (5 * GetSkillLevel(skill)) < x ) {
	    return;
	}
    }
    SpellBook[name] = x;
}