Mirror von
https://github.com/IntellectualSites/FastAsyncWorldEdit.git
synchronisiert 2024-11-05 02:50:05 +01:00
Properly support extended world heights (y > 255) in tripleBlockCoord (#1805)
Dieser Commit ist enthalten in:
Ursprung
5b72f396bb
Commit
d2b4154cc0
@ -167,9 +167,20 @@ public class MathMan {
|
||||
return (((triple >> 40) & 0xffffff) << 38) >> 38;
|
||||
}
|
||||
|
||||
/**
|
||||
* Pack a chunk-block coordinate into an int. Supports x and z 0 -> 15 and y = -2048 -> 2047
|
||||
*
|
||||
* @param x x coordinate
|
||||
* @param y y coordinate
|
||||
* @param z z coordinate
|
||||
* @return int packed by x, y and z coordinates
|
||||
*/
|
||||
public static int tripleBlockCoord(int x, int y, int z) {
|
||||
// account for the fact y can be negative now. Assume it won't be less than -256
|
||||
y += 256;
|
||||
// We have 12 bits available to Y value, so keep it 0 -> 4095
|
||||
if (y < -2048 || y > 2047) {
|
||||
throw new UnsupportedOperationException("TripleBlockCoord Y value cannot be outside range -2048 <= y <= 2047");
|
||||
}
|
||||
y += 2048;
|
||||
return ((x & 15) << 16 | (z & 15) << 12 | y);
|
||||
}
|
||||
|
||||
@ -182,7 +193,7 @@ public class MathMan {
|
||||
}
|
||||
|
||||
public static int untripleBlockCoordY(int triple) {
|
||||
return (triple & 0x1ff) - 256;
|
||||
return (triple & 0xfff) - 2048;
|
||||
}
|
||||
|
||||
public static int untripleBlockCoordZ(int triple) {
|
||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren