t7x/src/client/component/branding.cpp

41 lines
927 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;
constexpr auto scale = 0.5f;
2022-09-16 14:55:36 -04:00
float color[4] = {236 / 255.0f, 113 / 255.0f, 10 / 255.0f, 1.0f};
auto* font = reinterpret_cast<uint32_t*(*)()>(0x141CAC8E0_g)();
if (!font) return;
2022-09-17 03:16:24 -04:00
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,
2022-09-17 03:16:24 -04:00
scale, scale, 0.0f, color, game::ITEM_TEXTSTYLE_SHADOWEDMORE);
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)