package com.planet_ink.coffee_mud.Abilities.Prayers;
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-2016 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 Prayer_Sermon extends Prayer
{
@Override public String ID() { return "Prayer_Sermon"; }
private final static String localizedName = CMLib.lang().L("Sermon");
@Override public String name() { return localizedName; }
private final static String localizedStaticDisplay = CMLib.lang().L("(Sermon)");
@Override public String displayText() { return localizedStaticDisplay; }
@Override public int classificationCode(){return Ability.ACODE_PRAYER|Ability.DOMAIN_EVANGELISM;}
@Override public int abstractQuality(){return Ability.QUALITY_OK_OTHERS;}
@Override protected int canAffectCode(){return CAN_MOBS;}
@Override public long flags(){return Ability.FLAG_CHARMING|Ability.FLAG_NEUTRAL;}
@Override protected int overrideMana(){return Ability.COST_ALL;}
@Override
public void executeMsg(final Environmental myHost, final CMMsg msg)
{
super.executeMsg(myHost,msg);
if((affected!=null)
&&(affected instanceof MOB)
&&(msg.amISource((MOB)affected)||msg.amISource(((MOB)affected).amFollowing())||(msg.source()==invoker()))
&&(msg.sourceMinor()==CMMsg.TYP_QUIT))
{
unInvoke();
if(msg.source().playerStats()!=null)
msg.source().playerStats().setLastUpdated(0);
}
}
@Override
public void unInvoke()
{
// undo the affects of this spell
if(!(affected instanceof MOB))
return;
final MOB mob=(MOB)affected;
super.unInvoke();
if(canBeUninvoked())
{
if(mob.amFollowing()!=null)
CMLib.commands().postFollow(mob,null,false);
CMLib.commands().postStand(mob,true);
if((mob.isMonster())&&(!CMLib.flags().isMobile(mob)))
CMLib.tracking().wanderAway(mob,true,true);
}
}
@Override
public boolean okMessage(final Environmental myHost, final CMMsg msg)
{
if(!(affected instanceof MOB))
return true;
final MOB mob=(MOB)affected;
// when this spell is on a MOBs Affected list,
// it should consistantly prevent the mob
// from trying to do ANYTHING except sleep
if((msg.amITarget(mob))
&&(CMath.bset(msg.targetMajor(),CMMsg.MASK_MALICIOUS))
&&(msg.amISource(mob.amFollowing())))
unInvoke();
else
if((msg.amISource(mob))
&&(CMath.bset(msg.targetMajor(),CMMsg.MASK_MALICIOUS))
&&(msg.amITarget(mob.amFollowing())))
{
mob.tell(L("You admire @x1 too much.",mob.amFollowing().charStats().himher()));
return false;
}
else
if((msg.amISource(mob))
&&(!mob.isMonster())
&&(msg.target() instanceof Room)
&&(msg.targetMinor()==CMMsg.TYP_LEAVE)
&&(mob.amFollowing()!=null)
&&(((Room)msg.target()).isInhabitant(mob.amFollowing())))
{
mob.tell(L("You are too enthralled to leave."));
return false;
}
else
if((msg.amISource(mob))
&&(mob.amFollowing()!=null)
&&(msg.sourceMinor()==CMMsg.TYP_NOFOLLOW))
{
mob.tell(L("You believe in @x1 too much.",mob.amFollowing().name()));
return false;
}
return super.okMessage(myHost,msg);
}
@Override
public boolean invoke(MOB mob, List<String> commands, Physical givenTarget, boolean auto, int asLevel)
{
final Hashtable<MOB,MOB> h=new Hashtable<MOB,MOB>();
for(int i=0;i<mob.location().numInhabitants();i++)
{
final MOB M=mob.location().fetchInhabitant(i);
if((M!=null)&&(CMLib.flags().canBeSeenBy(M,mob))&&(M!=mob)
&&(M.charStats().getStat(CharStats.STAT_INTELLIGENCE)>4))
h.put(M,M);
}
if(h.size()==0)
{
mob.tell(L("There doesn't appear to be anyone here worth sermonizing to."));
return false;
}
if(!super.invoke(mob,commands,givenTarget,auto,asLevel))
return false;
boolean success=proficiencyCheck(mob,-(h.size()*3),auto);
if(success)
{
if(mob.location().show(mob,null,this,verbalCastCode(mob,null,auto),auto?"":L("^S<S-NAME> begin(s) sermonizing on the wonders of @x1.^?",hisHerDiety(mob))))
for(final Enumeration<MOB> f=h.elements();f.hasMoreElements();)
{
final MOB target=f.nextElement();
if((CMLib.flags().canBeHeardSpeakingBy(mob,target))&&(mob.mayIFight(target)))
{
final CMMsg msg=CMClass.getMsg(mob,target,this,verbalCastCode(mob,target,auto),null);
if((mob.location().okMessage(mob,msg))&&(target.fetchEffect(this.ID())==null))
{
mob.location().send(mob,msg);
success=maliciousAffect(mob,target,asLevel,0,CMMsg.MSK_CAST_MALICIOUS_VERBAL|CMMsg.TYP_MIND|(auto?CMMsg.MASK_ALWAYS:0))!=null;
if((success)&&(msg.value()<=0))
{
if(target.getVictim()==mob)
target.makePeace(true);
target.location().show(target,null,CMMsg.MSG_OK_ACTION,L("<S-NAME> begin(s) nodding and shouting praises to @x1.",hisHerDiety(mob)));
CMLib.commands().postFollow(target,mob,true);
}
}
}
else
beneficialWordsFizzle(mob,target,L("<T-NAME> seem(s) unmoved by the <S-YOUPOSS> sermon."));
}
}
else
return beneficialWordsFizzle(mob,null,L("<S-NAME> forget(s) how <S-YOUPOSS> sermon to @x1 goes.",hisHerDiety(mob)));
// return whether it worked
return success;
}
}