Massive commit so I can move computers

Note that this does not work at all. Following an update from an old userkit to the most recent one, the code broke. I'm still working on figuring out why it won't work.
This commit is contained in:
Innovation Inc 2022-10-13 19:46:20 -05:00
parent 3ea781af2b
commit 57de6e022b
14 changed files with 1431 additions and 828 deletions

Binary file not shown.

View file

@ -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

View file

@ -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 <command> - 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 <frequency> <time> - make a more specific beep");
}
else if (arguments[1] == "cls")
{
AppendText("cls - clear the screen");
}
else if (arguments[1] == "dir")
{
AppendText("dir - display all files and folders in the current directory");
}
else if (arguments[1] == "cd")
{
AppendText("cd - change the directory\n");
AppendText("cd <directory> - change to <directory>\n");
AppendText(" You can either specify a specific directory or relative directory.\n");
AppendText("cd .. - go up one directory");
}
else if (arguments[1] == "drivelist")
{
AppendText("drivelist - list all currently attached drives, their filesystems, and other information");
}
else if (arguments[1] == "checktime")
{
AppendText("checktime - check the time");
}
else if (arguments[1] == "calculate")
{
AppendText("calculate - a basic calculator\n");
AppendText("calculate <int> <operator> <int>");
}
else if (arguments[1] == "shutdown")
{
AppendText("shutdown - shut down the computer\n");
AppendText("shutdown /r - restart the computer");
}
else if (arguments[1] == "kitty")
{
AppendText("kitty - read and write files\n");
AppendText("kitty <file> [/r] [/w] [/nf] <text>\n");
AppendText("Example: kitty foo.txt /r\n");
AppendText(" Read foo.txt and output it to the screen\n");
AppendText("Example: kitty foo.txt /w \"bar\"\n");
AppendText(" Write \"bar\" to foo.txt (without quotes)");
AppendText("Example: kitty foo.txt /nf\n");
AppendText(" Create a new file named \"foo.txt\" in the current directory");
}
else if (arguments[1] == "rm")
{
AppendText("rm - remove a file from the drive\n");
AppendText("rm <file>");
}
else if (arguments[1] == "rmdir")
{
AppendText("rmdir - remove an empty directory\n");
AppendText("rmdir <directory>");
}
else if (arguments[1] == "mkdir")
{
AppendText("mkdir - create an empty directory\n");
AppendText("mkdir <directory>");
}
else if (arguments[1] == "copy")
{
AppendText("copy - copy a file\n");
AppendText("copy <source> <destination>\n");
AppendText("Note: Copy is currently very limited.");
}
else if (arguments[1] == "move")
{
AppendText("move - move a file\n");
AppendText("move <source> <destination>\n");
AppendText("Note: currently doesn't work");
}
else if (arguments[1] == "initgui")
{
AppendText("\nNotice: Not yet implemented!\n");
//AppendText("Usage: initgui [resolution] <color depth>");
AppendText("Usage: initgui [resolution]\n");
AppendText("\n");
AppendText("Available Resolutions:\n");
//AppendText(" 640x480 800x600 1024x768");
AppendText(" 800x600 1024x768 1280x720\n");
AppendText(" 1920x1080\n");
/*AppendText("");
AppendText("Available Color Depths:");
AppendText(" 4 8 16");
AppendText(" 24 32");*/
//AppendText(" 800x600 1024x768");
AppendText("\n");
AppendText("Example: initgui 800x600\n");
AppendText("\n");
//AppendText("Usage: initgui");
//AppendText("Initializes the experimental GUI.\nNote: No longer supports any resolution except 1024x768.");
}
else if (arguments[1] == "textop")
{
AppendText("\nNotice: Not yet implemented!\n");
AppendText("Usage: textop [console size]\n");
AppendText("\n");
AppendText("Available console sizes:\n");
//AppendText(" 640x480 800x600 1024x768");
//AppendText(" 1280x720 1366x768 1920x1080");
AppendText(" 80x25\n");
AppendText("\n");
AppendText("Example: textop 80x25\n");
AppendText("\n");
}
else if (arguments[1] == "ver")
{
AppendText("ver - display version");
}
else // Else, display the default help menu if the command requested in the first argument isn't valid
{
AppendText("DremDOS Help Menu\n\n");
AppendText("command - ouputs information about DremDOS\n");
AppendText("beep - make the PC speaker go beep!\n");
AppendText("cls - clear the screen\n");
AppendText("dir - display all files and folders in the current directory\n");
AppendText("cd - change the directory\n");
AppendText("drivelist - list all currently attached drives and their filesystems\n");
AppendText("checktime - check the time\n");
AppendText("calculate - a basic calculator\n");
AppendText("shutdown - shut down the computer\n");
AppendText("kitty - read and write files\n");
AppendText("rm - remove a file from the drive\n");
AppendText("rmdir - remove an empty directory\n");
AppendText("mkdir - create an empty directory\n");
AppendText("copy - copy a file\n");
AppendText("move - move a file\n");
AppendText("initgui - start the experimental desktop environment\n");
AppendText("textop - start the experimental Textop environment\n");
AppendText("ver - display version\n");
AppendText("help - help menu or get help on a command\n\n");
AppendText("Tip: Try help <command>");
}
}
else // Default help menu
{
// Ack I'm tired I'll figure this out later
AppendText("DremDOS Help Menu\n\n");
AppendText("command - ouputs information about DremDOS\n");
AppendText("beep - make the PC speaker go beep!\n");
AppendText("cls - clear the screen\n");
AppendText("dir - display all files and folders in the current directory\n");
AppendText("cd - change the directory\n");
AppendText("drivelist - list all currently attached drives and their filesystems\n");
AppendText("checktime - check the time\n");
AppendText("calculate - a basic calculator\n");
AppendText("shutdown - shut down the computer\n");
AppendText("kitty - read and write files\n");
AppendText("rm - remove a file from the drive\n");
AppendText("rmdir - remove an empty directory\n");
AppendText("mkdir - create an empty directory\n");
AppendText("copy - copy a file\n");
AppendText("move - move a file\n");
AppendText("initgui - start the experimental desktop environment\n");
AppendText("textop - start the experimental Textop environment\n");
AppendText("ver - display version\n");
AppendText("help - help menu or get help on a command\n\n");
AppendText("Tip: Try help <command>");
}
}
/*private string TrimString(string str)
{
string temp = "";
char[] charArray = temp.ToCharArray();
for (int i = 0; i < charArray.Length; i++)
{
if(charArray[i] != ' ')
{
temp += charArray[i];
}
}
return temp;
}*/
// Props to Çağrı
// https://stackoverflow.com/a/61112392/11500310
private string[] GetArguments(string cmd)
{
List<string> result = new List<string>();
var split1 = cmd.Split('"');
for (int i = 0; i < split1.Length; i++)
{
split1[i] = split1[i].Trim();
//split1[i] = TrimString(split1[i]); // string.Trim is no longer working.
}
for (int i = 0; i < split1.Length; i++)
{
if (i % 2 == 0)
{
var split2 = split1[i].Split(' ');
foreach (var el in split2)
{
result.Add(el);
}
}
else
{
result.Add(split1[i]);
}
}
string[] arr = new string[result.Count];
for (int i = 0; i < result.Count; i++)
{
arr[i] = result[i];
}
return arr;
}
}
}

View file

