2021-11-30 21:29:18 -06:00
|
|
|
#include "resources.h"
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
#include <dirent.h>
|
|
|
|
#include <stddef.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include "vec.h"
|
|
|
|
#include <stdarg.h>
|
|
|
|
#include <stdio.h>
|
2022-01-19 16:43:21 -06:00
|
|
|
#include <string.h>
|
|
|
|
#include <unistd.h>
|
2022-02-06 10:14:57 -06:00
|
|
|
#include <stdlib.h>
|
2022-11-18 12:03:07 -06:00
|
|
|
#include "log.h"
|
2021-11-30 21:29:18 -06:00
|
|
|
|
2022-07-03 00:43:42 -05:00
|
|
|
#include <ftw.h>
|
|
|
|
|
2023-02-13 21:02:14 -06:00
|
|
|
#include "stb_ds.h"
|
|
|
|
|
2021-11-30 21:29:18 -06:00
|
|
|
char *DATA_PATH = NULL;
|
|
|
|
char *PREF_PATH = NULL;
|
|
|
|
|
|
|
|
struct vec *prefabs = NULL;
|
|
|
|
|
|
|
|
const char *EXT_PREFAB = ".prefab";
|
|
|
|
const char *EXT_LEVEL = ".level";
|
2022-08-24 12:24:21 -05:00
|
|
|
const char *EXT_ASSET = ".asset";
|
2021-11-30 21:29:18 -06:00
|
|
|
int stemlen = 0;
|
|
|
|
|
|
|
|
static const char *cur_ext = NULL;
|
|
|
|
struct dirent *c_dirent = NULL;
|
|
|
|
struct vec *c_vec = NULL;
|
|
|
|
|
|
|
|
char pathbuf[MAXPATH];
|
|
|
|
|
|
|
|
void resources_init()
|
|
|
|
{
|
2022-08-26 09:19:17 -05:00
|
|
|
prefabs = vec_make(MAXNAME, 25);
|
|
|
|
|
2022-08-18 08:50:03 -05:00
|
|
|
DATA_PATH = malloc(MAXPATH);
|
|
|
|
getcwd(DATA_PATH, MAXPATH);
|
|
|
|
strncat(DATA_PATH, "/", MAXPATH);
|
2021-11-30 21:29:18 -06:00
|
|
|
|
2022-01-19 16:43:21 -06:00
|
|
|
if (!PREF_PATH)
|
|
|
|
PREF_PATH = strdup("./tmp/");
|
2021-11-30 21:29:18 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
char *get_filename_from_path(char *path, int extension)
|
|
|
|
{
|
|
|
|
char *dirpos = strrchr(path, '/');
|
|
|
|
if (!dirpos)
|
|
|
|
dirpos = path;
|
|
|
|
|
|
|
|
char *end = strrchr(path, '\0');
|
|
|
|
|
|
|
|
int offset = 0;
|
|
|
|
if (!extension) {
|
|
|
|
char *ext = strrchr(path, '.');
|
|
|
|
offset = end - ext;
|
2022-11-18 12:03:07 -06:00
|
|
|
YughInfo("Making %s without extension ...");
|
2021-11-30 21:29:18 -06:00
|
|
|
}
|
|
|
|
|
2022-08-15 23:46:06 -05:00
|
|
|
char *filename = malloc(sizeof(char) * (end - dirpos - offset + 1));
|
2021-11-30 21:29:18 -06:00
|
|
|
strncpy(filename, dirpos, end - dirpos - offset);
|
|
|
|
return filename;
|
|
|
|
}
|
|
|
|
|
|
|
|
char *get_directory_from_path(char *path)
|
|
|
|
{
|
|
|
|
const char *dirpos = strrchr(path, '/');
|
|
|
|
char *directory = (char *) malloc(sizeof(char) * (dirpos - path + 1));
|
|
|
|
strncpy(directory, path, dirpos - path);
|
|
|
|
return directory;
|
|
|
|
}
|
|
|
|
|
|
|
|
FILE *res_open(char *path, const char *tag)
|
|
|
|
{
|
|
|
|
strncpy(pathbuf, DATA_PATH, MAXPATH);
|
|
|
|
strncat(pathbuf, path, MAXPATH);
|
|
|
|
FILE *f = fopen(pathbuf, tag);
|
|
|
|
return f;
|
|
|
|
}
|
|
|
|
|
2022-08-18 08:50:03 -05:00
|
|
|
static int ext_check(const char *path, const struct stat *sb, int typeflag)
|
2021-11-30 21:29:18 -06:00
|
|
|
{
|
|
|
|
if (typeflag == FTW_F) {
|
|
|
|
const char *ext = strrchr(path, '.');
|
|
|
|
if (ext != NULL && !strcmp(ext, cur_ext))
|
|
|
|
vec_add(c_vec, path);
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2022-01-19 16:43:21 -06:00
|
|
|
void fill_extensions(struct vec *vec, const char *path, const char *ext)
|
2021-11-30 21:29:18 -06:00
|
|
|
{
|
|
|
|
c_vec = vec;
|
|
|
|
cur_ext = ext;
|
|
|
|
vec_clear(c_vec);
|
2022-08-18 08:50:03 -05:00
|
|
|
ftw(".", ext_check, 10);
|
2021-11-30 21:29:18 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
void findPrefabs()
|
|
|
|
{
|
|
|
|
fill_extensions(prefabs, DATA_PATH, EXT_PREFAB);
|
|
|
|
}
|
|
|
|
|
2022-08-24 12:24:21 -05:00
|
|
|
char *str_replace_ext(const char *s, const char *newext) {
|
|
|
|
static char ret[256];
|
|
|
|
|
|
|
|
strncpy(ret, s, 256);
|
|
|
|
char *ext = strrchr(ret, '.');
|
|
|
|
strncpy(ext, newext, 10);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2022-02-06 10:14:57 -06:00
|
|
|
FILE *path_open(const char *tag, const char *fmt, ...)
|
2021-11-30 21:29:18 -06:00
|
|
|
{
|
|
|
|
va_list args;
|
|
|
|
va_start(args, fmt);
|
|
|
|
vsprintf(pathbuf, fmt, args);
|
|
|
|
va_end(args);
|
|
|
|
|
|
|
|
FILE *f = fopen(pathbuf, tag);
|
|
|
|
return f;
|
2022-01-19 16:43:21 -06:00
|
|
|
}
|
|
|
|
|
2022-02-06 10:14:57 -06:00
|
|
|
char *make_path(const char *file)
|
2022-01-19 16:43:21 -06:00
|
|
|
{
|
|
|
|
strncpy(pathbuf, DATA_PATH, MAXPATH);
|
|
|
|
strncat(pathbuf, file, MAXPATH);
|
|
|
|
return pathbuf;
|
2022-02-06 10:14:57 -06:00
|
|
|
}
|
2022-08-25 15:48:15 -05:00
|
|
|
|
|
|
|
char *strdup(const char *s)
|
|
|
|
{
|
|
|
|
char *new = malloc(sizeof(char)*(strlen(s)+1));
|
|
|
|
strcpy(new, s);
|
|
|
|
return new;
|
|
|
|
}
|