mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-12 19:18:20 +00:00
fix gohst transparency of hook hand and ninja skin
This commit is contained in:
parent
ee5652ce7f
commit
005667b99c
|
@ -343,9 +343,37 @@ void CGhost::OnRender()
|
||||||
|
|
||||||
Player.m_AttackTick += Client()->GameTick(g_Config.m_ClDummy) - GhostTick;
|
Player.m_AttackTick += Client()->GameTick(g_Config.m_ClDummy) - GhostTick;
|
||||||
|
|
||||||
m_pClient->m_Players.RenderHook(&Prev, &Player, &Ghost.m_RenderInfo, -2, IntraTick);
|
CTeeRenderInfo *RenderInfo = &Ghost.m_RenderInfo;
|
||||||
|
CTeeRenderInfo GhostNinjaRenderInfo;
|
||||||
|
if(Player.m_Weapon == WEAPON_NINJA && g_Config.m_ClShowNinja)
|
||||||
|
{
|
||||||
|
// change the skin for the ghost to the ninja
|
||||||
|
int Skin = m_pClient->m_Skins.Find("x_ninja");
|
||||||
|
if(Skin != -1)
|
||||||
|
{
|
||||||
|
bool IsTeamplay = false;
|
||||||
|
if(m_pClient->m_Snap.m_pGameInfoObj)
|
||||||
|
IsTeamplay = (m_pClient->m_Snap.m_pGameInfoObj->m_GameFlags & GAMEFLAG_TEAMS) != 0;
|
||||||
|
|
||||||
|
GhostNinjaRenderInfo = Ghost.m_RenderInfo;
|
||||||
|
const CSkin *pSkin = m_pClient->m_Skins.Get(Skin);
|
||||||
|
GhostNinjaRenderInfo.m_OriginalRenderSkin = pSkin->m_OriginalSkin;
|
||||||
|
GhostNinjaRenderInfo.m_ColorableRenderSkin = pSkin->m_ColorableSkin;
|
||||||
|
GhostNinjaRenderInfo.m_BloodColor = pSkin->m_BloodColor;
|
||||||
|
GhostNinjaRenderInfo.m_SkinMetrics = pSkin->m_Metrics;
|
||||||
|
GhostNinjaRenderInfo.m_CustomColoredSkin = IsTeamplay;
|
||||||
|
if(!IsTeamplay)
|
||||||
|
{
|
||||||
|
GhostNinjaRenderInfo.m_ColorBody = ColorRGBA(1, 1, 1);
|
||||||
|
GhostNinjaRenderInfo.m_ColorFeet = ColorRGBA(1, 1, 1);
|
||||||
|
}
|
||||||
|
RenderInfo = &GhostNinjaRenderInfo;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
m_pClient->m_Players.RenderHook(&Prev, &Player, RenderInfo, -2, IntraTick);
|
||||||
m_pClient->m_Players.RenderHookCollLine(&Prev, &Player, -2, IntraTick);
|
m_pClient->m_Players.RenderHookCollLine(&Prev, &Player, -2, IntraTick);
|
||||||
m_pClient->m_Players.RenderPlayer(&Prev, &Player, &Ghost.m_RenderInfo, -2, IntraTick);
|
m_pClient->m_Players.RenderPlayer(&Prev, &Player, RenderInfo, -2, IntraTick);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -249,6 +249,7 @@ void CPlayers::RenderHook(
|
||||||
IntraTick = (m_pClient->m_aClients[ClientID].m_IsPredicted) ? Client()->PredIntraGameTick(g_Config.m_ClDummy) : Client()->IntraGameTick(g_Config.m_ClDummy);
|
IntraTick = (m_pClient->m_aClients[ClientID].m_IsPredicted) ? Client()->PredIntraGameTick(g_Config.m_ClDummy) : Client()->IntraGameTick(g_Config.m_ClDummy);
|
||||||
|
|
||||||
bool OtherTeam = m_pClient->IsOtherTeam(ClientID);
|
bool OtherTeam = m_pClient->IsOtherTeam(ClientID);
|
||||||
|
float Alpha = (OtherTeam || ClientID < 0) ? g_Config.m_ClShowOthersAlpha / 100.0f : 1.0f;
|
||||||
|
|
||||||
RenderInfo.m_Size = 64.0f;
|
RenderInfo.m_Size = 64.0f;
|
||||||
|
|
||||||
|
@ -280,8 +281,7 @@ void CPlayers::RenderHook(
|
||||||
Graphics()->QuadsSetRotation(angle(Dir) + pi);
|
Graphics()->QuadsSetRotation(angle(Dir) + pi);
|
||||||
// render head
|
// render head
|
||||||
int QuadOffset = NUM_WEAPONS * 2 + 2;
|
int QuadOffset = NUM_WEAPONS * 2 + 2;
|
||||||
if(OtherTeam)
|
Graphics()->SetColor(1.0f, 1.0f, 1.0f, Alpha);
|
||||||
Graphics()->SetColor(1.0f, 1.0f, 1.0f, g_Config.m_ClShowOthersAlpha / 100.0f);
|
|
||||||
Graphics()->RenderQuadContainerAsSprite(m_WeaponEmoteQuadContainerIndex, QuadOffset, HookPos.x, HookPos.y);
|
Graphics()->RenderQuadContainerAsSprite(m_WeaponEmoteQuadContainerIndex, QuadOffset, HookPos.x, HookPos.y);
|
||||||
|
|
||||||
// render chain
|
// render chain
|
||||||
|
@ -303,7 +303,7 @@ void CPlayers::RenderHook(
|
||||||
Graphics()->QuadsSetRotation(0);
|
Graphics()->QuadsSetRotation(0);
|
||||||
Graphics()->SetColor(1.0f, 1.0f, 1.0f, 1.0f);
|
Graphics()->SetColor(1.0f, 1.0f, 1.0f, 1.0f);
|
||||||
|
|
||||||
RenderHand(&RenderInfo, Position, normalize(HookPos - Pos), -pi / 2, vec2(20, 0), OtherTeam ? g_Config.m_ClShowOthersAlpha / 100.0f : 1.0f);
|
RenderHand(&RenderInfo, Position, normalize(HookPos - Pos), -pi / 2, vec2(20, 0), Alpha);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue