t7x/src/client/component/branding.cpp

41 lines
934 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;
2022-10-17 15:01:21 -04:00
float color[4] = {0.666f, 0.666f, 0.666f, 0.666f};
2022-09-16 14:55:36 -04:00
2022-12-03 13:56:24 -05:00
const auto* font = reinterpret_cast<uint32_t*(*)()>(0x141CAC8E0_g)();
2022-09-16 14:55:36 -04:00
if (!font) return;
2022-12-03 13:56:24 -05:00
game::R_AddCmdDrawText("BOIII: " VERSION, std::numeric_limits<int>::max(), font, static_cast<float>(x),
2022-09-16 14:55:36 -04:00
y + static_cast<float>(font[2]) * scale,
2022-10-17 15:01:21 -04:00
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)