Search in sources :

Example 6 with SolidHitBox

use of net.countercraft.movecraft.util.hitboxes.SolidHitBox in project Movecraft by APDevTeam.

the class TreeHitBoxTest method testSinglePointIterator.

@Test
public void testSinglePointIterator() {
    for (var location : new SolidHitBox(new MovecraftLocation(-3, -3, -3), new MovecraftLocation(3, 3, 3))) {
        SetHitBox box = new SetHitBox();
        box.add(location);
        assertEquals(location, box.iterator().next());
    }
}
Also used : SolidHitBox(net.countercraft.movecraft.util.hitboxes.SolidHitBox) SetHitBox(net.countercraft.movecraft.util.hitboxes.SetHitBox) Test(org.junit.Test)

Example 7 with SolidHitBox

use of net.countercraft.movecraft.util.hitboxes.SolidHitBox in project Movecraft by APDevTeam.

the class TreeHitBoxTest method testLargeHitBox.

@Test
@Ignore
public void testLargeHitBox() {
    SolidHitBox solid = new SolidHitBox(new MovecraftLocation(-100, -100, -100), new MovecraftLocation(100, 100, 100));
    SetHitBox hitBox = new SetHitBox();
    hitBox.addAll(solid);
    assertEquals(solid.size(), hitBox.size());
    assertEquals(solid.size(), Iterators.size(hitBox.iterator()));
    assertTrue(hitBox.containsAll(solid.asSet()));
}
Also used : SolidHitBox(net.countercraft.movecraft.util.hitboxes.SolidHitBox) SetHitBox(net.countercraft.movecraft.util.hitboxes.SetHitBox) Ignore(org.junit.Ignore) Test(org.junit.Test)

Example 8 with SolidHitBox

use of net.countercraft.movecraft.util.hitboxes.SolidHitBox in project Movecraft by APDevTeam.

the class CraftTranslateCommand method doUpdate.

