1
0
Fork 0
mirror of https://git.rip/DMCA_FUCKER/re3.git synced 2024-06-29 08:57:06 +00:00
re3/src/render/Sprite2d.h

55 lines
2.7 KiB
C
Raw Normal View History

2019-05-21 07:38:51 +00:00
#pragma once
class CSprite2d
{
2020-04-16 12:30:47 +00:00
static float RecipNearClip;
2020-06-07 01:11:10 +00:00
static float NearScreenZ;
2020-08-13 16:47:39 +00:00
static float NearCamZ; // not original
2020-06-07 01:11:10 +00:00
static int nextBufferVertex;
static int nextBufferIndex;
static RwIm2DVertex maVertices[8];
2019-05-22 18:28:53 +00:00
public:
RwTexture *m_pTexture;
2019-05-21 07:38:51 +00:00
static void SetRecipNearClip(void);
static void InitPerFrame(void);
CSprite2d(void) : m_pTexture(nil) {};
~CSprite2d(void) { Delete(); };
void Delete(void);
void SetRenderState(void);
2019-06-01 21:17:39 +00:00
void SetTexture(const char *name);
void SetTexture(const char *name, const char *mask);
2019-05-21 07:38:51 +00:00
void SetAddressing(RwTextureAddressMode addr);
void Draw(float x, float y, float w, float h, const CRGBA &col);
void Draw(const CRect &rect, const CRGBA &col);
void Draw(const CRect &rect, const CRGBA &col,
float u0, float v0, float u1, float v1, float u3, float v3, float u2, float v2);
void Draw(const CRect &rect, const CRGBA &c0, const CRGBA &c1, const CRGBA &c2, const CRGBA &c3);
void Draw(float x1, float y1, float x2, float y2, float x3, float y3, float x4, float y4, const CRGBA &col);
2020-08-13 16:47:39 +00:00
static void SetVertices(const CRect &r, const CRGBA &c0, const CRGBA &c1, const CRGBA &c2, const CRGBA &c3);
2019-05-21 07:38:51 +00:00
static void SetVertices(const CRect &r, const CRGBA &c0, const CRGBA &c1, const CRGBA &c2, const CRGBA &c3,
float u0, float v0, float u1, float v1, float u3, float v3, float u2, float v2);
static void SetVertices(float x1, float y1, float x2, float y2, float x3, float y3, float x4, float y4,
const CRGBA &c0, const CRGBA &c1, const CRGBA &c2, const CRGBA &c3);
static void SetVertices(int n, float *positions, float *uvs, const CRGBA &col);
static void SetMaskVertices(int n, float *positions);
static void SetVertices(RwIm2DVertex *verts, const CRect &r, const CRGBA &c0, const CRGBA &c1, const CRGBA &c2, const CRGBA &c3,
float u0, float v0, float u1, float v1, float u3, float v3, float u2, float v2);
static void DrawRect(const CRect &r, const CRGBA &c0, const CRGBA &c1, const CRGBA &c2, const CRGBA &c3);
static void DrawRect(const CRect &r, const CRGBA &col);
static void DrawRectXLU(const CRect &r, const CRGBA &c0, const CRGBA &c1, const CRGBA &c2, const CRGBA &c3);
static void DrawAnyRect(float x1, float y1, float x2, float y2, float x3, float y3, float x4, float y4,
const CRGBA &c0, const CRGBA &c1, const CRGBA &c2, const CRGBA &c3);
2019-06-20 19:34:39 +00:00
2019-10-05 14:32:01 +00:00
static void Draw2DPolygon(float x1, float y1, float x2, float y2, float x3, float y3, float x4, float y4, const CRGBA &color);
2019-06-20 19:34:39 +00:00
static RwIm2DVertex* GetVertices() { return maVertices; };
2020-06-07 01:11:10 +00:00
static bool IsVertexBufferFull();
static void AddToBuffer(const CRect &a1, const CRGBA &a2, float a3, float a4, float a5, float a6, float a7, float a8, float a9, float a10);
static void RenderVertexBuffer();
2019-05-21 07:38:51 +00:00
};