thrive/log.c

53 lines
1.3 KiB
C
Raw Permalink Normal View History

2024-08-30 06:27:14 -04:00
#include "log.h"
2025-01-24 05:46:40 -05:00
#include <raylib.h>
2024-08-30 06:27:14 -04:00
#include <stdlib.h>
#include <string.h>
2025-01-07 21:09:12 -05:00
#include <stdio.h>
2024-08-30 06:27:14 -04:00
void draw_log(Log* log) {
2025-01-02 20:57:00 -05:00
for(int line_num = 0; line_num < log->line_count; line_num++) {
2024-08-30 06:27:14 -04:00
DrawText(
log->lines[line_num],
log->input->position.x,
log->input->position.y + ((line_num - log->line_count) * 20),
2024-08-30 06:27:14 -04:00
20,
RAYWHITE
);
}
}
Log *create_log(void) {
Log *log = malloc(sizeof(Log));
log->line_count = 0;
log->lines = malloc(sizeof(char**));
return log;
}
2025-01-07 21:09:12 -05:00
#define MAX(a, b) a > b ? a : b
#define MIN(a, b) a < b ? a : b
#define LINE_LENGTH 60
2024-08-30 06:27:14 -04:00
void push_line_to_log(Log* log, char* line) {
2025-01-07 21:09:12 -05:00
int line_length = MIN(strlen(line), LINE_LENGTH);
2025-01-07 21:13:34 -05:00
if (line_length == LINE_LENGTH) {
while (line[line_length] != ' ') line_length--;
}
2025-01-07 21:09:12 -05:00
log->lines = realloc(log->lines, (log->line_count + 1) * sizeof(char*));
log->lines[log->line_count] = malloc(line_length + 1);
memcpy(log->lines[log->line_count], line, line_length);
log->lines[log->line_count][line_length] = '\0';
2024-08-30 06:27:14 -04:00
log->line_count++;
2025-01-07 21:09:12 -05:00
2025-01-07 21:13:34 -05:00
if (strlen(line) > line_length) {
push_line_to_log(log, line + line_length + 1);
2025-01-07 21:09:12 -05:00
}
2024-08-30 06:27:14 -04:00
}
2025-01-02 20:57:00 -05:00
void free_log(Log* log) {
for(int line_num = 0; line_num < log->line_count; line_num++) {
free(log->lines[line_num]);
}
free(log->lines);
}