-
Notifications
You must be signed in to change notification settings - Fork 147
/
Copy pathProgram.cs
192 lines (180 loc) · 4.75 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
using System;
using System.IO;
using System.Reflection;
using Towel;
using Towel.DataStructures;
Exception? exception = null;
int Score = 0;
string[] WordPool;
QueueArray<(string String, int Left, int Top)> Words = new();
int position = 0;
TimeSpan TimePerCharacter = TimeSpan.FromMilliseconds(2000);
TimeSpan TimePerCharacterDecrement = TimeSpan.FromMilliseconds(50);
TimeSpan TimePerCharacterMinimum = TimeSpan.FromMilliseconds(50);
TimeSpan TimePerWord;
DateTime WordStart;
ConsoleColor[] Colors =
[
ConsoleColor.White,
ConsoleColor.Gray,
ConsoleColor.DarkGray,
];
#region Loading
const string wordsResource = "Type.Words.txt";
Assembly assembly = Assembly.GetExecutingAssembly();
using Stream? stream = assembly.GetManifestResourceStream(wordsResource);
if (stream is null)
{
Console.WriteLine("Error: Missing \"Words.txt\" embedded resource.");
ConsoleHelper.PromptPressToContinue();
return;
}
ListArray<string> words = new();
using StreamReader streamReader = new(stream);
while (!streamReader.EndOfStream)
{
string? word = streamReader.ReadLine();
if (!string.IsNullOrWhiteSpace(word))
{
words.Add(word);
}
}
WordPool = [.. words];
#endregion
try
{
if (OperatingSystem.IsWindows())
{
if (Console.BufferWidth < 80) Console.BufferWidth = 80;
if (Console.WindowWidth < 80) Console.WindowWidth = 80;
if (Console.BufferHeight < 25) Console.BufferHeight = 25;
if (Console.WindowHeight < 25) Console.WindowHeight = 25;
}
Console.WriteLine("Type the words in order as they appear as fast as you can. The ");
Console.WriteLine("ammount of time you have to type each word will reduce with each ");
Console.WriteLine("word you complete. Run out of time and it is game over. Good Luck!");
ConsoleHelper.PromptPressToContinue();
Console.BackgroundColor = ConsoleColor.Black;
Console.Clear();
Console.CursorVisible = false;
GetWord();
GetWord();
GetWord();
Render();
TimePerWord = TimePerCharacter * Words[0].String.Length;
WordStart = DateTime.Now;
while (true)
{
Console.SetCursorPosition(Words[0].Left + position, Words[0].Top);
var key = Console.ReadKey(true);
if (key.Key is ConsoleKey.Escape)
{
Console.Clear();
Console.ForegroundColor = ConsoleColor.White;
return;
}
TimeSpan timeSpan = DateTime.Now - WordStart;
if (timeSpan > TimePerWord)
{
Console.Clear();
Console.ForegroundColor = ConsoleColor.White;
Console.WriteLine($"Game over. Score: {Score}.");
ConsoleHelper.PromptPressToContinue();
return;
}
if (!char.IsLetter(key.KeyChar) || key.KeyChar != Words[0].String[position])
{
continue;
}
Score++;
Console.SetCursorPosition(Words[0].Left + position, Words[0].Top + 1);
Console.Write(' ');
position++;
if (position >= Words[0].String.Length)
{
NextWord();
}
Render();
}
}
catch (Exception e)
{
exception = e;
throw;
}
finally
{
Console.ResetColor();
Console.Clear();
Console.CursorVisible = true;
Console.WriteLine(exception?.ToString() ?? "Type was closed.");
}
void GetWord()
{
string w = Random.Shared.Choose(WordPool);
int width = Math.Min(Console.BufferWidth, Console.WindowWidth) - w.Length;
int height = Math.Min(Console.BufferHeight, Console.WindowHeight);
var set = SetHashLinked.New<(int Left, int Top)>();
ListArray<(int Left, int Top)> list = new(expectedCount: width * height);
foreach (var word in Words)
{
for (int i = 0; i < word.String.Length; i++)
{
set.Add((word.Left + i, word.Top));
set.Add((word.Left + i, word.Top + 1));
}
}
for (int left = 0; left < width; left++)
{
for (int top = 0; top < height - 1; top++)
{
for (int i = 0; i < w.Length; i++)
{
if (set.Contains((left + i, top)) ||
set.Contains((left + i, top + 1)))
{
goto Next;
}
}
list.Add((left, top));
Next:
continue;
}
}
var (Left, Top) = list[Random.Shared.Next(list.Count)];
Words.Enqueue((w, Left, Top));
}
void NextWord()
{
ClearCurrentWord();
Words.Dequeue();
GetWord();
position = 0;
TimePerCharacter -= TimePerCharacterDecrement;
if (TimePerCharacter < TimePerCharacterMinimum)
{
TimePerCharacter = TimePerCharacterMinimum;
}
TimePerWord = TimePerCharacter * Words[0].String.Length;
WordStart = DateTime.Now;
}
void ClearCurrentWord()
{
Console.SetCursorPosition(Words[0].Left, Words[0].Top);
Console.Write(new string(' ', Words[0].String.Length));
Console.SetCursorPosition(Words[0].Left, Words[0].Top + 1);
Console.Write(new string(' ', Words[0].String.Length));
}
void Render()
{
for (int i = 0; i < Words.Count; i++)
{
var word = Words[i];
Console.SetCursorPosition(word.Left, word.Top);
Console.ForegroundColor = i < Colors.Length ? Colors[i] : Colors[^1];
Console.Write(word.String);
}
Console.ForegroundColor = ConsoleColor.White;
Console.SetCursorPosition(Words[0].Left + position, Words[0].Top + 1);
Console.Write('^');
}