New approach where we render button textures in tooltips.
This commit is contained in:
parent
a162646177
commit
0723f62559
|
@ -21,6 +21,39 @@
|
||||||
#include "gui_util.h"
|
#include "gui_util.h"
|
||||||
#include "defines.h"
|
#include "defines.h"
|
||||||
#include "gui.h"
|
#include "gui.h"
|
||||||
|
#include "texturecache.h"
|
||||||
|
|
||||||
|
static bool
|
||||||
|
render_button_texture_for(const char *text, Position pos, Camera *cam)
|
||||||
|
{
|
||||||
|
Texture *t = texturecache_add("Characters/Player0.png");
|
||||||
|
SDL_Rect clip = CLIP16(0, 0);
|
||||||
|
if (strcmp(text, "1") == 0) {
|
||||||
|
// no op
|
||||||
|
} else {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
SDL_Rect renderBox = { pos.x, pos.y, 8, 8 };
|
||||||
|
texture_render_clip(t, &renderBox, &clip, cam);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
static void
|
||||||
|
load_texture_for(Texture *text,
|
||||||
|
char *content,
|
||||||
|
SDL_Rect *renderBox,
|
||||||
|
SDL_Renderer *renderer)
|
||||||
|
{
|
||||||
|
texture_load_from_text(text,
|
||||||
|
content,
|
||||||
|
C_WHITE,
|
||||||
|
C_WHITE,
|
||||||
|
renderer);
|
||||||
|
|
||||||
|
renderBox->w = text->dim.width;
|
||||||
|
renderBox->h = text->dim.height;
|
||||||
|
}
|
||||||
|
|
||||||
Sprite *
|
Sprite *
|
||||||
tooltip_create(char **content, Camera *cam)
|
tooltip_create(char **content, Camera *cam)
|
||||||
|
@ -45,14 +78,10 @@ tooltip_create(char **content, Camera *cam)
|
||||||
|
|
||||||
while (*content) {
|
while (*content) {
|
||||||
if (strlen(*content) > 0) {
|
if (strlen(*content) > 0) {
|
||||||
texture_load_from_text(text,
|
if (!render_button_texture_for(*content, POS(renderBox.w, renderBox.y), cam)) {
|
||||||
*content,
|
load_texture_for(text, *content, &renderBox, cam->renderer);
|
||||||
C_WHITE,
|
texture_render(text, &renderBox, cam);
|
||||||
C_WHITE,
|
}
|
||||||
cam->renderer);
|
|
||||||
renderBox.w = text->dim.width;
|
|
||||||
renderBox.h = text->dim.height;
|
|
||||||
texture_render(text, &renderBox, cam);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
renderBox.y += 10;
|
renderBox.y += 10;
|
||||||
|
|
Loading…
Reference in New Issue