SectorWars 2102¶
📖 Reading on GitHub? This repo renders properly as a documentation site at https://sw2102-docs.shouden.us. The grid cards, cross-links, and search bar only work there. Bookmark that link.
Canonical documentation for SectorWars 2102 — a turn-based space-trading game with procedurally generated galaxies, multi-regional governance, and an evolving per-player AI companion.
These docs are the source of truth for Sectorwars2102 (the game code) and sw2102-bang (the world generator). The repo itself lives at sw2102-docs.
First time here?
Skim the Glossary for vocabulary and the Contributing guide for the doc conventions. Then pick a section below.
Sections¶
-
What the game does — gameplay, economy, galaxy, planets. The only section that tracks implementation status (✅ / 🚧 / 📐 / 🐛).
-
How each subsystem works under the hood: combat resolver, market pricing, turn regeneration, ARIA dialogue, regional governance, bang import.
-
What is persisted: entities, schema, JSONB key shapes, migrations.
-
Where it runs: services, deployment, dev environment, auth, async workers, multi-regional topology.
-
Running edges: AI assistant, web UIs, real-time bus, monetization, retention, i18n, bang integration.
-
Glossary, contributing conventions, testing policy, architecture decision records (ADRs).
Reading the status markers¶
Features is the single source of truth for what's shipped. Every other section describes the target state — "how it should work" — without status badges.
| Marker | Meaning |
|---|---|
| ✅ Shipped | Implemented and behaving as specified. |
| 🚧 Partial | Code exists but is incomplete or behind a flag. |
| 📐 Design-only | Specified here; no code yet. |
| 🐛 Bug | Implemented, but live behaviour diverges from this spec. |
API reference¶
The REST surface is auto-published by the gameserver — there's no mirror here:
- Swagger UI —
<api-host>/docs - ReDoc —
<api-host>/redoc - OpenAPI JSON —
<api-host>/openapi.json
The WebSocket protocol is designed in Systems / Realtime Bus. Auth conventions live in Architecture / Auth.
Source repos¶
-
Main game code — gameserver, admin-ui, player-client, region-manager, nginx-gateway, database.
-
World / sector generator. Bridge to gameserver lives in Operations / Bang Integration.
-
This repo — canonical design docs. Contributions follow Contributing.