mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-05-10 19:01:50 +00:00
k_hud_track.cpp: refactor to separate graphics switching and flickering conditions from main drawing code
This commit is contained in:
parent
70207076c1
commit
b3916ebb8d
1 changed files with 82 additions and 35 deletions
|
|
@ -1,5 +1,6 @@
|
||||||
#include <algorithm>
|
#include <algorithm>
|
||||||
#include <cstddef>
|
#include <cstddef>
|
||||||
|
#include <optional>
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
|
||||||
#include "core/static_vec.hpp"
|
#include "core/static_vec.hpp"
|
||||||
|
|
@ -25,6 +26,27 @@ namespace
|
||||||
|
|
||||||
struct TargetTracking
|
struct TargetTracking
|
||||||
{
|
{
|
||||||
|
static constexpr int kMaxLayers = 2;
|
||||||
|
|
||||||
|
struct Animation
|
||||||
|
{
|
||||||
|
int frames;
|
||||||
|
int tics_per_frame;
|
||||||
|
StaticVec<patch_t**, kMaxLayers> layers;
|
||||||
|
};
|
||||||
|
|
||||||
|
struct Graphics
|
||||||
|
{
|
||||||
|
struct SplitscreenPair
|
||||||
|
{
|
||||||
|
Animation p1;
|
||||||
|
std::optional<Animation> p4;
|
||||||
|
};
|
||||||
|
|
||||||
|
SplitscreenPair near;
|
||||||
|
std::optional<SplitscreenPair> far;
|
||||||
|
};
|
||||||
|
|
||||||
mobj_t* mobj;
|
mobj_t* mobj;
|
||||||
vector3_t point;
|
vector3_t point;
|
||||||
fixed_t camDist;
|
fixed_t camDist;
|
||||||
|
|
@ -45,11 +67,24 @@ struct TargetTracking
|
||||||
|
|
||||||
case MT_SUPER_FLICKY:
|
case MT_SUPER_FLICKY:
|
||||||
return static_cast<skincolornum_t>(Obj_SuperFlickyOwner(mobj)->color);
|
return static_cast<skincolornum_t>(Obj_SuperFlickyOwner(mobj)->color);
|
||||||
|
|
||||||
default:
|
default:
|
||||||
return SKINCOLOR_NONE;
|
return SKINCOLOR_NONE;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Animation animation() const
|
||||||
|
{
|
||||||
|
const fixed_t farDistance = 1280 * mapobjectscale;
|
||||||
|
bool useNear = (camDist < farDistance);
|
||||||
|
|
||||||
|
Graphics gfx = graphics();
|
||||||
|
Graphics::SplitscreenPair& pair = useNear || !gfx.far ? gfx.near : *gfx.far;
|
||||||
|
Animation& anim = r_splitscreen <= 1 || !pair.p4 ? pair.p1 : *pair.p4;
|
||||||
|
|
||||||
|
return anim;
|
||||||
|
}
|
||||||
|
|
||||||
StaticVec<uint32_t, 7> player_emeralds_vec() const
|
StaticVec<uint32_t, 7> player_emeralds_vec() const
|
||||||
{
|
{
|
||||||
StaticVec<uint32_t, 7> emeralds;
|
StaticVec<uint32_t, 7> emeralds;
|
||||||
|
|
@ -100,6 +135,30 @@ struct TargetTracking
|
||||||
|
|
||||||
return nullptr;
|
return nullptr;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private:
|
||||||
|
Graphics graphics() const
|
||||||
|
{
|
||||||
|
switch (mobj->type)
|
||||||
|
{
|
||||||
|
case MT_SUPER_FLICKY:
|
||||||
|
return {
|
||||||
|
{ // Near
|
||||||
|
{4, 2, {kp_superflickytarget}}, // 1P
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
default:
|
||||||
|
return {
|
||||||
|
{ // Near
|
||||||
|
{8, 2, {kp_capsuletarget_near}}, // 1P
|
||||||
|
},
|
||||||
|
{ // Far
|
||||||
|
{2, 3, {kp_capsuletarget_far, kp_capsuletarget_far_text}}, // 1P
|
||||||
|
},
|
||||||
|
};
|
||||||
|
}
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
void K_DrawTargetTracking(const TargetTracking& target)
|
void K_DrawTargetTracking(const TargetTracking& target)
|
||||||
|
|
@ -265,24 +324,14 @@ void K_DrawTargetTracking(const TargetTracking& target)
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
// Draw simple overlay.
|
// Draw simple overlay.
|
||||||
const fixed_t farDistance = 1280 * mapobjectscale;
|
vector2_t targetPos = {result.x, result.y};
|
||||||
bool useNear = (target.camDist < farDistance);
|
|
||||||
|
|
||||||
vector2_t targetPos = {};
|
TargetTracking::Animation anim = target.animation();
|
||||||
|
|
||||||
bool visible = P_CheckSight(stplyr->mo, target.mobj);
|
for (patch_t** array : anim.layers)
|
||||||
|
|
||||||
if ((visible == false || target.mobj->type == MT_SUPER_FLICKY) && (leveltime & 1))
|
|
||||||
{
|
{
|
||||||
// Flicker when not visible.
|
patch_t* patch = array[(leveltime / anim.tics_per_frame) % anim.frames];
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
targetPos.x = result.x;
|
|
||||||
targetPos.y = result.y;
|
|
||||||
|
|
||||||
auto draw = [&](patch_t* patch)
|
|
||||||
{
|
|
||||||
V_DrawFixedPatch(
|
V_DrawFixedPatch(
|
||||||
targetPos.x - ((patch->width << FRACBITS) >> 1),
|
targetPos.x - ((patch->width << FRACBITS) >> 1),
|
||||||
targetPos.y - ((patch->height << FRACBITS) >> 1),
|
targetPos.y - ((patch->height << FRACBITS) >> 1),
|
||||||
|
|
@ -292,27 +341,6 @@ void K_DrawTargetTracking(const TargetTracking& target)
|
||||||
colormap
|
colormap
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
if (target.mobj->type == MT_SUPER_FLICKY)
|
|
||||||
{
|
|
||||||
timer = (leveltime / 2);
|
|
||||||
draw(kp_superflickytarget[timer % 4]);
|
|
||||||
}
|
|
||||||
else if (useNear == true)
|
|
||||||
{
|
|
||||||
timer = (leveltime / 2);
|
|
||||||
draw(kp_capsuletarget_near[timer % 8]);
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
timer = (leveltime / 3);
|
|
||||||
draw(kp_capsuletarget_far[timer & 1]);
|
|
||||||
|
|
||||||
if (r_splitscreen <= 1)
|
|
||||||
{
|
|
||||||
draw(kp_capsuletarget_far_text[timer & 1]);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -395,6 +423,20 @@ bool is_object_tracking_target(const mobj_t* mobj)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool is_object_visible(mobj_t* mobj)
|
||||||
|
{
|
||||||
|
switch (mobj->type)
|
||||||
|
{
|
||||||
|
case MT_SUPER_FLICKY:
|
||||||
|
// Always flickers.
|
||||||
|
return (leveltime & 1);
|
||||||
|
|
||||||
|
default:
|
||||||
|
// Flicker when not visible.
|
||||||
|
return P_CheckSight(stplyr->mo, mobj) || (leveltime & 1);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
}; // namespace
|
}; // namespace
|
||||||
|
|
||||||
void K_drawTargetHUD(const vector3_t* origin, player_t* player)
|
void K_drawTargetHUD(const vector3_t* origin, player_t* player)
|
||||||
|
|
@ -418,6 +460,11 @@ void K_drawTargetHUD(const vector3_t* origin, player_t* player)
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (is_object_visible(mobj) == false)
|
||||||
|
{
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
vector3_t pos = {
|
vector3_t pos = {
|
||||||
R_InterpolateFixed(mobj->old_x, mobj->x) + mobj->sprxoff,
|
R_InterpolateFixed(mobj->old_x, mobj->x) + mobj->sprxoff,
|
||||||
R_InterpolateFixed(mobj->old_y, mobj->y) + mobj->spryoff,
|
R_InterpolateFixed(mobj->old_y, mobj->y) + mobj->spryoff,
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue