mirror of
https://github.com/isledecomp/isle.git
synced 2024-11-22 15:48:09 -05:00
Implement/match ViewManager::FUN_100a6b90 (#646)
* Implement/match ViewManager::FUN_100a6b90 * Fix comment * Fix order
This commit is contained in:
parent
8069923651
commit
86f84e1740
2 changed files with 48 additions and 3 deletions
|
@ -5,6 +5,9 @@
|
||||||
|
|
||||||
DECOMP_SIZE_ASSERT(ViewManager, 0x1bc)
|
DECOMP_SIZE_ASSERT(ViewManager, 0x1bc)
|
||||||
|
|
||||||
|
// GLOBAL: LEGO1 0x100dbcd8
|
||||||
|
int g_unk0x100dbcd8[18] = {0, 1, 5, 6, 2, 3, 3, 0, 4, 1, 2, 6, 0, 3, 2, 4, 5, 6};
|
||||||
|
|
||||||
inline undefined4 GetD3DRM(IDirect3DRM2*& d3drm, Tgl::Renderer* pRenderer);
|
inline undefined4 GetD3DRM(IDirect3DRM2*& d3drm, Tgl::Renderer* pRenderer);
|
||||||
inline undefined4 GetFrame(IDirect3DRMFrame2*& frame, Tgl::Group* scene);
|
inline undefined4 GetFrame(IDirect3DRMFrame2*& frame, Tgl::Group* scene);
|
||||||
|
|
||||||
|
@ -114,6 +117,47 @@ void ViewManager::Update(float p_previousRenderTime, float p_und2)
|
||||||
// TODO
|
// TODO
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// FUNCTION: LEGO1 0x100a6b90
|
||||||
|
void ViewManager::FUN_100a6b90()
|
||||||
|
{
|
||||||
|
flags &= ~c_bit2;
|
||||||
|
|
||||||
|
// TODO: Should be signed, but worsens match
|
||||||
|
unsigned int i, j, k;
|
||||||
|
|
||||||
|
for (i = 0; i < 8; i++) {
|
||||||
|
for (j = 0; j < 3; j++) {
|
||||||
|
unk0xf0[i][j] = pov[3][j];
|
||||||
|
|
||||||
|
for (k = 0; k < 3; k++) {
|
||||||
|
unk0xf0[i][j] += pov[k][j] * unk0x90[i][k];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
for (i = 0; i < 6; i++) {
|
||||||
|
Vector3 a(unk0xf0[g_unk0x100dbcd8[i * 3]]);
|
||||||
|
Vector3 b(unk0xf0[g_unk0x100dbcd8[i * 3 + 1]]);
|
||||||
|
Vector3 c(unk0xf0[g_unk0x100dbcd8[i * 3 + 2]]);
|
||||||
|
Mx3DPointFloat x;
|
||||||
|
Mx3DPointFloat y;
|
||||||
|
Vector3 u(unk0x150[i]);
|
||||||
|
|
||||||
|
x = c;
|
||||||
|
((Vector3&) x).Sub(&b); // TODO: Fix call
|
||||||
|
|
||||||
|
y = a;
|
||||||
|
((Vector3&) y).Sub(&b); // TODO: Fix call
|
||||||
|
|
||||||
|
u.EqualsCross(&x, &y);
|
||||||
|
u.Unitize();
|
||||||
|
|
||||||
|
unk0x150[i][3] = -u.Dot(&u, &a);
|
||||||
|
}
|
||||||
|
|
||||||
|
flags |= c_bit4;
|
||||||
|
}
|
||||||
|
|
||||||
// FUNCTION: LEGO1 0x100a6d50
|
// FUNCTION: LEGO1 0x100a6d50
|
||||||
void ViewManager::SetResolution(int width, int height)
|
void ViewManager::SetResolution(int width, int height)
|
||||||
{
|
{
|
||||||
|
|
|
@ -28,6 +28,7 @@ class ViewManager {
|
||||||
ViewROI* Pick(Tgl::View* p_view, unsigned long x, unsigned long y);
|
ViewROI* Pick(Tgl::View* p_view, unsigned long x, unsigned long y);
|
||||||
void SetResolution(int width, int height);
|
void SetResolution(int width, int height);
|
||||||
void SetFrustrum(float fov, float front, float back);
|
void SetFrustrum(float fov, float front, float back);
|
||||||
|
void FUN_100a6b90();
|
||||||
void Update(float p_previousRenderTime, float p_und2);
|
void Update(float p_previousRenderTime, float p_und2);
|
||||||
|
|
||||||
// SYNTHETIC: LEGO1 0x100a6000
|
// SYNTHETIC: LEGO1 0x100a6000
|
||||||
|
@ -51,9 +52,9 @@ class ViewManager {
|
||||||
MxMatrix pov; // 0x40
|
MxMatrix pov; // 0x40
|
||||||
float front; // 0x88
|
float front; // 0x88
|
||||||
float back; // 0x8c
|
float back; // 0x8c
|
||||||
undefined unk0x90[0x60]; // 0x90
|
float unk0x90[8][3]; // 0x90
|
||||||
undefined unk0xf0[0x60]; // 0xf0
|
float unk0xf0[8][3]; // 0xf0
|
||||||
undefined unk0x150[0x60]; // 0x150
|
float unk0x150[6][4]; // 0x150
|
||||||
IDirect3DRM2* d3drm; // 0x1b0
|
IDirect3DRM2* d3drm; // 0x1b0
|
||||||
IDirect3DRMFrame2* frame; // 0x1b4
|
IDirect3DRMFrame2* frame; // 0x1b4
|
||||||
float seconds_allowed; // 0x1b8
|
float seconds_allowed; // 0x1b8
|
||||||
|
|
Loading…
Reference in a new issue