Mirror von
https://github.com/IntellectualSites/FastAsyncWorldEdit.git
synchronisiert 2024-12-26 11:00:04 +01:00
StripNBT processor rather than extent
Dieser Commit ist enthalten in:
Ursprung
b11a67e435
Commit
8a4f28a7cc
@ -1,5 +1,13 @@
|
|||||||
package com.fastasyncworldedit.core.extent;
|
package com.fastasyncworldedit.core.extent;
|
||||||
|
|
||||||
|
import com.fastasyncworldedit.core.extent.processor.ProcessorScope;
|
||||||
|
import com.fastasyncworldedit.core.math.BlockVector3ChunkMap;
|
||||||
|
import com.fastasyncworldedit.core.queue.IBatchProcessor;
|
||||||
|
import com.fastasyncworldedit.core.queue.IChunk;
|
||||||
|
import com.fastasyncworldedit.core.queue.IChunkGet;
|
||||||
|
import com.fastasyncworldedit.core.queue.IChunkSet;
|
||||||
|
import com.fastasyncworldedit.core.util.ExtentTraverser;
|
||||||
|
import com.google.common.collect.ImmutableMap;
|
||||||
import com.sk89q.jnbt.CompoundTag;
|
import com.sk89q.jnbt.CompoundTag;
|
||||||
import com.sk89q.jnbt.Tag;
|
import com.sk89q.jnbt.Tag;
|
||||||
import com.sk89q.worldedit.WorldEditException;
|
import com.sk89q.worldedit.WorldEditException;
|
||||||
@ -15,12 +23,19 @@ import com.sk89q.worldedit.world.block.BlockStateHolder;
|
|||||||
|
|
||||||
import javax.annotation.Nullable;
|
import javax.annotation.Nullable;
|
||||||
import java.util.HashMap;
|
import java.util.HashMap;
|
||||||
|
import java.util.HashSet;
|
||||||
|
import java.util.Iterator;
|
||||||
|
import java.util.Locale;
|
||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
import java.util.Set;
|
import java.util.Set;
|
||||||
|
import java.util.concurrent.CompletableFuture;
|
||||||
|
import java.util.concurrent.Future;
|
||||||
|
import java.util.concurrent.atomic.AtomicBoolean;
|
||||||
|
import java.util.stream.Collectors;
|
||||||
|
|
||||||
public class StripNBTExtent extends AbstractDelegateExtent {
|
public class StripNBTExtent extends AbstractDelegateExtent implements IBatchProcessor {
|
||||||
|
|
||||||
private final String[] strip;
|
private final Set<String> strip;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create a new instance.
|
* Create a new instance.
|
||||||
@ -29,7 +44,9 @@ public class StripNBTExtent extends AbstractDelegateExtent {
|
|||||||
*/
|
*/
|
||||||
public StripNBTExtent(Extent extent, Set<String> strip) {
|
public StripNBTExtent(Extent extent, Set<String> strip) {
|
||||||
super(extent);
|
super(extent);
|
||||||
this.strip = strip.toArray(new String[0]);
|
this.strip = new HashSet<>(strip)
|
||||||
|
.stream()
|
||||||
|
.map(String::toLowerCase).collect(Collectors.toUnmodifiableSet());
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@ -77,4 +94,72 @@ public class StripNBTExtent extends AbstractDelegateExtent {
|
|||||||
return entity;
|
return entity;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public IChunkSet processSet(final IChunk chunk, final IChunkGet get, final IChunkSet set) {
|
||||||
|
Map<BlockVector3, CompoundTag> tiles = set.getTiles();
|
||||||
|
Set<CompoundTag> entities = set.getEntities();
|
||||||
|
if (tiles.isEmpty() && entities.isEmpty()) {
|
||||||
|
return set;
|
||||||
|
}
|
||||||
|
boolean isBv3ChunkMap = tiles instanceof BlockVector3ChunkMap;
|
||||||
|
for (final Map.Entry<BlockVector3, CompoundTag> entry : tiles.entrySet()) {
|
||||||
|
ImmutableMap.Builder<String, Tag> map = ImmutableMap.builder();
|
||||||
|
final AtomicBoolean isStripped = new AtomicBoolean(false);
|
||||||
|
entry.getValue().getValue().forEach((k, v) -> {
|
||||||
|
if (strip.contains(k.toLowerCase())) {
|
||||||
|
isStripped.set(true);
|
||||||
|
} else {
|
||||||
|
map.put(k, v);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
if (isStripped.get()) {
|
||||||
|
if (isBv3ChunkMap) {
|
||||||
|
// Replace existing value with stripped value
|
||||||
|
tiles.put(entry.getKey(), new CompoundTag(map.build()));
|
||||||
|
} else {
|
||||||
|
entry.setValue(new CompoundTag(map.build()));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Set<CompoundTag> stripped = new HashSet<>();
|
||||||
|
Iterator<CompoundTag> iterator = entities.iterator();
|
||||||
|
while (iterator.hasNext()) {
|
||||||
|
CompoundTag entity = iterator.next();
|
||||||
|
ImmutableMap.Builder<String, Tag> map = ImmutableMap.builder();
|
||||||
|
final AtomicBoolean isStripped = new AtomicBoolean(false);
|
||||||
|
entity.getValue().forEach((k, v) -> {
|
||||||
|
if (strip.contains(k.toUpperCase(Locale.ROOT))) {
|
||||||
|
isStripped.set(true);
|
||||||
|
} else {
|
||||||
|
map.put(k, v);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
if (isStripped.get()) {
|
||||||
|
iterator.remove();
|
||||||
|
stripped.add(new CompoundTag(map.build()));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
set.getEntities().addAll(stripped);
|
||||||
|
return set;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public Future<IChunkSet> postProcessSet(final IChunk chunk, final IChunkGet get, final IChunkSet set) {
|
||||||
|
return CompletableFuture.completedFuture(set);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Nullable
|
||||||
|
@Override
|
||||||
|
public Extent construct(final Extent child) {
|
||||||
|
if (getExtent() != child) {
|
||||||
|
new ExtentTraverser<Extent>(this).setNext(child);
|
||||||
|
}
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public ProcessorScope getScope() {
|
||||||
|
return ProcessorScope.CHANGING_BLOCKS;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -433,8 +433,11 @@ public class EditSessionBuilder {
|
|||||||
this.extent = regionExtent;
|
this.extent = regionExtent;
|
||||||
}
|
}
|
||||||
if (this.limit != null && this.limit.STRIP_NBT != null && !this.limit.STRIP_NBT.isEmpty()) {
|
if (this.limit != null && this.limit.STRIP_NBT != null && !this.limit.STRIP_NBT.isEmpty()) {
|
||||||
//TODO add batch processor for strip nbt
|
if (placeChunks) {
|
||||||
this.extent = new StripNBTExtent(this.extent, this.limit.STRIP_NBT);
|
extent.addProcessor(new StripNBTExtent(this.extent, this.limit.STRIP_NBT));
|
||||||
|
} else {
|
||||||
|
this.extent = new StripNBTExtent(this.extent, this.limit.STRIP_NBT);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
this.extent = wrapExtent(this.extent, eventBus, event, EditSession.Stage.BEFORE_HISTORY);
|
this.extent = wrapExtent(this.extent, eventBus, event, EditSession.Stage.BEFORE_HISTORY);
|
||||||
}
|
}
|
||||||
|
@ -541,8 +541,11 @@ public final class EditSessionBuilder {
|
|||||||
this.extent = regionExtent;
|
this.extent = regionExtent;
|
||||||
}
|
}
|
||||||
if (this.limit != null && this.limit.STRIP_NBT != null && !this.limit.STRIP_NBT.isEmpty()) {
|
if (this.limit != null && this.limit.STRIP_NBT != null && !this.limit.STRIP_NBT.isEmpty()) {
|
||||||
//TODO add batch processor for strip nbt
|
if (placeChunks) {
|
||||||
this.extent = new StripNBTExtent(this.extent, this.limit.STRIP_NBT);
|
extent.addProcessor(new StripNBTExtent(this.extent, this.limit.STRIP_NBT));
|
||||||
|
} else {
|
||||||
|
this.extent = new StripNBTExtent(this.extent, this.limit.STRIP_NBT);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
this.extent = wrapExtent(this.extent, eventBus, event, EditSession.Stage.BEFORE_HISTORY);
|
this.extent = wrapExtent(this.extent, eventBus, event, EditSession.Stage.BEFORE_HISTORY);
|
||||||
}
|
}
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren