diff --git a/.gitignore b/.gitignore index ab3e8ce..30a8239 100644 --- a/.gitignore +++ b/.gitignore @@ -162,3 +162,4 @@ cython_debug/ # option (not recommended) you can uncomment the following to ignore the entire idea folder. #.idea/ +save.yaml diff --git a/main.py b/main.py index 1ce900a..ecb7682 100644 --- a/main.py +++ b/main.py @@ -1,6 +1,7 @@ #!/usr/bin/env python import yaml +import save def validate_encounter(encounter): match encounter: diff --git a/sample.yaml b/sample.yaml index d6f86a7..7f1e855 100644 --- a/sample.yaml +++ b/sample.yaml @@ -1,14 +1,8 @@ -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"] +titlescreen: + scenario: "Welcome to the sample game! There's not much here to do, but this will be used to demonstrate examples.\nBefore you is a table with a salad." + choices: ["eat salad"] + +eat salad: + scenario: "You ate the salad." + choices: ["exit"] -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." diff --git a/save.py b/save.py index 0472aa2..8e4e92d 100644 --- a/save.py +++ b/save.py @@ -17,29 +17,15 @@ def create_save_file(): print(path) f.close() -create_save_file() # write to file example -def write_save_file(): - prime_numbers = """ - - 2 - - 3 - - 5 - - 7 - - 11 - - 13 - - 17 - - 19 - """ - - primes = yaml.safe_load(prime_numbers) +def write_save_file(data): with open('save.yaml', 'w') as file: - yaml.dump(primes, file) + yaml.dump(data, file) # print for debugging print(open('save.yaml').read()) file.close() -write_save_file() # open file, read, save contents to variable def open_save_file(): @@ -50,4 +36,19 @@ def open_save_file(): # close file file.close() -open_save_file() +if __name__ == '__main__': + print("Beginning Save File Test...") + prime_numbers = """ + - 2 + - 3 + - 5 + - 7 + - 11 + - 13 + - 17 + - 19 + """ + primes = yaml.safe_load(prime_numbers) + create_save_file() + write_save_file(primes) + open_save_file()