2023-07-23 02:13:48 +02:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
|
|
From: Astralchroma <astralchroma@proton.me>
|
|
|
|
Date: Thu, 27 Oct 2022 22:19:31 +0100
|
|
|
|
Subject: [PATCH] Configurable Region Compression Format
|
|
|
|
|
|
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/world/level/chunk/storage/RegionFile.java b/src/main/java/net/minecraft/world/level/chunk/storage/RegionFile.java
|
2024-01-24 22:13:08 +01:00
|
|
|
index 169e375c814ff814d15101d09dccc67783f50465..8d20e265872e1f8200de186a69a29f498ceb8588 100644
|
2023-07-23 02:13:48 +02:00
|
|
|
--- a/src/main/java/net/minecraft/world/level/chunk/storage/RegionFile.java
|
|
|
|
+++ b/src/main/java/net/minecraft/world/level/chunk/storage/RegionFile.java
|
2024-01-24 22:13:08 +01:00
|
|
|
@@ -46,7 +46,7 @@ public class RegionFile implements AutoCloseable {
|
|
|
|
protected final RegionBitmap usedSectors;
|
2023-07-23 02:13:48 +02:00
|
|
|
|
|
|
|
public RegionFile(Path file, Path directory, boolean dsync) throws IOException {
|
|
|
|
- this(file, directory, RegionFileVersion.VERSION_DEFLATE, dsync);
|
|
|
|
+ this(file, directory, RegionFileVersion.getCompressionFormat(), dsync); // Paper - Configurable region compression format
|
|
|
|
}
|
|
|
|
|
2024-01-22 21:04:08 +01:00
|
|
|
public RegionFile(Path file, Path directory, RegionFileVersion outputChunkStreamVersion, boolean dsync) throws IOException {
|
2023-07-23 02:13:48 +02:00
|
|
|
diff --git a/src/main/java/net/minecraft/world/level/chunk/storage/RegionFileVersion.java b/src/main/java/net/minecraft/world/level/chunk/storage/RegionFileVersion.java
|
2024-01-22 21:04:08 +01:00
|
|
|
index 5fa7a842431dd64c7a0dc5d8e940563a2aeef463..374ff77f15e339500714580673ae8077482ba247 100644
|
2023-07-23 02:13:48 +02:00
|
|
|
--- a/src/main/java/net/minecraft/world/level/chunk/storage/RegionFileVersion.java
|
|
|
|
+++ b/src/main/java/net/minecraft/world/level/chunk/storage/RegionFileVersion.java
|
|
|
|
@@ -30,6 +30,17 @@ public class RegionFileVersion {
|
|
|
|
}, (stream) -> {
|
|
|
|
return stream;
|
|
|
|
}));
|
|
|
|
+
|
2024-01-14 16:31:39 +01:00
|
|
|
+ // Paper start - Configurable region compression format
|
2023-07-23 02:13:48 +02:00
|
|
|
+ public static RegionFileVersion getCompressionFormat() {
|
|
|
|
+ return switch (io.papermc.paper.configuration.GlobalConfiguration.get().unsupportedSettings.compressionFormat) {
|
|
|
|
+ case GZIP -> VERSION_GZIP;
|
|
|
|
+ case ZLIB -> VERSION_DEFLATE;
|
|
|
|
+ case NONE -> VERSION_NONE;
|
|
|
|
+ };
|
|
|
|
+ }
|
2024-01-14 16:31:39 +01:00
|
|
|
+ // Paper end - Configurable region compression format
|
2023-07-23 02:13:48 +02:00
|
|
|
+
|
|
|
|
private final int id;
|
|
|
|
private final RegionFileVersion.StreamWrapper<InputStream> inputWrapper;
|
|
|
|
private final RegionFileVersion.StreamWrapper<OutputStream> outputWrapper;
|