Art of Roads in Games
Reactions to the article and tech
- Many commenters found the write-up inspiring and “HN-perfect,” praising the depth and clarity.
- Some felt teased: the conceptual description was great, but they wanted more concrete demos, videos, and implementation detail.
- A few were unconvinced by example junctions, calling them still “insane,” but others stressed the key improvement: consistent circular arcs yield predictable drivability.
Curves, math, and implementation challenges
- Strong discussion around Bézier curves vs circular arcs vs clothoids vs cubic parabolas.
- Béziers are common but problematic for offsetting and tight turns (self-intersections, ugly offsets).
- Clothoids are praised as physically “correct” and analytically nice for offsets, but integrating them into a real‑time, interactive system (arc length, intersections, reparametrization) is seen as complex.
- Circular arcs and simple polynomials are viewed as a pragmatic sweet spot: cheap to compute, easy to offset and connect, and visually close enough in most game contexts.
- Several people note that all of this gets dramatically harder once you go from 2D layout to 3D meshes that must follow terrain.
Scale and realism in city‑builders
- Multiple comments note that real road and rail curves are huge; even “winding” real roads look nearly straight from satellite view.
- Developers of city sims deliberately compress scales: realistic lane widths, parking, and setbacks make cities look sparse and boring.
- Some players want more realism (fine‑grained lane control, power transmission limits, realistic transit) even at the cost of complexity; others warn that too much realism turns a game into a job.
Urban design, cars, and sprawl
- Big tangent: whether games like SimCity and Cities: Skylines implicitly normalize car‑centric suburban sprawl.
- One side wants sims that model sprawl costs: congestion, long commutes, health and mental‑health impacts, food deserts, etc., and that make multimodal, higher‑density design viable.
- Others argue these games are entertainment, not advocacy tools, and many players just want “typical” car‑oriented cities; punishing that pattern is seen as ideological.
- Debate over whether car‑centric suburbs are “just as livable” or clearly worse for health and social connection; both views appear.
- Discussion of how mainstream sims already “cheat” by omitting parking and deleting cars, undercutting claims of realism.
Historical and organic city growth
- Several commenters love the idea of roads as the city’s “circulatory system,” but emphasize that real historic cities grew from footpaths, not optimized road geometry.
- People lament grid‑only historical builders; they want organic, messy street networks: medieval cores, evolving grids, riverside curves, odd lots, and non‑rectangular buildings.
- Attempts to emulate this in current games hit limitations like strictly rectangular building footprints.
Roads vs streets
- Important distinction raised: roads (for movement) vs streets (for public life).
- Some urban‑planning‑minded commenters object to framing “roads” as the fundamental fabric of cities; they argue that streets and multimodal networks are the true backbone.
- Others counter that large‑scale transport demand (including freight and intercity links) makes road‑like infrastructure foundational, especially in modern car‑heavy societies.
Hidden complexity in games & related systems
- Roads are compared to other “invisible” hard problems in games: doors, scaling of openings, and autotiling systems that must react to neighbor changes.
- Several devs share their own tools (road plugins, terrain painters, clothoid explainers, city prototypes) and note that players rarely notice any of this when it’s done well—but they notice immediately when it’s wrong.