t7x/src/client/component/branding.cpp

41 lines
907 B
C++
Raw Normal View History

2022-09-16 14:55:36 -04:00
#include <std_include.hpp>
#include "loader/component_loader.hpp"
#include "game/game.hpp"
#include "version.hpp"
2022-09-16 14:55:36 -04:00
2022-09-17 08:51:34 -04:00
#include "scheduler.hpp"
2022-09-16 14:55:36 -04:00
#include <utils/hook.hpp>
namespace branding
{
namespace
{
void draw_branding()
{
constexpr auto x = 4;
2022-09-17 03:16:24 -04:00
constexpr auto y = 0;
2022-09-18 02:33:11 -04:00
constexpr auto scale = 0.45f;
float color[4] = {0.666f, 0.666f, 0.666f, 0.666f};
2022-09-16 14:55:36 -04:00
auto* font = reinterpret_cast<uint32_t*(*)()>(0x141CAC8E0_g)();
if (!font) return;
game::R_AddCmdDrawText("BOIII: " VERSION, 0x7FFFFFFF, font, static_cast<float>(x),
2022-09-16 14:55:36 -04:00
y + static_cast<float>(font[2]) * scale,
scale, scale, 0.0f, color, game::ITEM_TEXTSTYLE_NORMAL);
2022-09-16 14:55:36 -04:00
}
}
class component final : public component_interface
{
public:
void post_unpack() override
{
2022-09-17 08:51:34 -04:00
scheduler::loop(draw_branding, scheduler::renderer);
2022-09-16 14:55:36 -04:00
}
};
}
REGISTER_COMPONENT(branding::component)