This repository was archived by the owner on May 10, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathMain.py
91 lines (75 loc) · 2.48 KB
/
Main.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
# Starting Data November 6, 2018
# Made By Cowboy8625
# Waste Land
__author__ = 'Cowboy8625', 'Cyy', 'BJTMastermind', 'HexTree', 'Byteme8bit', 'Giioke', 'ThePinkChicken', 'Djsurry'
# Import Modules
import sys
import time
from Mechanics.core_mechanics import *
from Mechanics.ui_mechanics import *
from script import Screen, Story
import ChangeLog
# Main() is the first function
# Gets input from player to either Start Load Help or Exit
def main():
choice = None # Initializes variable
while choice != '1': # Continues loop while choice is not to start the game - will change later
Screen.main_menu_screen()
choice = input('\n\nSELECT A NUMBER:> ')
if choice == '1': # Starts Game
main_game_loop(char_creation(), opening=True)
elif choice == '2': # LOADED AND SAVE
print('NOT AN OPTION YET')
time.sleep(2)
elif choice == '3': # Help
print('NOT AN OPTION YET')
time.sleep(2)
elif choice == '4':
ChangeLog.change_log_print()
pause()
elif choice == '5':
sys.exit()
else:
print("Not an Option.")
pause()
# main_game_loop() is where all the logic for the player to move about the map
# or any other event while not in a fight
def main_game_loop(player, opening=True):
if opening:
Story.intro_story(player)
input("Press Enter to continue: ")
opening = False
while True:
clear()
directions = {
"1": "North",
"2": "South",
"3": "East",
"4": "West"
}
choice = input(
"Which way do you want to travel?\n"
f"Coords: {player.pos_x}:{player.pos_y}\n\n"
"(1): North\n"
"(2): South\n"
"(3): East\n"
"(4): West\n"
"(5): Inspect Area\n"
"(6): Inventory\n"
"(7): Look For Resources\n"
"Input a Number:> ")
if choice in ['1', '2', '3', '4']:
player.move(directions[choice])
elif choice == "5":
player.inspect_area()
elif choice == "6":
inventory_mode(player)
elif choice == "7":
pass
elif choice == 'Quit': # QUIT, I'll take this out after testing
sys.exit()
else:
print(f'Invalid choice {choice}')
pause()
if __name__ == "__main__":
main()