"use strict"; // Tectonic Plate Editor // Click plates to select & edit, drag arrows to set velocity/direction let tectonicViewMode = "plates"; // "plates" or "heights" let tectonicPlateColors = []; let tectonicSelectedPlate = -1; function editTectonics() { if (customization) return tip("Please exit the customization mode first", false, "error"); if (!window.tectonicGenerator || !window.tectonicMetadata) { return tip("Tectonic data not available. Generate a map using a Tectonic template first.", false, "error"); } closeDialogs(".stable"); tectonicViewMode = "plates"; tectonicSelectedPlate = -1; const plates = window.tectonicGenerator.getPlates(); tectonicPlateColors = generatePlateColors(plates.length); drawPlateOverlay(); closePlatePopup(); $("#tectonicEditor").dialog({ title: "Tectonic Plate Editor", resizable: false, width: "20em", position: {my: "right top", at: "right-10 top+10", of: "svg"}, close: closeTectonicEditor }); if (modules.editTectonics) return; modules.editTectonics = true; byId("tectonicRegenerate").addEventListener("click", regenerateFromEditor); byId("tectonicToggleOverlay").addEventListener("click", togglePlateOverlay); byId("tectonicApplyMap").addEventListener("click", applyToMap); byId("tectonicClose").addEventListener("click", () => $("#tectonicEditor").dialog("close")); } function generatePlateColors(count) { const colors = []; for (let i = 0; i < count; i++) { const hue = (i * 360 / count + 15) % 360; const sat = 60 + (i % 3) * 15; const lit = 45 + (i % 2) * 15; colors.push(`hsl(${hue}, ${sat}%, ${lit}%)`); } return colors; } function tectonicHeightColor(h) { if (h < 20) { const t = h / 20; return `rgb(${Math.round(30 + t * 40)},${Math.round(60 + t * 80)},${Math.round(120 + t * 100)})`; } const t = (h - 20) / 80; if (t < 0.3) { const s = t / 0.3; return `rgb(${Math.round(80 + s * 60)},${Math.round(160 + s * 40)},${Math.round(60 + s * 20)})`; } if (t < 0.7) { const s = (t - 0.3) / 0.4; return `rgb(${Math.round(140 + s * 60)},${Math.round(200 - s * 80)},${Math.round(80 - s * 40)})`; } const s = (t - 0.7) / 0.3; return `rgb(${Math.round(200 + s * 55)},${Math.round(120 + s * 135)},${Math.round(40 + s * 215)})`; } // ---- Overlay Drawing ---- function drawPlateOverlay() { const plates = window.tectonicGenerator.getPlates(); const plateIds = window.tectonicMetadata.plateIds; const colors = tectonicPlateColors; viewbox.select("#tectonicOverlay").remove(); const overlay = viewbox.insert("g", "#terrs").attr("id", "tectonicOverlay"); // Cell polygons const cellGroup = overlay.append("g").attr("id", "plateCells"); for (let i = 0; i < plateIds.length; i++) { const pid = plateIds[i]; if (pid < 0 || pid >= plates.length) continue; const points = getGridPolygon(i); if (!points) continue; const selected = pid === tectonicSelectedPlate; cellGroup.append("polygon") .attr("points", points) .attr("fill", colors[pid]) .attr("fill-opacity", tectonicSelectedPlate === -1 ? 0.35 : (selected ? 0.55 : 0.15)) .attr("stroke", colors[pid]) .attr("stroke-opacity", 0.4) .attr("stroke-width", 0.2) .attr("data-plate", pid) .on("click", function () { selectPlate(pid); }); } // Velocity arrows (draggable) drawVelocityArrows(overlay, plates, plateIds, colors); } function drawHeightOverlay(heights) { viewbox.select("#tectonicOverlay").remove(); const overlay = viewbox.insert("g", "#terrs").attr("id", "tectonicOverlay"); for (let i = 0; i < heights.length; i++) { const points = getGridPolygon(i); if (!points) continue; const c = tectonicHeightColor(heights[i]); overlay.append("polygon") .attr("points", points) .attr("fill", c) .attr("fill-opacity", 0.85) .attr("stroke", c) .attr("stroke-opacity", 0.5) .attr("stroke-width", 0.1); } } function drawVelocityArrows(overlay, plates, plateIds, colors) { ensureArrowheadMarker(); const arrowGroup = overlay.append("g").attr("id", "velocityArrows"); const arrowScale = 30; for (const plate of plates) { const centroid = computeGridPlateCentroid(plate.id, plateIds); if (!centroid) continue; const [cx, cy] = centroid; const vel = plate.velocity; const dx = vel[0] * arrowScale; const dy = -vel[1] * arrowScale; const mag = Math.sqrt(dx * dx + dy * dy); const tipX = cx + dx; const tipY = cy + dy; // Arrow line arrowGroup.append("line") .attr("class", "velocityLine") .attr("data-plate", plate.id) .attr("x1", cx).attr("y1", cy) .attr("x2", tipX).attr("y2", tipY) .attr("stroke", colors[plate.id]) .attr("stroke-width", mag < 2 ? 1 : 2) .attr("stroke-opacity", 0.9) .attr("stroke-dasharray", mag < 2 ? "2,2" : "none") .attr("marker-end", "url(#tectonicArrowhead)"); // Draggable handle at arrow tip arrowGroup.append("circle") .attr("class", "velocityHandle") .attr("data-plate", plate.id) .attr("cx", tipX).attr("cy", tipY) .attr("r", 5) .attr("fill", colors[plate.id]) .attr("fill-opacity", 0.7) .attr("stroke", "#fff") .attr("stroke-width", 1) .attr("cursor", "grab") .call(d3.drag() .on("start", function () { d3.select(this).attr("cursor", "grabbing"); }) .on("drag", function () { dragVelocityHandle(this, plate, cx, cy, arrowScale); }) .on("end", function () { d3.select(this).attr("cursor", "grab"); }) ); // Plate label arrowGroup.append("text") .attr("x", cx).attr("y", cy - 6) .attr("text-anchor", "middle") .attr("font-size", "8px") .attr("fill", colors[plate.id]) .attr("stroke", "#000") .attr("stroke-width", 0.3) .attr("paint-order", "stroke") .attr("cursor", "pointer") .text(`P${plate.id}`) .on("click", function () { selectPlate(plate.id); }); } } function dragVelocityHandle(handle, plate, cx, cy, arrowScale) { const [mx, my] = d3.mouse(viewbox.node()); // Update handle position d3.select(handle).attr("cx", mx).attr("cy", my); // Update arrow line viewbox.select(`.velocityLine[data-plate="${plate.id}"]`) .attr("x2", mx).attr("y2", my); // Compute new velocity from drag position const dx = mx - cx; const dy = my - cy; plate.velocity[0] = dx / arrowScale; plate.velocity[1] = -dy / arrowScale; // flip Y plate.velocity[2] = 0; // Update popup if this plate is selected if (tectonicSelectedPlate === plate.id) { updatePopupValues(plate); } } function ensureArrowheadMarker() { if (document.getElementById("tectonicArrowhead")) return; d3.select("svg").select("defs").append("marker") .attr("id", "tectonicArrowhead") .attr("viewBox", "0 0 10 10") .attr("refX", 8).attr("refY", 5) .attr("markerWidth", 6).attr("markerHeight", 6) .attr("orient", "auto-start-reverse") .append("path") .attr("d", "M 0 0 L 10 5 L 0 10 z") .attr("fill", "#fff") .attr("stroke", "#333") .attr("stroke-width", 0.5); } function computeGridPlateCentroid(plateId, plateIds) { let sumX = 0, sumY = 0, count = 0; for (let i = 0; i < plateIds.length; i++) { if (plateIds[i] !== plateId) continue; sumX += grid.points[i][0]; sumY += grid.points[i][1]; count++; } if (count === 0) return null; return [sumX / count, sumY / count]; } // ---- Plate Selection & Popup ---- function selectPlate(plateId) { const plates = window.tectonicGenerator.getPlates(); if (plateId < 0 || plateId >= plates.length) return; tectonicSelectedPlate = plateId; // Update overlay opacity to highlight selected plate viewbox.select("#plateCells").selectAll("polygon") .attr("fill-opacity", function () { return +this.getAttribute("data-plate") === plateId ? 0.55 : 0.15; }); showPlatePopup(plates[plateId]); } function showPlatePopup(plate) { closePlatePopup(); const plateIds = window.tectonicMetadata.plateIds; const centroid = computeGridPlateCentroid(plate.id, plateIds); if (!centroid) return; // Count cells let cellCount = 0; for (let i = 0; i < plateIds.length; i++) { if (plateIds[i] === plate.id) cellCount++; } const pct = (cellCount / plateIds.length * 100).toFixed(1); const vel = plate.velocity; const speed = Math.sqrt(vel[0] ** 2 + vel[1] ** 2 + vel[2] ** 2); const dirDeg = Math.round(Math.atan2(-vel[1], vel[0]) * 180 / Math.PI); const color = tectonicPlateColors[plate.id]; const popup = document.createElement("div"); popup.id = "tectonicPlatePopup"; popup.style.cssText = ` position: absolute; z-index: 1000; background: rgba(30,30,30,0.95); color: #eee; border: 2px solid ${color}; border-radius: 6px; padding: 10px 14px; font-size: 12px; min-width: 180px; pointer-events: auto; box-shadow: 0 4px 16px rgba(0,0,0,0.5); `; popup.innerHTML = `
Plate ${plate.id} ${cellCount} cells (${pct}%)
${speed.toFixed(2)}
${dirDeg}°
Drag the arrow on the map to set velocity
`; document.body.appendChild(popup); // Position popup near the plate centroid but in screen coords const svgRect = document.querySelector("svg").getBoundingClientRect(); const svgEl = document.querySelector("svg"); const ctm = svgEl.getScreenCTM(); const screenX = centroid[0] * ctm.a + ctm.e; const screenY = centroid[1] * ctm.d + ctm.f; popup.style.left = Math.min(screenX + 20, window.innerWidth - 220) + "px"; popup.style.top = Math.max(screenY - 60, 10) + "px"; // Listeners byId("popupPlateType").addEventListener("change", function () { plate.isOceanic = this.value === "oceanic"; }); byId("popupPlateSpeed").addEventListener("input", function () { const newSpeed = +this.value; byId("popupSpeedLabel").textContent = newSpeed.toFixed(2); const oldSpeed = Math.sqrt(plate.velocity[0] ** 2 + plate.velocity[1] ** 2 + plate.velocity[2] ** 2); if (oldSpeed > 0.001) { const s = newSpeed / oldSpeed; plate.velocity[0] *= s; plate.velocity[1] *= s; plate.velocity[2] *= s; } else { plate.velocity[0] = newSpeed; plate.velocity[1] = 0; plate.velocity[2] = 0; } redrawArrowForPlate(plate); }); byId("popupPlateDir").addEventListener("input", function () { const deg = +this.value; byId("popupDirLabel").textContent = deg + "\u00B0"; const speed = Math.sqrt(plate.velocity[0] ** 2 + plate.velocity[1] ** 2 + plate.velocity[2] ** 2); const rad = deg * Math.PI / 180; plate.velocity[0] = Math.cos(rad) * speed; plate.velocity[1] = -Math.sin(rad) * speed; plate.velocity[2] = 0; redrawArrowForPlate(plate); }); } function updatePopupValues(plate) { const speedEl = byId("popupPlateSpeed"); const dirEl = byId("popupPlateDir"); if (!speedEl || !dirEl) return; const vel = plate.velocity; const speed = Math.sqrt(vel[0] ** 2 + vel[1] ** 2 + vel[2] ** 2); const dirDeg = Math.round(Math.atan2(-vel[1], vel[0]) * 180 / Math.PI); speedEl.value = speed.toFixed(2); byId("popupSpeedLabel").textContent = speed.toFixed(2); dirEl.value = dirDeg; byId("popupDirLabel").textContent = dirDeg + "\u00B0"; } function redrawArrowForPlate(plate) { const plateIds = window.tectonicMetadata.plateIds; const centroid = computeGridPlateCentroid(plate.id, plateIds); if (!centroid) return; const arrowScale = 30; const [cx, cy] = centroid; const dx = plate.velocity[0] * arrowScale; const dy = -plate.velocity[1] * arrowScale; const tipX = cx + dx; const tipY = cy + dy; viewbox.select(`.velocityLine[data-plate="${plate.id}"]`) .attr("x2", tipX).attr("y2", tipY); viewbox.select(`.velocityHandle[data-plate="${plate.id}"]`) .attr("cx", tipX).attr("cy", tipY); } function closePlatePopup() { const popup = byId("tectonicPlatePopup"); if (popup) popup.remove(); } // ---- Actions ---- function regenerateFromEditor() { const generator = window.tectonicGenerator; if (!generator) return tip("No tectonic generator available", false, "error"); tip("Regenerating terrain preview...", true, "warn"); closePlatePopup(); setTimeout(() => { try { const result = generator.regenerate(); grid.cells.h = result.heights; window.tectonicMetadata = result.metadata; tectonicViewMode = "heights"; drawHeightOverlay(result.heights); let water = 0, land = 0, minH = 100, maxH = 0; for (let i = 0; i < result.heights.length; i++) { const h = result.heights[i]; if (h < 20) water++; else land++; if (h < minH) minH = h; if (h > maxH) maxH = h; } console.log(`Tectonic regen: ${land} land (${(land / result.heights.length * 100).toFixed(1)}%), heights ${minH}-${maxH}`); tip("Preview ready. Click 'Apply to Map' to rebuild.", true, "success"); } catch (e) { console.error("Tectonic regeneration failed:", e); tip("Regeneration failed: " + e.message, false, "error"); } }, 50); } function applyToMap() { if (!window.tectonicGenerator) return tip("No tectonic generator available", false, "error"); closePlatePopup(); closeTectonicEditor(); $("#tectonicEditor").dialog("close"); tip("Rebuilding map from edited tectonics...", true, "warn"); setTimeout(() => { try { undraw(); pack = {}; Features.markupGrid(); addLakesInDeepDepressions(); openNearSeaLakes(); OceanLayers(); defineMapSize(); calculateMapCoordinates(); calculateTemperatures(); generatePrecipitation(); reGraph(); Features.markupPack(); createDefaultRuler(); Rivers.generate(); Biomes.define(); Features.defineGroups(); Ice.generate(); rankCells(); Cultures.generate(); Cultures.expand(); Burgs.generate(); States.generate(); Routes.generate(); Religions.generate(); Burgs.specify(); States.collectStatistics(); States.defineStateForms(); Provinces.generate(); Provinces.getPoles(); Rivers.specify(); Lakes.defineNames(); Military.generate(); Markers.generate(); Zones.generate(); drawScaleBar(scaleBar, scale); Names.getMapName(); drawLayers(); if (ThreeD.options.isOn) ThreeD.redraw(); fitMapToScreen(); clearMainTip(); tip("Map rebuilt from edited tectonics", true, "success"); } catch (e) { console.error("Failed to rebuild map:", e); tip("Rebuild failed: " + e.message, false, "error"); } }, 100); } function togglePlateOverlay() { if (tectonicViewMode === "heights") { tectonicViewMode = "plates"; tectonicSelectedPlate = -1; drawPlateOverlay(); return; } const overlay = viewbox.select("#tectonicOverlay"); if (overlay.empty()) { drawPlateOverlay(); } else { const visible = overlay.style("display") !== "none"; overlay.style("display", visible ? "none" : null); } } function closeTectonicEditor() { closePlatePopup(); viewbox.select("#tectonicOverlay").remove(); d3.select("#tectonicArrowhead").remove(); tectonicViewMode = "plates"; tectonicSelectedPlate = -1; }