diff --git a/src/.vs/DremDOS/v16/.suo b/src/.vs/DremDOS/v16/.suo deleted file mode 100644 index c116520..0000000 Binary files a/src/.vs/DremDOS/v16/.suo and /dev/null differ diff --git a/src/DremDOS.sln b/src/DremDOS.sln index 726ee14..252a3fe 100644 --- a/src/DremDOS.sln +++ b/src/DremDOS.sln @@ -3,7 +3,7 @@ Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio Version 16 VisualStudioVersion = 16.0.32002.261 MinimumVisualStudioVersion = 10.0.40219.1 -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DremDOS", "DremDOS\DremDOS.csproj", "{C6928320-F3F3-4BFE-9BDB-3C53F09CB969}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DremDOS", "DremDOS\DremDOS.csproj", "{E2D8A648-A174-4667-AE66-D25A9E976625}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution @@ -11,15 +11,15 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {C6928320-F3F3-4BFE-9BDB-3C53F09CB969}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {C6928320-F3F3-4BFE-9BDB-3C53F09CB969}.Debug|Any CPU.Build.0 = Debug|Any CPU - {C6928320-F3F3-4BFE-9BDB-3C53F09CB969}.Release|Any CPU.ActiveCfg = Release|Any CPU - {C6928320-F3F3-4BFE-9BDB-3C53F09CB969}.Release|Any CPU.Build.0 = Release|Any CPU + {E2D8A648-A174-4667-AE66-D25A9E976625}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {E2D8A648-A174-4667-AE66-D25A9E976625}.Debug|Any CPU.Build.0 = Debug|Any CPU + {E2D8A648-A174-4667-AE66-D25A9E976625}.Release|Any CPU.ActiveCfg = Release|Any CPU + {E2D8A648-A174-4667-AE66-D25A9E976625}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE EndGlobalSection GlobalSection(ExtensibilityGlobals) = postSolution - SolutionGuid = {1E50E5E1-4BA7-4BEC-BC0C-A303DFE6A7C4} + SolutionGuid = {6262F00F-A1A7-4527-B16E-35ECD01B1C3C} EndGlobalSection EndGlobal diff --git a/src/DremDOS/Core/Console/Terminal.cs b/src/DremDOS/Core/Console/Terminal.cs new file mode 100644 index 0000000..87cb4c5 --- /dev/null +++ b/src/DremDOS/Core/Console/Terminal.cs @@ -0,0 +1,518 @@ +/* + * + * DremDOS + * Main Terminal Classs (Terminal.cs) + * + * Contains the main backend logic for Consoles. It includes the command parser and some basic commands. + * + */ + +using System; +using System.Collections.Generic; +using System.Text; +using Cosmos.System.Graphics; +using System.Drawing; + +namespace DremDOS.Core.Terminal +{ + class Terminal + { + private VGATerminal LinkedVGATerminal; + private char[] CommandBuffer = new char[1000]; + public bool ShowOutput = false; + private int CommandBufferCurrentLocation = 0; + + private Pen CurrentPen = new Pen(Color.White); + private string CurrentDirectory = @"0:\"; + + private bool ConsoleMode; + private bool RunCommandReady; + public Terminal(bool IsInConsoleMode) + { + Initialize(IsInConsoleMode); + } + + private void Initialize(bool IsInConsoleMode) + { + RunCommandReady = true; + ConsoleMode = IsInConsoleMode; + if (ConsoleMode) + { + ShowOutput = true; + } + InitializeBuffer(); // JUST in case Initialize has some extra stuff that needs done later. J U S T in case. + } + private void InitializeBuffer() + { + CommandBufferCurrentLocation = 0; + for (int i = 0; i < CommandBuffer.Length; i++) + { + CommandBuffer[i] = '\0'; + } + } + public void SetPen(Pen Color) { CurrentPen = Color; } + public void SetLinkedVGATerminal(VGATerminal Term) + { + LinkedVGATerminal = Term; + ShowOutput = true; + } + public void WriteToBuffer(char c) { + CommandBuffer[CommandBufferCurrentLocation] = c; + CommandBufferCurrentLocation+=1; + if (!ConsoleMode) { if (CommandBufferCurrentLocation == 0) { LinkedVGATerminal.CanBackspace = false; } else { LinkedVGATerminal.CanBackspace = true; } } + + if(ConsoleMode) + { + AppendText("" + c); + } + } + public void ClearBuffer() { InitializeBuffer(); LinkedVGATerminal.CanBackspace = false; } + public void BufferBackspace() { + if (CommandBufferCurrentLocation != 0) { + CommandBuffer[CommandBufferCurrentLocation - 1] = '\0'; + CommandBufferCurrentLocation--; + if (!ConsoleMode) { if (CommandBufferCurrentLocation == 0) { LinkedVGATerminal.CanBackspace = false; } else { LinkedVGATerminal.CanBackspace = true; } } + } else { + if (!ConsoleMode) { LinkedVGATerminal.CanBackspace = false; } + } + } + + public void EnterPressed() + { + if(RunCommandReady) + { + RunCommand(); + } + } + public void RunCommand() { + string temp = ""; + char nullchar = '\0'; + for(int i = 0; i < CommandBuffer.Length; i++) + { + if(CommandBuffer[i] == nullchar) { break; } + temp += CommandBuffer[i].ToString(); + } + //LinkedVGATerminal.AppendText("You entered: " + temp + "\n"); + RunCommand(temp); + + ClearBuffer(); + } + + private void AppendText(string Text) + { + if(ConsoleMode) + { + Console.Write(Text); + } else + { + LinkedVGATerminal.AppendText(Text); + } + return; + } + private void AppendText(string Text, Pen Color) + { + if (ConsoleMode) + { + Console.Write(Text); + } + else + { + LinkedVGATerminal.AppendText(Text, Color); + } + return; + } // I don't recommend using this as it makes single console mode ugly. + + private void AppendText(string Text, string Color) + { + if (ConsoleMode) + { + ConsoleColor PreviousForeground = Console.ForegroundColor; + ConsoleColor Foreground = StringToConsole(Color); + Console.ForegroundColor = Foreground; + Console.Write(Text); + Console.ForegroundColor = PreviousForeground; + + } + else + { + Console.Beep(100, 1000); + Pen ColorPen = StringToPen(Color); + Console.Beep(500, 1000); + LinkedVGATerminal.AppendText(Text, ColorPen); + } + return; + } // The above "AppendText" methods adds an ambiguity layer that lets the OS choose what to output the text to. Important for single console mode. + + private ConsoleColor StringToConsole(string ColorIn) + { + ConsoleColor Color; + Color = ConsoleColor.White; + + if (ColorIn == "Black") { + Color = ConsoleColor.Black; + } else if (ColorIn == "DarkBlue") { + Color = ConsoleColor.DarkBlue; + } else if (ColorIn == "DarkGreen") { + Color = ConsoleColor.DarkGreen; + } else if (ColorIn == "DarkCyan") { + Color = ConsoleColor.DarkCyan; + } else if (ColorIn == "DarkRed") { + Color = ConsoleColor.DarkRed; + } else if (ColorIn == "DarkMagenta") { + Color = ConsoleColor.DarkMagenta; + } else if (ColorIn == "DarkYellow") { + Color = ConsoleColor.DarkYellow; + } else if (ColorIn == "Gray") { + Color = ConsoleColor.Gray; + } else if (ColorIn == "DarkGray") { + Color = ConsoleColor.DarkGray; + } else if (ColorIn == "Blue") { + Color = ConsoleColor.Blue; + } else if (ColorIn == "Green") { + Color = ConsoleColor.Green; + } else if (ColorIn == "Cyan") { + Color = ConsoleColor.Cyan; + } else if (ColorIn == "Red") { + Color = ConsoleColor.Red; + } else if (ColorIn == "Magenta") { + Color = ConsoleColor.Magenta; + } else if (ColorIn == "Yellow") { + Color = ConsoleColor.Yellow; + } else if (ColorIn == "White") { + Color = ConsoleColor.White; + } // This hurts to look at + + return Color; + } + + private Pen StringToPen(string ColorIn) + { + Pen PenColor; + PenColor = new Pen(Color.FromName(ColorIn)); + + /*switch(ColorIn) // I'll only support some colors for now + { + case "White": + PenColor = new Pen(Color.White); + break; + case "Black": + PenColor = new Pen(Color.Black); + break; + + }*/ + + return PenColor; + } + + public void RunCommand(string cmd) + { + string[] arguments = GetArguments(cmd); + Console.Beep(500, 1000); + //RunCommand(arguments); + Command(); + //Console.Beep(1000, 1000); + } + + public void RunCommand(string[] arguments) + { + if (arguments[0] == "command") + { + //Console.Beep(1500, 1000); + Command(); + Console.Beep(2000, 1000); + } + else if (arguments[0] == "checktime") + { + if(ShowOutput) { AppendText(CheckTime()); } + } + else if (arguments[0] == "help") + { + if (ShowOutput) { Help(arguments); } + } + else if (arguments[0] == "beep") + { + Console.Beep(); + } + else if (arguments[0] == "clear") + { + if(ConsoleMode) + { + Console.Clear(); + } else + { + //LinkedVGATerminal.Clear(); Implement later + } + } + else + { + if (ShowOutput) { AppendText(@"ERROR: Bad Command!"); } + } + + if (ShowOutput) + { + AppendText("\n" + CurrentDirectory + " >"); + } + + ClearBuffer(); + } + + private void Command() { + if (ShowOutput) + { + /*AppendText(@" _..._" + '\n', "Blue"); // Blue + AppendText(@" ___ ___ ____ ____ ", "Red"); // Red + AppendText(@".: '." + '\n', "DarkBlue"); // Dark Blue + AppendText(@" / _ \_______ __ _ / _ \/ __ \/ __/ ", "Yellow"); // Yellow + AppendText(@"::::: :" + '\n', new Pen(Color.DarkBlue)); // Dark Blue + AppendText(@" / // / __/ -_) ' \/ // / /_/ /\ \ ", "Green"); // Green + AppendText(@"::::::: :" + '\n', "DarkMagenta"); // Dark Magenta + AppendText(@" /____/_/ \__/_/_/_/____/\____/___/ ", "Blue"); // Blue + AppendText(@"`::::::::.'" + '\n', "DarkMagenta"); // Dark Magenta + AppendText(@" `':::''" + '\n', "Magenta"); // Magenta + AppendText(Kernel._OS_NAME + " " + Kernel._OS_VERSION_FULL + "\n");*/ + AppendText("Pain"); + } + } + + private string CheckTime() + { + // Get the time/date and output it + string time = DateTime.Now.ToString(); + //LinkedVGATerminal.AppendText("{0}", time); + return time; + } + + private void Help(string[] arguments) + { + // Tests if the arguments has the correct length + if (arguments.Length >= 2) + { + // If command == [valid command], output information on the command + if (arguments[1] == "help") + { + AppendText("help - help menu or get help on a command\n"); + AppendText("help - get help on a specific command"); + } + else if (arguments[1] == "command") + { + AppendText("command - outputs information about DremDOS"); + } + else if (arguments[1] == "beep") + { + AppendText("beep - make the PC speaker go beep!\n"); + AppendText("beep