package com.planet_ink.coffee_mud.Abilities.Songs;
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 2001-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 Song_Friendship extends Song
{
@Override
public String ID()
{
return "Song_Friendship";
}
private final static String localizedName = CMLib.lang().L("Friendship");
@Override
public String name()
{
return localizedName;
}
@Override
public int abstractQuality()
{
return Ability.QUALITY_MALICIOUS;
}
@Override
protected boolean skipStandardSongInvoke()
{
return true;
}
@Override
protected boolean maliciousButNotAggressiveFlag()
{
return true;
}
@Override
public long flags()
{
return Ability.FLAG_CHARMING|Ability.FLAG_MINDALTERING;
}
@Override
public boolean okMessage(final Environmental myHost, final CMMsg msg)
{
if((affected==null)||(!(affected instanceof MOB))||(affected==invoker))
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 like @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)||(msg.sourceMinor()==CMMsg.TYP_RECALL))
&&(mob.amFollowing()!=null)
&&(((Room)msg.target()).isInhabitant(mob.amFollowing())))
{
mob.tell(L("You don't want to leave your friend."));
return false;
}
else
if((msg.amISource(mob))
&&(mob.amFollowing()!=null)
&&(msg.sourceMinor()==CMMsg.TYP_NOFOLLOW))
{
mob.tell(L("You like @x1 too much.",mob.amFollowing().name()));
return false;
}
return super.okMessage(myHost,msg);
}
@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 boolean tick(final Tickable ticking, final int tickID)
{
if(!super.tick(ticking,tickID))
return false;
final MOB mob=(MOB)affected;
if(mob==null)
return false;
if(mob==invoker)
return true;
if(mob.amFollowing()!=invoker)
{
unInvoke();
return false;
}
return true;
}
@Override
public void unInvoke()
{
if(affected instanceof MOB)
{
final MOB mob=(MOB)affected;
super.unInvoke();
if(mob!=invoker)
{
if((canBeUninvoked()&&(!mob.amDead())))
{
mob.location().show(mob,null,CMMsg.MSG_OK_VISUAL,L("<S-YOUPOSS> free-will returns."));
mob.setFollowing(null);
CMLib.commands().postStand(mob,true, false);
if(mob.isMonster())
{
if((CMLib.dice().rollPercentage()>50)
||((mob.getStartRoom()!=null)
&&(mob.getStartRoom().getArea()!=mob.location().getArea())
&&(CMLib.flags().canMove(mob))
&&((!CMLib.flags().isAggressiveTo(mob,invoker))||(invoker==null)||(!mob.location().isInhabitant(invoker)))))
CMLib.tracking().wanderAway(mob,true,true);
else
if((invoker!=null)&&(invoker!=mob))
mob.setVictim(invoker);
}
}
}
}
else
super.unInvoke();
}
@Override
public boolean invoke(final MOB mob, final List<String> commands, final Physical givenTarget, final boolean auto, final int asLevel)
{
timeOut=0;
if(!super.invoke(mob,commands,givenTarget,auto,asLevel))
return false;
if((!auto)&&(!CMLib.flags().canSpeak(mob)))
{
mob.tell(L("You can't sing!"));
return false;
}
final boolean success=proficiencyCheck(mob,0,auto);
unSingAll(mob,mob,true,false);
if(success)
{
invoker=mob;
originRoom=mob.location();
final int oldDepth = this.songDepth;
final int newDepth = this.calculateNewSongDepth(mob);
commonRoomSet=getInvokerScopeRoomSet(newDepth);
this.songDepth = newDepth;
String str=auto?L("The @x1 begins to play!",songOf()):L("^S<S-NAME> begin(s) to sing the @x1.^?",songOf());
if((!auto)&&(mob.fetchEffect(this.ID())!=null))
{
if(newDepth > oldDepth)
str=L("^S<S-NAME> extend(s) the @x1`s range.^?",songOf());
else
str=L("^S<S-NAME> start(s) the @x1 over again.^?",songOf());
}
for(int v=0;v<commonRoomSet.size();v++)
{
final Room R=commonRoomSet.get(v);
final String msgStr=getCorrectMsgString(R,str,v);
final CMMsg msg=CMClass.getMsg(mob,null,this,verbalCastCode(mob,null,auto),msgStr);
if(mob.location().okMessage(mob,msg))
{
final Song newOne=(Song)this.copyOf();
final Set<MOB> h=sendMsgAndGetTargets(mob, R, msg, givenTarget, auto);
if(h==null)
continue;
for (final Object element : h)
{
final MOB follower=(MOB)element;
// malicious songs must not affect the invoker!
int affectType=CMMsg.MSG_CAST_VERBAL_SPELL;
if((castingQuality(mob,follower)==Ability.QUALITY_MALICIOUS)&&(follower!=mob))
affectType=CMMsg.MSG_CAST_ATTACK_VERBAL_SPELL;
if(auto)
affectType=affectType|CMMsg.MASK_ALWAYS;
if((CMLib.flags().canBeHeardSpeakingBy(invoker,follower)&&(follower.fetchEffect(this.ID())==null)))
{
CMMsg msg2=CMClass.getMsg(mob,follower,this,affectType,null);
final CMMsg msg3=msg2;
if((mindAttack())&&(follower!=mob))
msg2=CMClass.getMsg(mob,follower,this,CMMsg.MSK_CAST_MALICIOUS_VERBAL|CMMsg.TYP_MIND|(auto?CMMsg.MASK_ALWAYS:0),null);
int levelDiff=follower.phyStats().level()-(mob.phyStats().level()+(getXLEVELLevel(mob)*2));
if(levelDiff<0)
levelDiff=0;
if((levelDiff>(3+((mob.phyStats().level()+(getXLEVELLevel(mob)*2))/10)))&&(mindAttack()))
mob.tell(mob,follower,null,L("<T-NAME> looks too powerful."));
else
if((R.okMessage(mob,msg2))&&(R.okMessage(mob,msg3)))
{
follower.location().send(mob,msg2);
if(msg2.value()<=0)
{
follower.location().send(mob,msg3);
if((msg3.value()<=0)&&(follower.fetchEffect(newOne.ID())==null))
{
if((follower.amFollowing()!=mob)&&(follower!=mob))
{
CMLib.commands().postFollow(follower,mob,false);
if(follower.amFollowing()==mob)
{
if(follower!=mob)
follower.addEffect((Ability)newOne.copyOf());
else
follower.addEffect(newOne);
CMLib.combat().makePeaceInGroup(mob);
}
}
}
}
}
}
}
}
}
}
else
mob.location().show(mob,null,CMMsg.MSG_NOISE,L("<S-NAME> hit(s) a foul note."));
return success;
}
}