-
Notifications
You must be signed in to change notification settings - Fork 1
/
Surface.h
155 lines (132 loc) · 5.36 KB
/
Surface.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
#pragma once
#include "MiscDefinitions.h"
#include "ClientRecvProps.h"
#include "offsets.h"
#include "Vector.h"
#include "MiscClasses.h"
#include "Vector2D.h"
struct Vertex_t
{
Vector2D m_Position;
Vector2D m_TexCoord;
Vertex_t() {}
Vertex_t(const Vector2D &pos, const Vector2D &coord = Vector2D(0, 0))
{
m_Position = pos;
m_TexCoord = coord;
}
void Init(const Vector2D &pos, const Vector2D &coord = Vector2D(0, 0))
{
m_Position = pos;
m_TexCoord = coord;
}
};
typedef Vertex_t FontVertex_t;
class ISurface
{
public:
void DrawSetColor(Color col)
{
typedef void(__thiscall* oDrawSetColor)(PVOID, Color);
return call_vfunc< oDrawSetColor >(this, Offsets::VMT::Surface_DrawSetColorA)(this, col);
}
void DrawSetColor(int r, int g, int b, int a)
{
typedef void(__thiscall* OriginalFn)(PVOID, int, int, int, int);
call_vfunc< OriginalFn >(this, Offsets::VMT::Surface_DrawSetColorB)(this, r, g, b, a);
}
void DrawFilledRect(int x0, int y0, int x1, int y1)
{
typedef void(__thiscall* OriginalFn)(PVOID, int, int, int, int);
call_vfunc< OriginalFn >(this, Offsets::VMT::Surface_DrawFilledRect)(this, x0, y0, x1, y1);
}
void DrawOutlinedRect(int x0, int y0, int x1, int y1)
{
typedef void(__thiscall* OriginalFn)(PVOID, int, int, int, int);
call_vfunc< OriginalFn >(this, Offsets::VMT::Surface_DrawOutlinedRect)(this, x0, y0, x1, y1);
}
void DrawLine(int x0, int y0, int x1, int y1)
{
typedef void(__thiscall* OriginalFn)(PVOID, int, int, int, int);
call_vfunc< OriginalFn >(this, Offsets::VMT::Surface_DrawLine)(this, x0, y0, x1, y1);
}
void DrawPolyLine(int *x, int *y, int count)
{
typedef void(__thiscall* OriginalFn)(PVOID, int *, int *, int);
call_vfunc< OriginalFn >(this, Offsets::VMT::Surface_DrawLine + 1)(this, x, y, count);
}
void DrawSetTextFont(unsigned long font)
{
typedef void(__thiscall* OriginalFn)(PVOID, unsigned long);
call_vfunc< OriginalFn >(this, Offsets::VMT::Surface_DrawSetTextFont)(this, font);
}
void DrawSetTextColor(int r, int g, int b, int a)
{
typedef void(__thiscall* OriginalFn)(PVOID, int, int, int, int);
call_vfunc< OriginalFn >(this, Offsets::VMT::Surface_DrawSetTextColorB)(this, r, g, b, a);
}
void DrawSetTextColor(Color col)
{
typedef void(__thiscall* oDrawSetTextColor)(PVOID, Color);
return call_vfunc< oDrawSetTextColor >(this, Offsets::VMT::Surface_DrawSetTextColorA)(this, col);
}
void DrawSetTextPos(int x, int y)
{
typedef void(__thiscall* OriginalFn)(PVOID, int, int);
call_vfunc< OriginalFn >(this, Offsets::VMT::Surface_DrawSetTextPos)(this, x, y);
}
void DrawPrintText(const wchar_t* text, int textLen)
{
typedef void(__thiscall* OriginalFn)(PVOID, const wchar_t*, int, int);
call_vfunc< OriginalFn >(this, Offsets::VMT::Surface_DrawPrintText)(this, text, textLen, 0);
}
void DrawSetTexture(int textureID)
{
typedef void(__thiscall* oDrawSetTextColor)(PVOID, int);
return call_vfunc< oDrawSetTextColor >(this, Offsets::VMT::Surface_DrawSetTexture)(this, textureID);
}
inline void DrawTexturedRect(int x, int y, int w, int h) {
typedef void(__thiscall *OrigFn)(void *, int, int, int, int);
call_vfunc<OrigFn>(this, 41)(this, x, y, w, h);
}
void DrawSetTextureRGBA(int textureID, unsigned char const* colors, int w, int h)
{
typedef void(__thiscall* oDrawSetTextColor)(PVOID, int, unsigned char const*, int, int);
return call_vfunc< oDrawSetTextColor >(this, Offsets::VMT::Surface_DrawSetTextureRGBA)(this, textureID, colors, w, h);
}
int CreateNewTextureID(bool procedural)
{
typedef int(__thiscall* oDrawSetTextColor)(PVOID, bool);
return call_vfunc< oDrawSetTextColor >(this, Offsets::VMT::Surface_CreateNewTextureID)(this, procedural);
}
void DrawTexturedPolygon(int vtxCount, FontVertex_t *vtx, bool bClipVertices = true)
{
typedef void(__thiscall* oDrawSetTextColor)(PVOID, int, FontVertex_t*, bool);
return call_vfunc< oDrawSetTextColor >(this, Offsets::VMT::Surface_DrawTexturedPolygon)(this, vtxCount, vtx, bClipVertices);
}
unsigned long FontCreate()
{
typedef unsigned int(__thiscall* OriginalFn)(PVOID);
return call_vfunc< OriginalFn >(this, Offsets::VMT::Surface_FontCreate)(this);
}
void SetFontGlyphSet(unsigned long font, const char* windowsFontName, int tall, int weight, int blur, int scanlines, int flags)
{
typedef void(__thiscall* OriginalFn)(PVOID, unsigned long, const char*, int, int, int, int, int, int, int);
call_vfunc< OriginalFn >(this, Offsets::VMT::Surface_SetFontGlyphSet)(this, font, windowsFontName, tall, weight, blur, scanlines, flags, 0, 0);
}
void GetTextSize(unsigned long font, const wchar_t* text, int& wide, int& tall)
{
typedef void(__thiscall* OriginalFn)(PVOID, unsigned long, const wchar_t*, int&, int&);
call_vfunc< OriginalFn >(this, Offsets::VMT::Surface_GetTextSize)(this, font, text, wide, tall);
}
void DrawOutlinedCircle(int x, int y, int r, int seg)
{
typedef void(__thiscall* oDrawOutlinedCircle)(PVOID, int, int, int, int);
return call_vfunc< oDrawOutlinedCircle >(this, Offsets::VMT::Surface_DrawOutlinedCircle)(this, x, y, r, seg);
}
void SurfaceGetCursorPos(int &x, int &y)
{
typedef void(__thiscall* oSurfaceGetCursorPos)(PVOID, int&, int&);
return call_vfunc< oSurfaceGetCursorPos >(this, Offsets::VMT::Surface_SurfaceGetCursorPos)(this, x, y);
}
};