Network-agnostic, air-gapped pod install for the two DOSBox titles (BT/RP 4.10), fitting the existing TeslaConsole/TeslaLauncher pod-bay architecture. emulator/DEPLOYMENT-PLAN.md Full design: bridge on the one NIC (pods form a source-proven P2P TCP mesh, so NAT/slirp is out); launcher keeps the bay IP, the DOSBox guest bridges at bayIP+100 (egg/mesh/game endpoint); two-edit +100 convention (postinstall + console DOSBox flag); static, air-gapped, <=32 pods. emulator/pod-launch/ (C# net8 supervising entry-point) Creates a Job Object (KILL_ON_JOB_CLOSE), launches DOSBox-X + the render bridge into it and blocks -- kill this process and both die (kernel-enforced, even on a hard TerminateProcess of a hung session; verified). Mode dispatch: bt/rp wired (also serve camera + live mission-review via egg hostType); review + diagnostics recognized but fail clean until their DOS launch args are known. emulator/deploy/ (install side) postinstall.bat (thin elevated wrapper) + configure.ps1 (NIC detect, realnic bind as a contiguous letter-leading GUID fragment, game IP = bayIP+100, stable MAC, render net_*.conf templates, stamp WATTCP.CFG my_ip) + tokenized conf templates + package.ps1 (assemble the zip). Render/bind/stamp + packaging verified against a scratch tree. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
64 lines
1.5 KiB
Cheetah
64 lines
1.5 KiB
Cheetah
# DEPLOY TEMPLATE -- rendered to net_rp.conf by deploy/configure.ps1 at install.
|
|
# Tokens (filled by postinstall): @@ROOT@@ = package dir (C:\games\<folder>),
|
|
# @@REALNIC@@ = this pod's NIC GUID fragment, @@MACADDR@@ = stable derived MAC.
|
|
# Red Planet 4.10, networked pod boot (console pushes the mission egg over TCP).
|
|
# NOTE: single-shot netnub here (matches dev net_rp.conf); whether RP should loop
|
|
# like BT for retail-parity is an OPEN deploy decision (see DEPLOYMENT-PLAN.md).
|
|
[sdl]
|
|
output=opengl
|
|
priority=highest,highest
|
|
[dosbox]
|
|
memsize=32
|
|
machine=svga_s3
|
|
[cpu]
|
|
core=dynamic
|
|
cputype=pentium
|
|
cycles=max
|
|
[ne2000]
|
|
ne2000=true
|
|
nicbase=340
|
|
nicirq=10
|
|
macaddr=@@MACADDR@@
|
|
backend=pcap
|
|
[ethernet, pcap]
|
|
realnic=@@REALNIC@@
|
|
[sblaster]
|
|
sbtype=sb16
|
|
sbbase=220
|
|
irq=5
|
|
dma=1
|
|
hdma=5
|
|
[mixer]
|
|
rate=44100
|
|
blocksize=1024
|
|
prebuffer=60
|
|
[serial]
|
|
serial1=directserial realport:COM1 rxpollus:100 rxburst:16
|
|
serial2=directserial realport:COM2
|
|
[autoexec]
|
|
mount c "@@ROOT@@\ALPHA_1"
|
|
mount d "@@ROOT@@\net-boot"
|
|
d:
|
|
echo === loading NE2000 packet-driver stack (pcap/bridge, port 340) ===
|
|
d:\lsl
|
|
d:\ne2000
|
|
d:\odipkt
|
|
c:
|
|
cd \rel410\rp
|
|
set VIDEOFORMAT=svga
|
|
set BLASTER=A220 I5 D1 H5 P330 T6
|
|
c:\sb16\diagnose /s
|
|
set BLASTER=A240 I7 D3 H6 P300 T6
|
|
c:\sb16\diagnose /s
|
|
set BLASTER=A220 I5 D1 H5 P330 T6
|
|
set TEMP=c:\
|
|
set HEAPSIZE=15000000
|
|
set L4GAUGE=640x480x16
|
|
call setenv.bat r f s p
|
|
echo === launching Red Planet via NetNub (RIO + sound; waits for console) ===
|
|
32rtm.exe -x
|
|
netnub -p -f rpl4opt > nn.log
|
|
32rtm.exe -u
|
|
echo === RP-NET-RUN-DONE ===
|
|
pause
|