Refactor(branding.cpp): Remove branding functions, retain IW6-MOD copyright override
This commit is contained in:
parent
0f912cb33b
commit
8745d26c53
@ -1,33 +1,13 @@
|
|||||||
#include <std_include.hpp>
|
#include <std_include.hpp>
|
||||||
#include "loader/component_loader.hpp"
|
#include "loader/component_loader.hpp"
|
||||||
#include "localized_strings.hpp"
|
#include "localized_strings.hpp"
|
||||||
#include "scheduler.hpp"
|
|
||||||
#include "game/game.hpp"
|
#include "game/game.hpp"
|
||||||
|
|
||||||
#include <utils/hook.hpp>
|
#include <utils/hook.hpp>
|
||||||
#include <utils/string.hpp>
|
#include <utils/string.hpp>
|
||||||
|
|
||||||
#include "version.hpp"
|
|
||||||
|
|
||||||
namespace branding
|
namespace branding
|
||||||
{
|
{
|
||||||
namespace
|
|
||||||
{
|
|
||||||
utils::hook::detour ui_get_formatted_build_number_hook;
|
|
||||||
|
|
||||||
void dvar_set_string_stub(game::dvar_t* dvar, const char* string)
|
|
||||||
{
|
|
||||||
game::Dvar_SetString(dvar, utils::string::va("iw6-mod %s (game %s)", VERSION, string));
|
|
||||||
}
|
|
||||||
|
|
||||||
const char* ui_get_formatted_build_number_stub()
|
|
||||||
{
|
|
||||||
const auto* const build_num = ui_get_formatted_build_number_hook.invoke<const char*>();
|
|
||||||
|
|
||||||
return utils::string::va("%s (%s)", VERSION, build_num);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
class component final : public component_interface
|
class component final : public component_interface
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
@ -38,27 +18,7 @@ namespace branding
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
localized_strings::override("LUA_MENU_LEGAL_COPYRIGHT", "iw6-mod: " VERSION "\n");
|
localized_strings::override("LUA_MENU_LEGAL_COPYRIGHT", "IW6-MOD"); // Ahrimdon
|
||||||
|
|
||||||
utils::hook::call(SELECT_VALUE(0x1403BDABA, 0x140414424), dvar_set_string_stub);
|
|
||||||
ui_get_formatted_build_number_hook.create(
|
|
||||||
SELECT_VALUE(0x140415FD0, 0x1404D7C00), ui_get_formatted_build_number_stub);
|
|
||||||
|
|
||||||
scheduler::loop([]()
|
|
||||||
{
|
|
||||||
const auto x = 3;
|
|
||||||
const auto y = 0;
|
|
||||||
const auto scale = 0.5f;
|
|
||||||
float color[4] = {0.666f, 0.666f, 0.666f, 0.666f};
|
|
||||||
const auto* text = "";
|
|
||||||
|
|
||||||
auto* font = game::R_RegisterFont("fonts/normalfont");
|
|
||||||
if (!font) return;
|
|
||||||
|
|
||||||
game::R_AddCmdDrawText(text, std::numeric_limits<int>::max(), font, static_cast<float>(x),
|
|
||||||
y + static_cast<float>(font->pixelHeight) * scale,
|
|
||||||
scale, scale, 0.0f, color, 0);
|
|
||||||
}, scheduler::pipeline::renderer);
|
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
} // namespace branding
|
} // namespace branding
|
||||||
|
Loading…
Reference in New Issue
Block a user