-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathTextSurface.cs
306 lines (255 loc) · 9.78 KB
/
TextSurface.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
using System.Drawing;
using System.Collections.Generic;
using System.Runtime.Serialization;
using System;
namespace SadConsole.Consoles
{
/// <summary>
/// The base class for a text surface. Provides code for the view port and basic cell access.
/// </summary>
[DataContract]
public class TextSurface : TextSurfaceBasic, IEnumerable<Cell>, ITextSurfaceRendered
{
[DataMember(Name = "Font")]
protected Font font;
[DataMember(Name = "Area")]
protected Rectangle area;
public Image BackbufferImage { get; private set; }
public Graphics Backbuffer { get; private set; }
/// <summary>
/// The total cells for this surface.
/// </summary>
public int CellCount { get { return cells.Length; } }
/// <summary>
/// Font used with rendering.
/// </summary>
public Font Font { get { return font; } set { font = value; OnFontChanged(); } }
#region ITextSurfaceView
/// <summary>
/// Pixel area of the render cells.
/// </summary>
public Rectangle AbsoluteArea { get; set; }
/// <summary>
/// Destination rectangles for rendering.
/// </summary>
public Rectangle[] RenderRects { get; set; }
/// <summary>
/// Cells that will be rendered.
/// </summary>
public Cell[] RenderCells { get; set; }
/// <summary>
/// A tint used in rendering.
/// </summary>
[DataMember]
public Color Tint { get; set; } = Color.Transparent;
/// <summary>
/// Sets the area of the text surface that should be rendered.
/// </summary>
public Rectangle RenderArea
{
get { return area; }
set
{
area = value;
if (area == null)
area = new Rectangle(0, 0, width, height);
#if SFML
if (area.Width > width)
area.Width = width;
if (area.Height > height)
area.Height = height;
if (area.Left < 0)
area.Left = 0;
if (area.Top < 0)
area.Top = 0;
if (area.Left + area.Width > width)
area.Left = width - area.Width;
if (area.Top + area.Height > height)
area.Top = height - area.Height;
#elif MONOGAME
if (area.Width > width)
area.Width = width;
if (area.Height > height)
area.Height = height;
if (area.X < 0)
area.X = 0;
if (area.Y < 0)
area.Y = 0;
if (area.X + area.Width > width)
area.X = width - area.Width;
if (area.Y + area.Height > height)
area.Y = height - area.Height;
#endif
ResetArea();
}
}
#endregion
/// <summary>
/// Creates a new text surface with the specified width and height and <see cref="Engine.DefaultFont"/>.
/// </summary>
/// <param name="width">The width of the surface.</param>
/// <param name="height">The height of the surface.</param>
public TextSurface(int width, int height) : this(width, height, FontMaster.DefaultFont)
{
}
/// <summary>
/// Creates a new text surface with the specified width and height.
/// </summary>
/// <param name="width">The width of the surface.</param>
/// <param name="height">The height of the surface.</param>
/// <param name="font">The font used with rendering.</param>
public TextSurface(int width, int height, Font font): base(width, height)
{
area = new Rectangle(0, 0, width, height);
Font = font;
}
/// <summary>
/// Creates a new text surface with the specified width, height, and initial set of cell data. Uses <see cref="Engine.DefaultFont"/>.
/// </summary>
/// <param name="width">The width of the surface.</param>
/// <param name="height">The height of the surface.</param>
/// <param name="initialCells"></param>
public TextSurface(int width, int height, Cell[] initialCells) : this(width, height, initialCells, FontMaster.DefaultFont)
{
}
/// <summary>
/// Creates a new text surface with the specified width, height, and initial set of cell data.
/// </summary>
/// <param name="width">The width of the surface.</param>
/// <param name="height">The height of the surface.</param>
/// <param name="font">The font used with rendering.</param>
/// <param name="initialCells"></param>
public TextSurface(int width, int height, Cell[] initialCells, Font font) : base(width, height, initialCells)
{
area = new Rectangle(0, 0, width, height);
Font = font;
}
/// <summary>
/// Sets <see cref="RenderCells"/> to <see cref="TextSurfaceBasic.cells"/>.
/// </summary>
protected override void InitializeCells()
{
base.InitializeCells();
RenderCells = cells;
}
/// <summary>
/// Keeps the text view data in sync with this surface.
/// </summary>
protected virtual void ResetArea()
{
RenderRects = new Rectangle[area.Width * area.Height];
RenderCells = new Cell[area.Width * area.Height];
int index = 0;
for (int y = 0; y < area.Height; y++)
{
for (int x = 0; x < area.Width; x++)
{
RenderRects[index] = font.GetRenderRect(x, y);
RenderCells[index] = cells[(y + area.Top) * width + (x + area.Left)];
index++;
}
}
// TODO: Optimization by calculating AbsArea and seeing if it's diff from current, if so, don't create new RenderRects
AbsoluteArea = new Rectangle(0, 0, area.Width * font.Size.X, area.Height * font.Size.Y);
if (BackbufferImage != null)
BackbufferImage.Dispose();
BackbufferImage = new Bitmap(AbsoluteArea.Width, AbsoluteArea.Height);
if (Backbuffer != null)
Backbuffer.Dispose();
Backbuffer = Graphics.FromImage(BackbufferImage);
}
protected virtual void OnFontChanged()
{
ResetArea();
}
#region Static Methods
public static int GetIndexFromPoint(Point location, int width)
{
return location.Y * width + location.X;
}
public static int GetIndexFromPoint(int x, int y, int width)
{
return y * width + x;
}
public static Point GetPointFromIndex(int index, int width)
{
return new Point(index % width, index / width);
}
#endregion
public IEnumerator<Cell> GetEnumerator()
{
return ((IEnumerable<Cell>)cells).GetEnumerator();
}
System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator()
{
return cells.GetEnumerator();
}
[OnDeserialized]
private void AfterDeserialized(StreamingContext context)
{
ResetArea();
}
/// <summary>
/// Saves the <see cref="TextSurface"/> to a file.
/// </summary>
/// <param name="file">The destination file.</param>
public void Save(string file)
{
Serializer.Save(this, file);
}
/// <summary>
/// Loads a <see cref="TextSurface"/> from a file.
/// </summary>
/// <param name="file">The source file.</param>
/// <returns></returns>
public static TextSurface Load(string file)
{
return Serializer.Load<TextSurface>(file);
}
public void Dispose()
{
if (BackbufferImage != null) BackbufferImage.Dispose();
if (Backbuffer != null) Backbuffer.Dispose();
}
~TextSurface()
{
Dispose();
}
//#region Serialization
// /// <summary>
// /// Saves the <see cref="TextSurface"/> to a file.
// /// </summary>
// /// <param name="file">The destination file.</param>
// public void Save(string file)
// {
// Serializer.Save(this, file);
// }
// /// <summary>
// /// Loads a <see cref="TextSurface"/> from a file.
// /// </summary>
// /// <param name="file">The source file.</param>
// /// <returns></returns>
// public static TextSurface Load(string file)
// {
// return Serializer.Load<TextSurface>(file);
// }
// [OnSerializing]
// private void BeforeSerializing(StreamingContext context)
// {
// fontName = Font.Name;
// fontSize = Font.SizeMultiple;
// }
// [OnDeserialized]
// private void AfterDeserialized(StreamingContext context)
// {
// Font font;
// // Try to find font
// if (Engine.Fonts.ContainsKey(fontName))
// font = Engine.Fonts[fontName].GetFont(fontSize);
// else
// font = Engine.DefaultFont;
// Font = font;
// }
//#endregion
}
}