-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMessage.cs
More file actions
77 lines (69 loc) · 1.96 KB
/
Message.cs
File metadata and controls
77 lines (69 loc) · 1.96 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
namespace bspPack;
class Message
{
public static void Success(string msg)
{
Console.ForegroundColor = ConsoleColor.Green;
Console.WriteLine(msg);
Console.ResetColor();
}
public static void Info(string msg)
{
Console.ForegroundColor = ConsoleColor.Blue;
Console.WriteLine(msg);
Console.ResetColor();
}
public static void Warning(string msg)
{
Console.ForegroundColor = ConsoleColor.Yellow;
Console.WriteLine(msg);
Console.ResetColor();
}
public static void Error(string msg)
{
Console.ForegroundColor = ConsoleColor.Red;
Console.WriteLine(msg);
Console.ResetColor();
}
public static void Write(string msg, ConsoleColor? color = null)
{
if (color.HasValue)
{
Console.ForegroundColor = color.Value;
Console.Write(msg);
Console.ResetColor();
}
else
Console.Write(msg);
}
public static void WriteLine(string msg, ConsoleColor? color = null)
{
if (color.HasValue)
{
Console.ForegroundColor = color.Value;
Console.WriteLine(msg);
Console.ResetColor();
}
else
Console.WriteLine(msg);
}
public static string Prompt(string prompt, ConsoleColor? color = null)
{
Write(prompt, color);
return Console.ReadLine() ?? string.Empty;
}
public static int PromptInt(string prompt, int min, int max, ConsoleColor? color = null)
{
Write(prompt, color);
int selected = int.MinValue;
while (selected < min || selected > max)
{
string? input = Console.ReadLine();
if (!int.TryParse(input, out selected) || selected < min || selected > max)
{
Write("Invalid selection. Please enter a valid number: ", ConsoleColor.Yellow);
}
}
return selected;
}
}