2024-03-05 14:17:53 +08:00
|
|
|
|
|
|
|
#include "app.h"
|
2024-03-08 14:51:29 +08:00
|
|
|
#include "types.h"
|
2024-03-05 14:17:53 +08:00
|
|
|
#include "util/vector.h"
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
|
|
|
|
#define PUSH_STRING(str) vector_Append(vec_string, str, strlen(str));
|
|
|
|
|
|
|
|
void app_DebugText(App *app, vector_Vector *vec_string) {
|
|
|
|
vector_Clear(vec_string);
|
|
|
|
char buf[256] = {};
|
|
|
|
|
|
|
|
Component_Player *player = app->player->player;
|
|
|
|
if (!player) {
|
|
|
|
PUSH_STRING("Player not available\n");
|
|
|
|
} else {
|
|
|
|
snprintf(
|
|
|
|
buf, sizeof(buf) - 1,
|
2024-03-05 14:26:39 +08:00
|
|
|
"Player:\n"
|
|
|
|
" Pos: [%.4lf, %.4lf]\n"
|
2024-03-08 14:51:29 +08:00
|
|
|
" Vec: [%.4lf, %.4lf]\n"
|
2024-03-05 14:26:39 +08:00
|
|
|
" OnGround: %s\n"
|
|
|
|
" JumpCount: %d\n",
|
2024-03-05 14:17:53 +08:00
|
|
|
player->super->position->position.x,
|
|
|
|
player->super->position->position.y,
|
|
|
|
player->super->position->velocity.x,
|
2024-03-05 14:26:39 +08:00
|
|
|
player->super->position->velocity.y,
|
|
|
|
(player->onGround ? "true" : "false"),
|
|
|
|
player->jumpCount);
|
2024-03-05 14:17:53 +08:00
|
|
|
PUSH_STRING(buf);
|
|
|
|
}
|
|
|
|
|
2024-03-08 14:51:29 +08:00
|
|
|
Vec2 center = box2_Center(app->camera->cam),
|
|
|
|
size = app->camera->cam.size;
|
|
|
|
snprintf(
|
|
|
|
buf, sizeof(buf) - 1,
|
|
|
|
"Camera:\n"
|
|
|
|
" Center: [%.4lf, %.4lf]\n"
|
|
|
|
" Size: [%.4lf, %.4lf]\n",
|
|
|
|
center.x, center.y,
|
|
|
|
size.x, size.y);
|
|
|
|
PUSH_STRING(buf);
|
|
|
|
|
2024-03-05 14:17:53 +08:00
|
|
|
char zero = '\0';
|
|
|
|
vector_Push(vec_string, &zero);
|
|
|
|
}
|