/
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.Common;
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.*;

/* 
   Copyright 2000-2006 Bo Zimmerman

   Licensed under the Apache License, Version 2.0 (the "License");
   you may not use this file except in compliance with the License.
   You may obtain a copy of the License at

       http://www.apache.org/licenses/LICENSE-2.0

   Unless required by applicable law or agreed to in writing, software
   distributed under the License is distributed on an "AS IS" BASIS,
   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
   See the License for the specific language governing permissions and
   limitations under the License.
*/
public class DefaultMessage implements CMMsg
{
    public String ID(){return "DefaultMessage";}
    protected static final Hashtable MSGTYPE_DESCS=new Hashtable();
    public CMObject newInstance(){try{return (CMObject)getClass().newInstance();}catch(Exception e){return new DefaultMessage();}}
    public void initializeClass(){}
    public int compareTo(Object o){ return CMClass.classID(this).compareToIgnoreCase(CMClass.classID(o));}
    public CMObject copyOf()
    {
        try
        {
            return (DefaultMessage)this.clone();
        }
        catch(CloneNotSupportedException e)
        {
            return newInstance();
        }
    }
    
	protected int targetCode=0;
	protected int sourceCode=0;
	protected int othersCode=0;
	protected String targetMsg=null;
	protected String othersMsg=null;
	protected String sourceMsg=null;
	protected MOB myAgent=null;
	protected Environmental myTarget=null;
	protected Environmental myTool=null;
	protected int value=0;
	protected Vector trailMsgs=null;

    public void finalize() throws Throwable
    {
        targetCode=0;
        sourceCode=0;
        othersCode=0;
        targetMsg=null;
        othersMsg=null;
        sourceMsg=null;
        myAgent=null;
        myTarget=null;
        myTool=null;
        trailMsgs=null;
        value=0;
        if(!CMClass.returnMsg(this))
            super.finalize();
    }
    
	public void modify(MOB source, Environmental target, int newAllCode, String allMessage)
	{
		myAgent=source;
		myTarget=target;
		myTool=null;
		sourceMsg=allMessage;
		targetMsg=allMessage;
		targetCode=newAllCode;
		sourceCode=newAllCode;
		othersCode=newAllCode;
		othersMsg=allMessage;
	}
    
    public void modify(MOB source, int newAllCode, String allMessage)
    {
        myAgent=source;
        myTarget=null;
        myTool=null;
        sourceMsg=allMessage;
        targetMsg=allMessage;
        targetCode=newAllCode;
        sourceCode=newAllCode;
        othersCode=newAllCode;
        othersMsg=allMessage;
    }
    
    public void modify(MOB source, int newAllCode, String allMessage, int newValue)
    {
         myAgent=source;
         myTarget=null;
         myTool=null;
         sourceMsg=allMessage;
         targetMsg=allMessage;
         targetCode=newAllCode;
         sourceCode=newAllCode;
         othersCode=newAllCode;
         othersMsg=allMessage;
         value=newValue;
    }
    
    public void modify(MOB source, Environmental target, Environmental tool, int newAllCode, String allMessage)
	{
		myAgent=source;
		myTarget=target;
		myTool=tool;
		sourceMsg=allMessage;
		targetMsg=allMessage;
		targetCode=newAllCode;
		sourceCode=newAllCode;
		othersCode=newAllCode;
		othersMsg=allMessage;
	}

    public void modify(MOB source,
    				   Environmental target,
    				   Environmental tool,
    				   int newSourceCode,
    				   String sourceMessage,
    				   String targetMessage,
    				   String othersMessage)
	{
		myAgent=source;
		myTarget=target;
		myTool=tool;
		sourceMsg=sourceMessage;
		targetMsg=targetMessage;
		targetCode=newSourceCode;
		sourceCode=newSourceCode;
		othersCode=newSourceCode;
		othersMsg=othersMessage;
	}

    protected static synchronized Hashtable getMSGTYPE_DESCS()
    {
        if(MSGTYPE_DESCS.size()!=0) return MSGTYPE_DESCS;
        for(int i=0;i<CMMsg.TYPE_DESCS.length;i++)
            MSGTYPE_DESCS.put(CMMsg.TYPE_DESCS[i],new Integer(i));
        for(int i=0;i<CMMsg.MASK_DESCS.length;i++)
            MSGTYPE_DESCS.put(CMMsg.MASK_DESCS[i],new Integer((int)CMath.pow(2,11+i)));
        for(int i=0;i<CMMsg.MISC_DESCS.length;i++)
            MSGTYPE_DESCS.put(CMMsg.MISC_DESCS[i][0],CMMsg.MISC_DESCS[i][1]);
        return MSGTYPE_DESCS;
    }
    
    public void setSourceCode(int code){sourceCode=code;}
    public void setTargetCode(int code){targetCode=code;}
    public void setOthersCode(int code){othersCode=code;}
    public void setSourceMessage(String str){sourceMsg=str;}
    public void setTargetMessage(String str){targetMsg=str;}
    public void setOthersMessage(String str){othersMsg=str;}

	public int value(){return value;}
	public void setValue(int amount)
    {
        value=amount;
    }
	
