Add curve

This commit is contained in:
2024-04-20 16:56:43 +02:00
parent f6f86e1721
commit 8089d813f8
4 changed files with 47 additions and 56 deletions

View File

@@ -1,7 +1,7 @@
# GDMC-2024 # GDMC-2024
A procedural city generator for Minecraft as part of the GDMC 2024 competition. A procedural city generator for Minecraft as part of the GDMC 2024 competition.
# Run ## Run
Install required packages using `pip`: Install required packages using `pip`:
```bash ```bash
@@ -10,7 +10,7 @@ pip install -r requirements.txt
Run `main.py`. Run `main.py`.
# Dev ## Dev
First, setup your virtual environment using Python's built-in venv. First, setup your virtual environment using Python's built-in venv.
@@ -19,4 +19,4 @@ Install `pipreqs`:
pip install pipreqs pip install pipreqs
``` ```
Run `pipreqs --ignore .venv` to generate an updated list of dependencies for the project in requirements file. Run `pipreqs --ignore .venv --force` to generate an updated list of dependencies for the project in requirements file.

18
main.py
View File

@@ -1,15 +1,17 @@
from gdpc import Editor, Block, geometry from gdpc import Editor, Block, geometry
import networks.curve as curve import networks.curve as curve
import numpy as np
# editor = Editor(buffering=True)
# # Get a block
# block = editor.getBlock((0,48,0))
editor = Editor(buffering=True) # # Place a block
# editor.placeBlock((394, 132, 741), Block("stone"))
# Get a block # # Build a cube
block = editor.getBlock((0,48,0)) # geometry.placeCuboid(editor, (458, 92, 488), (468, 99, 471), Block("oak_planks"))
# Place a block curve = curve.Curve([(0, 0, 0), (1, 1, 1), (5, 5, 5), (1, 1, 1), (1, 1, 1)])
editor.placeBlock((394, 132, 741), Block("stone")) curve.compute_curve()
# Build a cube
geometry.placeCuboid(editor, (458, 92, 488), (468, 99, 471), Block("oak_planks"))

View File

@@ -1,61 +1,47 @@
class Curve: import numpy as np
def __init__(self, points): from scipy import interpolate
self.points = points # list of tuples (x1, y1, z1) in order from scipy.interpolate import interp1d
def curve(points, resolution=40, debug=False):
class Curve:
def __init__(self, target_points):
# list of points to [(x1, y1, z1), (...), ...]
self.target_points = target_points
self.computed_points = []
def compute_curve(self, resolution=40):
""" """
Returns a 3d curve. Fill self.computed_points with a list of points that approximate a smooth curve following self.target_points.
https://stackoverflow.com/questions/18962175/spline-interpolation-coefficients-of-a-line-curve-in-3d-space https://stackoverflow.com/questions/18962175/spline-interpolation-coefficients-of-a-line-curve-in-3d-space
Args: Args:
points (np.array): Points where the curve should pass in order. points (np.array): Points where the curve should pass in order.
resolution (int, optional): Number of points to compute. Defaults to 40. resolution (int, optional): Total number of points to compute. Defaults to 40.
debug (bool, optional): Visual. Defaults to False.
Returns:
tuple: Tuple of list of each coordinate.
""" """
# Remove duplicates. # Remove duplicates. Curve can't intersect itself
points = tuple(map(tuple, points)) points = tuple(map(tuple, np.array(self.target_points)))
points = sorted(set(points), key=points.index) points = sorted(set(points), key=points.index)
print(points)
x_sample = [] # Change coordinates structure to (x1, x2, x3, ...), (y1, y2, y3, ...) (z1, z2, z3, ...)
y_sample = [] coords = np.array(points, dtype=np.float32)
z_sample = [] x = coords[:, 0]
y = coords[:, 1]
z = coords[:, 2]
for i in range(len(points)): # Compute
x_sample.append(points[i][0]) tck, u = interpolate.splprep([x, y, z], s=2, k=2)
z_sample.append(points[i][1])
y_sample.append(points[i][2])
x_sample = np.array(x_sample)
y_sample = np.array(y_sample)
z_sample = np.array(z_sample)
tck, u = interpolate.splprep([x_sample, y_sample, z_sample], s=2, k=2)
x_knots, y_knots, z_knots = interpolate.splev(tck[0], tck) x_knots, y_knots, z_knots = interpolate.splev(tck[0], tck)
u_fine = np.linspace(0, 1, number_true_pts) u_fine = np.linspace(0, 1, resolution)
x_fine, y_fine, z_fine = interpolate.splev(u_fine, tck) x_fine, y_fine, z_fine = interpolate.splev(u_fine, tck)
if debug: x_rounded = np.round(x_fine).astype(int)
fig2 = plt.figure(2) y_rounded = np.round(y_fine).astype(int)
ax3d = fig2.add_subplot(111, projection="3d") z_rounded = np.round(z_fine).astype(int)
ax3d.plot(x_sample, y_sample, z_sample, "r*")
ax3d.plot(x_knots, y_knots, z_knots, "go")
ax3d.plot(x_fine, y_fine, z_fine, "r")
fig2.show()
plt.show()
x = x_fine.tolist() self.computed_points = [(x, y, z) for x, y, z in zip(
z = y_fine.tolist() x_rounded, y_rounded, z_rounded)]
y = z_fine.tolist()
for i in x: for i in range(len(self.computed_points)):
i = round(i) print(self.computed_points[i])
for i in y:
i = round(i)
for i in z:
i = round(i)
return x, y, z

View File

@@ -1 +1,4 @@
gdpc==7.1.0 gdpc==7.1.0
matplotlib==3.8.2
numpy==1.26.4
scipy==1.13.0