ddnet/src/game/client/render.h

113 lines
4.6 KiB
C
Raw Normal View History

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_RENDER_H
#define GAME_CLIENT_RENDER_H
#include "ui.h"
2019-04-26 12:06:32 +00:00
#include <base/color.h>
#include <base/vmath.h>
#include <engine/graphics.h>
2010-05-29 07:25:38 +00:00
#include <game/mapitems.h>
class CTeeRenderInfo
2010-05-29 07:25:38 +00:00
{
public:
2010-05-29 07:25:38 +00:00
CTeeRenderInfo()
{
m_ColorBody = ColorRGBA(1, 1, 1);
m_ColorFeet = ColorRGBA(1, 1, 1);
2010-05-29 07:25:38 +00:00
m_Size = 1.0f;
m_GotAirJump = 1;
};
IGraphics::CTextureHandle m_Texture;
2019-04-26 12:06:32 +00:00
ColorRGBA m_ColorBody;
ColorRGBA m_ColorFeet;
2010-05-29 07:25:38 +00:00
float m_Size;
int m_GotAirJump;
};
// sprite renderings
enum
{
SPRITE_FLAG_FLIP_Y = 1,
SPRITE_FLAG_FLIP_X = 2,
LAYERRENDERFLAG_OPAQUE = 1,
LAYERRENDERFLAG_TRANSPARENT = 2,
TILERENDERFLAG_EXTEND = 4,
2010-05-29 07:25:38 +00:00
};
typedef void (*ENVELOPE_EVAL)(float TimeOffset, int Env, float *pChannels, void *pUser);
2010-05-29 07:25:38 +00:00
class CRenderTools
{
int m_TeeQuadContainerIndex;
2010-05-29 07:25:38 +00:00
public:
class IGraphics *m_pGraphics;
class CUI *m_pUI;
2010-05-29 07:25:38 +00:00
class IGraphics *Graphics() const { return m_pGraphics; }
class CUI *UI() const { return m_pUI; }
void Init(class IGraphics *pGraphics, class CUI *pUI);
2010-05-29 07:25:38 +00:00
//typedef struct SPRITE;
void SelectSprite(struct CDataSprite *pSprite, int Flags = 0, int sx = 0, int sy = 0);
void SelectSprite(int id, int Flags = 0, int sx = 0, int sy = 0);
2010-05-29 07:25:38 +00:00
void DrawSprite(float x, float y, float size);
void QuadContainerAddSprite(int QuadContainerIndex, float x, float y, float size, bool DoSpriteScale = true);
void QuadContainerAddSprite(int QuadContainerIndex, float size, bool DoSpriteScale = true);
void QuadContainerAddSprite(int QuadContainerIndex, float X, float Y, float Width, float Height);
2010-05-29 07:25:38 +00:00
// rects
void DrawRoundRect(float x, float y, float w, float h, float r);
void DrawRoundRectExt(float x, float y, float w, float h, float r, int Corners);
void DrawRoundRectExt4(float x, float y, float w, float h, vec4 ColorTopLeft, vec4 ColorTopRight, vec4 ColorBottomLeft, vec4 ColorBottomRight, float r, int Corners);
int CreateRoundRectQuadContainer(float x, float y, float w, float h, float r, int Corners);
2019-04-26 12:06:32 +00:00
void DrawUIRect(const CUIRect *pRect, ColorRGBA Color, int Corners, float Rounding);
void DrawUIRect4(const CUIRect *pRect, vec4 ColorTopLeft, vec4 ColorTopRight, vec4 ColorBottomLeft, vec4 ColorBottomRight, int Corners, float Rounding);
2010-05-29 07:25:38 +00:00
void DrawCircle(float x, float y, float r, int Segments);
2010-05-29 07:25:38 +00:00
// larger rendering methods
2013-12-20 11:27:10 +00:00
void RenderTilemapGenerateSkip(class CLayers *pLayers);
2010-05-29 07:25:38 +00:00
// object render methods (gc_render_obj.cpp)
2019-04-21 16:20:53 +00:00
void RenderTee(class CAnimState *pAnim, CTeeRenderInfo *pInfo, int Emote, vec2 Dir, vec2 Pos, float Alpha = 1.0f);
2010-05-29 07:25:38 +00:00
// map render methods (gc_render_map.cpp)
static void RenderEvalEnvelope(CEnvPoint *pPoints, int NumPoints, int Channels, float Time, float *pResult);
void RenderQuads(CQuad *pQuads, int NumQuads, int Flags, ENVELOPE_EVAL pfnEval, void *pUser);
void ForceRenderQuads(CQuad *pQuads, int NumQuads, int Flags, ENVELOPE_EVAL pfnEval, void *pUser, float Alpha = 1.0f);
2019-04-26 22:11:15 +00:00
void RenderTilemap(CTile *pTiles, int w, int h, float Scale, ColorRGBA Color, int RenderFlags, ENVELOPE_EVAL pfnEval, void *pUser, int ColorEnv, int ColorEnvOffset);
// render a rectangle made of IndexIn tiles, over a background made of IndexOut tiles
// the rectangle include all tiles in [RectX, RectX+RectW-1] x [RectY, RectY+RectH-1]
2019-04-26 22:11:15 +00:00
void RenderTileRectangle(int RectX, int RectY, int RectW, int RectH, unsigned char IndexIn, unsigned char IndexOut, float Scale, ColorRGBA Color, int RenderFlags, ENVELOPE_EVAL pfnEval, void *pUser, int ColorEnv, int ColorEnvOffset);
2010-05-29 07:25:38 +00:00
// helpers
void CalcScreenParams(float Aspect, float Zoom, float *w, float *h);
2010-05-29 07:25:38 +00:00
void MapscreenToWorld(float CenterX, float CenterY, float ParallaxX, float ParallaxY,
float OffsetX, float OffsetY, float Aspect, float Zoom, float *pPoints);
// DDRace
void RenderTeleOverlay(CTeleTile *pTele, int w, int h, float Scale, float Alpha = 1.0f);
void RenderSpeedupOverlay(CSpeedupTile *pTele, int w, int h, float Scale, float Alpha = 1.0f);
void RenderSwitchOverlay(CSwitchTile *pSwitch, int w, int h, float Scale, float Alpha = 1.0f);
void RenderTuneOverlay(CTuneTile *pTune, int w, int h, float Scale, float Alpha = 1.0f);
2019-04-26 22:11:15 +00:00
void RenderTelemap(CTeleTile *pTele, int w, int h, float Scale, ColorRGBA Color, int RenderFlags);
void RenderSpeedupmap(CSpeedupTile *pTele, int w, int h, float Scale, ColorRGBA Color, int RenderFlags);
void RenderSwitchmap(CSwitchTile *pSwitch, int w, int h, float Scale, ColorRGBA Color, int RenderFlags);
void RenderTunemap(CTuneTile *pTune, int w, int h, float Scale, ColorRGBA Color, int RenderFlags);
2010-05-29 07:25:38 +00:00
};
#endif