/
com/planet_ink/coffee_mud/Abilities/
com/planet_ink/coffee_mud/Abilities/Common/
com/planet_ink/coffee_mud/Abilities/Diseases/
com/planet_ink/coffee_mud/Abilities/Druid/
com/planet_ink/coffee_mud/Abilities/Fighter/
com/planet_ink/coffee_mud/Abilities/Prayers/
com/planet_ink/coffee_mud/Abilities/Properties/
com/planet_ink/coffee_mud/Abilities/Skills/
com/planet_ink/coffee_mud/Abilities/Songs/
com/planet_ink/coffee_mud/Abilities/Spells/
com/planet_ink/coffee_mud/Abilities/Thief/
com/planet_ink/coffee_mud/Abilities/Traps/
com/planet_ink/coffee_mud/Areas/interfaces/
com/planet_ink/coffee_mud/Behaviors/
com/planet_ink/coffee_mud/CharClasses/interfaces/
com/planet_ink/coffee_mud/Commands/
com/planet_ink/coffee_mud/Commands/interfaces/
com/planet_ink/coffee_mud/Exits/interfaces/
com/planet_ink/coffee_mud/Items/Armor/
com/planet_ink/coffee_mud/Items/Basic/
com/planet_ink/coffee_mud/Items/MiscMagic/
com/planet_ink/coffee_mud/Items/Software/
com/planet_ink/coffee_mud/Items/Weapons/
com/planet_ink/coffee_mud/Libraries/interfaces/
com/planet_ink/coffee_mud/Locales/
com/planet_ink/coffee_mud/Locales/interfaces/
com/planet_ink/coffee_mud/MOBS/
com/planet_ink/coffee_mud/MOBS/interfaces/
com/planet_ink/coffee_mud/Races/
com/planet_ink/coffee_mud/Races/interfaces/
com/planet_ink/coffee_mud/WebMacros/
com/planet_ink/coffee_mud/WebMacros/interfaces/
com/planet_ink/coffee_mud/application/
com/planet_ink/coffee_mud/core/smtp/
com/planet_ink/siplet/applet/
lib/
resources/examples/
resources/fakedb/
resources/quests/delivery/
resources/quests/diseased/
resources/quests/drowning/
resources/quests/gobwar/
resources/quests/holidays/
resources/quests/robbed/
resources/quests/smurfocide/
resources/quests/stolen/
resources/quests/templates/
resources/quests/treasurehunt/
resources/quests/vengeance/
web/
web/admin.templates/
web/admin/images/
web/pub.templates/
web/pub/images/mxp/
web/pub/sounds/
package com.planet_ink.coffee_mud.Behaviors;
import com.planet_ink.coffee_mud.core.interfaces.*;
import com.planet_ink.coffee_mud.core.*;
import com.planet_ink.coffee_mud.Abilities.interfaces.*;
import com.planet_ink.coffee_mud.Areas.interfaces.*;
import com.planet_ink.coffee_mud.Behaviors.interfaces.*;
import com.planet_ink.coffee_mud.CharClasses.interfaces.*;
import com.planet_ink.coffee_mud.Commands.interfaces.*;
import com.planet_ink.coffee_mud.Common.interfaces.*;
import com.planet_ink.coffee_mud.Exits.interfaces.*;
import com.planet_ink.coffee_mud.Items.interfaces.*;
import com.planet_ink.coffee_mud.Locales.interfaces.*;
import com.planet_ink.coffee_mud.MOBS.interfaces.*;
import com.planet_ink.coffee_mud.Races.interfaces.*;


import java.util.*;

/**
 * <p>Title: False Realities Presents FieryRoom</p>
 * <p>Description: False Realities - Discover your true destiny and change history...</p>
 * <p>Company: http://www.falserealities.com</p>
 * @author Tulath (a.k.a.) Jeremy Vyska
 */
