forked from Thraka/SadConsole.Drawing
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathITextSurfaceRenderer.cs
37 lines (32 loc) · 1.19 KB
/
ITextSurfaceRenderer.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
using System.Drawing;
using System;
using System.Drawing.Drawing2D;
namespace SadConsole.Consoles
{
/// <summary>
/// Represents the ability to render cell data to the screen.
/// </summary>
public interface ITextSurfaceRenderer
{
/// <summary>
/// The SpriteBatch used when rendering cell data.
/// </summary>
SpriteBatch Batch { get; }
/// <summary>
/// A method called when the <see cref="SpriteBatch"/> has been created and transformed, but before any text characters are drawn.
/// </summary>
Action<SpriteBatch> BeforeRenderCallback { get; set; }
/// <summary>
/// A method called when all text characters have been drawn and any tinting has been applied.
/// </summary>
Action<SpriteBatch> AfterRenderCallback { get; set; }
/// <summary>
/// Renders the cell data to the screen.
/// </summary>
void Render(ITextSurfaceRendered cells, Point position, bool usePixelPositioning = false);
/// <summary>
/// Renders the cell data to the screen.
/// </summary>
void Render(ITextSurfaceRendered cells, Matrix renderingMatrix);
}
}