sm64coopdx/src/goddard/skin_movement.c
Prince Frizzy 75bb9b7912
Update to Refresh 13 (#19)
* Refresh 13

Co-authored-by: n64 <n64>
2022-03-13 00:17:10 -08:00

158 lines
4.7 KiB
C

#include <PR/ultratypes.h>
#include "debug_utils.h"
#include "gd_math.h"
#include "gd_types.h"
#include "joints.h"
#include "macros.h"
#include "objects.h"
#include "skin.h"
#include "skin_movement.h"
/* bss */
struct ObjWeight *sResetCurWeight;
static Mat4f D_801B9EA8; // TODO: rename to sHead2Mtx?
static struct ObjJoint *D_801B9EE8; // set but not used
/* @ 22FDB0 for 0x180 */
void func_801815E0(Mat4f *mtx) {
struct GdVec3f scratchVec;
scratchVec.x = (*mtx)[0][0];
scratchVec.y = (*mtx)[0][1];
scratchVec.z = (*mtx)[0][2];
gd_normalize_vec3f(&scratchVec);
(*mtx)[0][0] = scratchVec.x;
(*mtx)[0][1] = scratchVec.y;
(*mtx)[0][2] = scratchVec.z;
scratchVec.x = (*mtx)[1][0];
scratchVec.y = (*mtx)[1][1];
scratchVec.z = (*mtx)[1][2];
gd_normalize_vec3f(&scratchVec);
(*mtx)[1][0] = scratchVec.x;
(*mtx)[1][1] = scratchVec.y;
(*mtx)[1][2] = scratchVec.z;
scratchVec.x = (*mtx)[2][0];
scratchVec.y = (*mtx)[2][1];
scratchVec.z = (*mtx)[2][2];
gd_normalize_vec3f(&scratchVec);
(*mtx)[2][0] = scratchVec.x;
(*mtx)[2][1] = scratchVec.y;
(*mtx)[2][2] = scratchVec.z;
}
/* @ 22FF30 for 0xDC */
/* called with ObjNext->unk1A8 (variable obj ptr?) ->unk20 or ->unk24 ptr*/
// TODO: figure out the proper object type for a0
void scale_verts(struct ObjGroup *a0) {
register f32 sp1C;
register struct ListNode *link;
struct ObjVertex *vtx;
for (link = a0->firstMember; link != NULL; link = link->next) {
vtx = (struct ObjVertex *) link->obj;
if ((sp1C = vtx->scaleFactor) != 0.0f) {
vtx->pos.x = vtx->initPos.x * sp1C;
vtx->pos.y = vtx->initPos.y * sp1C;
vtx->pos.z = vtx->initPos.z * sp1C;
} else {
vtx->pos.x = vtx->pos.y = vtx->pos.z = 0.0f;
}
}
}
/* @ 23000C for 0x58; orig name: func8018183C*/
void move_skin(struct ObjNet *net) {
UNUSED u8 pad1C[8];
if (net->shapePtr != NULL) {
scale_verts(net->shapePtr->scaledVtxGroup);
}
}
/* @ 230064 for 0x13C*/
void func_80181894(struct ObjJoint *joint) {
register struct ObjGroup *weightGroup; // baseGroup? weights Only?
struct GdVec3f stackVec;
register struct ObjWeight *curWeight;
register struct ObjVertex *connectedVtx;
register struct ListNode *link;
register f32 scaleFactor;
struct GdObj *linkedObj;
weightGroup = joint->weightGrp;
if (weightGroup != NULL) {
for (link = weightGroup->firstMember; link != NULL; link = link->next) {
linkedObj = link->obj;
curWeight = (struct ObjWeight *) linkedObj;
if (curWeight->weightVal > 0.0) //? 0.0f
{
stackVec.x = curWeight->vec20.x;
stackVec.y = curWeight->vec20.y;
stackVec.z = curWeight->vec20.z;
gd_rotate_and_translate_vec3f(&stackVec, &joint->matE8);
connectedVtx = curWeight->vtx;
scaleFactor = curWeight->weightVal;
connectedVtx->pos.x += stackVec.x * scaleFactor;
connectedVtx->pos.y += stackVec.y * scaleFactor;
connectedVtx->pos.z += stackVec.z * scaleFactor;
}
}
}
}
/* @ 2301A0 for 0x110 */
void reset_weight_vtx(struct ObjVertex *vtx) {
struct GdVec3f localVec;
UNUSED u8 pad24[0x10];
if (sResetWeightVtxNum++ == sResetCurWeight->vtxId) { // found matching vertex
sResetCurWeight->vtx = vtx;
localVec.x = vtx->pos.x;
localVec.y = vtx->pos.y;
localVec.z = vtx->pos.z;
gd_rotate_and_translate_vec3f(&localVec, &D_801B9EA8);
sResetCurWeight->vec20.x = localVec.x;
sResetCurWeight->vec20.y = localVec.y;
sResetCurWeight->vec20.z = localVec.z;
vtx->scaleFactor -= sResetCurWeight->weightVal;
}
}
void reset_weight(struct ObjWeight *weight) {
UNUSED u32 vtxCount;
UNUSED u32 pad20;
struct ObjGroup *skinGroup;
sResetCurWeight = weight;
sResetWeightVtxNum = 0;
if ((skinGroup = gGdSkinNet->skinGrp) != NULL) {
// Go through every vertex in the skin group, and reset the weight if the vertex is managed by the weight
vtxCount =
apply_to_obj_types_in_group(OBJ_TYPE_VERTICES, (applyproc_t) reset_weight_vtx, skinGroup);
} else {
fatal_printf("reset_weight(): Skin net has no SkinGroup");
}
if (weight->vtx == NULL) {
fatal_printf("reset_weight(): Skin vertex ID %d not found", weight->vtxId);
}
}
void reset_joint_weights(struct ObjJoint *joint) {
struct ObjGroup *group;
gd_inverse_mat4f(&joint->matE8, &D_801B9EA8);
D_801B9EE8 = joint;
if ((group = joint->weightGrp) != NULL) {
apply_to_obj_types_in_group(OBJ_TYPE_WEIGHTS, (applyproc_t) reset_weight, group);
}
}