-
Notifications
You must be signed in to change notification settings - Fork 1
/
ConsoleEngine.cs
633 lines (543 loc) · 25.8 KB
/
ConsoleEngine.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
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
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
namespace ConsoleGameEngine {
using System;
using System.Text;
/// <summary>
/// Class for Drawing to a console window.
/// </summary>
public class ConsoleEngine {
// pekare för ConsoleHelper-anrop
private readonly IntPtr stdInputHandle = NativeMethods.GetStdHandle(-10);
private readonly IntPtr stdOutputHandle = NativeMethods.GetStdHandle(-11);
private readonly IntPtr stdErrorHandle = NativeMethods.GetStdHandle(-12);
private readonly IntPtr consoleHandle = NativeMethods.GetConsoleWindow();
/// <summary> The active color palette. </summary> <see cref="Color"/>
public Color[] Palette { get; private set; }
/// <summary> The current size of the font. </summary> <see cref="Point"/>
public Point FontSize { get; private set; }
/// <summary> The dimensions of the window in characters. </summary> <see cref="Point"/>
public Point WindowSize { get; private set; }
/*private char[,] CharBuffer { get; set; }
private int[,] ColorBuffer { get; set; }
private int[,] BackgroundBuffer { get; set; }*/
private Glyph[,] GlyphBuffer { get; set; }
private int Background { get; set; }
private ConsoleBuffer ConsoleBuffer { get; set; }
private bool IsBorderless { get; set; }
/// <summary> Creates a new ConsoleEngine. </summary>
/// <param name="width">Target window width.</param>
/// <param name="height">Target window height.</param>
/// <param name="fontW">Target font width.</param>
/// <param name="fontH">Target font height.</param>
public ConsoleEngine(int width, int height, int fontW, int fontH) {
if (width < 1 || height < 1) throw new ArgumentOutOfRangeException();
if (fontW < 1 || fontH < 1) throw new ArgumentOutOfRangeException();
Console.Title = "Untitled console application";
Console.CursorVisible = false;
//sets console location to 0,0 to try and avoid the error where the console is to big
Console.SetWindowPosition(0, 0);
// sätter fönstret och bufferns storlek
// buffern måste sättas efter fönsret, eftersom den aldrig får vara mindre än skärmen
Console.SetWindowSize(width, height);
Console.SetBufferSize(width, height);
ConsoleBuffer = new ConsoleBuffer(width, height);
WindowSize = new Point(width, height);
FontSize = new Point(fontW, fontH);
/*CharBuffer = new char[width, height];
ColorBuffer = new int[width, height];
BackgroundBuffer = new int[width, height];*/
GlyphBuffer = new Glyph[width, height];
SetBackground(0);
SetPalette(Palettes.Default);
// Stänger av alla standard ConsoleInput metoder (Quick-edit etc)
NativeMethods.SetConsoleMode(stdInputHandle, 0x0080);
// Sätter fontstorlek och tvingar Raster (Terminal) / Consolas
// Detta måste göras efter SetBufferSize, annars ger den en IOException
ConsoleFont.SetFont(stdOutputHandle, (short)fontW, (short)fontH);
}
// Rita
public void SetPixel(Point selectedPoint, int color, char character)
{
SetPixel(selectedPoint,color,Background,character);
}
//new Draw method, which supports background
public void SetPixel(Point selectedPoint, int fgColor, int bgColor, char character) {
if (selectedPoint.X >= GlyphBuffer.GetLength(0) || selectedPoint.Y >= GlyphBuffer.GetLength(1)
|| selectedPoint.X < 0 || selectedPoint.Y < 0) return;
/*CharBuffer[selectedPoint.X, selectedPoint.Y] = character;
ColorBuffer[selectedPoint.X, selectedPoint.Y] = fgColor;
BackgroundBuffer[selectedPoint.X, selectedPoint.Y] = bgColor;*/
GlyphBuffer[selectedPoint.X, selectedPoint.Y].set(character, fgColor, bgColor);
}
/// <summary>
/// returns gylfh at point given
/// </summary>
/// <param name="selectedPoint"></param>
/// <returns></returns>
public Glyph PixelAt(Point selectedPoint)
{
if(selectedPoint.X > 0 && selectedPoint.X < GlyphBuffer.GetLength(0) && selectedPoint.Y > 0 && selectedPoint.Y < GlyphBuffer.GetLength(1))
return GlyphBuffer[selectedPoint.X, selectedPoint.Y];
else return null;
}
/// <summary> Sets the console's color palette </summary>
/// <param name="colors"></param>
/// <exception cref="ArgumentException"/> <exception cref="ArgumentNullException"/>
public void SetPalette(Color[] colors) {
if (colors.Length > 16) throw new ArgumentException("Windows command prompt only support 16 colors.");
Palette = colors ?? throw new ArgumentNullException();
for (int i = 0; i < colors.Length; i++) {
ConsolePalette.SetColor(i, colors[i]);
}
}
/// <summary> Sets the console's background color to one in the active palette. </summary>
/// <param name="color">Index of background color in palette.</param>
public void SetBackground(int color = 0) {
if (color > 16 || color < 0) throw new IndexOutOfRangeException();
Background = color;
}
/// <summary>Gets Background</summary>
/// <returns>Returns the background</returns>
public int GetBackground()
{
return Background;
}
/// <summary> Clears the screenbuffer. </summary>
public void ClearBuffer() {
/*Array.Clear(CharBuffer, 0, CharBuffer.Length);
Array.Clear(ColorBuffer, 0, ColorBuffer.Length);
Array.Clear(BackgroundBuffer, 0, BackgroundBuffer.Length);*/
Array.Clear(GlyphBuffer, 0, GlyphBuffer.Length);
}
/// <summary> Blits the screenbuffer to the Console window. </summary>
public void DisplayBuffer() {
ConsoleBuffer.SetBuffer(GlyphBuffer, Background);
ConsoleBuffer.Blit();
}
/// <summary> Sets the window to borderless mode. </summary>
public void Borderless() {
IsBorderless = true;
int GWL_STYLE = -16; // hex konstant för stil-förändring
int WS_BORDERLESS = 0x00080000; // helt borderless
NativeMethods.Rect rect = new NativeMethods.Rect();
NativeMethods.Rect desktopRect = new NativeMethods.Rect();
NativeMethods.GetWindowRect(consoleHandle, ref rect);
IntPtr desktopHandle = NativeMethods.GetDesktopWindow();
NativeMethods.MapWindowPoints(desktopHandle, consoleHandle, ref rect, 2);
NativeMethods.GetWindowRect(desktopHandle, ref desktopRect);
Point wPos = new Point(
(desktopRect.Right / 2) - ((WindowSize.X * FontSize.X) / 2),
(desktopRect.Bottom / 2) - ((WindowSize.Y * FontSize.Y) / 2));
NativeMethods.SetWindowLong(consoleHandle, GWL_STYLE, WS_BORDERLESS);
NativeMethods.SetWindowPos(consoleHandle, -2, wPos.X, wPos.Y, rect.Right - 8, rect.Bottom - 8, 0x0040);
NativeMethods.DrawMenuBar(consoleHandle);
}
#region Primitives
/// <summary> Draws a single pixel to the screenbuffer. calls new method with Background as the bgColor </summary>
/// <param name="v">The Point that should be drawn to.</param>
/// <param name="color">The color index.</param>
/// <param name="c">The character that should be drawn with.</param>
public void SetPixel(Point v, int color, ConsoleCharacter c = ConsoleCharacter.Full) {
SetPixel(v, color, Background, (char)c);
}
/// <summary> Overloaded Method Draws a single pixel to the screenbuffer with custom bgColor. </summary>
/// <param name="v">The Point that should be drawn to.</param>
/// <param name="fgColor">The foreground color index.</param>
/// <param name="bgColor">The background color index.</param>
/// <param name="c">The character that should be drawn with.</param>
public void SetPixel(Point v, int fgColor, int bgColor, ConsoleCharacter c = ConsoleCharacter.Full)
{
SetPixel(v, fgColor, bgColor, (char)c);
}
/// <summary> Draws a frame using boxdrawing symbols, calls new method with Background as the bgColor. </summary>
/// <param name="pos">Top Left corner of box.</param>
/// <param name="end">Bottom Right corner of box.</param>
/// <param name="color">The specified color index.</param>
public void Frame(Point pos, Point end, int color) {
Frame(pos,end,color,Background);
}
/// <summary> Draws a frame using boxdrawing symbols. </summary>
/// <param name="pos">Top Left corner of box.</param>
/// <param name="end">Bottom Right corner of box.</param>
/// <param name="fgColor">The specified color index.</param>
/// <param name="bgColor">The specified background color index.</param>
public void Frame(Point pos, Point end, int fgColor, int bgColor)
{
for(int i = 1; i < end.X - pos.X; i++) {
SetPixel(new Point(pos.X + i, pos.Y), fgColor, bgColor, ConsoleCharacter.BoxDrawingL_H);
SetPixel(new Point(pos.X + i, end.Y), fgColor, bgColor, ConsoleCharacter.BoxDrawingL_H);
}
for(int i = 1; i < end.Y - pos.Y; i++) {
SetPixel(new Point(pos.X, pos.Y + i), fgColor, bgColor, ConsoleCharacter.BoxDrawingL_V);
SetPixel(new Point(end.X, pos.Y + i), fgColor, bgColor, ConsoleCharacter.BoxDrawingL_V);
}
SetPixel(new Point(pos.X, pos.Y), fgColor, bgColor, ConsoleCharacter.BoxDrawingL_DR);
SetPixel(new Point(end.X, pos.Y), fgColor, bgColor, ConsoleCharacter.BoxDrawingL_DL);
SetPixel(new Point(pos.X, end.Y), fgColor, bgColor, ConsoleCharacter.BoxDrawingL_UR);
SetPixel(new Point(end.X, end.Y), fgColor, bgColor, ConsoleCharacter.BoxDrawingL_UL);
}
/// <summary> Writes plain text to the buffer, calls new method with Background as the bgColor. </summary>
/// <param name="pos">The position to write to.</param>
/// <param name="text">String to write.</param>
/// <param name="color">Specified color index to write with.</param>
public void WriteText(Point pos, string text, int color) {
WriteText(pos,text,color,Background);
}
/// <summary> Writes plain text to the buffer. </summary>
/// <param name="pos">The position to write to.</param>
/// <param name="text">String to write.</param>
/// <param name="fgColor">Specified color index to write with.</param>
/// <param name="bgColor">Specified background color index to write with.</param>
public void WriteText(Point pos, string text, int fgColor, int bgColor)
{
for(int i = 0; i < text.Length; i++) {
SetPixel(new Point(pos.X + i, pos.Y), fgColor,bgColor, text[i]);
}
}
/// <summary> Writes text to the buffer in a FIGlet font, calls new method with Background as the bgColor. </summary>
/// <param name="pos">The Top left corner of the text.</param>
/// <param name="text">String to write.</param>
/// <param name="font">FIGLET font to write with.</param>
/// <param name="color">Specified color index to write with.</param>
/// <see cref="FigletFont"/>
public void WriteFiglet(Point pos, string text, FigletFont font, int color) {
WriteFiglet(pos, text, font, color, Background);
}
/// <summary> Writes text to the buffer in a FIGlet font. </summary>
/// <param name="pos">The Top left corner of the text.</param>
/// <param name="text">String to write.</param>
/// <param name="font">FIGLET font to write with.</param>
/// <param name="fgColor">Specified color index to write with.</param>
/// <param name="bgColor">Specified background color index to write with.</param>
/// <see cref="FigletFont"/>
public void WriteFiglet(Point pos, string text, FigletFont font, int fgColor, int bgColor)
{
if(text == null) throw new ArgumentNullException(nameof(text));
if(Encoding.UTF8.GetByteCount(text) != text.Length) throw new ArgumentException("String contains non-ascii characters");
int sWidth = FigletFont.GetStringWidth(font, text);
for(int line = 1; line <= font.Height; line++) {
int runningWidthTotal = 0;
for(int c = 0; c < text.Length; c++) {
char character = text[c];
string fragment = FigletFont.GetCharacter(font, character, line);
for(int f = 0; f < fragment.Length; f++) {
if(fragment[f] != ' ') {
SetPixel(new Point(pos.X + runningWidthTotal + f, pos.Y + line - 1), fgColor,bgColor, fragment[f]);
}
}
runningWidthTotal += fragment.Length;
}
}
}
/// <summary> Draws an Arc, calls new method with Background as the bgColor. </summary>
/// <param name="pos">Center of Arc.</param>
/// <param name="radius">Radius of Arc.</param>
/// <param name="color">Specified color index.</param>
/// <param name="arc">angle in degrees, 360 if not specified.</param>
/// <param name="c">Character to use.</param>
public void Arc(Point pos, int radius, int color, int arc = 360, ConsoleCharacter c = ConsoleCharacter.Full) {
Arc(pos, radius, color, Background, arc, c);
}
/// <summary> Draws an Arc. </summary>
/// <param name="pos">Center of Arc.</param>
/// <param name="radius">Radius of Arc.</param>
/// <param name="fgColor">Specified color index.</param>
/// <param name="bgColor">Specified background color index.</param>
/// <param name="arc">angle in degrees, 360 if not specified.</param>
/// <param name="c">Character to use.</param>
public void Arc(Point pos, int radius, int fgColor, int bgColor, int arc = 360, ConsoleCharacter c = ConsoleCharacter.Full)
{
for(int a = 0; a < arc; a++) {
int x = (int)(radius * Math.Cos((float)a / 57.29577f));
int y = (int)(radius * Math.Sin((float)a / 57.29577f));
Point v = new Point(pos.X + x, pos.Y + y);
SetPixel(v, fgColor,bgColor, ConsoleCharacter.Full);
}
}
/// <summary> Draws a filled Arc, calls new method with Background as the bgColor </summary>
/// <param name="pos">Center of Arc.</param>
/// <param name="radius">Radius of Arc.</param>
/// <param name="start">Start angle in degrees.</param>
/// <param name="arc">End angle in degrees.</param>
/// <param name="color">Specified color index.</param>
/// <param name="c">Character to use.</param>
public void SemiCircle(Point pos, int radius, int start, int arc, int color, ConsoleCharacter c = ConsoleCharacter.Full) {
SemiCircle(pos, radius, start, arc, color, Background, c);
}
/// <summary> Draws a filled Arc. </summary>
/// <param name="pos">Center of Arc.</param>
/// <param name="radius">Radius of Arc.</param>
/// <param name="start">Start angle in degrees.</param>
/// <param name="arc">End angle in degrees.</param>
/// <param name="fgColor">Specified color index.</param>
/// <param name="bgColor">Specified background color index.</param>
/// <param name="c">Character to use.</param>
public void SemiCircle(Point pos, int radius, int start, int arc, int fgColor,int bgColor, ConsoleCharacter c = ConsoleCharacter.Full)
{
for(int a = start; a > -arc + start; a--) {
for(int r = 0; r < radius + 1; r++) {
int x = (int)(r * Math.Cos((float)a / 57.29577f));
int y = (int)(r * Math.Sin((float)a / 57.29577f));
Point v = new Point(pos.X + x, pos.Y + y);
SetPixel(v, fgColor,bgColor, c);
}
}
}
// Bresenhams Line Algorithm
// https://en.wikipedia.org/wiki/Bresenham%27s_line_algorithm
/// <summary> Draws a line from start to end. (Bresenhams Line), calls overloaded method with background as bgColor </summary>
/// <param name="start">Point to draw line from.</param>
/// <param name="end">Point to end line at.</param>
/// <param name="color">Color to draw with.</param>
/// <param name="c">Character to use.</param>
public void Line(Point start, Point end, int color, ConsoleCharacter c = ConsoleCharacter.Full) {
Line(start, end, color, Background, c);
}
// Bresenhams Line Algorithm
// https://en.wikipedia.org/wiki/Bresenham%27s_line_algorithm
/// <summary> Draws a line from start to end. (Bresenhams Line) </summary>
/// <param name="start">Point to draw line from.</param>
/// <param name="end">Point to end line at.</param>
/// <param name="fgColor">Color to draw with.</param>
/// <param name="bgColor">Color to draw the background with.</param>
/// <param name="c">Character to use.</param>
public void Line(Point start, Point end, int fgColor,int bgColor, ConsoleCharacter c = ConsoleCharacter.Full)
{
Point delta = end - start;
Point da = Point.Zero, db = Point.Zero;
if(delta.X < 0) da.X = -1; else if(delta.X > 0) da.X = 1;
if(delta.Y < 0) da.Y = -1; else if(delta.Y > 0) da.Y = 1;
if(delta.X < 0) db.X = -1; else if(delta.X > 0) db.X = 1;
int longest = Math.Abs(delta.X);
int shortest = Math.Abs(delta.Y);
if(!(longest > shortest)) {
longest = Math.Abs(delta.Y);
shortest = Math.Abs(delta.X);
if(delta.Y < 0) db.Y = -1; else if(delta.Y > 0) db.Y = 1;
db.X = 0;
}
int numerator = longest >> 1;
Point p = new Point(start.X, start.Y);
for(int i = 0; i <= longest; i++) {
SetPixel(p, fgColor,bgColor, c);
numerator += shortest;
if(!(numerator < longest)) {
numerator -= longest;
p += da;
}
else {
p += db;
}
}
}
/// <summary> Draws a Rectangle, calls overloaded method with background as bgColor </summary>
/// <param name="pos">Top Left corner of rectangle.</param>
/// <param name="end">Bottom Right corner of rectangle.</param>
/// <param name="color">Color to draw with.</param>
/// <param name="c">Character to use.</param>
public void Rectangle(Point pos, Point end, int color, ConsoleCharacter c = ConsoleCharacter.Full) {
Rectangle(pos, end, color, Background, c);
}
/// <summary> Draws a Rectangle. </summary>
/// <param name="pos">Top Left corner of rectangle.</param>
/// <param name="end">Bottom Right corner of rectangle.</param>
/// <param name="fgColor">Color to draw with.</param>
/// <param name="bgColor">Color to draw to the background with.</param>
/// <param name="c">Character to use.</param>
public void Rectangle(Point pos, Point end, int fgColor,int bgColor, ConsoleCharacter c = ConsoleCharacter.Full)
{
for(int i = 0; i < end.X - pos.X; i++) {
SetPixel(new Point(pos.X + i, pos.Y), fgColor,bgColor, c);
SetPixel(new Point(pos.X + i, end.Y), fgColor, bgColor, c);
}
for(int i = 0; i < end.Y - pos.Y + 1; i++) {
SetPixel(new Point(pos.X, pos.Y + i), fgColor, bgColor, c);
SetPixel(new Point(end.X, pos.Y + i), fgColor, bgColor, c);
}
}
/// <summary> Draws a Rectangle and fills it, calls overloaded method with background as bgColor </summary>
/// <param name="a">Top Left corner of rectangle.</param>
/// <param name="b">Bottom Right corner of rectangle.</param>
/// <param name="color">Color to draw with.</param>
/// <param name="c">Character to use.</param>
public void Fill(Point a, Point b, int color, ConsoleCharacter c = ConsoleCharacter.Full) {
Fill(a, b, color, Background, c);
}
/// <summary> Draws a Rectangle and fills it. </summary>
/// <param name="a">Top Left corner of rectangle.</param>
/// <param name="b">Bottom Right corner of rectangle.</param>
/// <param name="fgColor">Color to draw with.</param>
/// <param name="bgColor">Color to draw the background with.</param>
/// <param name="c">Character to use.</param>
public void Fill(Point a, Point b, int fgColor,int bgColor, ConsoleCharacter c = ConsoleCharacter.Full)
{
for(int y = a.Y; y < b.Y; y++) {
for(int x = a.X; x < b.X; x++) {
SetPixel(new Point(x, y), fgColor,bgColor, c);
}
}
}
/// <summary> Draws a grid, calls overloaded method with background as bgColor </summary>
/// <param name="a">Top Left corner of grid.</param>
/// <param name="b">Bottom Right corner of grid.</param>
/// <param name="spacing">the spacing until next line</param>
/// <param name="color">Color to draw with.</param>
/// <param name="c">Character to use.</param>
public void Grid(Point a, Point b, int spacing, int color, ConsoleCharacter c = ConsoleCharacter.Full) {
Grid(a, b, spacing, color, Background, c);
}
/// <summary> Draws a grid. </summary>
/// <param name="a">Top Left corner of grid.</param>
/// <param name="b">Bottom Right corner of grid.</param>
/// <param name="spacing">the spacing until next line</param>
/// <param name="fgColor">Color to draw with.</param>
/// <param name="bgColor">Color to draw the background with.</param>
/// <param name="c">Character to use.</param>
public void Grid(Point a, Point b, int spacing, int fgColor,int bgColor, ConsoleCharacter c = ConsoleCharacter.Full)
{
for(int y = a.Y; y < b.Y / spacing; y++) {
Line(new Point(a.X, y * spacing), new Point(b.X, y * spacing), fgColor,bgColor, c);
}
for(int x = a.X; x < b.X / spacing; x++) {
Line(new Point(x * spacing, a.Y), new Point(x * spacing, b.Y), fgColor, bgColor, c);
}
}
/// <summary> Draws a Triangle, calls overloaded method with background as bgColor </summary>
/// <param name="a">Point A.</param>
/// <param name="b">Point B.</param>
/// <param name="c">Point C.</param>
/// <param name="color">Color to draw with.</param>
/// <param name="character">Character to use.</param>
public void Triangle(Point a, Point b, Point c, int color, ConsoleCharacter character = ConsoleCharacter.Full) {
Triangle(a,b,c,color,Background,character);
}
/// <summary> Draws a Triangle. </summary>
/// <param name="a">Point A.</param>
/// <param name="b">Point B.</param>
/// <param name="c">Point C.</param>
/// <param name="fgColor">Color to draw with.</param>
/// <param name="bgColor">Color to draw to the background with.</param>
/// <param name="character">Character to use.</param>
public void Triangle(Point a, Point b, Point c, int fgColor,int bgColor, ConsoleCharacter character = ConsoleCharacter.Full)
{
Line(a, b, fgColor,bgColor, character);
Line(b, c, fgColor, bgColor, character);
Line(c, a, fgColor, bgColor, character);
}
// Bresenhams Triangle Algorithm
/// <summary> Draws a Triangle and fills it, calls overloaded method with background as bgColor </summary>
/// <param name="a">Point A.</param>
/// <param name="b">Point B.</param>
/// <param name="c">Point C.</param>
/// <param name="color">Color to draw with.</param>
/// <param name="character">Character to use.</param>
public void FillTriangle(Point a, Point b, Point c, int color, ConsoleCharacter character = ConsoleCharacter.Full) {
FillTriangle(a, b, c, color, Background, character);
}
/// <summary> Draws a Triangle and fills it. </summary>
/// <param name="a">Point A.</param>
/// <param name="b">Point B.</param>
/// <param name="c">Point C.</param>
/// <param name="fgColor">Color to draw with.</param>
/// <param name="bgColor">Color to draw to the background with.</param>
/// <param name="character">Character to use.</param>
public void FillTriangle(Point a, Point b, Point c, int fgColor, int bgColor, ConsoleCharacter character = ConsoleCharacter.Full)
{
Point min = new Point(Math.Min(Math.Min(a.X, b.X), c.X), Math.Min(Math.Min(a.Y, b.Y), c.Y));
Point max = new Point(Math.Max(Math.Max(a.X, b.X), c.X), Math.Max(Math.Max(a.Y, b.Y), c.Y));
Point p = new Point();
for(p.Y = min.Y; p.Y < max.Y; p.Y++) {
for(p.X = min.X; p.X < max.X; p.X++) {
int w0 = Orient(b, c, p);
int w1 = Orient(c, a, p);
int w2 = Orient(a, b, p);
if(w0 >= 0 && w1 >= 0 && w2 >= 0) SetPixel(p, fgColor,bgColor, character);
}
}
}
private int Orient(Point a, Point b, Point c) {
return ((b.X - a.X) * (c.Y - a.Y)) - ((b.Y - a.Y) * (c.X - a.X));
}
#endregion Primitives
// Input
/// <summary>Checks to see if the console is in focus </summary>
/// <returns>True if Console is in focus</returns>
private bool ConsoleFocused()
{
return NativeMethods.GetConsoleWindow() == NativeMethods.GetForegroundWindow();
}
/// <summary> Checks if specified key is pressed. </summary>
/// <param name="key">The key to check.</param>
/// <returns>True if key is pressed</returns>
public bool GetKey(ConsoleKey key) {
short s = NativeMethods.GetAsyncKeyState((int)key);
return (s & 0x8000) > 0 && ConsoleFocused();
}
/// <summary> Checks if specified keyCode is pressed. </summary>
/// <param name="virtualkeyCode">keycode to check</param>
/// <returns>True if key is pressed</returns>
public bool GetKey(int virtualkeyCode)
{
short s = NativeMethods.GetAsyncKeyState(virtualkeyCode);
return (s & 0x8000) > 0 && ConsoleFocused();
}
/// <summary> Checks if specified key is pressed down. </summary>
/// <param name="key">The key to check.</param>
/// <returns>True if key is down</returns>
public bool GetKeyDown(ConsoleKey key) {
int s = Convert.ToInt32(NativeMethods.GetAsyncKeyState((int)key));
return (s == -32767) && ConsoleFocused();
}
/// <summary> Checks if specified keyCode is pressed down. </summary>
/// <param name="virtualkeyCode">keycode to check</param>
/// <returns>True if key is down</returns>
public bool GetKeyDown(int virtualkeyCode)
{
int s = Convert.ToInt32(NativeMethods.GetAsyncKeyState(virtualkeyCode));
return (s == -32767) && ConsoleFocused();
}
/// <summary> Checks if left mouse button is pressed down. </summary>
/// <returns>True if left mouse button is down</returns>
public bool GetMouseLeft() {
short s = NativeMethods.GetAsyncKeyState(0x01);
return (s & 0x8000) > 0 && ConsoleFocused();
}
/// <summary> Checks if right mouse button is pressed down. </summary>
/// <returns>True if right mouse button is down</returns>
public bool GetMouseRight()
{
short s = NativeMethods.GetAsyncKeyState(0x02);
return (s & 0x8000) > 0 && ConsoleFocused();
}
/// <summary> Checks if middle mouse button is pressed down. </summary>
/// <returns>True if middle mouse button is down</returns>
public bool GetMouseMiddle()
{
short s = NativeMethods.GetAsyncKeyState(0x04);
return (s & 0x8000) > 0 && ConsoleFocused();
}
/// <summary> Gets the mouse position. </summary>
/// <returns>The mouse's position in character-space.</returns>
/// <exception cref="Exception"/>
public Point GetMousePos() {
NativeMethods.Rect r = new NativeMethods.Rect();
NativeMethods.GetWindowRect(consoleHandle, ref r);
if (NativeMethods.GetCursorPos(out NativeMethods.POINT p)) {
Point point = new Point();
if (!IsBorderless) {
p.Y -= 29;
point = new Point(
(int)Math.Floor(((p.X - r.Left) / (float)FontSize.X) - 0.5f),
(int)Math.Floor(((p.Y - r.Top) / (float)FontSize.Y))
);
} else {
point = new Point(
(int)Math.Floor(((p.X - r.Left) / (float)FontSize.X)),
(int)Math.Floor(((p.Y - r.Top) / (float)FontSize.Y))
);
}
return new Point(Utility.Clamp(point.X, 0, WindowSize.X - 1), Utility.Clamp(point.Y, 0, WindowSize.Y - 1));
}
throw new Exception();
}
}
}