-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.py
240 lines (215 loc) · 8.88 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
##MADE BY Buxx0-github.com/Buxx0###
###################################
###____####################___#####
##| _ \ / _ \ ###
##| |_) |_ ___ ____ _| | | |###
##| _ <| | | \ \/ /\ \/ / | | |###
##| |_) | |_| |> < > <| |_| |###
##|____/ \__,_/_/\_\/_/\_\\___/####
###################################
###################################
import random
from playsound import playsound
import time as t
import os
def choose_discrepency(discrepency_present):
possible_choices_1 = ["Y", "N"]
possible_choices_2 = ["NAME", "GENDER", "DOB", "EXP", "EXIT", "NAT"]
discrepency_choice = input("Do you want to check for discrepencies? [Y/N]").upper()
while discrepency_choice not in possible_choices_1:
discrepency_choice = input("Incorrect input, choose Y (yes) or N (no).").upper()
if discrepency_choice == "Y":
print("Type exit to exit the discrepency menu.")
parameter = input("Which parameter would you like to check? [NAME/GENDER/DOB/EXP/NAT].").upper()
while parameter != "EXIT":
while parameter not in possible_choices_2:
parameter = input("Incorrect input, choose NAME, GENDER, DOB or EXP.").upper()
if parameter == "EXP":
if discrepency_present == True:
print("!!! Discrepency detected! The document provided is expired. !!!")
else:
print("Matching data.")
elif parameter == "EXIT":
return None
else:
print("Matching data.")
print("Type exit to exit the discrepency menu.")
parameter = input("Which parameter would you like to check? [NAME/GENDER/DOB/EXP].").upper()
def check_discrepency(person, date):
if date[2] > person["expire"][2]:
return True
if date[2] == person["expire"][2]:
if date[1] > person["expire"][1]:
return True
if date[1] == person["expire"][1]:
if date[0] > person["expire"][0]:
return True
return False
def clear():
os.system('cls')
def passport_display(data):
dateofbirth = str(data['dob'][0]) + "/" + str(data['dob'][1]) + "/" + str(data['dob'][2])
expirydate = str(data['expire'][0]) + "/" + str(data['expire'][1]) + "/" + str(data['expire'][2])
print('''---------------------------------------------------------
&@@@@@@@@. |
@@@@@@@@@@@( |
@@@@@@@@@@@@ | NAME: {}
@@@@@@@@@@@@ | GENDER: {}
@@@@@@@@@ | DATE OF BIRTH: {}
@@@@@@ | EXPIRY DATE: {}
@@@@@@ | NATIONALITY: {}
@@@@@@@@@@@@@@@@@@ |
@@@@@@@@@@@@@@@@@@@@@@@@ |
---------------------------------------------------------'''.format(data["name"], data["gender"], dateofbirth,expirydate, data["nationality"].upper()))
def expire_date():
month_length = {1: 31, 3: 31, 4: 30, 5: 31, 6: 30, 7: 31, 8: 31, 9: 30, 10: 31, 11: 30, 12: 31}
year = random.randint(1981, 1988)
month = random.randint(1, 12)
if year % 4 == 0:
if year % 100 != 0:
if month == 2:
day = random.randint(1, 29)
else:
day = random.randint(1, month_length[month])
elif year % 100 == 0:
if year % 400 == 0:
if month == 2:
day = random.randint(1, 29)
else:
day = random.randint(1, month_length[month])
else:
if month == 2:
day = random.randint(1, 28)
else:
day = random.randint(1, month_length[month])
return (day, month, year)
def choose_gender():
'''Generates random gender.'''
gender = random.randint(0,1)
if gender == 0:
return "F"
elif gender == 1:
return "M"
def choose_birthdate():
'''Generates a random birthdate for a person that is from 18 to 62 years old in the games time (1982).'''
month_length = {1 : 31, 3 : 31, 4 : 30, 5 : 31, 6 : 30, 7 : 31, 8 : 31, 9 : 30, 10 : 31, 11 : 30, 12 : 31}
year = random.randint(1920, 1964)
month = random.randint(1, 12)
if year % 4 == 0:
if year % 100 != 0:
if month == 2:
day = random.randint(1, 29)
else:
day = random.randint(1, month_length[month])
elif year % 100 == 0:
if year % 400 == 0:
if month == 2:
day = random.randint(1, 29)
else:
day = random.randint(1, month_length[month])
else:
if month == 2:
day = random.randint(1, 28)
else:
day = random.randint(1, month_length[month])
return (day, month, year)
def choose_name_female():
'''Chooses a random female name from the list.'''
file = open(file = "femalefirstnames.txt")
content = file.readlines()
name = content[random.randint(0,1430)]
name = name[0:len(name) - 1]
return name.upper()
def choose_name_male():
'''Chooses a random male name from the list.'''
file = open(file="malefirstnames.txt")
content = file.readlines()
name = content[random.randint(0,4592)]
name = name[0:len(name) - 1]
return name.upper()
def choose_last_name():
'''Chooses a random last name from the list.'''
file = open(file="surnames.txt")
content = file.readlines()
surname = content[random.randint(0, 99386)]
surname = surname[0:len(surname) - 1]
return surname.upper()
def choose_full_name_gender():
'''This function uses three functions (choose_gender, choose_name_female, choose_name_male and choose_last_name)
and compiles them to form a full name with a specified gender.'''
gender = choose_gender()
if gender == "F":
first_name = choose_name_female()
elif gender == "M":
first_name = choose_name_male()
last_name = choose_last_name()
full_name = first_name + " " + last_name
return (full_name, gender)
def generate_person():
countries = ["Arstotzka", "Antegria", "Impor", "Kolechia", "Obristan", "Republia", "United Federation"]
name, gender = choose_full_name_gender()
dob = choose_birthdate()
weight = random.randint(57, 93)
height = random.randint(160, 195)
expire = expire_date()
nationality = countries[random.randint(0, 6)]
return {"name" : name, "gender" : gender, "dob" : dob, "weight" : weight, "height" : height,"expire" : expire, "nationality" : nationality}
def approve_deny(discrepency_present):
possible_choices = ["APPROVE", "DENY"]
approve = input("Do you want to [APPROVE] or [DENY] entry to this person?").upper()
while approve not in possible_choices:
approve = input("Incorrect input, please choose APPROVE or DENY.").upper()
if approve == "APPROVE":
print("You have approved entry to the person.")
if discrepency_present:
print("You have gotten a citation! There was a discrepency present!")
elif approve == "DENY":
print("You have denied entry to the person.")
if not discrepency_present:
print("You have gotten a citation! No discrepencies were present!")
def menu():
print('''
____ ___
| _ \ / _ \
| |_) |_ ___ ____ _| | | | ________________
| _ <| | | \ \/ /\ \/ / | | | |github.com/Buxx0|
| |_) | |_| |> < > <| |_| | ----------------
|____/ \__,_/_/\_\/_/\_\\\___/ Papers, Please.py
''')
t.sleep(3)
clear()
print("Please support the release of Papers, Please on steam, iOS and Android.")
print("And it's creator, LUCAS POPE.")
t.sleep(3)
clear()
def play():
month_length = {1: 31, 3: 31, 4: 30, 5: 31, 6: 30, 7: 31, 8: 31, 9: 30, 10: 31, 11: 30, 12: 31}
menu()
todaysdate = [10,11,1982]
while todaysdate != [31, 2, 1983]:
clear()
count = 0
maximum = random.randint(8, 14)
while count != maximum:
person = generate_person()
passport_display(person)
print("Today's date is: {}/{}/{}".format(todaysdate[0],todaysdate[1],todaysdate[2]))
discrepency_present = check_discrepency(person, todaysdate)
choose_discrepency(discrepency_present)
approve_deny(discrepency_present)
input("Press enter to call in the next person.")
clear()
count += 1
if todaysdate[0] == month_length[todaysdate[1]]:
if todaysdate[1] != 12:
todaysdate[1] += 1
else:
todaysdate[1] = 1
todaysdate[2] += 1
else:
todaysdate[0] += 1
clear()
print("The border closes for the day, and you walk home.")
t.sleep(3)
playsound("papers.mp3", False)
play()