-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathterminal.py
130 lines (107 loc) · 4.09 KB
/
terminal.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
#
#
#
#
# Based from Fallout 3 and 4's terminal system while taking inspiration from old CRT terminals from the 60's.
# This project is designed to run in terminal or a terminal emulator, preferably in 'cool-retro-term'.
#
#
#
#
#
# ---------- Imports ----------
import logging
import var_RobCo
import sys_RobCo
import cmd_RobCo
import termS_RobCo
import e_RobCo
import mainCode_RobCo
import maint_RobCo
# ---------- Main Code ----------
logging.basicConfig(
filename='system/system-logs.log',
level=logging.INFO,
format='%(asctime)s - %(message)s',
datefmt='%Y-%m-%d %H:%M:%S'
)
sys_RobCo.e_log()
sys_RobCo.m_log(1, '')
termS_RobCo.locate_file_screen()
termS_RobCo.slide_up()
# terminal basic
termS_RobCo.header_("WELCOME TO ROBCO INDUSTRIES (TM) TERMLINK", " ", cmd_RobCo.char)
cmd_RobCo.char("capslock-input set: off")
sys_RobCo.m_log(2, '')
while True:
termS_RobCo.empty()
cmd_RobCo.input_char("> ")
terminalInput = input("")
if terminalInput == 'logon ' + var_RobCo.user:
sys_RobCo.log(1, 16, var_RobCo.user)
termS_RobCo.empty()
try:
stored_hashed_password = e_RobCo.read_password('user_info/password.txt')
except FileNotFoundError:
cmd_RobCo.char("Password file not found. Please reset/clear your password.txt")
break
cmd_RobCo.char("Enter password now")
termS_RobCo.empty()
cmd_RobCo.input_char("> ")
passwordInput = e_RobCo.encoded_input("")
if e_RobCo.verify_password(passwordInput, stored_hashed_password):
sys_RobCo.log(1, 74, '')
sys_RobCo.log(2, 100, var_RobCo.user)
mainCode_RobCo.main_code()
else:
cmd_RobCo.char("Incorrect password entered")
elif terminalInput == "set terminal/inquire":
sys_RobCo.log(1, 79, "")
termS_RobCo.empty()
cmd_RobCo.char("RIT-V300")
termS_RobCo.empty()
cmd_RobCo.input_char("> ")
InputCOMMANDline = input("")
if InputCOMMANDline == "set file/protection=owner:rwed accounts.f":
sys_RobCo.log(1, 80, "")
cmd_RobCo.input_char("> ")
InputCOMMANDline2 = input("")
if InputCOMMANDline2 == "set halt restart/maint":
sys_RobCo.log(2, 81, "")
termS_RobCo.empty()
with open(var_RobCo.maintenanceLogTXT, 'a') as file:
file.write(f"{var_RobCo.currentTime}: Maintenance Log: \n"
"Initialising Robco Industries(TM) MF Boot Agent v2.3.0 \nRETROS BIOS "
"\nRBIOS-4.02.08.00 "
"52EE5.E7.E8 \nCopyright 2201-2203 Robco Ind. \nUppermem: 64 KB \nRoot (5A8) "
"\nMaintenance Mode\n. \n. "
)
cmd_RobCo.char("Initialising Robco Industries(TM) MF Boot Agent v2.3.0 \nRETROS BIOS "
"\nRBIOS-4.02.08.00 "
"52EE5.E7.E8 \nCopyright 2201-2203 Robco Ind. \nUppermem: 64 KB \nRoot (5A8) "
"\nMaintenance "
"Mode")
termS_RobCo.empty()
cmd_RobCo.input_char("> ")
InputCOMMANDline3 = input("")
if InputCOMMANDline3 == "run debug/accounts.f":
sys_RobCo.log(2, 81, "")
termS_RobCo.slide_up()
maint_RobCo.t_inquire_code()
termS_RobCo.empty()
cmd_RobCo.char("? syntax error")
elif terminalInput == "help":
sys_RobCo.log(1, 12, "help_m")
termS_RobCo.empty()
termS_RobCo.slide_by_line("system/help-menu.txt", delay=0.03)
elif terminalInput == "clear":
sys_RobCo.log(1, 19, "@screen")
termS_RobCo.slide_up()
termS_RobCo.header_("WELCOME TO ROBCO INDUSTRIES (TM) TERMLINK", " ", print)
print("capslock-input set: off")
termS_RobCo.empty()
elif cmd_RobCo.handle_command(terminalInput):
continue
else:
termS_RobCo.empty()
cmd_RobCo.char("? syntax error")