mirror of
https://github.com/zeldaret/tww.git
synced 2026-08-22 06:20:02 -04:00
d_camera 28% (#732)
* initial progress * more progress * more progress * more progress * more progress * more progress * more progress * more progress * more progress * more progress * more progress * more progress * fix outdated member names * more progress * more progress * more progress * more progress * more progress * more progress * fixed deprecated member references * more progress * more progress * more progress * fix deprecated member references * more progress * more progress * more progress * more progress * more progress * check in for review * remove comment * initial PR changes * more PR changes * more PR changes * added anonymous struct as class member * reverted changes to `stage_camera2_data_class` * added `dCamera_event_data`, `dCamera_monitoring_things` and `dCamera_DMC_system` from debug maps * more progress * more progress * realmatch for `camera_draw` * PR changes * fix broken merge * formatting * Reverted change to `camSphChkdata` that caused `sph_chk_callback` match to regress * Reverted change to `BG` struct that caused ctor and dtor match to regress
This commit is contained in:
@@ -167,6 +167,18 @@ inline void mDoAud_linkVoiceStart(u32 param_0, Vec* i_sePos, u8 param_3, s8 para
|
||||
mDoAud_zelAudio_c::getInterface()->linkVoiceStart(param_0, i_sePos, param_3, param_4);
|
||||
}
|
||||
|
||||
inline void mDoAud_getCameraMapInfo(u32 param_0) {
|
||||
mDoAud_zelAudio_c::getInterface()->getCameraMapInfo(param_0);
|
||||
}
|
||||
|
||||
inline void mDoAud_setCameraGroupInfo(u8 param_0) {
|
||||
mDoAud_zelAudio_c::getInterface()->setCameraGroupInfo(param_0);
|
||||
}
|
||||
|
||||
inline void mDoAud_getCameraInfo(Vec* param_0, MtxP param_1, u32 param_2) {
|
||||
mDoAud_zelAudio_c::getInterface()->getCameraInfo(param_0, param_1, param_2);
|
||||
}
|
||||
|
||||
inline void mDoAud_setLinkGroupInfo(u8 param_0) {
|
||||
mDoAud_zelAudio_c::getInterface()->setLinkGroupInfo(param_0);
|
||||
}
|
||||
|
||||
@@ -40,6 +40,7 @@ public:
|
||||
static u8 getBlureRate() { return mBlureRate; }
|
||||
static MtxP getBlureMtx() { return mBlureMtx; }
|
||||
static void offAutoForcus() { mAutoForcus = false; }
|
||||
static void onAutoForcus() { mAutoForcus = true; }
|
||||
static BOOL isAutoForcus() { return mAutoForcus; }
|
||||
static void setTickRate(u32 rate) { JFWDisplay::getManager()->setTickRate(rate); }
|
||||
static void waitBlanking(int wait) { JFWDisplay::getManager()->waitBlanking(wait); }
|
||||
|
||||
@@ -143,6 +143,10 @@ inline void cMtx_inverseTranspose(const Mtx a, Mtx b) {
|
||||
mDoMtx_inverseTranspose(a, b);
|
||||
}
|
||||
|
||||
inline void cMtx_concatProjView(const Mtx a, const Mtx b, Mtx c) {
|
||||
mDoMtx_concatProjView(a, b, c);
|
||||
}
|
||||
|
||||
class mDoMtx_stack_c {
|
||||
public:
|
||||
mDoMtx_stack_c() {
|
||||
|
||||
Reference in New Issue
Block a user