@ -0,0 +1,364 @@
/*
*
* DremDOS
* VGA Terminal Class (VGATerminal.cs)
*
* Contains the frontend part of Consoles. It's primary purpose is to be controlled by Terminal objects. It also has a graphical mode for graphical programs, if that's your thing.
*
*/
using System;
using System.Collections.Generic;
using System.Text;
using Sys = Cosmos.System;
using Cosmos.HAL.Drivers.PCI.Video;
using Cosmos.System.Graphics;
using System.Runtime.InteropServices;
using System.Diagnostics;
using Cosmos.System;
using System.Drawing;
using Cosmos.Core.IOGroup;
using Console = System.Console;
using DremDOS.Core.Graphics;
using DremDOS;
namespace DremDOS.Core.Terminal
{
class VGATerminal
{
public bool ShowCursor = false;
public bool EnableWrite = false;
public bool UseTerminal = true;
public string VGATerminalName = "Shh... let's not leak our hard work!";
public Pen BackgroundColor = new Pen(Color.Black);
public Pen ForegroundColor = new Pen(Color.White);
public bool CanBackspace = true;
private int PositionX;
private int PositionY;
private int TextWidth;
private int TextHeight;
private int CursorX = 0;
private int CursorY = 0;
private Cosmos.System.Graphics.Point PointXY;
private char[][] TextBuffer;
private Pen[][] ColorBuffer;
private bool Hidden = false;
private Terminal LinkedTerminal;
private Sys.Graphics.Fonts.PCScreenFont Font = Sys.Graphics.Fonts.PCScreenFont.Default;
private Canvas canvas = Kernel.GetCanvas();
//private Canvas ConsoleCanvas;
private Pen WhitePen = new Pen(Color.White);
private Pen BlackPen = new Pen(Color.Black);
public VGATerminal(Terminal Term, int TextWidth, int TextHeight, int PositionX, int PositionY)
{
Initialize(Term, TextWidth, TextHeight, PositionX, PositionY);
}
/*public VGATerminal(Terminal term, int TextWidth, int TextHeight, int PositionX, int PositionY)
{
Initialize(term, TextWidth, TextHeight, PositionX, PositionY);
}*/
private void Initialize(Terminal Term, int Width, int Height, int X, int Y)
{
PositionX = X;
PositionY = Y;
PointXY = new Cosmos.System.Graphics.Point(X, Y);
TextWidth = Width;
TextHeight = Height;
LinkedTerminal = Term;
// Initialize text buffer
TextBuffer = new char[Height][];
for (int i = 0; i<Height; i++) {
TextBuffer[i] = new char[Width];
for(int j = 0; j<Width; j++)
{
TextBuffer[i][j] = ' ';
}
}
// Initialize color buffer
ColorBuffer = new Pen[Height][];
for (int i = 0; i < Height; i++)
{
ColorBuffer[i] = new Pen[Width];
for (int j = 0; j < Width; j++)
{
ColorBuffer[i][j] = ForegroundColor;
}
}
}
private void MoveConsole(Canvas canvas, int PositionX, int PositionY)
{
}
public void WriteText(string Text, int x, int y) // Writes text to the TextBuffer. Sets associated ColorBuffer to white color (default).
{
Console.Beep(100, 1000);
//CoverCursor();
Console.Beep(250, 1000);
char[] Temp = Text.ToCharArray();
Console.Beep(500, 1000);
for (int i = 0; i < Temp.Length; i++)
{
if (Temp[i] == '\n') { NextLine(); y = CursorY; x = CursorX; }
else
{
Console.Beep(600, 500);
if (x > (TextWidth-1)) { NextLine(); x = CursorX; y = CursorY; }
Console.Beep(700, 500);
TextBuffer[y][x] = Temp[i];
Console.Beep(800, 500);
ColorBuffer[y][x] = ForegroundColor;
Console.Beep(900, 500);
if (!Hidden) UpdateCharacter(x, y);
Console.Beep(1000, 500);
x++;
}
}
Console.Beep(1500, 1000);
SetCursorPosition(x, y);
if(ShowCursor) { WriteCursor(); }
Console.Beep(2000, 1000);
}
public void WriteText(string Text, Pen Color, int x, int y) // Writes text to the TextBuffer. Lets the programmer set the string's color.
{
Console.Beep(750, 1000);
if (ShowCursor) { CoverCursor(); }
Console.Beep(1000, 1000);
char[] Temp = Text.ToCharArray();
Console.Beep(Temp.Length + 2000, 1000);
for (int i = 0; i < Text.Length; i++)
{
if (Temp[i] == '\n') { NextLine(); y = CursorY; x = CursorX; }
else
{
if (x > TextWidth - 1) { NextLine(); x = CursorX; y = CursorY; }
TextBuffer[y][x] = Temp[i];
ColorBuffer[y][x] = Color;
if (!Hidden) UpdateCharacter(x, y);
x++;
}
}
SetCursorPosition(x, y);
if (ShowCursor) { WriteCursor(); }
}
public void WriteText(string Text, Pen[] Color, int x, int y) // Writes text to the TextBuffer. Lets the programmer set each character's color.
{
if (ShowCursor) { CoverCursor(); }
char[] Temp = Text.ToCharArray();
for (int i = 0; i < Text.Length; i++)
{
if (Temp[i] == '\n') { NextLine(); y = CursorY; x = CursorX; }
else
{
if (x > TextWidth - 1) { NextLine(); x = CursorX; y = CursorY; }
TextBuffer[y][x] = Temp[i];
ColorBuffer[y][x] = Color[i];
if (!Hidden) UpdateCharacter(x, y);
x++;
}
}
SetCursorPosition(x, y);
if (ShowCursor) { WriteCursor(); }
}
public void AppendText(string Text) // Writes text to where the cursor is.
{
WriteText(Text, CursorX, CursorY);
}
public void AppendText(char Character) // Writes text to where the cursor is.
{
WriteText(Character.ToString(), CursorX, CursorY);
}
public void AppendText(string Text, Pen Color) // Writes text to where the cursor is, with a custom color.
{
WriteText(Text, Color, CursorX, CursorY);
}
public void InterpretKeyInput(ConsoleKeyInfo Character) // Writes text to where the cursor is.
{
if (Character.KeyChar == '\n') {
CoverCursor();
NextLine();
WriteCursor();
if (UseTerminal) LinkedTerminal.EnterPressed();
} else if (Character.KeyChar == '\b')
{
//if (CursorX == 0 && CursorY != 0) { SetCursorPosition(TextWidth-1, CursorY-1); } else { if (CursorX != 0) SetCursorPosition(CursorX-1, CursorY); }
if (CanBackspace)
{
if (CursorX == 0 && CursorY != 0) { LastLine(); return; } else { if (CursorX != 0) SetCursorPosition(CursorX - 1, CursorY); }
TextBuffer[CursorY][CursorX] = '\0';
canvas.DrawFilledRectangle(BackgroundColor, new Sys.Graphics.Point(PositionX + (CursorX * 8), PositionY + (CursorY * 16)), 8, 16);
UpdateCharacter(CursorX, CursorY);
WriteCursor();
}
if (UseTerminal) LinkedTerminal.BufferBackspace();
} else {
WriteText(Character.KeyChar.ToString(), CursorX, CursorY);
if (UseTerminal) SendToTerminal(Character.KeyChar);
}
}
public void SendToTerminal(char Send)
{
LinkedTerminal.WriteToBuffer(Send);
}
public void SendToTerminal(string Send)
{
char[] temp = Send.ToCharArray();
for(int i = 0; i < temp.Length; i++)
LinkedTerminal.WriteToBuffer(temp[i]);
}
public void RunTerminalCommand()
{
LinkedTerminal.RunCommand();
}
public void RunTerminalCommand(string Run)
{
LinkedTerminal.RunCommand(Run);
}
public void NextLine() // Makes the cursor go to the next line.
{
CursorX = 0;
if(CursorY >= TextHeight-1) { ScrollText(); } else { CursorY++; }
}
public void LastLine()
{
if(CursorY != 0)
{
for(int i = TextWidth-1; i >= 0; i--)
{
if(TextBuffer[CursorY-1][i] != '\0')
{
SetCursorPosition(i+1, CursorY - 1);
return;
}
}
SetCursorPosition(0, CursorY - 1);
}
}
public void ScrollText() // Scrolls text.
{
for(int i = 0; i < TextHeight-1; i++) { TextBuffer[i] = TextBuffer[i + 1]; }
TextBuffer[TextHeight-1] = new char[TextWidth];
for (int i = 0; i < TextHeight - 1; i++) { ColorBuffer[i] = ColorBuffer[i + 1]; }
ColorBuffer[TextHeight - 1] = new Pen[TextWidth];
for (int i = 0; i < TextWidth; i++) { ColorBuffer[TextHeight-1][i] = WhitePen; }
UpdateEntireScreen(true);
}
private void CoverCursor() // Draws a rectangle over the cursor.
{
if (ShowCursor)
{
if (CursorX != TextWidth)
{
canvas.DrawFilledRectangle(BackgroundColor, new Sys.Graphics.Point(PositionX + (CursorX * 8), (PositionY + ((CursorY + 1) * 16)) - 1), 7, 1);
}
else if (CursorY == TextHeight - 1)
{
return;
}
else
{
canvas.DrawFilledRectangle(BackgroundColor, new Sys.Graphics.Point(PositionX, (PositionY + ((CursorY + 2) * 16)) - 1), 7, 1);
}
}
}
private void WriteCursor() // Draws a white rectangle where the cursor is.
{
if (ShowCursor) {
if (CursorX != TextWidth)
{
canvas.DrawFilledRectangle(ForegroundColor, new Sys.Graphics.Point(PositionX + (CursorX * 8), (PositionY + ((CursorY + 1) * 16)) - 1), 7, 1);
} else if (CursorY == TextHeight - 1)
{
return;
} else
{
canvas.DrawFilledRectangle(ForegroundColor, new Sys.Graphics.Point(PositionX, (PositionY + ((CursorY + 2) * 16)) - 1), 7, 1);
}
}
}
public void UpdateEntireScreen(bool DoBlank) // This takes a VERY long time. It's recommended to make good use of the UpdateLine methods instead.
{
if (DoBlank) { canvas.DrawFilledRectangle(BackgroundColor, new Sys.Graphics.Point(PositionX, PositionY), TextWidth * 8, TextHeight * 16); }
//string Temp;
for(int i = 0; i<TextHeight; i++)
{
//Temp = "";
/*for (int j = 0; j<TextWidth; j++)
{
//Temp += TextBuffer[i][j];
canvas.DrawACSIIString(ColorBuffer[i][j], TextBuffer[i][j].ToString(), PositionX + (8 * j), PositionY + (16 * i));
//canvas.DrawString(TextBuffer[i][j].ToString(), Font, ColorBuffer[i][j], PositionX + (8 * j), PositionY + (16 * i));
//Console.Beep(1500, 50);
}*/
//canvas.DrawACSIIString(ColorBuffer[i][j], Temp, PositionX, PositionY + (16*i));
UpdateLine(i);
}
//CursorX = TextWidth;
//CursorY = TextHeight;
//CursorX = 0;
//CursorY = 0;
if (ShowCursor) { WriteCursor(); }
}
public void UpdateLine(int Line) // Updates a line
{
for (int i = 0; i < TextWidth; i++)
{
//canvas.DrawACSIIString(ColorBuffer[Line][i], TextBuffer[Line][i].ToString(), PositionX + (8 * i), PositionY + (16 * Line));
canvas.DrawString(TextBuffer[Line][i].ToString(), Font, ColorBuffer[Line][i], PositionX + (8 * i), PositionY + (16 * Line));
}
if(ShowCursor) { WriteCursor(); }
}
public void UpdateLine(int Line, int Start)
{
for (int i = Start; i < TextWidth; i++)
{
//canvas.DrawACSIIString(ColorBuffer[Line][i], TextBuffer[Line][i].ToString(), PositionX + (8 * i), PositionY + (16 * Line));
canvas.DrawString(TextBuffer[Line][i].ToString(), Font, ColorBuffer[Line][i], PositionX + (8 * i), PositionY + (16 * Line));
}
//CursorX = TextWidth;
//CursorY = Line;
if (ShowCursor) { WriteCursor(); }
}
public void UpdateLine(int Line, int Start, int End)
{
for (int i = Start; i < End; i++)
{
//canvas.DrawACSIIString(ColorBuffer[Line][i], TextBuffer[Line][i].ToString(), PositionX + (8 * i), PositionY + (16 * Line));
canvas.DrawString(TextBuffer[Line][i].ToString(), Font, ColorBuffer[Line][i], PositionX + (8 * i), PositionY + (16 * Line));
}
//CursorX = TextWidth;
//CursorY = End;
if (ShowCursor) { WriteCursor(); }
}
public void UpdateCharacter(int x, int y)
{
//canvas.DrawACSIIString(ColorBuffer[y][x], TextBuffer[y][x].ToString(), PositionX + (8 * x), PositionY + (16 * y));
canvas.DrawString(TextBuffer[y][x].ToString(), Font, ColorBuffer[y][x], PositionX + (8 * x), PositionY + (16 * y));
}
public void SetCursorPosition(int PosX, int PosY)
{
if (ShowCursor) { CoverCursor(); }
CursorX = PosX;
CursorY = PosY;
if (ShowCursor) { WriteCursor(); }
}
public void Hide() { Hidden = true; canvas.DrawFilledRectangle(BackgroundColor, new Sys.Graphics.Point(PositionX, PositionY), TextWidth * 8, TextHeight * 16); }
public void Show() { Hidden = false; UpdateEntireScreen(true); }
public bool IsHidden() { return Hidden; }
public int GetCursorX() { return CursorX; }
public int GetCursorY() { return CursorY; }
public int GetTextWidth() { return TextWidth; }
public int GetTextHeight() { return TextHeight; }
public char ReadCharacter(int x, int y) { return TextBuffer[y][x]; }
}
}

View file

