From bf7828102015742dd9190c3837348ba2823f148e Mon Sep 17 00:00:00 2001 From: ch0ccyra1n <ch0ccyra1n@riseup.net> Date: Tue, 3 Sep 2024 11:15:33 -0700 Subject: [PATCH] read game data, accept user input, and sample game data --- main.py | 26 ++++++++++++++++++++++++++ sample.yaml | 14 ++++++++++++++ 2 files changed, 40 insertions(+) create mode 100644 main.py create mode 100644 sample.yaml diff --git a/main.py b/main.py new file mode 100644 index 0000000..1ce900a --- /dev/null +++ b/main.py @@ -0,0 +1,26 @@ +#!/usr/bin/env python + +import yaml + +def validate_encounter(encounter): + match encounter: + case "items": + raise ValueError("'items' is not a valid encounter") + case "exit": + exit() + case _: + run_encounter(encounter) + +def run_encounter(encounter): + print(encounter['scenario']) + print(encounter['choices']) + playerChoice = int(input()) + if playerChoice >= 0 and playerChoice <= 9: + validate_encounter(game[encounter['choices'][playerChoice]]) + else: + raise ValueError("Input is invalid\n") + +if __name__ == '__main__': + with open("sample.yaml", "r") as file: + game = yaml.safe_load(file) + validate_encounter(game['Title Screen']) diff --git a/sample.yaml b/sample.yaml new file mode 100644 index 0000000..d6f86a7 --- /dev/null +++ b/sample.yaml @@ -0,0 +1,14 @@ +Title Screen: + scenario: "Welcome to the sample game file! This is just for testing. Pick any of the encounters listed below to demonstrate different features of the engine." # Block of text + choices: ["Picking up an Item", "Multiple Choices", "Using an Item"] # Array of choices, will be listed +Picking up an Item: + scenario: "This encounter demonstrates that the player can pick up an item. By picking this option, you have picked up the 'Sword of Examples' and it has already saved to your inventory, which is located in the file 'save.yaml'.\nNote: This feature has not been implemented yet!" + pickups: ["Sword of Examples"] + choices: ["Title Screen"] + +items: # Data for all items in the game + Sword of Examples: + type: weapon + damage: 1 + maxDurability: 5 + description: "The Sword of Examples was forged from the brain of a very uncreative developer to demonstrate the ability to pick up items and how items can have stats."