-
Notifications
You must be signed in to change notification settings - Fork 1
/
Konsol.cs
343 lines (309 loc) · 14.4 KB
/
Konsol.cs
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
//using Cosmos.Debug.Kernel;
//using Cosmos.Debug;
//using System;
//using System.Collections.Generic;
//using System.Diagnostics;
//using System.Linq;
//using System.Text;
//using System.Threading.Tasks;
//using Sys = Cosmos.System;
//using System.Drawing;
//using System.Collections;
//using Cosmos.System.FileSystem.FAT;
//using Cosmos.HAL.BlockDevice;
//using Cosmos.System.FileSystem;
//using System.IO;
//using Cosmos.Core;
//// this is the class for the commands and all that.
//// kernel is the class which handles almost everything.
//namespace Descriptor
//{
// public class Konsol
// {
// public static void Clear(int times)
// {
// for (int i = 0; i < times; i++)
// {
// Console.WriteLine();
// }
// }
// public static void PrintS(string text)
// {
// Console.Write(CenterText(text));
// }
// public static void Print(string text)
// {
// Console.Write(text);
// }
// public static void Print(string text, ConsoleColor color)
// {
// Console.ForegroundColor = color;
// Console.Write(text);
// Console.ResetColor();
// }
// /// <summary>
// /// Changes the background color in the line you currently are in.
// /// (it changes the background color from the start of the line to the last word)
// /// </summary>
// /// <param name="color"></param>
// public static void ChangeBackgroundColor(ConsoleColor color)
// {
// Console.BackgroundColor = color;
// }
// public static void PrintS(string text, ConsoleColor color)
// {
// Console.ForegroundColor = color;
// Console.Write(CenterText(text));
// Console.ResetColor();
// }
// public static string CenterText(string text)
// {
// int consolewidth = 90;
// int padding = (consolewidth - text.Length) / 2;
// string centeredText = text.PadLeft(padding + text.Length).PadRight(consolewidth);
// return centeredText;
// }
// static void termcolor(string color)
// {
// // change term color
// switch (color)
// {
// case "White":
// Console.ForegroundColor = ConsoleColor.White;
// break;
// case "grey":
// Console.ForegroundColor = ConsoleColor.Gray;
// break;
// case "Green":
// Console.ForegroundColor = ConsoleColor.Green;
// break;
// case "blue":
// Console.ForegroundColor = ConsoleColor.Blue;
// break;
// case "lightblue":
// Console.ForegroundColor = ConsoleColor.Cyan;
// break;
// default:
// Console.WriteLine("Invalid color");
// break;
// }
// }
// public static void Konsole(string caret, string path)
// {
// //Console.Write(path + caret);
// //string input = Console.ReadLine();
// //if (string.IsNullOrWhiteSpace(input))
// //{
// // // this stops the crash whenever you put nothing in the command line
// // return;
// //}
// //string[] inputParts = input.Split(new char[] { ' ' }, StringSplitOptions.RemoveEmptyEntries);
// //string command = inputParts[0];
// //string[] arguments = new string[inputParts.Length - 1];
// //Array.Copy(inputParts, 1, arguments, 0, inputParts.Length - 1);
// //try
// //{
// // switch (command)
// // {
// // case "help":
// // PrintS("green - not harmful");
// // PrintS("yellow - eh");
// // PrintS("red - harmful in some way");
// // PrintS("help: print's the help text your reading", ConsoleColor.Green);
// // PrintS("exit: exit the program", ConsoleColor.Green);
// // PrintS("shutdown: shutdown the computer", ConsoleColor.Yellow);
// // PrintS("restart: restart the computer", ConsoleColor.Yellow);
// // PrintS("echo: prints out what you put in the args.", ConsoleColor.Green);
// // PrintS("ls: prints out everything in the directory.", ConsoleColor.Green);
// // PrintS("cat: prints out the contents of a file.", ConsoleColor.Green);
// // PrintS("rm: removes a file.", ConsoleColor.Yellow);
// // PrintS("echo [text] > [file]: puts the text in the file.", ConsoleColor.Green);
// // PrintS("Termcolor [color] changes the term color to a color set by the user.", ConsoleColor.Green);
// // PrintS("format: formats your drive into a format type", ConsoleColor.Red);
// // break;
// // case "ls":
// // var files_list = Directory.GetFiles(@"0:\\");
// // var directory_list = Directory.GetDirectories(@"0:\\");
// // foreach (var file in files_list)
// // {
// // if (file.EndsWith(".py"))
// // {
// // Print(file + " ", ConsoleColor.Green);
// // }
// // else if (file.EndsWith(".txt"))
// // {
// // Print(file + " ", ConsoleColor.White);
// // }
// // else if (file.EndsWith(".cs"))
// // {
// // Print(file + " ", ConsoleColor.Red);
// // }
// // else if (file.EndsWith(".bin"))
// // {
// // Print(file + " ", ConsoleColor.Yellow);
// // }
// // }
// // foreach (var directory in directory_list)
// // {
// // Console.WriteLine(directory + " ", ConsoleColor.DarkBlue);
// // }
// // Print("\n");
// // break;
// // case "cat":
// // if (arguments.Length == 0)
// // {
// // Print("cat [filename]\n", ConsoleColor.Red);
// // return;
// // }
// // string catFileName = "0:\\" + arguments[0];
// // try
// // {
// // using (FileStream fs = File.OpenRead(catFileName))
// // using (var sr = new StreamReader(fs))
// // {
// // string content = sr.ReadToEnd();
// // Console.WriteLine(content);
// // }
// // }
// // catch (Exception e)
// // {
// // Console.WriteLine("Error reading file: " + e.Message);
// // }
// // break;
// // case "rm":
// // if (arguments.Length == 0)
// // {
// // Print("rm [filename]\n", ConsoleColor.Red);
// // return;
// // }
// // string rmFileName = "0:\\" + arguments[0];
// // try
// // {
// // File.Delete(rmFileName);
// // }
// // catch (Exception e)
// // {
// // Console.WriteLine("Error removing file: " + e.Message);
// // }
// // break;
// // case "echo":
// // string output = string.Join(" ", arguments);
// // if (output.Contains(">"))
// // {
// // string[] parts = output.Split(new[] { '>' }, 2, StringSplitOptions.RemoveEmptyEntries);
// // if (parts.Length == 2)
// // {
// // string filename = "0:\\" + parts[1].Trim();
// // string textToAppend = parts[0].Trim();
// // if (!File.Exists(filename))
// // File.Create(filename);
// // try
// // {
// // using (StreamWriter sw = File.AppendText(filename))
// // {
// // Print("Writing to file: " + filename + "\n");
// // Print("Text to append: " + textToAppend + "\n");
// // sw.Write(textToAppend);
// // }
// // Print("Text appended to " + filename + "\n");
// // }
// // catch (Exception e)
// // {
// // Print("Error appending text to file: " + e.Message + "\n", ConsoleColor.Red);
// // }
// // }
// // else
// // {
// // Print("echo [text] > [filename]\n", ConsoleColor.Red);
// // }
// // }
// // else
// // {
// // Print(string.Join(" ", arguments) + "\n");
// // }
// // break;
// // case "exit":
// // Print("Exting\n", ConsoleColor.Red);
// // Print("Thank you for using Descriptor\n");
// // Print("by: OpenStudio\n", ConsoleColor.Yellow);
// // break;
// // case "disk":
// // long free = Kernel.fs.GetAvailableFreeSpace("0:\\");
// // if (((double)free / (1024 * 1024 * 1024)) > 0.9)
// // Print("Free Space: " + ((double)free / (1024 * 1024 * 1024)).ToString("0.##") + "GB\n");
// // else if (((double)free / (1024 * 1024)) > 1)
// // Print("Free Space: " + ((double)free / (1024 * 1024)).ToString("0.##") + "MB\n");
// // else
// // Print("Free Space: " + ((double)free / 1024).ToString("0") + "KB\n");
// // break;
// // case "Termcolor":
// // if (arguments.Length == 0)
// // {
// // Print("termcolor [White,grey,Green,blue,lightblue]\n", ConsoleColor.Red);
// // return;
// // }
// // string color = arguments[1];
// // termcolor(color);
// // break;
// // case "shutdown":
// // Sys.Power.Shutdown(); // shutdown is supported
// // break;
// // case "restart":
// // Sys.Power.Reboot(); // restart too
// // break;
// // case "format":
// // if (!arguments.Any())
// // {
// // Print("format [disk index] [format type]\n", ConsoleColor.Red);
// // return;
// // }
// // string diskindex = arguments[0];
// // if (arguments.Length < 2 || arguments[1] == null || string.IsNullOrWhiteSpace(arguments[1]))
// // {
// // Print($"format {diskindex} [format type]\n", ConsoleColor.Red);
// // return;
// // }
// // string format = arguments[1].ToUpper();
// // var index = int.Parse(diskindex);
// // try
// // {
// // Kernel.fs.Disks[index].FormatPartition(0, format);
// // Console.WriteLine("Disk formatted successfully.");
// // }
// // catch (Exception ex)
// // {
// // Console.WriteLine("Error formatting disk: " + ex.Message);
// // }
// // break;
// // default:
// // Print("invalid input: " + input + "\n", ConsoleColor.Red);
// // break;
// // }
// //}
// //catch (Exception e)
// //{
// // HandleKernelPanic(e);
// //}
// }
// public static void Kwelcome()
// {
// //PrintS("########################", ConsoleColor.Green);
// //PrintS("####---Descriptor---####", ConsoleColor.Green);
// //PrintS("########################", ConsoleColor.Green);
// //PrintS("########--V1.0--########", ConsoleColor.Green);
// //PrintS("########################", ConsoleColor.Green);
// //PrintS("########################", ConsoleColor.Green);
// //PrintS("#####--Created by--#####", ConsoleColor.Green);
// //PrintS("#####--OpenStudio--#####", ConsoleColor.Green);
// //PrintS("########################", ConsoleColor.Green);
// }
// public static void HandleKernelPanic(Exception ex)
// {
// //Print("Kernel Panic:\n", ConsoleColor.Red);
// //Print(ex.Message, ConsoleColor.Red);
// //Print("\n");
// //CPU.Halt();
// }
// }
//}