Completes the travelling-operator deployment. The relay stays parked on the
home machine (so no player ever edits join.bat) and the console dials in from
anywhere -- but until now two things needed hands on that machine: bringing the
relay back when it died, and restarting it (the only way to clear a wedge or
pick up a roster resize). Both are covered now.
tools/btrelay_park.py -- the supervisor:
* runs the relay with cwd=content\ , which is what pins WHICH
operator_secret.txt is live (the trap documented last commit);
* relaunches on ANY exit, with 2/5/15/30/60s backoff when a relay dies inside
20s, so a permanent fault (port taken, missing egg) cannot become a spin;
* rotates content\parked_relay.log to .1 first, so the dead generation's
evidence survives the relaunch that replaces it;
* Ctrl-C stops it for good. NOT a Windows service on purpose: session 0
would hide the window an operator wants to tail.
tools/park_relay.cmd -- double-click to park; a shortcut to it in shell:startup
gives start-after-reboot with no admin rights.
`restart` on the control port (btconsole.py): sets restart_requested, the run
loop returns, relay_main exits RESTART_EXIT_CODE=42 and the supervisor relaunches
-- re-reading the egg. REFUSED while a mission is running (launches_sent >= 2
and not stop_sent): bouncing then would drop every pod out of a live round.
Local stdin gets the same command for parity.
btoperator.py: Restart Session in REMOTE mode now sends `restart` and reconnects
6s later instead of just tearing down our own link -- the old behaviour looked
like "Restart does nothing" against a parked relay. (QTimer had to be imported;
it was missing, which py_compile does not catch -- it would have been a runtime
NameError on the first click.)
VERIFIED by scratchpad/test_parked_supervisor.py, 12/12, and the full
test_remote_console_e2e.py re-run green afterwards (15/15):
* kill the relay -> a NEW pid is serving again, and the old log is kept as .1;
* remote `restart` -> ACKed, new pid, egg re-read, serving again;
* the supervisor distinguishes the two -- "operator requested a restart" vs
the crash/backoff path -- proven from its own log, not assumed;
* the mid-mission guard is present and wired to launches_sent/stop_sent.
Two harness defects fixed while proving it, both mine: a check written with
`or True` that could never fail (replaced with two real assertions against the
supervisor's log), and a recv that treated the relay's correct
close-after-restart as a ConnectionResetError failure.
Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
29 KiB
id, title, status, source_sections, related_topics, key_terms, open_questions
| id | title | status | source_sections | related_topics | key_terms | open_questions | ||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| operator-console | The Operator Console + Relay (btoperator.py / btconsole.py) | living | tools/btoperator.py; tools/btconsole.py (module docstring is authoritative on the wire); context/multiplayer.md §relay/§operator console; docs/OPERATOR_GUIDE.md |
|
|
|
The Operator Console + Relay
The system-operator station: build a mission, run a session, watch pods arrive, launch rounds. This is the piece the 1995 archive lost and we rebuilt.
What survives of the original, and why so little: the console APPLICATION is absent from every
archive (and Route A is closed). What we have is the pod's half of the conversation --
game/original/BT/BTCNSL.CPP (orig. cnslmsgs.cpp, one of the ~10 surviving BT game .cpp),
defining the Console* messages the game sends TO the console (MechKilled / MechDamaged /
ScoreUpdate / TeamScoreUpdate / DeathWithoutHonor / EndMission) -- plus the engine's receive-side
handlers (egg / RunMission / StopMission). Its changelog line "06/03/95 GAH -- Added
corresponding Macintosh message definitions" implies the 1995 sysop station was a Macintosh
application, a separate codebase that was never in the pod build tree -- which is why no archive
has it. btconsole.py/btoperator.py are therefore a wire-faithful RECREATION built from the
surviving parser side (+ BT_NET_PROBE against the real exe), not a port of the lost program.
Sysop-facing instructions live in
docs/OPERATOR_GUIDE.md. This file is the engineering description — how it is built and where it breaks.
READ THIS FIRST — there are TWO programs and they are not interchangeable
The single most common mistake (made by me, twice, after a context compaction):
| File | What it is | How it runs |
|---|---|---|
tools/btoperator.py |
The operator console. A PySide6 GUI — the window the sysop actually uses to build missions, watch pods and press LAUNCH. | python tools/btoperator.py (from the repo root, no args) |
tools/btconsole.py |
The headless console/relay. All the wire logic: egg hand-out, seat assignment, the launch pair, the mission clock, the TCP+UDP frame router. No UI. | The GUI spawns it as a QProcess; also runnable standalone from the CLI |
"Launch the console" means tools/btoperator.py. Backgrounding btconsole.py is not it —
it has no window, and with no stdin the operator commands are dead. The division is deliberate:
all protocol logic stays headless so the CLI, the GUI and the test rigs share one tested
implementation; the GUI is only UI + process management.
The GUI drives the relay two ways: stdin (launch, stop, rearm) for a local child, and
the control port for a remote relay. Both paths reach the same handlers.
Topology and ports
Pods dial OUT to the relay (this is what makes internet play work through NAT — no inbound
ports needed at the player's end). With console port P (default 1500):
| Port | Protocol | Purpose |
|---|---|---|
P /tcp |
console protocol, relay-terminated | streams the egg to each pod, then the RunMission launch pair and StopMission |
P+1 /tcp |
envelope-framed game relay | the frame router between pods ({int32 route; uint32 length} + payload) |
P+1 /udp |
envelope-framed unreliable channel | the 60 Hz update-record fan-out ({int32 route; int32 fromHost; uint32 seq} + frame) |
P+7 /tcp |
operator control channel | AUTH <secret> then launch / stop / rearm / ping / get / set (CONTROL_PORT_OFFSET = 7) |
| udp/15999 | LAN discovery | answers probes so pods can use BT_RELAY=auto |
Pod-side env contract: BT_RELAY=<host>:<P> (or auto for LAN discovery) and
BT_SELF=<their [pilots] entry> — or BT_SELF=auto, which makes the relay assign the next free
roster seat. players/join.bat sets these.
Route table (tools/btconsole.py:276-286)
>= 2 unicast to that hostID (relay->client: the SENDER's hostID)
-1 broadcast to every registered pod except the sender
-2 HELLO payload: int32 magic 'BTR1', int32 myHostID
-3 PEER_UP relay->client
-4 PEER_DOWN relay->client
-5 UDP HELLO-ACK (sets the client's udpUp)
-6 SEAT_REQUEST client->relay: assign me a free roster seat
-7 SEAT_ASSIGN relay->client: int32 hostID + NUL-terminated tag
-8 SEAT_FULL relay->client: no free seats
-9 MATCHLOG client->relay: upload (filename NUL + bytes); saved to
matchlogs/<peer>_<name>, cap 8 MB
-10 READY client->relay: mission load complete (the READY light)
-11 REJOIN relay->client: abandon this round and rejoin
The roster, seats and identity
The egg's [pilots] list is the roster (parse_egg_roster, btconsole.py:372). Entry i
becomes hostID 2 + i — FIRST_GAME_HOST_ID = 2, because CONSOLE_HOST_ID = 1 is
FirstLegalHostID and belongs to the console itself. A pilot entry's text is its tag
(e.g. 10.99.0.1:1502); the tag's position in the received egg is how a pod derives its own
host id, which is why a roster trim remaps seat ids and everything re-keys by position.
- Seat requests (route -6) let a walk-up pod claim a free seat and carry its callsign + mech.
- Reservations last
SEAT_RESERVE_SECONDS = 60. - Reclaim by identity: a returning player (same IP + callsign) gets their old seat back
(
seat_identity, btconsole.py:1258-1276). Watch for this in the log asseat RECLAIMED by identity.
Launch with whoever connects: the operator's LAUNCH can _trim_roster down to the seats that
actually have live beacons or claims, so a 8-seat egg runs a 3-player round.
When a player leaves
Relay side: the beacon's FIN frees the seat (seat_beacons entry deleted, and seat_reservations /
seat_prefs dropped), but the TAG is held for that player for 90 s (seat_reclaim) so a crash
or a reconnect returns them to the same seat with the same mech. Seat assignment skips seats that
are claimed, reserved, operator-reserved, or reclaim-held — so a brand-new joiner in that 90 s window
gets the next free seat instead, or ROSTER FULL if that was the only one. The hold expires on its
own; nothing is held permanently.
PLAYER n LEFT is NOT printed for every departure. It is inside the beacon-close branch gated
on if seat not in self.by_host: — the relay's own comment reads "never claimed: player left". A
player who was fully REGISTERED and then drops produces only game[...] dropped (+ PEER_DOWN). Any
UI that keys "seat is empty" off the LEFT line alone will therefore miss the common case — which is
exactly the bug below.
The roster kept a departed player's name [FIXED 2026-07-26]
Operator report: "if a player disconnects, it leaves their name up in the roster ... it should turn
their seat back to empty." The GUI only ever wrote walk-up names into the table: on a
disconnect seat_info was popped and the write-back loop hit if not info: continue, so the cell
kept the departed callsign for the rest of the session — while the pilot light beside it correctly
said waiting. The table and the light disagreed, and a free seat looked occupied.
Two changes, because the two clearing paths are not symmetric:
SessionMonitornow popsseat_infowhen a pilot goes idle from either signal — thegame[...] droppedline as well asPLAYER n LEFT— so a registered player's departure clears the identity too._refresh_pod_statusstashes the operator's configured callsign/mech per occupancy when a seat fills, and restores it when the seat empties. Per-occupancy (rather than once at egg load) means an edit the operator makes while a seat is empty is respected, not overwritten by a stale snapshot.
It restores the configured pilot, not a literal blank, on purpose: that cell is editable and is
what gets written to the egg on Save, so a placeholder like "-- empty --" would end up in the
mission file. The "unoccupied" signal is the grey waiting light next to it.
Regression guard: scratchpad/test_operator_roster.py (drives the real widget offscreen).
The round lifecycle (the part that used to strand the operator)
session start
-> egg HELD until len(console_conns) >= len(roster) [btconsole.py:565-578]
-> _release_eggs() (or _release_eggs(present) -> _trim_roster) [:627]
-> pod ACK per pod (clientID 0, msgID 4) -> _pods_ready()
-> READY (route -10) per pod: mission load complete
-> operator LAUNCH manual mode: waits for the operator [_tick_launch]
-> RunMission #1 then #2 after LAUNCH_STEP_SECONDS = 4s launches_sent 1 -> 2
-> mission clock the egg's [mission] length, +STOP_GRACE = 2s [_tick_stop]
-> StopMission clock expiry or operator End Mission
-> round end pods exit, join.bat relaunches them, they reconnect
-> RE-ARM so the next LAUNCH works <-- see below
Timings: LAUNCH_SETTLE_SECONDS = 20 (egg → first launch; pods must reach WaitingForLaunch or the
handler Fail()s), LAUNCH_STEP_SECONDS = 4, STOP_GRACE_SECONDS = 2,
ABORT_SETTLE_SECONDS = 8 (egg-release hold after a round abort).
The all-ready gate
Firing a mission while a pod is still LOADING drowns that pod's load in the running mission's update streams (same event queue) — the operator, who joins last, once loaded 5+ minutes. So the RunMission pair is held until every registered pod has sent READY. Escape hatches: the holdouts are announced every 10 s, and a 180 s cap force-fires so one wedged pod cannot hold the night hostage.
Re-arm: why LAUNCH used to do nothing after a round [FIXED 2026-07-26]
The failure the operator reported: "after a game ends I push LAUNCH and nothing happens until I reset the session or reboot the console." Their own counter-observation is the tell: with a stable group it worked fine repeatedly.
The manual LAUNCH branch is guarded on launches_sent == 0, but a finished mission leaves it at
2. The only automatic paths back to 0 were both all-or-nothing:
_check_launch_gate— needs every seat of the last round to re-ACK_maybe_reset_round— needs every pod to be gone
A games night lives between those: most pods rejoin, one player closes their window. And the
"not all seats filled" diagnostic sat inside the launches_sent == 0 guard, so in exactly that
state nothing printed at all. The GUI agreed: its LAUNCH button is gated on
not monitor.launched, and launched was cleared only by the two relay lines those same gates
emit — so the button was greyed out precisely when wedged. Only a session restart recovered,
because a fresh relay process means fresh state.
Now: an explicit operator LAUNCH is itself sufficient authority to start a new round.
_rearm_for_new_round() clears the round state and restores the template roster/egg while
keeping seats, beacons and connections. Plus a rearm/newround command and a Re-arm
button, so recovery never needs a restart.
The trap to remember if you touch this: launch_requested deliberately stays set across the
RunMission pair, so re-arming on launches_sent >= 1 alone also matches the normal state
between #1 and #2 — that resets the pair mid-flight and re-releases eggs every tick, a re-arm
storm that kicks every pod into an identity-resync loop. The re-arm therefore also requires
launch_at is None (nothing in flight). Caught on the rig, 2026-07-26.
The post-abort dead lobby [FIXED 2026-07-26]
A distinct wedge with the same symptom, live-proven in content/operator_relay.log on
2026-07-25 (≈5 minutes of a night lost). _abort_round sets eggs_released = False before the
surviving pods' sockets close, so every later _maybe_reset_round hits its own
if not self.eggs_released: return and the template restore never runs: roster and
expected_ids stay trimmed to last round's attendance and egg_path stays the trimmed egg. All
three automatic release paths compare against len(self.roster), so with N−1 pods back nothing
releases, walk-ups get ROSTER FULL, and the relay sits dead.
_rearm_for_new_round is guarded on every channel (ctl command, stdin, the GUI button -- the guard lived only on the LAUNCH path at first, so a ctl rearm mid-mission killed the mission clock and made the round unstoppable): it refuses while a mission is RUNNING (launches_sent >= 2 and not stop_sent -- NOT launches_sent alone, which stays 2 after a finished round and would resurrect the original wedge) and while a launch pair is in flight. It also re-keys seat_beacons/seat_prefs to the restored roster (_rekey_seats_to_roster, shared with the round reset) -- without that, round 2 trimmed the WRONG seats into the egg. Its template restore is unconditional — an earlier cut gated it
on eggs_released, which made Re-arm useless in the one state that most needs it. It also clears
round_hold_until so an abort's settle window is not inherited.
Aborts happen for an ordinary reason: nothing on the wire distinguishes "a straggler's round-N FIN arriving late" from "a pod died mid-load", so a slow or remote pod closing ~18 s after StopMission is read as the latter.
The stop latch
_tick_stop returns early while launches_sent < 2, so a stop_requested set between rounds
used to sit latched and then StopMission the next mission in the very tick it launched — which from
the operator's seat is also "launch did nothing". It is now consumed and announced while idle.
Liveness (the "reboot the console" half) [FIXED 2026-07-26]
Nothing used to notice a pod that vanished without closing its TCP: a sleeping laptop, a
dropped Wi-Fi link, a killed process, a NAT idle-timeout. There was no SO_KEEPALIVE and no idle
deadline anywhere, so the dead connection sat in console_conns with acked=True forever,
which (a) permanently blocked _maybe_reset_round (it requires no conn acked) and (b) held a
phantom seat in the launch count. Only restarting the relay cleared it.
Now: keepalive on every accepted socket (_enable_keepalive), a last_seen stamp on every read
and on every inbound UDP datagram, and _reap_dead_peers() with DEAD_PEER_SECONDS = 180.
The reaper's final doctrine (third revision — review 2026-07-26 — KEEP IT): an app-level
deadline is valid only where silence is ABNORMAL, i.e. while a protocol response is OWED. The only
thing reaped is a console pad that was sent the egg and never ACKed within DEAD_PEER_SECONDS
(measured from EGG SEND, not from connect — a pad that sat through a long held-egg wait must get its
full window). Everything else is TCP keepalive's job (~130 s detection via SIO_KEEPALIVE_VALS).
Why each earlier revision was wrong, so nobody re-widens it:
- Rev 1 armed it whenever no mission ran → it would have reaped healthy pods during 12-minute BETWEEN-ROUNDS waits (a waiting pod is byte-silent by design).
- Rev 2 armed it for the whole STAGING window → it reaped every healthy ACKed pad 180 s into a
manual-launch hold, because a pad sends exactly ONE message in its life (the ACK) and is then
silent forever; and it reaped registered game conns that are quiet on TCP while loading
(fatal with
BT_RELAY_TCP_ONLY=1or blocked UDP:_abort_roundbounced everyone, blaming a healthy player, every ~3 minutes). Game conns are now never reaped at all.
Console-protocol reassembly [FIXED 2026-07-26]
The pod's egg ACK is the launch gate's only signal, and it used to be detected by parsing a
single recv() at fixed offset 0 with a len(data) >= 24 test. Two ways that lost an ACK on a real
network (loopback hid both): the 28-byte ACK arriving split (16 bytes then 12) was dropped by
the length test and never looked at again, and two coalesced messages meant only the first was
read. A missed ACK means that seat never counts, so the round can never be released — a silent,
unrecoverable wedge. _console_read now buffers per connection and walks every complete frame
(16 + messageLength), and an implausible length drops the connection with a reason rather than
mis-reading that pod for the rest of the night (a stream protocol cannot be resynced by guessing).
Bounds: CONSOLE_MSG_MAX = 65536, CONSOLE_INBUF_MAX = 1 MiB.
UDP endpoint anti-hijack [FIXED 2026-07-26]
from_host in a UDP envelope is the sender's own claim, and the relay used it directly to
refresh that host's downstream endpoint. So any datagram claiming host N silently stole host N's
traffic — a zombie pod from a previous round, a stale NAT mapping, or anyone who guessed a host
id — and the victim simply stopped receiving on a channel that still looked healthy. The claim is
now bound to the identity we actually authenticated: the IP of that host's live TCP game
connection. The port is deliberately not checked (it moves on a NAT rebind, which is the whole
reason the endpoint map refreshes per datagram), and a genuine IP change cannot happen without the
TCP connection breaking and re-registering, so this never rejects a legitimate pod. Rejections are counted and now SURFACED — spoofed N rides the [relay-stats] line whenever non-zero — and logged once per offending (host, IP) pair (the warn set is capped at 256 under a flood).
Limitation worth knowing: two pods on the same machine share an IP, so this cannot tell them apart — same-machine trust is assumed.
Also: every pod-facing send used to flip the socket to blocking with no timeout on the relay's
single-threaded selector loop, so one wedged peer could freeze the whole relay (no launch tick,
no UDP fan-out, no control channel). All sends now go through _send_all_guarded
(SEND_TIMEOUT_SECONDS = 10, drops the peer on failure).
Modes
- Relay (internet) —
btconsole.py --relay <port> <egg>; pods dial out. The normal mode. - Mesh (LAN legacy) —
btconsole.py <egg> <host:port> ...; the console dials OUT to each pod's-netport. The authentic 1995 cabinet direction. - Remote relay / PARKED RELAY — the GUI drives an already-running relay over the control port
instead of spawning a child. This is a COMPLETE, SUPPORTED deployment mode (fixed 2026-07-26 —
do not re-derive it; see §Parked relay below). The intended production shape: the relay lives
permanently on the operator's home machine so every player's
join.bataddress never changes, while the console dials in from anywhere (a laptop on cell internet, another country).
The console must STAY CONNECTED. A disconnect trips the pod's console-loss path, which also closes its game listener — an engine bug, not ours. (This is about the console channel to the pods — the relay holds those. An operator GUI disconnecting from a parked relay's control port is harmless: the relay keeps running and the pods never notice.)
Parked relay + remote console [COMPLETE 2026-07-26 — do not re-derive]
The production topology: the relay stays parked on one machine forever (so players'
join.bat never changes), and the operator console attaches over the control port from anywhere.
Verified by reading the control handler (tools/btconsole.py _ctl_command, _ctl_get_mission,
_ctl_set_mission) — this is the authoritative list, so nobody has to re-read it again.
Park the relay — use the supervisor tools/btrelay_park.py (or double-click
tools\park_relay.cmd, which is also what goes in shell:startup for start-at-boot):
python tools\btrelay_park.py --egg OPERATOR.EGG --port 1500
It runs the relay with cwd = content\ (which fixes which operator_secret.txt is live — see
the trap below), relaunches it on any exit, backs off 2→5→15→30→60 s when a relay dies faster
than 20 s so a permanent fault (port taken, missing egg) cannot spin, and rotates
content\parked_relay.log to .1 so the dead generation's evidence survives its replacement.
Ctrl-C stops it for good. Deliberately not a Windows service — session 0 would hide the very
window an operator wants to tail. A bare python tools\btconsole.py --relay 1500 OPERATOR.EGG from
content\ still works for a one-off; it just has nothing watching it.
What a remote console CAN do (control port = console port + 7, i.e. 1507; AUTH <secret>):
| Command | Effect |
|---|---|
launch |
the RunMission pair — a real mission start |
stop |
End Mission (the stop latch) |
rearm / newround |
the re-arm escape hatch (recover a dead LAUNCH between rounds) |
get |
current mission settings + live seat count |
set map=…;time=…;weather=…;scenario=…;temperature=…;length=… |
writes the relay's own egg on the parked machine (CONTROL_SET_KEYS whitelist), effective next round |
restart |
exits the relay with code 42 so the supervisor relaunches it, re-reading the egg — the only route to a roster resize or a wedge-clear from the road. Refused mid-mission (launches_sent >= 2 and not stop_sent): it would drop every pod out of a live round. The GUI's Restart Session sends this in remote mode and reconnects ~6 s later (it previously just disconnected you, which read as "Restart does nothing"). |
ping |
liveness |
| (implicit) | the full live log stream + the roster, re-issued from live state at every AUTH |
So a remote operator can run an entire night: stage, launch, end, re-arm, change the map/weather/ length between rounds, and watch real pilot lights.
What a remote console CANNOT do (these need access to the parked machine itself):
- Start the relay — remote mode attaches; it cannot create one. That is the supervisor's job.
- Change the seat count in one step. The running relay refuses a resize
(
roster changed N->M seats -- IGNORED); the egg on the parked machine has to change and the relay has to restart.restartnow supplies the second half from the road — writing that egg's roster still needs local access, since only the six mission keys travel over the wire. (Stop Sessionremains disconnect-only, which is what you want against a parked relay.) - Edit the roster — callsign / mech / colour / badge / patch / experience are not in
CONTROL_SET_KEYS; only the six mission keys travel over the wire.
THE SECRET'S WORKING-DIRECTORY TRAP. control_secret() opens the bare relative name
operator_secret.txt, so the live secret depends on the relay's cwd — and if none is found it
silently generates a new one. Confirmed hazard 2026-07-26: this repo had two secret files with
different values (operator_secret.txt and content\operator_secret.txt), so a remote operator
holding one of them would fail AUTH against a relay started from the other directory (symptom: the
control connection is dropped on the CONTROL_AUTH_TIMEOUT, not a clear "wrong password"). Always
park the relay from the same directory, and hand out the secret from that directory. The file
is now .gitignored — it was previously untracked-but-not-ignored, one git add -A away from
being published in a shared repo.
Multiple operators are accepted concurrently (ctl_conns is a list, each AUTHing independently
and receiving the same broadcast), which makes hand-off seamless — but nothing arbitrates two
people pressing LAUNCH, so treat one-operator-at-a-time as an operating discipline.
Exposure. The control channel is plaintext TCP with a shared secret, so forwarding 1507 to the
open internet puts that secret on the wire in the clear. Preferred shape: leave the player
ports (1500/1501) forwarded exactly as they are — join.bat untouched — and carry only the
operator control link over a private tunnel (mesh VPN).
Logs and evidence
| File | Notes |
|---|---|
content/operator_relay.log |
the relay's own stdout, teed by the GUI. Truncated at each session start — so a Start Session destroys the evidence of the wedge it is being used to clear. Copy it first when diagnosing. |
matchlogs/<peer>_<name> |
per-pod match reports, auto-uploaded on route -9 at each clean round end (relay modes only; a mid-round crash loses it) |
content/join.log |
the pod's own log; never uploaded, only on the player's machine |
Every relay log line is wall-clock stamped (_StampedOut) so post-mortems can measure delays.
The GUI's monitor regexes all use .search(), so the prefix is transparent to them.
Mode-specific traps (verified 2026-07-26 by reading btoperator.py)
These are not theory — each was read out of the code, and each makes a control look live while doing nothing:
- MESH mode: the operator buttons are inert.
_relay_sendreports ">> operator LAUNCH sent" whenever the child process is Running, but the stdin command thread only exists inrelay_main(btconsole.py) — the mesh path (btconsole.main) has no stdin reader at all. So LAUNCH / END MISSION / Re-arm are silently discarded in mesh mode.Apply mission settingsis likewise inert there: the mesh console reads the egg bytes once at startup. Mesh also never prints "WAITING FOR OPERATOR", so the LAUNCH button cannot even enable. - REMOTE-operator mode — FIXED 2026-07-26. LAUNCH and END MISSION could never enable (both
conditions required
console_proc is not None, which the remote path never sets), the roster lights were permanently empty (SessionMonitor(True, [])→ no tags →seatedalways 0), andLaunch local instanceswas refused by the same guard even though the code below it already builtBT_RELAYfrom the remote host. Now: all three enable conditions accept either channel (console_procorremote_link), and the monitor adopts the roster from the relay'sroster: N pilot(s) -> hostIDs [...]: [...]line, which the relay re-issues from live state to every newly AUTHed operator ahead of the history replay — relying on the startup line alone broke after ~33 minutes, when stats chatter aged it out of the 400-line history and a late-connecting remote operator got a blank roster and a dead LAUNCH button. So a remote operator gets real pilot lights and a real seat count at any time of night. Start sessionsilently overwrites the egg on disk (including re-rasterized callsigns), with no prompt and no backup.Applywrites only the six[mission]keys (map/time/weather/scenario/temperature/length). Roster edits needSave; a seat-count change is refused by the relay withegg file roster changed N->M seats -- IGNORED (restart the session to resize).- The Color dropdown offers every colour in the RES vehicletable, but only
Black/Brown/Crimson/Green/Grey/Tan/Whiteactually paint — anything else silently renders GRAY (the relay warns). A "valid" mission can still produce a grey mech. operator_secret.txtis opened by a bare relative name by the relay, whose working directory is inherited from whatever directorybtoperator.pywas started in (the GUI never callssetWorkingDirectoryon the relay child). Start from the repo root and it will not be thecontent\operator_secret.txtthe tooltips point at.- After the relay dies on its own,
_console_finishedleavesconsole_procnon-None, soLaunch local instancesstays enabled and will spawn clients against a dead relay.
Gotchas / things that look like bugs
egg HELD (n/N pods present)is normal staging, not an error — the egg waits so every pod's copy carries every walk-up seat pref.*** WARNING: ... EMPTY seat(s) ... the mission will STALLcan fire misleadingly after a trim, because_log_launch_readinesscountsby_hostagainst the (remapped) roster. Do not act on it blindly.- A relay-side crash leaves the GUI looking alive —
_console_finisheddoes not clearconsole_proc. Commands now report honestly instead of logging ">> sent" into the void. - Session restart is the big hammer: it re-spawns the relay, so it clears every latch. That is why it always "fixed" things — and why it hid the real defects for so long.
- A
--manual-launchrelay waits for the operator; without it the launch pair fires automatically once all pods ACK.
Key Relationships
- Uses: content-archives (the EGG is the mission + roster) · multiplayer (what the relayed frames mean: master/replicant, dead reckoning)
- Feeds: multiplayer · steam-networking (the alternate wire seam) · pod-hardware
- Sysop instructions:
docs/OPERATOR_GUIDE.md