@ -0,0 +1,166 @@
/*
*
* DremDOS
* Mouse Driver Class (MouseDriver.cs)
*
* Contains the mouse driver
*
*/
using System;
using System.Collections.Generic;
using System.Text;
using Sys = Cosmos.System;
using System;
using System.Collections.Generic;
using System.Text;
using Cosmos.HAL.Drivers.PCI.Video;
using Cosmos.System.Graphics;
using System.Runtime.InteropServices;
using System.Diagnostics;
using Cosmos.System;
using System.Drawing;
using Cosmos.Core.IOGroup;
using Console = System.Console;
using DremDOS.Core.Terminal;
using DremDOS.Core.Graphics;
using DremDOS.Core.Drivers;
using DremDOS.Core.Sound;
namespace DremDOS.Core.Drivers
{
public class MouseDriver
{
private bool MouseHasMoved = false;
public static ushort X
{
get
{
return (ushort)Sys.MouseManager.X;
}
}
public static ushort Y
{
get
{
return (ushort)Sys.MouseManager.Y;
}
}
public uint ScreenWidth
{
get
{
return Sys.MouseManager.ScreenWidth;
}
set
{
Sys.MouseManager.ScreenWidth = value;
}
}
public uint ScreenHeight
{
get
{
return Sys.MouseManager.ScreenHeight;
}
set
{
Sys.MouseManager.ScreenHeight = value;
}
}
public MouseDriver(uint screenWidth, uint screenHeight)
{
Sys.MouseManager.ScreenWidth = screenWidth;
Sys.MouseManager.ScreenHeight = screenHeight;
}
public static int LastDrawX { get; private set; } = 0;
public static int LastDrawY { get; private set; } = 0;
/*private readonly uint[][] LastDrawPosCols = new uint[20][]
{
new uint[20], new uint[20], new uint[20], new uint[20], new uint[20], new uint[20], new uint[20], new uint[20], new uint[20], new uint[20], new uint[20], new uint[20], new uint[20], new uint[20], new uint[20], new uint[20], new uint[20], new uint[20], new uint[20], new uint[20],
};*/
private readonly Color[][] LastDrawPosCols = new Color[20][]
{
new Color[20], new Color[20], new Color[20], new Color[20], new Color[20], new Color[20], new Color[20], new Color[20], new Color[20], new Color[20], new Color[20], new Color[20], new Color[20], new Color[20], new Color[20], new Color[20], new Color[20], new Color[20], new Color[20], new Color[20],
};
private readonly Color[][] MouseCols = new Color[20][]
{
new Color[20] { Color.Black, Color.Black, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent },
new Color[20] { Color.Black, Color.White, Color.Black, Color.Black, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent },
new Color[20] { Color.Black, Color.White, Color.White, Color.White, Color.Black, Color.Black, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent },
new Color[20] { Color.Black, Color.White, Color.White, Color.White, Color.White, Color.White, Color.Black, Color.Black, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent },
new Color[20] { Color.Black, Color.White, Color.White, Color.White, Color.White, Color.White, Color.White, Color.White, Color.Black, Color.Black, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent },
new Color[20] { Color.Black, Color.White, Color.White, Color.White, Color.White, Color.White, Color.White, Color.White, Color.White, Color.Black, Color.Black, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent },
new Color[20] { Color.Black, Color.White, Color.White, Color.White, Color.White, Color.White, Color.White, Color.White, Color.Black, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent },
new Color[20] { Color.Black, Color.White, Color.White, Color.White, Color.White, Color.White, Color.White, Color.Black, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent },
new Color[20] { Color.Black, Color.White, Color.White, Color.White, Color.White, Color.White, Color.White, Color.Black, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent },
new Color[20] { Color.Black, Color.White, Color.White, Color.White, Color.White, Color.White, Color.White, Color.White, Color.Black, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent },
new Color[20] { Color.Black, Color.White, Color.White, Color.White, Color.White, Color.White, Color.White, Color.White, Color.White, Color.Black, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent },
new Color[20] { Color.Black, Color.White, Color.White, Color.Black, Color.Black, Color.White, Color.White, Color.White, Color.White, Color.White, Color.Black, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent },
new Color[20] { Color.Black, Color.White, Color.Black, Color.Transparent, Color.Transparent, Color.Black, Color.White, Color.White, Color.White, Color.White, Color.White, Color.Black, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent },
new Color[20] { Color.Black, Color.Black, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent, Color.Black, Color.White, Color.White, Color.White, Color.White, Color.White, Color.Black, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent },
new Color[20] { Color.Black, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent, Color.Black, Color.White, Color.White, Color.White, Color.White, Color.White, Color.Black, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent },
new Color[20] { Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent, Color.Black, Color.White, Color.White, Color.White, Color.White, Color.White, Color.Black, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent },
new Color[20] { Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent, Color.Black, Color.White, Color.White, Color.White, Color.White, Color.White, Color.Black, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent },
new Color[20] { Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent, Color.Black, Color.White, Color.White, Color.White, Color.White, Color.White, Color.Black, Color.Transparent, Color.Transparent, Color.Transparent },
new Color[20] { Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent, Color.Black, Color.White, Color.White, Color.Black, Color.Black, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent },
new Color[20] { Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent, Color.Black, Color.Black, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent, Color.Transparent }
};
public void Draw(Canvas canvas)
{
if (LastDrawX != X || LastDrawY != Y)
{
DoDraw(LastDrawX, LastDrawY, canvas, LastDrawPosCols, false);
for (ushort x = 0; x < 20; x++) for (ushort y = 0; y < 20; y++) LastDrawPosCols[y][x] = canvas.GetPointColor((ushort)(X + x), (ushort)(Y + y));
LastDrawX = X;
LastDrawY = Y;
}
//DoDraw(X, Y, canvas, MouseCols, false);
}
private void DoDraw(int X, int Y, Canvas canvas, Color[][] mouseCol, bool allowBlack)
{
for (ushort x = 0; x < 20; x++) for (ushort y = 0; y < 20; y++) if (allowBlack || mouseCol[y][x] != Color.Transparent) canvas.DrawPoint(new Pen(mouseCol[y][x]), new Cosmos.System.Graphics.Point((ushort)(X + x), (ushort)(Y + y)));
//canvas.DrawACSIIString(new Cosmos.System.Graphics.Pen(Color.White), "]", X, Y);
}
public static int GetX()
{
return X;
}
public static int GetY()
{
return Y;
}
public static bool GetLeftClick()
{
if (Cosmos.System.MouseManager.MouseState == Cosmos.System.MouseState.Left)
{
return true;
}
return false;
}
public static bool GetRightClick()
{
if (Cosmos.System.MouseManager.MouseState == Cosmos.System.MouseState.Right)
{
return true;
}
return false;
}
public bool HasMoved()
{
if(!MouseHasMoved && (GetX() != 0 || GetY() != 0)) { MouseHasMoved = true; }
return MouseHasMoved;
}
}
}

File diff suppressed because one or more lines are too long

View file

