Custom pipeline for GJ-0 (Sol) that imports real NASA/USGS planetary data instead of procedural generation. Produces the same output format (heightmap.png, globe.png, markers.json). Real data bodies: - Earth: ETOPO2022 elevation + WorldClim climate + 14 rivers - Mars: MOLA DEM + ferric biome classes + terraformed water - Luna: LOLA DEM + lunar biome palette Procedural fallback for Mercury, Venus, Phobos, Deimos. Synthetic elevation from albedo for Io, Europa, Ganymede, Callisto, Titan, Enceladus. Gas giants use existing renderer. New biome classes 34-36 (ferric_dust/highland/lowland) for Mars iron oxide surface. Earth features: 50 cities (smart scatter by continent), 15 named rivers, oceans, mountains. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
84 lines
1.5 KiB
Plaintext
84 lines
1.5 KiB
Plaintext
# Secrets
|
|
.env
|
|
|
|
# Runtime databases (not tracked — created on startup)
|
|
server/settings.db
|
|
server/settings.db-shm
|
|
server/settings.db-wal
|
|
|
|
# Build and cache
|
|
.cache/
|
|
.tmp/
|
|
server/target/
|
|
server/sr-voice/target/
|
|
server/models/
|
|
tooling/content-converter/target/
|
|
tooling/line-previewer/target/
|
|
tooling/test-client/target/
|
|
content-ron/
|
|
|
|
# Godot client
|
|
client/.godot/
|
|
client/export/
|
|
client/reports/
|
|
client/**/*.import
|
|
client/**/*.uid
|
|
|
|
# Renderer (separate Godot project for sprite pipeline)
|
|
renderer/.godot/
|
|
renderer/**/*.import
|
|
renderer/**/*.uid
|
|
renderer/output/*.png
|
|
|
|
# Spikes (Godot cache + import artifacts)
|
|
spikes/**/.godot/
|
|
spikes/**/*.import
|
|
spikes/**/*.uid
|
|
spikes/**/*.npy
|
|
spikes/**/*.npz
|
|
|
|
# Planet generator intermediates
|
|
tooling/planet-gen/__pycache__/
|
|
tooling/planet-gen/sol_data/.cache/
|
|
tooling/planet-gen/sol_data/__pycache__/
|
|
*.tmp.npz
|
|
|
|
# Generated terrain grids (large, regenerated from pipeline)
|
|
wiki/**/bodies/**/terrain.npz
|
|
|
|
# Asset downloads (vendor archives, not game content)
|
|
docs/assets/downloads/
|
|
|
|
# Reference repos for investigation
|
|
vendor/
|
|
|
|
# Database (shared across worktrees at ../settledreach.db, not tracked)
|
|
db/commonwealth.db*
|
|
|
|
# Frame0 ID mapping files (ephemeral, per-machine)
|
|
*.idmap.json
|
|
|
|
# Python
|
|
__pycache__/
|
|
*.pyc
|
|
*.pyo
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# IDE
|
|
.idea/
|
|
.vscode/
|
|
.obsidian/
|
|
*.swp
|
|
*.swo
|
|
|
|
# Claude Code internals (plans, session transcripts)
|
|
# Note: .claude/agents/, .claude/skills/, and .claude/settings.json ARE tracked
|
|
.claude/plans/
|
|
.claude/projects/
|
|
.claude/agent-memory/
|
|
client-tmp/
|
|
.tmp/
|