-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathITextSurface.cs
89 lines (75 loc) · 2.68 KB
/
ITextSurface.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
using System.Drawing;
namespace SadConsole.Consoles
{
/// <summary>
/// Basic information about a text surface.
/// </summary>
public interface ITextSurface
{
/// <summary>
/// The width of the surface.
/// </summary>
int Width { get; }
/// <summary>
/// The height of the surface.
/// </summary>
int Height { get; }
/// <summary>
/// The default background of the surface. Some operations take this into account.
/// </summary>
Color DefaultBackground { get; set; }
/// <summary>
/// The default foreground of the surface. Some operations take this into account.
/// </summary>
Color DefaultForeground { get; set; }
/// <summary>
/// Each cell of the surface.
/// </summary>
Cell[] Cells { get; }
/// <summary>
/// Gets a cell by index.
/// </summary>
/// <param name="index">Index from the <see cref="Cells"/> array.</param>
/// <returns>The cell.</returns>
Cell this[int index] { get; }
/// <summary>
/// Gets a cell by coordinates
/// </summary>
/// <param name="x">The x coordinate in the surface.</param>
/// <param name="y">The y coordinate in the surface.</param>
/// <returns>The cell.</returns>
Cell this[int x, int y] { get; }
}
/// <summary>
/// A text surface with rendering information.
/// </summary>
public interface ITextSurfaceRendered: ITextSurface, System.IDisposable
{
Image BackbufferImage { get; }
Graphics Backbuffer { get; }
/// <summary>
/// In pixels, how much area of the screen this surface covers.
/// </summary>
Rectangle AbsoluteArea { get; set; }
/// <summary>
/// Each screen rectangle for <see cref="ITextSurface.Cells"/> used in rendering.
/// </summary>
Rectangle[] RenderRects { get; }
/// <summary>
/// The cells used for rendering if the <see cref="RenderArea"/> is not the entire text surface.
/// </summary>
Cell[] RenderCells { get; }
/// <summary>
/// Font used for rendering.
/// </summary>
Font Font { get; set; }
/// <summary>
/// An optional color tint applied after rendering. Recolors the entire surface. Use <see cref="Color.Transparent"/> to disable this.
/// </summary>
Color Tint { get; set; }
/// <summary>
/// A view of the <see cref="ITextSurface.Cells"/> which changes which cells will be drawn.
/// </summary>
Rectangle RenderArea { get; set; }
}
}