turn save.py into importable module

This commit is contained in:
ch0ccyra1n 2024-09-09 13:31:24 -07:00
parent d64b9dccf0
commit ee6d3d3613
4 changed files with 27 additions and 30 deletions

1
.gitignore vendored
View file

@ -162,3 +162,4 @@ cython_debug/
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
#.idea/
save.yaml

View file

@ -1,6 +1,7 @@
#!/usr/bin/env python
import yaml
import save
def validate_encounter(encounter):
match encounter:

View file

@ -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."

35
save.py
View file

@ -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()