From 82eb441845d1df16d5f05eadff688e4e040fa133 Mon Sep 17 00:00:00 2001 From: barrulus Date: Thu, 14 Aug 2025 23:47:14 +0100 Subject: [PATCH] Implement tiered route system with enhanced CSV export This commit introduces a comprehensive tiered route generation system that replaces the basic route categories with specific route types based on medieval transportation networks: Route System Changes: - Major Sea Routes (majorSea): Long-distance maritime trade routes connecting capitals and major ports across water bodies, simulating Hanseatic League-style trade networks - Regional Sea Routes (regional): Shorter routes within specific water bodies for high-traffic local maritime trade - Royal Roads (royal): Capital-to-capital connections for diplomatic and military movement using minimum spanning tree algorithm - Market Roads (market): Regional trade networks connecting market towns with 15-30km spacing based on medieval market day travel distances - Local Roads (local): Village-to-market connections linking settlements to their nearest commercial centers - Footpaths (footpath): Hamlet paths with 3-8km range for local community connections Implementation Details: - Removed fallback calls to legacy route generation functions to ensure clean tiered system operation - Routes now include both 'group' (general category) and 'type' (specific tier) properties for detailed classification - Enhanced route generation uses settlement hierarchy and geographic constraints for realistic medieval transportation patterns - Route cost modifiers applied based on route type importance (royal and majorSea routes have priority routing) CSV Export Enhancements: - Added 'Type' column to routes CSV export to distinguish between route tiers - Updated routes overview UI to display both group and type information - Enhanced header layout to accommodate new type column - Routes can now be analyzed by both general category and specific function Technical Changes: - Fixed route ID assignment conflicts between immediate and background processing phases - Improved route data structure consistency across generation phases - Updated routes overview display to show detailed route type information - Enhanced CSV export function to include route type data from pack.routes --- index.html | 5 ++++- modules/routes-generator.js | 12 ++---------- modules/ui/routes-overview.js | 16 +++++++++++----- 3 files changed, 17 insertions(+), 16 deletions(-) diff --git a/index.html b/index.html index b01806c1..f3e9db21 100644 --- a/index.html +++ b/index.html @@ -5375,13 +5375,16 @@