@ -0,0 +1,104 @@
using System;
using System.Collections.Generic;
using System.Text;
using Sys = Cosmos.System;
using System;
using System.Collections.Generic;
using System.Text;
using Cosmos.HAL.Drivers.PCI.Video;
using Cosmos.System.Graphics;
using System.Runtime.InteropServices;
using System.Diagnostics;
using Cosmos.System;
using System.Drawing;
using Cosmos.Core.IOGroup;
using Console = System.Console;
using DremDOS.Core.Terminal;
using DremDOS.Core.Graphics;
using DremDOS.Core.Drivers;
using DremDOS.Core.Sound;
namespace DremDOS.Core.Graphics
{
class BUI
{
private static readonly Color[][] ArrowRight = new Color[14][]
{
new Color[14] { Color.Red, Color.Red, Color.Red, Color.Red, Color.Red, Color.Red, Color.Red, Color.Red, Color.Red, Color.Red, Color.Red, Color.Red, Color.Red, Color.Red },
new Color[14] { Color.Red, Color.Red, Color.Red, Color.Red, Color.Red, Color.Red, Color.Red, Color.Red, Color.Red, Color.Red, Color.Red, Color.Red, Color.Red, Color.Red },
new Color[14] { Color.Red, Color.Red, Color.Red, Color.Red, Color.Red, Color.Red, Color.Red, Color.Red, Color.Red, Color.Red, Color.Red, Color.Red, Color.Red, Color.Red },
new Color[14] { Color.Red, Color.Red, Color.Red, Color.Red, Color.Red, Color.Red, Color.Red, Color.Red, Color.Red, Color.Magenta, Color.Red, Color.Red, Color.Red, Color.Red },
new Color[14] { Color.Red, Color.Red, Color.Red, Color.Red, Color.Red, Color.Red, Color.Red, Color.Red, Color.Red, Color.Magenta, Color.Magenta, Color.Red, Color.Red, Color.Red },
new Color[14] { Color.Red, Color.Magenta, Color.Magenta, Color.Magenta, Color.Magenta, Color.Magenta, Color.Magenta, Color.Magenta, Color.Magenta, Color.Magenta, Color.Magenta, Color.Magenta, Color.Red, Color.Red },
new Color[14] { Color.Red, Color.Magenta, Color.Magenta, Color.Magenta, Color.Magenta, Color.Magenta, Color.Magenta, Color.Magenta, Color.Magenta, Color.Magenta, Color.Magenta, Color.Magenta, Color.Magenta, Color.Red },
new Color[14] { Color.Red, Color.Magenta, Color.Magenta, Color.Magenta, Color.Magenta, Color.Magenta, Color.Magenta, Color.Magenta, Color.Magenta, Color.Magenta, Color.Magenta, Color.Magenta, Color.Magenta, Color.Red },
new Color[14] { Color.Red, Color.Magenta, Color.Magenta, Color.Magenta, Color.Magenta, Color.Magenta, Color.Magenta, Color.Magenta, Color.Magenta, Color.Magenta, Color.Magenta, Color.Magenta, Color.Red, Color.Red },
new Color[14] { Color.Red, Color.Red, Color.Red, Color.Red, Color.Red, Color.Red, Color.Red, Color.Red, Color.Red, Color.Magenta, Color.Magenta, Color.Red, Color.Red, Color.Red },
new Color[14] { Color.Red, Color.Red, Color.Red, Color.Red, Color.Red, Color.Red, Color.Red, Color.Red, Color.Red, Color.Magenta, Color.Red, Color.Red, Color.Red, Color.Red },
new Color[14] { Color.Red, Color.Red, Color.Red, Color.Red, Color.Red, Color.Red, Color.Red, Color.Red, Color.Red, Color.Red, Color.Red, Color.Red, Color.Red, Color.Red },
new Color[14] { Color.Red, Color.Red, Color.Red, Color.Red, Color.Red, Color.Red, Color.Red, Color.Red, Color.Red, Color.Red, Color.Red, Color.Red, Color.Red, Color.Red },
new Color[14] { Color.Red, Color.Red, Color.Red, Color.Red, Color.Red, Color.Red, Color.Red, Color.Red, Color.Red, Color.Red, Color.Red, Color.Red, Color.Red, Color.Red }
};
private static readonly Color[][] ArrowLeft = new Color[14][]
{
new Color[14] { Color.Red, Color.Red, Color.Red, Color.Red, Color.Red, Color.Red, Color.Red, Color.Red, Color.Red, Color.Red, Color.Red, Color.Red, Color.Red, Color.Red },
new Color[14] { Color.Red, Color.Red, Color.Red, Color.Red, Color.Red, Color.Red, Color.Red, Color.Red, Color.Red, Color.Red, Color.Red, Color.Red, Color.Red, Color.Red },
new Color[14] { Color.Red, Color.Red, Color.Red, Color.Red, Color.Red, Color.Red, Color.Red, Color.Red, Color.Red, Color.Red, Color.Red, Color.Red, Color.Red, Color.Red },
new Color[14] { Color.Red, Color.Red, Color.Red, Color.Red, Color.Magenta, Color.Red, Color.Red, Color.Red, Color.Red, Color.Red, Color.Red, Color.Red, Color.Red, Color.Red },
new Color[14] { Color.Red, Color.Red, Color.Red, Color.Magenta, Color.Magenta, Color.Red, Color.Red, Color.Red, Color.Red, Color.Red, Color.Red, Color.Red, Color.Red, Color.Red },
new Color[14] { Color.Red, Color.Red, Color.Magenta, Color.Magenta, Color.Magenta, Color.Magenta, Color.Magenta, Color.Magenta, Color.Magenta, Color.Magenta, Color.Magenta, Color.Magenta, Color.Magenta, Color.Red },
new Color[14] { Color.Red, Color.Magenta, Color.Magenta, Color.Magenta, Color.Magenta, Color.Magenta, Color.Magenta, Color.Magenta, Color.Magenta, Color.Magenta, Color.Magenta, Color.Magenta, Color.Magenta, Color.Red },
new Color[14] { Color.Red, Color.Magenta, Color.Magenta, Color.Magenta, Color.Magenta, Color.Magenta, Color.Magenta, Color.Magenta, Color.Magenta, Color.Magenta, Color.Magenta, Color.Magenta, Color.Magenta, Color.Red },
new Color[14] { Color.Red, Color.Red, Color.Magenta, Color.Magenta, Color.Magenta, Color.Magenta, Color.Magenta, Color.Magenta, Color.Magenta, Color.Magenta, Color.Magenta, Color.Magenta, Color.Magenta, Color.Red },
new Color[14] { Color.Red, Color.Red, Color.Red, Color.Magenta, Color.Magenta, Color.Red, Color.Red, Color.Red, Color.Red, Color.Red, Color.Red, Color.Red, Color.Red, Color.Red },
new Color[14] { Color.Red, Color.Red, Color.Red, Color.Red, Color.Magenta, Color.Red, Color.Red, Color.Red, Color.Red, Color.Red, Color.Red, Color.Red, Color.Red, Color.Red },
new Color[14] { Color.Red, Color.Red, Color.Red, Color.Red, Color.Red, Color.Red, Color.Red, Color.Red, Color.Red, Color.Red, Color.Red, Color.Red, Color.Red, Color.Red},
new Color[14] { Color.Red, Color.Red, Color.Red, Color.Red, Color.Red, Color.Red, Color.Red, Color.Red, Color.Red, Color.Red, Color.Red, Color.Red, Color.Red, Color.Red},
new Color[14] { Color.Red, Color.Red, Color.Red, Color.Red, Color.Red, Color.Red, Color.Red, Color.Red, Color.Red, Color.Red, Color.Red, Color.Red, Color.Red, Color.Red }
};
private static readonly Color[][] CloseButton = new Color[14][]
{
new Color [43] { Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue },
new Color [43] { Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue },
new Color [43] { Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Magenta, Color.Magenta, Color.Magenta, Color.Magenta, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Magenta, Color.Magenta, Color.Magenta, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue },
new Color [43] { Color.Blue, Color.Blue, Color.Blue, Color.Magenta, Color.Magenta, Color.Blue, Color.Blue, Color.Magenta, Color.Magenta, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Magenta, Color.Magenta, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue },
new Color [43] { Color.Blue, Color.Blue, Color.Magenta, Color.Magenta, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Magenta, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Magenta, Color.Magenta, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue },
new Color [43] { Color.Blue, Color.Blue, Color.Magenta, Color.Magenta, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Magenta, Color.Magenta, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Magenta, Color.Magenta, Color.Magenta, Color.Magenta, Color.Magenta, Color.Blue, Color.Blue, Color.Blue, Color.Magenta, Color.Magenta, Color.Magenta, Color.Magenta, Color.Magenta, Color.Blue, Color.Blue, Color.Blue, Color.Magenta, Color.Magenta, Color.Magenta, Color.Magenta, Color.Magenta, Color.Blue, Color.Blue, Color.Blue },
new Color [43] { Color.Blue, Color.Blue, Color.Magenta, Color.Magenta, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Magenta, Color.Magenta, Color.Blue, Color.Blue, Color.Blue, Color.Magenta, Color.Magenta, Color.Blue, Color.Blue, Color.Blue, Color.Magenta, Color.Magenta, Color.Blue, Color.Magenta, Color.Magenta, Color.Blue, Color.Blue, Color.Blue, Color.Magenta, Color.Magenta, Color.Blue, Color.Magenta, Color.Magenta, Color.Blue, Color.Blue, Color.Blue, Color.Magenta, Color.Magenta, Color.Blue, Color.Blue },
new Color [43] { Color.Blue, Color.Blue, Color.Magenta, Color.Magenta, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Magenta, Color.Magenta, Color.Blue, Color.Blue, Color.Blue, Color.Magenta, Color.Magenta, Color.Blue, Color.Blue, Color.Blue, Color.Magenta, Color.Magenta, Color.Blue, Color.Blue, Color.Magenta, Color.Magenta, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Magenta, Color.Magenta, Color.Magenta, Color.Magenta, Color.Magenta, Color.Magenta, Color.Magenta, Color.Blue, Color.Blue },
new Color [43] { Color.Blue, Color.Blue, Color.Magenta, Color.Magenta, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Magenta, Color.Magenta, Color.Blue, Color.Blue, Color.Blue, Color.Magenta, Color.Magenta, Color.Blue, Color.Blue, Color.Blue, Color.Magenta, Color.Magenta, Color.Blue, Color.Blue, Color.Blue, Color.Magenta, Color.Magenta, Color.Magenta, Color.Blue, Color.Blue, Color.Blue, Color.Magenta, Color.Magenta, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue },
new Color [43] { Color.Blue, Color.Blue, Color.Magenta, Color.Magenta, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Magenta, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Magenta, Color.Magenta, Color.Blue, Color.Blue, Color.Blue, Color.Magenta, Color.Magenta, Color.Blue, Color.Blue, Color.Blue, Color.Magenta, Color.Magenta, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Magenta, Color.Magenta, Color.Blue, Color.Blue, Color.Magenta, Color.Magenta, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue },
new Color [43] { Color.Blue, Color.Blue, Color.Blue, Color.Magenta, Color.Magenta, Color.Blue, Color.Blue, Color.Magenta, Color.Magenta, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Magenta, Color.Magenta, Color.Blue, Color.Blue, Color.Blue, Color.Magenta, Color.Magenta, Color.Blue, Color.Blue, Color.Blue, Color.Magenta, Color.Magenta, Color.Blue, Color.Magenta, Color.Magenta, Color.Blue, Color.Blue, Color.Blue, Color.Magenta, Color.Magenta, Color.Blue, Color.Magenta, Color.Magenta, Color.Blue, Color.Blue, Color.Blue, Color.Magenta, Color.Magenta, Color.Blue, Color.Blue },
new Color [43] { Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Magenta, Color.Magenta, Color.Magenta, Color.Magenta, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Magenta, Color.Magenta, Color.Magenta, Color.Magenta, Color.Blue, Color.Blue, Color.Blue, Color.Magenta, Color.Magenta, Color.Magenta, Color.Magenta, Color.Magenta, Color.Blue, Color.Blue, Color.Blue, Color.Magenta, Color.Magenta, Color.Magenta, Color.Magenta, Color.Magenta, Color.Blue, Color.Blue, Color.Blue, Color.Magenta, Color.Magenta, Color.Magenta, Color.Magenta, Color.Magenta, Color.Blue, Color.Blue, Color.Blue },
new Color [43] { Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue },
new Color [43] { Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue }
};
private static readonly Color[][] NewButton = new Color[14][]
{
new Color [43] { Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue },
new Color [43] { Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue },
new Color [43] { Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Magenta, Color.Magenta, Color.Blue, Color.Blue, Color.Blue, Color.Magenta, Color.Magenta, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue },
new Color [43] { Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Magenta, Color.Magenta, Color.Magenta, Color.Blue, Color.Blue, Color.Magenta, Color.Magenta, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue },
new Color [43] { Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Magenta, Color.Magenta, Color.Magenta, Color.Magenta, Color.Blue, Color.Magenta, Color.Magenta, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue },
new Color [43] { Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Magenta, Color.Magenta, Color.Magenta, Color.Magenta, Color.Magenta, Color.Magenta, Color.Magenta, Color.Blue, Color.Blue, Color.Magenta, Color.Magenta, Color.Magenta, Color.Magenta, Color.Magenta, Color.Blue, Color.Blue, Color.Magenta, Color.Magenta, Color.Blue, Color.Blue, Color.Blue, Color.Magenta, Color.Magenta, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue },
new Color [43] { Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Magenta, Color.Magenta, Color.Blue, Color.Magenta, Color.Magenta, Color.Magenta, Color.Magenta, Color.Blue, Color.Magenta, Color.Magenta, Color.Blue, Color.Blue, Color.Blue, Color.Magenta, Color.Magenta, Color.Blue, Color.Magenta, Color.Magenta, Color.Blue, Color.Blue, Color.Blue, Color.Magenta, Color.Magenta, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue },
new Color [43] { Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Magenta, Color.Magenta, Color.Blue, Color.Blue, Color.Magenta, Color.Magenta, Color.Magenta, Color.Blue, Color.Magenta, Color.Magenta, Color.Magenta, Color.Magenta, Color.Magenta, Color.Magenta, Color.Magenta, Color.Blue, Color.Magenta, Color.Magenta, Color.Blue, Color.Magenta, Color.Blue, Color.Magenta, Color.Magenta, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue },
new Color [43] { Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Magenta, Color.Magenta, Color.Blue, Color.Blue, Color.Blue, Color.Magenta, Color.Magenta, Color.Blue, Color.Magenta, Color.Magenta, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Magenta, Color.Magenta, Color.Blue, Color.Magenta, Color.Blue, Color.Magenta, Color.Magenta, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue },
new Color [43] { Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Magenta, Color.Magenta, Color.Blue, Color.Blue, Color.Blue, Color.Magenta, Color.Magenta, Color.Blue, Color.Magenta, Color.Magenta, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Magenta, Color.Magenta, Color.Blue, Color.Magenta, Color.Blue, Color.Magenta, Color.Magenta, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue },
new Color [43] { Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Magenta, Color.Magenta, Color.Blue, Color.Blue, Color.Blue, Color.Magenta, Color.Magenta, Color.Blue, Color.Magenta, Color.Magenta, Color.Blue, Color.Blue, Color.Blue, Color.Magenta, Color.Magenta, Color.Blue, Color.Magenta, Color.Magenta, Color.Magenta, Color.Magenta, Color.Magenta, Color.Magenta, Color.Magenta, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue },
new Color [43] { Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Magenta, Color.Magenta, Color.Blue, Color.Blue, Color.Blue, Color.Magenta, Color.Magenta, Color.Blue, Color.Blue, Color.Magenta, Color.Magenta, Color.Magenta, Color.Magenta, Color.Magenta, Color.Blue, Color.Blue, Color.Blue, Color.Magenta, Color.Magenta, Color.Blue, Color.Magenta, Color.Magenta, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue },
new Color [43] { Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue },
new Color [43] { Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue, Color.Blue },
};
public static void DrawBUI(Canvas canvas)
{
for (ushort x = 0; x < 43; x++) for (ushort y = 0; y < 14; y++) canvas.DrawPoint(new Pen(NewButton[y][x]), new Sys.Graphics.Point((ushort)((Kernel._SCREEN_WIDTH - 268) + x), (ushort)(20 + y)));
for (ushort x = 0; x < 43; x++) for (ushort y = 0; y < 14; y++) canvas.DrawPoint(new Pen(CloseButton[y][x]), new Sys.Graphics.Point((ushort)((Kernel._SCREEN_WIDTH - 268) + x), (ushort)(20 + y)));
for (ushort x = 0; x < 14; x++) for (ushort y = 0; y < 14; y++) canvas.DrawPoint(new Pen(ArrowLeft[y][x]), new Sys.Graphics.Point((ushort)((Kernel._SCREEN_WIDTH - 268) + x), (ushort)(20 + y)));
//canvas.DrawACSIIString(new Pen(Color.Red), Kernel.CurrentConsole + " of " + Kernel.TotalConsoles, Kernel._SCREEN_WIDTH - 122, 20);
canvas.DrawString(Kernel.CurrentConsole + " of " + Kernel.TotalConsoles, Kernel.Font, new Pen(Color.Red), Kernel._SCREEN_WIDTH - 122, 20);
for (ushort x = 0; x < 14; x++) for (ushort y = 0; y < 14; y++) canvas.DrawPoint(new Pen(ArrowRight[y][x]), new Sys.Graphics.Point((ushort)((Kernel._SCREEN_WIDTH - 268) + x), (ushort)(20 + y)));
}
}
}

View file

@ -0,0 +1,84 @@
/*
*
* DremDOS
* Sound Class (Sound.cs)
*
* Contains Beep() function and more complex sounds
*
*/
using System;
using System.Collections.Generic;
using System.Text;
using System.IO;
using Sys = Cosmos.System;
namespace DremDOS.Core.Sound
{
public class Sound
{
public static void Beep(string[] arguments)
{
// Initialize variables
int frequency = 0;
int time = 0;
// Test if there are enough arguments
if (arguments.Length >= 2)
{
if (int.TryParse(arguments[0], out frequency) && int.TryParse(arguments[1], out time))
{
// Checks if the frequency is within the frequencies allowed by C#
if (frequency >= 37 && frequency <= 32767)
{
Console.Beep(frequency, time);
}
else // If one of the arguments can't be casted to an int, display the following error.
{
Console.Beep(1000, 100);
Console.Write("Error: Frequency must be between 37 and 32767Hz\n");
}
}
}
else // If there aren't enough arguments, do the default beep.
{
Console.Beep(1000, 1000);
}
}
public static void Shutdown()
{
Console.Beep(1975, 200);
Console.Beep(1318, 200);
Console.Beep(880, 200);
Console.Beep(987, 300);
}
public static void Startup()
{
Console.Beep(4000, 100);
Console.Beep(8000, 100);
}
public static void Dance()
{
Console.Beep(587, 100); // D
Console.Beep(659, 100); // E
Console.Beep(698, 100); // F
Console.Beep(659, 100); // E
Console.Beep(587, 100); // D
Console.Beep(587, 100); // D
Console.Beep(440, 100); // A
Console.Beep(440, 100); // A
Console.Beep(659, 100); // E
Console.Beep(659, 100); // E
Console.Beep(659, 100); // E
Console.Beep(587, 100); // D
Console.Beep(523, 150); // C
Console.Beep(587, 200); // D
Console.Beep(30000, 200); // N/A
Console.Beep(587, 200); // D
Console.Beep(30000, 200); // N/A
Console.Beep(523, 200); // C
Console.Beep(587, 200); // D
}
}
}

View file

@ -6,6 +6,16 @@
<Platform>cosmos</Platform>
<SupportsX86Intrinsics>false</SupportsX86Intrinsics>
<SelfContained>True</SelfContained>
<BinFormat>ELF</BinFormat>
<StackCorruptionDetectionEnabled>True</StackCorruptionDetectionEnabled>
<StackCorruptionDetectionLevel>MethodFooters</StackCorruptionDetectionLevel>
<Deployment>ISO</Deployment>
<DebugEnabled>True</DebugEnabled>
<DebugMode>Source</DebugMode>
<IgnoreDebugStubAttribute>False</IgnoreDebugStubAttribute>
<ISOFile>bin\Debug\net5.0\DremDOS.iso</ISOFile>
<CompileVBEMultiboot>False</CompileVBEMultiboot>
<ExtractMapFile>False</ExtractMapFile>
</PropertyGroup>
<PropertyGroup>
@ -19,6 +29,10 @@
<PxeInterface>192.168.0.8</PxeInterface>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DebugEnabled>False</DebugEnabled>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Cosmos.Build" Version="0-*" NoWarn="NU1604" />
<PackageReference Include="Cosmos.Debug.Kernel" Version="0-*" NoWarn="NU1604" />

View file

@ -50,6 +50,7 @@ namespace DremDOS
//private static VGATerminal ConsoleA = new VGATerminal(MainTerminal, 80, 25, 50, 50);
private static VGATerminal ConsoleA;
public static MouseDriver mouseDriver;
public static Sys.Graphics.Fonts.PCScreenFont Font;
//VMWareSVGAII driver;
private bool ConsoleMode;
@ -134,111 +135,129 @@ namespace DremDOS
if (!ConsoleMode)
{
Font = Sys.Graphics.Fonts.PCScreenFont.Default;
canvas = FullScreenCanvas.GetFullScreenCanvas(new Mode(_SCREEN_WIDTH, _SCREEN_HEIGHT, ColorDepth.ColorDepth32));
}
}
protected override void Run()
{
Terminal MainTerminal = new Terminal(ConsoleMode);
if (!ConsoleMode)
try
{
canvas.Clear(BorderColor);
canvas.Display();
MouseDriver mouseDriver = new MouseDriver(checked((uint)_SCREEN_WIDTH), checked((uint)_SCREEN_HEIGHT));
//VMWareSVGAII driver = new VMWareSVGAII();
//VMWareSVGAII driver = new VMWareSVGAII();
//driver.SetMode(checked((uint)_SCREEN_WIDTH), checked((uint)_SCREEN_HEIGHT));
//driver.Update(0, 0, checked((uint)_SCREEN_WIDTH), checked((uint)_SCREEN_HEIGHT));
VGATerminal ConsoleA = new VGATerminal(MainTerminal, (_SCREEN_WIDTH / 8) - 12, (_SCREEN_HEIGHT / 16) - 6, 50, 50);
ConsoleA.ShowCursor = true;
ConsoleA.EnableWrite = true;
MainTerminal.SetLinkedVGATerminal(ConsoleA);
MainTerminal.ShowOutput = true;
canvas.Clear(BorderColor);
canvas.Display();
canvas.DrawACSIIString(new Pen(Color.White), _OS_NAME + " " + _OS_VERSION_FULL, 50, 5);
canvas.DrawACSIIString(new Pen(Color.White), ConsoleA.VGATerminalName, 50, 20);
ConsoleA.UpdateEntireScreen(true);
int TempX;
int TempY;
BUI.DrawBUI(canvas);
BlackBoxHasBeenFixed = false;
}
if (!ConsoleMode)
{
ConsoleA.RunTerminalCommand("command");
} else
{
Console.Clear();
MainTerminal.RunCommand("command");
}
while (true)
{
//ConsoleKeyInfo inputchar = Console.ReadKey();
//ConsoleA.InterpretKeyInput(inputchar);
//ConsoleA.UpdateEntireScreen();
//int inputchar = Console.Read();
int InputCharInt = Console.Read();
//ConsoleKeyInfo InputChar = new ConsoleKeyInfo((char)InputCharInt, (ConsoleKey)InputCharInt, false, false, false);
if(InputCharInt != -1)
Terminal MainTerminal = new Terminal(ConsoleMode);
if (!ConsoleMode)
{
if (InputCharInt == 42) // Note: This will change to 8 once a bug with the PS/2 Controller is fixed
{
if (!ConsoleMode)
{
ConsoleA.InterpretKeyInput(new ConsoleKeyInfo('\b', ConsoleKey.Backspace, false, false, false));
} else
{
MainTerminal.BufferBackspace();
}
}
else if (InputCharInt == 47) // Some as the comment above except it'll be 13.
{
if (!ConsoleMode)
{
ConsoleA.InterpretKeyInput(new ConsoleKeyInfo('\n', ConsoleKey.Enter, false, false, false));
} else
{
MainTerminal.EnterPressed();
}
}
else
{
//ConsoleA.AppendText(((char)inputchar).ToString());
if (!ConsoleMode)
{
ConsoleA.InterpretKeyInput(new ConsoleKeyInfo((char)InputCharInt, ConsoleKey.NoName, false, false, false));
} else
{
MainTerminal.WriteToBuffer((char)InputCharInt);
}
}
}
canvas.Clear(BorderColor);
canvas.Display();
MouseDriver mouseDriver = new MouseDriver(checked((uint)_SCREEN_WIDTH), checked((uint)_SCREEN_HEIGHT));
//VMWareSVGAII driver = new VMWareSVGAII();
//VMWareSVGAII driver = new VMWareSVGAII();
//driver.SetMode(checked((uint)_SCREEN_WIDTH), checked((uint)_SCREEN_HEIGHT));
//driver.Update(0, 0, checked((uint)_SCREEN_WIDTH), checked((uint)_SCREEN_HEIGHT));
VGATerminal ConsoleA = new VGATerminal(MainTerminal, (_SCREEN_WIDTH / 8) - 12, (_SCREEN_HEIGHT / 16) - 6, 50, 50);
ConsoleA.ShowCursor = true;
ConsoleA.EnableWrite = true;
//Console.Beep(100, 100);
MainTerminal.SetLinkedVGATerminal(ConsoleA);
MainTerminal.ShowOutput = true;
//Console.Beep(500, 100);
canvas.Clear(BorderColor);
canvas.Display();
//Console.Beep(1000, 100);
//canvas.DrawACSIIString(WhitePen, _OS_NAME + " " + _OS_VERSION_FULL, 50, 5);
//canvas.DrawACSIIString(WhitePen, ConsoleA.VGATerminalName, 50, 20);
canvas.DrawString(_OS_NAME + " " + _OS_VERSION_FULL, Font, WhitePen, 50, 5);
canvas.DrawString(ConsoleA.VGATerminalName, Font, WhitePen, 50, 20);
//Console.Beep(1500, 1000);
ConsoleA.UpdateEntireScreen(true);
//Console.Beep(2000, 1000);
int TempX;
int TempY;
BUI.DrawBUI(canvas);
canvas.Display();
BlackBoxHasBeenFixed = false;
}
if (!ConsoleMode)
{
mouseDriver.Draw(canvas);
canvas.Display();
//driver.Update(0, 0, checked((uint)_SCREEN_WIDTH), checked((uint)_SCREEN_HEIGHT));
// Quick and dirty solution but dammit it works.
if (!BlackBoxHasBeenFixed && mouseDriver.HasMoved())
//ConsoleA.RunTerminalCommand("command");
}
else
{
Console.Clear();
MainTerminal.RunCommand("command");
}
ConsoleA.WriteText("Hello World!", 0, 0);
Console.Beep(2500, 1000);
while (true)
{
//Console.Beep(3000, 1000);
//ConsoleKeyInfo inputchar = Console.ReadKey();
//ConsoleA.InterpretKeyInput(inputchar);
//ConsoleA.UpdateEntireScreen();
//int inputchar = Console.Read();
int InputCharInt = Console.Read();
//ConsoleKeyInfo InputChar = new ConsoleKeyInfo((char)InputCharInt, (ConsoleKey)InputCharInt, false, false, false);
if (InputCharInt != -1)
{
canvas.DrawFilledRectangle(BorderPen, new Sys.Graphics.Point(0, 0), 20, 20);
BlackBoxHasBeenFixed = true;
if (InputCharInt == 42) // Note: This will change to 8 once a bug with the PS/2 Controller is fixed
{
if (!ConsoleMode)
{
ConsoleA.InterpretKeyInput(new ConsoleKeyInfo('\b', ConsoleKey.Backspace, false, false, false));
}
else
{
MainTerminal.BufferBackspace();
}
}
else if (InputCharInt == 47) // Some as the comment above except it'll be 13.
{
if (!ConsoleMode)
{
ConsoleA.InterpretKeyInput(new ConsoleKeyInfo('\n', ConsoleKey.Enter, false, false, false));
}
else
{
MainTerminal.EnterPressed();
}
}
else
{
//ConsoleA.AppendText(((char)inputchar).ToString());
if (!ConsoleMode)
{
ConsoleA.InterpretKeyInput(new ConsoleKeyInfo((char)InputCharInt, ConsoleKey.NoName, false, false, false));
}
else
{
MainTerminal.WriteToBuffer((char)InputCharInt);
}
}
}
if (!ConsoleMode)
{
//mouseDriver.Draw(canvas);
canvas.Display();
//driver.Update(0, 0, checked((uint)_SCREEN_WIDTH), checked((uint)_SCREEN_HEIGHT));
// Quick and dirty solution but dammit it works.
if (!BlackBoxHasBeenFixed && mouseDriver.HasMoved())
{
canvas.DrawFilledRectangle(BorderPen, new Sys.Graphics.Point(0, 0), 20, 20);
BlackBoxHasBeenFixed = true;
}
}
}
} catch
{
}
}

View file

@ -1,92 +0,0 @@
{
"format": 1,
"restore": {
"C:\\Users\\Sam\\source\\repos\\NewDremdos\\DremDOS\\DremDOS\\DremDOS.csproj": {}
},
"projects": {
"C:\\Users\\Sam\\source\\repos\\NewDremdos\\DremDOS\\DremDOS\\DremDOS.csproj": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "C:\\Users\\Sam\\source\\repos\\NewDremdos\\DremDOS\\DremDOS\\DremDOS.csproj",
"projectName": "DremDOS",
"projectPath": "C:\\Users\\Sam\\source\\repos\\NewDremdos\\DremDOS\\DremDOS\\DremDOS.csproj",
"packagesPath": "C:\\Users\\Sam\\.nuget\\packages\\",
"outputPath": "C:\\Users\\Sam\\source\\repos\\NewDremdos\\DremDOS\\DremDOS\\obj\\",
"projectStyle": "PackageReference",
"fallbackFolders": [
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages",
"C:\\Program Files (x86)\\Microsoft\\Xamarin\\NuGet\\"
],
"configFilePaths": [
"C:\\Users\\Sam\\AppData\\Roaming\\NuGet\\NuGet.Config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config",
"C:\\Program Files (x86)\\NuGet\\Config\\Xamarin.Offline.config"
],
"originalTargetFrameworks": [
"net5.0"
],
"sources": {
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
"C:\\Users\\Sam\\AppData\\Roaming\\Cosmos User Kit\\packages\\": {},
"https://api.nuget.org/v3/index.json": {}
},
"frameworks": {
"net5.0": {
"targetAlias": "net5.0",
"projectReferences": {}
}
},
"warningProperties": {
"warnAsError": [
"NU1605"
]
}
},
"frameworks": {
"net5.0": {
"targetAlias": "net5.0",
"dependencies": {
"Cosmos.Build": {
"target": "Package",
"version": "[0.0.0-*, )",
"noWarn": [
"NU1604"
]
},
"Cosmos.Debug.Kernel": {
"target": "Package",
"version": "[0.0.0-*, )",
"noWarn": [
"NU1604"
]
},
"Cosmos.System2": {
"target": "Package",
"version": "[0.0.0-*, )",
"noWarn": [
"NU1604"
]
}
},
"imports": [
"net461",
"net462",
"net47",
"net471",
"net472",
"net48"
],
"assetTargetFallback": true,
"warn": true,
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
}
},
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.404\\RuntimeIdentifierGraph.json"
}
}
}
}
}

