2024-12-28 06:15:22 +00:00
|
|
|
#include "../../clay.h"
|
|
|
|
#include <SDL.h>
|
|
|
|
#include <SDL_ttf.h>
|
2025-01-18 08:42:18 +00:00
|
|
|
#include <SDL_image.h>
|
2025-01-10 07:59:13 +00:00
|
|
|
#include <stdio.h>
|
2024-12-28 06:15:22 +00:00
|
|
|
|
2025-01-18 08:42:18 +00:00
|
|
|
#define CLAY_COLOR_TO_SDL_COLOR_ARGS(color) color.r, color.g, color.b, color.a
|
|
|
|
|
2024-12-28 06:15:22 +00:00
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
uint32_t fontId;
|
|
|
|
TTF_Font *font;
|
|
|
|
} SDL2_Font;
|
|
|
|
|
|
|
|
|
2025-02-04 04:00:19 +00:00
|
|
|
static Clay_Dimensions SDL2_MeasureText(Clay_StringSlice text, Clay_TextElementConfig *config, void *userData)
|
2024-12-28 06:15:22 +00:00
|
|
|
{
|
2025-01-19 21:59:02 +00:00
|
|
|
SDL2_Font *fonts = (SDL2_Font*)userData;
|
|
|
|
|
|
|
|
TTF_Font *font = fonts[config->fontId].font;
|
2025-01-19 22:27:22 +00:00
|
|
|
char *chars = (char *)calloc(text.length + 1, 1);
|
|
|
|
memcpy(chars, text.chars, text.length);
|
2024-12-28 06:15:22 +00:00
|
|
|
int width = 0;
|
|
|
|
int height = 0;
|
|
|
|
if (TTF_SizeUTF8(font, chars, &width, &height) < 0) {
|
|
|
|
fprintf(stderr, "Error: could not measure text: %s\n", TTF_GetError());
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
free(chars);
|
|
|
|
return (Clay_Dimensions) {
|
|
|
|
.width = (float)width,
|
|
|
|
.height = (float)height,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
SDL_Rect currentClippingRectangle;
|
|
|
|
|
2025-01-19 21:59:02 +00:00
|
|
|
static void Clay_SDL2_Render(SDL_Renderer *renderer, Clay_RenderCommandArray renderCommands, SDL2_Font *fonts)
|
2024-12-28 06:15:22 +00:00
|
|
|
{
|
|
|
|
for (uint32_t i = 0; i < renderCommands.length; i++)
|
|
|
|
{
|
|
|
|
Clay_RenderCommand *renderCommand = Clay_RenderCommandArray_Get(&renderCommands, i);
|
|
|
|
Clay_BoundingBox boundingBox = renderCommand->boundingBox;
|
|
|
|
switch (renderCommand->commandType)
|
|
|
|
{
|
|
|
|
case CLAY_RENDER_COMMAND_TYPE_RECTANGLE: {
|
2025-02-04 04:00:19 +00:00
|
|
|
Clay_RectangleRenderData *config = &renderCommand->renderData.rectangle;
|
|
|
|
Clay_Color color = config->backgroundColor;
|
2024-12-28 06:15:22 +00:00
|
|
|
SDL_SetRenderDrawColor(renderer, color.r, color.g, color.b, color.a);
|
|
|
|
SDL_FRect rect = (SDL_FRect) {
|
|
|
|
.x = boundingBox.x,
|
|
|
|
.y = boundingBox.y,
|
|
|
|
.w = boundingBox.width,
|
|
|
|
.h = boundingBox.height,
|
|
|
|
};
|
|
|
|
SDL_RenderFillRectF(renderer, &rect);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case CLAY_RENDER_COMMAND_TYPE_TEXT: {
|
2025-02-04 04:00:19 +00:00
|
|
|
Clay_TextRenderData *config = &renderCommand->renderData.text;
|
|
|
|
char *cloned = (char *)calloc(config->stringContents.length + 1, 1);
|
|
|
|
memcpy(cloned, config->stringContents.chars, config->stringContents.length);
|
2025-01-19 21:59:02 +00:00
|
|
|
TTF_Font* font = fonts[config->fontId].font;
|
2024-12-28 06:15:22 +00:00
|
|
|
SDL_Surface *surface = TTF_RenderUTF8_Blended(font, cloned, (SDL_Color) {
|
|
|
|
.r = (Uint8)config->textColor.r,
|
|
|
|
.g = (Uint8)config->textColor.g,
|
|
|
|
.b = (Uint8)config->textColor.b,
|
|
|
|
.a = (Uint8)config->textColor.a,
|
|
|
|
});
|
|
|
|
SDL_Texture *texture = SDL_CreateTextureFromSurface(renderer, surface);
|
|
|
|
|
|
|
|
SDL_Rect destination = (SDL_Rect){
|
|
|
|
.x = boundingBox.x,
|
|
|
|
.y = boundingBox.y,
|
|
|
|
.w = boundingBox.width,
|
|
|
|
.h = boundingBox.height,
|
|
|
|
};
|
|
|
|
SDL_RenderCopy(renderer, texture, NULL, &destination);
|
|
|
|
|
|
|
|
SDL_DestroyTexture(texture);
|
|
|
|
SDL_FreeSurface(surface);
|
|
|
|
free(cloned);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case CLAY_RENDER_COMMAND_TYPE_SCISSOR_START: {
|
|
|
|
currentClippingRectangle = (SDL_Rect) {
|
|
|
|
.x = boundingBox.x,
|
|
|
|
.y = boundingBox.y,
|
|
|
|
.w = boundingBox.width,
|
|
|
|
.h = boundingBox.height,
|
|
|
|
};
|
|
|
|
SDL_RenderSetClipRect(renderer, ¤tClippingRectangle);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case CLAY_RENDER_COMMAND_TYPE_SCISSOR_END: {
|
|
|
|
SDL_RenderSetClipRect(renderer, NULL);
|
|
|
|
break;
|
|
|
|
}
|
2025-01-18 08:42:18 +00:00
|
|
|
case CLAY_RENDER_COMMAND_TYPE_IMAGE: {
|
2025-02-04 04:00:19 +00:00
|
|
|
Clay_ImageRenderData *config = &renderCommand->renderData.image;
|
2025-01-18 08:42:18 +00:00
|
|
|
|
2025-02-04 04:00:19 +00:00
|
|
|
SDL_Texture *texture = SDL_CreateTextureFromSurface(renderer, config->imageData);
|
2025-01-18 08:42:18 +00:00
|
|
|
|
|
|
|
SDL_Rect destination = (SDL_Rect){
|
|
|
|
.x = boundingBox.x,
|
|
|
|
.y = boundingBox.y,
|
|
|
|
.w = boundingBox.width,
|
|
|
|
.h = boundingBox.height,
|
|
|
|
};
|
|
|
|
|
|
|
|
SDL_RenderCopy(renderer, texture, NULL, &destination);
|
2025-02-04 04:00:19 +00:00
|
|
|
|
|
|
|
SDL_DestroyTexture(texture);
|
2025-01-18 08:42:18 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case CLAY_RENDER_COMMAND_TYPE_BORDER: {
|
2025-02-04 04:00:19 +00:00
|
|
|
Clay_BorderRenderData *config = &renderCommand->renderData.border;
|
2025-01-18 08:42:18 +00:00
|
|
|
|
2025-02-04 04:00:19 +00:00
|
|
|
if (config->width.left > 0) {
|
|
|
|
SDL_SetRenderDrawColor(renderer, CLAY_COLOR_TO_SDL_COLOR_ARGS(config->color));
|
|
|
|
SDL_FRect rect = { boundingBox.x, boundingBox.y + config->cornerRadius.topLeft, config->width.left, boundingBox.height - config->cornerRadius.topLeft - config->cornerRadius.bottomLeft };
|
2025-01-29 00:09:41 +00:00
|
|
|
SDL_RenderFillRectF(renderer, &rect);
|
2025-01-18 08:42:18 +00:00
|
|
|
}
|
|
|
|
|
2025-02-04 04:00:19 +00:00
|
|
|
if (config->width.right > 0) {
|
|
|
|
SDL_SetRenderDrawColor(renderer, CLAY_COLOR_TO_SDL_COLOR_ARGS(config->color));
|
|
|
|
SDL_FRect rect = { boundingBox.x + boundingBox.width - config->width.right, boundingBox.y + config->cornerRadius.topRight, config->width.right, boundingBox.height - config->cornerRadius.topRight - config->cornerRadius.bottomRight };
|
2025-01-29 00:09:41 +00:00
|
|
|
SDL_RenderFillRectF(renderer, &rect);
|
2025-01-18 08:42:18 +00:00
|
|
|
}
|
|
|
|
|
2025-02-04 04:00:19 +00:00
|
|
|
if (config->width.right > 0) {
|
|
|
|
SDL_SetRenderDrawColor(renderer, CLAY_COLOR_TO_SDL_COLOR_ARGS(config->color));
|
|
|
|
SDL_FRect rect = { boundingBox.x + boundingBox.width - config->width.right, boundingBox.y + config->cornerRadius.topRight, config->width.right, boundingBox.height - config->cornerRadius.topRight - config->cornerRadius.bottomRight };
|
2025-01-29 00:09:41 +00:00
|
|
|
SDL_RenderFillRectF(renderer, &rect);
|
2025-01-18 08:42:18 +00:00
|
|
|
}
|
|
|
|
|
2025-02-04 04:00:19 +00:00
|
|
|
if (config->width.top > 0) {
|
|
|
|
SDL_SetRenderDrawColor(renderer, CLAY_COLOR_TO_SDL_COLOR_ARGS(config->color));
|
|
|
|
SDL_FRect rect = { boundingBox.x + config->cornerRadius.topLeft, boundingBox.y, boundingBox.width - config->cornerRadius.topLeft - config->cornerRadius.topRight, config->width.top };
|
2025-01-29 00:09:41 +00:00
|
|
|
SDL_RenderFillRectF(renderer, &rect);
|
2025-01-18 08:42:18 +00:00
|
|
|
}
|
|
|
|
|
2025-02-04 04:00:19 +00:00
|
|
|
if (config->width.bottom > 0) {
|
|
|
|
SDL_SetRenderDrawColor(renderer, CLAY_COLOR_TO_SDL_COLOR_ARGS(config->color));
|
|
|
|
SDL_FRect rect = { boundingBox.x + config->cornerRadius.bottomLeft, boundingBox.y + boundingBox.height - config->width.bottom, boundingBox.width - config->cornerRadius.bottomLeft - config->cornerRadius.bottomRight, config->width.bottom };
|
2025-01-29 00:09:41 +00:00
|
|
|
SDL_RenderFillRectF(renderer, &rect);
|
2025-01-18 08:42:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
2024-12-28 06:15:22 +00:00
|
|
|
default: {
|
|
|
|
fprintf(stderr, "Error: unhandled render command: %d\n", renderCommand->commandType);
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2025-01-18 08:42:18 +00:00
|
|
|
}
|