public class FieryRoom
    extends ActiveTicker {
    public String ID() {
        return "FieryRoom"; }

    protected int canImproveCode() {
        return Behavior.CAN_ROOMS; }

    private String newDisplay = "";
    private String newDesc = "";
    private int directDamage = 10;
    private int eqChance = 0;
    private int burnTicks = 12;
    private boolean noStop = false;
    private boolean noNpc = false;
    private boolean noFireText = false;

    private String[] FireTexts = {"The fire here crackles and burns."};

    public FieryRoom() 
    {
        super();
        minTicks = 5; maxTicks = 10; chance = 100;
        tickReset();
    }

    public void setParms(String newParms) {
        super.setParms(newParms);
        newDisplay = CMParms.getParmStr(newParms, "Title", "A Charred Ruin");
        newDesc = CMParms.getParmStr(newParms, "Description", "Whatever was once here is now nothing more than ash.");
        directDamage = CMParms.getParmInt(newParms, "damage", 10);
        eqChance = CMParms.getParmInt(newParms, "eqchance", 0);
        burnTicks = CMParms.getParmInt(newParms, "burnticks", 12);
        Vector V=CMParms.parse(newParms.toUpperCase());
        noStop=(V.contains("NOSTOP"));
        noNpc=(V.contains("NONPC"));
        noFireText=(V.contains("NOFIRETEXT"));
        setFireTexts();
    }

    private void setFireTexts() {
        String[] newFireTexts = {"The fire here crackles and burns.",
                                  "The intense heat of the fire here is "+(directDamage>0?"very painful":"very unpleasant")+".",
                                  "The flames dance around you"+(eqChance>0?", licking at your clothes.":"."),
                                  "The fire is burning out of control. You fear for your safety"+(noStop?".":" as it looks like this place is being completely consumed."),
                                  "You hear popping and sizzling as something burns.",
                                  "The smoke here is very thick and you worry about whether you will be able to breathe."};
        FireTexts = newFireTexts;
    }

    public boolean tick(Tickable ticking, int tickID) 
    {
        super.tick(ticking, tickID);
        // on every tick, we may do damage OR eq handling.
        Room room = (Room) ticking;
        if ( (directDamage > 0) || (eqChance > 0)) {
            // for each inhab, do directDamage to them.
            for (int i = 0; i < room.numInhabitants(); i++) 
            {
                MOB inhab = room.fetchInhabitant(i);
                if (inhab.isMonster()) 
                {
                    boolean reallyAffect = true;
                    if (noNpc) {
                        reallyAffect = false;
                        HashSet group = inhab.getGroupMembers(new HashSet());
                        for (Iterator e = group.iterator(); e.hasNext(); ) 
                        {
                            MOB follower = (MOB) e.next();
                            if (! (follower.isMonster())) 
                            {
                                reallyAffect = true;
                                break;
                            }
                        }
                    }
                    if (reallyAffect) {
                        dealDamage(inhab);
                        if (CMLib.dice().rollPercentage() > eqChance)
                            eqRoast(inhab);
                    }
                }
                else 
                {
                    if((!CMSecurity.isAllowed(inhab,inhab.location(),"ORDER"))
	        		&&(!CMSecurity.isAllowed(inhab,inhab.location(),"CMDROOMS"))) 
                    {
                        dealDamage(inhab);
                        if (CMLib.dice().rollPercentage() > eqChance)
                            eqRoast(inhab);
                    }
                }
            }
        }
        if (canAct(ticking, tickID)) {
            if (ticking instanceof Room) {
                // % chance of burning each item in the room.
                roastRoom(room);
                // The tick happened.  If NOT NoFireText, Do flame emotes
                if(!noFireText) {
                    Room R = (Room) ticking;
                    String pickedText=FireTexts[CMLib.dice().roll(1,FireTexts.length,0)-1];
                    R.showHappens(CMMsg.MSG_OK_ACTION,pickedText);
                }
                if (!noStop) 
                {
                    if(burnTicks==0) 
                    {
                        // NOSTOP is false.  This means the room gets set
                        // to the torched text and the behavior goes away.
                        room.setDisplayText(newDisplay);
                        room.setDescription(newDesc);
                        room.delBehavior(this);
                    }
                    else
                        --burnTicks;
                }
            }
        }
        return true;
    }

    private void dealDamage(MOB mob) 
    {
        CMLib.combat().postDamage(mob, mob, null, directDamage, CMMsg.MASK_ALWAYS | CMMsg.TYP_FIRE, Weapon.TYPE_BURNING,
                            "The fire here <DAMAGE> <T-NAME>!");
    }

    private void eqRoast(MOB mob) 
    {
        Item target = getSomething(mob);
        if (target != null) {
            switch (target.material() & RawMaterial.MATERIAL_MASK) {
                case RawMaterial.MATERIAL_GLASS:
                case RawMaterial.MATERIAL_METAL:
                case RawMaterial.MATERIAL_MITHRIL:
                case RawMaterial.MATERIAL_PLASTIC:
                case RawMaterial.MATERIAL_PRECIOUS:
                case RawMaterial.MATERIAL_ROCK:
                case RawMaterial.MATERIAL_UNKNOWN: {
                    // all these we'll make get hot and be dropped.
                    int damage = CMLib.dice().roll(1, 6, 1);
                    CMLib.combat().postDamage(mob, mob, null, damage, CMMsg.MASK_ALWAYS | CMMsg.TYP_FIRE, Weapon.TYPE_BURNING, target.name() + " <DAMAGE> <T-NAME>!");
                    if (CMLib.dice().rollPercentage() < mob.charStats().getStat(CharStats.STAT_STRENGTH)) {
                        CMLib.commands().postDrop(mob, target, false, false);
                    }
                    break;
                }
                default: {
                    Ability burn = CMClass.getAbility("Burning");
                    if (burn != null) {
                        mob.location().showHappens(CMMsg.MSG_OK_ACTION, target.Name() + " begins to burn!");
                        target.addEffect(burn);
                        target.recoverEnvStats();
                    }
                }
            }
        }
    }

    private static void roastRoom(Room which) 
    {
		for(int i=0;i<which.numItems();i++) 
		{
		    Item target=which.fetchItem(i);
		    Ability burn = CMClass.getAbility("Burning");
			if((burn != null)&&(CMLib.dice().rollPercentage()>60)) 
			{
			    which.showHappens(CMMsg.MSG_OK_ACTION, target.Name() + " begins to burn!");
			    target.addEffect(burn);
			    target.recoverEnvStats();
			}
		}
    }

    private static Item getSomething(MOB mob) {
        Vector good = new Vector();
        Vector great = new Vector();
        Item target = null;
        for (int i = 0; i < mob.inventorySize(); i++) {
            Item I = mob.fetchInventory(i);
            if (I.amWearingAt(Item.IN_INVENTORY))
                good.addElement(I);
            else
                great.addElement(I);
        }
        if (great.size() > 0)
            target = (Item) great.elementAt(CMLib.dice().roll(1, great.size(), -1));
        else
        if (good.size() > 0)
            target = (Item) good.elementAt(CMLib.dice().roll(1, good.size(), -1));
        return target;
    }
}