123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203 |
- package me.km.snuviscript.commands;
- import com.mojang.brigadier.StringReader;
- import me.hammerle.snuviscript.code.ScriptManager;
- import me.hammerle.snuviscript.code.SnuviUtils;
- import me.km.inventory.InventoryUtils;
- import me.km.utils.Location;
- import me.km.utils.Mapper;
- import net.minecraft.block.*;
- import net.minecraft.command.arguments.BlockStateParser;
- import net.minecraft.entity.EntityType;
- import net.minecraft.entity.player.ServerPlayerEntity;
- import net.minecraft.item.ItemStack;
- import net.minecraft.nbt.CompoundNBT;
- import net.minecraft.network.play.server.SUpdateTileEntityPacket;
- import net.minecraft.state.IProperty;
- import net.minecraft.state.properties.ChestType;
- import net.minecraft.tags.BlockTags;
- import net.minecraft.tags.Tag;
- import net.minecraft.tileentity.*;
- import net.minecraft.util.Direction;
- import net.minecraft.util.ResourceLocation;
- import net.minecraft.util.math.BlockPos;
- import net.minecraft.util.text.StringTextComponent;
- import net.minecraft.world.IWorld;
- import net.minecraft.world.World;
- public class BlockCommands {
- public static void registerFunctions(ScriptManager sm) {
- sm.registerFunction("block.gettag", (sc, in) -> BlockTags.getCollection().get(new ResourceLocation(in[0].getString(sc))));
- sm.registerFunction("block.hastag", (sc, in) -> ((Tag<Block>) in[0].get(sc)).contains((Block) in[1].get(sc)));
- sm.registerFunction("block.gettype", (sc, in) -> {
- Location l = (Location) in[0].get(sc);
- return l.getWorld().getBlockState(l.getBlockPos()).getBlock().getRegistryName().toString();
- });
- sm.registerFunction("block.get", (sc, in) -> {
- Location l = (Location) in[0].get(sc);
- return l.getWorld().getBlockState(l.getBlockPos()).getBlock();
- });
- sm.registerFunction("block.getproperty", (sc, in) -> Mapper.getProperty(in[0].getString(sc)));
- sm.registerFunction("block.getstate", (sc, in) -> {
- Location l = (Location) in[0].get(sc);
- IProperty prop = (IProperty) in[1].get(sc);
- BlockState state = l.getWorld().getBlockState(l.getBlockPos());
- if(state.has(prop)) {
- Object o = l.getWorld().getBlockState(l.getBlockPos()).get(prop);
- if(o instanceof Number) {
- return ((Number) o).doubleValue();
- } else if(o instanceof Boolean) {
- return o;
- }
- return o.toString();
- }
- return null;
- });
- sm.registerConsumer("block.clone", (sc, in) -> {
- Location l0 = (Location) in[0].get(sc);
- Location l1 = (Location) in[1].get(sc);
- IWorld w0 = l0.getWorld();
- BlockPos pos0 = l0.getBlockPos();
- BlockState state = w0.getBlockState(pos0);
- TileEntity tileEnt0 = w0.getTileEntity(pos0);
- IWorld w1 = l1.getWorld();
- BlockPos pos1 = l1.getBlockPos();
- w1.setBlockState(pos1, state, 2);
- TileEntity tileEnt1 = w1.getTileEntity(pos1);
- if(tileEnt0 != null && tileEnt1 != null) {
- CompoundNBT nbt = tileEnt0.write(new CompoundNBT());
- nbt.putInt("x", pos1.getX());
- nbt.putInt("y", pos1.getY());
- nbt.putInt("z", pos1.getZ());
- tileEnt1.read(nbt);
- tileEnt1.markDirty();
- }
- });
- sm.registerConsumer("block.set", (sc, in) -> {
- Location l = (Location) in[0].get(sc);
- BlockStateParser parser = new BlockStateParser(new StringReader(in[1].getString(sc)), true);
- BlockState state = parser.parse(true).getState();
- int flag = 2;
- if(in.length >= 3 && in[2].getBoolean(sc)) {
- flag |= 16;
- }
- l.getWorld().setBlockState(l.getBlockPos(), state, flag);
- });
- sm.registerConsumer("block.setsign", (sc, in) -> {
- Location l = (Location) in[0].get(sc);
- SignTileEntity sign = (SignTileEntity) l.getWorld().getTileEntity(l.getBlockPos());
- sign.signText[in[1].getInt(sc)] = new StringTextComponent(SnuviUtils.connect(sc, in, 2));
- SUpdateTileEntityPacket packet = sign.getUpdatePacket();
- World w = sign.getWorld();
- if(w != null) {
- w.getPlayers().stream().filter(p -> p instanceof ServerPlayerEntity)
- .forEach(p -> ((ServerPlayerEntity) p).connection.sendPacket(packet));
- }
- });
- sm.registerFunction("block.getsign", (sc, in) -> {
- Location l = (Location) in[0].get(sc);
- SignTileEntity sign = (SignTileEntity) l.getWorld().getTileEntity(l.getBlockPos());
- return sign.signText[in[1].getInt(sc)].getString();
- });
- sm.registerConsumer("block.setdoorstatus", (sc, in) -> {
- Location l = (Location) in[0].get(sc);
- BlockPos pos = l.getBlockPos();
- ((DoorBlock) l.getWorld().getBlockState(pos).getBlock()).toggleDoor(l.getWorld().getWorld(), pos, in[1].getBoolean(sc));
- });
- sm.registerFunction("block.getdoorstatus", (sc, in) -> {
- Location l = (Location) in[0].get(sc);
- return l.getBlockState().get(DoorBlock.OPEN);
- });
- sm.registerFunction("block.isdoor", (sc, in) -> {
- Location l = (Location) in[0].get(sc);
- return l.getWorld().getBlockState(l.getBlockPos()).getBlock() instanceof DoorBlock;
- });
- sm.registerFunction("block.issolid", (sc, in) -> {
- return CommandUtils.getBlockState((Location) in[0].get(sc)).isSolid();
- });
- sm.registerFunction("block.tostack", (sc, in) -> {
- Location l = (Location) in[0].get(sc);
- return new ItemStack(l.getBlockState().getBlock().asItem());
- });
- sm.registerFunction("block.getitemamount", (sc, in) -> {
- Location l = (Location) in[0].get(sc);
- TileEntity te = l.getWorld().getTileEntity(l.getBlockPos());
- if(te == null || !(te instanceof ChestTileEntity)) {
- return 0.0d;
- }
- return (double) InventoryUtils.searchInventoryFor((ChestTileEntity) te, (ItemStack) in[2].get(sc), in[1].getBoolean(sc));
- });
- sm.registerFunction("block.getsecchest", (sc, in) -> {
- Location l = (Location) in[0].get(sc);
- BlockPos pos = l.getBlockPos();
- BlockState state = l.getWorld().getBlockState(pos);
- ChestType chesttype = state.get(ChestBlock.TYPE);
- if(chesttype == ChestType.SINGLE) {
- return null;
- }
- Direction dir = ChestBlock.getDirectionToAttached(state);
- return l.copyAdd(dir.getXOffset(), dir.getYOffset(), dir.getZOffset());
- });
- sm.registerFunction("block.additem", (sc, in) -> {
- Location l = (Location) in[0].get(sc);
- ItemStack stack = ((ItemStack) in[1].get(sc));
- TileEntity te = l.getWorld().getTileEntity(l.getBlockPos());
- if(te == null || !(te instanceof ChestTileEntity)) {
- return stack;
- }
- stack.setCount(InventoryUtils.addToInventory((ChestTileEntity) te, stack));
- return stack;
- });
- sm.registerFunction("block.subitem", (sc, in) -> {
- Location l = (Location) in[0].get(sc);
- ItemStack stack = ((ItemStack) in[1].get(sc));
- TileEntity te = l.getWorld().getTileEntity(l.getBlockPos());
- if(te == null || !(te instanceof ChestTileEntity)) {
- return stack;
- }
- stack.setCount(InventoryUtils.removeFromInventory((ChestTileEntity) te, stack));
- return stack;
- });
- sm.registerConsumer("block.grow", (sc, in) -> {
- Location l1 = (Location) in[0].get(sc);
- World w = l1.getWorld().getWorld();
- BlockPos pos1 = l1.getBlockPos();
- BlockPos pos2 = ((Location) in[1].get(sc)).getBlockPos();
- int x = Math.min(pos1.getX(), pos2.getX());
- int endX = Math.max(pos1.getX(), pos2.getX());
- int y = Math.min(pos1.getY(), pos2.getY());
- int endY = Math.max(pos1.getY(), pos2.getY());
- int z = Math.min(pos1.getZ(), pos2.getZ());
- int endZ = Math.max(pos1.getZ(), pos2.getZ());
- if(endX - x > 50 || endY - y > 50 || endZ - z > 50) {
- throw new IllegalArgumentException("uhh, that area seems way to big for growing plants");
- }
- BlockPos relative;
- BlockState state;
- for(; x <= endX; x++) {
- for(; y <= endY; y++) {
- for(; z <= endZ; z++) {
- relative = new BlockPos(x, y, z);
- state = w.getBlockState(relative);
- if(state.getBlock() instanceof CropsBlock) {
- w.setBlockState(relative, state.with(CropsBlock.AGE, 7));
- }
- }
- }
- }
- });
- sm.registerConsumer("block.setspawnertype", (sc, in) -> {
- Location l = (Location) in[0].get(sc);
- MobSpawnerTileEntity spawner = (MobSpawnerTileEntity) l.getWorld().getTileEntity(l.getBlockPos());
- spawner.getSpawnerBaseLogic().setEntityType(EntityType.byKey(in[1].getString(sc)).get());
- });
- }
- }
|