@Override
public void doUpdate() {
    final Logger logger = Movecraft.getInstance().getLogger();
    if (craft.getHitBox().isEmpty()) {
        logger.warning("Attempted to move craft with empty HashHitBox!");
        CraftManager.getInstance().release(craft, CraftReleaseEvent.Reason.EMPTY, false);
        return;
    }
    long time = System.nanoTime();
    World oldWorld = craft.getWorld();
    final Set<Material> passthroughBlocks = new HashSet<>(craft.getType().getMaterialSetProperty(CraftType.PASSTHROUGH_BLOCKS));
    if (craft instanceof SinkingCraft) {
        passthroughBlocks.addAll(Tags.FLUID);
        passthroughBlocks.addAll(Tag.LEAVES.getValues());
        passthroughBlocks.addAll(Tags.SINKING_PASSTHROUGH);
    }
    if (passthroughBlocks.isEmpty()) {
        // translate the craft
        Movecraft.getInstance().getWorldHandler().translateCraft(craft, displacement, world);
        craft.setWorld(world);
        // trigger sign events
        sendSignEvents();
    } else {
        SetHitBox originalLocations = new SetHitBox();
        for (MovecraftLocation movecraftLocation : craft.getHitBox()) {
            originalLocations.add(movecraftLocation.subtract(displacement));
        }
        final Set<MovecraftLocation> to = Sets.difference(craft.getHitBox().asSet(), originalLocations.asSet());
        // place phased blocks
        for (MovecraftLocation location : to) {
            var data = location.toBukkit(world).getBlock().getBlockData();
            if (passthroughBlocks.contains(data.getMaterial())) {
                craft.getPhaseBlocks().put(location.toBukkit(world), data);
            }
        }
        // The subtraction of the set of coordinates in the HitBox cube and the HitBox itself
        final var invertedHitBox = Sets.difference(craft.getHitBox().boundingHitBox().asSet(), craft.getHitBox().asSet());
        // place phased blocks
        final Set<Location> overlap = new HashSet<>(craft.getPhaseBlocks().keySet());
        overlap.removeIf((location -> !craft.getHitBox().contains(MathUtils.bukkit2MovecraftLoc(location))));
        final int minX = craft.getHitBox().getMinX();
        final int maxX = craft.getHitBox().getMaxX();
        final int minY = craft.getHitBox().getMinY();
        final int maxY = overlap.isEmpty() ? craft.getHitBox().getMaxY() : Collections.max(overlap, Comparator.comparingInt(Location::getBlockY)).getBlockY();
        final int minZ = craft.getHitBox().getMinZ();
        final int maxZ = craft.getHitBox().getMaxZ();
        final HitBox[] surfaces = { new SolidHitBox(new MovecraftLocation(minX, minY, minZ), new MovecraftLocation(minX, maxY, maxZ)), new SolidHitBox(new MovecraftLocation(minX, minY, minZ), new MovecraftLocation(maxX, maxY, minZ)), new SolidHitBox(new MovecraftLocation(maxX, minY, maxZ), new MovecraftLocation(minX, maxY, maxZ)), new SolidHitBox(new MovecraftLocation(maxX, minY, maxZ), new MovecraftLocation(maxX, maxY, minZ)), new SolidHitBox(new MovecraftLocation(minX, minY, minZ), new MovecraftLocation(maxX, minY, maxZ)) };
        final SetHitBox validExterior = new SetHitBox();
        for (HitBox hitBox : surfaces) {
            validExterior.addAll(Sets.difference(hitBox.asSet(), craft.getHitBox().asSet()));
        }
        // Check to see which locations in the from set are actually outside of the craft
        final Set<MovecraftLocation> confirmed = craft instanceof SinkingCraft ? invertedHitBox.copyInto(new LinkedHashSet<>()) : verifyExterior(invertedHitBox, validExterior);
        // A set of locations that are confirmed to be "exterior" locations
        final Set<MovecraftLocation> failed = Sets.difference(invertedHitBox, confirmed).copyInto(new LinkedHashSet<>());
        final WorldHandler handler = Movecraft.getInstance().getWorldHandler();
        for (MovecraftLocation location : failed) {
            var data = location.toBukkit(world).getBlock().getBlockData();
            if (!passthroughBlocks.contains(data.getMaterial()))
                continue;
            craft.getPhaseBlocks().put(location.toBukkit(world), data);
        }
        // translate the craft
        handler.translateCraft(craft, displacement, world);
        craft.setWorld(world);
        // trigger sign events
        sendSignEvents();
        for (MovecraftLocation l : failed) {
            MovecraftLocation orig = l.subtract(displacement);
            if (craft.getHitBox().contains(orig) || failed.contains(orig)) {
                continue;
            }
            confirmed.add(orig);
        }
        // place confirmed blocks if they have been un-phased
        for (MovecraftLocation location : confirmed) {
            Location bukkit = location.toBukkit(craft.getWorld());
            if (!craft.getPhaseBlocks().containsKey(bukkit))
                continue;
            // Do not place if it is at a collapsed HitBox location
            if (!craft.getCollapsedHitBox().isEmpty() && craft.getCollapsedHitBox().contains(location))
                continue;
            var phaseBlock = craft.getPhaseBlocks().remove(bukkit);
            handler.setBlockFast(bukkit, phaseBlock);
            craft.getPhaseBlocks().remove(bukkit);
        }
        for (MovecraftLocation location : originalLocations) {
            Location bukkit = location.toBukkit(oldWorld);
            if (!craft.getHitBox().contains(location) && craft.getPhaseBlocks().containsKey(bukkit)) {
                var phaseBlock = craft.getPhaseBlocks().remove(bukkit);
                handler.setBlockFast(bukkit, phaseBlock);
            }
        }
        for (MovecraftLocation location : failed) {
            Location bukkit = location.toBukkit(oldWorld);
            var data = bukkit.getBlock().getBlockData();
            if (passthroughBlocks.contains(data.getMaterial())) {
                craft.getPhaseBlocks().put(bukkit, data);
                handler.setBlockFast(bukkit, Material.AIR.createBlockData());
            }
        }
    // waterlog();
    }
    if (!craft.isNotProcessing())
        craft.setProcessing(false);
    time = System.nanoTime() - time;
    if (Settings.Debug)
        logger.info("Total time: " + (time / 1e6) + " milliseconds. Moving with cooldown of " + craft.getTickCooldown() + ". Speed of: " + String.format("%.2f", craft.getSpeed()) + ". Displacement of: " + displacement);
    // Only add cruise time if cruising
    if (craft.getCruising() && displacement.getY() == 0 && (displacement.getX() == 0 || displacement.getZ() == 0))
        craft.addCruiseTime(time / 1e9f);
}
Also used : SinkingCraft(net.countercraft.movecraft.craft.SinkingCraft) Arrays(java.util.Arrays) Tag(org.bukkit.Tag) Hash(it.unimi.dsi.fastutil.Hash) Object2ObjectMap(it.unimi.dsi.fastutil.objects.Object2ObjectMap) SolidHitBox(net.countercraft.movecraft.util.hitboxes.SolidHitBox) Waterlogged(org.bukkit.block.data.Waterlogged) HashMap(java.util.HashMap) CraftReleaseEvent(net.countercraft.movecraft.events.CraftReleaseEvent) SignTranslateEvent(net.countercraft.movecraft.events.SignTranslateEvent) WorldHandler(net.countercraft.movecraft.WorldHandler) MathUtils(net.countercraft.movecraft.util.MathUtils) ArrayList(java.util.ArrayList) HashSet(java.util.HashSet) Lists(com.google.common.collect.Lists) Block(org.bukkit.block.Block) Location(org.bukkit.Location) World(org.bukkit.World) Map(java.util.Map) LinkedList(java.util.LinkedList) CraftManager(net.countercraft.movecraft.craft.CraftManager) Material(org.bukkit.Material) LinkedHashSet(java.util.LinkedHashSet) HitBox(net.countercraft.movecraft.util.hitboxes.HitBox) Bukkit(org.bukkit.Bukkit) Sign(org.bukkit.block.Sign) CraftType(net.countercraft.movecraft.craft.type.CraftType) Object2ObjectOpenCustomHashMap(it.unimi.dsi.fastutil.objects.Object2ObjectOpenCustomHashMap) Craft(net.countercraft.movecraft.craft.Craft) BlockState(org.bukkit.block.BlockState) Set(java.util.Set) SetHitBox(net.countercraft.movecraft.util.hitboxes.SetHitBox) Logger(java.util.logging.Logger) Movecraft(net.countercraft.movecraft.Movecraft) Sets(com.google.common.collect.Sets) Settings(net.countercraft.movecraft.config.Settings) Objects(java.util.Objects) List(java.util.List) Tags(net.countercraft.movecraft.util.Tags) Queue(java.util.Queue) NotNull(org.jetbrains.annotations.NotNull) ArrayDeque(java.util.ArrayDeque) Comparator(java.util.Comparator) Collections(java.util.Collections) MovecraftLocation(net.countercraft.movecraft.MovecraftLocation) LinkedHashSet(java.util.LinkedHashSet) SolidHitBox(net.countercraft.movecraft.util.hitboxes.SolidHitBox) HitBox(net.countercraft.movecraft.util.hitboxes.HitBox) SetHitBox(net.countercraft.movecraft.util.hitboxes.SetHitBox) SolidHitBox(net.countercraft.movecraft.util.hitboxes.SolidHitBox) SetHitBox(net.countercraft.movecraft.util.hitboxes.SetHitBox) Material(org.bukkit.Material) Logger(java.util.logging.Logger) World(org.bukkit.World) WorldHandler(net.countercraft.movecraft.WorldHandler) SinkingCraft(net.countercraft.movecraft.craft.SinkingCraft) MovecraftLocation(net.countercraft.movecraft.MovecraftLocation) HashSet(java.util.HashSet) LinkedHashSet(java.util.LinkedHashSet) Location(org.bukkit.Location) MovecraftLocation(net.countercraft.movecraft.MovecraftLocation)

Example 9 with SolidHitBox

use of net.countercraft.movecraft.util.hitboxes.SolidHitBox in project Movecraft by APDevTeam.

the class CraftTranslateCommand method waterlog.

@Deprecated(forRemoval = true)
private void waterlog() {
    final int minX = craft.getHitBox().getMinX();
    final int maxX = craft.getHitBox().getMaxX();
    final int minY = craft.getHitBox().getMinY();
    final int maxY = craft.getHitBox().getMaxY();
    final int minZ = craft.getHitBox().getMinZ();
    final int maxZ = craft.getHitBox().getMaxZ();
    final HitBox[] surfaces = { new SolidHitBox(new MovecraftLocation(minX, minY, minZ), new MovecraftLocation(minX, maxY, maxZ)), new SolidHitBox(new MovecraftLocation(minX, minY, minZ), new MovecraftLocation(maxX, maxY, minZ)), new SolidHitBox(new MovecraftLocation(maxX, minY, maxZ), new MovecraftLocation(minX, maxY, maxZ)), new SolidHitBox(new MovecraftLocation(maxX, minY, maxZ), new MovecraftLocation(maxX, maxY, minZ)), new SolidHitBox(new MovecraftLocation(minX, minY, minZ), new MovecraftLocation(maxX, minY, maxZ)) };
    final SetHitBox validExterior = new SetHitBox();
    for (HitBox surface : surfaces) {
        for (var location : surface) {
            if (!craft.getHitBox().contains(location)) {
                validExterior.add(location);
            }
        }
    }
    var hull = hullSearch(validExterior);
    for (var location : hull) {
        var block = location.toBukkit(world).getBlock();
        var data = block.getBlockData();
        if (!(data instanceof Waterlogged)) {
            continue;
        }
        var shouldFlood = craft.getPhaseBlocks().containsKey(location.toBukkit(world)) && craft.getPhaseBlocks().get(location.toBukkit(world)).getMaterial().equals(Material.WATER);
        if (shouldFlood == ((Waterlogged) data).isWaterlogged()) {
            continue;
        }
        ((Waterlogged) data).setWaterlogged(shouldFlood);
        block.setBlockData(data);
    }
}
Also used : SolidHitBox(net.countercraft.movecraft.util.hitboxes.SolidHitBox) HitBox(net.countercraft.movecraft.util.hitboxes.HitBox) SetHitBox(net.countercraft.movecraft.util.hitboxes.SetHitBox) SolidHitBox(net.countercraft.movecraft.util.hitboxes.SolidHitBox) SetHitBox(net.countercraft.movecraft.util.hitboxes.SetHitBox) Waterlogged(org.bukkit.block.data.Waterlogged) MovecraftLocation(net.countercraft.movecraft.MovecraftLocation)

