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
19 lines
693 B
TOML
19 lines
693 B
TOML
# The tiled-RTS map generator, shared by every producer of one.
|
|
#
|
|
# Pure and std-only ON PURPOSE: the asset importer (a headless tool) and the
|
|
# sandbox (a renderer app, and a PRIVATE clone the public tree must build
|
|
# without) both call it, so it can depend on neither. It also means the same
|
|
# seed produces the same map on every box — no float transcendentals from a
|
|
# third crate sit between the seed and the cells.
|
|
[package]
|
|
name = "makepad-rtsmap"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
description = "Deterministic tiled-RTS map generation: cell classes, tile picks, resources, fair starts"
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
[lib]
|
|
name = "makepad_rtsmap"
|
|
path = "src/lib.rs"
|
|
|
|
[dependencies]
|