2021-12-19 19:53:01 -05:00
|
|
|
#include <std_include.hpp>
|
|
|
|
#include "loader/component_loader.hpp"
|
|
|
|
|
|
|
|
#include "game/game.hpp"
|
|
|
|
#include "game/dvars.hpp"
|
|
|
|
|
|
|
|
#include "scheduler.hpp"
|
|
|
|
#include "command.hpp"
|
|
|
|
#include "gui.hpp"
|
|
|
|
|
|
|
|
#include <utils/string.hpp>
|
|
|
|
#include <utils/hook.hpp>
|
|
|
|
|
|
|
|
namespace asset_list
|
|
|
|
{
|
|
|
|
namespace
|
|
|
|
{
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
|
|
|
void on_frame()
|
|
|
|
{
|
|
|
|
if (!gui::enabled_menus["asset_list"])
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool shown_assets[game::XAssetType::ASSET_TYPE_COUNT];
|
|
|
|
|
|
|
|
{
|
|
|
|
ImGui::Begin("Asset list", &gui::enabled_menus["asset_list"]);
|
|
|
|
|
|
|
|
static char filter[0x200]{};
|
|
|
|
ImGui::InputText("asset type", filter, IM_ARRAYSIZE(filter));
|
|
|
|
for (auto i = 0; i < game::XAssetType::ASSET_TYPE_COUNT; i++)
|
|
|
|
{
|
|
|
|
const auto name = game::g_assetNames[i];
|
|
|
|
const auto type = static_cast<game::XAssetType>(i);
|
|
|
|
|
|
|
|
if (strstr(name, filter))
|
|
|
|
{
|
|
|
|
ImGui::Checkbox(name, &shown_assets[type]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ImGui::End();
|
|
|
|
}
|
|
|
|
|
|
|
|
for (auto i = 0; i < game::XAssetType::ASSET_TYPE_COUNT; i++)
|
|
|
|
{
|
|
|
|
const auto name = game::g_assetNames[i];
|
|
|
|
const auto type = static_cast<game::XAssetType>(i);
|
|
|
|
|
|
|
|
if (!shown_assets[type])
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
ImGui::SetNextWindowSizeConstraints(ImVec2(500, 500), ImVec2(1000, 1000));
|
|
|
|
ImGui::Begin(name, &shown_assets[type]);
|
|
|
|
|
|
|
|
static char filter[0x200]{};
|
|
|
|
ImGui::InputText("asset name", filter, IM_ARRAYSIZE(filter));
|
|
|
|
|
|
|
|
enum_assets(type, [type](const game::XAssetHeader header)
|
|
|
|
{
|
|
|
|
const auto asset = game::XAsset{type, header};
|
|
|
|
const auto* const asset_name = game::DB_GetXAssetName(&asset);
|
|
|
|
|
|
|
|
if (!strstr(asset_name, filter))
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ImGui::Button(asset_name))
|
|
|
|
{
|
|
|
|
utils::string::set_clipboard_data(asset_name);
|
2021-12-20 11:32:06 -05:00
|
|
|
gui::notification("Text copied to clipboard!", utils::string::va("\"%s\"", asset_name));
|
2021-12-19 19:53:01 -05:00
|
|
|
}
|
|
|
|
}, true);
|
|
|
|
|
|
|
|
ImGui::End();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
class component final : public component_interface
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
void post_unpack() override
|
|
|
|
{
|
|
|
|
gui::on_frame(on_frame);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
REGISTER_COMPONENT(asset_list::component)
|