-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathProgram.cs
47 lines (40 loc) · 1.34 KB
/
Program.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
using GameLib;
using System.Diagnostics;
var launcherManager = new LauncherManager();
foreach (var launcher in launcherManager.GetLaunchers())
{
SetConsoleColor(ConsoleColor.White, ConsoleColor.Red);
Console.WriteLine($"\n{launcher.Name}:");
ResetConsoleColor();
foreach (var property in launcher.GetType().GetProperties().Where(p => p.Name != "Name"))
{
Console.WriteLine($"\t{property.Name}: {property.GetValue(launcher)}");
}
SetConsoleColor(ConsoleColor.Green);
Console.WriteLine("\n\tGames:");
ResetConsoleColor();
foreach (var game in launcher.Games)
{
SetConsoleColor(ConsoleColor.Magenta);
Console.WriteLine($"\tGame ID: {game.Id}");
ResetConsoleColor();
foreach (var property in game.GetType().GetProperties().Where(p => p.Name != "GameId"))
{
Console.WriteLine($"\t\t{property.Name}: {property.GetValue(game)}");
}
}
}
static void SetConsoleColor(ConsoleColor foregroundColor, ConsoleColor? backgroundColor = null)
{
Console.ForegroundColor = foregroundColor;
if (backgroundColor is not null)
{
Console.BackgroundColor = (ConsoleColor)backgroundColor;
}
}
static void ResetConsoleColor()
{
Console.ForegroundColor = ConsoleColor.Gray;
Console.BackgroundColor = ConsoleColor.Black;
}
Debugger.Break();