This repository has been archived on 2026-05-24. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
AgrarianGameArchive/Scripts/verify_mvp_inventory_ui_toggle.py
2026-05-18 21:08:14 -07:00

56 lines
1.7 KiB
Python

from pathlib import Path
ROOT = Path(__file__).resolve().parents[1]
FILES = {
"AgrarianDebugHUD.h": ROOT / "Source" / "AgrarianGame" / "AgrarianDebugHUD.h",
"AgrarianDebugHUD.cpp": ROOT / "Source" / "AgrarianGame" / "AgrarianDebugHUD.cpp",
"AgrarianGamePlayerController.h": ROOT / "Source" / "AgrarianGame" / "AgrarianGamePlayerController.h",
"AgrarianGamePlayerController.cpp": ROOT / "Source" / "AgrarianGame" / "AgrarianGamePlayerController.cpp",
"AGRARIAN_DEVELOPMENT_ROADMAP.md": ROOT / "AGRARIAN_DEVELOPMENT_ROADMAP.md",
}
EXPECTED = {
"AgrarianDebugHUD.h": [
"bShowInventoryHUD",
"DrawInventoryPanel",
],
"AgrarianDebugHUD.cpp": [
"DrawInventoryPanel(AgrarianCharacter)",
"INVENTORY %d/%d slots %.1f wt",
"InventoryComponent->GetTotalWeight()",
],
"AgrarianGamePlayerController.h": [
"AgrarianToggleInventoryUI",
],
"AgrarianGamePlayerController.cpp": [
"#include \"AgrarianDebugHUD.h\"",
"AgrarianToggleInventoryUI",
"bShowInventoryHUD = !AgrarianHUD->bShowInventoryHUD",
"MVP inventory UI shown.",
"MVP inventory UI hidden.",
],
"AGRARIAN_DEVELOPMENT_ROADMAP.md": [
"[x] Add inventory UI.",
"`AgrarianToggleInventoryUI`",
],
}
def main():
missing = []
for label, path in FILES.items():
text = path.read_text(encoding="utf-8")
for snippet in EXPECTED[label]:
if snippet not in text:
missing.append(f"{label}: {snippet}")
if missing:
raise RuntimeError("MVP inventory UI toggle verification failed: " + "; ".join(missing))
print("Agrarian MVP inventory UI toggle verification complete.")
if __name__ == "__main__":
main()