forked from Thraka/SadConsole.Drawing
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCursor.cs
540 lines (454 loc) · 19.6 KB
/
Cursor.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
using System;
using System.Runtime.Serialization;
using System.Drawing;
namespace SadConsole.Consoles
{
//TODO: Cursor should have option to not use PrintAppearance but just place the character using existing appearance of cell
[DataContract]
public class Cursor
{
private WeakReference _console;
private Point _position = new Point();
private int _cursorCharacter = 95;
/// <summary>
/// Cell used to render the cursor on the screen.
/// </summary>
[DataMember]
public Cell CursorRenderCell { get; set; }
/// <summary>
/// Appearance used when printing text.
/// </summary>
[DataMember]
public ICellAppearance PrintAppearance { get; set; }
///// <summary>
///// This effect is applied to each cell printed by the cursor.
///// </summary>
//[DataMember]
//public ICellEffect PrintEffect { get; set; }
/// <summary>
/// When true, indicates that the cursor, when printing, should not use the <see cref="PrintAppearance"/> property in determining the color/effect of the cell, but keep the cell the same as it was.
/// </summary>
[DataMember]
public bool PrintOnlyCharacterData { get; set; }
/// <summary>
/// Shows or hides the cursor. This does not affect how the cursor operates.
/// </summary>
[DataMember]
public bool IsVisible { get; set; }
/// <summary>
/// Gets or sets the location of the cursor on the console.
/// </summary>
[DataMember]
public Point Position
{
get { return _position; }
set
{
if (_console != null)
{
SurfaceEditor console = (SurfaceEditor)_console.Target;
if (!(value.X < 0 || value.X >= console.TextSurface.Width))
_position.X = value.X;
if (!(value.Y < 0 || value.Y >= console.TextSurface.Height))
_position.Y = value.Y;
}
}
}
/// <summary>
/// When true, prevents the <see cref="Print"/> method from breaking words up by spaces when wrapping lines.
/// </summary>
[DataMember]
public bool DisableWordBreak = false;
/// <summary>
/// Enables linux-like string parsing where a \n behaves like a \r\n.
/// </summary>
[DataMember]
public bool UseLinuxLineEndings = false;
[DataMember]
public bool UseStringParser = false;
/// <summary>
/// Gets or sets the row of the cursor postion.
/// </summary>
public int Row
{
get { return _position.Y; }
set { _position.Y = value; }
}
/// <summary>
/// Gets or sets the column of the cursor postion.
/// </summary>
public int Column
{
get { return _position.X; }
set { _position.X = value; }
}
/// <summary>
/// Indicates that the when the cursor goes past the last cell of the console, that the rows should be shifted up when the cursor is automatically reset to the next line.
/// </summary>
[DataMember]
public bool AutomaticallyShiftRowsUp { get; set; }
/// <summary>
/// Creates a new instance of the cursor class that will work with the specified console.
/// </summary>
/// <param name="console">The console this cursor will print on.</param>
public Cursor(SurfaceEditor console)
{
_console = new WeakReference(console);
IsVisible = false;
PrintAppearance = new CellAppearance(Color.White, Color.Black);
AutomaticallyShiftRowsUp = true;
CursorRenderCell = new Cell();
CursorRenderCell.GlyphIndex = _cursorCharacter;
CursorRenderCell.Foreground = Color.White;
CursorRenderCell.Background = Color.Transparent;
ResetCursorEffect();
}
internal Cursor()
{
}
/// <summary>
/// Sets the console this cursor is targetting.
/// </summary>
/// <param name="console">The console the cursor works with.</param>
public void AttachConsole(SurfaceEditor console)
{
_console = new WeakReference(console);
}
/// <summary>
/// Resets the <see cref="CursorRenderCell"/> back to the default.
/// </summary>
public void ResetCursorEffect()
{
//SadConsole.Effects.Blink blinkEffect = new Effects.Blink();
//blinkEffect.BlinkSpeed = 0.35f;
//CursorRenderCell.Effect = blinkEffect;
}
/// <summary>
/// Resets the cursor appearance to the console's default foreground and background.
/// </summary>
/// <returns>This cursor object.</returns>
/// <exception cref="Exception">Thrown when the backing console's CellData is null.</exception>
public Cursor ResetAppearanceToConsole()
{
var console = ((SurfaceEditor)_console.Target);
if (console.TextSurface != null)
PrintAppearance = new CellAppearance(console.TextSurface.DefaultForeground, console.TextSurface.DefaultBackground);
else
throw new Exception("CellData of the attached console is null. Cannot reset appearance.");
return this;
}
private void PrintGlyph(ColoredGlyph glyph, ColoredString settings)
{
var console = (SurfaceEditor)_console.Target;
var cell = console.TextSurface.Cells[_position.Y * console.TextSurface.Width + _position.X];
if (!PrintOnlyCharacterData)
{
if (!settings.IgnoreBackground)
cell.Background = glyph.Background;
if (!settings.IgnoreForeground)
cell.Foreground = glyph.Foreground;
//if (!settings.IgnoreEffect)
// cell.Effect = glyph.Effect;
//if (!settings.IgnoreSpriteEffect)
// cell.SpriteEffect = glyph.SpriteEffect;
}
if (!settings.IgnoreGlyph)
cell.GlyphIndex = glyph.Glyph;
_position.X += 1;
if (_position.X >= console.TextSurface.Width)
{
_position.X = 0;
_position.Y += 1;
if (_position.Y >= console.TextSurface.Height)
{
_position.Y -= 1;
if (AutomaticallyShiftRowsUp)
{
console.ShiftUp();
}
}
}
}
/// <summary>
/// Prints text to the console using the default print appearance.
/// </summary>
/// <param name="text">The text to print.</param>
/// <returns>Returns this cursor object.</returns>
public Cursor Print(string text)
{
Print(text, PrintAppearance);
return this;
}
/// <summary>
/// Prints text on the console.
/// </summary>
/// <param name="text">The text to print.</param>
/// <param name="template">The way the text will look when it is printed.</param>
/// <param name="templateEffect">Effect to apply to the text as its printed.</param>
/// <returns>Returns this cursor object.</returns>
public Cursor Print(string text, ICellAppearance template)
{
ColoredString coloredString;
if (UseStringParser)
{
var console = (SurfaceEditor)_console.Target;
coloredString = ColoredString.Parse(text, _position.Y * console.TextSurface.Width + _position.X, console.TextSurface, console, new StringParser.ParseCommandStacks());
}
else
{
coloredString = text.CreateColored(template.Foreground, template.Background);
}
return Print(coloredString);
}
/// <summary>
/// Prints text to the console using the appearance of the colored string.
/// </summary>
/// <param name="text">The text to print.</param>
/// <returns>Returns this cursor object.</returns>
public Cursor Print(ColoredString text)
{
// If we don't want the pretty print, or we're printing a single character (for example, from keyboard input)
// Then use the pretty print system.
if (!DisableWordBreak && text.String.Length != 1)
{
// Prep
var console = (SurfaceEditor)_console.Target;
ColoredGlyph glyph;
ColoredGlyph spaceGlyph = text[0].Clone();
spaceGlyph.Glyph = ' ';
string stringText = text.String.TrimEnd(' ');
// Pull any starting spaces off
var newStringText = stringText.TrimStart(' ');
int spaceCount = stringText.Length - newStringText.Length;
for (int i = 0; i < spaceCount; i++)
PrintGlyph(spaceGlyph, text);
if (spaceCount != 0)
text = text.SubString(spaceCount, text.Count - spaceCount);
stringText = newStringText;
string[] parts = stringText.Split(' ');
// Start processing the string
int c = 0;
for (int wordMajor = 0; wordMajor < parts.Length; wordMajor++)
{
// Words broken up by spaces = parts
if (parts[wordMajor].Length != 0)
{
// Parts broken by new lines = newLineParts
string[] newlineParts = parts[wordMajor].Split('\n');
for (int indexNL = 0; indexNL < newlineParts.Length; indexNL++)
{
if (newlineParts[indexNL].Length != 0)
{
int currentLine = _position.Y;
// New line parts broken up by carriage returns = returnParts
string[] returnParts = newlineParts[indexNL].Split('\r');
for (int indexR = 0; indexR < returnParts.Length; indexR++)
{
// If the text we'll print will move off the edge, fill with spaces to get a fresh line
if (returnParts[indexR].Length > console.Width - _position.X && _position.X != 0)
{
var spaces = console.Width - _position.X;
// Fill rest of line with spaces
for (int i = 0; i < spaces; i++)
PrintGlyph(spaceGlyph, text);
}
// Print the rest of the text as normal.
for (int i = 0; i < returnParts[indexR].Length; i++)
{
glyph = text[c];
PrintGlyph(glyph, text);
c++;
}
// If we had a \r in the string, handle it by going back
if (returnParts.Length != 1 && indexR != returnParts.Length - 1)
{
// Wrapped to a new line through print glyph, which triggerd \r\n. We don't want the \n so return back.
if (_position.X == 0 && _position.Y != currentLine)
_position.Y -= 1;
else
CarriageReturn();
c++;
}
}
}
// We had \n in the string, handle them.
if (newlineParts.Length != 1 && indexNL != newlineParts.Length - 1)
{
if (!UseLinuxLineEndings)
LineFeed();
else
NewLine();
c++;
}
}
}
// Not last part
if (wordMajor != parts.Length - 1 && _position.X != 0)
{
PrintGlyph(spaceGlyph, text);
c++;
}
else
c++;
}
}
else
{
bool movedLines = false;
int oldLine = _position.Y;
foreach (var glyph in text)
{
// Check if the previous print moved us down a line (from print at end of the line) and move use back for the \r
if (movedLines)
{
if (_position.X == 0 && glyph.Glyph == '\r')
{
_position.Y -= 1;
continue;
}
else
movedLines = false;
}
if (glyph.Glyph == '\r')
CarriageReturn();
else if (glyph.Glyph == '\n')
{
if (!UseLinuxLineEndings)
LineFeed();
else
NewLine();
}
else
{
PrintGlyph(glyph, text);
// Lines changed and it wasn't a \n that caused it, so it was a print that did it.
movedLines = _position.Y != oldLine;
}
}
}
return this;
}
/// <summary>
/// Returns the cursor to the start of the current line.
/// </summary>
/// <returns>The current cursor object.</returns>
public Cursor CarriageReturn()
{
_position.X = 0;
return this;
}
/// <summary>
/// Moves the cursor down a line.
/// </summary>
/// <returns>The current cursor object.</returns>
public Cursor LineFeed()
{
if (_position.Y == ((SurfaceEditor)_console.Target).TextSurface.Height - 1)
{
((SurfaceEditor)_console.Target).ShiftUp();
//if (((CustomConsole)_console.Target).Data.ResizeOnShift)
// _position.Y++;
}
else
_position.Y++;
return this;
}
/// <summary>
/// Calls the <see cref="M:CarriageReturn()"/> and <see cref="M:LineFeed()"/> methods in a single call.
/// </summary>
/// <returns>The current cursor object.</returns>
public Cursor NewLine()
{
return CarriageReturn().LineFeed();
}
/// <summary>
/// Moves the cusor up by the specified amount of lines.
/// </summary>
/// <param name="amount">The amount of lines to move the cursor</param>
/// <returns>This cursor object.</returns>
public Cursor Up(int amount)
{
int newY = _position.Y - amount;
if (newY < 0)
newY = 0;
Position = new Point(_position.X, newY);
return this;
}
/// <summary>
/// Moves the cusor down by the specified amount of lines.
/// </summary>
/// <param name="amount">The amount of lines to move the cursor</param>
/// <returns>This cursor object.</returns>
public Cursor Down(int amount)
{
int newY = _position.Y + amount;
if (newY >= ((SurfaceEditor)_console.Target).TextSurface.Height)
newY = ((SurfaceEditor)_console.Target).TextSurface.Height - 1;
Position = new Point(_position.X, newY);
return this;
}
/// <summary>
/// Moves the cusor left by the specified amount of columns.
/// </summary>
/// <param name="amount">The amount of columns to move the cursor</param>
/// <returns>This cursor object.</returns>
public Cursor Left(int amount)
{
int newX = _position.X - amount;
if (newX < 0)
newX = 0;
Position = new Point(newX, _position.Y);
return this;
}
/// <summary>
/// Moves the cusor left by the specified amount of columns, wrapping the cursor if needed.
/// </summary>
/// <param name="amount">The amount of columns to move the cursor</param>
/// <returns>This cursor object.</returns>
public Cursor LeftWrap(int amount)
{
var console = ((SurfaceEditor)_console.Target);
int index = TextSurface.GetIndexFromPoint(this._position, console.TextSurface.Width) - amount;
if (index < 0)
index = 0;
this._position = TextSurface.GetPointFromIndex(index, console.TextSurface.Width);
return this;
}
/// <summary>
/// Moves the cusor right by the specified amount of columns.
/// </summary>
/// <param name="amount">The amount of columns to move the cursor</param>
/// <returns>This cursor object.</returns>
public Cursor Right(int amount)
{
int newX = _position.X + amount;
if (newX >= ((SurfaceEditor)_console.Target).TextSurface.Width)
newX = ((SurfaceEditor)_console.Target).TextSurface.Width - 1;
Position = new Point(newX, _position.Y);
return this;
}
/// <summary>
/// Moves the cusor right by the specified amount of columns, wrapping the cursor if needed.
/// </summary>
/// <param name="amount">The amount of columns to move the cursor</param>
/// <returns>This cursor object.</returns>
public Cursor RightWrap(int amount)
{
var console = ((SurfaceEditor)_console.Target);
int index = TextSurface.GetIndexFromPoint(this._position, console.TextSurface.Width) + amount;
if (index > console.TextSurface.Cells.Length)
index = console.TextSurface.Cells.Length - 1;
this._position = TextSurface.GetPointFromIndex(index, console.TextSurface.Width);
return this;
}
public virtual void Render(SpriteBatch batch, Font font, Rectangle renderArea)
{
#if SFML
batch.DrawCell(CursorRenderCell, renderArea, font.SolidGlyphRectangle, Color.Transparent, font);
#elif MONOGAME
batch.Draw(font.FontImage, renderArea, font.GlyphIndexRects[font.SolidGlyphIndex], CursorRenderCell.ActualBackground, 0f, Vector2.Zero, SpriteEffects.None, 0.6f);
batch.Draw(font.FontImage, renderArea, font.GlyphIndexRects[CursorRenderCell.ActualGlyphIndex], CursorRenderCell.ActualForeground, 0f, Vector2.Zero, SpriteEffects.None, 0.7f);
#endif
}
}
}