package com.planet_ink.coffee_mud.Abilities.Properties;
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 2016-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 Prop_OpenCommand extends Property
{
@Override
public String ID()
{
return "Prop_OpenCommand";
}
@Override
public String name()
{
return "Opening Command";
}
protected final List<String[]> commandPhrases = new SLinkedList<String[]>();
protected boolean noopen = false;
protected String overMsg = null;
@Override
public void setMiscText(final String newMiscText)
{
commandPhrases.clear();
noopen=false;
overMsg=null;
for (final String p : newMiscText.split(";"))
{
if(p.trim().length()>0)
{
if(p.equalsIgnoreCase("noopen"))
noopen=true;
if(p.toLowerCase().startsWith("message")
&&(p.substring(7).trim().startsWith("=")))
overMsg=p.substring(7).trim().substring(1);
else
{
final String[] cmd = CMParms.parse(p).toArray(new String[0]);
if(cmd.length>0)
{
cmd[0]=cmd[0].toUpperCase();
commandPhrases.add(cmd);
}
}
}
}
super.setMiscText(newMiscText);
}
@Override
protected int canAffectCode()
{
return Ability.CAN_ITEMS | Ability.CAN_EXITS;
}
@Override
public String accountForYourself()
{
return "";
}
@Override
public boolean okMessage(final Environmental myHost, final CMMsg msg)
{
if((msg.target()==affected)
&&(noopen)
&&(msg.targetMinor()==CMMsg.TYP_OPEN))
{
if(affected instanceof Exit)
msg.source().tell(L("You can't @x1 @x2.",((Exit)affected).openWord(),affected.Name()));
else
msg.source().tell(L("You can't open @x1.",affected.Name()));
return false;
}
if((msg.sourceMinor()==CMMsg.TYP_HUH)
&&(msg.targetMessage()!=null))
{
final MOB mob=msg.source();
final List<String> cmds=CMParms.parse(msg.targetMessage());
if(cmds.size()==0)
return true;
final String word=cmds.get(0).toUpperCase();
boolean match=false;
for(final String[] cmd : commandPhrases)
{
if(cmd[0].equals(word))
{
for(int i=1;i<cmd.length;i++)
{
final String cmdI=cmd[i].toLowerCase();
final String cmdsI=cmds.get(i).toLowerCase();
if(cmdI.endsWith("**") && cmdsI.startsWith(cmdI.substring(0,cmdI.length()-2)))
{
match=true;
break;
}
else
if(cmdI.endsWith("*") && cmdsI.startsWith(cmdI.substring(0,cmdI.length()-1)))
{
}
else
if(!cmdsI.equals(cmdI))
{
match=false;
break;
}
if(i==cmd.length-1)
{
match=(i==cmds.size()-1);
}
}
}
if(match)
{
final Room R=mob.location();
if(affected instanceof Exit)
{
final Exit E=(Exit)affected;
if(!E.isOpen())
{
int dirCode=-1;
for(int d=Directions.NUM_DIRECTIONS()-1;d>=0;d--)
{
if(R.getExitInDir(d)==E)
{
dirCode = d;
break;
}
}
if(dirCode>=0)
{
final String msgStr = (this.overMsg!=null) ? this.overMsg : L("<T-NAME> "+CMLib.english().makePlural(E.openWord())+".");
CMMsg msg2=CMClass.getMsg(mob,E,null,CMMsg.MSG_UNLOCK,null);
CMLib.utensils().roomAffectFully(msg2,R,dirCode);
msg2=CMClass.getMsg(mob,E,null,CMMsg.MSG_OPEN,msgStr);
CMLib.utensils().roomAffectFully(msg2,R,dirCode);
}
}
}
else
if(affected instanceof Container)
{
final String msgStr = (this.overMsg!=null) ? this.overMsg : L("<T-NAME> opens.");
CMMsg msg2=CMClass.getMsg(mob,affected,null,CMMsg.MSG_UNLOCK,null);
R.send(mob,msg2);
msg2=CMClass.getMsg(mob,affected,null,CMMsg.MSG_OPEN,msgStr);
R.send(mob,msg2);
}
return false;
}
}
}
return super.okMessage(myHost, msg);
}
}