Squashed from work: - rtsmap: one seeded generator for tiled strategy maps - map: bake a runnable Amsterdam test map from inside the route app - route: the first-run test map starts itself, and its buttons are guarded - map: the test map bakes its road faces too, from the same shared pass - map_tiles: mkmap-extract — the weave is reversible, world-cells reconstructible from world.mkmap - route: the local dispatcher rides the hub — its copied engine is deleted, limits preserved (aicore P1) - route + converse: off makepad_ai — the Agent seam moves to converse, route's cloud dispatcher rides the hub's Claude p - ai-hub: chats run the machine election — route to a serving holder, wait on a loading one, claim and publish when open - libs: the zero-warning sweep — stitch casts say what they mean, xatlas keeps upstream's surface quietly
29 lines
1.1 KiB
TOML
29 lines
1.1 KiB
TOML
# Build map archives from OpenStreetMap PBF: the bake engine behind the
|
|
# `makepad-map-tiles` CLI, and behind the in-app first-run test-map bake
|
|
# (apps/route). Library-only on purpose — no CLI, no UI — so an app can run
|
|
# the exact same passes on a worker thread and report progress into its own
|
|
# window. The one pass that needs the renderer (the face bake) sits behind
|
|
# the `faces` feature so the rest stays free of the widget library.
|
|
|
|
[package]
|
|
name = "makepad-map-build"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
description = "OSM PBF → tile archive + navigation artifact bake passes"
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
[features]
|
|
default = []
|
|
# The face bake replays the renderer's own painter cascade, so it needs the
|
|
# widget library. Everything else here is GUI-free; keep it that way.
|
|
faces = ["dep:makepad-widgets"]
|
|
|
|
[dependencies]
|
|
brotli = "8.0"
|
|
makepad-fast-inflate = { path = "../fast_inflate" }
|
|
makepad-map-nav = { path = "../map_nav" }
|
|
makepad-mbtile-reader = { path = "../mbtile_reader" }
|
|
makepad-widgets = { path = "../../widgets", features = ["maps"], optional = true }
|
|
osmpbf = "0.3.8"
|
|
serde_json = "1.0"
|
|
smallvec = { path = "../smallvec" }
|