Spaces:
Build error
Build error
File size: 11,943 Bytes
d46f4a3 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 |
package net.minecraft.gametest.framework;
import com.google.common.base.Stopwatch;
import com.google.common.collect.Lists;
import it.unimi.dsi.fastutil.objects.Object2LongMap;
import it.unimi.dsi.fastutil.objects.Object2LongOpenHashMap;
import it.unimi.dsi.fastutil.objects.ObjectIterator;
import it.unimi.dsi.fastutil.objects.Object2LongMap.Entry;
import java.util.Collection;
import java.util.List;
import java.util.concurrent.TimeUnit;
import java.util.stream.Stream;
import javax.annotation.Nullable;
import net.minecraft.core.BlockPos;
import net.minecraft.server.level.ServerLevel;
import net.minecraft.world.entity.Entity;
import net.minecraft.world.entity.player.Player;
import net.minecraft.world.level.ChunkPos;
import net.minecraft.world.level.block.Rotation;
import net.minecraft.world.level.block.entity.StructureBlockEntity;
import net.minecraft.world.level.levelgen.structure.BoundingBox;
import net.minecraft.world.phys.AABB;
public class GameTestInfo {
private final TestFunction testFunction;
@Nullable
private BlockPos structureBlockPos;
@Nullable
private BlockPos northWestCorner;
private final ServerLevel level;
private final Collection<GameTestListener> listeners = Lists.newArrayList();
private final int timeoutTicks;
private final Collection<GameTestSequence> sequences = Lists.newCopyOnWriteArrayList();
private final Object2LongMap<Runnable> runAtTickTimeMap = new Object2LongOpenHashMap<>();
private long startTick;
private int ticksToWaitForChunkLoading = 20;
private boolean placedStructure;
private boolean chunksLoaded;
private long tickCount;
private boolean started;
private final RetryOptions retryOptions;
private final Stopwatch timer = Stopwatch.createUnstarted();
private boolean done;
private final Rotation rotation;
@Nullable
private Throwable error;
@Nullable
private StructureBlockEntity structureBlockEntity;
public GameTestInfo(TestFunction p_127613_, Rotation p_127614_, ServerLevel p_127615_, RetryOptions p_328909_) {
this.testFunction = p_127613_;
this.level = p_127615_;
this.retryOptions = p_328909_;
this.timeoutTicks = p_127613_.maxTicks();
this.rotation = p_127613_.rotation().getRotated(p_127614_);
}
void setStructureBlockPos(BlockPos p_127618_) {
this.structureBlockPos = p_127618_;
}
public GameTestInfo startExecution(int p_329736_) {
this.startTick = this.level.getGameTime() + this.testFunction.setupTicks() + (long)p_329736_;
this.timer.start();
return this;
}
public GameTestInfo placeStructure() {
if (this.placedStructure) {
return this;
} else {
this.ticksToWaitForChunkLoading = 0;
this.placedStructure = true;
StructureBlockEntity structureblockentity = this.getStructureBlockEntity();
structureblockentity.placeStructure(this.level);
BoundingBox boundingbox = StructureUtils.getStructureBoundingBox(structureblockentity);
this.level.getBlockTicks().clearArea(boundingbox);
this.level.clearBlockEvents(boundingbox);
return this;
}
}
private boolean ensureStructureIsPlaced() {
if (this.placedStructure) {
return true;
} else if (this.ticksToWaitForChunkLoading > 0) {
this.ticksToWaitForChunkLoading--;
return false;
} else {
this.placeStructure().startExecution(0);
return true;
}
}
public void tick(GameTestRunner p_334539_) {
if (!this.isDone()) {
if (this.structureBlockEntity == null) {
this.fail(new IllegalStateException("Running test without structure block entity"));
}
if (this.chunksLoaded || StructureUtils.getStructureBoundingBox(this.structureBlockEntity).intersectingChunks().allMatch(p_308533_ -> this.level.isPositionEntityTicking(p_308533_.getWorldPosition()))) {
this.chunksLoaded = true;
if (this.ensureStructureIsPlaced()) {
this.tickInternal();
if (this.isDone()) {
if (this.error != null) {
this.listeners.forEach(p_325940_ -> p_325940_.testFailed(this, p_334539_));
} else {
this.listeners.forEach(p_325938_ -> p_325938_.testPassed(this, p_334539_));
}
}
}
}
}
}
private void tickInternal() {
this.tickCount = this.level.getGameTime() - this.startTick;
if (this.tickCount >= 0L) {
if (!this.started) {
this.startTest();
}
ObjectIterator<Entry<Runnable>> objectiterator = this.runAtTickTimeMap.object2LongEntrySet().iterator();
while (objectiterator.hasNext()) {
Entry<Runnable> entry = objectiterator.next();
if (entry.getLongValue() <= this.tickCount) {
try {
entry.getKey().run();
} catch (Exception exception) {
this.fail(exception);
}
objectiterator.remove();
}
}
if (this.tickCount > (long)this.timeoutTicks) {
if (this.sequences.isEmpty()) {
this.fail(new GameTestTimeoutException("Didn't succeed or fail within " + this.testFunction.maxTicks() + " ticks"));
} else {
this.sequences.forEach(p_177478_ -> p_177478_.tickAndFailIfNotComplete(this.tickCount));
if (this.error == null) {
this.fail(new GameTestTimeoutException("No sequences finished"));
}
}
} else {
this.sequences.forEach(p_177476_ -> p_177476_.tickAndContinue(this.tickCount));
}
}
}
private void startTest() {
if (!this.started) {
this.started = true;
try {
this.testFunction.run(new GameTestHelper(this));
} catch (Exception exception) {
this.fail(exception);
}
}
}
public void setRunAtTickTime(long p_177473_, Runnable p_177474_) {
this.runAtTickTimeMap.put(p_177474_, p_177473_);
}
public String getTestName() {
return this.testFunction.testName();
}
@Nullable
public BlockPos getStructureBlockPos() {
return this.structureBlockPos;
}
public BlockPos getTestOrigin() {
return StructureUtils.getStructureOrigin(this.structureBlockEntity);
}
public AABB getStructureBounds() {
StructureBlockEntity structureblockentity = this.getStructureBlockEntity();
return StructureUtils.getStructureBounds(structureblockentity);
}
public StructureBlockEntity getStructureBlockEntity() {
if (this.structureBlockEntity == null) {
if (this.structureBlockPos == null) {
throw new IllegalStateException("Could not find a structureBlockEntity for this GameTestInfo");
}
this.structureBlockEntity = (StructureBlockEntity)this.level.getBlockEntity(this.structureBlockPos);
if (this.structureBlockEntity == null) {
throw new IllegalStateException("Could not find a structureBlockEntity at the given coordinate " + this.structureBlockPos);
}
}
return this.structureBlockEntity;
}
public ServerLevel getLevel() {
return this.level;
}
public boolean hasSucceeded() {
return this.done && this.error == null;
}
public boolean hasFailed() {
return this.error != null;
}
public boolean hasStarted() {
return this.started;
}
public boolean isDone() {
return this.done;
}
public long getRunTime() {
return this.timer.elapsed(TimeUnit.MILLISECONDS);
}
private void finish() {
if (!this.done) {
this.done = true;
if (this.timer.isRunning()) {
this.timer.stop();
}
}
}
public void succeed() {
if (this.error == null) {
this.finish();
AABB aabb = this.getStructureBounds();
List<Entity> list = this.getLevel().getEntitiesOfClass(Entity.class, aabb.inflate(1.0), p_308532_ -> !(p_308532_ instanceof Player));
list.forEach(p_308534_ -> p_308534_.remove(Entity.RemovalReason.DISCARDED));
}
}
public void fail(Throwable p_127623_) {
this.error = p_127623_;
this.finish();
}
@Nullable
public Throwable getError() {
return this.error;
}
@Override
public String toString() {
return this.getTestName();
}
public void addListener(GameTestListener p_127625_) {
this.listeners.add(p_127625_);
}
public GameTestInfo prepareTestStructure() {
BlockPos blockpos = this.getOrCalculateNorthwestCorner();
this.structureBlockEntity = StructureUtils.prepareTestStructure(this, blockpos, this.getRotation(), this.level);
this.structureBlockPos = this.structureBlockEntity.getBlockPos();
StructureUtils.addCommandBlockAndButtonToStartTest(this.structureBlockPos, new BlockPos(1, 0, -1), this.getRotation(), this.level);
StructureUtils.encaseStructure(this.getStructureBounds(), this.level, !this.testFunction.skyAccess());
this.listeners.forEach(p_127630_ -> p_127630_.testStructureLoaded(this));
return this;
}
long getTick() {
return this.tickCount;
}
GameTestSequence createSequence() {
GameTestSequence gametestsequence = new GameTestSequence(this);
this.sequences.add(gametestsequence);
return gametestsequence;
}
public boolean isRequired() {
return this.testFunction.required();
}
public boolean isOptional() {
return !this.testFunction.required();
}
public String getStructureName() {
return this.testFunction.structureName();
}
public Rotation getRotation() {
return this.rotation;
}
public TestFunction getTestFunction() {
return this.testFunction;
}
public int getTimeoutTicks() {
return this.timeoutTicks;
}
public boolean isFlaky() {
return this.testFunction.isFlaky();
}
public int maxAttempts() {
return this.testFunction.maxAttempts();
}
public int requiredSuccesses() {
return this.testFunction.requiredSuccesses();
}
public RetryOptions retryOptions() {
return this.retryOptions;
}
public Stream<GameTestListener> getListeners() {
return this.listeners.stream();
}
public GameTestInfo copyReset() {
GameTestInfo gametestinfo = new GameTestInfo(this.testFunction, this.rotation, this.level, this.retryOptions());
if (this.northWestCorner != null) {
gametestinfo.setNorthWestCorner(this.northWestCorner);
}
if (this.structureBlockPos != null) {
gametestinfo.setStructureBlockPos(this.structureBlockPos);
}
return gametestinfo;
}
public BlockPos getOrCalculateNorthwestCorner() {
if (this.northWestCorner == null) {
BoundingBox boundingbox = StructureUtils.getStructureBoundingBox(this.getStructureBlockEntity());
this.northWestCorner = new BlockPos(boundingbox.minX(), boundingbox.minY(), boundingbox.minZ());
}
return this.northWestCorner;
}
public void setNorthWestCorner(BlockPos p_328918_) {
this.northWestCorner = p_328918_;
}
} |