2022-03-10 03:01:03 +01:00
|
|
|
#include "dynos.cpp.h"
|
2023-11-05 00:55:34 +01:00
|
|
|
#include "src/pc/loading.h"
|
2022-03-10 03:01:03 +01:00
|
|
|
|
2022-03-17 05:26:29 +01:00
|
|
|
void DynOS_Gfx_GeneratePacks(const char* directory) {
|
2024-03-19 10:48:48 +01:00
|
|
|
snprintf(gCurrLoadingSegment.str, 256, "Generating DynOS Packs In Path:\n\\#808080\\%s", directory);
|
2023-11-20 05:40:43 +01:00
|
|
|
|
2022-03-17 05:26:29 +01:00
|
|
|
DIR *modsDir = opendir(directory);
|
|
|
|
if (!modsDir) { return; }
|
|
|
|
|
|
|
|
struct dirent *dir = NULL;
|
2023-11-05 00:55:34 +01:00
|
|
|
DIR* d = opendir(directory);
|
|
|
|
u32 pathCount = 0;
|
|
|
|
while ((dir = readdir(d)) != NULL) pathCount++;
|
|
|
|
closedir(d);
|
|
|
|
|
|
|
|
for (u32 i = 0; (dir = readdir(modsDir)) != NULL; ++i) {
|
2022-03-17 05:26:29 +01:00
|
|
|
// Skip . and ..
|
|
|
|
if (SysPath(dir->d_name) == ".") continue;
|
|
|
|
if (SysPath(dir->d_name) == "..") continue;
|
|
|
|
|
|
|
|
// If pack folder exists, generate bins
|
2022-04-01 10:43:50 +02:00
|
|
|
SysPath _LevelPackFolder = fstring("%s/%s/levels", directory, dir->d_name);
|
|
|
|
if (fs_sys_dir_exists(_LevelPackFolder.c_str())) {
|
|
|
|
DynOS_Lvl_GeneratePack(_LevelPackFolder);
|
|
|
|
}
|
2023-11-05 00:55:34 +01:00
|
|
|
|
2022-04-01 10:43:50 +02:00
|
|
|
SysPath _ActorPackFolder = fstring("%s/%s/actors", directory, dir->d_name);
|
|
|
|
if (fs_sys_dir_exists(_ActorPackFolder.c_str())) {
|
2022-04-02 04:50:42 +02:00
|
|
|
DynOS_Actor_GeneratePack(_ActorPackFolder);
|
2022-03-17 05:26:29 +01:00
|
|
|
}
|
2023-11-05 00:55:34 +01:00
|
|
|
|
2022-06-02 21:19:54 +02:00
|
|
|
SysPath _BehaviorPackFolder = fstring("%s/%s/data", directory, dir->d_name);
|
|
|
|
if (fs_sys_dir_exists(_BehaviorPackFolder.c_str())) {
|
|
|
|
DynOS_Bhv_GeneratePack(_BehaviorPackFolder);
|
|
|
|
}
|
2023-11-05 00:55:34 +01:00
|
|
|
|
2022-05-07 07:03:12 +02:00
|
|
|
SysPath _TexturePackFolder = fstring("%s/%s", directory, dir->d_name);
|
|
|
|
SysPath _TexturePackOutputFolder = fstring("%s/%s/textures", directory, dir->d_name);
|
|
|
|
if (fs_sys_dir_exists(_TexturePackFolder.c_str())) {
|
2022-05-08 00:54:27 +02:00
|
|
|
DynOS_Tex_GeneratePack(_TexturePackFolder, _TexturePackOutputFolder, true);
|
2022-05-07 07:03:12 +02:00
|
|
|
}
|
2023-11-05 00:55:34 +01:00
|
|
|
|
2024-03-19 10:48:48 +01:00
|
|
|
REFRESH_MUTEX(gCurrLoadingSegment.percentage = (f32) i / (f32) pathCount);
|
2022-03-17 05:26:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
closedir(modsDir);
|
|
|
|
}
|
2022-03-11 03:16:12 +01:00
|
|
|
|
2022-03-31 08:04:41 +02:00
|
|
|
static void ScanPacksFolder(SysPath _DynosPacksFolder) {
|
2022-03-10 03:01:03 +01:00
|
|
|
DIR *_DynosPacksDir = opendir(_DynosPacksFolder.c_str());
|
|
|
|
if (_DynosPacksDir) {
|
|
|
|
struct dirent *_DynosPacksEnt = NULL;
|
|
|
|
while ((_DynosPacksEnt = readdir(_DynosPacksDir)) != NULL) {
|
|
|
|
|
|
|
|
// Skip . and ..
|
|
|
|
if (SysPath(_DynosPacksEnt->d_name) == ".") continue;
|
|
|
|
if (SysPath(_DynosPacksEnt->d_name) == "..") continue;
|
|
|
|
|
|
|
|
// If pack folder exists, add it to the pack list
|
|
|
|
SysPath _PackFolder = fstring("%s/%s", _DynosPacksFolder.c_str(), _DynosPacksEnt->d_name);
|
|
|
|
if (fs_sys_dir_exists(_PackFolder.c_str())) {
|
2024-03-19 20:17:55 +01:00
|
|
|
REFRESH_MUTEX(snprintf(gCurrLoadingSegment.str, 256, "Generating DynOS Pack:\n\\#808080\\%s", _PackFolder.c_str()));
|
2023-02-27 17:22:31 +01:00
|
|
|
DynOS_Pack_Add(_PackFolder);
|
2022-04-02 04:50:42 +02:00
|
|
|
DynOS_Actor_GeneratePack(_PackFolder);
|
2022-05-08 00:54:27 +02:00
|
|
|
DynOS_Tex_GeneratePack(_PackFolder, _PackFolder, false);
|
2022-03-10 03:01:03 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
closedir(_DynosPacksDir);
|
|
|
|
}
|
2022-03-31 08:04:41 +02:00
|
|
|
}
|
2022-03-10 03:01:03 +01:00
|
|
|
|
2022-04-20 06:06:18 +02:00
|
|
|
void DynOS_Gfx_Init() {
|
2022-03-31 08:04:41 +02:00
|
|
|
// Scan the DynOS packs folder
|
|
|
|
SysPath _DynosPacksFolder = fstring("%s/%s", DYNOS_EXE_FOLDER, DYNOS_PACKS_FOLDER);
|
|
|
|
ScanPacksFolder(_DynosPacksFolder);
|
2022-03-14 02:09:57 +01:00
|
|
|
|
2022-03-31 08:04:41 +02:00
|
|
|
// Scan the user path folder
|
|
|
|
SysPath _DynosPacksUserFolder = fstring("%s/%s", DYNOS_USER_FOLDER, DYNOS_PACKS_FOLDER);
|
|
|
|
ScanPacksFolder(_DynosPacksUserFolder);
|
2022-03-10 03:01:03 +01:00
|
|
|
}
|