-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProgram.cs
More file actions
325 lines (276 loc) · 8.8 KB
/
Program.cs
File metadata and controls
325 lines (276 loc) · 8.8 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
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
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
using System.Net.Http.Headers;
using System.Runtime.CompilerServices;
using System.Security.Cryptography;
using System.Text;
//Utility
const ConsoleColor defaultTextColor = ConsoleColor.Yellow;
const int targetDiceCount = 2;
int[] targetDice = new int[targetDiceCount];
int playerHP = 0;
int targetHP = targetDiceCount;
int fightLength;
bool fightComplete;
char loadingWidgetChar;
string greeting = "Welcome to the nice dice house of fight.";
string welcomeMessage = "Each round you will be given a random number of dice to beat the 'two' target dice.\n" +
"You win if any two or more of your dice are higher than both of the target dice.\n" +
"You lose if the target dice are higher than 80% of your dice (rounded up).\n" +
"You draw on any other condition and get to re-roll.\n\n" +
"Controls:\n" +
"Press (ctrl x + Enter) to exit at any time.\n" +
"Press (ctrl q + Enter) to return to this screen.\n" +
"Press 'Enter' to play.\n\n" +
"Good Luck!";
string winMessage() => ($"Congratulations you won the fight with {playerHP}HP left!");
string loseMessage() => ($"My condolences, the target won the fight with {targetHP}HP left over.");
string drawMessage = ($"Through the misty fog of war, two opponents stood alone " +
$"'neath an ashen sky and amongst the gorey bones");
string playAgainMessage = ($"Care to take another go standing mano e mano with your foe?");
int[] RollPlayerDice(int[] playerDice)
{
string result = "";
foreach (int die in playerDice)
{
int index = Array.IndexOf(playerDice, die);
playerDice[index] = new Random().Next(1, 7);
string.Join($"Die #{index}: ", result, playerDice[index]);
}
Console.WriteLine($"You were given {playerDice.Length} dice and rolled the following:\n{result}");
return playerDice;
}
void RollTargetDice()
{
string result = "";
foreach (int die in targetDice)
{
int index = Array.IndexOf(targetDice, die);
targetDice[index] = new Random().Next(1, 6);
string.Join($"Die #{index}: ", result, targetDice[index]);
}
Console.WriteLine($"The Target rolled the following:\n{result}");
}
//Game Logic
void Fight(int[] playerDice)
{
bool success = false;
bool isDraw = false;
targetHP = targetDiceCount;
playerHP = Convert.ToInt32(playerDice.Length * 0.8);
RollPlayerDice(playerDice);
RollTargetDice();
foreach (int targetDie in targetDice)
{
bool isTargetHit = false;
bool isPlayerHit = false;
foreach (int playerDie in playerDice)
{
if (playerDie > targetDie)
isTargetHit = true;
if (playerDie < targetDie)
isPlayerHit = true;
}
if (isTargetHit)
{
targetHP--;
if (targetHP <= 0)
success = true;
}
if (isPlayerHit)
{
playerHP--;
if (playerHP <= 0)
success = false;
}
isDraw = (playerHP > 0) && (targetHP > 0);
}
DisplayFightResults(success, isDraw);
}
//User Interface
void DisplayFightTimer()
{
Console.Clear();
int cursorLeft = Console.CursorLeft;
int interval = Convert.ToInt32(fightLength / 20);
while (!fightComplete)
{
PulseLoadingWidget(cursorLeft);
Task.Delay(500).Wait();
}
}
void PulseLoadingWidget(int cursorLeft)
{
Console.CursorLeft = cursorLeft;
if (loadingWidgetChar != '/' && loadingWidgetChar != '\\')
{
Console.Write($"Engaging... \\");
loadingWidgetChar = '/';
}
else if (loadingWidgetChar == '/')
{
Console.Write($"Engaging... /");
loadingWidgetChar = '\\';
}
else
{
Console.Write($"Engaging... \\");
loadingWidgetChar = '/';
}
fightLength--;
if (fightLength <= 0)
fightComplete = true;
}
void DisplayHorizontalLine(ConsoleColor color, int length)
{
Console.ForegroundColor = color;
Console.WriteLine("".PadRight(length, '~'));
Console.ForegroundColor = defaultTextColor;
}
void DisplayWelcomeMessage()
{
Console.Clear();
int longestSentenceLength = 0;
foreach (string sentence in welcomeMessage.Split('.'))
{
if (sentence.Length > longestSentenceLength)
longestSentenceLength = sentence.Length;
}
DisplayHorizontalLine(ConsoleColor.Green, longestSentenceLength);
Console.ForegroundColor = ConsoleColor.Cyan;
Console.WriteLine(greeting);
Console.ForegroundColor = defaultTextColor;
DisplayHorizontalLine(ConsoleColor.Green, longestSentenceLength);
Console.ForegroundColor = ConsoleColor.Cyan;
Console.WriteLine(welcomeMessage);
Console.ForegroundColor = defaultTextColor;
DisplayHorizontalLine(ConsoleColor.Green, longestSentenceLength);
}
void DisplayMessage(string message)
{
Console.Clear();
DisplayHorizontalLine(ConsoleColor.DarkGreen, message.Length);
Console.ForegroundColor = ConsoleColor.White;
Console.WriteLine(message);
Console.ForegroundColor = defaultTextColor;
DisplayHorizontalLine(ConsoleColor.DarkGreen, message.Length);
}
bool PromptToPlayAgian()
{
DisplayHorizontalLine(ConsoleColor.DarkGray, playAgainMessage.Length);
Console.WriteLine(playAgainMessage);
Console.WriteLine("Y|N");
using (var inputstream = Console.OpenStandardInput())
{
do
{
byte[] inputBytes = new byte[16];
inputstream.Read(inputBytes);
char[] inputChars = Encoding.UTF8.GetChars(inputBytes);
if (inputChars.Length > 0)
{
switch (inputChars[0])
{
case '\u0018':
Quit();
return false;
case '\u0011':
Run();
return true;
case 'y':
return true;
case 'Y':
return true;
case 'n':
return false;
case 'N':
return false;
default:
return false;
}
}
else
return false;
} while (!inputstream.CanRead);
}
}
void DisplayFightResults(bool success, bool isDraw)
{
Console.ForegroundColor = ConsoleColor.Cyan;
if (success && !isDraw)
DisplayMessage(winMessage());
else if (!success && !isDraw)
DisplayMessage(loseMessage());
else if (isDraw)
DisplayMessage(drawMessage);
Console.ForegroundColor = defaultTextColor;
}
//Application Logic
void Reset()
{
fightLength = new Random().Next(3, 10);
fightComplete = false;
loadingWidgetChar = '|';
}
void Quit()
{
Environment.Exit(0);
}
void StartFight()
{
Console.Clear();
do
{
DisplayFightTimer();
Fight(new int[new Random().Next(2, 8)]);
} while (!fightComplete);
if (PromptToPlayAgian())
{
Reset();
StartFight();
}
}
void Run()
{
Reset();
Console.BackgroundColor = ConsoleColor.Black;
Console.ForegroundColor = defaultTextColor;
#pragma warning disable CA1416
if (Environment.OSVersion.Platform == PlatformID.Win32NT)
Console.WindowWidth = 169;
#pragma warning restore CA1416
DisplayWelcomeMessage();
using (var inputstream = Console.OpenStandardInput())
{
if (inputstream.CanRead)
{
byte[] inputBytes = new byte[16];
inputstream.Read(inputBytes);
char[] inputChars = Encoding.UTF8.GetChars(inputBytes);
if (inputChars.Length > 0)
{
if (char.IsControl(inputChars[0]))
{
if (inputChars[0] == '\u0018')
Quit();
else if (inputChars[0] == '\u0011')
Run();
else if (inputChars[0] == '\r')
StartFight();
}
}
}
}
}
//Trigger
try
{
Run();
}
catch (Exception ex)
{
Console.WriteLine("");
DisplayHorizontalLine(ConsoleColor.Magenta, ex.Message.Length);
Console.ForegroundColor = ConsoleColor.Red;
Console.WriteLine(ex);
Console.ForegroundColor = defaultTextColor;
DisplayHorizontalLine(ConsoleColor.Magenta, ex.Message.Length);
}