mirror of
https://github.com/zeldaret/tp
synced 2026-05-23 15:01:53 -04:00
ac06966414
* Fix debug build * Add more J3D_ASSERTs * Move J3DShapeMtx to correct header for assert * Add VSCode task for ninja changes_all
293 lines
11 KiB
C++
293 lines
11 KiB
C++
//
|
|
// Generated By: dol2asm
|
|
// Translation Unit: J3DMaterialAttach
|
|
//
|
|
|
|
#include "JSystem/J3DGraphAnimator/J3DMaterialAttach.h"
|
|
#include "JSystem/J3DGraphAnimator/J3DMaterialAnm.h"
|
|
#include "JSystem/J3DGraphBase/J3DMaterial.h"
|
|
#include "JSystem/JUtility/JUTAssert.h"
|
|
|
|
/* 8032F5A8-8032F5D0 329EE8 0028+00 0/0 1/1 0/0 .text clear__16J3DMaterialTableFv */
|
|
void J3DMaterialTable::clear() {
|
|
mMaterialNum = 0;
|
|
mUniqueMatNum = 0;
|
|
mMaterialNodePointer = NULL;
|
|
mMaterialName = NULL;
|
|
field_0x10 = 0;
|
|
mTexture = NULL;
|
|
mTextureName = NULL;
|
|
field_0x1c = 0;
|
|
}
|
|
|
|
/* 8032F5D0-8032F604 329F10 0034+00 0/0 2/2 0/0 .text __ct__16J3DMaterialTableFv */
|
|
J3DMaterialTable::J3DMaterialTable() {
|
|
mMaterialNum = 0;
|
|
mUniqueMatNum = 0;
|
|
mMaterialNodePointer = NULL;
|
|
mMaterialName = NULL;
|
|
field_0x10 = 0;
|
|
mTexture = NULL;
|
|
mTextureName = NULL;
|
|
field_0x1c = 0;
|
|
}
|
|
|
|
/* 8032F604-8032F64C 329F44 0048+00 1/0 1/1 0/0 .text __dt__16J3DMaterialTableFv */
|
|
J3DMaterialTable::~J3DMaterialTable() {}
|
|
|
|
/* 8032F64C-8032F6F8 329F8C 00AC+00 0/0 1/1 5/5 .text
|
|
* removeMatColorAnimator__16J3DMaterialTableFP11J3DAnmColor */
|
|
int J3DMaterialTable::removeMatColorAnimator(J3DAnmColor* pAnmColor) {
|
|
JUT_ASSERT_MSG(208, pAnmColor != NULL, "Error : null pointer.")
|
|
int ret = false;
|
|
u16 updateMatNum = pAnmColor->getUpdateMaterialNum();
|
|
for (u16 i = 0; i < updateMatNum; i++) {
|
|
if (pAnmColor->isValidUpdateMaterialID(i)) {
|
|
u16 materialUpdateId = pAnmColor->getUpdateMaterialID(i);
|
|
J3DMaterialAnm* materialAnm = getMaterialNodePointer(materialUpdateId)->getMaterialAnm();
|
|
if (materialAnm == NULL) {
|
|
ret = true;
|
|
} else {
|
|
materialAnm->setMatColorAnm(0, NULL);
|
|
}
|
|
}
|
|
}
|
|
return ret;
|
|
}
|
|
|
|
/* 8032F6F8-8032F7B4 32A038 00BC+00 0/0 5/5 10/10 .text
|
|
* removeTexNoAnimator__16J3DMaterialTableFP16J3DAnmTexPattern */
|
|
int J3DMaterialTable::removeTexNoAnimator(J3DAnmTexPattern* anm) {
|
|
JUT_ASSERT_MSG(242, anm != NULL, "Error : null pointer.")
|
|
int ret = 0;
|
|
u16 materialNum = anm->getUpdateMaterialNum();
|
|
J3DAnmTexPatternFullTable* anm_table = (J3DAnmTexPatternFullTable*)anm->getAnmTable();
|
|
|
|
for (u16 i = 0; i < materialNum; i++) {
|
|
if (anm->isValidUpdateMaterialID(i)) {
|
|
u16 materialID = anm->getUpdateMaterialID(i);
|
|
|
|
J3DMaterialAnm* pMatAnm = getMaterialNodePointer(materialID)->getMaterialAnm();
|
|
u8 texNo = anm_table[i].mTexNo;
|
|
if (pMatAnm == NULL)
|
|
ret = 1;
|
|
else
|
|
pMatAnm->setTexNoAnm(texNo, NULL);
|
|
}
|
|
}
|
|
|
|
return ret;
|
|
}
|
|
|
|
/* 8032F7B4-8032F880 32A0F4 00CC+00 0/0 4/4 26/26 .text
|
|
* removeTexMtxAnimator__16J3DMaterialTableFP19J3DAnmTextureSRTKey */
|
|
int J3DMaterialTable::removeTexMtxAnimator(J3DAnmTextureSRTKey* pAnm) {
|
|
JUT_ASSERT_MSG(278, pAnm != NULL, "Error : null pointer.")
|
|
s32 ret = 0;
|
|
u16 materialNum = pAnm->getUpdateMaterialNum();
|
|
u16 postUpdateMaterialNum[1];
|
|
postUpdateMaterialNum[0] = pAnm->getPostUpdateMaterialNum();
|
|
|
|
for (u16 i = 0; i < materialNum; i++) {
|
|
if (pAnm->isValidUpdateMaterialID(i)) {
|
|
u16 updateMaterial = pAnm->getUpdateMaterialID(i);
|
|
J3DMaterial* pMaterial = getMaterialNodePointer(updateMaterial);
|
|
J3DMaterialAnm* pMatAnm = pMaterial->getMaterialAnm();
|
|
u8 texMtxID = pAnm->getUpdateTexMtxID(i);
|
|
if (pMatAnm == NULL) {
|
|
ret = 1;
|
|
} else if (texMtxID != 0xFF) {
|
|
pMatAnm->setTexMtxAnm(texMtxID, NULL);
|
|
}
|
|
}
|
|
}
|
|
|
|
return ret;
|
|
}
|
|
|
|
/* 8032F880-8032F9C0 32A1C0 0140+00 0/0 7/7 24/24 .text
|
|
* removeTevRegAnimator__16J3DMaterialTableFP15J3DAnmTevRegKey */
|
|
int J3DMaterialTable::removeTevRegAnimator(J3DAnmTevRegKey* pAnm) {
|
|
s32 ret = 0;
|
|
u16 cRegMaterialNum = pAnm->getCRegUpdateMaterialNum();
|
|
u16 kRegMaterialNum = pAnm->getKRegUpdateMaterialNum();
|
|
|
|
for (u16 i = 0; i < cRegMaterialNum; i++) {
|
|
if (pAnm->getCRegUpdateMaterialID(i) != 0xFFFF) {
|
|
J3DMaterialAnm * pMatAnm = getMaterialNodePointer(pAnm->getCRegUpdateMaterialID(i))->getMaterialAnm();
|
|
u32 colorId = pAnm->getAnmCRegKeyTable()[i].mColorId;
|
|
if (pMatAnm == NULL)
|
|
ret = 1;
|
|
else
|
|
pMatAnm->setTevColorAnm(colorId, NULL);
|
|
}
|
|
}
|
|
|
|
for (u16 i = 0; i < kRegMaterialNum; i++) {
|
|
if (pAnm->getKRegUpdateMaterialID(i) != 0xFFFF) {
|
|
J3DMaterialAnm * pMatAnm = getMaterialNodePointer(pAnm->getKRegUpdateMaterialID(i))->getMaterialAnm();
|
|
u32 colorId = pAnm->getAnmKRegKeyTable()[i].mColorId;
|
|
if (pMatAnm == NULL) {
|
|
ret = 1;
|
|
} else {
|
|
pMatAnm->setTevKColorAnm(colorId, NULL);
|
|
}
|
|
}
|
|
}
|
|
|
|
return ret;
|
|
}
|
|
|
|
/* 8032F9C0-8032FAF4 32A300 0134+00 1/1 0/0 0/0 .text
|
|
* createTexMtxForAnimator__16J3DMaterialTableFP19J3DAnmTextureSRTKey */
|
|
int J3DMaterialTable::createTexMtxForAnimator(J3DAnmTextureSRTKey* param_1) {
|
|
int rv = 0;
|
|
u16 materialNum = param_1->getUpdateMaterialNum();
|
|
if (isLocked()) {
|
|
return 2;
|
|
}
|
|
for (u16 i = 0; i < materialNum; i++) {
|
|
if (param_1->isValidUpdateMaterialID(i)) {
|
|
J3DMaterial* material = getMaterialNodePointer(param_1->getUpdateMaterialID(i));
|
|
u8 mtxId = param_1->getUpdateTexMtxID(i);
|
|
if (material->getMaterialAnm() == 0) {
|
|
rv = 1;
|
|
} else {
|
|
u32 mtxId2 = mtxId;
|
|
if (mtxId2 != 0xff && material->getTexMtx(mtxId2) == 0) {
|
|
J3DTexMtx* mtx = new J3DTexMtx();
|
|
rv = 4;
|
|
material->setTexMtx(mtxId2, mtx);
|
|
JUT_WARN(420, "matNo<%d> : texMtx%d nothing !\n", i, mtxId);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
return rv;
|
|
}
|
|
|
|
/* 8032FAF4-8032FBC8 32A434 00D4+00 0/0 1/1 0/0 .text
|
|
* entryMatColorAnimator__16J3DMaterialTableFP11J3DAnmColor */
|
|
int J3DMaterialTable::entryMatColorAnimator(J3DAnmColor* param_1) {
|
|
int rv = 0;
|
|
u16 materialNum = param_1->getUpdateMaterialNum();
|
|
if (isLocked()) {
|
|
return 2;
|
|
}
|
|
for (u16 i = 0; i < materialNum; i++) {
|
|
if (param_1->isValidUpdateMaterialID(i)) {
|
|
J3DMaterial* material = getMaterialNodePointer(param_1->getUpdateMaterialID(i));
|
|
J3DMaterialAnm* materialAnm = material->getMaterialAnm();
|
|
if (materialAnm == 0) {
|
|
rv = 1;
|
|
} else {
|
|
J3DMatColorAnm matColorAnm(i, param_1);
|
|
materialAnm->setMatColorAnm(0, &matColorAnm);
|
|
}
|
|
}
|
|
}
|
|
return rv;
|
|
}
|
|
|
|
/* 8032FBC8-8032FCC4 32A508 00FC+00 0/0 7/7 1/1 .text
|
|
* entryTexNoAnimator__16J3DMaterialTableFP16J3DAnmTexPattern */
|
|
int J3DMaterialTable::entryTexNoAnimator(J3DAnmTexPattern* param_1) {
|
|
int rv = 0;
|
|
u16 materialNum = param_1->getUpdateMaterialNum();
|
|
if (isLocked()) {
|
|
return 2;
|
|
}
|
|
for (u16 i = 0; i < materialNum; i++) {
|
|
if (param_1->isValidUpdateMaterialID(i)) {
|
|
J3DMaterial* material = getMaterialNodePointer(param_1->getUpdateMaterialID(i));
|
|
J3DMaterialAnm* materialAnm = material->getMaterialAnm();
|
|
u8 texNo = param_1->getAnmTable()[i].mTexNo;
|
|
if (materialAnm == 0) {
|
|
rv = 1;
|
|
} else {
|
|
J3DTexNoAnm texNoAnm(i, param_1);
|
|
materialAnm->setTexNoAnm(texNo, &texNoAnm);
|
|
}
|
|
}
|
|
}
|
|
return rv;
|
|
}
|
|
|
|
/* 8032FCC4-8032FE70 32A604 01AC+00 0/0 14/14 6/6 .text
|
|
* entryTexMtxAnimator__16J3DMaterialTableFP19J3DAnmTextureSRTKey */
|
|
int J3DMaterialTable::entryTexMtxAnimator(J3DAnmTextureSRTKey* btk) {
|
|
JUT_ASSERT_MSG(532, btk != NULL, "Error : null pointer.")
|
|
int rv = 0;
|
|
u16 materialNum = btk->getUpdateMaterialNum();
|
|
rv = createTexMtxForAnimator(btk);
|
|
if (rv != 0) {
|
|
return rv;
|
|
}
|
|
if (isLocked()) {
|
|
return 2;
|
|
}
|
|
for (u16 no = 0; no < materialNum; no++) {
|
|
if (btk->isValidUpdateMaterialID(no)) {
|
|
u16 updateMaterialId = btk->getUpdateMaterialID(no);
|
|
J3DMaterial* material = getMaterialNodePointer((u16)updateMaterialId);
|
|
J3DMaterialAnm* materialAnm = material->getMaterialAnm();
|
|
u8 texMtxID = btk->getUpdateTexMtxID(no);
|
|
if (materialAnm == 0) {
|
|
rv = 1;
|
|
} else {
|
|
if (texMtxID != 0xff) {
|
|
if (material->getTexCoord(texMtxID) != NULL) {
|
|
material->getTexCoord(texMtxID)->setTexGenMtx((u8)texMtxID * 3 + 30);
|
|
}
|
|
J3DTexMtxInfo& tmtxinfo = material->getTexMtx(texMtxID)->getTexMtxInfo();
|
|
tmtxinfo.mInfo = (tmtxinfo.mInfo & 0x3f) | (btk->getTexMtxCalcType() << 7);
|
|
tmtxinfo.mCenter.x = btk->getSRTCenter(no)->x;
|
|
tmtxinfo.mCenter.y = btk->getSRTCenter(no)->y;
|
|
tmtxinfo.mCenter.z = btk->getSRTCenter(no)->z;
|
|
J3DTexMtxAnm texMtxAnm(no, btk);
|
|
materialAnm->setTexMtxAnm(texMtxID, &texMtxAnm);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
return rv;
|
|
}
|
|
|
|
/* 8032FE70-8032FFEC 32A7B0 017C+00 0/0 10/10 4/4 .text
|
|
* entryTevRegAnimator__16J3DMaterialTableFP15J3DAnmTevRegKey */
|
|
int J3DMaterialTable::entryTevRegAnimator(J3DAnmTevRegKey* param_1) {
|
|
int rv = 0;
|
|
u16 cRegNum = param_1->getCRegUpdateMaterialNum();
|
|
u16 kRegNum = param_1->getKRegUpdateMaterialNum();
|
|
if (isLocked()) {
|
|
return 2;
|
|
}
|
|
for (u16 i = 0; i < cRegNum; i++) {
|
|
if (param_1->isValidCRegUpdateMaterialID(i)) {
|
|
J3DMaterial* material = getMaterialNodePointer(param_1->getCRegUpdateMaterialID(i));
|
|
J3DMaterialAnm* materialAnm = material->getMaterialAnm();
|
|
u8 colorId = param_1->getAnmCRegKeyTable()[i].mColorId;
|
|
if (materialAnm == NULL) {
|
|
rv = 1;
|
|
} else {
|
|
J3DTevColorAnm tevColorAnm(i, param_1);
|
|
materialAnm->setTevColorAnm(colorId, &tevColorAnm);
|
|
}
|
|
}
|
|
}
|
|
for (u16 i = 0; i < kRegNum; i++) {
|
|
if (param_1->isValidKRegUpdateMaterialID(i)) {
|
|
J3DMaterial* material = getMaterialNodePointer(param_1->getKRegUpdateMaterialID(i));
|
|
J3DMaterialAnm* materialAnm = material->getMaterialAnm();
|
|
u32 colorId = param_1->getAnmKRegKeyTable()[i].mColorId;
|
|
if (materialAnm == NULL) {
|
|
rv = 1;
|
|
} else {
|
|
J3DTevKColorAnm tevKColorAnm(i, param_1);
|
|
materialAnm->setTevKColorAnm(colorId, &tevKColorAnm);
|
|
}
|
|
}
|
|
}
|
|
return rv;
|
|
}
|