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/
/*    /verbs/items/light.c
 *    from the Dead Souls Object Library
 *    a command for lighting things which can be lit
 *    created by Descartes of Borg 960512
 */

#include <lib.h>
#include "include/light.h"

inherit LIB_VERB;

static void create() {
    verb::create();
    SetVerb("light");
    SetRules("OBS", "OBS with OBJ");
    SetErrorMessage("Light what?  Or light what with what?");
    SetHelp("Syntax: <light OBJECT>\n"
	    "        <light OBJECT with OBJECT>\n\n"
	    "Using the first syntax, you can light things which "
	    "do not need another source in order to be lit, like a lamp or "
	    "a lighter.  The second syntax allows you to light objects which "
	    "require burning sources in order for themselves to be light, "
	    "like a torch or a camp fire.\n\n"
	    "See also: extinguish");
}

mixed can_light_obj() {
    return 1;
}

mixed can_light_obj_with_obj() {
    int light;
    
    if( (light = effective_light(this_player())) < 0 ) {
	if( 100 + (10*light) < random(100) )
	  return "You fumble around in the darkness.";
	else return 1;
    }
    else if( light > 4 ) {
	if( 100 - (10*light) < random(100) )
	  return "You fumble around in the blinding light.";
	else return 1;
    }
    else return 1;
}

mixed do_light_obj(object target) {
    return do_light_obs(({ target }));
}

mixed do_light_obj_with_obj(object target, object source) {
    return do_light_obs_with_obj(({ target }), source);
}

mixed do_light_obs(mixed *targs) {
    object *obs;
    string tmp;
    
    if( !sizeof(targs) ) {
        this_player()->eventPrint("There is no such thing to be lit.");
	return 1;
    }
    obs = filter(targs, (: objectp :));
    if( !sizeof(obs) ) {
        mixed *ua;

	ua = unique_array(targs, (: $1 :));
	foreach(string *list in ua) this_player()->eventPrint(list[0]);
	return 1;
    }
    obs = filter(obs, (: (int)$1->eventLight(this_player()) :));
    if( !sizeof(obs) ) return 1;
    tmp = item_list(obs);
    this_player()->eventPrint("You light " + tmp + ".");
    environment(this_player())->eventPrint((string)this_player()->GetName() +
					   " lights " + tmp + ".",
					   this_player());
    return 1;
}

mixed do_light_obs_with_obj(mixed *targs, object source) {
    object *obs;
    string tmp;
    
    if( !sizeof(targs) ) {
        this_player()->eventPrint("There is no such thing to be lit.");
	return 1;
    }
    obs = filter(targs, (: objectp :));
    if( !sizeof(obs) ) {
        mixed *ua;

	ua = unique_array(targs, (: $1 :));
	foreach(string *list in ua) this_player()->eventPrint(list[0]);
	return 1;
    }
    obs = filter(obs, (: (int)$1->eventLight(this_player(), $(source)) :));
    if( !sizeof(obs) ) return 1;
    tmp = item_list(obs);
    this_player()->eventPrint("You light " + tmp + " with " +
			      (string)source->GetShort() + ".");
    environment(this_player())->eventPrint((string)this_player()->GetName() +
					   " lights " + tmp + " with " +
					   (string)source->GetShort() + ".",
					   this_player());
    return 1;
}