	public Vector trailerMsgs()
	{	return trailMsgs;}
	public void addTrailerMsg(CMMsg msg)
	{
		if(trailMsgs==null) trailMsgs=new Vector();
		trailMsgs.addElement(msg);
	}

	public void modify(MOB source,
						Environmental target,
						Environmental tool,
						int newSourceCode,
						String sourceMessage,
						int newTargetCode,
						String targetMessage,
						int newOthersCode,
						String othersMessage)
	{
		myAgent=source;
		myTarget=target;
		myTool=tool;
		sourceMsg=sourceMessage;
		targetMsg=targetMessage;
		targetCode=newTargetCode;
		sourceCode=newSourceCode;
		othersCode=newOthersCode;
		othersMsg=othersMessage;
	}
    public void modify(MOB source,
    				   Environmental target,
    				   Environmental tool,
    				   int newSourceCode,
    				   int newTargetCode,
    				   int newOthersCode,
    				   String Message)
	{
		myAgent=source;
		myTarget=target;
		myTool=tool;
		targetMsg=Message;
		sourceMsg=Message;
		targetCode=newTargetCode;
		sourceCode=newSourceCode;
		othersCode=newOthersCode;
		othersMsg=Message;
	}
	public MOB source(){ return myAgent; }
    public void setSource(MOB mob){myAgent=mob;}
	public Environmental target() { return myTarget; }
    public void setTarget(Environmental E){myTarget=E;}
	public Environmental tool() { return myTool; }
    public void setTool(Environmental E){myTool=E;}
	public int targetMajor() { return targetCode&CMMsg.MAJOR_MASK; }
	public int targetMinor() { return targetCode&CMMsg.MINOR_MASK; }
	public int targetCode() { return targetCode; }
	public String targetMessage() { return targetMsg;}
	public int sourceCode() { return sourceCode; }
	public int sourceMajor() { return sourceCode&CMMsg.MAJOR_MASK;}
	public int sourceMinor() { return sourceCode&CMMsg.MINOR_MASK;}
	public String sourceMessage() { return sourceMsg;}
	public int othersMajor() { return othersCode&CMMsg.MAJOR_MASK; }
	public int othersMinor() { return othersCode&CMMsg.MINOR_MASK; }
	public int othersCode() {  return othersCode; }
	public String othersMessage() { return othersMsg; }
	public boolean amITarget(Environmental thisOne){ return ((thisOne!=null)&&(thisOne==target()));}
	public boolean amISource(MOB thisOne){return ((thisOne!=null)&&(thisOne==source()));}
    public boolean isTarget(Environmental E){return amITarget(E);}
    public boolean isTarget(int codeOrMask){return matches(targetCode,codeOrMask);}
    public boolean isTarget(String codeOrMaskDesc){return matches(targetCode,codeOrMaskDesc);}
    public boolean isSource(Environmental E){return (E instanceof MOB)?amISource((MOB)E):false;}
    public boolean isSource(int codeOrMask){return matches(sourceCode,codeOrMask);}
    public boolean isSource(String codeOrMaskDesc){return matches(sourceCode,codeOrMaskDesc);}
    public boolean isOthers(Environmental E){return (!isTarget(E))&&(!isSource(E));}
    public boolean isOthers(int codeOrMask){return matches(othersCode,codeOrMask);}
    public boolean isOthers(String codeOrMaskDesc){return matches(othersCode,codeOrMaskDesc);}
    
    protected static boolean matches(int code1, int code2){return ((code1&CMMsg.MINOR_MASK)==code2)||((code1&CMMsg.MAJOR_MASK)==code2);}
    protected static boolean matches(int code1, String code2)
    {
        Integer I=(Integer)getMSGTYPE_DESCS().get(code2.toUpperCase());
        if(I==null)
        {
            code2=code2.toUpperCase();
            for(int i=0;i<TYPE_DESCS.length;i++)
                if(code2.startsWith(TYPE_DESCS[i]))
                { I=new Integer(i); break;}
            if(I==null)
            for(int i=0;i<TYPE_DESCS.length;i++)
                if(TYPE_DESCS[i].startsWith(code2))
                { I=new Integer(i); break;}
            if(I==null)
            for(int i=0;i<MASK_DESCS.length;i++)
                if(code2.startsWith(MASK_DESCS[i]))
                { I=new Integer((int)CMath.pow(2,11+i)); break;}
            if(I==null)
            for(int i=0;i<MASK_DESCS.length;i++)
                if(MASK_DESCS[i].startsWith(code2))
                { I=new Integer((int)CMath.pow(2,11+i)); break;}
            if(I==null)
            for(int i=0;i<MISC_DESCS.length;i++)
                if(code2.startsWith((String)MISC_DESCS[i][0]))
                { I=(Integer)MISC_DESCS[i][1]; break;}
            if(I==null)
            for(int i=0;i<MISC_DESCS.length;i++)
                if(((String)MISC_DESCS[i][0]).startsWith(code2))
                { I=(Integer)MISC_DESCS[i][1]; break;}
            if(I==null) return false;
        }
        return matches(code1,I.intValue());
    }
    
}