mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2024-11-22 13:16:45 +01:00
Fix #2836
getCompoundTag can also be in Core since we're using WorldEdit.
This commit is contained in:
parent
c58309b385
commit
d5d18a60fb
@ -25,258 +25,15 @@
|
|||||||
*/
|
*/
|
||||||
package com.plotsquared.bukkit.schematic;
|
package com.plotsquared.bukkit.schematic;
|
||||||
|
|
||||||
import com.plotsquared.bukkit.util.BukkitUtil;
|
|
||||||
import com.plotsquared.core.location.Location;
|
|
||||||
import com.plotsquared.core.queue.LocalBlockQueue;
|
import com.plotsquared.core.queue.LocalBlockQueue;
|
||||||
import com.plotsquared.core.util.MainUtil;
|
|
||||||
import com.plotsquared.core.util.SchematicHandler;
|
import com.plotsquared.core.util.SchematicHandler;
|
||||||
import com.plotsquared.core.util.task.RunnableVal;
|
|
||||||
import com.plotsquared.core.util.task.TaskManager;
|
|
||||||
import com.sk89q.jnbt.ByteArrayTag;
|
|
||||||
import com.sk89q.jnbt.CompoundTag;
|
import com.sk89q.jnbt.CompoundTag;
|
||||||
import com.sk89q.jnbt.IntArrayTag;
|
|
||||||
import com.sk89q.jnbt.IntTag;
|
|
||||||
import com.sk89q.jnbt.ListTag;
|
|
||||||
import com.sk89q.jnbt.ShortTag;
|
|
||||||
import com.sk89q.jnbt.StringTag;
|
|
||||||
import com.sk89q.jnbt.Tag;
|
|
||||||
import com.sk89q.worldedit.WorldEdit;
|
|
||||||
import com.sk89q.worldedit.extension.platform.Capability;
|
|
||||||
import com.sk89q.worldedit.math.BlockVector2;
|
|
||||||
import com.sk89q.worldedit.math.BlockVector3;
|
|
||||||
import com.sk89q.worldedit.regions.CuboidRegion;
|
|
||||||
import com.sk89q.worldedit.world.biome.BiomeType;
|
|
||||||
import com.sk89q.worldedit.world.block.BaseBlock;
|
|
||||||
|
|
||||||
import java.io.ByteArrayOutputStream;
|
|
||||||
import java.util.ArrayDeque;
|
|
||||||
import java.util.ArrayList;
|
|
||||||
import java.util.HashMap;
|
|
||||||
import java.util.Iterator;
|
|
||||||
import java.util.List;
|
|
||||||
import java.util.Map;
|
|
||||||
import java.util.Set;
|
|
||||||
import java.util.stream.IntStream;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Schematic Handler.
|
* Schematic Handler.
|
||||||
*/
|
*/
|
||||||
public class BukkitSchematicHandler extends SchematicHandler {
|
public class BukkitSchematicHandler extends SchematicHandler {
|
||||||
|
|
||||||
@Override
|
|
||||||
public void getCompoundTag(final String world, final Set<CuboidRegion> regions,
|
|
||||||
final RunnableVal<CompoundTag> whenDone) {
|
|
||||||
// async
|
|
||||||
TaskManager.runTaskAsync(new Runnable() {
|
|
||||||
@Override public void run() {
|
|
||||||
// Main positions
|
|
||||||
Location[] corners = MainUtil.getCorners(world, regions);
|
|
||||||
final Location bot = corners[0];
|
|
||||||
final Location top = corners[1];
|
|
||||||
|
|
||||||
CuboidRegion cuboidRegion =
|
|
||||||
new CuboidRegion(BukkitUtil.IMP.getWeWorld(world), bot.getBlockVector3(),
|
|
||||||
top.getBlockVector3());
|
|
||||||
|
|
||||||
final int width = cuboidRegion.getWidth();
|
|
||||||
int height = cuboidRegion.getHeight();
|
|
||||||
final int length = cuboidRegion.getLength();
|
|
||||||
Map<String, Tag> schematic = new HashMap<>();
|
|
||||||
schematic.put("Version", new IntTag(2));
|
|
||||||
schematic.put("DataVersion", new IntTag(WorldEdit.getInstance().getPlatformManager()
|
|
||||||
.queryCapability(Capability.WORLD_EDITING).getDataVersion()));
|
|
||||||
|
|
||||||
Map<String, Tag> metadata = new HashMap<>();
|
|
||||||
metadata.put("WEOffsetX", new IntTag(0));
|
|
||||||
metadata.put("WEOffsetY", new IntTag(0));
|
|
||||||
metadata.put("WEOffsetZ", new IntTag(0));
|
|
||||||
|
|
||||||
schematic.put("Metadata", new CompoundTag(metadata));
|
|
||||||
|
|
||||||
schematic.put("Width", new ShortTag((short) width));
|
|
||||||
schematic.put("Height", new ShortTag((short) height));
|
|
||||||
schematic.put("Length", new ShortTag((short) length));
|
|
||||||
|
|
||||||
// The Sponge format Offset refers to the 'min' points location in the world. That's our 'Origin'
|
|
||||||
schematic.put("Offset", new IntArrayTag(new int[] {0, 0, 0,}));
|
|
||||||
|
|
||||||
Map<String, Integer> palette = new HashMap<>();
|
|
||||||
Map<String, Integer> biomePalette = new HashMap<>();
|
|
||||||
|
|
||||||
List<CompoundTag> tileEntities = new ArrayList<>();
|
|
||||||
ByteArrayOutputStream buffer = new ByteArrayOutputStream(width * height * length);
|
|
||||||
ByteArrayOutputStream biomeBuffer = new ByteArrayOutputStream(width * length);
|
|
||||||
// Queue
|
|
||||||
final ArrayDeque<CuboidRegion> queue = new ArrayDeque<>(regions);
|
|
||||||
TaskManager.runTask(new Runnable() {
|
|
||||||
@Override public void run() {
|
|
||||||
if (queue.isEmpty()) {
|
|
||||||
TaskManager.runTaskAsync(() -> {
|
|
||||||
schematic.put("PaletteMax", new IntTag(palette.size()));
|
|
||||||
|
|
||||||
Map<String, Tag> paletteTag = new HashMap<>();
|
|
||||||
palette.forEach(
|
|
||||||
(key, value) -> paletteTag.put(key, new IntTag(value)));
|
|
||||||
|
|
||||||
schematic.put("Palette", new CompoundTag(paletteTag));
|
|
||||||
schematic.put("BlockData", new ByteArrayTag(buffer.toByteArray()));
|
|
||||||
schematic.put("TileEntities",
|
|
||||||
new ListTag(CompoundTag.class, tileEntities));
|
|
||||||
|
|
||||||
schematic.put("BiomePaletteMax", new IntTag(biomePalette.size()));
|
|
||||||
|
|
||||||
Map<String, Tag> biomePaletteTag = new HashMap<>();
|
|
||||||
biomePalette.forEach(
|
|
||||||
(key, value) -> biomePaletteTag.put(key, new IntTag(value)));
|
|
||||||
|
|
||||||
schematic.put("BiomePalette", new CompoundTag(biomePaletteTag));
|
|
||||||
schematic
|
|
||||||
.put("BiomeData", new ByteArrayTag(biomeBuffer.toByteArray()));
|
|
||||||
whenDone.value = new CompoundTag(schematic);
|
|
||||||
TaskManager.runTask(whenDone);
|
|
||||||
});
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
final Runnable regionTask = this;
|
|
||||||
CuboidRegion region = queue.poll();
|
|
||||||
Location pos1 = new Location(world, region.getMinimumPoint().getX(),
|
|
||||||
region.getMinimumPoint().getY(), region.getMinimumPoint().getZ());
|
|
||||||
Location pos2 = new Location(world, region.getMaximumPoint().getX(),
|
|
||||||
region.getMaximumPoint().getY(), region.getMaximumPoint().getZ());
|
|
||||||
final int p1x = pos1.getX();
|
|
||||||
final int sy = pos1.getY();
|
|
||||||
final int p1z = pos1.getZ();
|
|
||||||
final int p2x = pos2.getX();
|
|
||||||
final int p2z = pos2.getZ();
|
|
||||||
final int ey = pos2.getY();
|
|
||||||
Iterator<Integer> yiter = IntStream.range(sy, ey + 1).iterator();
|
|
||||||
final Runnable yTask = new Runnable() {
|
|
||||||
@Override public void run() {
|
|
||||||
long ystart = System.currentTimeMillis();
|
|
||||||
while (yiter.hasNext()
|
|
||||||
&& System.currentTimeMillis() - ystart < 20) {
|
|
||||||
final int y = yiter.next();
|
|
||||||
Iterator<Integer> ziter =
|
|
||||||
IntStream.range(p1z, p2z + 1).iterator();
|
|
||||||
final Runnable zTask = new Runnable() {
|
|
||||||
@Override public void run() {
|
|
||||||
long zstart = System.currentTimeMillis();
|
|
||||||
while (ziter.hasNext()
|
|
||||||
&& System.currentTimeMillis() - zstart < 20) {
|
|
||||||
final int z = ziter.next();
|
|
||||||
Iterator<Integer> xiter =
|
|
||||||
IntStream.range(p1x, p2x + 1).iterator();
|
|
||||||
final Runnable xTask = new Runnable() {
|
|
||||||
@Override public void run() {
|
|
||||||
long xstart = System.currentTimeMillis();
|
|
||||||
final int ry = y - sy;
|
|
||||||
final int rz = z - p1z;
|
|
||||||
while (xiter.hasNext()
|
|
||||||
&& System.currentTimeMillis() - xstart
|
|
||||||
< 20) {
|
|
||||||
final int x = xiter.next();
|
|
||||||
final int rx = x - p1x;
|
|
||||||
BlockVector3 point =
|
|
||||||
BlockVector3.at(x, y, z);
|
|
||||||
BaseBlock block =
|
|
||||||
cuboidRegion.getWorld()
|
|
||||||
.getFullBlock(point);
|
|
||||||
if (block.getNbtData() != null) {
|
|
||||||
Map<String, Tag> values =
|
|
||||||
new HashMap<>();
|
|
||||||
for (Map.Entry<String, Tag> entry : block
|
|
||||||
.getNbtData().getValue()
|
|
||||||
.entrySet()) {
|
|
||||||
values.put(entry.getKey(),
|
|
||||||
entry.getValue());
|
|
||||||
}
|
|
||||||
// Remove 'id' if it exists. We want 'Id'
|
|
||||||
values.remove("id");
|
|
||||||
|
|
||||||
// Positions are kept in NBT, we don't want that.
|
|
||||||
values.remove("x");
|
|
||||||
values.remove("y");
|
|
||||||
values.remove("z");
|
|
||||||
|
|
||||||
values.put("Id", new StringTag(
|
|
||||||
block.getNbtId()));
|
|
||||||
values.put("Pos", new IntArrayTag(
|
|
||||||
new int[] {rx, ry, rz}));
|
|
||||||
|
|
||||||
tileEntities
|
|
||||||
.add(new CompoundTag(values));
|
|
||||||
}
|
|
||||||
String blockKey =
|
|
||||||
block.toImmutableState()
|
|
||||||
.getAsString();
|
|
||||||
int blockId;
|
|
||||||
if (palette.containsKey(blockKey)) {
|
|
||||||
blockId = palette.get(blockKey);
|
|
||||||
} else {
|
|
||||||
blockId = palette.size();
|
|
||||||
palette
|
|
||||||
.put(blockKey, palette.size());
|
|
||||||
}
|
|
||||||
|
|
||||||
while ((blockId & -128) != 0) {
|
|
||||||
buffer.write(blockId & 127 | 128);
|
|
||||||
blockId >>>= 7;
|
|
||||||
}
|
|
||||||
buffer.write(blockId);
|
|
||||||
|
|
||||||
if (ry == sy) {
|
|
||||||
BlockVector2 pt =
|
|
||||||
BlockVector2.at(x, z);
|
|
||||||
BiomeType biome =
|
|
||||||
cuboidRegion.getWorld()
|
|
||||||
.getBiome(pt);
|
|
||||||
String biomeStr = biome.getId();
|
|
||||||
int biomeId;
|
|
||||||
if (biomePalette
|
|
||||||
.containsKey(biomeStr)) {
|
|
||||||
biomeId =
|
|
||||||
biomePalette.get(biomeStr);
|
|
||||||
} else {
|
|
||||||
biomeId = biomePalette.size();
|
|
||||||
biomePalette
|
|
||||||
.put(biomeStr, biomeId);
|
|
||||||
}
|
|
||||||
while ((biomeId & -128) != 0) {
|
|
||||||
biomeBuffer
|
|
||||||
.write(biomeId & 127 | 128);
|
|
||||||
biomeId >>>= 7;
|
|
||||||
}
|
|
||||||
biomeBuffer.write(biomeId);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if (xiter.hasNext()) {
|
|
||||||
this.run();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
};
|
|
||||||
xTask.run();
|
|
||||||
}
|
|
||||||
if (ziter.hasNext()) {
|
|
||||||
this.run();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
};
|
|
||||||
zTask.run();
|
|
||||||
}
|
|
||||||
if (yiter.hasNext()) {
|
|
||||||
TaskManager.runTaskLater(this, 1);
|
|
||||||
} else {
|
|
||||||
regionTask.run();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
};
|
|
||||||
yTask.run();
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean restoreTile(LocalBlockQueue queue, CompoundTag ct, int x, int y, int z) {
|
public boolean restoreTile(LocalBlockQueue queue, CompoundTag ct, int x, int y, int z) {
|
||||||
return new StateWrapper(ct).restoreTag(queue.getWorld(), x, y, z);
|
return new StateWrapper(ct).restoreTag(queue.getWorld(), x, y, z);
|
||||||
|
@ -36,9 +36,18 @@ import com.plotsquared.core.queue.LocalBlockQueue;
|
|||||||
import com.plotsquared.core.util.task.RunnableVal;
|
import com.plotsquared.core.util.task.RunnableVal;
|
||||||
import com.plotsquared.core.util.task.TaskManager;
|
import com.plotsquared.core.util.task.TaskManager;
|
||||||
import com.plotsquared.core.util.uuid.UUIDHandler;
|
import com.plotsquared.core.util.uuid.UUIDHandler;
|
||||||
|
import com.sk89q.jnbt.ByteArrayTag;
|
||||||
import com.sk89q.jnbt.CompoundTag;
|
import com.sk89q.jnbt.CompoundTag;
|
||||||
|
import com.sk89q.jnbt.IntArrayTag;
|
||||||
|
import com.sk89q.jnbt.IntTag;
|
||||||
|
import com.sk89q.jnbt.ListTag;
|
||||||
import com.sk89q.jnbt.NBTInputStream;
|
import com.sk89q.jnbt.NBTInputStream;
|
||||||
import com.sk89q.jnbt.NBTOutputStream;
|
import com.sk89q.jnbt.NBTOutputStream;
|
||||||
|
import com.sk89q.jnbt.ShortTag;
|
||||||
|
import com.sk89q.jnbt.StringTag;
|
||||||
|
import com.sk89q.jnbt.Tag;
|
||||||
|
import com.sk89q.worldedit.WorldEdit;
|
||||||
|
import com.sk89q.worldedit.extension.platform.Capability;
|
||||||
import com.sk89q.worldedit.extent.clipboard.Clipboard;
|
import com.sk89q.worldedit.extent.clipboard.Clipboard;
|
||||||
import com.sk89q.worldedit.extent.clipboard.io.ClipboardFormat;
|
import com.sk89q.worldedit.extent.clipboard.io.ClipboardFormat;
|
||||||
import com.sk89q.worldedit.extent.clipboard.io.ClipboardFormats;
|
import com.sk89q.worldedit.extent.clipboard.io.ClipboardFormats;
|
||||||
@ -55,6 +64,7 @@ import org.json.JSONArray;
|
|||||||
import org.json.JSONException;
|
import org.json.JSONException;
|
||||||
|
|
||||||
import java.io.BufferedReader;
|
import java.io.BufferedReader;
|
||||||
|
import java.io.ByteArrayOutputStream;
|
||||||
import java.io.File;
|
import java.io.File;
|
||||||
import java.io.FileInputStream;
|
import java.io.FileInputStream;
|
||||||
import java.io.FileNotFoundException;
|
import java.io.FileNotFoundException;
|
||||||
@ -67,15 +77,19 @@ import java.net.URL;
|
|||||||
import java.net.URLConnection;
|
import java.net.URLConnection;
|
||||||
import java.nio.channels.Channels;
|
import java.nio.channels.Channels;
|
||||||
import java.nio.channels.ReadableByteChannel;
|
import java.nio.channels.ReadableByteChannel;
|
||||||
|
import java.util.ArrayDeque;
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.Arrays;
|
import java.util.Arrays;
|
||||||
import java.util.Collection;
|
import java.util.Collection;
|
||||||
import java.util.Collections;
|
import java.util.Collections;
|
||||||
|
import java.util.HashMap;
|
||||||
import java.util.Iterator;
|
import java.util.Iterator;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
import java.util.Map;
|
||||||
import java.util.Set;
|
import java.util.Set;
|
||||||
import java.util.UUID;
|
import java.util.UUID;
|
||||||
import java.util.stream.Collectors;
|
import java.util.stream.Collectors;
|
||||||
|
import java.util.stream.IntStream;
|
||||||
import java.util.zip.GZIPInputStream;
|
import java.util.zip.GZIPInputStream;
|
||||||
import java.util.zip.GZIPOutputStream;
|
import java.util.zip.GZIPOutputStream;
|
||||||
|
|
||||||
@ -464,8 +478,190 @@ public abstract class SchematicHandler {
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
public abstract void getCompoundTag(String world, Set<CuboidRegion> regions,
|
public void getCompoundTag(final String world, final Set<CuboidRegion> regions,
|
||||||
RunnableVal<CompoundTag> whenDone);
|
final RunnableVal<CompoundTag> whenDone) {
|
||||||
|
// async
|
||||||
|
TaskManager.runTaskAsync(() -> {
|
||||||
|
// Main positions
|
||||||
|
Location[] corners = MainUtil.getCorners(world, regions);
|
||||||
|
final Location bot = corners[0];
|
||||||
|
final Location top = corners[1];
|
||||||
|
|
||||||
|
CuboidRegion cuboidRegion =
|
||||||
|
new CuboidRegion(WorldUtil.IMP.getWeWorld(world), bot.getBlockVector3(),
|
||||||
|
top.getBlockVector3());
|
||||||
|
|
||||||
|
final int width = cuboidRegion.getWidth();
|
||||||
|
int height = cuboidRegion.getHeight();
|
||||||
|
final int length = cuboidRegion.getLength();
|
||||||
|
Map<String, Tag> schematic = new HashMap<>();
|
||||||
|
schematic.put("Version", new IntTag(2));
|
||||||
|
schematic.put("DataVersion", new IntTag(WorldEdit.getInstance().getPlatformManager()
|
||||||
|
.queryCapability(Capability.WORLD_EDITING).getDataVersion()));
|
||||||
|
|
||||||
|
Map<String, Tag> metadata = new HashMap<>();
|
||||||
|
metadata.put("WEOffsetX", new IntTag(0));
|
||||||
|
metadata.put("WEOffsetY", new IntTag(0));
|
||||||
|
metadata.put("WEOffsetZ", new IntTag(0));
|
||||||
|
|
||||||
|
schematic.put("Metadata", new CompoundTag(metadata));
|
||||||
|
|
||||||
|
schematic.put("Width", new ShortTag((short) width));
|
||||||
|
schematic.put("Height", new ShortTag((short) height));
|
||||||
|
schematic.put("Length", new ShortTag((short) length));
|
||||||
|
|
||||||
|
// The Sponge format Offset refers to the 'min' points location in the world. That's our 'Origin'
|
||||||
|
schematic.put("Offset", new IntArrayTag(new int[] {0, 0, 0,}));
|
||||||
|
|
||||||
|
Map<String, Integer> palette = new HashMap<>();
|
||||||
|
Map<String, Integer> biomePalette = new HashMap<>();
|
||||||
|
|
||||||
|
List<CompoundTag> tileEntities = new ArrayList<>();
|
||||||
|
ByteArrayOutputStream buffer = new ByteArrayOutputStream(width * height * length);
|
||||||
|
ByteArrayOutputStream biomeBuffer = new ByteArrayOutputStream(width * length);
|
||||||
|
// Queue
|
||||||
|
final ArrayDeque<CuboidRegion> queue = new ArrayDeque<>(regions);
|
||||||
|
TaskManager.runTask(new Runnable() {
|
||||||
|
@Override public void run() {
|
||||||
|
if (queue.isEmpty()) {
|
||||||
|
TaskManager.runTaskAsync(() -> {
|
||||||
|
schematic.put("PaletteMax", new IntTag(palette.size()));
|
||||||
|
|
||||||
|
Map<String, Tag> paletteTag = new HashMap<>();
|
||||||
|
palette.forEach((key, value) -> paletteTag.put(key, new IntTag(value)));
|
||||||
|
|
||||||
|
schematic.put("Palette", new CompoundTag(paletteTag));
|
||||||
|
schematic.put("BlockData", new ByteArrayTag(buffer.toByteArray()));
|
||||||
|
schematic
|
||||||
|
.put("TileEntities", new ListTag(CompoundTag.class, tileEntities));
|
||||||
|
|
||||||
|
schematic.put("BiomePaletteMax", new IntTag(biomePalette.size()));
|
||||||
|
|
||||||
|
Map<String, Tag> biomePaletteTag = new HashMap<>();
|
||||||
|
biomePalette.forEach(
|
||||||
|
(key, value) -> biomePaletteTag.put(key, new IntTag(value)));
|
||||||
|
|
||||||
|
schematic.put("BiomePalette", new CompoundTag(biomePaletteTag));
|
||||||
|
schematic.put("BiomeData", new ByteArrayTag(biomeBuffer.toByteArray()));
|
||||||
|
whenDone.value = new CompoundTag(schematic);
|
||||||
|
TaskManager.runTask(whenDone);
|
||||||
|
});
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
final Runnable regionTask = this;
|
||||||
|
CuboidRegion region = queue.poll();
|
||||||
|
Location pos1 = new Location(world, region.getMinimumPoint().getX(),
|
||||||
|
region.getMinimumPoint().getY(), region.getMinimumPoint().getZ());
|
||||||
|
Location pos2 = new Location(world, region.getMaximumPoint().getX(),
|
||||||
|
region.getMaximumPoint().getY(), region.getMaximumPoint().getZ());
|
||||||
|
final int p1x = pos1.getX();
|
||||||
|
final int sy = pos1.getY();
|
||||||
|
final int p1z = pos1.getZ();
|
||||||
|
final int p2x = pos2.getX();
|
||||||
|
final int p2z = pos2.getZ();
|
||||||
|
final int ey = pos2.getY();
|
||||||
|
Iterator<Integer> yiter = IntStream.range(sy, ey + 1).iterator();
|
||||||
|
final Runnable yTask = () -> {
|
||||||
|
long ystart = System.currentTimeMillis();
|
||||||
|
while (yiter.hasNext() && System.currentTimeMillis() - ystart < 20) {
|
||||||
|
final int y = yiter.next();
|
||||||
|
Iterator<Integer> ziter = IntStream.range(p1z, p2z + 1).iterator();
|
||||||
|
final Runnable zTask = () -> {
|
||||||
|
long zstart = System.currentTimeMillis();
|
||||||
|
while (ziter.hasNext()
|
||||||
|
&& System.currentTimeMillis() - zstart < 20) {
|
||||||
|
final int z = ziter.next();
|
||||||
|
Iterator<Integer> xiter =
|
||||||
|
IntStream.range(p1x, p2x + 1).iterator();
|
||||||
|
final Runnable xTask = () -> {
|
||||||
|
long xstart = System.currentTimeMillis();
|
||||||
|
final int ry = y - sy;
|
||||||
|
final int rz = z - p1z;
|
||||||
|
while (xiter.hasNext()
|
||||||
|
&& System.currentTimeMillis() - xstart < 20) {
|
||||||
|
final int x = xiter.next();
|
||||||
|
final int rx = x - p1x;
|
||||||
|
BlockVector3 point = BlockVector3.at(x, y, z);
|
||||||
|
BaseBlock block =
|
||||||
|
cuboidRegion.getWorld().getFullBlock(point);
|
||||||
|
if (block.getNbtData() != null) {
|
||||||
|
Map<String, Tag> values = new HashMap<>();
|
||||||
|
for (Map.Entry<String, Tag> entry : block
|
||||||
|
.getNbtData().getValue().entrySet()) {
|
||||||
|
values.put(entry.getKey(), entry.getValue());
|
||||||
|
}
|
||||||
|
// Remove 'id' if it exists. We want 'Id'
|
||||||
|
values.remove("id");
|
||||||
|
|
||||||
|
// Positions are kept in NBT, we don't want that.
|
||||||
|
values.remove("x");
|
||||||
|
values.remove("y");
|
||||||
|
values.remove("z");
|
||||||
|
|
||||||
|
values.put("Id", new StringTag(block.getNbtId()));
|
||||||
|
values.put("Pos",
|
||||||
|
new IntArrayTag(new int[] {rx, ry, rz}));
|
||||||
|
|
||||||
|
tileEntities.add(new CompoundTag(values));
|
||||||
|
}
|
||||||
|
String blockKey =
|
||||||
|
block.toImmutableState().getAsString();
|
||||||
|
int blockId;
|
||||||
|
if (palette.containsKey(blockKey)) {
|
||||||
|
blockId = palette.get(blockKey);
|
||||||
|
} else {
|
||||||
|
blockId = palette.size();
|
||||||
|
palette.put(blockKey, palette.size());
|
||||||
|
}
|
||||||
|
|
||||||
|
while ((blockId & -128) != 0) {
|
||||||
|
buffer.write(blockId & 127 | 128);
|
||||||
|
blockId >>>= 7;
|
||||||
|
}
|
||||||
|
buffer.write(blockId);
|
||||||
|
|
||||||
|
if (ry > 0) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
BlockVector2 pt = BlockVector2.at(x, z);
|
||||||
|
BiomeType biome = cuboidRegion.getWorld().getBiome(pt);
|
||||||
|
String biomeStr = biome.getId();
|
||||||
|
int biomeId;
|
||||||
|
if (biomePalette.containsKey(biomeStr)) {
|
||||||
|
biomeId = biomePalette.get(biomeStr);
|
||||||
|
} else {
|
||||||
|
biomeId = biomePalette.size();
|
||||||
|
biomePalette.put(biomeStr, biomeId);
|
||||||
|
}
|
||||||
|
while ((biomeId & -128) != 0) {
|
||||||
|
biomeBuffer.write(biomeId & 127 | 128);
|
||||||
|
biomeId >>>= 7;
|
||||||
|
}
|
||||||
|
biomeBuffer.write(biomeId);
|
||||||
|
}
|
||||||
|
if (xiter.hasNext()) {
|
||||||
|
this.run();
|
||||||
|
}
|
||||||
|
};
|
||||||
|
xTask.run();
|
||||||
|
}
|
||||||
|
if (ziter.hasNext()) {
|
||||||
|
this.run();
|
||||||
|
}
|
||||||
|
};
|
||||||
|
zTask.run();
|
||||||
|
}
|
||||||
|
if (yiter.hasNext()) {
|
||||||
|
TaskManager.runTaskLater(this, 1);
|
||||||
|
} else {
|
||||||
|
regionTask.run();
|
||||||
|
}
|
||||||
|
};
|
||||||
|
yTask.run();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
public void getCompoundTag(final Plot plot, final RunnableVal<CompoundTag> whenDone) {
|
public void getCompoundTag(final Plot plot, final RunnableVal<CompoundTag> whenDone) {
|
||||||
getCompoundTag(plot.getWorldName(), plot.getRegions(), new RunnableVal<CompoundTag>() {
|
getCompoundTag(plot.getWorldName(), plot.getRegions(), new RunnableVal<CompoundTag>() {
|
||||||
@ -495,7 +691,6 @@ public abstract class SchematicHandler {
|
|||||||
public UnsupportedFormatException(String message, Throwable cause) {
|
public UnsupportedFormatException(String message, Throwable cause) {
|
||||||
super(message, cause);
|
super(message, cause);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user