Files
tww/include/JAZelAudio/JAIZelInst.h
T
LagoLunatic 86a17bbfb7 JAIZelInst OK (#1005)
* JAIZelInst OK

* Clean up some default args
2026-05-17 17:10:52 -04:00

63 lines
1.5 KiB
C++

#ifndef JAIZELINST_H
#define JAIZELINST_H
#include "dolphin/types.h"
class JAISound;
class JAIZelInst {
public:
JAIZelInst();
~JAIZelInst() {}
void reset();
void playArmSwing(s32, s32);
void stopArmSwing();
s32 setStickPos(s32, s32);
void play();
void setBeat(s32);
void setVolume(f32);
s32 metronomePlay(s32, s32);
s32 judge(s32, s32);
void ambientPlay();
void armSoundPlay(s32);
f32 getMelodyPattern(s32, s32, s32*);
s32 getMelodyBeat(s32);
f32 getMelodyGFrames(s32);
void melodyPlay(s32);
void melodyStop();
u8 getBeat() { return mBeat; }
f32 getBeatFrames() { return mBeatFrames; }
static u16 m_note_pattern[][6];
static u8 m_stick_to_note_table[];
static u8 mMelodyPattern[][7];
static u8 mCPosToNote3[];
static u8 mCPosToNote4[];
static u8 mCPosToNote61[];
static u8 mCPosToNote62[];
public:
/* 0x00 */ JAISound* field_0x0;
/* 0x04 */ u8 field_0x4[5];
/* 0x0C */ s32 field_0xc;
/* 0x10 */ int field_0x10;
/* 0x14 */ int field_0x14;
/* 0x18 */ u8 field_0x18[6];
/* 0x1E */ u8 field_0x1e;
/* 0x1F */ u8 mBeat;
/* 0x20 */ f32 field_0x20;
/* 0x24 */ f32 field_0x24;
/* 0x28 */ f32 field_0x28;
/* 0x2C */ f32 field_0x2c;
/* 0x30 */ f32 mBeatFrames;
/* 0x34 */ u8 field_0x34;
/* 0x38 */ JAISound** field_0x38;
/* 0x3C */ JAISound** field_0x3c;
/* 0x40 */ JAISound** field_0x40;
/* 0x44 */ JAISound** field_0x44;
/* 0x48 */ u8 field_0x48;
};
#endif /* JAIZELINST_H */