@@ -291,7 +291,7 @@ def open_terminal():
291
291
292
292
293
293
#BELOW IS THE DEBUG COMMANDLINE, DO NOT LEAVE ON FOR RELEASE!
294
- # elif text == 'DEBUG':
294
+ elif text == 'DEBUG' :
295
295
DEBUG_COMMANDLINE ()
296
296
297
297
@@ -330,32 +330,34 @@ def open_terminal():
330
330
331
331
#MAKE SURE THIS IS DISABLED BEFORE RELEASE!!!
332
332
def DEBUG_COMMANDLINE ():
333
-
334
- while True :
335
- text = prompt ('DEBUG COMMANDLINE >>> ' )
333
+ if DEBUG_ENABLE () == True :
336
334
337
- if text == 'VRRALSA' :
338
- VRRALSA_startup ()
335
+ while True :
336
+ text = prompt ( 'DEBUG COMMANDLINE >>> ' )
339
337
340
- elif text == 'WALKER ' :
341
- walker_entered ()
338
+ if text == 'VRRALSA ' :
339
+ VRRALSA_startup ()
342
340
343
- elif text == 'FROST ' :
344
- frostbyte_entered ()
341
+ elif text == 'WALKER ' :
342
+ walker_entered ()
345
343
346
- elif text == 'COMMANDS' :
347
- print ("commands:" )
348
- print ("VRRALSA" )
349
- print ("WALKER" )
350
- print ("FROST" )
351
- print ("EXIT" )
352
-
353
- elif text == 'EXIT' :
354
- break
344
+ elif text == 'FROST' :
345
+ frostbyte_entered ()
355
346
356
- else :
357
- print ("use COMMANDS if you forgot" )
347
+ elif text == 'COMMANDS' :
348
+ print ("commands:" )
349
+ print ("VRRALSA" )
350
+ print ("WALKER" )
351
+ print ("FROST" )
352
+ print ("EXIT" )
353
+
354
+ elif text == 'EXIT' :
355
+ break
358
356
357
+ else :
358
+ print ("use COMMANDS if you forgot" )
359
+ if DEBUG_ENABLE () == False :
360
+ print ("hahaha good try ( ̄y▽, ̄)╭ " )
359
361
360
362
361
363
@@ -460,9 +462,11 @@ def walker_entered():
460
462
461
463
# FROST EE STUFF OVER HERE!
462
464
def frostbyte_login ():
463
- userpassword = text = input_dialog (
465
+ userpassword = input_dialog (
464
466
title = 'frostbyte password input' ,
465
- text = 'frostbyte password:' ).run ()
467
+ text = 'frostbyte password:' ,
468
+ password = True ,
469
+ ).run ()
466
470
467
471
userpassword = userpassword .encode ('utf-8' )
468
472
@@ -473,6 +477,7 @@ def frostbyte_login():
473
477
474
478
475
479
480
+
476
481
# 2nd part to the FROST EE
477
482
def frostbyte_entered ():
478
483
@@ -626,21 +631,40 @@ def VRRALSA_COMMAND_PANEL():
626
631
print ("V.R.C.L. ERROR; KEYWORD DOES NOT LINK TO RECORD OR LOG. CHECK SPELLING, CAPS, OR OTHER." )
627
632
#END OF THE VRCL COMMAND SYSTEM
628
633
634
+ #BELOW IS THE DEBUG COMMANDLINE ENABLE, SET TO TRUE FOR IT TO WORK. FALSE FOR RELEASE
635
+ def DEBUG_ENABLE ():
636
+ return False
629
637
638
+ def DEBUG_STARTUP_DISABLE ():
639
+ return False
630
640
641
+ def STARTUP_DEBUG_CHECK ():
642
+ if DEBUG_STARTUP_DISABLE () == False :
643
+ check_for_update_plz ()
644
+ startup_screen_ascii_roll ()
645
+ loading_bars_combined_startup ()
646
+
647
+ if DEBUG_STARTUP_DISABLE () == True :
648
+ pass
631
649
632
- # Main system loop
633
- def game_loop ():
634
- check_for_update_plz ()
635
- startup_screen_ascii_roll ()
636
- loading_bars_intro_1 ()
637
- loading_bars_intro_2 ()
638
- loading_bars_intro_3 ()
650
+
651
+ def terminal_startup_combined ():
639
652
main_menu ()
640
653
message_of_the_day ()
641
654
timefetch ()
642
655
terminal_start_message ()
643
656
open_terminal ()
657
+
658
+ def loading_bars_combined_startup ():
659
+ loading_bars_intro_1 ()
660
+ loading_bars_intro_2 ()
661
+ loading_bars_intro_3 ()
662
+
663
+
664
+ # Main system loop
665
+ def game_loop ():
666
+ STARTUP_DEBUG_CHECK ()
667
+ terminal_startup_combined ()
644
668
645
669
while True :
646
670
#there is no code to run right before startup so there is a `pass` here.
0 commit comments