clientstuff

This commit is contained in:
2025-11-03 15:47:16 +01:00
parent 503b04656d
commit a90cfde309
1655 changed files with 940682 additions and 604 deletions

View File

@@ -0,0 +1,132 @@
<!DOCTYPE html>
<!--
JourneyMap Mod <journeymap.info> for Minecraft
Copyright (c) 2011-2018 Techbrew Interactive, LLC <techbrew.net>. All Rights Reserved.
-->
<html>
<head>
<meta charset="utf-8">
<title>JourneyMap Color Palette</title>
<meta name="author" content="journeymap.info">
<style>
html, body { height: 100% }
body{font-family: Helvetica,Arial,sans-serif; font-size:11px}
#header {text-align: center; border: 1px solid green; background-color: #efefef; padding-bottom: 10px;}
#description {margin:10px; font-family: monospace; white-space: pre;}
#generated {font-style: italic;}
#toc{display: flex; flex-wrap: wrap; justify-content: center; }
#toc h2 {display: flex; margin:10px}
a.tocArrow {text-decoration: none; margin-left:10px; width:10px; padding:2px; background-color: #cccccc}
.mod{display: flex; flex-flow: row wrap; }
.mod h2 {flex: 1 100%;}
.entry{flex: 1;padding:8px; border:1px solid transparent;}
.entry:hover{border:1px solid black;}
.blockInfo{font-size:10px; padding-bottom:4px}
</style>
</head>
<body>
<div id="header">
<h1 id="title">JourneyMap Color Palette</h1>
<div id="overview">
<div id="generated"></div>
</div>
</div>
<div id="description">Put this file in the same directory as colorpalette.json to view the color palette.</div>
<div id="contents">
<h2><span id="colorCount"></span> Basic Colors</h2>
<h2>Resource Packs:</h2>
<div id="resourcePacks"></div>
<hr/>
<h2>Mods:</h2>
<div id="modNames"></div>
<div id="toc"></div>
<hr/>
<div id="blockColors"></div>
</div>
<script src="colorpalette.json"></script>
<script language="JavaScript">
function getContrastYIQ(hexcolor){
hexcolor = hexcolor.replace("#","");
var r = parseInt(hexcolor.substr(0,2),16);
var g = parseInt(hexcolor.substr(2,2),16);
var b = parseInt(hexcolor.substr(4,2),16);
var yiq = ((r*299)+(g*587)+(b*114))/1000;
return (yiq >= 128) ? '#000000' : '#dddddd';
}
if(typeof(colorpalette)=='undefined') {
document.getElementById("overview").innerHTML = "";
document.getElementById("contents").innerHTML = "";
} else {
document.getElementById("description").innerHTML = colorpalette.description.join("<br/>");
document.getElementById("resourcePacks").innerHTML = colorpalette.resourcePacks;
document.getElementById("modNames").innerHTML = colorpalette.modNames;
document.getElementById("generated").innerHTML = colorpalette.generated;
var tocEl = document.getElementById("toc");
var tableEl = document.getElementById("blockColors");
var count = 0;
var table = colorpalette.table;
for (var mod in table) {
var modEl = document.createElement("div");
modEl.className = "mod";
modEl.innerHTML = "<h2 id='" + mod + "'>" + mod + "<a class='tocArrow' href='#toc'>&uarr;</a></h2>";
tableEl.appendChild(modEl);
var linkEl = document.createElement("h2");
linkEl.innerHTML = "<a href='#" + mod + "'>" + mod + "</a>";
tocEl.appendChild(linkEl);
for (var block in table[mod]) {
for (var state in table[mod][block]) {
var entryEl = document.createElement("span");
entryEl.className='entry';
modEl.appendChild(entryEl);
var list = table[mod][block][state];
var blockStateColor = {
"color": list[0],
"alpha": list[1] || 1
}
var alphaInfo = (blockStateColor.alpha && blockStateColor.alpha<1) ? (" Alpha: " + blockStateColor.alpha) : "";
var wrapState = "[" + (state.split(",").join(",&#8203;")) + "]";
var labelColor = getContrastYIQ(blockStateColor.color);
entryEl.innerHTML = [mod + ":", block, wrapState, alphaInfo].join("&#8203;");
entryEl.style = 'color: ' + labelColor + '; background-color:' + blockStateColor.color;
entryEl.title = blockStateColor.color;
count++;
}
}
}
document.getElementById("colorCount").innerHTML = count;
}
</script>
</body>
</html>

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,84 @@
// JourneyMap configuration file. Modify at your own risk!
// To use in all worlds, place here: journeymap\config\5.2\
// For more information, go to: http://journeymap.info/help/wiki/Options_Manager
{
"logLevel": "INFO",
"autoMapPoll": 2000,
"cacheAnimalsData": 3100,
"cacheMobsData": 3000,
"cachePlayerData": 1000,
"cachePlayersData": 2000,
"cacheVillagersData": 2200,
"announceMod": true,
"checkUpdates": true,
"recordCacheStats": false,
"browserPoll": 2000,
"themeName": "Victorian",
"caveIgnoreGlass": true,
"mapBathymetry": false,
"mapTransparency": true,
"mapCaveLighting": true,
"mapAntialiasing": true,
"mapPlantShadows": false,
"mapPlants": false,
"mapCrops": true,
"mapSurfaceAboveCaves": true,
"renderDistanceCaveMin": 3,
"renderDistanceCaveMax": 3,
"renderDistanceSurfaceMin": 4,
"renderDistanceSurfaceMax": 7,
"renderDelay": 2,
"revealShape": "Circle",
"alwaysMapCaves": false,
"alwaysMapSurface": false,
"tileHighDisplayQuality": true,
"maxAnimalsData": 32,
"maxMobsData": 32,
"maxPlayersData": 32,
"maxVillagersData": 32,
"hideSneakingEntities": true,
"radarLateralDistance": 64,
"radarVerticalDistance": 16,
"tileRenderType": 1,
"gridSpecs": {
"day": {
"style": "Squares",
"red": 0.5,
"green": 0.5,
"blue": 0.5,
"alpha": 0.5,
"colorX": -1,
"colorY": -1
},
"night": {
"style": "Squares",
"red": 0.5,
"green": 0.5,
"blue": 1.0,
"alpha": 0.3,
"colorX": -1,
"colorY": -1
},
"underground": {
"style": "Squares",
"red": 0.5,
"green": 0.5,
"blue": 0.5,
"alpha": 0.3,
"colorX": -1,
"colorY": -1
}
},
"mappingEnabled": true,
"renderOverlayEventTypeName": "ALL",
"renderOverlayPreEvent": true,
"optionsManagerViewed": "5.2.8",
"splashViewed": "5.2.8",
"disabled": false,
"configVersion": {
"major": 5,
"minor": 2,
"micro": 8,
"patch": ""
}
}

View File

@@ -8,20 +8,26 @@
"textureSmall": true,
"showWaypointLabels": true,
"locationFormatVerbose": true,
"locationFormat": "xzy",
"showMobHeading": false,
"locationFormat": "xzyv",
"showMobHeading": true,
"showPlayerHeading": true,
"showMobs": true,
"showAnimals": true,
"showVillagers": true,
"showVillagers": false,
"showPets": true,
"showPlayers": true,
"showPlayers": false,
"showWaypoints": true,
"showSelf": true,
"showGrid": false,
"showGrid": true,
"entityIconSetName": "2D",
"entityScale": 135,
"entityScale": 100,
"entityBlur": true,
"zoomLevel": 0,
"disabled": false
"disabled": false,
"configVersion": {
"major": 5,
"minor": 2,
"micro": 8,
"patch": ""
}
}

