Classify investor demo as systems first

This commit is contained in:
2026-05-19 09:54:25 -07:00
parent 25e20c89c1
commit 2a336fff67
7 changed files with 101 additions and 4 deletions
+4
View File
@@ -20,6 +20,7 @@ set "DX11_LAUNCHER=%PACKAGE_DIR%\Start Agrarian Demo - Compatibility DX11.cmd"
set "PREREQ_LAUNCHER=%PACKAGE_DIR%\Install Prerequisites.cmd"
set "README_FILE=%PACKAGE_DIR%\README-Investor-Demo.txt"
set "DEMO_VERSION=Investor Demo v0.1.N - Build 2026.05.18"
set "DEMO_CLASSIFICATION=Systems-first investor prototype - visual MVP gate pending."
> "%DEFAULT_LAUNCHER%" echo @echo off
>> "%DEFAULT_LAUNCHER%" echo cd /d "%%~dp0"
@@ -75,6 +76,7 @@ set "DEMO_VERSION=Investor Demo v0.1.N - Build 2026.05.18"
> "%README_FILE%" echo Agrarian investor demo
>> "%README_FILE%" echo.
>> "%README_FILE%" echo Version: %DEMO_VERSION%
>> "%README_FILE%" echo Classification: %DEMO_CLASSIFICATION%
>> "%README_FILE%" echo.
>> "%README_FILE%" echo Start with: Start Agrarian Demo.cmd
>> "%README_FILE%" echo.
@@ -86,6 +88,8 @@ set "DEMO_VERSION=Investor Demo v0.1.N - Build 2026.05.18"
>> "%README_FILE%" echo This investor build defaults to the Windows compatibility renderer so it opens reliably across more demo machines and remote sessions.
>> "%README_FILE%" echo The main project remains DX12-first for future Unreal 5 rendering work.
>> "%README_FILE%" echo If you specifically want to test DX12, use: Start Agrarian Demo - DX12.cmd
>> "%README_FILE%" echo.
>> "%README_FILE%" echo This build proves core systems first. Do not describe it as the investor visual MVP until the 0.1.O visual/menu quality gate is complete and visually verified.
echo Installed investor demo launchers in:
echo %PACKAGE_DIR%
@@ -0,0 +1,50 @@
from pathlib import Path
ROOT = Path(__file__).resolve().parents[1]
REQUIRED = {
ROOT / "Docs" / "Investor" / "InvestorDemoStatus.md": [
"Current classification: systems-first investor prototype.",
"should not be described as an investor visual MVP",
"visual/menu quality gate is complete",
"non-ray-traced default/compatibility rendering remains credible",
"packaged-demo visual QA screenshots or clips",
],
ROOT / "Docs" / "Legal" / "InvestorDemoNotices.md": [
"Systems-first investor prototype. Visual MVP gate pending.",
"Do not describe the current build as an investor visual MVP",
],
ROOT / "Source" / "AgrarianGame" / "AgrarianDemoNoticeActor.h": [
"Systems-first investor prototype - visual MVP gate pending",
],
ROOT / "Source" / "AgrarianGame" / "AgrarianDemoNoticeWidget.h": [
"Systems-first investor prototype - visual MVP gate pending",
],
ROOT / "Scripts" / "InstallWindowsDemoLaunchers.bat": [
"DEMO_CLASSIFICATION=Systems-first investor prototype - visual MVP gate pending.",
"Classification: %DEMO_CLASSIFICATION%",
"Do not describe it as the investor visual MVP",
],
ROOT / "AGRARIAN_DEVELOPMENT_ROADMAP.md": [
"[x] Reclassify the current investor demo as systems-first, not investor visual MVP",
],
}
def main():
missing = []
for path, snippets in REQUIRED.items():
text = path.read_text(encoding="utf-8")
for snippet in snippets:
if snippet not in text:
missing.append(f"{path.relative_to(ROOT)} missing {snippet!r}")
if missing:
raise SystemExit("Investor demo systems-first status verification failed:\n" + "\n".join(missing))
print("PASS: investor demo is classified as systems-first until the visual MVP gate is complete.")
if __name__ == "__main__":
main()