Implement & link ef_lovelove2

This commit is contained in:
Norgesnerd
2025-05-27 13:30:38 +02:00
parent c5a346d183
commit 1c8251e938
2 changed files with 43 additions and 5 deletions
+1 -1
View File
@@ -1290,7 +1290,7 @@ config.libs = [
Object(Matching, "effect/ef_kyousou_onpu.c"),
Object(Matching, "effect/ef_lamp_light.c"),
Object(Matching, "effect/ef_lovelove.c"),
Object(NonMatching, "effect/ef_lovelove2.c"),
Object(Matching, "effect/ef_lovelove2.c"),
Object(NonMatching, "effect/ef_lovelove_heart.c"),
Object(Matching, "effect/ef_make_hem.c"),
Object(NonMatching, "effect/ef_mizutama.c"),
+42 -4
View File
@@ -1,5 +1,9 @@
#include "ef_effect_control.h"
#include "m_common_data.h"
extern Gfx ef_lovelove02_00_modelT[];
static void eLL2_init(xyz_t pos, int prio, s16 angle, GAME* game, u16 item_name, s16 arg0, s16 arg1);
static void eLL2_ct(eEC_Effect_c* effect, GAME* game, void* ct_arg);
static void eLL2_mv(eEC_Effect_c* effect, GAME* game);
@@ -18,17 +22,51 @@ eEC_PROFILE_c iam_ef_lovelove2 = {
};
static void eLL2_init(xyz_t pos, int prio, s16 angle, GAME* game, u16 item_name, s16 arg0, s16 arg1) {
// TODO
pos.y += 16.0f;
eEC_CLIP->make_effect_proc(eEC_EFFECT_LOVELOVE2, pos, NULL, game, &angle, item_name, prio, 0, 0);
}
static void eLL2_ct(eEC_Effect_c* effect, GAME* game, void* ct_arg) {
// TODO
effect->effect_specific[0] = *(s16*)ct_arg;
effect->timer = 112;
effect->scale = ZeroVec;
effect->offset = ZeroVec;
effect->effect_specific[1] = 0;
effect->acceleration = ZeroVec;
sAdo_OngenTrgStart(0x118, &effect->position);
}
static void eLL2_mv(eEC_Effect_c* effect, GAME* game) {
// TODO
s16 timer = 112 - effect->timer;
effect->effect_specific[1] += DEG2SHORT_ANGLE(10.55f);
effect->position.y += eEC_CLIP->calc_adjust_proc(timer, 0, 28, 1.0f, 0.1f);
}
static void eLL2_dw(eEC_Effect_c* effect, GAME* game) {
// TODO
f32 temp1, temp2, temp3;
u8 alpha;
xyz_t* scale = &effect->scale;
s16 timer = 112 - effect->timer;
s16 angle = effect->effect_specific[1];
f32 sin = sin_s(angle);
f32 cos = cos_s(angle);
temp1 = eEC_CLIP->calc_adjust_proc(timer, 0, 30, 0.003f, 0.014f);
temp2 = eEC_CLIP->calc_adjust_proc(timer, 0, 30, 1.0125f, 0.6375f);
temp3 = eEC_CLIP->calc_adjust_proc(timer, 0, 30, 0.037499964f, 0.412499964f);
alpha = (s8)eEC_CLIP->calc_adjust_proc(timer, 96, 112, 255.0f, 0.0f);
scale->x = temp1 * (temp3 + ((sin + 1.0f) * 0.5f * (temp2 - temp3)));
scale->y = temp1 * (temp3 + ((cos + 1.0f) * 0.5f * (temp2 - temp3)));
scale->z = temp1;
OPEN_DISP(game->graph);
eEC_CLIP->auto_matrix_xlu_offset_proc(game, &effect->position, scale, &effect->offset);
gDPSetPrimColor(NEXT_POLY_XLU_DISP, 0, 255, 255, 255, 255, alpha);
gSPDisplayList(NEXT_POLY_XLU_DISP, ef_lovelove02_00_modelT);
CLOSE_DISP(game->graph);
}