prosperon/source/engine/resources.h

42 lines
1.1 KiB
C
Raw Normal View History

2021-11-30 21:29:18 -06:00
#ifndef RESOURCES_H
#define RESOURCES_H
#include <stdio.h>
2023-12-18 06:45:27 -06:00
#include "stb_ds.h"
#include "string.h"
2021-11-30 21:29:18 -06:00
2023-10-09 18:10:10 -05:00
extern char *DATA_PATH;
2021-11-30 21:29:18 -06:00
void resources_init();
char *get_filename_from_path(char *path, int extension);
char *get_directory_from_path(char *path);
2022-08-24 12:24:21 -05:00
char *str_replace_ext(const char *s, const char *newext);
2021-11-30 21:29:18 -06:00
FILE *res_open(char *path, const char *tag);
2022-02-06 10:14:57 -06:00
FILE *path_open(const char *tag, const char *fmt, ...);
char **ls(const char *path);
int cp(const char *p1, const char *p2);
int fexists(const char *path);
FILE *fopen_mkdir(const char *path, const char *mode);
char *dirname(const char *path);
2022-08-25 15:48:15 -05:00
void *slurp_file(const char *filename, size_t *size);
char *slurp_text(const char *filename, size_t *size);
2024-01-31 02:42:15 -06:00
int slurp_write(const char *txt, const char *filename, size_t len);
char *seprint(char *fmt, ...);
void pack_engine(const char *fname);
2023-12-13 19:53:09 -06:00
static inline void *stbarrdup(void *mem, size_t size, int len) {
void *out = NULL;
arrsetlen(out, len);
memcpy(out,mem,size*len);
return out;
}
#define arrconcat(a,b) do{for (int i = 0; i < arrlen(b); i++) arrput(a,b[i]);}while(0)
#define arrdup(a) (stbarrdup(a, sizeof(*a), arrlen(a)))
2021-11-30 21:29:18 -06:00
#endif