2010-11-20 10:37:14 +00:00
|
|
|
/* (c) Magnus Auvinen. See licence.txt in the root of the distribution for more information. */
|
|
|
|
/* If you are missing that file, acquire a complete release at teeworlds.com. */
|
2010-05-29 07:25:38 +00:00
|
|
|
#ifndef GAME_CLIENT_COMPONENTS_PLAYERS_H
|
|
|
|
#define GAME_CLIENT_COMPONENTS_PLAYERS_H
|
|
|
|
#include <game/client/component.h>
|
|
|
|
|
2021-07-12 09:29:59 +00:00
|
|
|
#include <game/client/render.h>
|
|
|
|
#include <game/generated/protocol.h>
|
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
class CPlayers : public CComponent
|
2011-04-13 18:37:12 +00:00
|
|
|
{
|
2017-09-09 22:57:32 +00:00
|
|
|
friend class CGhost;
|
|
|
|
|
2020-06-25 12:56:23 +00:00
|
|
|
CTeeRenderInfo m_RenderInfoSpec;
|
2012-01-08 14:44:49 +00:00
|
|
|
CTeeRenderInfo m_aRenderInfo[MAX_CLIENTS];
|
2019-04-21 16:20:53 +00:00
|
|
|
void RenderHand(class CTeeRenderInfo *pInfo, vec2 CenterPos, vec2 Dir, float AngleOffset, vec2 PostRotOffset, float Alpha = 1.0f);
|
2010-05-29 07:25:38 +00:00
|
|
|
void RenderPlayer(
|
2010-07-05 18:57:07 +00:00
|
|
|
const CNetObj_Character *pPrevChar,
|
|
|
|
const CNetObj_Character *pPlayerChar,
|
2017-09-09 22:57:32 +00:00
|
|
|
const CTeeRenderInfo *pRenderInfo,
|
|
|
|
int ClientID,
|
2020-09-26 19:41:58 +00:00
|
|
|
float Intra = 0.f);
|
2010-05-29 07:25:38 +00:00
|
|
|
void RenderHook(
|
|
|
|
const CNetObj_Character *pPrevChar,
|
|
|
|
const CNetObj_Character *pPlayerChar,
|
2017-09-09 22:57:32 +00:00
|
|
|
const CTeeRenderInfo *pRenderInfo,
|
|
|
|
int ClientID,
|
2020-09-26 19:41:58 +00:00
|
|
|
float Intra = 0.f);
|
2013-10-09 14:02:23 +00:00
|
|
|
|
2018-03-13 20:52:44 +00:00
|
|
|
int m_WeaponEmoteQuadContainerIndex;
|
|
|
|
int m_DirectionQuadContainerIndex;
|
|
|
|
int m_WeaponSpriteMuzzleQuadContainerIndex[NUM_WEAPONS];
|
2020-09-26 19:41:58 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
public:
|
2018-03-13 20:52:44 +00:00
|
|
|
vec2 m_CurPredictedPos[MAX_CLIENTS];
|
|
|
|
virtual void OnInit();
|
2010-05-29 07:25:38 +00:00
|
|
|
virtual void OnRender();
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|