base mod created

This commit is contained in:
Mohammad-Ali Minaie
2018-10-08 09:07:47 -04:00
parent 0a7700c356
commit b86dedad2f
7848 changed files with 584664 additions and 1 deletions

View File

@@ -0,0 +1,162 @@
package net.minecraft.command;
import java.util.Collections;
import java.util.List;
import javax.annotation.Nullable;
import net.minecraft.entity.player.EntityPlayerMP;
import net.minecraft.server.MinecraftServer;
import net.minecraft.util.EnumParticleTypes;
import net.minecraft.util.math.BlockPos;
import net.minecraft.util.math.Vec3d;
import net.minecraft.world.World;
import net.minecraft.world.WorldServer;
public class CommandParticle extends CommandBase
{
/**
* Gets the name of the command
*/
public String getName()
{
return "particle";
}
/**
* Return the required permission level for this command.
*/
public int getRequiredPermissionLevel()
{
return 2;
}
/**
* Gets the usage string for the command.
*/
public String getUsage(ICommandSender sender)
{
return "commands.particle.usage";
}
/**
* Callback for when the command is executed
*/
public void execute(MinecraftServer server, ICommandSender sender, String[] args) throws CommandException
{
if (args.length < 8)
{
throw new WrongUsageException("commands.particle.usage", new Object[0]);
}
else
{
boolean flag = false;
EnumParticleTypes enumparticletypes = EnumParticleTypes.getByName(args[0]);
if (enumparticletypes == null)
{
throw new CommandException("commands.particle.notFound", new Object[] {args[0]});
}
else
{
String s = args[0];
Vec3d vec3d = sender.getPositionVector();
double d0 = (double)((float)parseDouble(vec3d.x, args[1], true));
double d1 = (double)((float)parseDouble(vec3d.y, args[2], true));
double d2 = (double)((float)parseDouble(vec3d.z, args[3], true));
double d3 = (double)((float)parseDouble(args[4]));
double d4 = (double)((float)parseDouble(args[5]));
double d5 = (double)((float)parseDouble(args[6]));
double d6 = (double)((float)parseDouble(args[7]));
int i = 0;
if (args.length > 8)
{
i = parseInt(args[8], 0);
}
boolean flag1 = false;
if (args.length > 9 && "force".equals(args[9]))
{
flag1 = true;
}
EntityPlayerMP entityplayermp;
if (args.length > 10)
{
entityplayermp = getPlayer(server, sender, args[10]);
}
else
{
entityplayermp = null;
}
int[] aint = new int[enumparticletypes.getArgumentCount()];
for (int j = 0; j < aint.length; ++j)
{
if (args.length > 11 + j)
{
try
{
aint[j] = Integer.parseInt(args[11 + j]);
}
catch (NumberFormatException var28)
{
throw new CommandException("commands.particle.invalidParam", new Object[] {args[11 + j]});
}
}
}
World world = sender.getEntityWorld();
if (world instanceof WorldServer)
{
WorldServer worldserver = (WorldServer)world;
if (entityplayermp == null)
{
worldserver.spawnParticle(enumparticletypes, flag1, d0, d1, d2, i, d3, d4, d5, d6, aint);
}
else
{
worldserver.spawnParticle(entityplayermp, enumparticletypes, flag1, d0, d1, d2, i, d3, d4, d5, d6, aint);
}
notifyCommandListener(sender, this, "commands.particle.success", new Object[] {s, Math.max(i, 1)});
}
}
}
}
/**
* Get a list of options for when the user presses the TAB key
*/
public List<String> getTabCompletions(MinecraftServer server, ICommandSender sender, String[] args, @Nullable BlockPos targetPos)
{
if (args.length == 1)
{
return getListOfStringsMatchingLastWord(args, EnumParticleTypes.getParticleNames());
}
else if (args.length > 1 && args.length <= 4)
{
return getTabCompletionCoordinate(args, 1, targetPos);
}
else if (args.length == 10)
{
return getListOfStringsMatchingLastWord(args, new String[] {"normal", "force"});
}
else
{
return args.length == 11 ? getListOfStringsMatchingLastWord(args, server.getOnlinePlayerNames()) : Collections.emptyList();
}
}
/**
* Return whether the specified command parameter index is a username parameter.
*/
public boolean isUsernameIndex(String[] args, int index)
{
return index == 10;
}
}