b11354767d
Moved all configuration variables from mod_pocketDim to DDProperties (formerly DimDoorsConfig). Changed property names to be clearer in config file, modified some comments, and generally cleaned up the config file. Fixed some missing properties and variables that were reading from the wrong properties. Modified the order in which mod_pocketDim instantiated some of its static fields so that they would load after properties are read. Almost all classes load after properties are read. Fixed indentation across various files and replaced references to properties in mod_pocketDim with references to DDProperties.
117 lines
No EOL
2.7 KiB
Java
117 lines
No EOL
2.7 KiB
Java
package StevenDimDoors.mod_pocketDim.commands;
|
|
|
|
import java.util.ArrayList;
|
|
|
|
import cpw.mods.fml.common.FMLCommonHandler;
|
|
|
|
import StevenDimDoors.mod_pocketDim.DDProperties;
|
|
import StevenDimDoors.mod_pocketDim.DimData;
|
|
import StevenDimDoors.mod_pocketDim.LinkData;
|
|
import StevenDimDoors.mod_pocketDim.mod_pocketDim;
|
|
import StevenDimDoors.mod_pocketDim.helpers.dimHelper;
|
|
import net.minecraft.command.CommandBase;
|
|
import net.minecraft.command.ICommandSender;
|
|
import net.minecraft.world.World;
|
|
|
|
public class CommandDeleteRifts extends CommandBase
|
|
{
|
|
public CommandDeleteRifts()
|
|
{
|
|
if (properties == null)
|
|
properties = DDProperties.instance();
|
|
}
|
|
|
|
private static DDProperties properties = null;
|
|
|
|
public String getCommandName()//the name of our command
|
|
{
|
|
return "dimdoors-cleanupRifts";
|
|
}
|
|
|
|
@Override
|
|
public void processCommand(ICommandSender var1, String[] var2)
|
|
|
|
{
|
|
int linksRemoved=0;
|
|
int targetDim;
|
|
boolean shouldGo= true;
|
|
|
|
if(var2.length==0)
|
|
{
|
|
targetDim= this.getCommandSenderAsPlayer(var1).worldObj.provider.dimensionId;
|
|
}
|
|
else if(var2.length==1)
|
|
{
|
|
targetDim= this.parseInt(var1, var2[0]);
|
|
if(!dimHelper.dimList.containsKey(targetDim))
|
|
{
|
|
this.getCommandSenderAsPlayer(var1).sendChatToPlayer("Error- dim "+targetDim+" not registered");
|
|
shouldGo=false;
|
|
|
|
}
|
|
}
|
|
else
|
|
{
|
|
targetDim=0;
|
|
shouldGo=false;
|
|
this.getCommandSenderAsPlayer(var1).sendChatToPlayer("Error-Invalid argument, delete_links <targetDimID> or blank for current dim");
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if(shouldGo)
|
|
{
|
|
if(dimHelper.dimList.containsKey(targetDim))
|
|
{
|
|
DimData dim = dimHelper.dimList.get(targetDim);
|
|
|
|
ArrayList<LinkData> linksInDim = dim.printAllLinkData();
|
|
|
|
for(LinkData link : linksInDim)
|
|
{
|
|
World targetWorld = dimHelper.getWorld(targetDim);
|
|
|
|
if(targetWorld==null)
|
|
{
|
|
dimHelper.initDimension(targetDim);
|
|
}
|
|
else if(targetWorld.provider==null)
|
|
{
|
|
dimHelper.initDimension(targetDim);
|
|
|
|
}
|
|
targetWorld = dimHelper.getWorld(targetDim);
|
|
|
|
if(targetWorld.getBlockId(link.locXCoord, link.locYCoord, link.locZCoord)==properties.RiftBlockID)
|
|
{
|
|
dim.removeLinkAtCoords(link);
|
|
|
|
|
|
|
|
targetWorld.setBlock(link.locXCoord, link.locYCoord, link.locZCoord, 0);
|
|
|
|
|
|
linksRemoved++;
|
|
}
|
|
|
|
}
|
|
|
|
//dim.linksInThisDim.clear();
|
|
this.getCommandSenderAsPlayer(var1).sendChatToPlayer("Removed "+linksRemoved+" rifts.");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// this.getCommandSenderAsPlayer(var1).sendChatToPlayer(String.valueOf(var2));
|
|
// this.getCommandSenderAsPlayer(var1).sendChatToPlayer(String.valueOf(var2.length));
|
|
// this.getCommandSenderAsPlayer(var1).sendChatToPlayer("Removed "+linksRemoved+" rifts.");
|
|
|
|
|
|
// TODO Auto-generated method stub
|
|
|
|
}
|
|
} |