Add nwnd world 1
@ -4,5 +4,9 @@ title: Minecraft World Maps
|
||||
|
||||
I generally archive the maps of notable Minecraft servers I play on. The following are snapshots of various (usually private) Minecraft servers I've played on:
|
||||
|
||||
- [Rsninja MC](/maps/minecraft/rsninja-2020) *(2020-2021)*
|
||||
- [SDF](/maps/minecraft/mc-sdf-org)
|
||||
- Nerds With no Direction
|
||||
- [2024: World 1](/maps/minecraft/nwnd-2024-world1) *(vanilla)*
|
||||
- Super Dimension Fortress
|
||||
- [Overworld](/maps/minecraft/mc-sdf-org)
|
||||
- Rsninja MC
|
||||
- [Overworld](/maps/minecraft/rsninja-2020) *(2020-2021)*
|
8
content/maps/minecraft/nwnd-2024-world1.md
Normal file
@ -0,0 +1,8 @@
|
||||
---
|
||||
title: "Minecraft Map Archive: NWnD 2024 World 1"
|
||||
template: map.html
|
||||
extra:
|
||||
bg_color: black
|
||||
---
|
||||
|
||||
<script src="/map-data/minecraft/nwnd-2024-world1/map.js"></script>
|
@ -40,15 +40,9 @@ TILES.forEach(tile => {
|
||||
var image = L.imageOverlay(`/map-data/minecraft/mc-sdf-org/tiles/${tile.image}`, bounds).addTo(map);
|
||||
});
|
||||
|
||||
// Find the top left and bottom right of the map
|
||||
var min_x = Math.min.apply(null, TILES.map(tile => tile.x));
|
||||
var max_x = Math.max.apply(null, TILES.map(tile => tile.x));
|
||||
var min_z = Math.min.apply(null, TILES.map(tile => tile.z));
|
||||
var max_z = Math.max.apply(null, TILES.map(tile => tile.z));
|
||||
|
||||
map.fitBounds([
|
||||
[min_z, min_x],
|
||||
[max_z + TILE_SIZE, max_x + TILE_SIZE]
|
||||
[-1024, -1024],
|
||||
[1024, 1024]
|
||||
]);
|
||||
|
||||
// Add a CSS rule to pixelate the image only when zoomed in
|
||||
|
@ -0,0 +1,27 @@
|
||||
import re
|
||||
import json
|
||||
from pathlib import Path
|
||||
|
||||
TILES_DIR = Path(__file__).parent / "tiles"
|
||||
tiles = list(TILES_DIR.glob("*.png"))
|
||||
|
||||
TILE_PARTS_RE = re.compile(r"([\d\-]+)_([\d\-]+)_x([\d\-]+)_z([\d\-]+).png")
|
||||
|
||||
for tile in tiles:
|
||||
tile_name = tile.name
|
||||
match = TILE_PARTS_RE.match(tile_name)
|
||||
|
||||
if match:
|
||||
chunk_x, chunk_z, x, z = match.groups()
|
||||
|
||||
print(
|
||||
json.dumps(
|
||||
{
|
||||
"chunk_x": int(chunk_x),
|
||||
"chunk_z": int(chunk_z),
|
||||
"x": int(x),
|
||||
"z": int(z),
|
||||
"image": tile_name
|
||||
}
|
||||
) + ","
|
||||
)
|
57
static/map-data/minecraft/nwnd-2024-world1/map.js
Normal file
@ -0,0 +1,57 @@
|
||||
|
||||
const TILE_SIZE = 1024;
|
||||
const TILES = [
|
||||
{ "chunk_x": 0, "chunk_z": 1, "x": -1024, "z": -4096, "image": "0_1_x-1024_z-4096.png" },
|
||||
{ "chunk_x": 0, "chunk_z": 2, "x": -1024, "z": -3072, "image": "0_2_x-1024_z-3072.png" },
|
||||
{ "chunk_x": 0, "chunk_z": 3, "x": -1024, "z": -2048, "image": "0_3_x-1024_z-2048.png" },
|
||||
{ "chunk_x": 0, "chunk_z": 4, "x": -1024, "z": -1024, "image": "0_4_x-1024_z-1024.png" },
|
||||
{ "chunk_x": 0, "chunk_z": 5, "x": -1024, "z": 0, "image": "0_5_x-1024_z0.png" },
|
||||
{ "chunk_x": 1, "chunk_z": 0, "x": 0, "z": -5120, "image": "1_0_x0_z-5120.png" },
|
||||
{ "chunk_x": 1, "chunk_z": 1, "x": 0, "z": -4096, "image": "1_1_x0_z-4096.png" },
|
||||
{ "chunk_x": 1, "chunk_z": 2, "x": 0, "z": -3072, "image": "1_2_x0_z-3072.png" },
|
||||
{ "chunk_x": 1, "chunk_z": 3, "x": 0, "z": -2048, "image": "1_3_x0_z-2048.png" },
|
||||
{ "chunk_x": 1, "chunk_z": 4, "x": 0, "z": -1024, "image": "1_4_x0_z-1024.png" },
|
||||
{ "chunk_x": 1, "chunk_z": 5, "x": 0, "z": 0, "image": "1_5_x0_z0.png" },
|
||||
{ "chunk_x": 1, "chunk_z": 6, "x": 0, "z": 1024, "image": "1_6_x0_z1024.png" },
|
||||
{ "chunk_x": 2, "chunk_z": 0, "x": 1024, "z": -5120, "image": "2_0_x1024_z-5120.png" },
|
||||
{ "chunk_x": 2, "chunk_z": 1, "x": 1024, "z": -4096, "image": "2_1_x1024_z-4096.png" },
|
||||
{ "chunk_x": 2, "chunk_z": 2, "x": 1024, "z": -3072, "image": "2_2_x1024_z-3072.png" },
|
||||
{ "chunk_x": 2, "chunk_z": 3, "x": 1024, "z": -2048, "image": "2_3_x1024_z-2048.png" },
|
||||
{ "chunk_x": 2, "chunk_z": 4, "x": 1024, "z": -1024, "image": "2_4_x1024_z-1024.png" },
|
||||
{ "chunk_x": 2, "chunk_z": 5, "x": 1024, "z": 0, "image": "2_5_x1024_z0.png" },
|
||||
{ "chunk_x": 2, "chunk_z": 6, "x": 1024, "z": 1024, "image": "2_6_x1024_z1024.png" },
|
||||
{ "chunk_x": 3, "chunk_z": 2, "x": 2048, "z": -3072, "image": "3_2_x2048_z-3072.png" },
|
||||
{ "chunk_x": 3, "chunk_z": 3, "x": 2048, "z": -2048, "image": "3_3_x2048_z-2048.png" },
|
||||
{ "chunk_x": 3, "chunk_z": 4, "x": 2048, "z": -1024, "image": "3_4_x2048_z-1024.png" },
|
||||
{ "chunk_x": 3, "chunk_z": 5, "x": 2048, "z": 0, "image": "3_5_x2048_z0.png" },
|
||||
{ "chunk_x": 4, "chunk_z": 4, "x": 3072, "z": -1024, "image": "4_4_x3072_z-1024.png" }
|
||||
]
|
||||
|
||||
// Set up the map
|
||||
var map = L.map('map', {
|
||||
crs: L.CRS.Simple,
|
||||
minZoom: -3,
|
||||
maxZoom: 3,
|
||||
backgroundColor: '#000000',
|
||||
});
|
||||
|
||||
// Add each tile to the map
|
||||
TILES.forEach(tile => {
|
||||
var bounds = [[tile.z * -1, tile.x], [(tile.z + TILE_SIZE) * -1, tile.x + TILE_SIZE]];
|
||||
var image = L.imageOverlay(`/map-data/minecraft/nwnd-2024-world1/tiles/${tile.image}`, bounds).addTo(map);
|
||||
});
|
||||
|
||||
map.fitBounds([
|
||||
[512,1024],
|
||||
[1500, 1024]
|
||||
]);
|
||||
|
||||
// Add a CSS rule to pixelate the image only when zoomed in
|
||||
map.on('zoomend', function (e) {
|
||||
if (map.getZoom() >= 2) {
|
||||
if (document.querySelector('#leaflet-pixelator')) return;
|
||||
document.head.insertAdjacentHTML('beforeend', '<style id="leaflet-pixelator">.leaflet-image-layer { image-rendering: pixelated; }</style>');
|
||||
} else {
|
||||
document.querySelector('#leaflet-pixelator').remove();
|
||||
}
|
||||
});
|
After Width: | Height: | Size: 92 KiB |
After Width: | Height: | Size: 86 KiB |
After Width: | Height: | Size: 359 KiB |
After Width: | Height: | Size: 265 KiB |
After Width: | Height: | Size: 110 KiB |
After Width: | Height: | Size: 341 KiB |
After Width: | Height: | Size: 648 KiB |
After Width: | Height: | Size: 632 KiB |
After Width: | Height: | Size: 827 KiB |
After Width: | Height: | Size: 745 KiB |
BIN
static/map-data/minecraft/nwnd-2024-world1/tiles/1_5_x0_z0.png
Normal file
After Width: | Height: | Size: 405 KiB |
After Width: | Height: | Size: 106 KiB |
After Width: | Height: | Size: 47 KiB |
After Width: | Height: | Size: 542 KiB |
After Width: | Height: | Size: 702 KiB |
After Width: | Height: | Size: 790 KiB |
After Width: | Height: | Size: 776 KiB |
After Width: | Height: | Size: 784 KiB |
After Width: | Height: | Size: 314 KiB |
After Width: | Height: | Size: 242 KiB |
After Width: | Height: | Size: 352 KiB |
After Width: | Height: | Size: 810 KiB |
After Width: | Height: | Size: 204 KiB |
After Width: | Height: | Size: 13 KiB |