Skip to content

Commit

Permalink
MDG why
Browse files Browse the repository at this point in the history
  • Loading branch information
robotgryphon committed Jul 19, 2024
1 parent c43789a commit 758e1f4
Show file tree
Hide file tree
Showing 19 changed files with 1,841 additions and 1,825 deletions.
Original file line number Diff line number Diff line change
@@ -1,113 +1,114 @@
package dev.compactmods.machines.api.room;

import dev.compactmods.machines.api.WallConstants;
import dev.compactmods.machines.api.room.spatial.IRoomBoundaries;
import dev.compactmods.machines.api.util.AABBAligner;
import dev.compactmods.machines.api.util.AABBHelper;
import dev.compactmods.machines.api.util.BlockSpaceUtil;
import dev.compactmods.machines.api.util.VectorUtils;
import net.minecraft.core.BlockPos;
import net.minecraft.core.Direction;
import net.minecraft.core.Vec3i;
import net.minecraft.core.registries.BuiltInRegistries;
import net.minecraft.resources.ResourceLocation;
import net.minecraft.server.level.ServerLevel;
import net.minecraft.world.level.LevelAccessor;
import net.minecraft.world.level.block.Block;
import net.minecraft.world.level.block.Blocks;
import net.minecraft.world.level.block.Mirror;
import net.minecraft.world.level.block.Rotation;
import net.minecraft.world.level.block.state.BlockState;
import net.minecraft.world.level.levelgen.structure.templatesystem.StructurePlaceSettings;
import net.minecraft.world.phys.AABB;
import net.minecraft.world.phys.Vec3;
import org.joml.Vector3d;

public class CompactRoomGenerator {

/**
* Generates a wall or platform in a given direction.
* Uses the solid wall block.
*
* @param world
* @param outerBounds
* @param wallDirection
* @since 3.0.0
*/
public static void generateCompactWall(LevelAccessor world, AABB outerBounds, Direction wallDirection, BlockState block) {
AABB wallBounds = BlockSpaceUtil.getWallBounds(outerBounds, wallDirection);
BlockSpaceUtil.blocksInside(wallBounds).forEach(wallBlock -> {
world.setBlock(wallBlock, block, Block.UPDATE_ALL);
});
}

/**
* Generates a machine "internal" structure in a world via a machine size and a central point.
*
* @param world
* @param outerBounds Outer dimensions of the room.
*/
public static void generateRoom(LevelAccessor world, AABB outerBounds) {
final var block = BuiltInRegistries.BLOCK.get(WallConstants.SOLID_WALL);
if (block != null) {
final var solidWall = block.defaultBlockState();
generateRoom(world, outerBounds, solidWall);
}
}

/**
* Generates a machine structure in a world via machine boundaries and a wall block.
*
* @param world
* @param outerBounds Outer dimensions of the room.
* @param block Block to use for walls.
*/
public static void generateRoom(LevelAccessor world, AABB outerBounds, BlockState block) {

// Generate the walls
for (final var dir : Direction.values())
generateCompactWall(world, outerBounds, dir, block);

// Clear out the inside of the room
AABB machineInternal = outerBounds.deflate(1);
BlockSpaceUtil.blocksInside(machineInternal)
.forEach(p -> world.setBlock(p, Blocks.AIR.defaultBlockState(), 7));
}

public static void populateStructure(ServerLevel level, ResourceLocation template, AABB roomInnerBounds, RoomStructureInfo.RoomStructurePlacement placement) {
level.getStructureManager().get(template).ifPresent(tem -> {

Vector3d templateSize = VectorUtils.convert3d(tem.getSize());

if (!AABBHelper.fitsInside(roomInnerBounds, templateSize)) {
// skip: structure too large to place in room
return;
}

var placementSettings = new StructurePlaceSettings()
.setRotation(Rotation.NONE)
.setMirror(Mirror.NONE);

AABB placementBounds = null;
final AABBAligner aligner = AABBAligner.create(roomInnerBounds, templateSize);
switch (placement) {
case CENTERED -> placementBounds = aligner
.center(roomInnerBounds.getCenter())
.align();

case CENTERED_CEILING -> placementBounds = aligner
.boundedDirection(Direction.UP)
.align();

case CENTERED_FLOOR -> placementBounds = aligner
.boundedDirection(Direction.DOWN)
.align();
}

if(placementBounds != null) {
BlockPos placeAt = BlockPos.containing(AABBHelper.minCorner(placementBounds));
tem.placeInWorld(level, placeAt, placeAt, placementSettings, level.random, Block.UPDATE_ALL);
}
});
}
}
package dev.compactmods.machines.api.room;

import dev.compactmods.machines.api.WallConstants;
import dev.compactmods.machines.api.room.spatial.IRoomBoundaries;
import dev.compactmods.machines.api.util.AABBAligner;
import dev.compactmods.machines.api.util.AABBHelper;
import dev.compactmods.machines.api.util.BlockSpaceUtil;
import dev.compactmods.machines.api.util.VectorUtils;
import net.minecraft.core.BlockPos;
import net.minecraft.core.Direction;
import net.minecraft.core.Vec3i;
import net.minecraft.core.registries.BuiltInRegistries;
import net.minecraft.resources.ResourceLocation;
import net.minecraft.server.level.ServerLevel;
import net.minecraft.world.level.Level;
import net.minecraft.world.level.LevelAccessor;
import net.minecraft.world.level.block.Block;
import net.minecraft.world.level.block.Blocks;
import net.minecraft.world.level.block.Mirror;
import net.minecraft.world.level.block.Rotation;
import net.minecraft.world.level.block.state.BlockState;
import net.minecraft.world.level.levelgen.structure.templatesystem.StructurePlaceSettings;
import net.minecraft.world.phys.AABB;
import net.minecraft.world.phys.Vec3;
import org.joml.Vector3d;

public class CompactRoomGenerator {

/**
* Generates a wall or platform in a given direction.
* Uses the solid wall block.
*
* @param world
* @param outerBounds
* @param wallDirection
* @since 3.0.0
*/
public static void generateCompactWall(LevelAccessor world, AABB outerBounds, Direction wallDirection, BlockState block) {
AABB wallBounds = BlockSpaceUtil.getWallBounds(outerBounds, wallDirection);
BlockSpaceUtil.blocksInside(wallBounds).forEach(wallBlock -> {
world.setBlock(wallBlock, block, Block.UPDATE_ALL);
});
}

/**
* Generates a machine "internal" structure in a world via a machine size and a central point.
*
* @param world
* @param outerBounds Outer dimensions of the room.
*/
public static void generateRoom(LevelAccessor world, AABB outerBounds) {
final var block = BuiltInRegistries.BLOCK.get(WallConstants.SOLID_WALL);
if (block != null) {
final var solidWall = block.defaultBlockState();
generateRoom(world, outerBounds, solidWall);
}
}

/**
* Generates a machine structure in a world via machine boundaries and a wall block.
*
* @param world
* @param outerBounds Outer dimensions of the room.
* @param block Block to use for walls.
*/
public static void generateRoom(LevelAccessor world, AABB outerBounds, BlockState block) {

// Generate the walls
for (final var dir : Direction.values())
generateCompactWall(world, outerBounds, dir, block);

// Clear out the inside of the room
AABB machineInternal = outerBounds.deflate(1);
BlockSpaceUtil.blocksInside(machineInternal)
.forEach(p -> world.setBlock(p, Blocks.AIR.defaultBlockState(), 7));
}

public static void populateStructure(ServerLevel level, ResourceLocation template, AABB roomInnerBounds, RoomStructureInfo.RoomStructurePlacement placement) {
level.getStructureManager().get(template).ifPresent(tem -> {

Vector3d templateSize = VectorUtils.convert3d(tem.getSize());

if (!AABBHelper.fitsInside(roomInnerBounds, templateSize)) {
// skip: structure too large to place in room
return;
}

var placementSettings = new StructurePlaceSettings()
.setRotation(Rotation.NONE)
.setMirror(Mirror.NONE);

AABB placementBounds = null;
final AABBAligner aligner = AABBAligner.create(roomInnerBounds, templateSize);
switch (placement) {
case CENTERED -> placementBounds = aligner
.center(roomInnerBounds.getCenter())
.align();

case CENTERED_CEILING -> placementBounds = aligner
.boundedDirection(Direction.UP)
.align();

case CENTERED_FLOOR -> placementBounds = aligner
.boundedDirection(Direction.DOWN)
.align();
}

if(placementBounds != null) {
BlockPos placeAt = BlockPos.containing(AABBHelper.minCorner(placementBounds));
tem.placeInWorld(level, placeAt, placeAt, placementSettings, level.random, Block.UPDATE_ALL);
}
});
}
}
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
3 changes: 2 additions & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.8-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
24 changes: 14 additions & 10 deletions gradlew
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
# Darwin, MinGW, and NonStop.
#
# (3) This script is generated from the Groovy template
# https://github.com/gradle/gradle/blob/HEAD/subprojects/plugins/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt
# https://github.com/gradle/gradle/blob/HEAD/platforms/jvm/plugins-application/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt
# within the Gradle project.
#
# You can find Gradle at https://github.com/gradle/gradle/.
Expand Down Expand Up @@ -83,7 +83,8 @@ done
# This is normally unused
# shellcheck disable=SC2034
APP_BASE_NAME=${0##*/}
APP_HOME=$( cd "${APP_HOME:-./}" && pwd -P ) || exit
# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036)
APP_HOME=$( cd "${APP_HOME:-./}" > /dev/null && pwd -P ) || exit

# Use the maximum available, or set MAX_FD != -1 to use that value.
MAX_FD=maximum
Expand Down Expand Up @@ -130,26 +131,29 @@ location of your Java installation."
fi
else
JAVACMD=java
which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
if ! command -v java >/dev/null 2>&1
then
die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
Please set the JAVA_HOME variable in your environment to match the
location of your Java installation."
fi
fi

# Increase the maximum file descriptors if we can.
if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then
case $MAX_FD in #(
max*)
# In POSIX sh, ulimit -H is undefined. That's why the result is checked to see if it worked.
# shellcheck disable=SC3045
# shellcheck disable=SC2039,SC3045
MAX_FD=$( ulimit -H -n ) ||
warn "Could not query maximum file descriptor limit"
esac
case $MAX_FD in #(
'' | soft) :;; #(
*)
# In POSIX sh, ulimit -n is undefined. That's why the result is checked to see if it worked.
# shellcheck disable=SC3045
# shellcheck disable=SC2039,SC3045
ulimit -n "$MAX_FD" ||
warn "Could not set maximum file descriptor limit to $MAX_FD"
esac
Expand Down Expand Up @@ -198,11 +202,11 @@ fi
# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'

# Collect all arguments for the java command;
# * $DEFAULT_JVM_OPTS, $JAVA_OPTS, and $GRADLE_OPTS can contain fragments of
# shell script including quotes and variable substitutions, so put them in
# double quotes to make sure that they get re-expanded; and
# * put everything else in single quotes, so that it's not re-expanded.
# Collect all arguments for the java command:
# * DEFAULT_JVM_OPTS, JAVA_OPTS, JAVA_OPTS, and optsEnvironmentVar are not allowed to contain shell fragments,
# and any embedded shellness will be escaped.
# * For example: A user cannot expect ${Hostname} to be expanded, as it is an environment variable and will be
# treated as '${Hostname}' itself on the command line.

set -- \
"-Dorg.gradle.appname=$APP_BASE_NAME" \
Expand Down
Loading

0 comments on commit 758e1f4

Please sign in to comment.