package com.planet_ink.coffee_mud.Commands;
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 2004-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 Fill extends StdCommand
{
public Fill()
{
}
private final String[] access=I(new String[]{"FILL"});
@Override
public String[] getAccessWords()
{
return access;
}
@Override
public boolean execute(final MOB mob, final List<String> commands, final int metaFlags)
throws java.io.IOException
{
final Vector<String> origCmds=new XVector<String>(commands);
if(commands.size()<2)
{
CMLib.commands().postCommandFail(mob,origCmds,L("Fill what, from what?"));
return false;
}
commands.remove(0);
final String testFill=CMParms.combine(commands,0);
final Environmental fillThisItem=mob.location().fetchFromRoomFavorItems(null,testFill);
if((fillThisItem instanceof Container)
&&(!CMLib.flags().isGettable((Container)fillThisItem))
&&(((Container)fillThisItem).material()==RawMaterial.RESOURCE_DUST))
{
final String fillMsg="<S-NAME> fill(s) in <T-NAMESELF>.";
final CMMsg msg=CMClass.getMsg(mob,fillThisItem,null,CMMsg.MSG_CLOSE,fillMsg,testFill,fillMsg);
if(mob.location().okMessage(msg.source(),msg))
mob.location().send(msg.source(),msg);
return false;
}
if((commands.size()<2)&&(!(mob.location() instanceof Drink)))
{
CMLib.commands().postCommandFail(mob,origCmds,L("From what should I fill the @x1?",commands.get(0)));
return false;
}
Environmental fillFromThis=null;
if((commands.size()==1)&&(mob.location() instanceof Drink))
fillFromThis=mob.location();
else
{
int fromDex=commands.size()-1;
for(int i=commands.size()-2;i>=1;i--)
{
if(commands.get(i).equalsIgnoreCase("from"))
{
fromDex=i;
commands.remove(i);
}
}
final String thingToFillFrom=CMParms.combine(commands,fromDex);
fillFromThis=mob.location().fetchFromMOBRoomFavorsItems(mob,null,thingToFillFrom,Wearable.FILTER_ANY);
if((fillFromThis==null)||(!CMLib.flags().canBeSeenBy(fillFromThis,mob)))
{
CMLib.commands().postCommandFail(mob,origCmds,L("I don't see @x1 here.",thingToFillFrom));
return false;
}
while(commands.size()>=(fromDex+1))
commands.remove(commands.size()-1);
}
final int maxToFill=CMLib.english().parseMaxToGive(mob,commands,true,mob,false);
if(maxToFill<0)
return false;
String thingToFill=CMParms.combine(commands,0);
int addendum=1;
final Vector<Environmental> V=new Vector<Environmental>();
boolean allFlag=(commands.size()>0)?commands.get(0).equalsIgnoreCase("all"):false;
if(thingToFill.toUpperCase().startsWith("ALL."))
{
allFlag=true;
thingToFill="ALL "+thingToFill.substring(4);
}
if(thingToFill.toUpperCase().endsWith(".ALL"))
{
allFlag=true;
thingToFill="ALL "+thingToFill.substring(0,thingToFill.length()-4);
}
boolean doBugFix = true;
String addendumStr="";
while(doBugFix || ((allFlag)&&(maxToFill<addendum)))
{
doBugFix=false;
final Item fillThis=mob.findItem(null,thingToFill+addendumStr);
if(fillThis==null)
break;
if((CMLib.flags().canBeSeenBy(fillThis,mob))
&&(!V.contains(fillThis)))
V.add(fillThis);
addendumStr="."+(++addendum);
}
if(V.size()==0)
CMLib.commands().postCommandFail(mob,origCmds,L("You don't seem to have '@x1'.",thingToFill));
else
for(int i=0;i<V.size();i++)
{
final Environmental fillThis=V.get(i);
final CMMsg fillMsg=CMClass.getMsg(mob,fillThis,fillFromThis,CMMsg.MSG_FILL,L("<S-NAME> fill(s) <T-NAME> from <O-NAME>."));
if((!mob.isMine(fillThis))&&(fillThis instanceof Item))
{
if(CMLib.commands().postGet(mob,null,(Item)fillThis,false))
{
if(mob.location().okMessage(mob,fillMsg))
mob.location().send(mob,fillMsg);
else
CMLib.commands().postCommandRejection(mob, fillThis, fillFromThis, origCmds);
}
}
else
if(mob.location().okMessage(mob,fillMsg))
mob.location().send(mob,fillMsg);
else
CMLib.commands().postCommandRejection(mob, fillThis, fillFromThis, origCmds);
}
return false;
}
@Override
public double combatActionsCost(final MOB mob, final List<String> cmds)
{
return CMProps.getCommandCombatActionCost(ID());
}
@Override
public double actionsCost(final MOB mob, final List<String> cmds)
{
return CMProps.getCommandActionCost(ID());
}
@Override
public boolean canBeOrdered()
{
return true;
}
}