View File

@@ -3,28 +3,28 @@
// For more information, go to: http://journeymap.info/help/wiki/Options_Manager
{
"enabled": true,
"shape": "Square",
"shape": "Circle",
"position": "TopRight",
"showFps": false,
"showBiome": true,
"showLocation": true,
"sizePercent": 25,
"sizePercent": 30,
"frameAlpha": 100,
"terrainAlpha": 100,
"orientation": "North",
"orientation": "PlayerHeading",
"compassFontScale": 1,
"showCompass": true,
"showReticle": false,
"showReticle": true,
"reticleOrientation": "Compass",
"preferredMapType": "day",
"preferredMapType": "night",
"active": true,
"showCaves": true,
"fontScale": 1,
"textureSmall": true,
"showWaypointLabels": true,
"locationFormatVerbose": true,
"locationFormat": "xzy",
"showMobHeading": false,
"locationFormat": "xzyv",
"showMobHeading": true,
"showPlayerHeading": true,
"showMobs": true,
"showAnimals": true,
@@ -33,16 +33,16 @@
"showPlayers": true,
"showWaypoints": true,
"showSelf": true,
"showGrid": false,
"entityIconSetName": "2D",
"entityScale": 135,
"showGrid": true,
"entityIconSetName": "3D",
"entityScale": 100,
"entityBlur": true,
"zoomLevel": 0,
"disabled": false,
"configVersion": {
"major": 5,
"minor": 2,
"micro": 9,
"micro": 8,
"patch": ""
}
}

