townengine/apps/demos/scenery/scenes/title.c

61 lines
1.4 KiB
C
Raw Normal View History

2024-07-08 00:44:20 +00:00
#include "title.h"
#include "ingame.h"
2024-08-21 13:55:34 +00:00
#include "twn_game_api.h"
2024-07-08 00:44:20 +00:00
#include <stdio.h>
#include <stdlib.h>
2024-07-08 00:44:20 +00:00
static void title_tick(State *state) {
SceneTitle *scn = (SceneTitle *)state->scene;
2024-07-08 00:44:20 +00:00
(void)scn;
if (input_is_action_just_pressed("ui_accept")) {
2024-07-08 00:44:20 +00:00
switch_to(state, ingame_scene);
2024-10-07 22:07:01 +00:00
return;
2024-07-08 00:44:20 +00:00
}
m_sprite("/assets/title.png", ((Rect) {
((float)ctx.resolution.x / 2) - ((float)320 / 2), 64, 320, 128 }));
2024-08-23 02:41:52 +00:00
/* draw the tick count as an example of dynamic text */
size_t text_str_len = snprintf(NULL, 0, "%lu", state->ctx->frame_number) + 1;
2024-08-23 02:41:52 +00:00
char *text_str = cmalloc(text_str_len);
snprintf(text_str, text_str_len, "%lu", state->ctx->frame_number);
2024-08-23 02:41:52 +00:00
2024-10-02 17:18:07 +00:00
const char *font = "/fonts/kenney-pixel.ttf";
2024-08-23 02:41:52 +00:00
int text_h = 32;
2024-10-07 14:53:09 +00:00
int text_w = draw_text_width(text_str, text_h, font);
2024-08-23 02:41:52 +00:00
2024-10-07 14:53:09 +00:00
draw_rectangle(
(Rect) {
2024-08-23 02:41:52 +00:00
.x = 0,
.y = 0,
.w = (float)text_w,
.h = (float)text_h,
},
(Color) { 0, 0, 0, 255 }
2024-08-23 02:41:52 +00:00
);
2024-10-07 14:53:09 +00:00
draw_text(text_str, (Vec2){ 0, 0 }, text_h, (Color) { 255, 255, 255, 255 }, font);
2024-08-23 02:41:52 +00:00
free(text_str);
2024-07-08 00:44:20 +00:00
}
static void title_end(State *state) {
free(state->scene);
2024-07-08 00:44:20 +00:00
}
Scene *title_scene(State *state) {
2024-07-08 00:44:20 +00:00
(void)state;
SceneTitle *new_scene = ccalloc(1, sizeof *new_scene);
2024-07-08 00:44:20 +00:00
new_scene->base.tick = title_tick;
new_scene->base.end = title_end;
return (Scene *)new_scene;
2024-07-08 00:44:20 +00:00
}