56 lines
		
	
	
	
		
			1.7 KiB
		
	
	
	
		
			Java
		
	
	
	
	
	
			
		
		
	
	
			56 lines
		
	
	
	
		
			1.7 KiB
		
	
	
	
		
			Java
		
	
	
	
	
	
| package net.minecraft.util.profiling.jfr.event;
 | |
| 
 | |
| import jdk.jfr.Category;
 | |
| import jdk.jfr.Enabled;
 | |
| import jdk.jfr.Event;
 | |
| import jdk.jfr.EventType;
 | |
| import jdk.jfr.Label;
 | |
| import jdk.jfr.Name;
 | |
| import jdk.jfr.StackTrace;
 | |
| import net.minecraft.core.Holder;
 | |
| import net.minecraft.obfuscate.DontObfuscate;
 | |
| import net.minecraft.resources.ResourceKey;
 | |
| import net.minecraft.world.level.ChunkPos;
 | |
| import net.minecraft.world.level.Level;
 | |
| import net.minecraft.world.level.levelgen.structure.Structure;
 | |
| 
 | |
| @Name("minecraft.StructureGeneration")
 | |
| @Label("Structure Generation")
 | |
| @Category({"Minecraft", "World Generation"})
 | |
| @StackTrace(false)
 | |
| @Enabled(false)
 | |
| @DontObfuscate
 | |
| public class StructureGenerationEvent extends Event {
 | |
| 	public static final String EVENT_NAME = "minecraft.StructureGeneration";
 | |
| 	public static final EventType TYPE = EventType.getEventType(StructureGenerationEvent.class);
 | |
| 	@Name("chunkPosX")
 | |
| 	@Label("Chunk X Position")
 | |
| 	public final int chunkPosX;
 | |
| 	@Name("chunkPosZ")
 | |
| 	@Label("Chunk Z Position")
 | |
| 	public final int chunkPosZ;
 | |
| 	@Name("structure")
 | |
| 	@Label("Structure")
 | |
| 	public final String structure;
 | |
| 	@Name("level")
 | |
| 	@Label("Level")
 | |
| 	public final String level;
 | |
| 	@Name("success")
 | |
| 	@Label("Success")
 | |
| 	public boolean success;
 | |
| 
 | |
| 	public StructureGenerationEvent(ChunkPos chunkPos, Holder<Structure> holder, ResourceKey<Level> resourceKey) {
 | |
| 		this.chunkPosX = chunkPos.x;
 | |
| 		this.chunkPosZ = chunkPos.z;
 | |
| 		this.structure = holder.getRegisteredName();
 | |
| 		this.level = resourceKey.location().toString();
 | |
| 	}
 | |
| 
 | |
| 	public interface Fields {
 | |
| 		String CHUNK_POS_X = "chunkPosX";
 | |
| 		String CHUNK_POS_Z = "chunkPosZ";
 | |
| 		String STRUCTURE = "structure";
 | |
| 		String LEVEL = "level";
 | |
| 		String SUCCESS = "success";
 | |
| 	}
 | |
| }
 |