From 2dafb837f140ac56f8bcdb9a9237e39378c5ba19 Mon Sep 17 00:00:00 2001 From: WayofTime Date: Sun, 15 Nov 2020 14:17:20 -0500 Subject: [PATCH] Dungeon Fix :rooBlank: --- .../bloodmagic/structures/Dungeon.java | 47 +++++- .../bloodmagic/structures/DungeonTester.java | 153 ++++++++---------- 2 files changed, 110 insertions(+), 90 deletions(-) diff --git a/src/main/java/wayoftime/bloodmagic/structures/Dungeon.java b/src/main/java/wayoftime/bloodmagic/structures/Dungeon.java index add4a1ff..486d0300 100644 --- a/src/main/java/wayoftime/bloodmagic/structures/Dungeon.java +++ b/src/main/java/wayoftime/bloodmagic/structures/Dungeon.java @@ -10,6 +10,7 @@ import java.util.Random; import org.apache.commons.lang3.tuple.Pair; +import net.minecraft.block.Blocks; import net.minecraft.util.Direction; import net.minecraft.util.Mirror; import net.minecraft.util.Rotation; @@ -28,8 +29,10 @@ public class Dungeon Map> availableDoorMap = new HashMap<>(); // Map of doors. The EnumFacing indicates // what way this door faces. List descriptorList = new ArrayList<>(); - Map> roomMap = new HashMap<>(); // Placement positions in terms - // of actual positions +// Map> roomMap = new HashMap<>(); // Placement positions in terms +// // of actual positions + + List>> roomList = new ArrayList<>(); PlacementSettings settings = new PlacementSettings(); Mirror mir = Mirror.NONE; @@ -55,8 +58,12 @@ public class Dungeon // BlockPos blockpos2 = blockpos.add(this.position); // p_242689_3_.func_237144_a_(p_242689_1_, blockpos2, placementsettings, func_214074_b(this.seed)); + List rotationInfo = new ArrayList(); + + int n = 1; DungeonRoom room = getRandomRoom(rand); - roomMap.put(pos, Pair.of(room, settings.copy())); +// roomMap.put(pos, Pair.of(room, settings.copy())); + roomList.add(Pair.of(pos, Pair.of(room, settings.copy()))); descriptorList.addAll(room.getAreaDescriptors(settings, pos)); for (Direction facing : Direction.values()) { @@ -71,9 +78,12 @@ public class Dungeon } } + rotationInfo.add(settings.getRotation()); + // Initial AreaDescriptors and door positions are initialized. Time for fun! for (int i = 0; i < 100; i++) { + // Get which facing of doors are available. List facingList = new ArrayList<>(); for (Entry> entry : availableDoorMap.entrySet()) { @@ -89,13 +99,15 @@ public class Dungeon Pair removedDoor2 = null; BlockPos roomLocation = null; - for (Direction doorFacing : facingList) + testDirection: for (Direction doorFacing : facingList) { Direction oppositeDoorFacing = doorFacing.getOpposite(); List availableDoorList = availableDoorMap.get(doorFacing); // May need to copy here Collections.shuffle(availableDoorList); - settings.setRotation(Rotation.values()[rand.nextInt(Rotation.values().length)]); // Same for the Mirror + Rotation randRotation = Rotation.values()[rand.nextInt(Rotation.values().length)]; +// Rotation randRotation = Rotation.CLOCKWISE_90; + settings.setRotation(randRotation); // Same for the Mirror DungeonRoom testingRoom = getRandomRoom(rand); List otherDoorList = testingRoom.getDoorOffsetsForFacing(settings, oppositeDoorFacing, BlockPos.ZERO); @@ -121,13 +133,24 @@ public class Dungeon } } - roomMap.put(roomLocation, Pair.of(testingRoom, settings.copy())); +// roomMap.put(roomLocation, Pair.of(testingRoom, settings.copy())); + roomList.add(Pair.of(roomLocation, Pair.of(testingRoom, settings.copy()))); descriptorList.addAll(descriptors); removedDoor1 = Pair.of(doorFacing, availableDoor); removedDoor2 = Pair.of(oppositeDoorFacing, testDoor.add(roomLocation)); room = testingRoom; + n++; + rotationInfo.add(randRotation); + System.out.println("Placement: " + n); + for (Direction facing : Direction.values()) + { + List testingDoorList = testingRoom.getDoorOffsetsForFacing(settings, facing, BlockPos.ZERO); + System.out.println("Door Facing: " + facing + ", Door List: " + testingDoorList); + } + + break testDirection; } break; @@ -174,16 +197,24 @@ public class Dungeon BMLog.DEBUG.info("Duration: " + duration + "(ns), " + duration / 1000000 + "(ms)"); // Building what I've got - for (Entry> entry : roomMap.entrySet()) + n = 0; +// for (Entry> entry : roomMap.entrySet()) + for (Pair> entry : roomList) { + n++; BlockPos placementPos = entry.getKey(); DungeonRoom placedRoom = entry.getValue().getKey(); PlacementSettings placementSettings = entry.getValue().getValue(); placedRoom.placeStructureAtPosition(rand, placementSettings, world, placementPos); + + world.setBlockState(placementPos, Blocks.REDSTONE_BLOCK.getDefaultState(), 3); + System.out.println("Supposed Rotation for " + n + ": " + rotationInfo.get(n - 1)); + System.out.println("Placement: " + n + ", BlockPos: " + placementPos + ", Rotation: " + placementSettings.getRotation()); } - System.out.println(roomMap.size()); +// System.out.println(roomMap.size()); + System.out.println(roomList.size()); return false; } diff --git a/src/main/java/wayoftime/bloodmagic/structures/DungeonTester.java b/src/main/java/wayoftime/bloodmagic/structures/DungeonTester.java index 1a452c3a..dafa1a15 100644 --- a/src/main/java/wayoftime/bloodmagic/structures/DungeonTester.java +++ b/src/main/java/wayoftime/bloodmagic/structures/DungeonTester.java @@ -1,20 +1,9 @@ package wayoftime.bloodmagic.structures; -import java.util.HashMap; -import java.util.List; -import java.util.Map; import java.util.Random; -import net.minecraft.block.Blocks; -import net.minecraft.util.Direction; -import net.minecraft.util.Mirror; -import net.minecraft.util.ResourceLocation; -import net.minecraft.util.Rotation; import net.minecraft.util.math.BlockPos; -import net.minecraft.util.math.ChunkPos; -import net.minecraft.world.gen.feature.template.PlacementSettings; import net.minecraft.world.server.ServerWorld; -import wayoftime.bloodmagic.BloodMagic; public class DungeonTester { @@ -25,82 +14,82 @@ public class DungeonTester public static void testDungeonElementWithOutput(ServerWorld world, BlockPos pos) { -// Dungeon.placeStructureAtPosition(new Random(), world, pos); - ResourceLocation resource = new ResourceLocation(BloodMagic.MODID, "t_corridor"); - -// DungeonStructure structure = new DungeonStructure(resource); -// Map structureMap = new HashMap(); -// structureMap.put(structure, new BlockPos(0, 0, 0)); - - Map structureMap = new HashMap(); - structureMap.put(resource.toString(), BlockPos.ZERO); - -// Map> doorMap = new HashMap>(); -// List descriptorList = new ArrayList(); -// descriptorList.add(new AreaDescriptor.Rectangle(new BlockPos(0, 0, 0), 11, 5, 8)); + Dungeon.placeStructureAtPosition(new Random(), world, pos); +// ResourceLocation resource = new ResourceLocation(BloodMagic.MODID, "t_corridor"); // -// DungeonUtil.addRoom(doorMap, Direction.NORTH, new BlockPos(5, 0, 0)); -// DungeonUtil.addRoom(doorMap, Direction.EAST, new BlockPos(10, 0, 5)); -// DungeonUtil.addRoom(doorMap, Direction.WEST, new BlockPos(0, 0, 5)); +//// DungeonStructure structure = new DungeonStructure(resource); +//// Map structureMap = new HashMap(); +//// structureMap.put(structure, new BlockPos(0, 0, 0)); // -// DungeonRoom room = new DungeonRoom(structureMap, doorMap, descriptorList); - - DungeonRoom room = Dungeon.getRandomRoom(new Random()); - - PlacementSettings settings = new PlacementSettings(); - - Mirror mir = Mirror.NONE; - settings.setMirror(mir); - - net.minecraft.util.Rotation rot = Rotation.NONE; - settings.setRotation(rot); - - settings.setIgnoreEntities(true); - settings.setChunk((ChunkPos) null); - settings.func_215223_c(true); -// settings.setReplacedBlock((Block) null); -// settings.setIgnoreStructureBlock(false); - - int i = 0; - - for (Mirror mirror : Mirror.values()) - { - System.out.print("Mirror: " + mirror + '\n'); - int j = 0; - for (Rotation rotation : Rotation.values()) - { - System.out.print("Rotation: " + rotation + '\n'); - settings.setRotation(rotation); - settings.setMirror(mirror); - - BlockPos offsetPos = pos.add(i * 32, 0, j * 32); - room.placeStructureAtPosition(new Random(), settings, world, offsetPos); - - world.setBlockState(offsetPos, Blocks.REDSTONE_BLOCK.getDefaultState(), 3); - -// List descriptors = room.getAreaDescriptors(settings, offsetPos); -// for (AreaDescriptor desc : descriptors) +// Map structureMap = new HashMap(); +// structureMap.put(resource.toString(), BlockPos.ZERO); +// +//// Map> doorMap = new HashMap>(); +//// List descriptorList = new ArrayList(); +//// descriptorList.add(new AreaDescriptor.Rectangle(new BlockPos(0, 0, 0), 11, 5, 8)); +//// +//// DungeonUtil.addRoom(doorMap, Direction.NORTH, new BlockPos(5, 0, 0)); +//// DungeonUtil.addRoom(doorMap, Direction.EAST, new BlockPos(10, 0, 5)); +//// DungeonUtil.addRoom(doorMap, Direction.WEST, new BlockPos(0, 0, 5)); +//// +//// DungeonRoom room = new DungeonRoom(structureMap, doorMap, descriptorList); +// +// DungeonRoom room = Dungeon.getRandomRoom(new Random()); +// +// PlacementSettings settings = new PlacementSettings(); +// +// Mirror mir = Mirror.NONE; +// settings.setMirror(mir); +// +// net.minecraft.util.Rotation rot = Rotation.NONE; +// settings.setRotation(rot); +// +// settings.setIgnoreEntities(true); +// settings.setChunk((ChunkPos) null); +// settings.func_215223_c(true); +//// settings.setReplacedBlock((Block) null); +//// settings.setIgnoreStructureBlock(false); +// +// int i = 0; +// +// for (Mirror mirror : Mirror.values()) +// { +// System.out.print("Mirror: " + mirror + '\n'); +// int j = 0; +// for (Rotation rotation : Rotation.values()) +// { +// System.out.print("Rotation: " + rotation + '\n'); +// settings.setRotation(rotation); +// settings.setMirror(mirror); +// +// BlockPos offsetPos = pos.add(i * 32, 0, j * 32); +// room.placeStructureAtPosition(new Random(), settings, world, offsetPos); +// +// world.setBlockState(offsetPos, Blocks.REDSTONE_BLOCK.getDefaultState(), 3); +// +//// List descriptors = room.getAreaDescriptors(settings, offsetPos); +//// for (AreaDescriptor desc : descriptors) +//// { +//// List posList = desc.getContainedPositions(new BlockPos(0, 0, 0)); +//// for (BlockPos placePos : posList) +//// { +//// world.setBlockState(placePos, Blocks.REDSTONE_BLOCK.getDefaultState()); +//// } +//// } +// +//// for (Direction facing : Direction.HORIZONTALS) +// for (int k = 0; k < 4; k++) // { -// List posList = desc.getContainedPositions(new BlockPos(0, 0, 0)); -// for (BlockPos placePos : posList) +// Direction facing = Direction.byHorizontalIndex(k); +// List doorList = room.getDoorOffsetsForFacing(settings, facing, offsetPos); +// for (BlockPos doorPos : doorList) // { -// world.setBlockState(placePos, Blocks.REDSTONE_BLOCK.getDefaultState()); +// System.out.print("Door at " + doorPos + " facing " + facing + '\n'); // } // } - -// for (Direction facing : Direction.HORIZONTALS) - for (int k = 0; k < 4; k++) - { - Direction facing = Direction.byHorizontalIndex(k); - List doorList = room.getDoorOffsetsForFacing(settings, facing, offsetPos); - for (BlockPos doorPos : doorList) - { - System.out.print("Door at " + doorPos + " facing " + facing + '\n'); - } - } - j++; - } - i++; - } +// j++; +// } +// i++; +// } } }