mirror of
https://github.com/Azgaar/Fantasy-Map-Generator.git
synced 2025-12-16 17:31:24 +01:00
* refactor: submap - start * refactor: submap - continue * Merge branch 'master' of https://github.com/Azgaar/Fantasy-Map-Generator into submap-refactoring * refactor: submap - relocate burgs * refactor: submap - restore routes * refactor: submap - restore lake names * refactor: submap - UI update * refactor: submap - restore river and biome data * refactor: submap - simplify options * refactor: submap - restore rivers * refactor: submap - recalculateMapSize * refactor: submap - add middle points * refactor: submap - don't add middle points, unified findPath fn * chore: update version * feat: submap - relocate out of map regiments * feat: submap - fix route gen * feat: submap - allow custom number of cells * feat: submap - add checkbox submapRescaleBurgStyles * feat: submap - update version hash * chore: supporters update --------- Co-authored-by: Azgaar <azgaar.fmg@yandex.com>
95 lines
3.1 KiB
JavaScript
95 lines
3.1 KiB
JavaScript
"use strict";
|
|
|
|
function openSubmapTool() {
|
|
resetInputs();
|
|
|
|
$("#submapTool").dialog({
|
|
title: "Create a submap",
|
|
resizable: false,
|
|
width: "32em",
|
|
position: {my: "center", at: "center", of: "svg"},
|
|
buttons: {
|
|
Submap: function () {
|
|
closeDialogs();
|
|
generateSubmap();
|
|
},
|
|
Cancel: function () {
|
|
$(this).dialog("close");
|
|
}
|
|
}
|
|
});
|
|
|
|
if (modules.openSubmapTool) return;
|
|
modules.openSubmapTool = true;
|
|
|
|
function resetInputs() {
|
|
updateCellsNumber(byId("pointsInput").value);
|
|
byId("submapPointsInput").oninput = e => updateCellsNumber(e.target.value);
|
|
|
|
function updateCellsNumber(value) {
|
|
byId("submapPointsInput").value = value;
|
|
const cells = cellsDensityMap[value];
|
|
byId("submapPointsInput").dataset.cells = cells;
|
|
const output = byId("submapPointsFormatted");
|
|
output.value = cells / 1000 + "K";
|
|
output.style.color = getCellsDensityColor(cells);
|
|
}
|
|
}
|
|
|
|
function generateSubmap() {
|
|
INFO && console.group("generateSubmap");
|
|
|
|
const [x0, y0] = [Math.abs(viewX / scale), Math.abs(viewY / scale)]; // top-left corner
|
|
recalculateMapSize(x0, y0);
|
|
|
|
const submapPointsValue = byId("submapPointsInput").value;
|
|
const globalPointsValue = byId("pointsInput").value;
|
|
if (submapPointsValue !== globalPointsValue) changeCellsDensity(submapPointsValue);
|
|
|
|
const projection = (x, y) => [(x - x0) * scale, (y - y0) * scale];
|
|
const inverse = (x, y) => [x / scale + x0, y / scale + y0];
|
|
|
|
resetZoom(0);
|
|
undraw();
|
|
Resample.process({projection, inverse, scale});
|
|
|
|
if (byId("submapRescaleBurgStyles").checked) rescaleBurgStyles(scale);
|
|
drawLayers();
|
|
|
|
INFO && console.groupEnd("generateSubmap");
|
|
}
|
|
|
|
function recalculateMapSize(x0, y0) {
|
|
const mapSize = +byId("mapSizeOutput").value;
|
|
byId("mapSizeOutput").value = byId("mapSizeInput").value = rn(mapSize / scale, 2);
|
|
|
|
const latT = mapCoordinates.latT / scale;
|
|
const latN = getLatitude(y0);
|
|
const latShift = (90 - latN) / (180 - latT);
|
|
byId("latitudeOutput").value = byId("latitudeInput").value = rn(latShift * 100, 2);
|
|
|
|
const lotT = mapCoordinates.lonT / scale;
|
|
const lonE = getLongitude(x0 + graphWidth / scale);
|
|
const lonShift = (180 - lonE) / (360 - lotT);
|
|
byId("longitudeOutput").value = byId("longitudeInput").value = rn(lonShift * 100, 2);
|
|
|
|
distanceScale = distanceScaleInput.value = rn(distanceScale / scale, 2);
|
|
populationRate = populationRateInput.value = rn(populationRate / scale, 2);
|
|
}
|
|
|
|
function rescaleBurgStyles(scale) {
|
|
const burgIcons = [...byId("burgIcons").querySelectorAll("g")];
|
|
for (const group of burgIcons) {
|
|
const newRadius = rn(minmax(group.getAttribute("size") * scale, 0.2, 10), 2);
|
|
changeRadius(newRadius, group.id);
|
|
const strokeWidth = group.attributes["stroke-width"];
|
|
strokeWidth.value = strokeWidth.value * scale;
|
|
}
|
|
|
|
const burgLabels = [...byId("burgLabels").querySelectorAll("g")];
|
|
for (const group of burgLabels) {
|
|
const size = +group.dataset.size;
|
|
group.dataset.size = Math.max(rn((size + size / scale) / 2, 2), 1) * scale;
|
|
}
|
|
}
|
|
}
|