2022-03-01 21:38:52 +01:00
|
|
|
#include <std_include.hpp>
|
|
|
|
#include "loader/component_loader.hpp"
|
|
|
|
|
2022-05-26 00:26:02 +02:00
|
|
|
#include "game/dvars.hpp"
|
|
|
|
|
|
|
|
#include "fastfiles.hpp"
|
2022-03-01 21:38:52 +01:00
|
|
|
#include "command.hpp"
|
|
|
|
#include "console.hpp"
|
2022-09-10 22:59:55 +02:00
|
|
|
#include "filesystem.hpp"
|
2022-03-01 21:38:52 +01:00
|
|
|
|
|
|
|
#include <utils/hook.hpp>
|
|
|
|
#include <utils/concurrency.hpp>
|
2022-05-26 00:26:02 +02:00
|
|
|
#include <utils/io.hpp>
|
|
|
|
#include <utils/string.hpp>
|
2022-03-01 21:38:52 +01:00
|
|
|
|
|
|
|
namespace fastfiles
|
|
|
|
{
|
|
|
|
static utils::concurrency::container<std::string> current_fastfile;
|
2022-10-11 05:11:54 +02:00
|
|
|
static utils::concurrency::container<std::optional<std::string>> current_usermap;
|
2022-03-01 21:38:52 +01:00
|
|
|
|
|
|
|
namespace
|
|
|
|
{
|
|
|
|
utils::hook::detour db_try_load_x_file_internal_hook;
|
2022-05-26 00:26:02 +02:00
|
|
|
utils::hook::detour db_find_xasset_header_hook;
|
|
|
|
game::dvar_t* g_dump_scripts;
|
2022-03-01 21:38:52 +01:00
|
|
|
|
2022-09-11 02:21:38 +02:00
|
|
|
std::vector<HANDLE> fastfile_handles;
|
|
|
|
|
2022-03-01 21:38:52 +01:00
|
|
|
void db_try_load_x_file_internal(const char* zone_name, const int flags)
|
|
|
|
{
|
2022-05-20 00:05:51 +02:00
|
|
|
console::info("Loading fastfile %s\n", zone_name);
|
2022-03-01 21:38:52 +01:00
|
|
|
current_fastfile.access([&](std::string& fastfile)
|
|
|
|
{
|
|
|
|
fastfile = zone_name;
|
|
|
|
});
|
|
|
|
db_try_load_x_file_internal_hook.invoke<void>(zone_name, flags);
|
|
|
|
}
|
2022-05-26 00:26:02 +02:00
|
|
|
|
|
|
|
void dump_gsc_script(const std::string& name, game::XAssetHeader header)
|
|
|
|
{
|
|
|
|
if (!g_dump_scripts->current.enabled)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string buffer;
|
|
|
|
buffer.append(header.scriptfile->name, strlen(header.scriptfile->name) + 1);
|
|
|
|
buffer.append(reinterpret_cast<char*>(&header.scriptfile->compressedLen), 4);
|
|
|
|
buffer.append(reinterpret_cast<char*>(&header.scriptfile->len), 4);
|
|
|
|
buffer.append(reinterpret_cast<char*>(&header.scriptfile->bytecodeLen), 4);
|
|
|
|
buffer.append(header.scriptfile->buffer, header.scriptfile->compressedLen);
|
|
|
|
buffer.append(header.scriptfile->bytecode, header.scriptfile->bytecodeLen);
|
|
|
|
|
|
|
|
const auto out_name = utils::string::va("gsc_dump/%s.gscbin", name.data());
|
|
|
|
utils::io::write_file(out_name, buffer);
|
|
|
|
|
|
|
|
console::info("Dumped %s\n", out_name);
|
|
|
|
}
|
|
|
|
|
|
|
|
game::XAssetHeader db_find_xasset_header_stub(game::XAssetType type, const char* name, int allow_create_default)
|
|
|
|
{
|
|
|
|
const auto start = game::Sys_Milliseconds();
|
|
|
|
const auto result = db_find_xasset_header_hook.invoke<game::XAssetHeader>(type, name, allow_create_default);
|
|
|
|
const auto diff = game::Sys_Milliseconds() - start;
|
|
|
|
|
|
|
|
if (type == game::XAssetType::ASSET_TYPE_SCRIPTFILE)
|
|
|
|
{
|
|
|
|
dump_gsc_script(name, result);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (diff > 100)
|
|
|
|
{
|
|
|
|
console::print(
|
|
|
|
result.data == nullptr
|
|
|
|
? console::con_type_error
|
|
|
|
: console::con_type_warning,
|
|
|
|
"Waited %i msec for %sasset \"%s\", of type \"%s\"\n",
|
|
|
|
diff,
|
|
|
|
result.data == nullptr
|
|
|
|
? "missing "
|
|
|
|
: "",
|
|
|
|
name,
|
|
|
|
game::g_assetNames[type]
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
2022-08-16 15:23:36 -07:00
|
|
|
|
|
|
|
utils::hook::detour db_read_stream_file_hook;
|
|
|
|
void db_read_stream_file_stub(int a1, int a2)
|
|
|
|
{
|
|
|
|
// always use lz4 compressor type when reading stream files
|
|
|
|
*game::g_compressor = 4;
|
|
|
|
return db_read_stream_file_hook.invoke<void>(a1, a2);
|
|
|
|
}
|
|
|
|
|
2022-08-20 16:27:41 +03:00
|
|
|
namespace mp
|
2022-08-16 15:23:36 -07:00
|
|
|
{
|
2022-08-20 16:27:41 +03:00
|
|
|
void skip_extra_zones_stub(utils::hook::assembler& a)
|
|
|
|
{
|
|
|
|
const auto skip = a.newLabel();
|
|
|
|
const auto original = a.newLabel();
|
|
|
|
|
|
|
|
a.pushad64();
|
|
|
|
a.test(esi, game::DB_ZONE_CUSTOM); // allocFlags
|
|
|
|
a.jnz(skip);
|
|
|
|
|
|
|
|
a.bind(original);
|
|
|
|
a.popad64();
|
|
|
|
a.mov(rdx, 0x8E2F80_b);
|
|
|
|
a.mov(rcx, rbp);
|
|
|
|
a.call(0x840A20_b);
|
|
|
|
a.jmp(0x398070_b);
|
|
|
|
|
|
|
|
a.bind(skip);
|
|
|
|
a.popad64();
|
|
|
|
a.mov(r14d, game::DB_ZONE_CUSTOM);
|
|
|
|
a.not_(r14d);
|
|
|
|
a.and_(esi, r14d);
|
|
|
|
a.jmp(0x39814F_b);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
namespace sp
|
|
|
|
{
|
|
|
|
void skip_extra_zones_stub(utils::hook::assembler& a)
|
|
|
|
{
|
|
|
|
const auto skip = a.newLabel();
|
|
|
|
const auto original = a.newLabel();
|
|
|
|
|
|
|
|
a.pushad64();
|
|
|
|
a.test(ebp, game::DB_ZONE_CUSTOM); // allocFlags
|
|
|
|
a.jnz(skip);
|
|
|
|
|
|
|
|
a.bind(original);
|
|
|
|
a.popad64();
|
|
|
|
a.mov(r8d, 9);
|
|
|
|
a.mov(rdx, 0x782210_b);
|
|
|
|
a.jmp(0x1F4006_b);
|
|
|
|
|
|
|
|
a.bind(skip);
|
|
|
|
a.popad64();
|
|
|
|
a.mov(r15d, game::DB_ZONE_CUSTOM);
|
|
|
|
a.not_(r15d);
|
|
|
|
a.and_(ebp, r15d);
|
|
|
|
a.jmp(0x1F4023_b);
|
|
|
|
}
|
2022-08-16 15:23:36 -07:00
|
|
|
}
|
|
|
|
|
2022-09-03 00:23:04 -05:00
|
|
|
bool try_load_zone(std::string name, bool localized, bool game = false)
|
|
|
|
{
|
|
|
|
if (localized)
|
|
|
|
{
|
|
|
|
const auto language = game::SEH_GetCurrentLanguageCode();
|
2022-10-02 23:08:59 +03:00
|
|
|
if (!try_load_zone(language + "_"s + name, false) && language != "eng"s)
|
|
|
|
{
|
|
|
|
try_load_zone("eng_" + name, false);
|
|
|
|
}
|
2022-09-03 00:23:04 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!fastfiles::exists(name))
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
game::XZoneInfo info{};
|
|
|
|
info.name = name.data();
|
|
|
|
info.allocFlags = (game ? game::DB_ZONE_GAME : game::DB_ZONE_COMMON) | game::DB_ZONE_CUSTOM;
|
|
|
|
info.freeFlags = 0;
|
|
|
|
game::DB_LoadXAssets(&info, 1u, game::DBSyncMode::DB_LOAD_ASYNC);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2022-09-10 22:59:55 +02:00
|
|
|
HANDLE find_fastfile(const std::string& filename, bool check_loc_folder)
|
|
|
|
{
|
|
|
|
std::string path{};
|
|
|
|
std::string loc_folder{};
|
|
|
|
|
|
|
|
if (check_loc_folder && game::DB_IsLocalized(filename.data()))
|
|
|
|
{
|
|
|
|
const auto handle = find_fastfile(filename, false);
|
2022-09-11 12:55:40 +02:00
|
|
|
if (handle != INVALID_HANDLE_VALUE)
|
2022-09-10 22:59:55 +02:00
|
|
|
{
|
|
|
|
return handle;
|
|
|
|
}
|
|
|
|
|
|
|
|
loc_folder = game::SEH_GetCurrentLanguageName() + "/"s;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!filesystem::find_file(loc_folder + filename, &path))
|
|
|
|
{
|
|
|
|
if (!filesystem::find_file("zone/"s + loc_folder + filename, &path))
|
|
|
|
{
|
2022-09-11 12:55:40 +02:00
|
|
|
return INVALID_HANDLE_VALUE;
|
2022-09-10 22:59:55 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-09-11 12:55:40 +02:00
|
|
|
const auto handle = CreateFileA(path.data(), GENERIC_READ, FILE_SHARE_READ, nullptr, OPEN_EXISTING,
|
|
|
|
FILE_FLAG_OVERLAPPED | FILE_FLAG_NO_BUFFERING, nullptr);
|
|
|
|
if (handle != INVALID_HANDLE_VALUE)
|
2022-09-11 02:21:38 +02:00
|
|
|
{
|
|
|
|
fastfile_handles.push_back(handle);
|
|
|
|
}
|
|
|
|
|
|
|
|
return handle;
|
2022-09-10 22:59:55 +02:00
|
|
|
}
|
|
|
|
|
2022-10-11 05:11:54 +02:00
|
|
|
HANDLE find_usermap(const std::string& mapname)
|
|
|
|
{
|
|
|
|
const auto usermap = fastfiles::get_current_usermap();
|
|
|
|
if (!usermap.has_value())
|
|
|
|
{
|
|
|
|
return INVALID_HANDLE_VALUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
const auto& usermap_value = usermap.value();
|
|
|
|
const auto usermap_file = utils::string::va("%s.ff", usermap_value.data());
|
|
|
|
const auto usermap_load_file = utils::string::va("%s_load.ff", usermap_value.data());
|
|
|
|
|
|
|
|
if (mapname == usermap_file || mapname == usermap_load_file)
|
|
|
|
{
|
|
|
|
const auto path = utils::string::va("usermaps\\%s\\%s",
|
|
|
|
usermap_value.data(), mapname.data());
|
|
|
|
if (utils::io::file_exists(path))
|
|
|
|
{
|
|
|
|
return CreateFileA(path, GENERIC_READ, FILE_SHARE_READ, nullptr, OPEN_EXISTING,
|
|
|
|
FILE_FLAG_OVERLAPPED | FILE_FLAG_NO_BUFFERING, nullptr);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return INVALID_HANDLE_VALUE;
|
|
|
|
}
|
|
|
|
|
2022-08-16 15:23:36 -07:00
|
|
|
utils::hook::detour sys_createfile_hook;
|
2022-10-12 23:40:17 +02:00
|
|
|
HANDLE sys_create_file(game::Sys_Folder folder, const char* base_filename, bool ignore_usermap)
|
2022-08-16 15:23:36 -07:00
|
|
|
{
|
2022-09-09 20:38:04 -05:00
|
|
|
const auto* fs_basepath = game::Dvar_FindVar("fs_basepath");
|
|
|
|
const auto* fs_game = game::Dvar_FindVar("fs_game");
|
2022-08-16 15:23:36 -07:00
|
|
|
|
2022-09-10 22:59:55 +02:00
|
|
|
const std::string dir = fs_basepath ? fs_basepath->current.string : "";
|
|
|
|
const std::string mod_dir = fs_game ? fs_game->current.string : "";
|
|
|
|
const std::string name = base_filename;
|
2022-08-16 15:23:36 -07:00
|
|
|
|
2022-09-10 22:59:55 +02:00
|
|
|
if (name == "mod.ff")
|
2022-08-16 15:23:36 -07:00
|
|
|
{
|
|
|
|
if (!mod_dir.empty())
|
|
|
|
{
|
2022-09-10 22:59:55 +02:00
|
|
|
const auto path = utils::string::va("%s\\%s\\%s",
|
|
|
|
dir.data(), mod_dir.data(), base_filename);
|
|
|
|
|
2022-08-16 15:23:36 -07:00
|
|
|
if (utils::io::file_exists(path))
|
|
|
|
{
|
2022-09-11 13:32:19 +02:00
|
|
|
return CreateFileA(path, GENERIC_READ, FILE_SHARE_READ, nullptr, OPEN_EXISTING,
|
|
|
|
FILE_FLAG_OVERLAPPED | FILE_FLAG_NO_BUFFERING, nullptr);
|
2022-08-16 15:23:36 -07:00
|
|
|
}
|
|
|
|
}
|
2022-09-10 22:59:55 +02:00
|
|
|
|
2022-09-11 13:32:19 +02:00
|
|
|
return INVALID_HANDLE_VALUE;
|
2022-09-10 22:59:55 +02:00
|
|
|
}
|
|
|
|
|
2022-09-11 20:13:56 +02:00
|
|
|
auto handle = sys_createfile_hook.invoke<HANDLE>(folder, base_filename);
|
|
|
|
if (handle != INVALID_HANDLE_VALUE)
|
|
|
|
{
|
|
|
|
return handle;
|
|
|
|
}
|
|
|
|
|
2022-10-12 23:40:17 +02:00
|
|
|
if (!ignore_usermap)
|
2022-10-11 05:11:54 +02:00
|
|
|
{
|
2022-10-12 23:40:17 +02:00
|
|
|
const auto usermap = find_usermap(name);
|
|
|
|
if (usermap != INVALID_HANDLE_VALUE)
|
|
|
|
{
|
|
|
|
return usermap;
|
|
|
|
}
|
2022-10-11 05:11:54 +02:00
|
|
|
}
|
|
|
|
|
2022-09-10 22:59:55 +02:00
|
|
|
if (name.ends_with(".ff"))
|
|
|
|
{
|
2022-09-11 20:13:56 +02:00
|
|
|
handle = find_fastfile(name, true);
|
2022-08-16 15:23:36 -07:00
|
|
|
}
|
|
|
|
|
2022-09-11 20:13:56 +02:00
|
|
|
return handle;
|
2022-08-16 15:23:36 -07:00
|
|
|
}
|
|
|
|
|
2022-10-12 23:40:17 +02:00
|
|
|
HANDLE sys_create_file_stub(game::Sys_Folder folder, const char* base_filename)
|
|
|
|
{
|
|
|
|
return sys_create_file(folder, base_filename, false);
|
|
|
|
}
|
|
|
|
|
2022-10-11 05:11:54 +02:00
|
|
|
utils::hook::detour db_file_exists_hook;
|
|
|
|
bool db_file_exists_stub(const char* file, int a2)
|
|
|
|
{
|
|
|
|
const auto file_exists = db_file_exists_hook.invoke<bool>(file, a2);
|
|
|
|
if (file_exists)
|
|
|
|
{
|
|
|
|
return file_exists;
|
|
|
|
}
|
|
|
|
|
|
|
|
return fastfiles::usermap_exists(file);
|
|
|
|
}
|
|
|
|
|
2022-09-10 22:59:55 +02:00
|
|
|
template <typename T>
|
|
|
|
inline void merge(std::vector<T>* target, T* source, size_t length)
|
2022-08-16 15:23:36 -07:00
|
|
|
{
|
|
|
|
if (source)
|
|
|
|
{
|
|
|
|
for (size_t i = 0; i < length; ++i)
|
|
|
|
{
|
|
|
|
target->push_back(source[i]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-09-10 22:59:55 +02:00
|
|
|
template <typename T>
|
|
|
|
inline void merge(std::vector<T>* target, std::vector<T> source)
|
2022-08-16 15:23:36 -07:00
|
|
|
{
|
|
|
|
for (auto& entry : source)
|
|
|
|
{
|
|
|
|
target->push_back(entry);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void load_pre_gfx_zones(game::XZoneInfo* zoneInfo, unsigned int zoneCount, game::DBSyncMode syncMode)
|
|
|
|
{
|
|
|
|
std::vector<game::XZoneInfo> data;
|
|
|
|
merge(&data, zoneInfo, zoneCount);
|
|
|
|
|
2022-08-20 16:27:41 +03:00
|
|
|
// code_pre_gfx
|
2022-08-16 15:23:36 -07:00
|
|
|
|
|
|
|
game::DB_LoadXAssets(data.data(), static_cast<std::uint32_t>(data.size()), syncMode);
|
|
|
|
}
|
|
|
|
|
|
|
|
void load_post_gfx_and_ui_and_common_zones(game::XZoneInfo* zoneInfo, unsigned int zoneCount, game::DBSyncMode syncMode)
|
|
|
|
{
|
|
|
|
std::vector<game::XZoneInfo> data;
|
|
|
|
merge(&data, zoneInfo, zoneCount);
|
|
|
|
|
2022-08-20 16:27:41 +03:00
|
|
|
// code_post_gfx
|
|
|
|
// ui
|
|
|
|
// common
|
2022-08-16 15:23:36 -07:00
|
|
|
|
2022-09-03 17:57:24 -05:00
|
|
|
try_load_zone("h1_mod_common", true);
|
2022-09-03 05:25:13 -05:00
|
|
|
|
2022-08-16 15:23:36 -07:00
|
|
|
game::DB_LoadXAssets(data.data(), static_cast<std::uint32_t>(data.size()), syncMode);
|
2022-09-03 00:23:04 -05:00
|
|
|
|
|
|
|
try_load_zone("mod", true);
|
2022-08-16 15:23:36 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
void load_ui_zones(game::XZoneInfo* zoneInfo, unsigned int zoneCount, game::DBSyncMode syncMode)
|
|
|
|
{
|
|
|
|
std::vector<game::XZoneInfo> data;
|
|
|
|
merge(&data, zoneInfo, zoneCount);
|
|
|
|
|
2022-08-20 16:27:41 +03:00
|
|
|
// ui
|
2022-08-16 15:23:36 -07:00
|
|
|
|
|
|
|
game::DB_LoadXAssets(data.data(), static_cast<std::uint32_t>(data.size()), syncMode);
|
|
|
|
}
|
2022-09-11 08:07:19 -05:00
|
|
|
|
|
|
|
void load_lua_file_asset_stub(void* a1)
|
|
|
|
{
|
|
|
|
const auto fastfile = fastfiles::get_current_fastfile();
|
|
|
|
if (fastfile == "mod")
|
|
|
|
{
|
|
|
|
console::error("Mod tried to load a lua file!\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2022-10-11 05:11:54 +02:00
|
|
|
const auto usermap = fastfiles::get_current_usermap();
|
|
|
|
if (usermap.has_value())
|
|
|
|
{
|
|
|
|
const auto& usermap_value = usermap.value();
|
|
|
|
const auto usermap_load = usermap_value + "_load";
|
|
|
|
|
|
|
|
if (fastfile == usermap_value || fastfile == usermap_load)
|
|
|
|
{
|
|
|
|
console::error("Usermap tried to load a lua file!\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-09-11 08:07:19 -05:00
|
|
|
utils::hook::invoke<void>(0x39CA90_b, a1);
|
|
|
|
}
|
2022-10-09 20:51:19 +02:00
|
|
|
|
|
|
|
void db_level_load_add_zone_stub(void* load, const char* name, const unsigned int alloc_flags,
|
|
|
|
const size_t size_est)
|
|
|
|
{
|
|
|
|
auto is_builtin_map = false;
|
|
|
|
for (auto map = &game::maps[0]; map->unk; ++map)
|
|
|
|
{
|
|
|
|
if (!std::strcmp(map->name, name))
|
|
|
|
{
|
|
|
|
is_builtin_map = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (is_builtin_map)
|
|
|
|
{
|
|
|
|
game::DB_LevelLoadAddZone(load, name, alloc_flags, size_est);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
game::DB_LevelLoadAddZone(load, name, alloc_flags | game::DB_ZONE_CUSTOM, size_est);
|
|
|
|
}
|
|
|
|
}
|
2022-08-16 15:23:36 -07:00
|
|
|
}
|
|
|
|
|
2022-10-12 23:40:17 +02:00
|
|
|
bool exists(const std::string& zone, bool ignore_usermap)
|
2022-08-16 15:23:36 -07:00
|
|
|
{
|
2022-09-03 00:23:04 -05:00
|
|
|
const auto is_localized = game::DB_IsLocalized(zone.data());
|
2022-10-12 23:40:17 +02:00
|
|
|
const auto handle = sys_create_file((is_localized ? game::SF_ZONE_LOC : game::SF_ZONE),
|
|
|
|
utils::string::va("%s.ff", zone.data()), ignore_usermap);
|
2022-09-10 22:59:55 +02:00
|
|
|
|
2022-09-11 13:32:19 +02:00
|
|
|
if (handle != INVALID_HANDLE_VALUE)
|
2022-08-16 15:23:36 -07:00
|
|
|
{
|
|
|
|
CloseHandle(handle);
|
|
|
|
return true;
|
|
|
|
}
|
2022-09-03 17:57:24 -05:00
|
|
|
|
2022-08-16 15:23:36 -07:00
|
|
|
return false;
|
2022-03-01 21:38:52 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
std::string get_current_fastfile()
|
|
|
|
{
|
|
|
|
return current_fastfile.access<std::string>([&](std::string& fastfile)
|
|
|
|
{
|
|
|
|
return fastfile;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2022-03-13 15:31:57 +01:00
|
|
|
void enum_assets(const game::XAssetType type,
|
|
|
|
const std::function<void(game::XAssetHeader)>& callback, const bool includeOverride)
|
|
|
|
{
|
|
|
|
game::DB_EnumXAssets_Internal(type, static_cast<void(*)(game::XAssetHeader, void*)>([](game::XAssetHeader header, void* data)
|
|
|
|
{
|
|
|
|
const auto& cb = *static_cast<const std::function<void(game::XAssetHeader)>*>(data);
|
|
|
|
cb(header);
|
|
|
|
}), &callback, includeOverride);
|
|
|
|
}
|
|
|
|
|
2022-09-11 02:21:38 +02:00
|
|
|
void close_fastfile_handles()
|
|
|
|
{
|
|
|
|
for (const auto& handle : fastfile_handles)
|
|
|
|
{
|
|
|
|
CloseHandle(handle);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-10-11 05:11:54 +02:00
|
|
|
void set_usermap(const std::string& usermap)
|
|
|
|
{
|
|
|
|
current_usermap.access([&](std::optional<std::string>& current_usermap_)
|
|
|
|
{
|
|
|
|
current_usermap_ = usermap;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
void clear_usermap()
|
|
|
|
{
|
|
|
|
current_usermap.access([&](std::optional<std::string>& current_usermap_)
|
|
|
|
{
|
|
|
|
current_usermap_.reset();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
std::optional<std::string> get_current_usermap()
|
|
|
|
{
|
|
|
|
return current_usermap.access<std::optional<std::string>>([&](
|
|
|
|
std::optional<std::string>& current_usermap_)
|
|
|
|
{
|
|
|
|
return current_usermap_;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
bool usermap_exists(const std::string& name)
|
|
|
|
{
|
|
|
|
if (is_stock_map(name))
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return utils::io::file_exists(utils::string::va("usermaps\\%s\\%s.ff", name.data(), name.data()));
|
|
|
|
}
|
|
|
|
|
|
|
|
bool is_stock_map(const std::string& name)
|
|
|
|
{
|
2022-10-12 23:40:17 +02:00
|
|
|
return fastfiles::exists(name, true);
|
2022-10-11 05:11:54 +02:00
|
|
|
}
|
|
|
|
|
2022-03-01 21:38:52 +01:00
|
|
|
class component final : public component_interface
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
void post_unpack() override
|
|
|
|
{
|
|
|
|
db_try_load_x_file_internal_hook.create(
|
2022-05-24 18:48:37 +03:00
|
|
|
SELECT_VALUE(0x1F5700_b, 0x39A620_b), &db_try_load_x_file_internal);
|
2022-05-26 00:26:02 +02:00
|
|
|
db_find_xasset_header_hook.create(game::DB_FindXAssetHeader, db_find_xasset_header_stub);
|
|
|
|
|
|
|
|
g_dump_scripts = dvars::register_bool("g_dumpScripts", false, game::DVAR_FLAG_NONE, "Dump GSC scripts");
|
2022-08-16 15:23:36 -07:00
|
|
|
|
|
|
|
// Allow loading of unsigned fastfiles
|
|
|
|
if (!game::environment::is_sp())
|
|
|
|
{
|
|
|
|
utils::hook::nop(0x368153_b, 2); // DB_InflateInit
|
|
|
|
}
|
|
|
|
|
|
|
|
// Allow loading of mixed compressor types
|
|
|
|
utils::hook::nop(SELECT_VALUE(0x1C4BE7_b, 0x3687A7_b), 2);
|
|
|
|
|
|
|
|
// Fix compressor type on streamed file load
|
|
|
|
db_read_stream_file_hook.create(SELECT_VALUE(0x1FB9D0_b, 0x3A1BF0_b), db_read_stream_file_stub);
|
|
|
|
|
2022-08-20 16:27:41 +03:00
|
|
|
// Add custom zone paths
|
|
|
|
sys_createfile_hook.create(game::Sys_CreateFile, sys_create_file_stub);
|
2022-10-11 05:11:54 +02:00
|
|
|
db_file_exists_hook.create(0x394DC0_b, db_file_exists_stub);
|
2022-08-16 15:23:36 -07:00
|
|
|
|
2022-08-20 16:27:41 +03:00
|
|
|
// load our custom pre_gfx zones
|
|
|
|
utils::hook::call(SELECT_VALUE(0x3862ED_b, 0x15C3FD_b), load_pre_gfx_zones);
|
|
|
|
utils::hook::call(SELECT_VALUE(0x3865E7_b, 0x15C75D_b), load_pre_gfx_zones);
|
2022-08-16 15:23:36 -07:00
|
|
|
|
2022-08-20 16:27:41 +03:00
|
|
|
// load our custom ui and common zones
|
|
|
|
utils::hook::call(SELECT_VALUE(0x5634AA_b, 0x686421_b), load_post_gfx_and_ui_and_common_zones);
|
2022-08-16 15:23:36 -07:00
|
|
|
|
2022-08-20 16:27:41 +03:00
|
|
|
// load our custom ui zones
|
|
|
|
utils::hook::call(SELECT_VALUE(0x3A5676_b, 0x17C6D2_b), load_ui_zones);
|
2022-08-16 15:23:36 -07:00
|
|
|
|
2022-08-20 16:27:41 +03:00
|
|
|
// Don't load extra zones with loadzone
|
|
|
|
if (game::environment::is_sp())
|
|
|
|
{
|
|
|
|
utils::hook::nop(0x1F3FF9_b, 13);
|
|
|
|
utils::hook::jump(0x1F3FF9_b, utils::hook::assemble(sp::skip_extra_zones_stub), true);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
utils::hook::nop(0x398061_b, 15);
|
|
|
|
utils::hook::jump(0x398061_b, utils::hook::assemble(mp::skip_extra_zones_stub), true);
|
2022-10-09 20:51:19 +02:00
|
|
|
|
|
|
|
// dont load localized zone for custom maps
|
|
|
|
utils::hook::call(0x394A99_b, db_level_load_add_zone_stub);
|
2022-08-16 15:23:36 -07:00
|
|
|
}
|
|
|
|
|
2022-09-11 08:07:19 -05:00
|
|
|
// prevent mod.ff from loading lua files
|
|
|
|
if (game::environment::is_mp())
|
|
|
|
{
|
|
|
|
utils::hook::call(0x3757B4_b, load_lua_file_asset_stub);
|
|
|
|
}
|
|
|
|
|
2022-08-16 15:23:36 -07:00
|
|
|
command::add("loadzone", [](const command::params& params)
|
|
|
|
{
|
|
|
|
if (params.size() < 2)
|
|
|
|
{
|
|
|
|
console::info("usage: loadzone <zone>\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2022-09-03 00:23:04 -05:00
|
|
|
const auto name = params.get(1);
|
2022-09-03 17:57:24 -05:00
|
|
|
if (!try_load_zone(name, false))
|
2022-08-16 15:23:36 -07:00
|
|
|
{
|
|
|
|
console::warn("loadzone: zone \"%s\" could not be found!\n", name);
|
|
|
|
}
|
|
|
|
});
|
2022-03-01 21:38:52 +01:00
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2022-05-19 02:27:46 +02:00
|
|
|
REGISTER_COMPONENT(fastfiles::component)
|