View File

@@ -0,0 +1,48 @@
// JourneyMap configuration file. Modify at your own risk!
// To use in all worlds, place here: journeymap\config\5.2\
// For more information, go to: http://journeymap.info/help/wiki/Options_Manager
{
"enabled": true,
"shape": "Rectangle",
"position": "TopCenter",
"showFps": false,
"showBiome": true,
"showLocation": true,
"sizePercent": 30,
"frameAlpha": 60,
"terrainAlpha": 60,
"orientation": "PlayerHeading",
"compassFontScale": 1,
"showCompass": true,
"showReticle": true,
"reticleOrientation": "Compass",
"preferredMapType": "day",
"active": false,
"showCaves": true,
"fontScale": 1,
"textureSmall": true,
"showWaypointLabels": true,
"locationFormatVerbose": true,
"locationFormat": "xzyv",
"showMobHeading": true,
"showPlayerHeading": true,
"showMobs": true,
"showAnimals": true,
"showVillagers": true,
"showPets": true,
"showPlayers": true,
"showWaypoints": true,
"showSelf": true,
"showGrid": true,
"entityIconSetName": "3D",
"entityScale": 100,
"entityBlur": true,
"zoomLevel": 0,
"disabled": false,
"configVersion": {
"major": 5,
"minor": 2,
"micro": 8,
"patch": ""
}
}

View File

@@ -0,0 +1,25 @@
// JourneyMap configuration file. Modify at your own risk!
// To use in all worlds, place here: journeymap\config\5.2\
// For more information, go to: http://journeymap.info/help/wiki/Options_Manager
{
"managerEnabled": true,
"beaconEnabled": true,
"showTexture": true,
"showStaticBeam": false,
"showRotatingBeam": false,
"showName": true,
"showDistance": true,
"autoHideLabel": true,
"boldLabel": false,
"fontScale": 2,
"textureSmall": false,
"maxDistance": 0,
"createDeathpoints": false,
"disabled": false,
"configVersion": {
"major": 5,
"minor": 2,
"micro": 8,
"patch": ""
}
}

View File

@@ -0,0 +1,27 @@
// JourneyMap configuration file. Modify at your own risk!
// To use in all worlds, place here: journeymap\config\5.2\
// For more information, go to: http://journeymap.info/help/wiki/Options_Manager
{
"enabled": false,
"port": 8080,
"preferredMapType": "day",
"showMobs": true,
"showAnimals": true,
"showVillagers": true,
"showPets": true,
"showPlayers": true,
"showWaypoints": true,
"showSelf": true,
"showGrid": true,
"entityIconSetName": "2D",
"entityScale": 100,
"entityBlur": true,
"zoomLevel": 0,
"disabled": false,
"configVersion": {
"major": 5,
"minor": 2,
"micro": 8,
"patch": ""
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 28 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 38 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 34 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 43 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 43 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 39 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 28 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 38 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 95 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 36 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 29 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 27 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 109 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 42 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 31 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 30 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 29 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.7 KiB

Some files were not shown because too many files have changed in this diff Show More