-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsafe_breaker.py
More file actions
495 lines (485 loc) · 20.2 KB
/
safe_breaker.py
File metadata and controls
495 lines (485 loc) · 20.2 KB
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
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
#Conner Dunn
#Safe Breaker v0.0.15
#Last Edited: Oct 23, 2012
import random
import time
endGame = False
hints = False
gameCompleteOnce = False
cheater = False
passwordGuess = 0
easyHighScore = ("N/A")
mediumHighScore = ("N/A")
hardHighScore = ("N/A")
extremeHighScore = ("N/A")
firstEasyHighScore = 0
firstMediumHighScore = 0
firstHardHighScore = 0
firstExtremeHighScore = 0
gameComplete = 0
def gameCompleted():
while True:
animationNumber = 5
sleepTimeNumber = 0.2
for x in range(animationNumber):
time.sleep(sleepTimeNumber)
print("""
/--\\
| |
\--/
""")
for x in range(animationNumber):
time.sleep(sleepTimeNumber)
print("""
/----\\
| |
| |
\----/
""")
for x in range(animationNumber):
time.sleep(sleepTimeNumber)
print("""
/------\\
| |
| |
| |
\------/
""")
for x in range(animationNumber):
time.sleep(sleepTimeNumber)
print("""
/---------\\
| |
| |
| |
| |
\---------/
""")
for x in range(animationNumber):
time.sleep(sleepTimeNumber)
print("""
/
/
/
/
/---------\\
| |
| |
| |
| |
\---------/
""")
for x in range(animationNumber):
time.sleep(sleepTimeNumber)
print("""
/
/
/ O-
/
/---------\\
| |
| |
| |
| |
\---------/
""")
for x in range(animationNumber):
time.sleep(sleepTimeNumber)
print("""
/
/ /-\____|_|
/ \-/
/
/---------\\
| |
| |
| |
| |
\---------/
""")
for x in range(animationNumber):
time.sleep(sleepTimeNumber)
print("""
/ _
/ /-\ /\ | |
/ | |-----------
\-/
-----\\
|
|
|
|
-----/
""")
break
print("""
_ ____
/ \ | |
/-----\ / \ | |
| |-------------------|
| |-------------------|
\-----/
""")
print("""
__
/ () _ _, ,_ _, _| |\ _, _|_ o _ , ||
| / \_/|/| / | / | / | / | | | |/ / | | | / \_/|/| / \_||
\___/\_/ | |_/\/|/ |/\/|_/\/|_/ \/|_/|_/\/|_/|_/|/\_/ | |_/ \/ oo
(|
(| | _ /| | _, _ /|/_) _ _, _|_
| | / \_| | |--| / | | |_|/ | \|/ / | |
\/|/\_/ \/|_/ | |)\/|_/ \/ |_/ |(_/|_/\/|_/|_/
(|
() _, |\ _ /|/_) ,_ _ _, |) _ ,_
/\ / | |/ |/ | \/ | |/ / | |/) |/ / |
/(_)\/|_/|_/|_/ |(_/ |/|_/\/|_/| \/|_/ |/
|)
""")
def correct():
while True:
for x in range(5):
print(" *")
print(" ***")
print(" *****")
print(" *******")
print("*********")
print(" *******")
print(" *****")
print(" ***")
print(" *")
break
print("""
__ _ _ _ __ __ ___ | |
/ / \ |_) |_) |_ / | | |
\__ \_/ | \ | \ |__ \__ | o o
""")
def easyPasswordCheck():
correctPosition = 0
number = ["no ","no "]
for i in range(len(passwordGuess)):
if passwordGuess[i] == passwordEasy[i]:
correctPosition = correctPosition + 1
print("-------------------------")
print("|" + str(correctPosition) +"/2 in correct position|")
for h in range(len(passwordGuess)):
for i in range(len(passwordEasy)):
if passwordGuess[h] == passwordEasy[i]:
number[h] = ("yes")
print("-------------------------")
print("|Number|Number in Code? |")
print("| " + passwordGuess[0] + " | " + str(number[0]) + " |")
print("| " + passwordGuess[1] + " | " + str(number[1]) + " |")
print("-------------------------")
print("")
def mediumPasswordCheck():
correctPosition = 0
number = ["no ","no ","no ","no "]
for i in range(len(passwordGuess)):
if passwordGuess[i] == passwordMedium[i]:
correctPosition = correctPosition + 1
print("-------------------------")
print("|" + str(correctPosition) +"/4 in correct position|")
for h in range(len(passwordGuess)):
for i in range(len(passwordMedium)):
if passwordGuess[h] == passwordMedium[i]:
number[h] = ("yes")
print("-------------------------")
print("|Number|Number in Code? |")
print("| " + passwordGuess[0] + " | " + str(number[0]) + " |")
print("| " + passwordGuess[1] + " | " + str(number[1]) + " |")
print("| " + passwordGuess[2] + " | " + str(number[2]) + " |")
print("| " + passwordGuess[3] + " | " + str(number[3]) + " |")
print("-------------------------")
print("")
def hardPasswordCheck():
correctPosition = 0
number = ["no ","no ","no ","no ","no ","no "]
for i in range(len(passwordGuess)):
if passwordGuess[i] == passwordHard[i]:
correctPosition = correctPosition + 1
print("-------------------------")
print("|" + str(correctPosition) +"/6 in correct position|")
for h in range(len(passwordGuess)):
for i in range(len(passwordHard)):
if passwordGuess[h] == passwordHard[i]:
number[h] = ("yes")
print("-------------------------")
print("|Number|Number in Code? |")
print("| " + passwordGuess[0] + " | " + str(number[0]) + " |")
print("| " + passwordGuess[1] + " | " + str(number[1]) + " |")
print("| " + passwordGuess[2] + " | " + str(number[2]) + " |")
print("| " + passwordGuess[3] + " | " + str(number[3]) + " |")
print("| " + passwordGuess[4] + " | " + str(number[4]) + " |")
print("| " + passwordGuess[5] + " | " + str(number[5]) + " |")
print("-------------------------")
print("")
def extremePasswordCheck():
correctPosition = 0
number = ["no ","no ","no ","no ","no ","no ","no ","no "]
for i in range(len(passwordGuess)):
if passwordGuess[i] == passwordExtreme[i]:
correctPosition = correctPosition + 1
print("-------------------------")
print("|" + str(correctPosition) +"/8 in correct position|")
for h in range(len(passwordGuess)):
for i in range(len(passwordExtreme)):
if passwordGuess[h] == passwordExtreme[i]:
number[h] = ("yes")
print("-------------------------")
print("|Number|Number in Code? |")
print("| " + passwordGuess[0] + " | " + str(number[0]) + " |")
print("| " + passwordGuess[1] + " | " + str(number[1]) + " |")
print("| " + passwordGuess[2] + " | " + str(number[2]) + " |")
print("| " + passwordGuess[3] + " | " + str(number[3]) + " |")
print("| " + passwordGuess[4] + " | " + str(number[4]) + " |")
print("| " + passwordGuess[5] + " | " + str(number[5]) + " |")
print("| " + passwordGuess[6] + " | " + str(number[6]) + " |")
print("| " + passwordGuess[7] + " | " + str(number[7]) + " |")
print("-------------------------")
print("")
print("""
____________________________________________
| __ _ _ _ _ _ _ _ |
| (_ /\ |_ |_ |_) |_) |_ /\ |/ |_ |_) |
| __) /--\ | |_ |_) | \ |_ /--\ |\ |_ | \ |
|____________________________________________|
---------------------------------------------
OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO
OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO
OOOOOOOOOOOO|\------------\OOOOOOOOOOOOOOOOOO
OOOOOOOOOOOO| \ \OOOOOOOOOOOOOOOOO
OOOOOOOOOOOO| \ \OOOOOOOOOOOOOOOO
OOOOOOOOOOOO| \ \OOOOOOOOOOOOOOO
OOOOOOOOOOOO| \------------|OOOOOOOOOOOOOO
OOOOOOOOOOOO| | |OOOOOOOOOOOOOO
OOOOOOOOOOOO| | /+\ |OOOOOOOOOOOOOO
OOOOOOOOOOOOO\ | |+X+| |OOOOOOOOOOOOOO
OOOOOOOOOOOOOO\ | \+/ |OOOOOOOOOOOOOO
OOOOOOOOOOOOOOO\ | |OOOOOOOOOOOOOO
OOOOOOOOOOOOOOOO\|------------|OOOOOOOOOOOOOO
OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO
OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO
---------------------------------------------
||||||||||------------------------|||||||||||
|||||||||| ...Starting Now... |||||||||||
||||||||||------------------------|||||||||||
---------------------------------------------
""")
while endGame == False:
userName = input("Please enter your name:")
while True:
print("Welcome " + str(userName) + ", please choose a difficulty")
while True:
if gameComplete == 4 and gameCompleteOnce == False:
gameCompleted()
gameCompleteOnce = True
easyCorrect = False
mediumCorrect = False
hardCorrect = False
extremeCorrect = False
easyGuesses = 0
mediumGuesses = 0
hardGuesses = 0
extremeGuesses = 0
passwordEasy = str(random.randint(0,99))
passwordMedium = str(random.randint(0,999))
passwordHard = str(random.randint(0,999999))
passwordExtreme = str(random.randint(0,99999999))
if cheater == True:
print("E:" + passwordEasy)
print("M:" + passwordMedium)
print("H:" + passwordHard)
print("E:" + passwordExtreme)
print("""
|[[-][-][-]]|
|1) Easy ||
|2) Medium ||
|3) Hard ||
|4) Extreme||
|5) Scores ||
|6) Hints? ||
|7) ShoPass||
|8) Exit ||
|[[-][-][-]]| """)
choice = input("Enter choice here:")
if choice == ("8"):
print("exit")
print("goodbye")
exit()
elif choice ==("7"):
shoPassInput = input("please enter password:")
if shoPassInput == ("iamacheater"):
cheater = True
else:
print("you're not a cheater")
cheater = False
elif choice == ("6"):
print("Hints after every 25 guesses, (1 for easy level)(2 for medium level)(3 for hard level)... Note:Extreme, has no help")
hintInput = input("Do you wish to enable hints?(y/n):")
if hintInput == ("y"):
print("Hints are enabled")
hints = True
if hintInput == ("n"):
print("Hints are disabled")
hints = False
elif choice == ("5"):
print("HighScores:")
print("Easy:" + str(easyHighScore))
print("Medium:" + str(mediumHighScore))
print("Hard:" + str(hardHighScore))
print("Extreme:" + str(extremeHighScore))
elif choice == ("1"):
print("im thinking of a 2 digit number, what am i?")
while easyCorrect == False:
passwordEasyLength = len(passwordEasy)
if passwordEasyLength == 1:
passwordEasy = ("0" + str(passwordEasy))
if easyGuesses == 0:
print("")
if easyGuesses == 25 and hints == True:
print("The first digit of the code is " + passwordEasy[0])
while True:
passwordGuess = str(input("enter a two digit number:"))
if len(passwordGuess) == 2:
break
else:
print("Please enter a two digit number")
easyPasswordCheck()
easyGuesses = easyGuesses + 1
if passwordGuess == passwordEasy:
correct()
print("Congrats, you guessed the password correctly in " + str(easyGuesses) + " guesses.")
if firstEasyHighScore < 1:
easyHighScore = 0
easyHighScore = easyHighScore + int(easyGuesses)
firstEasyHighScore = firstEasyHighScore + 1
gameComplete = gameComplete + 1
elif int(easyGuesses) < easyHighScore:
easyHighScore = 0
easyHighScore = easyHighScore + int(easyGuesses)
easyCorrect = True
elif choice == ("2"):
print("im thinking of a 4 digit number, what am i?")
while mediumCorrect == False:
passwordMediumLength = len(passwordMedium)
if passwordMediumLength == 1:
passwordMedium = ("000" + str(passwordMedium))
if passwordMediumLength == 2:
passwordMedium = ("00" + str(passwordMedium))
if passwordMediumLength == 3:
passwordMedium = ("0" + str(passwordMedium))
if mediumGuesses == 0:
print("")
if mediumGuesses == 25 and hints == True:
print("The first digit of the code is " + passwordMedium[0])
if mediumGuesses == 50 and hints ==True:
print("The first digit of the code is " + passwordMedium[0])
print("The second digit of the code is " + passwordMedium[1])
while True:
passwordGuess = str(input("enter a four digit number:"))
if len(passwordGuess) == 4:
break
else:
print("Please enter a four digit number")
mediumPasswordCheck()
mediumGuesses = mediumGuesses + 1
if passwordGuess == passwordMedium:
correct()
print("Congrats, you guessed the password correctly in " + str(mediumGuesses) + " guesses.")
if firstMediumHighScore < 1:
mediumHighScore = 0
mediumHighScore = mediumHighScore + int(mediumGuesses)
firstMediumHighScore = firstMediumHighScore + 1
gameComplete = gameComplete + 1
elif int(mediumGuesses) < mediumHighScore:
mediumHighScore = 0
mediumHighScore = mediumHighScore + int(mediumGuesses)
mediumCorrect = True
elif choice == ("3"):
print("im thinking of a 6 digit number, what am i?")
while hardCorrect == False:
passwordHardLength = len(passwordHard)
if passwordHardLength == 1:
passwordHard = ("00000" + str(passwordHard))
if passwordHardLength == 2:
passwordHard = ("0000" + str(passwordHard))
if passwordHardLength == 3:
passwordHard = ("000" + str(passwordHard))
if passwordHardLength == 4:
passwordHard = ("00" + str(passwordHard))
if passwordHardLength == 5:
passwordHard = ("0" + str(passwordHard))
if hardGuesses == 0:
print("")
if hardGuesses == 25 and hints == True:
print("The first digit of the code is " + passwordHard[0])
if hardGuesses == 50 and hints == True:
print("The first digit of the code is " + passwordHard[0])
print("The second digit of the code is " + passwordHard[1])
if hardGuesses == 75 and hints == True:
print("The first digit of the code is " + passwordHard[0])
print("The second digit of the code is " + passwordHard[1])
print("The third digit of the code is " + passwordHard[2])
while True:
passwordGuess = str(input("enter a six digit number:"))
if len(passwordGuess) == 6:
break
else:
print("Please enter a six digit number")
hardPasswordCheck()
hardGuesses = hardGuesses + 1
if passwordGuess == passwordHard:
correct()
print("Congrats, you guessed the password correctly in " + str(hardGuesses) + " guesses.")
if firstHardHighScore < 1:
hardHighScore = 0
hardHighScore = hardHighScore + int(hardGuesses)
firstHardHighScore = firstHardHighScore + 1
gameComplete = gameComplete + 1
elif int(hardGuesses) < hardHighScore:
hardHighScore = 0
hardHighScore = hardHighScore + int(hardGuesses)
hardCorrect = True
elif choice == ("4"):
print("im thinking of a 8 digit number, what am i?")
while extremeCorrect == False:
passwordExtremeLength = len(passwordExtreme)
if passwordExtremeLength == 1:
passwordExtreme = ("0000000" + str(passwordExtreme))
if passwordExtremeLength == 2:
passwordExtreme = ("000000" + str(passwordExtreme))
if passwordExtremeLength == 3:
passwordExtreme = ("00000" + str(passwordExtreme))
if passwordExtremeLength == 4:
passwordExtreme = ("0000" + str(passwordExtreme))
if passwordExtremeLength == 5:
passwordExtreme = ("000" + str(passwordExtreme))
if passwordExtremeLength == 6:
passwordExtreme = ("00" + str(passwordExtreme))
if passwordExtremeLength == 7:
passwordExtreme = ("0" + str(passwordExtreme))
if extremeGuesses == 0:
print("")
while True:
passwordGuess = str(input("enter a 8 digit number:"))
if len(passwordGuess) == 8:
break
else:
print("Please enter a 8 digit number")
extremePasswordCheck()
extremeGuesses = extremeGuesses + 1
if passwordGuess == passwordExtreme:
correct()
print("Congrats, you guessed the password correctly in " + str(extremeGuesses) + " guesses.")
if firstExtremeHighScore < 1:
extremeHighScore = 0
extremeHighScore = extremeHighScore + int(extremeGuesses)
firstExtremeHighScore = firstExtremeHighScore + 1
gameComplete = gameComplete + 1
elif int(extremeGuesses) < extremeHighScore:
extremeHighScore = 0
extremeHighScore = extremeHighScore + int(extremeGuesses)
extremeCorrect = True
else:
print("else")
break