2025-11-24 22:52:51 +03:00

100 lines
3.3 KiB
Java

/*
* Decompiled with CFR 0.152.
*
* Could not load the following classes:
* com.mojang.logging.LogUtils
* org.jspecify.annotations.Nullable
* org.slf4j.Logger
*/
package net.minecraft.client.renderer.texture;
import com.mojang.blaze3d.platform.NativeImage;
import com.mojang.blaze3d.systems.GpuDevice;
import com.mojang.blaze3d.systems.RenderSystem;
import com.mojang.blaze3d.textures.FilterMode;
import com.mojang.blaze3d.textures.TextureFormat;
import com.mojang.logging.LogUtils;
import java.io.IOException;
import java.nio.file.Path;
import java.util.function.Supplier;
import net.minecraft.client.renderer.texture.AbstractTexture;
import net.minecraft.client.renderer.texture.Dumpable;
import net.minecraft.resources.Identifier;
import org.jspecify.annotations.Nullable;
import org.slf4j.Logger;
public class DynamicTexture
extends AbstractTexture
implements Dumpable {
private static final Logger LOGGER = LogUtils.getLogger();
private @Nullable NativeImage pixels;
public DynamicTexture(Supplier<String> label, NativeImage image) {
this.pixels = image;
this.createTexture(label);
this.upload();
}
public DynamicTexture(String label, int width, int height, boolean zero) {
this.pixels = new NativeImage(width, height, zero);
this.createTexture(label);
}
public DynamicTexture(Supplier<String> label, int width, int height, boolean zero) {
this.pixels = new NativeImage(width, height, zero);
this.createTexture(label);
}
private void createTexture(Supplier<String> label) {
GpuDevice device = RenderSystem.getDevice();
this.texture = device.createTexture(label, 5, TextureFormat.RGBA8, this.pixels.getWidth(), this.pixels.getHeight(), 1, 1);
this.sampler = RenderSystem.getSamplerCache().getRepeat(FilterMode.NEAREST);
this.textureView = device.createTextureView(this.texture);
}
private void createTexture(String label) {
GpuDevice device = RenderSystem.getDevice();
this.texture = device.createTexture(label, 5, TextureFormat.RGBA8, this.pixels.getWidth(), this.pixels.getHeight(), 1, 1);
this.sampler = RenderSystem.getSamplerCache().getRepeat(FilterMode.NEAREST);
this.textureView = device.createTextureView(this.texture);
}
public void upload() {
if (this.pixels != null && this.texture != null) {
RenderSystem.getDevice().createCommandEncoder().writeToTexture(this.texture, this.pixels);
} else {
LOGGER.warn("Trying to upload disposed texture {}", (Object)this.getTexture().getLabel());
}
}
public @Nullable NativeImage getPixels() {
return this.pixels;
}
public void setPixels(NativeImage pixels) {
if (this.pixels != null) {
this.pixels.close();
}
this.pixels = pixels;
}
@Override
public void close() {
if (this.pixels != null) {
this.pixels.close();
this.pixels = null;
}
super.close();
}
@Override
public void dumpContents(Identifier selfId, Path dir) throws IOException {
if (this.pixels != null) {
String outputId = selfId.toDebugFileName() + ".png";
Path path = dir.resolve(outputId);
this.pixels.writeToFile(path);
}
}
}