View file

@ -1,26 +0,0 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess>
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\Sam\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages;C:\Program Files (x86)\Microsoft\Xamarin\NuGet\</NuGetPackageFolders>
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">5.11.1</NuGetToolVersion>
</PropertyGroup>
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<SourceRoot Include="C:\Users\Sam\.nuget\packages\" />
<SourceRoot Include="C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages\" />
<SourceRoot Include="C:\Program Files (x86)\Microsoft\Xamarin\NuGet\" />
</ItemGroup>
<PropertyGroup>
<MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects>
</PropertyGroup>
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<Import Project="$(NuGetPackageRoot)cosmos.build\0.1.0-localbuild20220209054635\build\Cosmos.Build.props" Condition="Exists('$(NuGetPackageRoot)cosmos.build\0.1.0-localbuild20220209054635\build\Cosmos.Build.props')" />
</ImportGroup>
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<PkgCosmos_Build Condition=" '$(PkgCosmos_Build)' == '' ">C:\Users\Sam\.nuget\packages\cosmos.build\0.1.0-localbuild20220209054635</PkgCosmos_Build>
</PropertyGroup>
</Project>

View file

@ -1,9 +0,0 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects>
</PropertyGroup>
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<Import Project="$(NuGetPackageRoot)cosmos.build\0.1.0-localbuild20220209054635\build\Cosmos.Build.targets" Condition="Exists('$(NuGetPackageRoot)cosmos.build\0.1.0-localbuild20220209054635\build\Cosmos.Build.targets')" />
</ImportGroup>
</Project>

View file

