57 lines
1.8 KiB
Python
57 lines
1.8 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": [
|
|
"bShowInteractionPrompt",
|
|
"PromptTextScale",
|
|
"DrawInteractionPrompt",
|
|
],
|
|
"AgrarianDebugHUD.cpp": [
|
|
"DrawInteractionPrompt(AgrarianCharacter)",
|
|
"HasInteractionPrompt()",
|
|
"GetInteractionPromptText()",
|
|
"[E] %s",
|
|
],
|
|
"AgrarianGamePlayerController.h": [
|
|
"AgrarianToggleInteractionPrompts",
|
|
],
|
|
"AgrarianGamePlayerController.cpp": [
|
|
"AgrarianToggleInteractionPrompts",
|
|
"bShowInteractionPrompt = !AgrarianHUD->bShowInteractionPrompt",
|
|
"MVP interaction prompts shown.",
|
|
"MVP interaction prompts hidden.",
|
|
],
|
|
"AGRARIAN_DEVELOPMENT_ROADMAP.md": [
|
|
"[x] Add interaction prompts.",
|
|
"`AgrarianToggleInteractionPrompts`",
|
|
],
|
|
}
|
|
|
|
|
|
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 interaction prompt toggle verification failed: " + "; ".join(missing))
|
|
|
|
print("Agrarian MVP interaction prompt toggle verification complete.")
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|