2020-11-28 01:49:13 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdarg.h>
|
|
|
|
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
|
2021-01-27 21:26:19 +00:00
|
|
|
#include <libreborn/libreborn.h>
|
2020-11-28 01:49:13 +00:00
|
|
|
|
2021-06-17 21:32:24 +00:00
|
|
|
#include "../home/home.h"
|
|
|
|
|
2020-11-28 01:49:13 +00:00
|
|
|
static int starts_with(const char *s, const char *t) {
|
|
|
|
return strncmp(s, t, strlen(t)) == 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static char *get_override_path(const char *filename) {
|
2021-06-17 21:32:24 +00:00
|
|
|
// Get MCPI Home Path
|
|
|
|
char *home_path = home_get();
|
2020-11-28 01:49:13 +00:00
|
|
|
// Get Asset Override Path
|
|
|
|
char *overrides = NULL;
|
2021-06-17 21:32:24 +00:00
|
|
|
safe_asprintf(&overrides, "%s/overrides", home_path);
|
|
|
|
// Get Data Path
|
2020-11-28 01:49:13 +00:00
|
|
|
char *data = NULL;
|
|
|
|
char *cwd = getcwd(NULL, 0);
|
2021-06-17 21:32:24 +00:00
|
|
|
safe_asprintf(&data, "%s/data", cwd);
|
2020-11-28 01:49:13 +00:00
|
|
|
free(cwd);
|
|
|
|
// Get Full Path
|
|
|
|
char *new_path = NULL;
|
|
|
|
char *full_path = realpath(filename, NULL);
|
|
|
|
if (full_path != NULL) {
|
|
|
|
if (starts_with(full_path, data)) {
|
2021-06-17 21:32:24 +00:00
|
|
|
safe_asprintf(&new_path, "%s%s", overrides, &full_path[strlen(data)]);
|
2020-11-28 01:49:13 +00:00
|
|
|
if (access(new_path, F_OK) == -1) {
|
|
|
|
free(new_path);
|
|
|
|
new_path = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
free(full_path);
|
|
|
|
}
|
|
|
|
// Free Variables
|
|
|
|
free(overrides);
|
|
|
|
free(data);
|
|
|
|
// Return
|
|
|
|
return new_path;
|
|
|
|
}
|
|
|
|
|
|
|
|
HOOK(fopen, FILE *, (const char *filename, const char *mode)) {
|
|
|
|
char *new_path = get_override_path(filename);
|
|
|
|
// Open File
|
|
|
|
ensure_fopen();
|
|
|
|
FILE *file = (*real_fopen)(new_path != NULL ? new_path : filename, mode);
|
|
|
|
// Free Data
|
|
|
|
if (new_path != NULL) {
|
|
|
|
free(new_path);
|
|
|
|
}
|
|
|
|
// Return File
|
|
|
|
return file;
|
|
|
|
}
|
|
|
|
|
|
|
|
HOOK(fopen64, FILE *, (const char *filename, const char *mode)) {
|
|
|
|
char *new_path = get_override_path(filename);
|
|
|
|
// Open File
|
|
|
|
ensure_fopen64();
|
|
|
|
FILE *file = (*real_fopen64)(new_path != NULL ? new_path : filename, mode);
|
|
|
|
// Free Data
|
|
|
|
if (new_path != NULL) {
|
|
|
|
free(new_path);
|
|
|
|
}
|
|
|
|
// Return File
|
|
|
|
return file;
|
2021-06-17 21:32:24 +00:00
|
|
|
}
|