forked from Thraka/SadConsole.Drawing
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathColoredString.cs
268 lines (228 loc) · 9.66 KB
/
ColoredString.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
using System.Drawing;
using System.Collections.Generic;
using System.Runtime.Serialization;
using System.Collections;
using SadConsole.StringParser;
namespace SadConsole
{
/// <summary>
/// Represents a string that has foreground and background colors for each character in the string.
/// </summary>
[DataContract]
public partial class ColoredString : IEnumerable<ColoredGlyph>
{
[DataMember(Name = "Characters")]
private List<ColoredGlyph> _characters;
public ColoredGlyph this[int index]
{
get { return _characters[index]; }
set { _characters[index] = value; }
}
/// <summary>
/// Gets or sets the string. When Set, the colors for each character default to the <see cref="SadConsole.ColoredString.Foreground"/> and <see cref="SadConsole.ColoredString.Background"/> property values.
/// </summary>
public string String
{
get
{
if (_characters.Count == 0)
return "";
System.Text.StringBuilder sb = new System.Text.StringBuilder(_characters.Count);
for (int i = 0; i < _characters.Count; i++)
sb.Append(_characters[i].Glyph);
return sb.ToString();
}
set
{
_characters = ColoredString.Parse(value)._characters;
}
}
public int Count { get { return _characters.Count; } }
/// <summary>
/// When true, instructs a caller to not render the glyphs of the string.
/// </summary>
[DataMember]
public bool IgnoreGlyph;
/// <summary>
/// When true, instructs a caller to not render the <see cref="Foreground"/>.
/// </summary>
[DataMember]
public bool IgnoreForeground;
/// <summary>
/// When true, instructs a caller to not render the <see cref="Background"/>.
/// </summary>
[DataMember]
public bool IgnoreBackground;
/// <summary>
/// Default contructor.
/// </summary>
public ColoredString() { }
/// <summary>
/// Creates a new instance of the ColoredString class with the specified blank characters.
/// </summary>
/// <param name="capacity">The number of blank characters.</param>
public ColoredString(int capacity)
{
_characters = new List<ColoredGlyph>(capacity);
for (int i = 0; i < capacity; i++)
{
_characters.Add(new ColoredGlyph() { Glyph = ' ' });
}
}
/// <summary>
/// Creates a new instance of the ColoredString class with the specified string value.
/// </summary>
/// <param name="value">The backing string.</param>
public ColoredString(string value) { String = value; }
/// <summary>
/// Creates a new instance of the ColoredString class with the specified string value, foreground and background colors, and a cell effect.
/// </summary>
/// <param name="value">The backing string.</param>
/// <param name="foreground">The foreground color for each character.</param>
/// <param name="background">The background color for each character.</param>
/// <param name="spriteEffect">The sprite effects for each character.</param>
public ColoredString(string value, Color foreground, Color background)
{
var stacks = new ParseCommandStacks();
stacks.AddSafe(new ParseCommandRecolor() { R = foreground.R, G = foreground.G, B = foreground.B, A = foreground.A, CommandType = CommandTypes.Foreground });
stacks.AddSafe(new ParseCommandRecolor() { R = background.R, G = background.G, B = background.B, A = background.A, CommandType = CommandTypes.Background });
_characters = ColoredString.Parse(value, initialBehaviors: stacks)._characters;
}
/// <summary>
/// Creates a new instance of the ColoredString class with the specified string value, foreground and background colors, and a cell effect.
/// </summary>
/// <param name="value">The backing string.</param>
/// <param name="appearance">The appearance to use for each character.</param>
public ColoredString(string value, CellAppearance appearance) : this(value, appearance.Foreground, appearance.Background) { }
/// <summary>
/// Combines a <see cref="ColoredGlyph"/> array into a <see cref="ColoredString"/>.
/// </summary>
/// <param name="glyphs">The glyphs to combine.</param>
public ColoredString(ColoredGlyph[] glyphs)
{
_characters = new List<ColoredGlyph>(glyphs);
}
/// <summary>
/// Returns a new <see cref="ColoredString"/> object using a substring of this instance.
/// </summary>
/// <param name="index">The index to copy the contents from.</param>
/// <param name="count">The count of <see cref="ColoredGlyph"/> objects to copy.</param>
/// <returns>A new <see cref="ColoredString"/> object.</returns>
public ColoredString SubString(int index, int count)
{
if (index + count > _characters.Count)
throw new System.IndexOutOfRangeException();
ColoredString returnObject = new ColoredString(count);
returnObject.IgnoreBackground = this.IgnoreBackground;
returnObject.IgnoreForeground = this.IgnoreForeground;
returnObject.IgnoreGlyph = this.IgnoreGlyph;
for (int i = 0; i < count; i++)
{
returnObject._characters[i] = _characters[i + index].Clone();
}
return returnObject;
}
/// <summary>
/// Applies the referenced color to every character foreground in the colored string.
/// </summary>
/// <param name="color">The color to apply.</param>
public void SetForeground(Color color)
{
for (int i = 0; i < _characters.Count; i++)
{
_characters[i].Foreground = color;
}
}
/// <summary>
/// Applies the referenced color to every character background in the colored string.
/// </summary>
/// <param name="color">The color to apply.</param>
public void SetBackground(Color color)
{
for (int i = 0; i < _characters.Count; i++)
{
_characters[i].Background = color;
}
}
public override string ToString()
{
return this.String;
}
public IEnumerator<ColoredGlyph> GetEnumerator()
{
return ((IEnumerable<ColoredGlyph>)_characters).GetEnumerator();
}
IEnumerator IEnumerable.GetEnumerator()
{
return ((IEnumerable<ColoredGlyph>)_characters).GetEnumerator();
}
/// <summary>
/// Combines two ColoredString objects into a single ColoredString object. Ignore* values are only copied when both strings Ignore* values match.
/// </summary>
/// <param name="string1">The left-side of the string.</param>
/// <param name="string2">The right-side of the string.</param>
/// <returns></returns>
public static ColoredString operator +(ColoredString string1, ColoredString string2)
{
ColoredString returnString = new ColoredString(string1.Count + string2.Count);
for (int i = 0; i < string1.Count; i++)
returnString._characters[i] = string1._characters[i].Clone();
for (int i = 0; i < string2.Count; i++)
returnString._characters[i + string1.Count] = string2._characters[i].Clone();
returnString.IgnoreGlyph = string1.IgnoreGlyph && string1.IgnoreGlyph;
returnString.IgnoreForeground = string1.IgnoreForeground && string1.IgnoreForeground;
returnString.IgnoreBackground = string1.IgnoreBackground && string1.IgnoreBackground;
return returnString;
}
}
/// <summary>
/// Represents a single character that has a foreground and background color.
/// </summary>
[DataContract]
public class ColoredGlyph: CellAppearance
{
[DataMember(Name = "Glyph")]
private char _character;
/// <summary>
/// The glyph.
/// </summary>
public char Glyph
{
get { return _character; }
set
{
_character = value;
base.GlyphIndex = _character;
}
}
/// <summary>
/// Sets the glyph by index.
/// </summary>
public new int GlyphIndex
{
get { return base.GlyphIndex; }
set { Glyph = (char)value; }
}
/// <summary>
/// Creates a new colored glyph with a white foreground, transparent background, and a glyph index of 0.
/// </summary>
public ColoredGlyph() { }
/// <summary>
/// Creates a new colored glyph based on the provided cell.
/// </summary>
/// <param name="cell">The cell.</param>
public ColoredGlyph(Cell cell)
{
cell.CopyAppearanceTo(this);
Glyph = (char)cell.GlyphIndex;
}
/// <summary>
/// Creates a new copy of this cell appearance.
/// </summary>
/// <returns>The cloned cell appearance.</returns>
public new ColoredGlyph Clone()
{
return new ColoredGlyph() { Foreground = this.Foreground, Background = this.Background, Glyph = this.Glyph };
}
}
}