package com.planet_ink.coffee_mud.Abilities.Spells;
import com.planet_ink.coffee_mud.core.interfaces.*;
import com.planet_ink.coffee_mud.core.*;
import com.planet_ink.coffee_mud.core.collections.*;
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.Libraries.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 2003-2019 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 Spell_AnalyzeDweomer extends Spell
{
@Override
public String ID()
{
return "Spell_AnalyzeDweomer";
}
private final static String localizedName = CMLib.lang().L("Analyze Item");
@Override
public String name()
{
return localizedName;
}
@Override
public int abstractQuality()
{
return Ability.QUALITY_INDIFFERENT;
}
@Override
protected int canTargetCode()
{
return CAN_ITEMS;
}
@Override
public int classificationCode()
{
return Ability.ACODE_SPELL|Ability.DOMAIN_DIVINATION;
}
@Override
public boolean invoke(final MOB mob, final List<String> commands, final Physical givenTarget, final boolean auto, final int asLevel)
{
final Item target=getTarget(mob,mob.location(),givenTarget,commands,Wearable.FILTER_ANY);
if(target==null)
return false;
if(!super.invoke(mob,commands,givenTarget,auto,asLevel))
return false;
final boolean success=proficiencyCheck(mob,0,auto);
if(success)
{
final CMMsg msg=CMClass.getMsg(mob,target,this,verbalCastCode(mob,target,auto),auto?"":L("^S<S-NAME> analyze(s) the nature of <T-NAMESELF> carefully.^?"));
if(mob.location().okMessage(mob,msg))
{
mob.location().send(mob,msg);
final StringBuffer str=new StringBuffer("");
if(target instanceof Armor)
{
str.append(L("It is a kind of armor. "));
if(!target.rawLogicalAnd())
str.append(L("It is worn on any one of the following: "));
else
str.append(L("It is worn on all of the following: "));
final Wearable.CODES codes = Wearable.CODES.instance();
for(final long wornCode : codes.all())
{
if(wornCode!=Wearable.IN_INVENTORY)
{
if((codes.name(wornCode).length()>0)
&&(((target.rawProperLocationBitmap()&wornCode)==wornCode)))
str.append(codes.name(wornCode).toLowerCase()+" ");
}
}
str.append(". ");
}
if((target instanceof Container)&&(((Container)target).capacity()>0))
str.append(L("It is a container. "));
if(target instanceof Coins)
str.append(L("It is currency. "));
if(target instanceof Drink)
str.append(L("You can drink it. "));
if(target instanceof Food)
str.append(L("You can eat it. "));
if(target instanceof Pill)
str.append(L("It is a magic pill. "));
if(target instanceof Potion)
str.append(L("It is a magic potion. "));
if(target instanceof Light)
str.append(L("It is a light source. "));
if(target instanceof com.planet_ink.coffee_mud.Items.interfaces.RoomMap)
str.append(L("It is a map. "));
if(target instanceof MiscMagic)
str.append(L("It has a magical aura. "));
if(target instanceof Scroll)
{
if(target instanceof MiscMagic)
str.append(L("It is a magic scroll. "));
else
str.append(L("It is an instructional document. "));
}
if(target instanceof Wand)
str.append(L("It is a magic wand. "));
if(target instanceof Electronics)
str.append(L("It is some sort of high technology. "));
if(target instanceof InnKey)
str.append(L("It is an Inn key. "));
else
if(target instanceof DoorKey)
str.append(L("It is a key. "));
if(target instanceof LandTitle)
str.append(L("It is a property title. "));
if(target.isReadable())
str.append(L("It is readable. "));
if(target instanceof DeadBody)
str.append(L("It is a corpse of a @x1. ",((DeadBody)target).charStats().getMyRace().name()));
if(target instanceof Weapon)
{
final Weapon w=(Weapon)target;
str.append(L("It is a @x1 weapon. ",Weapon.CLASS_DESCS[w.weaponClassification()].toLowerCase()));
str.append(L("It does @x1 damage. ",Weapon.TYPE_DESCS[w.weaponDamageType()].toLowerCase()));
if(w.minRange()>0)
str.append(L("It has a minimum range of @x1. ",""+w.minRange()));
if(w.maxRange()>w.minRange())
str.append(L("It has a maximum range of @x1. ",""+w.maxRange()));
}
str.append(L("It is made of @x1. ",RawMaterial.CODES.NAME(target.material()).toLowerCase()));
final Command C=CMClass.getCommand("Affect");
try
{
final String affectStr=C.executeInternal(mob,0,target).toString();
if(affectStr.length()<5)
str.append(L("It is affected by: @x1",affectStr));
}
catch(final Exception e)
{
}
if(mob.isMonster())
CMLib.commands().postSay(mob,null,str.toString().trim(),false,false);
else
mob.tell(str.toString().trim());
}
}
else
beneficialVisualFizzle(mob,target,L("<S-NAME> analyze(s) the nature of <T-NAMESELF>, looking more frustrated every second."));
// return whether it worked
return success;
}
}