Files
claude c4beeae38f Initial commit: Transcience MVP
Top-down twin-stick bullet-hell, Godot 4.7, server-authoritative dedicated
server with client-side prediction. Clients send input only; the server
resolves every hit for both players and enemies (no PvP).

- SimWorld: whole simulation as plain RefCounted objects (no nodes, no
  physics server), ~0.24ms/tick at peak load -- runs headless for free and
  drives 78 tests in under a second
- BulletPool: struct-of-arrays bullet storage, replicated as spawn/despawn
  events rather than per-tick state
- Emitter framework (Ring/AimedSpread/WallGap/ArcSweep) shared by trash
  enemies and bosses -- a new boss is data in src/content/content.gd, no
  simulation changes
- The Warden of the Fold: stationary 4-phase boss built entirely on that
  format
- Lobby hub with a portal into on-demand dungeon instances; one process
  hosts the hub plus every concurrent dungeon
- Emergency escape: 3s server-owned channel, cancelled by damage
- tools/check.sh, test.sh (GUT), smoke.sh (real server + bot clients over
  ENet), bench.gd; git hooks wired to the same scripts
- docs/ARCHITECTURE.md, NETCODE.md, WORKFLOW.md, ROADMAP.md
2026-09-03 16:03:57 +02:00

11 lines
592 B
XML

<svg xmlns="http://www.w3.org/2000/svg" width="128" height="128" viewBox="0 0 128 128">
<rect width="128" height="128" rx="20" fill="#0d0d14"/>
<circle cx="64" cy="64" r="40" fill="none" stroke="#ff59bf" stroke-width="3" opacity="0.55"/>
<circle cx="64" cy="64" r="22" fill="none" stroke="#ffd94d" stroke-width="3" opacity="0.75"/>
<circle cx="64" cy="64" r="9" fill="#7fffd4"/>
<circle cx="64" cy="14" r="5" fill="#ff59bf"/>
<circle cx="114" cy="64" r="5" fill="#ff59bf"/>
<circle cx="64" cy="114" r="5" fill="#ff59bf"/>
<circle cx="14" cy="64" r="5" fill="#ff59bf"/>
</svg>