@@ -291,7 +291,7 @@ def open_terminal():
291291
292292
293293 #BELOW IS THE DEBUG COMMANDLINE, DO NOT LEAVE ON FOR RELEASE!
294- # elif text == 'DEBUG':
294+ elif text == 'DEBUG' :
295295 DEBUG_COMMANDLINE ()
296296
297297
@@ -330,32 +330,34 @@ def open_terminal():
330330
331331#MAKE SURE THIS IS DISABLED BEFORE RELEASE!!!
332332def DEBUG_COMMANDLINE ():
333-
334- while True :
335- text = prompt ('DEBUG COMMANDLINE >>> ' )
333+ if DEBUG_ENABLE () == True :
336334
337- if text == 'VRRALSA' :
338- VRRALSA_startup ()
335+ while True :
336+ text = prompt ( 'DEBUG COMMANDLINE >>> ' )
339337
340- elif text == 'WALKER ' :
341- walker_entered ()
338+ if text == 'VRRALSA ' :
339+ VRRALSA_startup ()
342340
343- elif text == 'FROST ' :
344- frostbyte_entered ()
341+ elif text == 'WALKER ' :
342+ walker_entered ()
345343
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 ()
355346
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
358356
357+ else :
358+ print ("use COMMANDS if you forgot" )
359+ if DEBUG_ENABLE () == False :
360+ print ("hahaha good try ( ̄y▽, ̄)╭ " )
359361
360362
361363
@@ -460,9 +462,11 @@ def walker_entered():
460462
461463# FROST EE STUFF OVER HERE!
462464def frostbyte_login ():
463- userpassword = text = input_dialog (
465+ userpassword = input_dialog (
464466 title = 'frostbyte password input' ,
465- text = 'frostbyte password:' ).run ()
467+ text = 'frostbyte password:' ,
468+ password = True ,
469+ ).run ()
466470
467471 userpassword = userpassword .encode ('utf-8' )
468472
@@ -473,6 +477,7 @@ def frostbyte_login():
473477
474478
475479
480+
476481# 2nd part to the FROST EE
477482def frostbyte_entered ():
478483
@@ -626,21 +631,32 @@ def VRRALSA_COMMAND_PANEL():
626631 print ("V.R.C.L. ERROR; KEYWORD DOES NOT LINK TO RECORD OR LOG. CHECK SPELLING, CAPS, OR OTHER." )
627632#END OF THE VRCL COMMAND SYSTEM
628633
634+ #BELOW IS THE DEBUG COMMANDLINE ENABLE, SET TO TRUE FOR IT TO WORK.
635+ def DEBUG_ENABLE ():
636+ return True
629637
630638
631639
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 ()
640+
641+ def terminal_startup_combined ():
639642 main_menu ()
640643 message_of_the_day ()
641644 timefetch ()
642645 terminal_start_message ()
643646 open_terminal ()
647+
648+ def loading_bars_combined_startup ():
649+ loading_bars_intro_1 ()
650+ loading_bars_intro_2 ()
651+ loading_bars_intro_3 ()
652+
653+
654+ # Main system loop
655+ def game_loop ():
656+ check_for_update_plz ()
657+ startup_screen_ascii_roll ()
658+ loading_bars_combined_startup ()
659+ terminal_startup_combined ()
644660
645661 while True :
646662 #there is no code to run right before startup so there is a `pass` here.
0 commit comments