ddnet/src/game/client/components/items.cpp

285 lines
8.3 KiB
C++
Raw Normal View History

2010-05-29 07:25:38 +00:00
#include <engine/graphics.h>
#include <engine/demo.h>
2010-05-29 07:25:38 +00:00
#include <game/generated/protocol.h>
#include <game/generated/client_data.h>
2010-05-29 07:25:38 +00:00
#include <game/gamecore.h> // get_angle
#include <game/client/gameclient.h>
#include <game/client/ui.h>
#include <game/client/render.h>
2010-05-29 07:25:38 +00:00
#include <game/client/components/flow.h>
#include <game/client/components/effects.h>
2010-05-29 07:25:38 +00:00
#include "items.h"
2010-05-29 07:25:38 +00:00
void CItems::RenderProjectile(const CNetObj_Projectile *pCurrent, int ItemId)
{
// get positions
2010-05-29 07:25:38 +00:00
float Curvature = 0;
float Speed = 0;
if(pCurrent->m_Type == WEAPON_GRENADE)
{
2010-05-29 07:25:38 +00:00
Curvature = m_pClient->m_Tuning.m_GrenadeCurvature;
Speed = m_pClient->m_Tuning.m_GrenadeSpeed;
}
2010-05-29 07:25:38 +00:00
else if(pCurrent->m_Type == WEAPON_SHOTGUN)
{
2010-05-29 07:25:38 +00:00
Curvature = m_pClient->m_Tuning.m_ShotgunCurvature;
Speed = m_pClient->m_Tuning.m_ShotgunSpeed;
}
2010-05-29 07:25:38 +00:00
else if(pCurrent->m_Type == WEAPON_GUN)
{
2010-05-29 07:25:38 +00:00
Curvature = m_pClient->m_Tuning.m_GunCurvature;
Speed = m_pClient->m_Tuning.m_GunSpeed;
}
2010-05-29 07:25:38 +00:00
float Ct = (Client()->PrevGameTick()-pCurrent->m_StartTick)/(float)SERVER_TICK_SPEED + Client()->GameTickTime();
if(Ct < 0)
2008-10-14 12:11:42 +00:00
return; // projectile havn't been shot yet
2010-05-29 07:25:38 +00:00
vec2 StartPos(pCurrent->m_X, pCurrent->m_Y);
vec2 StartVel(pCurrent->m_VelX/100.0f, pCurrent->m_VelY/100.0f);
vec2 Pos = CalcPos(StartPos, StartVel, Curvature, Speed, Ct);
vec2 PrevPos = CalcPos(StartPos, StartVel, Curvature, Speed, Ct-0.001f);
2008-10-14 12:11:42 +00:00
2010-05-29 07:25:38 +00:00
Graphics()->TextureSet(g_pData->m_aImages[IMAGE_GAME].m_Id);
2009-10-27 14:38:53 +00:00
Graphics()->QuadsBegin();
2008-10-14 12:11:42 +00:00
2010-05-29 07:25:38 +00:00
RenderTools()->SelectSprite(g_pData->m_Weapons.m_aId[clamp(pCurrent->m_Type, 0, NUM_WEAPONS-1)].m_pSpriteProj);
vec2 Vel = Pos-PrevPos;
//vec2 pos = mix(vec2(prev->x, prev->y), vec2(current->x, current->y), Client()->IntraGameTick());
// add particle for this projectile
2010-05-29 07:25:38 +00:00
if(pCurrent->m_Type == WEAPON_GRENADE)
{
2010-05-29 07:25:38 +00:00
m_pClient->m_pEffects->SmokeTrail(Pos, Vel*-1);
m_pClient->m_pFlow->Add(Pos, Vel*1000*Client()->FrameTime(), 10.0f);
Graphics()->QuadsSetRotation(Client()->LocalTime()*pi*2*2 + ItemId);
}
else
{
2010-05-29 07:25:38 +00:00
m_pClient->m_pEffects->BulletTrail(Pos);
m_pClient->m_pFlow->Add(Pos, Vel*1000*Client()->FrameTime(), 10.0f);
2010-05-29 07:25:38 +00:00
if(length(Vel) > 0.00001f)
Graphics()->QuadsSetRotation(GetAngle(Vel));
else
2009-10-27 14:38:53 +00:00
Graphics()->QuadsSetRotation(0);
}
2010-05-29 07:25:38 +00:00
IGraphics::CQuadItem QuadItem(Pos.x, Pos.y, 32, 32);
Graphics()->QuadsDraw(&QuadItem, 1);
2009-10-27 14:38:53 +00:00
Graphics()->QuadsSetRotation(0);
Graphics()->QuadsEnd();
}
2010-05-29 07:25:38 +00:00
void CItems::RenderPickup(const CNetObj_Pickup *pPrev, const CNetObj_Pickup *pCurrent)
{
2010-05-29 07:25:38 +00:00
Graphics()->TextureSet(g_pData->m_aImages[IMAGE_GAME].m_Id);
2009-10-27 14:38:53 +00:00
Graphics()->QuadsBegin();
2010-05-29 07:25:38 +00:00
vec2 Pos = mix(vec2(pPrev->m_X, pPrev->m_Y), vec2(pCurrent->m_X, pCurrent->m_Y), Client()->IntraGameTick());
float Angle = 0.0f;
float Size = 64.0f;
if (pCurrent->m_Type == POWERUP_WEAPON)
{
2010-05-29 07:25:38 +00:00
Angle = 0; //-pi/6;//-0.25f * pi * 2.0f;
RenderTools()->SelectSprite(g_pData->m_Weapons.m_aId[clamp(pCurrent->m_Subtype, 0, NUM_WEAPONS-1)].m_pSpriteBody);
Size = g_pData->m_Weapons.m_aId[clamp(pCurrent->m_Subtype, 0, NUM_WEAPONS-1)].m_VisualSize;
}
else
{
const int c[] = {
SPRITE_PICKUP_HEALTH,
SPRITE_PICKUP_ARMOR,
SPRITE_PICKUP_WEAPON,
SPRITE_PICKUP_NINJA
};
2010-05-29 07:25:38 +00:00
RenderTools()->SelectSprite(c[pCurrent->m_Type]);
2010-05-29 07:25:38 +00:00
if(c[pCurrent->m_Type] == SPRITE_PICKUP_NINJA)
{
2010-05-29 07:25:38 +00:00
m_pClient->m_pEffects->PowerupShine(Pos, vec2(96,18));
Size *= 2.0f;
Pos.x -= 10.0f;
}
}
2010-05-29 07:25:38 +00:00
Graphics()->QuadsSetRotation(Angle);
2010-05-29 07:25:38 +00:00
float Offset = Pos.y/32.0f + Pos.x/32.0f;
if(Client()->State() == IClient::STATE_DEMOPLAYBACK)
{
const IDemoPlayer::CInfo *pInfo = DemoPlayer()->BaseInfo();
if(!pInfo->m_Paused)
{
Pos.x += cosf(Client()->LocalTime()*pInfo->m_Speed*2.0f+Offset)*2.5f;
Pos.y += sinf(Client()->LocalTime()*pInfo->m_Speed*2.0f+Offset)*2.5f;
}
}
else
{
Pos.x += cosf(Client()->LocalTime()*2.0f+Offset)*2.5f;
Pos.y += sinf(Client()->LocalTime()*2.0f+Offset)*2.5f;
}
2010-05-29 07:25:38 +00:00
RenderTools()->DrawSprite(Pos.x, Pos.y, Size);
2009-10-27 14:38:53 +00:00
Graphics()->QuadsEnd();
}
2010-05-29 07:25:38 +00:00
void CItems::RenderFlag(const CNetObj_Flag *pPrev, const CNetObj_Flag *pCurrent)
{
2010-05-29 07:25:38 +00:00
float Angle = 0.0f;
float Size = 42.0f;
2009-10-27 14:38:53 +00:00
Graphics()->BlendNormal();
2010-05-29 07:25:38 +00:00
Graphics()->TextureSet(g_pData->m_aImages[IMAGE_GAME].m_Id);
2009-10-27 14:38:53 +00:00
Graphics()->QuadsBegin();
2010-05-29 07:25:38 +00:00
if(pCurrent->m_Team == 0) // red team
RenderTools()->SelectSprite(SPRITE_FLAG_RED);
else
2010-05-29 07:25:38 +00:00
RenderTools()->SelectSprite(SPRITE_FLAG_BLUE);
2010-05-29 07:25:38 +00:00
Graphics()->QuadsSetRotation(Angle);
2010-05-29 07:25:38 +00:00
vec2 Pos = mix(vec2(pPrev->m_X, pPrev->m_Y), vec2(pCurrent->m_X, pCurrent->m_Y), Client()->IntraGameTick());
// make sure that the flag isn't interpolated between capture and return
2010-05-29 07:25:38 +00:00
if(pPrev->m_CarriedBy != pCurrent->m_CarriedBy)
Pos = vec2(pCurrent->m_X, pCurrent->m_Y);
// make sure to use predicted position if we are the carrier
2010-05-29 07:25:38 +00:00
if(m_pClient->m_Snap.m_pLocalInfo && pCurrent->m_CarriedBy == m_pClient->m_Snap.m_pLocalInfo->m_ClientId)
Pos = m_pClient->m_LocalCharacterPos;
2010-05-29 07:25:38 +00:00
IGraphics::CQuadItem QuadItem(Pos.x, Pos.y-Size*0.75f, Size, Size*2);
Graphics()->QuadsDraw(&QuadItem, 1);
2009-10-27 14:38:53 +00:00
Graphics()->QuadsEnd();
}
2010-05-29 07:25:38 +00:00
void CItems::RenderLaser(const struct CNetObj_Laser *pCurrent)
{
2010-05-29 07:25:38 +00:00
vec2 Pos = vec2(pCurrent->m_X, pCurrent->m_Y);
vec2 From = vec2(pCurrent->m_FromX, pCurrent->m_FromY);
vec2 Dir = normalize(Pos-From);
2010-05-29 07:25:38 +00:00
float Ticks = Client()->GameTick() + Client()->IntraGameTick() - pCurrent->m_StartTick;
float Ms = (Ticks/50.0f) * 1000.0f;
float a = Ms / m_pClient->m_Tuning.m_LaserBounceDelay;
a = clamp(a, 0.0f, 1.0f);
2010-05-29 07:25:38 +00:00
float Ia = 1-a;
2010-05-29 07:25:38 +00:00
vec2 Out, Border;
2009-10-27 14:38:53 +00:00
Graphics()->BlendNormal();
Graphics()->TextureSet(-1);
Graphics()->QuadsBegin();
//vec4 inner_color(0.15f,0.35f,0.75f,1.0f);
//vec4 outer_color(0.65f,0.85f,1.0f,1.0f);
// do outline
2010-05-29 07:25:38 +00:00
vec4 OuterColor(0.075f, 0.075f, 0.25f, 1.0f);
Graphics()->SetColor(OuterColor.r, OuterColor.g, OuterColor.b, 1.0f);
Out = vec2(Dir.y, -Dir.x) * (7.0f*Ia);
2010-05-29 07:25:38 +00:00
IGraphics::CFreeformItem Freeform(
From.x-Out.x, From.y-Out.y,
From.x+Out.x, From.y+Out.y,
Pos.x-Out.x, Pos.y-Out.y,
Pos.x+Out.x, Pos.y+Out.y);
Graphics()->QuadsDrawFreeform(&Freeform, 1);
// do inner
2010-05-29 07:25:38 +00:00
vec4 InnerColor(0.5f, 0.5f, 1.0f, 1.0f);
Out = vec2(Dir.y, -Dir.x) * (5.0f*Ia);
Graphics()->SetColor(InnerColor.r, InnerColor.g, InnerColor.b, 1.0f); // center
2010-05-29 07:25:38 +00:00
Freeform = IGraphics::CFreeformItem(
From.x-Out.x, From.y-Out.y,
From.x+Out.x, From.y+Out.y,
Pos.x-Out.x, Pos.y-Out.y,
Pos.x+Out.x, Pos.y+Out.y);
Graphics()->QuadsDrawFreeform(&Freeform, 1);
2009-10-27 14:38:53 +00:00
Graphics()->QuadsEnd();
// render head
{
2009-10-27 14:38:53 +00:00
Graphics()->BlendNormal();
2010-05-29 07:25:38 +00:00
Graphics()->TextureSet(g_pData->m_aImages[IMAGE_PARTICLES].m_Id);
2009-10-27 14:38:53 +00:00
Graphics()->QuadsBegin();
2010-05-29 07:25:38 +00:00
int Sprites[] = {SPRITE_PART_SPLAT01, SPRITE_PART_SPLAT02, SPRITE_PART_SPLAT03};
RenderTools()->SelectSprite(Sprites[Client()->GameTick()%3]);
Graphics()->QuadsSetRotation(Client()->GameTick());
Graphics()->SetColor(OuterColor.r, OuterColor.g, OuterColor.b, 1.0f);
IGraphics::CQuadItem QuadItem(Pos.x, Pos.y, 24, 24);
Graphics()->QuadsDraw(&QuadItem, 1);
Graphics()->SetColor(InnerColor.r, InnerColor.g, InnerColor.b, 1.0f);
QuadItem = IGraphics::CQuadItem(Pos.x, Pos.y, 20, 20);
Graphics()->QuadsDraw(&QuadItem, 1);
2009-10-27 14:38:53 +00:00
Graphics()->QuadsEnd();
}
2009-10-27 14:38:53 +00:00
Graphics()->BlendNormal();
}
2010-05-29 07:25:38 +00:00
void CItems::OnRender()
{
2010-05-29 07:25:38 +00:00
int Num = Client()->SnapNumItems(IClient::SNAP_CURRENT);
for(int i = 0; i < Num; i++)
{
2010-05-29 07:25:38 +00:00
IClient::CSnapItem Item;
const void *pData = Client()->SnapGetItem(IClient::SNAP_CURRENT, i, &Item);
2010-05-29 07:25:38 +00:00
if(Item.m_Type == NETOBJTYPE_PROJECTILE)
{
2010-05-29 07:25:38 +00:00
RenderProjectile((const CNetObj_Projectile *)pData, Item.m_Id);
}
2010-05-29 07:25:38 +00:00
else if(Item.m_Type == NETOBJTYPE_PICKUP)
{
2010-05-29 07:25:38 +00:00
const void *pPrev = Client()->SnapFindItem(IClient::SNAP_PREV, Item.m_Type, Item.m_Id);
if(pPrev)
RenderPickup((const CNetObj_Pickup *)pPrev, (const CNetObj_Pickup *)pData);
}
2010-05-29 07:25:38 +00:00
else if(Item.m_Type == NETOBJTYPE_LASER)
{
2010-05-29 07:25:38 +00:00
RenderLaser((const CNetObj_Laser *)pData);
}
2010-05-29 07:25:38 +00:00
}
// render flag
for(int i = 0; i < Num; i++)
{
IClient::CSnapItem Item;
const void *pData = Client()->SnapGetItem(IClient::SNAP_CURRENT, i, &Item);
if(Item.m_Type == NETOBJTYPE_FLAG)
{
2010-05-29 07:25:38 +00:00
const void *pPrev = Client()->SnapFindItem(IClient::SNAP_PREV, Item.m_Type, Item.m_Id);
if (pPrev)
RenderFlag((const CNetObj_Flag *)pPrev, (const CNetObj_Flag *)pData);
}
}
// render extra projectiles
/*
for(int i = 0; i < extraproj_num; i++)
{
2010-05-29 07:25:38 +00:00
if(extraproj_projectiles[i].start_tick < Client()->GameTick())
{
extraproj_projectiles[i] = extraproj_projectiles[extraproj_num-1];
extraproj_num--;
}
else
render_projectile(&extraproj_projectiles[i], 0);
}*/
}