TombEngine/TR5Main/Game/draw.cpp

678 lines
16 KiB
C++
Raw Normal View History

2018-08-19 09:46:58 +02:00
#include "draw.h"
2019-11-21 07:43:34 +01:00
#include "Lara.h"
2019-01-13 21:57:16 +01:00
#include "..\Renderer\Renderer11.h"
#include "camera.h"
2018-08-19 09:46:58 +02:00
BITE_INFO EnemyBites[9] =
{
{ 0x14, 0xFFFFFFA1, 0xF0, 0xD },
{ 0x30, 0, 0xB4, 0xFFFFFFF5 },
{ 0xFFFFFFD0, 0, 0xB4, 0xE },
{ 0xFFFFFFC9, 5, 0xE1, 0xE },
{ 0xF, 0xFFFFFFC4, 0xC3, 0xD },
{ 0xFFFFFFE2, 0xFFFFFFBF, 0xFA, 0x12 },
{ 0, 0xFFFFFF92, 0x1E0, 0xD },
{ 0xFFFFFFEC, 0xFFFFFFB0, 0xBE, 0xFFFFFFF6 },
{ 0xA, 0xFFFFFFC4, 0xC8, 0xD }
};
2019-01-13 21:57:16 +01:00
Renderer11* g_Renderer;
2018-08-19 09:46:58 +02:00
int LightningCount;
int LightningRand;
int StormTimer;
int dLightningRand;
byte SkyStormColor[3];
byte SkyStormColor2[3];
short InterpolatedBounds[6];
LARGE_INTEGER PerformanceCount;
double LdFreq;
double LdSync;
int DrawPhaseGame()
2018-08-19 09:46:58 +02:00
{
// Control routines uses joints calculated here for getting Lara joint positions
CalcLaraMatrices(0);
phd_PushUnitMatrix();
CalcLaraMatrices(1);
// Calls my new rock & roll renderer :)
g_Renderer->Draw();
Camera.numberFrames = g_Renderer->SyncRenderer();
2018-08-19 09:46:58 +02:00
// We need to pop the matrix stack or the game will crash
phd_PopMatrix();
2018-08-19 09:46:58 +02:00
return Camera.numberFrames;
2018-08-19 09:46:58 +02:00
}
void UpdateStorm()
{
if (LightningCount <= 0)
{
if (LightningRand < 4)
LightningRand = 0;
else
LightningRand = LightningRand - (LightningRand >> 2);
}
else if (--LightningCount)
{
dLightningRand = rand() & 0x1FF;
LightningRand = ((dLightningRand - LightningRand) >> 1) + LightningRand;
}
else
{
dLightningRand = 0;
LightningRand = (rand() & 0x7F) + 400;
}
for (int i = 0; i < 3; i++)
{
SkyStormColor2[i] += LightningRand * SkyStormColor2[i] >> 8;
SkyStormColor[i] = SkyStormColor2[i];
if (SkyStormColor[i] > 255)
SkyStormColor[i] = 255;
}
}
short* GetBoundsAccurate(ITEM_INFO* item)
{
int rate = 0;
short* framePtr[2];
int frac = GetFrame_D2(item, framePtr, &rate);
if (frac == 0)
return framePtr[0];
else
{
for (int i = 0; i < 6; i++)
{
InterpolatedBounds[i] = *(framePtr[0]) + ((*(framePtr[1]) - *(framePtr[0])) * frac) / rate;
framePtr[0]++;
framePtr[1]++;
}
return InterpolatedBounds;
}
}
short* GetBestFrame(ITEM_INFO* item)
{
int rate = 0;
short* framePtr[2];
int frac = GetFrame_D2(item, framePtr, &rate);
if (frac <= (rate >> 1))
return framePtr[0];
else
return framePtr[1];
}
int GetFrame_D2(ITEM_INFO* item, short* framePtr[], int* rate)
2018-09-12 20:37:37 +02:00
{
ANIM_STRUCT *anim;
int frm;
int first, second;
int frame_size;
int interp, rat;
2018-09-12 20:37:37 +02:00
frm = item->frameNumber;
anim = &Anims[item->animNumber];
framePtr[0] = framePtr[1] = anim->framePtr;
rat = *rate = anim->interpolation & 0x00ff;
frame_size = anim->interpolation >> 8;
frm -= anim->frameBase;
first = frm / rat;
interp = frm % rat;
framePtr[0] += first * frame_size; // Get Frame pointers
framePtr[1] = framePtr[0] + frame_size; // and store away
if (interp == 0)
return(0);
second = first * rat + rat;
if (second>anim->frameEnd) // Clamp KeyFrame to End if need be
*rate = anim->frameEnd - (second - rat);
return(interp);
}
bool TIME_Reset()
{
LARGE_INTEGER fq;
QueryPerformanceCounter(&fq);
LdSync = (double)fq.LowPart + (double)fq.HighPart * (double)0xffffffff;
LdSync /= LdFreq;
return true;
}
bool TIME_Init()
{
LARGE_INTEGER fq;
if (!QueryPerformanceFrequency(&fq))
return false;
LdFreq = (double)fq.LowPart + (double)fq.HighPart * (double)0xFFFFFFFF;
LdFreq /= 60.0;
TIME_Reset();
return true;
}
int Sync()
{
LARGE_INTEGER ct;
double dCounter;
QueryPerformanceCounter(&ct);
dCounter = (double)ct.LowPart + (double)ct.HighPart * (double)0xFFFFFFFF;
dCounter /= LdFreq;
nFrames = long(dCounter) - long(LdSync);
LdSync = dCounter;
return nFrames;
}
void DrawAnimatingItem(ITEM_INFO* item)
{
// TODO: to refactor
2020-04-14 13:39:54 +02:00
// Empty stub because actually we disable items drawing when drawRoutine pointer is NULL in OBJECT_INFO
}
2020-04-14 13:39:54 +02:00
#define DxIMStack ARRAY_(0x00E6D860, int, [768])
#define DxIMptr VAR_U_(0x00E6D834, int*)
#define IMStack ARRAY_(0x00E6CB00, int, [768])
#define IMptr VAR_U_(0x00E6E468, int*)
#define IM_Rate VAR_U_(0x00E6E464, int)
#define IM_Frac VAR_U_(0x00E6D734, int)
void InitInterpolate(int frac, int rate)
{
IM_Rate = rate;
IM_Frac = frac;
IMptr = IMStack;
DxIMptr = DxIMStack;
memcpy(IMStack, MatrixPtr, 48);
memcpy(DxIMStack, DxMatrixPtr, 48);
}
2020-04-14 17:47:49 +02:00
void phd_PushMatrix()
2020-04-14 13:39:54 +02:00
{
memcpy((MatrixPtr + 12), MatrixPtr, 48);
MatrixPtr += 12;
2020-04-14 16:36:37 +02:00
DxMatrixPtr += 12;
2020-04-14 13:39:54 +02:00
}
2020-04-14 17:47:49 +02:00
void phd_PopMatrix()
2018-08-19 09:46:58 +02:00
{
2020-04-14 13:39:54 +02:00
MatrixPtr -= 12;
2020-04-14 16:36:37 +02:00
DxMatrixPtr -= 12;
2020-04-14 13:39:54 +02:00
}
2020-04-14 17:47:49 +02:00
void phd_PopMatrix_I()
2020-04-14 13:39:54 +02:00
{
MatrixPtr -= 12;
2020-04-14 16:36:37 +02:00
DxMatrixPtr -= 12;
2020-04-14 13:39:54 +02:00
IMptr -= 12;
DxIMptr -= 12;
}
2020-04-14 17:47:49 +02:00
void phd_PushMatrix_I()
{
2020-04-14 17:47:49 +02:00
phd_PushMatrix();
2020-04-14 13:39:54 +02:00
2020-04-14 17:47:49 +02:00
memcpy((IMptr + 48), IMptr, 48);
memcpy((DxIMptr + 48), DxIMptr, 48);
2020-04-14 17:47:49 +02:00
IMptr += 12;
DxIMptr += 12;
}
2020-04-14 17:47:49 +02:00
void phd_PushUnitMatrix()
{
2020-04-14 17:47:49 +02:00
MatrixPtr += 12;
DxMatrixPtr += 12;
2020-04-14 13:39:54 +02:00
2020-04-14 17:47:49 +02:00
int* mptr = MatrixPtr;
ZeroMemory(mptr, 48);
*(mptr + M00) = 0x4000;
*(mptr + M11) = 0x4000;
*(mptr + M22) = 0x4000;
}
2020-04-14 16:36:37 +02:00
void phd_RotYXZ(short ry, short rx, short rz)
{
2020-04-14 16:36:37 +02:00
int sina, cosa, r0, r1;
int* mptr = MatrixPtr;
if (ry)
{
sina = SIN(ry);
cosa = COS(ry);
r0 = *(mptr + M00) * cosa - *(mptr + M02) * sina;
r1 = *(mptr + M02) * cosa + *(mptr + M00) * sina;
*(mptr + M00) = r0 >> W2V_SHIFT;
*(mptr + M02) = r1 >> W2V_SHIFT;
r0 = *(mptr + M10) * cosa - *(mptr + M12) * sina;
r1 = *(mptr + M12) * cosa + *(mptr + M10) * sina;
*(mptr + M10) = r0 >> W2V_SHIFT;
*(mptr + M12) = r1 >> W2V_SHIFT;
r0 = *(mptr + M20) * cosa - *(mptr + M22) * sina;
r1 = *(mptr + M22) * cosa + *(mptr + M20) * sina;
*(mptr + M20) = r0 >> W2V_SHIFT;
*(mptr + M22) = r1 >> W2V_SHIFT;
}
if (rx)
{
sina = SIN(rx);
cosa = COS(rx);
r0 = *(mptr + M01) * cosa + *(mptr + M02) * sina;
r1 = *(mptr + M02) * cosa - *(mptr + M01) * sina;
*(mptr + M01) = r0 >> W2V_SHIFT;
*(mptr + M02) = r1 >> W2V_SHIFT;
r0 = *(mptr + M11) * cosa + *(mptr + M12) * sina;
r1 = *(mptr + M12) * cosa - *(mptr + M11) * sina;
*(mptr + M11) = r0 >> W2V_SHIFT;
*(mptr + M12) = r1 >> W2V_SHIFT;
r0 = *(mptr + M21) * cosa + *(mptr + M22) * sina;
r1 = *(mptr + M22) * cosa - *(mptr + M21) * sina;
*(mptr + M21) = r0 >> W2V_SHIFT;
*(mptr + M22) = r1 >> W2V_SHIFT;
}
if (rz)
{
sina = SIN(rz);
cosa = COS(rz);
r0 = *(mptr + M00) * cosa + *(mptr + M01) * sina;
r1 = *(mptr + M01) * cosa - *(mptr + M00) * sina;
*(mptr + M00) = r0 >> W2V_SHIFT;
*(mptr + M01) = r1 >> W2V_SHIFT;
r0 = *(mptr + M10) * cosa + *(mptr + M11) * sina;
r1 = *(mptr + M11) * cosa - *(mptr + M10) * sina;
*(mptr + M10) = r0 >> W2V_SHIFT;
*(mptr + M11) = r1 >> W2V_SHIFT;
r0 = *(mptr + M20) * cosa + *(mptr + M21) * sina;
r1 = *(mptr + M21) * cosa - *(mptr + M20) * sina;
*(mptr + M20) = r0 >> W2V_SHIFT;
*(mptr + M21) = r1 >> W2V_SHIFT;
}
}
2020-04-14 16:36:37 +02:00
void phd_RotY(short ry)
{
2020-04-14 16:36:37 +02:00
int sina, cosa, r0, r1;
int* mptr = MatrixPtr;
if (ry)
{
sina = SIN(ry);
cosa = COS(ry);
r0 = *(mptr + M00) * cosa - *(mptr + M02) * sina;
r1 = *(mptr + M02) * cosa + *(mptr + M00) * sina;
*(mptr + M00) = r0 >> W2V_SHIFT;
*(mptr + M02) = r1 >> W2V_SHIFT;
r0 = *(mptr + M10) * cosa - *(mptr + M12) * sina;
r1 = *(mptr + M12) * cosa + *(mptr + M10) * sina;
*(mptr + M10) = r0 >> W2V_SHIFT;
*(mptr + M12) = r1 >> W2V_SHIFT;
r0 = *(mptr + M20) * cosa - *(mptr + M22) * sina;
r1 = *(mptr + M22) * cosa + *(mptr + M20) * sina;
*(mptr + M20) = r0 >> W2V_SHIFT;
*(mptr + M22) = r1 >> W2V_SHIFT;
}
}
2020-04-14 16:36:37 +02:00
void phd_RotY_I(short ry)
{
2020-04-14 16:36:37 +02:00
phd_RotY(ry);
int* mptr = MatrixPtr;
int* dxptr = DxMatrixPtr;
MatrixPtr = IMptr;
DxMatrixPtr = DxIMptr;
phd_RotY(ry);
MatrixPtr = mptr;
DxMatrixPtr = dxptr;
}
2020-04-14 16:36:37 +02:00
void phd_RotX(short rx)
{
2020-04-14 16:36:37 +02:00
int sina, cosa, r0, r1;
int* mptr = MatrixPtr;
if (rx)
{
sina = SIN(rx);
cosa = COS(rx);
r0 = *(mptr + M01) * cosa + *(mptr + M02) * sina;
r1 = *(mptr + M02) * cosa - *(mptr + M01) * sina;
*(mptr + M01) = r0 >> W2V_SHIFT;
*(mptr + M02) = r1 >> W2V_SHIFT;
r0 = *(mptr + M11) * cosa + *(mptr + M12) * sina;
r1 = *(mptr + M12) * cosa - *(mptr + M11) * sina;
*(mptr + M11) = r0 >> W2V_SHIFT;
*(mptr + M12) = r1 >> W2V_SHIFT;
r0 = *(mptr + M21) * cosa + *(mptr + M22) * sina;
r1 = *(mptr + M22) * cosa - *(mptr + M21) * sina;
*(mptr + M21) = r0 >> W2V_SHIFT;
*(mptr + M22) = r1 >> W2V_SHIFT;
}
}
2020-04-14 16:36:37 +02:00
void phd_RotX_I(short rx)
{
2020-04-14 16:36:37 +02:00
phd_RotX(rx);
int* mptr = MatrixPtr;
int* dxptr = DxMatrixPtr;
MatrixPtr = IMptr;
DxMatrixPtr = DxIMptr;
phd_RotX(rx);
MatrixPtr = mptr;
DxMatrixPtr = dxptr;
}
2020-04-14 16:36:37 +02:00
void phd_RotZ(short rz)
{
2020-04-14 16:36:37 +02:00
int sina, cosa, r0, r1;
int* mptr = MatrixPtr;
if (rz)
{
sina = SIN(rz);
cosa = COS(rz);
r0 = *(mptr + M00) * cosa + *(mptr + M01) * sina;
r1 = *(mptr + M01) * cosa - *(mptr + M00) * sina;
*(mptr + M00) = r0 >> W2V_SHIFT;
*(mptr + M01) = r1 >> W2V_SHIFT;
r0 = *(mptr + M10) * cosa + *(mptr + M11) * sina;
r1 = *(mptr + M11) * cosa - *(mptr + M10) * sina;
*(mptr + M10) = r0 >> W2V_SHIFT;
*(mptr + M11) = r1 >> W2V_SHIFT;
r0 = *(mptr + M20) * cosa + *(mptr + M21) * sina;
r1 = *(mptr + M21) * cosa - *(mptr + M20) * sina;
*(mptr + M20) = r0 >> W2V_SHIFT;
*(mptr + M21) = r1 >> W2V_SHIFT;
}
}
2020-04-14 16:36:37 +02:00
void phd_RotZ_I(short rz)
{
2020-04-14 16:36:37 +02:00
phd_RotZ(rz);
int* mptr = MatrixPtr;
int* dxptr = DxMatrixPtr;
MatrixPtr = IMptr;
DxMatrixPtr = DxIMptr;
phd_RotZ(rz);
MatrixPtr = mptr;
DxMatrixPtr = dxptr;
}
2020-04-14 16:52:01 +02:00
void phd_TranslateRel(int x, int y, int z)
{
2020-04-14 16:52:01 +02:00
int* mptr = MatrixPtr;
2020-04-14 16:52:01 +02:00
*(mptr + M03) += *(mptr + M00) * x + *(mptr + M01) * y + *(mptr + M02) * z;
*(mptr + M13) += *(mptr + M10) * x + *(mptr + M11) * y + *(mptr + M12) * z;
*(mptr + M23) += *(mptr + M20) * x + *(mptr + M21) * y + *(mptr + M22) * z;
}
2020-04-14 16:52:01 +02:00
void phd_TranslateRel_I(int x, int y, int z)
{
2020-04-14 16:52:01 +02:00
phd_TranslateRel(x, y, z);
2020-04-14 16:52:01 +02:00
int* mptr = MatrixPtr;
int* dxptr = DxMatrixPtr;
MatrixPtr = IMptr;
DxMatrixPtr = DxIMptr;
phd_TranslateRel(x, y, z);
MatrixPtr = mptr;
DxMatrixPtr = dxptr;
}
2020-04-14 16:52:01 +02:00
void phd_TranslateRel_ID(int x1, int y1, int z1, int x2, int y2, int z2)
{
2020-04-14 16:52:01 +02:00
phd_TranslateRel(x1, y1, z1);
int* mptr = MatrixPtr;
int* dxptr = DxMatrixPtr;
MatrixPtr = IMptr;
DxMatrixPtr = DxIMptr;
phd_TranslateRel(x2, y2, z2);
MatrixPtr = mptr;
DxMatrixPtr = dxptr;
}
2020-04-14 16:52:01 +02:00
void phd_TranslateAbs(int x, int y, int z)
{
2020-04-14 16:52:01 +02:00
int* mptr = MatrixPtr;
x -= *(W2VMatrix + M03);
y -= *(W2VMatrix + M13);
z -= *(W2VMatrix + M23);
*(mptr + M03) = *(mptr + M00) * x + *(mptr + M01) * y + *(mptr + M02) * z;
*(mptr + M13) = *(mptr + M10) * x + *(mptr + M11) * y + *(mptr + M12) * z;
*(mptr + M23) = *(mptr + M20) * x + *(mptr + M21) * y + *(mptr + M22) * z;
}
2020-04-14 17:47:49 +02:00
void phd_SetTrans(int x, int y, int z)
{
int* mptr = MatrixPtr;
*(mptr + M03) = x;
*(mptr + M13) = y;
*(mptr + M23) = z;
}
void phd_GetVectorAngles(int x, int y, int z, short* angles)
{
*(angles + 0) = ATAN(z, x);
while ((short)x != x || (short)y != y || (short)z != z)
{
x >>= 2;
y >>= 2;
z >>= 2;
}
short pitch = ATAN(SQRT_ASM(SQUARE(x) + SQUARE(z)), y);
if ((y > 0 && pitch > 0) || (y < 0 && pitch < 0))
pitch = -pitch;
*(angles + 1) = pitch;
}
void phd_RotYXZpack(int rots)
{
2020-04-14 17:47:49 +02:00
int sina, cosa, r0, r1;
int* mptr = MatrixPtr;
int ang = (((rots >> 10) & 1023) << 6);
if (ang)
{
sina = SIN(ang);
cosa = COS(ang);
r0 = *(mptr + M00) * cosa - *(mptr + M02) * sina;
r1 = *(mptr + M02) * cosa + *(mptr + M00) * sina;
*(mptr + M00) = r0 >> W2V_SHIFT;
*(mptr + M02) = r1 >> W2V_SHIFT;
r0 = *(mptr + M10) * cosa - *(mptr + M12) * sina;
r1 = *(mptr + M12) * cosa + *(mptr + M10) * sina;
*(mptr + M10) = r0 >> W2V_SHIFT;
*(mptr + M12) = r1 >> W2V_SHIFT;
r0 = *(mptr + M20) * cosa - *(mptr + M22) * sina;
r1 = *(mptr + M22) * cosa + *(mptr + M20) * sina;
*(mptr + M20) = r0 >> W2V_SHIFT;
*(mptr + M22) = r1 >> W2V_SHIFT;
}
ang = (((rots >> 20) & 1023) << 6);
if (ang)
{
sina = SIN(ang);
cosa = COS(ang);
r0 = *(mptr + M01) * cosa + *(mptr + M02) * sina;
r1 = *(mptr + M02) * cosa - *(mptr + M01) * sina;
*(mptr + M01) = r0 >> W2V_SHIFT;
*(mptr + M02) = r1 >> W2V_SHIFT;
r0 = *(mptr + M11) * cosa + *(mptr + M12) * sina;
r1 = *(mptr + M12) * cosa - *(mptr + M11) * sina;
*(mptr + M11) = r0 >> W2V_SHIFT;
*(mptr + M12) = r1 >> W2V_SHIFT;
r0 = *(mptr + M21) * cosa + *(mptr + M22) * sina;
r1 = *(mptr + M22) * cosa - *(mptr + M21) * sina;
*(mptr + M21) = r0 >> W2V_SHIFT;
*(mptr + M22) = r1 >> W2V_SHIFT;
}
ang = ((rots & 1023) << 6);
if (ang)
{
sina = SIN(ang);
cosa = COS(ang);
r0 = *(mptr + M00) * cosa + *(mptr + M01) * sina;
r1 = *(mptr + M01) * cosa - *(mptr + M00) * sina;
*(mptr + M00) = r0 >> W2V_SHIFT;
*(mptr + M01) = r1 >> W2V_SHIFT;
r0 = *(mptr + M10) * cosa + *(mptr + M11) * sina;
r1 = *(mptr + M11) * cosa - *(mptr + M10) * sina;
*(mptr + M10) = r0 >> W2V_SHIFT;
*(mptr + M11) = r1 >> W2V_SHIFT;
r0 = *(mptr + M20) * cosa + *(mptr + M21) * sina;
r1 = *(mptr + M21) * cosa - *(mptr + M20) * sina;
*(mptr + M20) = r0 >> W2V_SHIFT;
*(mptr + M21) = r1 >> W2V_SHIFT;
}
}
void gar_RotYXZsuperpack(short** pprot, int skip)
{
unsigned short* prot;
int packed;
while (skip)
{
prot = reinterpret_cast<unsigned short*>(*pprot);
if (*prot & (3 << 14))
(*pprot) += 1;
else
(*pprot) += 2;
skip--;
}
prot = reinterpret_cast<unsigned short*>(*pprot);
switch (*prot >> 14)
{
case 0:
packed = (*prot << 16) + *(prot + 1);
phd_RotYXZpack(packed);
(*pprot) += 2;
return;
case 1:
phd_RotX((short)((*prot & 1023) << 4));
break;
case 2:
phd_RotY((short)((*prot & 1023) << 4));
break;
default:
phd_RotZ((short)((*prot & 1023) << 4));
break;
}
(*pprot) += 1;
}
void gar_RotYXZsuperpack_I(short** framePtr1, short** framePtr2, int skip)
{
gar_RotYXZsuperpack(framePtr1, skip);
int* mptr = MatrixPtr;
int* dxptr = DxMatrixPtr;
MatrixPtr = IMptr;
DxMatrixPtr = DxIMptr;
gar_RotYXZsuperpack(framePtr2, skip);
MatrixPtr = mptr;
DxMatrixPtr = dxptr;
}
void _phd_ClipBoundingBox(short* frames)
{
}
void phd_RotBoundingBoxNoPersp(PHD_3DPOS* pos, short* bounds, short* tbounds)
{
Matrix world = Matrix::CreateFromYawPitchRoll(
TR_ANGLE_TO_RAD(pos->yRot),
TR_ANGLE_TO_RAD(pos->xRot),
TR_ANGLE_TO_RAD(pos->zRot)
);
Vector3 bMin = Vector3(bounds[0], bounds[2], bounds[4]);
Vector3 bMax = Vector3(bounds[1], bounds[3], bounds[5]);
bMin = Vector3::Transform(bMin, world);
bMax = Vector3::Transform(bMax, world);
tbounds[0] = bMin.x;
tbounds[2] = bMin.y;
tbounds[4] = bMin.z;
tbounds[1] = bMax.x;
tbounds[3] = bMax.y;
tbounds[5] = bMax.z;
}
2018-08-19 09:46:58 +02:00
void Inject_Draw()
{
2020-04-14 13:39:54 +02:00
INJECT(0x0048F9C0, phd_PushMatrix);
INJECT(0x0042CF80, GetBoundsAccurate);
INJECT(0x0042D020, GetBestFrame);
INJECT(0x004D1A40, Sync);
INJECT(0x0042BE90, InitInterpolate);
2020-04-14 16:36:37 +02:00
INJECT(0x0042BF00, phd_PopMatrix_I);
INJECT(0x00490150, phd_RotYXZ);
INJECT(0x0048FBE0, phd_RotX);
INJECT(0x0048FCD0, phd_RotY);
INJECT(0x0048FDC0, phd_RotZ);
INJECT(0x0042C030, phd_RotX_I);
INJECT(0x0042BFC0, phd_RotY_I);
INJECT(0x0042C0A0, phd_RotZ_I);
2020-04-14 16:52:01 +02:00
INJECT(0x0048FB20, phd_TranslateRel);
INJECT(0x0042C110, phd_TranslateRel_I);
INJECT(0x0042C190, phd_TranslateRel_ID);
INJECT(0x004903F0, phd_TranslateAbs);
2020-04-14 17:47:49 +02:00
INJECT(0x0048FA40, phd_SetTrans);
INJECT(0x0042BF50, phd_PushMatrix_I);
INJECT(0x0048FA90, phd_PushUnitMatrix);
INJECT(0x004904B0, phd_GetVectorAngles);
INJECT(0x0048FEB0, phd_RotYXZpack);
/*INJECT(0x0042C310, gar_RotYXZsuperpack);
INJECT(0x0042C290, gar_RotYXZsuperpack_I);*/
2018-08-19 09:46:58 +02:00
}