mirror of
https://github.com/goodtft/LCD-show.git
synced 2024-12-04 08:24:13 +01:00
67 lines
1.7 KiB
C++
67 lines
1.7 KiB
C++
|
#include "config.h"
|
||
|
#include "text.h"
|
||
|
#include "display.h"
|
||
|
|
||
|
void DrawText(uint16_t *framebuffer, int framebufferWidth, int framebufferStrideBytes, int framebufferHeight, const char *text, int x, int y, uint16_t color, uint16_t bgColor)
|
||
|
{
|
||
|
#ifdef DISPLAY_FLIP_ORIENTATION_IN_SOFTWARE
|
||
|
const int W = framebufferHeight;
|
||
|
const int H = framebufferWidth;
|
||
|
#define AT(x, y) x*framebufferStrideBytes+y
|
||
|
#else
|
||
|
const int W = framebufferWidth;
|
||
|
const int H = framebufferHeight;
|
||
|
#define AT(x, y) y*framebufferStrideBytes+x
|
||
|
#endif
|
||
|
|
||
|
framebufferStrideBytes >>= 1; // to uint16 elements
|
||
|
const int Y = y;
|
||
|
while(*text)
|
||
|
{
|
||
|
uint8_t ch = (uint8_t)*text;
|
||
|
if (ch < 32 || ch >= 127) ch = 0;
|
||
|
else ch -= 32;
|
||
|
|
||
|
const int X = x;
|
||
|
const int endX = x + MONACO_WIDTH;
|
||
|
|
||
|
for(y = Y-1; y < Y + monaco_height_adjust[ch]; ++y)
|
||
|
for(int x = X; x < endX+1; ++x)
|
||
|
if (x >= 0 && y >= 0 && x < W && y < H)
|
||
|
{
|
||
|
framebuffer[AT(x,y)] = bgColor;
|
||
|
}
|
||
|
|
||
|
y = Y + monaco_height_adjust[ch];
|
||
|
int yEnd = Y + MONACO_HEIGHT - 1;
|
||
|
|
||
|
const uint8_t *byte = monaco_font + ch*MONACO_BYTES_PER_CHAR;
|
||
|
for(int i = 0; i < MONACO_BYTES_PER_CHAR; ++i, ++byte)
|
||
|
{
|
||
|
for(uint8_t bit = 1; bit; bit <<= 1)
|
||
|
{
|
||
|
if (x >= 0 && y >= 0 && x < W && y < H)
|
||
|
{
|
||
|
if ((*byte & bit)) framebuffer[AT(x,y)] = color;
|
||
|
else framebuffer[AT(x,y)] = bgColor;
|
||
|
}
|
||
|
++x;
|
||
|
if (x == endX)
|
||
|
{
|
||
|
if (y < H) framebuffer[AT(x,y)] = bgColor;
|
||
|
x = X;
|
||
|
++y;
|
||
|
if (y == yEnd)
|
||
|
{
|
||
|
i = MONACO_BYTES_PER_CHAR;
|
||
|
bit = 0;
|
||
|
break;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
++text;
|
||
|
x += 6;
|
||
|
}
|
||
|
}
|