Example 10 with SolidHitBox

use of net.countercraft.movecraft.util.hitboxes.SolidHitBox in project Movecraft by APDevTeam.

the class TreeHitBoxTest method testIncrementalIterator.

@Test
public void testIncrementalIterator() {
    Set<MovecraftLocation> visited = new HashSet<>();
    SetHitBox box = new SetHitBox();
    for (var location : new SolidHitBox(new MovecraftLocation(-3, -3, -3), new MovecraftLocation(3, 3, 3))) {
        box.add(location);
        visited.add(location);
        Set<MovecraftLocation> verified = new HashSet<>();
        for (var probe : box) {
            assertTrue(visited.contains(probe), String.format("Location %s is not contained in %s, however %s are", probe, visited, verified));
            verified.add(probe);
        }
    }
}
Also used : SolidHitBox(net.countercraft.movecraft.util.hitboxes.SolidHitBox) SetHitBox(net.countercraft.movecraft.util.hitboxes.SetHitBox) HashSet(java.util.HashSet) Test(org.junit.Test)

Aggregations

SolidHitBox (net.countercraft.movecraft.util.hitboxes.SolidHitBox)11 SetHitBox (net.countercraft.movecraft.util.hitboxes.SetHitBox)10 MovecraftLocation (net.countercraft.movecraft.MovecraftLocation)6 HashSet (java.util.HashSet)5 HitBox (net.countercraft.movecraft.util.hitboxes.HitBox)4 Material (org.bukkit.Material)4 Test (org.junit.Test)4 Logger (java.util.logging.Logger)3 Location (org.bukkit.Location)3 LinkedList (java.util.LinkedList)2 Movecraft (net.countercraft.movecraft.Movecraft)2 WorldHandler (net.countercraft.movecraft.WorldHandler)2 Craft (net.countercraft.movecraft.craft.Craft)2 SinkingCraft (net.countercraft.movecraft.craft.SinkingCraft)2 CraftType (net.countercraft.movecraft.craft.type.CraftType)2 MutableHitBox (net.countercraft.movecraft.util.hitboxes.MutableHitBox)2 Waterlogged (org.bukkit.block.data.Waterlogged)2 NotNull (org.jetbrains.annotations.NotNull)2 Lists (com.google.common.collect.Lists)1 Sets (com.google.common.collect.Sets)1