aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS-TheRevival/API/TerminalAPI.vb
blob: 10a62148cd792c20612c50363eb7c7d454b2d742 (plain) (blame)
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
Imports System.IO.Compression

Module TerminalAPI
    Public command As String
    Public AdvancedCommand As Boolean
    Public RawCommand As String
    Public IsConsoleParent As Boolean

    Public Sub InitializeTerminal()
        Strings.OnceInfo(1) = Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData) & "\ShiftOS\ShiftFS"
        Strings.OnceInfo(4) = "!"
        If IsConsoleParent = True Then
            Console.TopMost = False
            Cursor.Hide()
            Strings.OnceInfo(7) = Console.Width
            Strings.OnceInfo(8) = Console.Height
            If Strings.IsFree = True Then
                Strings.ComputerInfo(0) = "shiftos"
                Strings.ComputerInfo(1) = "user"
                Strings.ComputerInfo(7) = 1
                Terminal_CheckFeature()
                Terminal_PrintPrompt()
                Terminal_AssignPrompt()
            Else
                If StayAtChapter = True Then
                    LoadGame()
                    CheckNextChapterEligibility()
                    If NextChapter = True Then
                        StayAtChapter = False
                        InitializeTerminal()
                    Else
                        Terminal_CheckFeature()
                        Terminal_PrintPrompt()
                        Terminal_AssignPrompt()
                    End If
                Else
                    Select Case Strings.ComputerInfo(3)
                        Case 0
                            Console.TextBox1.ReadOnly = True
                            StayAtChapter = True
                            Console.StoryOnlyTimer.Start()
                        Case 1
                            Console.TextBox1.ReadOnly = True
                            StayAtChapter = True
                            Console.StoryOnlyTimer.Start()
                        Case Else
                            LoadGame()
                            Terminal_CheckFeature()
                            Terminal_PrintPrompt()
                            Terminal_AssignPrompt()
                    End Select
                End If
            End If
        Else
            Cursor.Show()
            Console_Windowed()
            Console.TopMost = True
            Terminal_PrintPrompt()
            Terminal_AssignPrompt()
        End If
        Console.CurrentDirectory = Strings.OnceInfo(1)
        Console.Pseudodir = Console.CurrentDirectory.Replace(Strings.OnceInfo(1), "!\")
        Console.CurrentInterpreter = "terminal"
        TextRebind()
    End Sub

    Public Sub Terminal_CheckFeature()
        If Strings.AvailableFeature(4) = "1" Then
            If Console.ToolBarUse = True Then
                If Strings.OnceInfo(2) = "True" Then
                    Console.InfoBarTimer.Start()
                    Console.TextBox1.Dock = DockStyle.None
                    Console.ToolBar.Visible = True
                    Console.ToolBar.SendToBack()
                    Console.InfoBar.Visible = True
                    Console.InfoBar.SendToBack()
                    Console.TextBox1.Dock = DockStyle.Fill
                Else
                    Console.TextBox1.Dock = DockStyle.None
                    Console.InfoBar.Visible = False
                    Console.ToolBar.Visible = True
                    Console.ToolBar.SendToBack()
                    Console.TextBox1.Dock = DockStyle.Fill
                End If
            Else
                If Strings.OnceInfo(2) = "True" Then
                    Console.InfoBarTimer.Start()
                    Console.TextBox1.Dock = DockStyle.None
                    Console.InfoBar.Visible = True
                    Console.InfoBar.SendToBack()
                    Console.ToolBar.Visible = False
                    Console.TextBox1.Dock = DockStyle.Fill
                Else
                    Console.TextBox1.Dock = DockStyle.None
                    Console.InfoBar.Visible = False
                    Console.ToolBar.Visible = False
                    Console.TextBox1.Dock = DockStyle.Fill
                End If
            End If
        Else
            Console.TextBox1.Dock = DockStyle.None
            Console.InfoBar.Visible = False
            Console.TextBox1.Dock = DockStyle.Fill
        End If
    End Sub

    Public Sub Terminal_ExecuteInput()
        Terminal_ReadCommand()
        If Strings.AvailableFeature(18) = 1 Then
            ShOSKey_InputCommand(command)
        End If
        Terminal_DoCommand()
        Terminal_PrintPrompt()
        TextRebind()
    End Sub

    Public Sub Terminal_ReadCommand()
        command = Console.TextBox1.Lines(Console.TextBox1.Lines.Length - 1)
        If Console.DefaultPrompt = Nothing Then
        Else
            command = command.Replace(Console.DefaultPrompt, "")
        End If
        RawCommand = command
        command = command.ToLower()
    End Sub

    Public Sub Terminal_PrintPrompt()
        If Console.TextBox1.Text = Nothing Then
            If Console.ChangeInterpreter = True Then
                NewLine(Console.DefaultPrompt)
            Else
                If Strings.OnceInfo(0) = "Yes" Then
                    ResetLine("root@" & Strings.ComputerInfo(0) & " #> ")
                Else
                    ResetLine(Strings.ComputerInfo(1) & "@" & Strings.ComputerInfo(0) & " $> ")
                End If
            End If
        Else
            If Console.ChangeInterpreter = True Then
                NewLine(Console.DefaultPrompt)
            Else
                If Strings.OnceInfo(0) = "Yes" Then
                    NewLine("root@" & Strings.ComputerInfo(0) & " #> ")
                Else
                    NewLine(Strings.ComputerInfo(1) & "@" & Strings.ComputerInfo(0) & " $> ")
                End If
            End If
        End If
    End Sub

    Public Sub Terminal_AssignPrompt()
        If Console.ChangeInterpreter = False Then
            If Strings.OnceInfo(0) = "Yes" Then
                Console.DefaultPrompt = "root@" & Strings.ComputerInfo(0) & " #> "
            Else
                Console.DefaultPrompt = Strings.ComputerInfo(1) & "@" & Strings.ComputerInfo(0) & " $> "
            End If
        End If
    End Sub

    Public Sub Terminal_RunTerminalFile(filename As String)
        Dim sr As System.IO.StreamReader
        If My.Computer.FileSystem.FileExists(Console.CurrentDirectory & "\" & filename) Then
            Dim fileext As New IO.FileInfo(Console.CurrentDirectory & "\" & filename)
            If fileext.Extension = ".scr" Then
                sr = My.Computer.FileSystem.OpenTextFileReader(Console.CurrentDirectory & "\" & filename)
                Dim linenum As Integer = IO.File.ReadAllLines(Console.CurrentDirectory & "\" & filename).Length
                Dim i As Integer = 1
                While i <= linenum
                    command = sr.ReadLine()
                    Terminal_DoCommand()
                    NewLine(Nothing)
                    i = i + 1
                End While
                sr.Close()
            Else

            End If
        End If
    End Sub

    Public Sub Terminal_DoCommand()
        AdvancedCommand = True
        Console.BadCommand = True
        Select Case command
            Case ""
                AdvancedCommand = False
                NormalCommand()
            Case "05tray"
                _05tray()
                NewLine("you cheater!")
            Case "applist"
                If IsStartG = True Then
                    AppList()
                    AdvancedCommand = False
                    NormalCommand()
                End If
            Case "bc"
                If Strings.AvailableFeature(9) = "1" Then
                    Console.ChangeInterpreter = True
                    BC_Start()
                    AdvancedCommand = False
                    NormalCommand()
                End If
            Case "clear"
                If Strings.AvailableFeature(1) = "1" Then
                    Clear()
                    AdvancedCommand = False
                    NormalCommand()
                End If
            Case "close"
                If IsConsoleParent = False Then
                    Console.Close()
                End If
            Case "codepoint"
                Codepoint()
                AdvancedCommand = False
                NormalCommand()
            Case "colors"
                Colors()
                AdvancedCommand = False
                NormalCommand()
            Case "date"
                Terminal_Date()
            Case "dir"
                If Strings.AvailableFeature(16) = "1" Then
                    TerminalDirectories(Console.CurrentDirectory)
                    AdvancedCommand = False
                    NormalCommand()
                End If
            Case "exit su"
                If Strings.OnceInfo(0) = "No" Then

                Else
                    AdvancedCommand = False
                    NormalCommand()
                    NewLine("Exitting root mode...")
                    Strings.OnceInfo(0) = "No"
                    Terminal_AssignPrompt()
                End If
            Case "guess"
                Console.ChangeInterpreter = True
                GTN_Start()
                AdvancedCommand = False
                NormalCommand()
                'Undeveloped()
            Case "guide"
                Guide()
                AdvancedCommand = False
                NormalCommand()
            Case "help"
                Help()
                AdvancedCommand = False
                NormalCommand()
            Case "infobar"
                If Strings.AvailableFeature(4) = 1 Then
                    NewLine(My.Resources.man_infobar)
                End If
            Case "mathquiz"
                If Strings.AvailableFeature(34) = 1 Then
                    MQ_Start()
                    AdvancedCommand = False
                    NormalCommand()
                End If
            Case "pwd"
                If Strings.AvailableFeature(16) = 1 Then
                    Pwd()
                    AdvancedCommand = False
                    NormalCommand()
                End If
            Case "reboot"
                If IsStartG = True Then
                    StopG()
                End If
                Console.TextBox1.Text = Nothing
                AdvancedCommand = False
                NormalCommand()
                SaveGame()
                InitializeTerminal()
            'Case "secure"
            '    Console.Secure = True
            '    Console.TextBox1.ReadOnly = True
            Case "shiftorium"
                NewLine(My.Resources.man_shiftorium)
                AdvancedCommand = False
                NormalCommand()
            Case "shiftfetch"
                If Strings.AvailableFeature(8) = "1" Then
                    Shiftfetch()
                    AdvancedCommand = False
                    NormalCommand()
                End If
            Case "shiftoriumfx"
                'ChangeInterpreter = True
                'AppHost("shiftoriumfx")
                AdvancedCommand = False
                NormalCommand()
                Undeveloped()
            Case "shutdown", "shut down"
                TerminateShiftOS()
            Case "startg"
                If Strings.AvailableFeature(35) = 1 Then
                    If IsStartG = False Then
                        StartG()
                        AdvancedCommand = False
                        NormalCommand()
                    End If
                End If
            Case "stopg"
                If Strings.AvailableFeature(35) = 1 Then
                    If IsStartG = True Then
                        StopG()
                        AdvancedCommand = False
                        NormalCommand()
                    End If
                End If
            Case "textpad"
                If Strings.AvailableFeature(17) = "1" Then
                    TextPad_WarnFile()
                    AdvancedCommand = False
                    NormalCommand()
                End If
            Case "time"
                If Strings.AvailableFeature(5) = 1 Then
                    Terminal_Time()
                    AdvancedCommand = False
                    NormalCommand()
                ElseIf Strings.AvailableFeature(5) = 3 Then
                    Terminal_Time()
                    AdvancedCommand = False
                    NormalCommand()
                End If
            Case "su"
                Terminal_Su()
                AdvancedCommand = False
                NormalCommand()
            Case "ver"
                Terminal_Version()
                AdvancedCommand = False
                NormalCommand()
        End Select

        If AdvancedCommand = True Then
            If command Like "app *" Then
                If IsStartG = True Then
                    App()
                    AdvancedCommand = False
                    NormalCommand()
                End If
            End If
            If command Like "cat *" Then
                If Strings.AvailableFeature(16) = 1 Then
                    CatFile(command.Substring(4))
                    AdvancedCommand = False
                    NormalCommand()
                End If
            End If
            If command Like "cd *" Then
                If Strings.AvailableFeature(16) = 1 Then
                    NavigateDir(command.Replace("cd ", ""))
                    AdvancedCommand = False
                    NormalCommand()
                End If
            End If
            If command Like "color *" Then
                GetColor("terminal", command.Substring(6, 1), command.Substring(7, 1))
                AdvancedCommand = False
                NormalCommand()
            End If
            If command Like "cowsay *" Then
                If Strings.AvailableFeature(22) = 1 Then
                    Cowsay(RawCommand.Substring(7))
                    NormalCommand()
                End If
            End If
            If command Like "del *" Then
                If Strings.AvailableFeature(16) = 1 Then
                    DeleteFile(RawCommand.Substring(4))
                    AdvancedCommand = False
                    NormalCommand()
                End If
            End If
            If command Like "hostname *" Then
                If Strings.AvailableFeature(20) = 1 Then
                    Hostname()
                    AdvancedCommand = False
                    NormalCommand()
                End If
            End If
            If command Like "infobar *" Then
                If Strings.AvailableFeature(4) = "1" Then
                    Infobar()
                End If
            End If
            If command Like "taskkill *" Then
                Taskkill()
                AdvancedCommand = False
                NormalCommand()
            End If
            If command Like "man *" Then
                If Strings.AvailableFeature(0) = "1" Then
                    Manual(command)
                End If
            End If
            If command Like "mkdir *" Then
                If Strings.AvailableFeature(16) Then
                    CreateDir(command.Replace("mkdir ", ""))
                    AdvancedCommand = False
                    NormalCommand()
                End If
            End If
            If command Like "print *" Then
                If Strings.AvailableFeature(2) = "1" Then
                    NewLine(RawCommand.Substring(6))
                    NormalCommand()
                    AdvancedCommand = False
                End If
            End If
            If command Like "ren '*' '*'" Then
                If Strings.AvailableFeature(31) = 1 Then
                    Rename()
                    NormalCommand()
                    AdvancedCommand = False
                End If
            End If
            If command Like "rev *" Then
                If Strings.AvailableFeature(21) = 1 Then
                    Reverse()
                    NormalCommand()
                    AdvancedCommand = False
                End If
            End If
            If command Like "rmdir *" Then
                If Strings.AvailableFeature(16) = 1 Then
                    RemoveDir(command.Replace("rmdir ", ""))
                    AdvancedCommand = False
                    NormalCommand()
                End If
            End If
            If command Like "run *" Then
                If Strings.AvailableFeature(30) = 1 Then
                    Terminal_RunTerminalFile(command.Substring(4))
                    AdvancedCommand = False
                    NormalCommand()
                End If
            End If
            If command Like "shiftorium *" Then
                Shiftorium()
            End If
            If command Like "textpad *" Then
                If Strings.AvailableFeature(17) = 1 Then
                    Console.ChangeInterpreter = True
                    command = RawCommand.Replace("textpad ", "")
                    TextPad_Start()
                    AdvancedCommand = False
                    NormalCommand()
                End If
            End If
            If command Like "username *" Then
                If Strings.AvailableFeature(19) = 1 Then
                    If command.Substring(9) = "root" Then
                        NewLine("This username is already taken!")
                    Else
                        Username()
                    End If
                    AdvancedCommand = False
                    NormalCommand()
                End If
            End If
            If command Like "unzip *" Then
                If Strings.AvailableFeature(33) = 1 Then
                    Unzip()
                End If
                AdvancedCommand = False
                NormalCommand()
            End If
            If command Like "zip *" Then
                If Strings.AvailableFeature(32) = 1 Then
                    Zip()
                End If
                AdvancedCommand = False
                NormalCommand()
            End If
        End If
        If Console.BadCommand = True Then
            NewLine("Bad command or wrong file name")
        End If
    End Sub

    Public Sub NormalCommand()
        Console.BadCommand = False
    End Sub
End Module