Map Gen 2.2 [2K]

  • Refine features
  • Export
  • The developers have already hinted at the roadmap. While Map Gen 2.2 focuses on physical geography, version 3.0 is expected to tackle cultural geography—generating language families, migration routes, and historical border changes over simulated centuries. However, based on the update cadence, 2.2 will remain the stable, production-ready standard for at least 18 months.

    The standout feature of Map Gen 2.2 is its new "Cellular Water Shedding" algorithm. Unlike older systems that painted rivers as an afterthought, version 2.2 simulates water flow from high-altitude cells down to sea level in real-time. This creates dendritic (tree-like) drainage patterns that are scientifically plausible. You will no longer see rivers flowing uphill or splitting randomly. Every tributary follows the steepest gradient, carving canyons and depositing alluvial fans at delta points.

    At tile boundaries, river widths sometimes change by a factor of 2–3 because flow accumulation values are quantized per tile before merging. The development team acknowledges this as a hard problem given the streaming architecture.


    Biomes are not directly selected per cell. Instead, Map Gen 2.2 computes: map gen 2.2

    Biome assignment uses a 3D lookup table (temp × humidity × hardness), quantized into 24 biomes, including transitional types (e.g., “wet shrubland”).

    Map Gen 2.2 builds upon the foundational principles of its predecessors, enhancing them with state-of-the-art methodologies. This version focuses on three primary areas:

    We benchmarked Map Gen 2.2 against 2.1 using a test suite of 1,000 random seeds on a reference machine (Intel i9-13900K, 64GB RAM, RTX 4080). Map size: 4096×4096 cells (16 megacells). Refine features

    | Metric | Map Gen 2.1 | Map Gen 2.2 | Change | |--------|--------------|--------------|--------| | Mean generation time (s) | 27.3 | 17.9 | –34% | | Peak memory usage (GB) | 8.2 | 5.1 | –38% | | Visible tile seams (per 100 tiles) | 14 | 2 | –86% | | River network continuity failure rate | 31% | 4% | –87% | | Deterministic consistency (seed→identical output) | 99.9% | 100% | +0.1% |

    Table 1: Benchmark comparison. All times are for CPU‑only generation; GPU support is experimental in 2.2.

    The performance gain comes from:


    The generator combines:

    All noise functions use a 64‑bit seed extended by a tile coordinate hash, ensuring coherence across tile boundaries.

    Compare Listings