From c9925b0b6c0aead20ed0766b58e5a5d0ba3962b0 Mon Sep 17 00:00:00 2001 From: James Seibel Date: Sat, 7 Feb 2026 11:00:51 -0600 Subject: [PATCH] full data point ID map regions --- .../dataObjects/fullData/FullDataPointIdMap.java | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/core/src/main/java/com/seibel/distanthorizons/core/dataObjects/fullData/FullDataPointIdMap.java b/core/src/main/java/com/seibel/distanthorizons/core/dataObjects/fullData/FullDataPointIdMap.java index 3acbf033c..906bc6c65 100644 --- a/core/src/main/java/com/seibel/distanthorizons/core/dataObjects/fullData/FullDataPointIdMap.java +++ b/core/src/main/java/com/seibel/distanthorizons/core/dataObjects/fullData/FullDataPointIdMap.java @@ -80,14 +80,18 @@ public class FullDataPointIdMap //=============// // constructor // //=============// + //region public FullDataPointIdMap(long pos) { this.pos = pos; } + //endregion + //=========// // getters // //=========// + //region /** @see FullDataPointIdMap#getEntry(int) */ public IBiomeWrapper getBiomeWrapper(int id) throws IndexOutOfBoundsException { return this.getEntry(id).biome; } @@ -118,11 +122,14 @@ public class FullDataPointIdMap public long getPos() { return this.pos; } + //endregion + //=========// // setters // //=========// + //region /** * If an entry with the given values already exists nothing will @@ -220,11 +227,14 @@ public class FullDataPointIdMap this.cachedHashCode = 0; } + //endregion + //=============// // serializing // //=============// + //region /** Serializes all contained entries into the given stream, formatted in UTF */ public void serialize(DhDataOutputStream outputStream) throws IOException @@ -387,11 +397,14 @@ public class FullDataPointIdMap } } + //endregion + //===========// // overrides // //===========// + //region @Override public boolean equals(Object other) @@ -427,6 +440,8 @@ public class FullDataPointIdMap this.cachedHashCode = result; } + //endregion + }