-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathExample_7_MeasureText.cpp
90 lines (70 loc) · 2.9 KB
/
Example_7_MeasureText.cpp
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
#include "Trex/Atlas.hpp"
#include "Trex/TextShaper.hpp"
#include "raylib.h"
Image GetAtlasAsBitmapImage(const Trex::Atlas::Bitmap& bitmap)
{
Image atlasImage;
atlasImage.data = (void*)bitmap.Data().data(); // pointer to the atlas bitmap data
atlasImage.width = (int)bitmap.Width(); // width of the atlas bitmap
atlasImage.height = (int)bitmap.Height(); // height of the atlas bitmap
atlasImage.mipmaps = 1;
atlasImage.format = PIXELFORMAT_UNCOMPRESSED_GRAYSCALE; // atlas bitmap format is always 1 byte per pixel (grayscale)
return atlasImage;
}
void RenderGlyph(float x, float y, const Trex::Glyph& glyph, Texture2D& atlasTexture)
{
Rectangle atlasFragment = {
.x = (float)glyph.x, // top-left corner of the glyph in the atlas
.y = (float)glyph.y, // top-left corner of the glyph in the atlas
.width = (float)glyph.width, // width of the glyph in the atlas
.height = (float)glyph.height // height of the glyph in the atlas
};
// Draw a texture fragment from the atlas
DrawTextureRec(atlasTexture, atlasFragment, { x, y }, WHITE);
}
void RenderShapedText(float cursorX, float cursorY, const Trex::ShapedGlyphs& glyphs, Texture2D& atlasTexture)
{
for (const auto& glyph : glyphs)
{
float x = cursorX + glyph.xOffset + (float)glyph.info.bearingX;
float y = cursorY + glyph.yOffset - (float)glyph.info.bearingY;
RenderGlyph(x, y, glyph.info, atlasTexture);
cursorX += glyph.xAdvance;
cursorY += glyph.yAdvance;
}
}
int main()
{
constexpr int FONT_SIZE = 64;
const char* FONT_PATH = "fonts/Roboto-Regular.ttf";
Trex::Atlas atlas(FONT_PATH, FONT_SIZE, Trex::Charset::Full());
const Trex::Atlas::Bitmap& bitmap = atlas.GetBitmap();
Trex::TextShaper shaper(atlas);
Trex::ShapedGlyphs shapedGlyphs = shaper.ShapeAscii("Hello, World!");
Trex::TextMeasurement textMeas = Trex::TextShaper::Measure(shapedGlyphs);
Trex::FontMetrics fontMetrics = shaper.GetFontMetrics();
InitWindow(600, 250, "MeasureText Example");
// Load atlas texture
Image atlasImage = GetAtlasAsBitmapImage(bitmap);
Texture2D atlasTexture = LoadTextureFromImage(atlasImage);
while (!WindowShouldClose())
{
BeginDrawing();
ClearBackground(WHITE);
const int cursorX = 50, cursorY = 100;
const int cursorWidth = 1;
const int cursorHeight = fontMetrics.ascender - fontMetrics.descender;
RenderShapedText(cursorX, cursorY, shapedGlyphs, atlasTexture);
DrawCircle(cursorX, cursorY, 3, VIOLET);
// Draw cursor before the text
DrawRectangle(cursorX, cursorY - fontMetrics.ascender, cursorWidth, cursorHeight, RED);
// Draw filled rectangle over the text
DrawRectangle(cursorX + (int)textMeas.xOffset, cursorY + (int)textMeas.yOffset, (int)textMeas.width, (int)textMeas.height, Fade(GREEN, 0.2f));
// Draw cursor after the text
DrawRectangle(cursorX + (int)textMeas.xAdvance, cursorY - fontMetrics.ascender, cursorWidth, cursorHeight, BLUE);
EndDrawing();
}
UnloadTexture(atlasTexture);
CloseWindow();
return 0;
}