@ -1,605 +0,0 @@
{
"version": 3,
"targets": {
"net5.0": {
"Cosmos.Build/0.1.0-localbuild20220209054635": {
"type": "package",
"build": {
"build/Cosmos.Build.props": {},
"build/Cosmos.Build.targets": {}
}
},
"Cosmos.Common/0.1.0-localbuild20220209054647": {
"type": "package",
"dependencies": {
"Cosmos.Debug.Kernel": "0.1.0-localbuild20220209054647"
},
"compile": {
"lib/net5.0/Cosmos.Common.dll": {}
},
"runtime": {
"lib/net5.0/Cosmos.Common.dll": {}
}
},
"Cosmos.Core/0.1.0-localbuild20220209054647": {
"type": "package",
"dependencies": {
"Cosmos.Debug.Kernel": "0.1.0-localbuild20220209054647",
"IL2CPU.API": "0.1.0-localbuild20220209054647"
},
"compile": {
"lib/net5.0/Cosmos.Core.dll": {}
},
"runtime": {
"lib/net5.0/Cosmos.Core.dll": {}
}
},
"Cosmos.Debug.Kernel/0.1.0-localbuild20220209054647": {
"type": "package",
"compile": {
"lib/netstandard2.0/Cosmos.Debug.Kernel.dll": {}
},
"runtime": {
"lib/netstandard2.0/Cosmos.Debug.Kernel.dll": {}
}
},
"Cosmos.HAL2/0.1.0-localbuild20220209054647": {
"type": "package",
"dependencies": {
"Cosmos.Common": "0.1.0-localbuild20220209054647",
"Cosmos.Core": "0.1.0-localbuild20220209054647",
"Cosmos.Debug.Kernel": "0.1.0-localbuild20220209054647",
"IL2CPU.API": "0.1.0-localbuild20220209054647"
},
"compile": {
"lib/net5.0/Cosmos.HAL2.dll": {}
},
"runtime": {
"lib/net5.0/Cosmos.HAL2.dll": {}
}
},
"Cosmos.System2/0.1.0-localbuild20220209054647": {
"type": "package",
"dependencies": {
"Cosmos.Common": "0.1.0-localbuild20220209054647",
"Cosmos.Debug.Kernel": "0.1.0-localbuild20220209054647",
"Cosmos.HAL2": "0.1.0-localbuild20220209054647",
"IL2CPU.API": "0.1.0-localbuild20220209054647"
},
"compile": {
"lib/net5.0/Cosmos.System2.dll": {}
},
"runtime": {
"lib/net5.0/Cosmos.System2.dll": {}
}
},
"IL2CPU.API/0.1.0-localbuild20220209054647": {
"type": "package",
"compile": {
"lib/netstandard2.0/IL2CPU.API.dll": {}
},
"runtime": {
"lib/netstandard2.0/IL2CPU.API.dll": {}
}
}
}
},
"libraries": {
"Cosmos.Build/0.1.0-localbuild20220209054635": {
"sha512": "HDn6EZgFYh6OIMKyIUWeRldQT5dciXhgvrLitZZN4wLGFA+D2TuXdNFo9/b9lioxR324StFcfSlB3HXvc2qF2Q==",
"type": "package",
"path": "cosmos.build/0.1.0-localbuild20220209054635",
"hasTools": true,
"files": [
".nupkg.metadata",
"LICENSE.txt",
"build/Cosmos.Build.props",
"build/Cosmos.Build.targets",
"cosmos.build.0.1.0-localbuild20220209054635.nupkg.sha512",
"cosmos.build.nuspec",
"runtime.json",
"tools/cygwin/win/GPL Readme.txt",
"tools/cygwin/win/cygiconv-2.dll",
"tools/cygwin/win/cygintl-3.dll",
"tools/cygwin/win/cygwin1.dll",
"tools/cygwin/win/ld.exe",
"tools/cygwin/win/objdump.bat",
"tools/cygwin/win/objdump.exe",
"tools/grub2/boot/grub/i386-pc/915resolution.mod",
"tools/grub2/boot/grub/i386-pc/acpi.mod",
"tools/grub2/boot/grub/i386-pc/adler32.mod",
"tools/grub2/boot/grub/i386-pc/affs.mod",
"tools/grub2/boot/grub/i386-pc/afs.mod",
"tools/grub2/boot/grub/i386-pc/ahci.mod",
"tools/grub2/boot/grub/i386-pc/all_video.mod",
"tools/grub2/boot/grub/i386-pc/aout.mod",
"tools/grub2/boot/grub/i386-pc/archelp.mod",
"tools/grub2/boot/grub/i386-pc/at_keyboard.mod",
"tools/grub2/boot/grub/i386-pc/ata.mod",
"tools/grub2/boot/grub/i386-pc/backtrace.mod",
"tools/grub2/boot/grub/i386-pc/bfs.mod",
"tools/grub2/boot/grub/i386-pc/biosdisk.mod",
"tools/grub2/boot/grub/i386-pc/bitmap.mod",
"tools/grub2/boot/grub/i386-pc/bitmap_scale.mod",
"tools/grub2/boot/grub/i386-pc/blocklist.mod",
"tools/grub2/boot/grub/i386-pc/boot.mod",
"tools/grub2/boot/grub/i386-pc/bsd.mod",
"tools/grub2/boot/grub/i386-pc/btrfs.mod",
"tools/grub2/boot/grub/i386-pc/bufio.mod",
"tools/grub2/boot/grub/i386-pc/cat.mod",
"tools/grub2/boot/grub/i386-pc/cbfs.mod",
"tools/grub2/boot/grub/i386-pc/cbls.mod",
"tools/grub2/boot/grub/i386-pc/cbmemc.mod",
"tools/grub2/boot/grub/i386-pc/cbtable.mod",
"tools/grub2/boot/grub/i386-pc/cbtime.mod",
"tools/grub2/boot/grub/i386-pc/chain.mod",
"tools/grub2/boot/grub/i386-pc/cmdline_cat_test.mod",
"tools/grub2/boot/grub/i386-pc/cmosdump.mod",
"tools/grub2/boot/grub/i386-pc/cmostest.mod",
"tools/grub2/boot/grub/i386-pc/cmp.mod",
"tools/grub2/boot/grub/i386-pc/command.lst",
"tools/grub2/boot/grub/i386-pc/configfile.mod",
"tools/grub2/boot/grub/i386-pc/cpio.mod",
"tools/grub2/boot/grub/i386-pc/cpio_be.mod",
"tools/grub2/boot/grub/i386-pc/cpuid.mod",
"tools/grub2/boot/grub/i386-pc/crc64.mod",
"tools/grub2/boot/grub/i386-pc/crypto.lst",
"tools/grub2/boot/grub/i386-pc/crypto.mod",
"tools/grub2/boot/grub/i386-pc/cryptodisk.mod",
"tools/grub2/boot/grub/i386-pc/cs5536.mod",
"tools/grub2/boot/grub/i386-pc/date.mod",
"tools/grub2/boot/grub/i386-pc/datehook.mod",
"tools/grub2/boot/grub/i386-pc/datetime.mod",
"tools/grub2/boot/grub/i386-pc/disk.mod",
"tools/grub2/boot/grub/i386-pc/diskfilter.mod",
"tools/grub2/boot/grub/i386-pc/div_test.mod",
"tools/grub2/boot/grub/i386-pc/dm_nv.mod",
"tools/grub2/boot/grub/i386-pc/drivemap.mod",
"tools/grub2/boot/grub/i386-pc/echo.mod",
"tools/grub2/boot/grub/i386-pc/efiemu.mod",
"tools/grub2/boot/grub/i386-pc/efiemu32.o",
"tools/grub2/boot/grub/i386-pc/efiemu64.o",
"tools/grub2/boot/grub/i386-pc/ehci.mod",
"tools/grub2/boot/grub/i386-pc/elf.mod",
"tools/grub2/boot/grub/i386-pc/eltorito.img",
"tools/grub2/boot/grub/i386-pc/eval.mod",
"tools/grub2/boot/grub/i386-pc/exfat.mod",
"tools/grub2/boot/grub/i386-pc/exfctest.mod",
"tools/grub2/boot/grub/i386-pc/ext2.mod",
"tools/grub2/boot/grub/i386-pc/extcmd.mod",
"tools/grub2/boot/grub/i386-pc/fat.mod",
"tools/grub2/boot/grub/i386-pc/file.mod",
"tools/grub2/boot/grub/i386-pc/font.mod",
"tools/grub2/boot/grub/i386-pc/freedos.mod",
"tools/grub2/boot/grub/i386-pc/fs.lst",
"tools/grub2/boot/grub/i386-pc/fshelp.mod",
"tools/grub2/boot/grub/i386-pc/functional_test.mod",
"tools/grub2/boot/grub/i386-pc/gcry_arcfour.mod",
"tools/grub2/boot/grub/i386-pc/gcry_blowfish.mod",
"tools/grub2/boot/grub/i386-pc/gcry_camellia.mod",
"tools/grub2/boot/grub/i386-pc/gcry_cast5.mod",
"tools/grub2/boot/grub/i386-pc/gcry_crc.mod",
"tools/grub2/boot/grub/i386-pc/gcry_des.mod",
"tools/grub2/boot/grub/i386-pc/gcry_dsa.mod",
"tools/grub2/boot/grub/i386-pc/gcry_idea.mod",
"tools/grub2/boot/grub/i386-pc/gcry_md4.mod",
"tools/grub2/boot/grub/i386-pc/gcry_md5.mod",
"tools/grub2/boot/grub/i386-pc/gcry_rfc2268.mod",
"tools/grub2/boot/grub/i386-pc/gcry_rijndael.mod",
"tools/grub2/boot/grub/i386-pc/gcry_rmd160.mod",
"tools/grub2/boot/grub/i386-pc/gcry_rsa.mod",
"tools/grub2/boot/grub/i386-pc/gcry_seed.mod",
"tools/grub2/boot/grub/i386-pc/gcry_serpent.mod",
"tools/grub2/boot/grub/i386-pc/gcry_sha1.mod",
"tools/grub2/boot/grub/i386-pc/gcry_sha256.mod",
"tools/grub2/boot/grub/i386-pc/gcry_sha512.mod",
"tools/grub2/boot/grub/i386-pc/gcry_tiger.mod",
"tools/grub2/boot/grub/i386-pc/gcry_twofish.mod",
"tools/grub2/boot/grub/i386-pc/gcry_whirlpool.mod",
"tools/grub2/boot/grub/i386-pc/gdb.mod",
"tools/grub2/boot/grub/i386-pc/geli.mod",
"tools/grub2/boot/grub/i386-pc/gettext.mod",
"tools/grub2/boot/grub/i386-pc/gfxmenu.mod",
"tools/grub2/boot/grub/i386-pc/gfxterm.mod",
"tools/grub2/boot/grub/i386-pc/gfxterm_background.mod",
"tools/grub2/boot/grub/i386-pc/gfxterm_menu.mod",
"tools/grub2/boot/grub/i386-pc/gptsync.mod",
"tools/grub2/boot/grub/i386-pc/gzio.mod",
"tools/grub2/boot/grub/i386-pc/halt.mod",
"tools/grub2/boot/grub/i386-pc/hashsum.mod",
"tools/grub2/boot/grub/i386-pc/hdparm.mod",
"tools/grub2/boot/grub/i386-pc/hello.mod",
"tools/grub2/boot/grub/i386-pc/help.mod",
"tools/grub2/boot/grub/i386-pc/hexdump.mod",
"tools/grub2/boot/grub/i386-pc/hfs.mod",
"tools/grub2/boot/grub/i386-pc/hfsplus.mod",
"tools/grub2/boot/grub/i386-pc/hfspluscomp.mod",
"tools/grub2/boot/grub/i386-pc/http.mod",
"tools/grub2/boot/grub/i386-pc/hwmatch.mod",
"tools/grub2/boot/grub/i386-pc/iorw.mod",
"tools/grub2/boot/grub/i386-pc/iso9660.mod",
"tools/grub2/boot/grub/i386-pc/jfs.mod",
"tools/grub2/boot/grub/i386-pc/jpeg.mod",
"tools/grub2/boot/grub/i386-pc/keylayouts.mod",
"tools/grub2/boot/grub/i386-pc/keystatus.mod",
"tools/grub2/boot/grub/i386-pc/ldm.mod",
"tools/grub2/boot/grub/i386-pc/legacy_password_test.mod",
"tools/grub2/boot/grub/i386-pc/legacycfg.mod",
"tools/grub2/boot/grub/i386-pc/linux.mod",
"tools/grub2/boot/grub/i386-pc/linux16.mod",
"tools/grub2/boot/grub/i386-pc/loadenv.mod",
"tools/grub2/boot/grub/i386-pc/loopback.mod",
"tools/grub2/boot/grub/i386-pc/ls.mod",
"tools/grub2/boot/grub/i386-pc/lsacpi.mod",
"tools/grub2/boot/grub/i386-pc/lsapm.mod",
"tools/grub2/boot/grub/i386-pc/lsmmap.mod",
"tools/grub2/boot/grub/i386-pc/lspci.mod",
"tools/grub2/boot/grub/i386-pc/luks.mod",
"tools/grub2/boot/grub/i386-pc/lvm.mod",
"tools/grub2/boot/grub/i386-pc/lzopio.mod",
"tools/grub2/boot/grub/i386-pc/macbless.mod",
"tools/grub2/boot/grub/i386-pc/macho.mod",
"tools/grub2/boot/grub/i386-pc/mda_text.mod",
"tools/grub2/boot/grub/i386-pc/mdraid09.mod",
"tools/grub2/boot/grub/i386-pc/mdraid09_be.mod",
"tools/grub2/boot/grub/i386-pc/mdraid1x.mod",
"tools/grub2/boot/grub/i386-pc/memdisk.mod",
"tools/grub2/boot/grub/i386-pc/memrw.mod",
"tools/grub2/boot/grub/i386-pc/minicmd.mod",
"tools/grub2/boot/grub/i386-pc/minix.mod",
"tools/grub2/boot/grub/i386-pc/minix2.mod",
"tools/grub2/boot/grub/i386-pc/minix2_be.mod",
"tools/grub2/boot/grub/i386-pc/minix3.mod",
"tools/grub2/boot/grub/i386-pc/minix3_be.mod",
"tools/grub2/boot/grub/i386-pc/minix_be.mod",
"tools/grub2/boot/grub/i386-pc/mmap.mod",
"tools/grub2/boot/grub/i386-pc/moddep.lst",
"tools/grub2/boot/grub/i386-pc/modinfo.sh",
"tools/grub2/boot/grub/i386-pc/morse.mod",
"tools/grub2/boot/grub/i386-pc/mpi.mod",
"tools/grub2/boot/grub/i386-pc/msdospart.mod",
"tools/grub2/boot/grub/i386-pc/multiboot.mod",
"tools/grub2/boot/grub/i386-pc/multiboot2.mod",
"tools/grub2/boot/grub/i386-pc/nativedisk.mod",
"tools/grub2/boot/grub/i386-pc/net.mod",
"tools/grub2/boot/grub/i386-pc/newc.mod",
"tools/grub2/boot/grub/i386-pc/nilfs2.mod",
"tools/grub2/boot/grub/i386-pc/normal.mod",
"tools/grub2/boot/grub/i386-pc/ntfs.mod",
"tools/grub2/boot/grub/i386-pc/ntfscomp.mod",
"tools/grub2/boot/grub/i386-pc/ntldr.mod",
"tools/grub2/boot/grub/i386-pc/odc.mod",
"tools/grub2/boot/grub/i386-pc/offsetio.mod",
"tools/grub2/boot/grub/i386-pc/ohci.mod",
"tools/grub2/boot/grub/i386-pc/part_acorn.mod",
"tools/grub2/boot/grub/i386-pc/part_amiga.mod",
"tools/grub2/boot/grub/i386-pc/part_apple.mod",
"tools/grub2/boot/grub/i386-pc/part_bsd.mod",
"tools/grub2/boot/grub/i386-pc/part_dfly.mod",
"tools/grub2/boot/grub/i386-pc/part_dvh.mod",
"tools/grub2/boot/grub/i386-pc/part_gpt.mod",
"tools/grub2/boot/grub/i386-pc/part_msdos.mod",
"tools/grub2/boot/grub/i386-pc/part_plan.mod",
"tools/grub2/boot/grub/i386-pc/part_sun.mod",
"tools/grub2/boot/grub/i386-pc/part_sunpc.mod",
"tools/grub2/boot/grub/i386-pc/partmap.lst",
"tools/grub2/boot/grub/i386-pc/parttool.lst",
"tools/grub2/boot/grub/i386-pc/parttool.mod",
"tools/grub2/boot/grub/i386-pc/password.mod",
"tools/grub2/boot/grub/i386-pc/password_pbkdf2.mod",
"tools/grub2/boot/grub/i386-pc/pata.mod",
"tools/grub2/boot/grub/i386-pc/pbkdf2.mod",
"tools/grub2/boot/grub/i386-pc/pbkdf2_test.mod",
"tools/grub2/boot/grub/i386-pc/pci.mod",
"tools/grub2/boot/grub/i386-pc/pcidump.mod",
"tools/grub2/boot/grub/i386-pc/plan9.mod",
"tools/grub2/boot/grub/i386-pc/play.mod",
"tools/grub2/boot/grub/i386-pc/png.mod",
"tools/grub2/boot/grub/i386-pc/priority_queue.mod",
"tools/grub2/boot/grub/i386-pc/probe.mod",
"tools/grub2/boot/grub/i386-pc/procfs.mod",
"tools/grub2/boot/grub/i386-pc/progress.mod",
"tools/grub2/boot/grub/i386-pc/pxe.mod",
"tools/grub2/boot/grub/i386-pc/pxechain.mod",
"tools/grub2/boot/grub/i386-pc/raid5rec.mod",
"tools/grub2/boot/grub/i386-pc/raid6rec.mod",
"tools/grub2/boot/grub/i386-pc/read.mod",
"tools/grub2/boot/grub/i386-pc/reboot.mod",
"tools/grub2/boot/grub/i386-pc/regexp.mod",
"tools/grub2/boot/grub/i386-pc/reiserfs.mod",
"tools/grub2/boot/grub/i386-pc/relocator.mod",
"tools/grub2/boot/grub/i386-pc/romfs.mod",
"tools/grub2/boot/grub/i386-pc/scsi.mod",
"tools/grub2/boot/grub/i386-pc/search.mod",
"tools/grub2/boot/grub/i386-pc/search_fs_file.mod",
"tools/grub2/boot/grub/i386-pc/search_fs_uuid.mod",
"tools/grub2/boot/grub/i386-pc/search_label.mod",
"tools/grub2/boot/grub/i386-pc/sendkey.mod",
"tools/grub2/boot/grub/i386-pc/serial.mod",
"tools/grub2/boot/grub/i386-pc/setjmp.mod",
"tools/grub2/boot/grub/i386-pc/setjmp_test.mod",
"tools/grub2/boot/grub/i386-pc/setpci.mod",
"tools/grub2/boot/grub/i386-pc/sfs.mod",
"tools/grub2/boot/grub/i386-pc/signature_test.mod",
"tools/grub2/boot/grub/i386-pc/sleep.mod",
"tools/grub2/boot/grub/i386-pc/sleep_test.mod",
"tools/grub2/boot/grub/i386-pc/spkmodem.mod",
"tools/grub2/boot/grub/i386-pc/squash4.mod",
"tools/grub2/boot/grub/i386-pc/syslinuxcfg.mod",
"tools/grub2/boot/grub/i386-pc/tar.mod",
"tools/grub2/boot/grub/i386-pc/terminal.lst",
"tools/grub2/boot/grub/i386-pc/terminal.mod",
"tools/grub2/boot/grub/i386-pc/terminfo.mod",
"tools/grub2/boot/grub/i386-pc/test.mod",
"tools/grub2/boot/grub/i386-pc/test_blockarg.mod",
"tools/grub2/boot/grub/i386-pc/testload.mod",
"tools/grub2/boot/grub/i386-pc/testspeed.mod",
"tools/grub2/boot/grub/i386-pc/tftp.mod",
"tools/grub2/boot/grub/i386-pc/tga.mod",
"tools/grub2/boot/grub/i386-pc/time.mod",
"tools/grub2/boot/grub/i386-pc/tr.mod",
"tools/grub2/boot/grub/i386-pc/trig.mod",
"tools/grub2/boot/grub/i386-pc/true.mod",
"tools/grub2/boot/grub/i386-pc/truecrypt.mod",
"tools/grub2/boot/grub/i386-pc/udf.mod",
"tools/grub2/boot/grub/i386-pc/ufs1.mod",
"tools/grub2/boot/grub/i386-pc/ufs1_be.mod",
"tools/grub2/boot/grub/i386-pc/ufs2.mod",
"tools/grub2/boot/grub/i386-pc/uhci.mod",
"tools/grub2/boot/grub/i386-pc/usb.mod",
"tools/grub2/boot/grub/i386-pc/usb_keyboard.mod",
"tools/grub2/boot/grub/i386-pc/usbms.mod",
"tools/grub2/boot/grub/i386-pc/usbserial_common.mod",
"tools/grub2/boot/grub/i386-pc/usbserial_ftdi.mod",
"tools/grub2/boot/grub/i386-pc/usbserial_pl2303.mod",
"tools/grub2/boot/grub/i386-pc/usbserial_usbdebug.mod",
"tools/grub2/boot/grub/i386-pc/usbtest.mod",
"tools/grub2/boot/grub/i386-pc/vbe.mod",
"tools/grub2/boot/grub/i386-pc/verify.mod",
"tools/grub2/boot/grub/i386-pc/vga.mod",
"tools/grub2/boot/grub/i386-pc/vga_text.mod",
"tools/grub2/boot/grub/i386-pc/video.lst",
"tools/grub2/boot/grub/i386-pc/video.mod",
"tools/grub2/boot/grub/i386-pc/video_bochs.mod",
"tools/grub2/boot/grub/i386-pc/video_cirrus.mod",
"tools/grub2/boot/grub/i386-pc/video_colors.mod",
"tools/grub2/boot/grub/i386-pc/video_fb.mod",
"tools/grub2/boot/grub/i386-pc/videoinfo.mod",
"tools/grub2/boot/grub/i386-pc/videotest.mod",
"tools/grub2/boot/grub/i386-pc/videotest_checksum.mod",
"tools/grub2/boot/grub/i386-pc/xfs.mod",
"tools/grub2/boot/grub/i386-pc/xnu.mod",
"tools/grub2/boot/grub/i386-pc/xnu_uuid.mod",
"tools/grub2/boot/grub/i386-pc/xnu_uuid_test.mod",
"tools/grub2/boot/grub/i386-pc/xzio.mod",
"tools/grub2/boot/grub/i386-pc/zfs.mod",
"tools/grub2/boot/grub/i386-pc/zfscrypt.mod",
"tools/grub2/boot/grub/i386-pc/zfsinfo.mod",
"tools/mkisofs/win/mkisofs.exe",
"tools/net48/Cosmos.Build.Common.dll",
"tools/net48/Cosmos.Build.Common.pdb",
"tools/net48/Cosmos.Build.Tasks.dll",
"tools/net48/Cosmos.Build.Tasks.pdb",
"tools/net48/Cosmos.Debug.Common.dll",
"tools/net48/Cosmos.Debug.Common.pdb",
"tools/net48/Cosmos.Debug.Hosts.dll",
"tools/net48/Cosmos.Debug.Hosts.pdb",
"tools/net48/Dapper.StrongName.dll",
"tools/net48/DapperExtensions.StrongName.dll",
"tools/net48/DapperExtensions.StrongName.pdb",
"tools/net48/HyperVServer/Cosmos.Debug.HyperVServer.exe",
"tools/net48/HyperVServer/Cosmos.Debug.HyperVServer.exe.config",
"tools/net48/HyperVServer/Cosmos.Debug.HyperVServer.pdb",
"tools/net48/HyperVServer/System.Management.Automation.dll",
"tools/net48/HyperVServer/scripts/CreateVm.ps1",
"tools/net48/HyperVServer/scripts/RemoveVM.ps1",
"tools/net48/HyperVServer/scripts/StartVm.ps1",
"tools/net48/HyperVServer/scripts/StopVm.ps1",
"tools/net48/IL2CPU.Debug.Symbols.Net48.dll",
"tools/net48/IL2CPU.Debug.Symbols.Net48.pdb",
"tools/net48/Microsoft.Data.Sqlite.dll",
"tools/net48/Microsoft.DiaSymReader.dll",
"tools/net48/Microsoft.Win32.Registry.dll",
"tools/net48/SQLitePCLRaw.batteries_v2.dll",
"tools/net48/SQLitePCLRaw.core.dll",
"tools/net48/SQLitePCLRaw.nativelibrary.dll",
"tools/net48/SQLitePCLRaw.provider.dynamic_cdecl.dll",
"tools/net48/System.Buffers.dll",
"tools/net48/System.Collections.Immutable.dll",
"tools/net48/System.ComponentModel.Annotations.dll",
"tools/net48/System.Data.SqlClient.dll",
"tools/net48/System.IO.Ports.dll",
"tools/net48/System.Memory.dll",
"tools/net48/System.Numerics.Vectors.dll",
"tools/net48/System.Reflection.Metadata.dll",
"tools/net48/System.Runtime.CompilerServices.Unsafe.dll",
"tools/net48/System.Security.AccessControl.dll",
"tools/net48/System.Security.Principal.Windows.dll",
"tools/net48/runtimes/win-arm/native/e_sqlite3.dll",
"tools/net48/runtimes/win-x64/native/e_sqlite3.dll",
"tools/net48/runtimes/win-x86/native/e_sqlite3.dll",
"tools/syslinux/bios/com32/elflink/ldlinux/ldlinux.c32",
"tools/syslinux/bios/com32/lib/libcom32.c32",
"tools/syslinux/bios/com32/mboot/mboot.c32",
"tools/syslinux/bios/core/isolinux.bin",
"tools/syslinux/bios/core/pxelinux.0",
"tools/syslinux/bios/core/pxelinux.bin",
"tools/syslinux/win/syslinux.exe",
"tools/unix/objdump.sh",
"tools/yasm/win/LICENSE.txt",
"tools/yasm/win/yasm.exe"
]
},
"Cosmos.Common/0.1.0-localbuild20220209054647": {
"sha512": "XeyhhtaENkXELvJEGCH5U9DmfYyXq12FuEQIrvpYL37Oj1QYFdjXKR9mf8GFOpj2P5MxG43SXuDDLw+x+U2vkg==",
"type": "package",
"path": "cosmos.common/0.1.0-localbuild20220209054647",
"files": [
".nupkg.metadata",
"LICENSE.txt",
"cosmos.common.0.1.0-localbuild20220209054647.nupkg.sha512",
"cosmos.common.nuspec",
"lib/net5.0/Cosmos.Common.dll"
]
},
"Cosmos.Core/0.1.0-localbuild20220209054647": {
"sha512": "5DycgDcvt89K7RZPWdNIwt6xhV3rO1Z7MJHEcTWKxi7RnUQHnffTSNCdv9xhSKyTKjqNmT8vK4eYwzR+OeKTeQ==",
"type": "package",
"path": "cosmos.core/0.1.0-localbuild20220209054647",
"files": [
".nupkg.metadata",
"LICENSE.txt",
"cosmos.core.0.1.0-localbuild20220209054647.nupkg.sha512",
"cosmos.core.nuspec",
"lib/net5.0/Cosmos.Core.dll",
"lib/net5.0/Cosmos.Core.xml"
]
},
"Cosmos.Debug.Kernel/0.1.0-localbuild20220209054647": {
"sha512": "fR/WHe1ksYrILM/NeCLZ7rVA3eoTGTkbIHpNhfjnFQQGCIsl39iK6sJ7m98nlmIevCmFT/u1xn4ibWY+HmNylA==",
"type": "package",
"path": "cosmos.debug.kernel/0.1.0-localbuild20220209054647",
"files": [
".nupkg.metadata",
"LICENSE.txt",
"cosmos.debug.kernel.0.1.0-localbuild20220209054647.nupkg.sha512",
"cosmos.debug.kernel.nuspec",
"lib/netstandard2.0/Cosmos.Debug.Kernel.dll",
"lib/netstandard2.0/Cosmos.Debug.Kernel.xml"
]
},
"Cosmos.HAL2/0.1.0-localbuild20220209054647": {
"sha512": "UdpPTx24OXbEyJWNjR33QyMWy8j17T9DVrlZbdi1TMsrHGg3NL15aVFsJeL0dJOrUMfk1QjDWyei0pVw703BCw==",
"type": "package",
"path": "cosmos.hal2/0.1.0-localbuild20220209054647",
"files": [
".nupkg.metadata",
"LICENSE.txt",
"cosmos.hal2.0.1.0-localbuild20220209054647.nupkg.sha512",
"cosmos.hal2.nuspec",
"lib/net5.0/Cosmos.HAL2.dll",
"lib/net5.0/Cosmos.HAL2.xml"
]
},
"Cosmos.System2/0.1.0-localbuild20220209054647": {
"sha512": "8ImsJlb7TxeDoaBobLF5IKnwyAmb5BJB6Ew1TtjRJJY+A9Gz1xwOP9zFnlPRTR22VUgCPoelcsAlVWXpXeHLIQ==",
"type": "package",
"path": "cosmos.system2/0.1.0-localbuild20220209054647",
"files": [
".nupkg.metadata",
"LICENSE.txt",
"cosmos.system2.0.1.0-localbuild20220209054647.nupkg.sha512",
"cosmos.system2.nuspec",
"lib/net5.0/Cosmos.System2.dll",
"lib/net5.0/Cosmos.System2.xml"
]
},
"IL2CPU.API/0.1.0-localbuild20220209054647": {
"sha512": "EAbDuXWYOLhySUKPLdOFDym8xC19dYFXkxAIL24BdtGyfb+QKNbn+sV+JmQCNICR/Ls+hWZYfWIZbrVERBQYhQ==",
"type": "package",
"path": "il2cpu.api/0.1.0-localbuild20220209054647",
"files": [
".nupkg.metadata",
"il2cpu.api.0.1.0-localbuild20220209054647.nupkg.sha512",
"il2cpu.api.nuspec",
"lib/netstandard2.0/IL2CPU.API.dll"
]
}
},
"projectFileDependencyGroups": {
"net5.0": [
"Cosmos.Build >= 0.0.0-*",
"Cosmos.Debug.Kernel >= 0.0.0-*",
"Cosmos.System2 >= 0.0.0-*"
]
},
"packageFolders": {
"C:\\Users\\Sam\\.nuget\\packages\\": {},
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {},
"C:\\Program Files (x86)\\Microsoft\\Xamarin\\NuGet\\": {}
},
"project": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "C:\\Users\\Sam\\source\\repos\\NewDremdos\\DremDOS\\DremDOS\\DremDOS.csproj",
"projectName": "DremDOS",
"projectPath": "C:\\Users\\Sam\\source\\repos\\NewDremdos\\DremDOS\\DremDOS\\DremDOS.csproj",
"packagesPath": "C:\\Users\\Sam\\.nuget\\packages\\",
"outputPath": "C:\\Users\\Sam\\source\\repos\\NewDremdos\\DremDOS\\DremDOS\\obj\\",
"projectStyle": "PackageReference",
"fallbackFolders": [
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages",
"C:\\Program Files (x86)\\Microsoft\\Xamarin\\NuGet\\"
],
"configFilePaths": [
"C:\\Users\\Sam\\AppData\\Roaming\\NuGet\\NuGet.Config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config",
"C:\\Program Files (x86)\\NuGet\\Config\\Xamarin.Offline.config"
],
"originalTargetFrameworks": [
"net5.0"
],
"sources": {
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
"C:\\Users\\Sam\\AppData\\Roaming\\Cosmos User Kit\\packages\\": {},
"https://api.nuget.org/v3/index.json": {}
},
"frameworks": {
"net5.0": {
"targetAlias": "net5.0",
"projectReferences": {}
}
},
"warningProperties": {
"warnAsError": [
"NU1605"
]
}
},
"frameworks": {
"net5.0": {
"targetAlias": "net5.0",
"dependencies": {
"Cosmos.Build": {
"target": "Package",
"version": "[0.0.0-*, )",
"noWarn": [
"NU1604"
]
},
"Cosmos.Debug.Kernel": {
"target": "Package",
"version": "[0.0.0-*, )",
"noWarn": [
"NU1604"
]
},
"Cosmos.System2": {
"target": "Package",
"version": "[0.0.0-*, )",
"noWarn": [
"NU1604"
]
}
},
"imports": [
"net461",
"net462",
"net47",
"net471",
"net472",
"net48"
],
"assetTargetFallback": true,
"warn": true,
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
}
},
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.404\\RuntimeIdentifierGraph.json"
}
}
}
}