mirror of
https://github.com/zeldaret/oot.git
synced 2024-11-14 13:30:47 +00:00
5525365f7f
* Decompile fbdemo (transition) files * run format.sh * reformat vtx array, fill in a couple unk * match TransitionTriforce_IsDone * add VTX macro, add DW_ wrapping around triangle macros * use new VTX macro, name graphic assets * Naming updates * pr updates * naming updates * remove symbols for COLOR_BUFFER, D_08000000, and D_09000000
117 lines
3.6 KiB
C
117 lines
3.6 KiB
C
#include <global.h>
|
|
#include <vt.h>
|
|
|
|
static Gfx sRCPSetupFade[] = {
|
|
gsDPPipeSync(),
|
|
gsSPClearGeometryMode(G_ZBUFFER | G_SHADE | G_CULL_BOTH | G_FOG | G_LIGHTING | G_TEXTURE_GEN |
|
|
G_TEXTURE_GEN_LINEAR | G_LOD | G_SHADING_SMOOTH),
|
|
gsDPSetOtherMode(G_AD_DISABLE | G_CD_MAGICSQ | G_CK_NONE | G_TC_FILT | G_TF_BILERP | G_TT_NONE | G_TL_TILE |
|
|
G_TD_CLAMP | G_TP_NONE | G_CYC_1CYCLE | G_PM_1PRIMITIVE,
|
|
G_AC_NONE | G_ZS_PIXEL | G_RM_CLD_SURF | G_RM_CLD_SURF2),
|
|
gsDPSetCombineLERP(0, 0, 0, PRIMITIVE, 0, 0, 0, PRIMITIVE, 0, 0, 0, PRIMITIVE, 0, 0, 0, PRIMITIVE),
|
|
gsSPEndDisplayList(),
|
|
};
|
|
|
|
void TransitionFade_Start(TransitionFade* this) {
|
|
switch (this->fadeType) {
|
|
case 0:
|
|
break;
|
|
case 1:
|
|
this->fadeTimer = 0;
|
|
this->fadeColor.a = this->fadeDirection != 0 ? 0xFF : 0;
|
|
break;
|
|
case 2:
|
|
this->fadeColor.a = 0;
|
|
break;
|
|
}
|
|
this->isDone = 0;
|
|
}
|
|
|
|
TransitionFade* TransitionFade_Init(TransitionFade* this) {
|
|
bzero(this, sizeof(*this));
|
|
return this;
|
|
}
|
|
|
|
void TransitionFade_Destroy(TransitionFade* this) {
|
|
}
|
|
|
|
#ifdef NON_MATCHING
|
|
void TransitionFade_Update(TransitionFade* this, s32 updateRate) {
|
|
char pad[2];
|
|
s16 newAlpha;
|
|
s32 alpha;
|
|
|
|
switch (this->fadeType) {
|
|
case 0:
|
|
break;
|
|
case 1:
|
|
this->fadeTimer += updateRate;
|
|
if (this->fadeTimer >= gSaveContext.fadeDuration) {
|
|
this->fadeTimer = gSaveContext.fadeDuration;
|
|
this->isDone = 1;
|
|
}
|
|
if (gSaveContext.fadeDuration == 0) {
|
|
// Divide by 0! Zero is included in ZCommonGet fade_speed
|
|
osSyncPrintf(VT_COL(RED, WHITE) "0除算! ZCommonGet fade_speed に0がはいってる" VT_RST);
|
|
}
|
|
alpha = (this->fadeTimer * 255.0f) / gSaveContext.fadeDuration;
|
|
this->fadeColor.a = this->fadeDirection != 0 ? 0xFF - alpha : alpha;
|
|
break;
|
|
case 2:
|
|
newAlpha = this->fadeColor.a;
|
|
if (iREG(50) != 0) {
|
|
if (iREG(50) < 0) {
|
|
if (Math_ApproxS(&newAlpha, 0xFF, 0xFF) != 0) {
|
|
iREG(50) = 0x96;
|
|
}
|
|
} else {
|
|
Math_ApproxS(&iREG(50), 0x14, 0x3C);
|
|
if (Math_ApproxS(&newAlpha, 0, iREG(50)) != 0) {
|
|
iREG(50) = 0;
|
|
this->isDone = 1;
|
|
}
|
|
}
|
|
}
|
|
this->fadeColor.a = newAlpha;
|
|
break;
|
|
}
|
|
}
|
|
#else
|
|
#pragma GLOBAL_ASM("asm/non_matchings/code/z_fbdemo_fade/TransitionFade_Update.s")
|
|
#endif
|
|
|
|
void TransitionFade_Draw(TransitionFade* this, Gfx** gfxP) {
|
|
Gfx* gfx;
|
|
Color_RGBA8* color;
|
|
if (this->fadeColor.a > 0) {
|
|
color = &this->fadeColor;
|
|
gfx = *gfxP;
|
|
gSPDisplayList(gfx++, sRCPSetupFade);
|
|
gDPSetPrimColor(gfx++, 0, 0, color->r, color->g, color->b, color->a);
|
|
gDPFillRectangle(gfx++, 0, 0, gScreenWidth - 1, gScreenHeight - 1);
|
|
gDPPipeSync(gfx++);
|
|
*gfxP = gfx;
|
|
}
|
|
}
|
|
|
|
s32 TransitionFade_IsDone(TransitionFade* this) {
|
|
return this->isDone;
|
|
}
|
|
|
|
void TransitionFade_SetColor(TransitionFade* this, u32 color) {
|
|
this->fadeColor.rgba = color;
|
|
}
|
|
|
|
void TransitionFade_SetType(TransitionFade* this, s32 type) {
|
|
if (type == 1) {
|
|
this->fadeType = 1;
|
|
this->fadeDirection = 1;
|
|
} else if (type == 2) {
|
|
this->fadeType = 1;
|
|
this->fadeDirection = 0;
|
|
} else if (type == 3) {
|
|
this->fadeType = 2;
|
|
} else {
|
|
this->fadeType = 0;
|
|
}
|
|
}
|