mirror of
https://github.com/zeldaret/tp
synced 2026-05-22 22:44:28 -04:00
Clean up code, remove fakematches, add UNUSED, enable warnings (#2992)
* Remove NDEBUG_DEFINED fakematch, clean up getName temps * Fix ifdef * Fix bad JSystem pch ifdef breaking decomp.me * Remove Acch Chk fakematches * Private Acch fields * Fix some clangd errors in headers * Add UNUSED macro for matching debug parameters * Enable clangd unused-parameter warning * Remove extern from initializers Probably added by dol2asm? * Fix process profile definitions * Remove leftover dol2asm address comments * Remove some unnecessary double casts * Enable some more clangd warnings * Fix missing usages of fopAcM_ct * Fix wrong enum usage * Fix more fakematches
This commit is contained in:
@@ -1,10 +1,18 @@
|
||||
CompileFlags:
|
||||
Add: [
|
||||
"-Wno-c++11-compat-deprecated-writable-strings",
|
||||
"-Wno-extern-initializer",
|
||||
"-Wno-multichar",
|
||||
"-fdeclspec",
|
||||
"-Wno-c++11-extensions",
|
||||
"-Wuninitialized",
|
||||
"-Wsometimes-uninitialized",
|
||||
"-Wlogical-op-parentheses",
|
||||
"-Wbitwise-op-parentheses",
|
||||
# "-Wunused-variable",
|
||||
# "-Wunused-but-set-variable",
|
||||
"-Wunused-parameter",
|
||||
"-Wunused-but-set-parameter",
|
||||
"-Wself-assign",
|
||||
]
|
||||
Diagnostics:
|
||||
Suppress:
|
||||
|
||||
Vendored
+1
@@ -49,6 +49,7 @@
|
||||
"clangd.arguments": [
|
||||
"--function-arg-placeholders=0",
|
||||
"-header-insertion=never",
|
||||
// "--log=verbose",
|
||||
],
|
||||
"clangd.detectExtensionConflicts": true,
|
||||
}
|
||||
|
||||
+2
-4
@@ -287,11 +287,9 @@ if config.version in USE_REVOLUTION_SDK_VERSIONS:
|
||||
# Debug flags
|
||||
if args.debug:
|
||||
# Or -sym dwarf-2 for Wii compilers
|
||||
cflags_base.extend(["-sym on", "-DDEBUG=1", "-DDEBUG_DEFINED=1", "-DNDEBUG_DEFINED=0"])
|
||||
cflags_base.extend(["-sym on", "-DDEBUG=1"])
|
||||
elif config.version == "ShieldD":
|
||||
cflags_base.extend(["-DDEBUG=1", "-DDEBUG_DEFINED=1", "-DNDEBUG_DEFINED=0"])
|
||||
else:
|
||||
cflags_base.extend(["-DNDEBUG=1", "-DNDEBUG_DEFINED=1", "-DDEBUG_DEFINED=0"])
|
||||
cflags_base.extend(["-DDEBUG=1"])
|
||||
|
||||
# Warning flags
|
||||
if args.warn == "all":
|
||||
|
||||
@@ -270,7 +270,11 @@ struct TLinkList_factory : public TLinkList<T, I> {
|
||||
|
||||
template <typename T, int I>
|
||||
TLinkList_factory<T, I>::~TLinkList_factory() {
|
||||
#ifdef __MWERKS__
|
||||
JGADGET_ASSERTWARN(934, empty());
|
||||
#else
|
||||
JGADGET_ASSERTWARN(934, this->empty());
|
||||
#endif
|
||||
}
|
||||
|
||||
template <typename T>
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
#ifndef JSYSTEM_H
|
||||
#define JSYSTEM_H
|
||||
|
||||
#ifdef __MWERKS__
|
||||
#if __MWERKS__ && !defined(DECOMPCTX)
|
||||
#include "JSystem/JSystem.mch" // IWYU pragma: export
|
||||
#else
|
||||
#include "JSystem/JSystem.pch" // IWYU pragma: export
|
||||
|
||||
@@ -79,7 +79,7 @@ public:
|
||||
/* 0x6C */ const IsLeadByte_func* mIsLeadByte;
|
||||
};
|
||||
|
||||
extern u8 const JUTResFONT_Ascfont_fix12[16736];
|
||||
extern u8 const JUTResFONT_Ascfont_fix16[16736];
|
||||
extern u8 const JUTResFONT_Ascfont_fix12[];
|
||||
extern u8 const JUTResFONT_Ascfont_fix16[];
|
||||
|
||||
#endif /* JUTRESFONT_H */
|
||||
|
||||
@@ -403,24 +403,24 @@ public:
|
||||
virtual bool CrossAtTg(cCcD_ShapeAttr const&, cXyz*) const {
|
||||
return false;
|
||||
}
|
||||
/* vt[4] */ virtual bool CrossAtTg(cCcD_PntAttr const&, cXyz*) const = 0;
|
||||
/* vt[5] */ virtual bool CrossAtTg(cCcD_CpsAttr const&, cXyz*) const = 0;
|
||||
/* vt[6] */ virtual bool CrossAtTg(cCcD_TriAttr const&, cXyz*) const = 0;
|
||||
/* vt[7] */ virtual bool CrossAtTg(cCcD_AabAttr const&, cXyz*) const = 0;
|
||||
/* vt[8] */ virtual bool CrossAtTg(cCcD_CylAttr const&, cXyz*) const = 0;
|
||||
/* vt[9] */ virtual bool CrossAtTg(cCcD_SphAttr const&, cXyz*) const = 0;
|
||||
/* 802649E0 vt[10]*/ virtual bool CrossCo(cCcD_ShapeAttr const&, f32*) const { return false; }
|
||||
/* vt[11]*/ virtual bool CrossCo(cCcD_PntAttr const&, f32*) const = 0;
|
||||
/* vt[12]*/ virtual bool CrossCo(cCcD_CpsAttr const&, f32*) const = 0;
|
||||
/* vt[13]*/ virtual bool CrossCo(cCcD_TriAttr const&, f32*) const = 0;
|
||||
/* vt[14]*/ virtual bool CrossCo(cCcD_AabAttr const&, f32*) const = 0;
|
||||
/* vt[15]*/ virtual bool CrossCo(cCcD_CylAttr const&, f32*) const = 0;
|
||||
/* vt[16]*/ virtual bool CrossCo(cCcD_SphAttr const&, f32*) const = 0;
|
||||
/* 80084E38 vt[17]*/ virtual const cXyz& GetCoCP() const { return m_virtual_center; }
|
||||
/* 80084E2C vt[18]*/ virtual cXyz& GetCoCP() { return m_virtual_center; }
|
||||
/* vt[19]*/ virtual void CalcAabBox() = 0;
|
||||
/* vt[20]*/ virtual bool GetNVec(cXyz const&, cXyz*) const = 0;
|
||||
/* 80263A64 vt[21]*/ virtual void getShapeAccess(cCcD_ShapeAttr::Shape*) const;
|
||||
/* vt[4] */ virtual bool CrossAtTg(cCcD_PntAttr const&, cXyz*) const = 0;
|
||||
/* vt[5] */ virtual bool CrossAtTg(cCcD_CpsAttr const&, cXyz*) const = 0;
|
||||
/* vt[6] */ virtual bool CrossAtTg(cCcD_TriAttr const&, cXyz*) const = 0;
|
||||
/* vt[7] */ virtual bool CrossAtTg(cCcD_AabAttr const&, cXyz*) const = 0;
|
||||
/* vt[8] */ virtual bool CrossAtTg(cCcD_CylAttr const&, cXyz*) const = 0;
|
||||
/* vt[9] */ virtual bool CrossAtTg(cCcD_SphAttr const&, cXyz*) const = 0;
|
||||
/* vt[10]*/ virtual bool CrossCo(cCcD_ShapeAttr const&, f32*) const { return false; }
|
||||
/* vt[11]*/ virtual bool CrossCo(cCcD_PntAttr const&, f32*) const = 0;
|
||||
/* vt[12]*/ virtual bool CrossCo(cCcD_CpsAttr const&, f32*) const = 0;
|
||||
/* vt[13]*/ virtual bool CrossCo(cCcD_TriAttr const&, f32*) const = 0;
|
||||
/* vt[14]*/ virtual bool CrossCo(cCcD_AabAttr const&, f32*) const = 0;
|
||||
/* vt[15]*/ virtual bool CrossCo(cCcD_CylAttr const&, f32*) const = 0;
|
||||
/* vt[16]*/ virtual bool CrossCo(cCcD_SphAttr const&, f32*) const = 0;
|
||||
/* vt[17]*/ virtual const cXyz& GetCoCP() const { return m_virtual_center; }
|
||||
/* vt[18]*/ virtual cXyz& GetCoCP() { return m_virtual_center; }
|
||||
/* vt[19]*/ virtual void CalcAabBox() = 0;
|
||||
/* vt[20]*/ virtual bool GetNVec(cXyz const&, cXyz*) const = 0;
|
||||
/* vt[21]*/ virtual void getShapeAccess(cCcD_ShapeAttr::Shape*) const;
|
||||
|
||||
cM3dGAab& GetWorkAab() { return mAab; }
|
||||
cM3dGAab const& GetWorkAab() const { return mAab; }
|
||||
|
||||
@@ -46,7 +46,7 @@ public:
|
||||
virtual void CalcTgPlusDmg(cCcD_Obj*, cCcD_Obj*, cCcD_Stts*, cCcD_Stts*);
|
||||
void SetAtTgCommonHitInf(cCcD_Obj*, cCcD_Obj*, cXyz*);
|
||||
void SetCoCommonHitInf(cCcD_Obj*, cXyz*, cCcD_Obj*, cXyz*, f32);
|
||||
/* 80265750 vt[3]*/ virtual void SetPosCorrect(cCcD_Obj*, cXyz*, cCcD_Obj*, cXyz*, f32);
|
||||
/* vt[3]*/ virtual void SetPosCorrect(cCcD_Obj*, cXyz*, cCcD_Obj*, cXyz*, f32);
|
||||
void CalcArea();
|
||||
void Move();
|
||||
void DrawClear();
|
||||
|
||||
@@ -3,4 +3,8 @@
|
||||
|
||||
#include "dolphin/types.h"
|
||||
|
||||
void* TRK_memset(void* dest, int val, size_t count);
|
||||
void* TRK_memcpy(void* dest, const void* src, size_t count);
|
||||
void TRK_fill_mem(void* dest, int val, size_t count);
|
||||
|
||||
#endif /* METROTRK_PORTABLE_MEM_TRK_H */
|
||||
|
||||
@@ -11,6 +11,25 @@ DSError TRKSetBufferPosition(TRKBuffer* msg, u32 pos);
|
||||
void* TRKGetBuffer(int);
|
||||
void TRKResetBuffer(TRKBuffer* msg, BOOL keepData);
|
||||
|
||||
DSError TRKAppendBuffer1_ui16(TRKBuffer* buffer, const u16 data);
|
||||
DSError TRKAppendBuffer1_ui32(TRKBuffer* buffer, const u32 data);
|
||||
DSError TRKAppendBuffer1_ui64(TRKBuffer* buffer, const u64 data);
|
||||
|
||||
DSError TRKAppendBuffer_ui8(TRKBuffer* buffer, const u8* data, int count);
|
||||
DSError TRKAppendBuffer_ui16(TRKBuffer* buffer, const u16* data, int count);
|
||||
DSError TRKAppendBuffer_ui32(TRKBuffer* buffer, const u32* data, int count);
|
||||
DSError TRKAppendBuffer_ui64(TRKBuffer* buffer, const u64* data, int count);
|
||||
|
||||
DSError TRKReadBuffer1_ui8(TRKBuffer* buffer, u8* data);
|
||||
DSError TRKReadBuffer1_ui16(TRKBuffer* buffer, u16* data);
|
||||
DSError TRKReadBuffer1_ui32(TRKBuffer* buffer, u32* data);
|
||||
DSError TRKReadBuffer1_ui64(TRKBuffer* buffer, u64* data);
|
||||
|
||||
DSError TRKReadBuffer_ui8(TRKBuffer* buffer, u8* data, int count);
|
||||
DSError TRKReadBuffer_ui16(TRKBuffer* buffer, u16* data, int count);
|
||||
DSError TRKReadBuffer_ui32(TRKBuffer* buffer, u32* data, int count);
|
||||
DSError TRKReadBuffer_ui64(TRKBuffer* buffer, u64* data, int count);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
#ifndef METROTRK_PORTABLE_MUTEX_TRK_H
|
||||
#define METROTRK_PORTABLE_MUTEX_TRK_H
|
||||
|
||||
#include "revolution/types.h"
|
||||
|
||||
u8 TRKReleaseMutex();
|
||||
u8 TRKAcquireMutex();
|
||||
|
||||
@@ -137,7 +137,7 @@ public:
|
||||
}
|
||||
|
||||
void setSpeed(f32 param_0, f32 param_1, f32* param_2, int param_3) {
|
||||
(void)param_3;
|
||||
UNUSED(param_3);
|
||||
f32 target = field_0xb5c * (param_1 * field_0xb5c);
|
||||
f32 step = field_0xb5c * (param_0 * field_0xb5c);
|
||||
if (param_1 < target) {
|
||||
|
||||
@@ -29,33 +29,26 @@ public:
|
||||
void setActionMode(int);
|
||||
f32 setAddCalcSpeedXZ(cXyz&, cXyz const&, f32, f32, f32);
|
||||
cXyz chaseTargetPos(cXyz, f32, f32, s16);
|
||||
/* 80B01D84 */
|
||||
fopAc_ac_c* getMasterPointer();
|
||||
void setMasterShoulder(cXyz*);
|
||||
void setAwayAction(int);
|
||||
void setFlySE();
|
||||
void executeFly();
|
||||
void initPerchDemo(int);
|
||||
/* 80B02B5C */
|
||||
bool executePerchDemo(int);
|
||||
void executePerch();
|
||||
void executeHandOn();
|
||||
/* 80B039A8 */
|
||||
bool checkWaterSurface(f32);
|
||||
void executeAttack();
|
||||
void executeAway();
|
||||
void setCarryActorMtx();
|
||||
/* 80B04F64 */
|
||||
f32 getTakePosY();
|
||||
/* 80B04FA8 */
|
||||
f32 getTakeOffPosY();
|
||||
void executeBack();
|
||||
/* 80B05BD0 */
|
||||
cXyz getHanjoHandPos();
|
||||
void executeStayHanjo();
|
||||
void executeAttackLink();
|
||||
void executeBackHanjo();
|
||||
/* 80B07114 */
|
||||
bool checkAttackDemo();
|
||||
void executeAttackDemo();
|
||||
void executeBackHanjoDemo();
|
||||
@@ -74,7 +67,6 @@ public:
|
||||
void cc_set();
|
||||
int execute();
|
||||
int _delete();
|
||||
/* 80B0B9AC */
|
||||
int ctrlJoint(J3DJoint*, J3DModel*);
|
||||
static int JointCallBack(J3DJoint*, int);
|
||||
int CreateHeap();
|
||||
|
||||
@@ -57,7 +57,6 @@ STATIC_ASSERT(sizeof(daLv6SwGate_c) == 0x14f8);
|
||||
|
||||
class daLv6SwGate_HIO_c : public fOpAcm_HIO_entry_c {
|
||||
public:
|
||||
/* 80C73F0C */
|
||||
daLv6SwGate_HIO_c();
|
||||
|
||||
void genMessage(JORMContext*);
|
||||
|
||||
@@ -81,7 +81,7 @@ private:
|
||||
/* 0x094E */ bool mIsInWater;
|
||||
/* 0x094F */ u8 field_0x094f;
|
||||
/* 0x0950 */ u8 field_0x0950;
|
||||
/* 0x0951 */ u8 field_0x0951;
|
||||
/* 0x0951 */ bool field_0x0951;
|
||||
/* 0x0954 */ u32 field_0x0954;
|
||||
/* 0x0954 */ u32 field_0x0958;
|
||||
/* 0x0954 */ u32 field_0x095c;
|
||||
|
||||
@@ -195,7 +195,7 @@ public:
|
||||
f32 GetCx() const { return pm_pos->x; }
|
||||
f32 GetCz() const { return pm_pos->z; }
|
||||
|
||||
public:
|
||||
private:
|
||||
/* 0x02C */ u32 m_flags;
|
||||
/* 0x030 */ cXyz* pm_pos;
|
||||
/* 0x034 */ cXyz* pm_old_pos;
|
||||
@@ -231,9 +231,11 @@ public:
|
||||
/* 0x0E4 */ cXyz unk_0xe4;
|
||||
#endif
|
||||
/* 0x0D8 */ f32 field_0xd8;
|
||||
public:
|
||||
/* 0x0DC */ dBgS_GndChk m_gnd;
|
||||
/* 0x130 */ dBgS_RoofChk m_roof;
|
||||
/* 0x180 */ dBgS_WtrChk m_wtr;
|
||||
private:
|
||||
/* 0x1D4 */ u8 m_wtr_mode;
|
||||
}; // Size: 0x1D8
|
||||
|
||||
|
||||
@@ -840,7 +840,7 @@ public:
|
||||
~dComIfG_inf_c() {}
|
||||
void ct();
|
||||
void createBaseCsr();
|
||||
dComIfG_play_c& getPlay() { return play; }
|
||||
dComIfG_play_c& getPlay() { return play; } // fake inline
|
||||
|
||||
#if PLATFORM_WII || VERSION == VERSION_SHIELD_DEBUG
|
||||
class baseCsr_c : public mDoGph_gInf_c::csr_c {
|
||||
|
||||
@@ -24,7 +24,7 @@ public:
|
||||
/* 0x1C */ f32 mBank;
|
||||
struct {
|
||||
/* 0x20 */ fpc_ProcID id;
|
||||
/* 0x24 */ char name[8];
|
||||
/* 0x24 */ char name[dStage_NAME_LENGTH];
|
||||
} mActorInfo;
|
||||
/* 0x2C */ int mAction;
|
||||
/* 0x30 */ int mTimer;
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
#ifndef D_MENU_D_MENU_FMAP_H
|
||||
#define D_MENU_D_MENU_FMAP_H
|
||||
|
||||
#include "JSystem/JHostIO/JORReflexible.h"
|
||||
#include "SSystem/SComponent/c_xyz.h"
|
||||
#include "d/d_menu_map_common.h"
|
||||
#include "d/d_msg_flow.h"
|
||||
|
||||
@@ -141,13 +141,13 @@ public:
|
||||
virtual void genMessage(JORMContext*);
|
||||
virtual u32 addString(char* param_1, u32 param_2, u32 param_3) { return field_0xc.addString(param_1, param_2, param_3); }
|
||||
virtual u32 addData(char* param_1, u32 param_2, u32 param_3) {
|
||||
(void)param_2;
|
||||
(void)param_3;
|
||||
UNUSED(param_2);
|
||||
UNUSED(param_3);
|
||||
memcpy(param_1, dMfm_HIO_prm_res_dst_s::m_res, 366);
|
||||
return 366;
|
||||
}
|
||||
virtual void copyReadBufToData(const char* param_1, s32 param_2) {
|
||||
(void)param_2;
|
||||
UNUSED(param_2);
|
||||
field_0xc.copyBufToHio(param_1);
|
||||
}
|
||||
virtual u32 addStringBinary(char* param_1, u32 param_2, u32 param_3) { return field_0xc.addStringBinary(param_1, param_2, param_3); }
|
||||
|
||||
@@ -124,10 +124,7 @@ public:
|
||||
void resetPauseStatus() { mPauseStatus = 0; }
|
||||
u8 getPauseStatus() { return mPauseStatus; }
|
||||
bool isGameStatus(int i_status) { return (mGameStatus & (u16)i_status) != 0 ? true : false; }
|
||||
bool isTouchKeyCheck(int i_status) { return mTouchKeyCheck & (1 << i_status); }
|
||||
|
||||
// fake function, should be isTouchKeyCheck
|
||||
bool isTouchKeyCheck_alt(int i_status) { return (mTouchKeyCheck >> i_status) & 1; }
|
||||
bool isTouchKeyCheck(int i_status) { return mTouchKeyCheck & (u16)(1 << i_status) ? true : false; }
|
||||
|
||||
void setMapKeyDirection(u16 i_direction) { mMapKeyDirection = i_direction; }
|
||||
bool isSub2DStatus(int i_flag) { return (mSub2DStatus & (u16)(1 << i_flag)) != 0 ? true : false; }
|
||||
@@ -486,11 +483,6 @@ inline bool dMeter2Info_isTouchKeyCheck(int i_status) {
|
||||
return g_meter2_info.isTouchKeyCheck(i_status);
|
||||
}
|
||||
|
||||
// fake function, should be dMeter2Info_isTouchKeyCheck
|
||||
inline bool dMeter2Info_isTouchKeyCheck_alt(int i_status) {
|
||||
return g_meter2_info.isTouchKeyCheck_alt(i_status);
|
||||
}
|
||||
|
||||
inline void dMeter2Info_setMapKeyDirection(u16 i_direction) {
|
||||
g_meter2_info.setMapKeyDirection(i_direction);
|
||||
}
|
||||
|
||||
+25
-23
@@ -586,7 +586,7 @@ public:
|
||||
/* vt[38] */ virtual void setVrboxcolNumInfo(int i_VrboxcolNumInfo) { mVrboxcolNumInfo = i_VrboxcolNumInfo; }
|
||||
/* vt[39] */ virtual int getVrboxcolNumInfo(void) const { return mVrboxcolNumInfo; }
|
||||
/* vt[42] */ virtual void setLightVecInfo(stage_pure_lightvec_info_class* i_LightVecInfo) {
|
||||
(void)i_LightVecInfo;
|
||||
UNUSED(i_LightVecInfo);
|
||||
dStage_SetErrorStage();
|
||||
OSReport("stage non LightVec data !!\n");
|
||||
JUT_ASSERT(3003, FALSE);
|
||||
@@ -597,7 +597,7 @@ public:
|
||||
return NULL;
|
||||
}
|
||||
/* vt[44] */ virtual void setLightVecInfoNum(int i_LightVecInfoNum) {
|
||||
(void)i_LightVecInfoNum;
|
||||
UNUSED(i_LightVecInfoNum);
|
||||
dStage_SetErrorStage();
|
||||
OSReport("stage non LightVecNum data !!\n");
|
||||
JUT_ASSERT(3014, FALSE);
|
||||
@@ -628,7 +628,7 @@ public:
|
||||
/* vt[62] */ virtual void setMapEventInfo(dStage_MapEventInfo_c* i_MapEventInfo) { mMapEventInfo = i_MapEventInfo; }
|
||||
/* vt[63] */ virtual dStage_MapEventInfo_c* getMapEventInfo(void) const { return mMapEventInfo; }
|
||||
/* vt[64] */ virtual void setFileList2Info(dStage_FileList2_dt_c* list) {
|
||||
(void)list;
|
||||
UNUSED(list);
|
||||
dStage_SetErrorStage();
|
||||
OSReport("stage non filelist2 data!\n");
|
||||
JUT_ASSERT(3123, FALSE);
|
||||
@@ -639,7 +639,7 @@ public:
|
||||
return NULL;
|
||||
}
|
||||
/* vt[66] */ virtual void setFileListInfo(dStage_FileList_dt_c* list) {
|
||||
(void)list;
|
||||
UNUSED(list);
|
||||
dStage_SetErrorStage();
|
||||
OSReport("stage non filelist data!\n");
|
||||
JUT_ASSERT(3138, FALSE);
|
||||
@@ -661,7 +661,7 @@ public:
|
||||
/* vt[77] */ virtual void resetOldMulti(void);
|
||||
/* vt[78] */ virtual dStage_Multi_c* getOldMulti(void) const { return mOldMulti; }
|
||||
/* vt[79] */ virtual void setLbnk(dStage_Lbnk_c* lbnk) {
|
||||
(void)lbnk;
|
||||
UNUSED(lbnk);
|
||||
dStage_SetErrorStage();
|
||||
OSReport("stage non Lbnk data!\n");
|
||||
JUT_ASSERT(3231, FALSE);
|
||||
@@ -746,7 +746,7 @@ public:
|
||||
virtual void setPlayerNum(u16 i_PlayerNum) { mPlayerNum = i_PlayerNum; }
|
||||
virtual u16 getPlayerNum(void) const { return mPlayerNum; }
|
||||
virtual void setRoom(roomRead_class* i_Room) {
|
||||
(void)i_Room;
|
||||
UNUSED(i_Room);
|
||||
dStage_SetErrorRoom();
|
||||
OSReport("Room non room data !!\n");
|
||||
JUT_ASSERT(2095, FALSE);
|
||||
@@ -762,7 +762,7 @@ public:
|
||||
virtual void setMapInfoBase(stage_map_info_dummy_class* i_MapInfoBase) { mMapInfoBase = i_MapInfoBase; }
|
||||
virtual stage_map_info_dummy_class* getMapInfoBase(void) const { return mMapInfoBase; }
|
||||
virtual void setPaletteInfo(stage_palette_info_class* i_PaletteInfo) {
|
||||
(void)i_PaletteInfo;
|
||||
UNUSED(i_PaletteInfo);
|
||||
dStage_SetErrorRoom();
|
||||
OSReport("Room non palet data !!\n");
|
||||
JUT_ASSERT(2126, FALSE);
|
||||
@@ -773,7 +773,7 @@ public:
|
||||
return NULL;
|
||||
}
|
||||
virtual void setPselectInfo(stage_pselect_info_class* i_PselectInfo) {
|
||||
(void)i_PselectInfo;
|
||||
UNUSED(i_PselectInfo);
|
||||
dStage_SetErrorRoom();
|
||||
OSReport("Room non pselect data !!\n");
|
||||
JUT_ASSERT(2137, FALSE);
|
||||
@@ -784,7 +784,7 @@ public:
|
||||
return NULL;
|
||||
}
|
||||
virtual void setEnvrInfo(stage_envr_info_class* i_EnvrInfo) {
|
||||
(void)i_EnvrInfo;
|
||||
UNUSED(i_EnvrInfo);
|
||||
dStage_SetErrorRoom();
|
||||
OSReport("Room non envr data !!\n");
|
||||
JUT_ASSERT(2148, FALSE);
|
||||
@@ -799,7 +799,7 @@ public:
|
||||
virtual void setVrboxcolInfo(stage_vrboxcol_info_class* i_VrboxcolInfo) { mVrboxcolInfo = i_VrboxcolInfo; }
|
||||
virtual stage_vrboxcol_info_class* getVrboxcolInfo(void) const { return mVrboxcolInfo; }
|
||||
virtual void setPlightInfo(stage_plight_info_class* i_PlightInfo) {
|
||||
(void)i_PlightInfo;
|
||||
UNUSED(i_PlightInfo);
|
||||
dStage_SetErrorRoom();
|
||||
OSReport("Room non plight data !!\n");
|
||||
JUT_ASSERT(2174, FALSE);
|
||||
@@ -810,7 +810,7 @@ public:
|
||||
return NULL;
|
||||
}
|
||||
virtual void setPaletteNumInfo(int i_PaletteNumInfo) {
|
||||
(void)i_PaletteNumInfo;
|
||||
UNUSED(i_PaletteNumInfo);
|
||||
dStage_SetErrorRoom();
|
||||
OSReport("Room non palette num data !!\n");
|
||||
JUT_ASSERT(2186, FALSE);
|
||||
@@ -821,7 +821,7 @@ public:
|
||||
return NULL;
|
||||
}
|
||||
virtual void setPselectNumInfo(int i_PselectNumInfo) {
|
||||
(void)i_PselectNumInfo;
|
||||
UNUSED(i_PselectNumInfo);
|
||||
dStage_SetErrorRoom();
|
||||
OSReport("Room non pselect num data !!\n");
|
||||
JUT_ASSERT(2197, FALSE);
|
||||
@@ -832,7 +832,7 @@ public:
|
||||
return NULL;
|
||||
}
|
||||
virtual void setEnvrNumInfo(int i_EnvrNumInfo) {
|
||||
(void)i_EnvrNumInfo;
|
||||
UNUSED(i_EnvrNumInfo);
|
||||
dStage_SetErrorRoom();
|
||||
OSReport("Room non envr num data !!\n");
|
||||
JUT_ASSERT(2208, FALSE);
|
||||
@@ -847,7 +847,7 @@ public:
|
||||
virtual void setVrboxcolNumInfo(int i_VrboxcolNumInfo) { mVrboxcolNumInfo = i_VrboxcolNumInfo; }
|
||||
virtual int getVrboxcolNumInfo(void) const { return mVrboxcolNumInfo; }
|
||||
virtual void setPlightNumInfo(int i_PlightNumInfo) {
|
||||
(void)i_PlightNumInfo;
|
||||
UNUSED(i_PlightNumInfo);
|
||||
dStage_SetErrorRoom();
|
||||
OSReport("Room non plight num data !!\n");
|
||||
JUT_ASSERT(2223, FALSE);
|
||||
@@ -862,7 +862,7 @@ public:
|
||||
virtual void setLightVecInfoNum(int i_LightVecInfoNum) { mLightVecInfoNum = i_LightVecInfoNum; }
|
||||
virtual int getLightVecInfoNum(void) const { return mLightVecInfoNum; }
|
||||
virtual void setStagInfo(stage_stag_info_class* i_StagInfo) {
|
||||
(void)i_StagInfo;
|
||||
UNUSED(i_StagInfo);
|
||||
dStage_SetErrorRoom();
|
||||
OSReport("Room non stag data !!\n");
|
||||
JUT_ASSERT(2256, FALSE);
|
||||
@@ -875,7 +875,7 @@ public:
|
||||
virtual void setSclsInfo(stage_scls_info_dummy_class* i_SclsInfo) { mSclsInfo = i_SclsInfo; }
|
||||
virtual stage_scls_info_dummy_class* getSclsInfo(void) const { return mSclsInfo; }
|
||||
virtual void setPntInfo(dStage_dPnt_c* i_PntInfo) {
|
||||
(void)i_PntInfo;
|
||||
UNUSED(i_PntInfo);
|
||||
dStage_SetErrorRoom();
|
||||
OSReport("Room non Pnt data !\n");
|
||||
JUT_ASSERT(2281, FALSE);
|
||||
@@ -886,7 +886,7 @@ public:
|
||||
return NULL;
|
||||
}
|
||||
virtual void setPathInfo(dStage_dPath_c* i_PathInfo) {
|
||||
(void)i_PathInfo;
|
||||
UNUSED(i_PathInfo);
|
||||
dStage_SetErrorRoom();
|
||||
OSReport("Room non Path data !\n");
|
||||
JUT_ASSERT(2292, FALSE);
|
||||
@@ -913,7 +913,7 @@ public:
|
||||
virtual void setFloorInfo(dStage_FloorInfo_c* i_FloorInfo) { mFloorInfo = i_FloorInfo; }
|
||||
virtual dStage_FloorInfo_c* getFloorInfo(void) const { return mFloorInfo; }
|
||||
virtual void setMemoryConfig(dStage_MemoryConfig_c* i_MemoryConfig) {
|
||||
(void)i_MemoryConfig;
|
||||
UNUSED(i_MemoryConfig);
|
||||
OSReport("Room non memory config data!\n");
|
||||
JUT_ASSERT(2414, FALSE);
|
||||
}
|
||||
@@ -923,7 +923,7 @@ public:
|
||||
return NULL;
|
||||
}
|
||||
virtual void setMemoryMap(dStage_MemoryMap_c* i_MemoryMap) {
|
||||
(void)i_MemoryMap;
|
||||
UNUSED(i_MemoryMap);
|
||||
OSReport("Room non memory map data!\n");
|
||||
JUT_ASSERT(2433, FALSE);
|
||||
}
|
||||
@@ -933,7 +933,7 @@ public:
|
||||
return NULL;
|
||||
}
|
||||
virtual void setMulti(dStage_Multi_c* i_Multi) {
|
||||
(void)i_Multi;
|
||||
UNUSED(i_Multi);
|
||||
OSReport("Room non multi data!\n");
|
||||
JUT_ASSERT(2452, FALSE);
|
||||
}
|
||||
@@ -960,7 +960,7 @@ public:
|
||||
virtual void setTresure(stage_tresure_class* i_Tresure) { mTresure = i_Tresure; }
|
||||
virtual stage_tresure_class* getTresure(void) const { return mTresure; }
|
||||
virtual void setDMap(dStage_DMap_c* i_DMap) {
|
||||
(void)i_DMap;
|
||||
UNUSED(i_DMap);
|
||||
OS_REPORT("Room non DMap data\n");
|
||||
JUT_ASSERT(2508, FALSE);
|
||||
}
|
||||
@@ -974,7 +974,7 @@ public:
|
||||
virtual void setDoor(stage_tgsc_class* i_Door) { mDoor = i_Door; }
|
||||
virtual stage_tgsc_class* getDoor(void) const { return mDoor; }
|
||||
virtual void setMapPath(void* i_MapPath) {
|
||||
(void)i_MapPath;
|
||||
UNUSED(i_MapPath);
|
||||
OSReport("stage non 2d map path data !!\n");
|
||||
JUT_ASSERT(2557, FALSE);
|
||||
}
|
||||
@@ -984,7 +984,7 @@ public:
|
||||
return NULL;
|
||||
}
|
||||
virtual void setElst(dStage_Elst_c* i_Elst) {
|
||||
(void)i_Elst;
|
||||
UNUSED(i_Elst);
|
||||
dStage_SetErrorRoom();
|
||||
OSReport("Room non envLayserSet data\n");
|
||||
JUT_ASSERT(2572, FALSE);
|
||||
@@ -1323,6 +1323,8 @@ void dStage_dt_c_roomLoader(void* i_data, dStage_dt_c* stageDt, int param_2);
|
||||
dStage_KeepDoorInfo* dStage_GetKeepDoorInfo();
|
||||
dStage_KeepDoorInfo* dStage_GetRoomKeepDoorInfo();
|
||||
void dStage_dt_c_fieldMapLoader(void* i_data, dStage_dt_c* i_stage);
|
||||
|
||||
#define dStage_NAME_LENGTH 8
|
||||
const char* dStage_getName(s16 procName, s8 argument);
|
||||
|
||||
#if VERSION == VERSION_WII_USA_R0
|
||||
|
||||
@@ -842,7 +842,7 @@ void fopAcM_showAssert_f(const fopAc_ac_c*, const char*, int, const char*, ...);
|
||||
#define fopAcM_setWarningMessage(...)
|
||||
#endif
|
||||
|
||||
void fopAcM_getNameString(const fopAc_ac_c*, char*);
|
||||
BOOL fopAcM_getNameString(const fopAc_ac_c*, char*);
|
||||
|
||||
class fopAcM_lc_c {
|
||||
public:
|
||||
|
||||
@@ -2,20 +2,25 @@
|
||||
#define F_F_OP_SCENE_H_
|
||||
|
||||
#include "f_op/f_op_scene_tag.h"
|
||||
#include "f_pc/f_pc_leaf.h"
|
||||
|
||||
struct request_of_phase_process_class;
|
||||
class mDoDvdThd_command_c;
|
||||
|
||||
struct scene_method_class {
|
||||
/* 0x00 */ leafdraw_method_class base;
|
||||
};
|
||||
|
||||
typedef struct scene_process_profile_definition {
|
||||
/* 0x00 */ node_process_profile_definition nase;
|
||||
/* 0x20 */ process_method_class* submethod; // Subclass methods
|
||||
/* 0x20 */ scene_method_class* submethod; // Subclass methods
|
||||
/* 0x24 */ u32 unk_0x24; // padding?
|
||||
} scene_process_profile_definition;
|
||||
|
||||
class scene_class {
|
||||
public:
|
||||
/* 0x000 */ process_node_class base;
|
||||
/* 0x1AC */ process_method_class* submethod;
|
||||
/* 0x1AC */ scene_method_class* submethod;
|
||||
/* 0x1B0 */ scene_tag_class scene_tag;
|
||||
};
|
||||
|
||||
|
||||
@@ -44,6 +44,10 @@
|
||||
#define ROUND(n, a) (((u32)(n) + (a)-1) & ~((a)-1))
|
||||
#define TRUNC(n, a) (((u32)(n)) & ~((a)-1))
|
||||
|
||||
// Silence unused parameter warnings.
|
||||
// Necessary for debug matches.
|
||||
#define UNUSED(x) ((void)(x))
|
||||
|
||||
#ifndef decltype
|
||||
#define decltype __decltype__
|
||||
#endif
|
||||
@@ -68,6 +72,7 @@
|
||||
// Silence clangd errors about MWCC PPC intrinsics by declaring them here.
|
||||
extern int __cntlzw(unsigned int);
|
||||
extern int __rlwimi(int, int, int, int, int);
|
||||
extern void __dcbf(void*, int);
|
||||
extern void __dcbz(void*, int);
|
||||
extern void __sync();
|
||||
extern int __abs(int);
|
||||
|
||||
@@ -314,7 +314,7 @@ inline void mDoAud_loadStaticWaves() {
|
||||
|
||||
inline int mDoAud_monsSeStart(u32 i_soundId, const Vec* i_pos, u32 i_actorId, u32 param_3,
|
||||
s8 i_reverb) {
|
||||
(void)i_actorId;
|
||||
UNUSED(i_actorId);
|
||||
return Z2GetAudioMgr()->seStart(i_soundId, i_pos, param_3, i_reverb, 1.0f, 1.0f, -1.0f, -1.0f,
|
||||
0);
|
||||
}
|
||||
|
||||
@@ -93,9 +93,6 @@ void J2DGrafContext::place(JGeometry::TBox2<f32> const& bounds) {
|
||||
mScissorBounds = bounds;
|
||||
}
|
||||
|
||||
/* 802E9118-802E9234 2E3A58 011C+00 1/1 4/4 0/0 .text
|
||||
* setColor__14J2DGrafContextFQ28JUtility6TColorQ28JUtility6TColorQ28JUtility6TColorQ28JUtility6TColor
|
||||
*/
|
||||
void J2DGrafContext::setColor(JUtility::TColor colorTL, JUtility::TColor colorTR,
|
||||
JUtility::TColor colorBR, JUtility::TColor colorBL) {
|
||||
mColorTL = colorTL;
|
||||
|
||||
@@ -60,9 +60,6 @@ u32 J2DMaterialFactory::countStages(int param_0) const {
|
||||
return uVar3;
|
||||
}
|
||||
|
||||
/* 802F2D1C-802F362C 2ED65C 0910+00 0/0 1/1 0/0 .text
|
||||
* create__18J2DMaterialFactoryCFP11J2DMaterialiUlP15J2DResReferenceP15J2DResReferenceP10JKRArchive
|
||||
*/
|
||||
J2DMaterial* J2DMaterialFactory::create(J2DMaterial* param_0, int index, u32 param_2,
|
||||
J2DResReference* param_3, J2DResReference* param_4,
|
||||
JKRArchive* param_5) const {
|
||||
|
||||
@@ -34,9 +34,6 @@ J2DPrint::J2DPrint(JUTFont* pFont, JUtility::TColor charColor, JUtility::TColor
|
||||
private_initiate(pFont, 0.0f, 0.0f, charColor, gradColor, 0, 0xFFFFFFFF, true);
|
||||
}
|
||||
|
||||
/* 802F4394-802F4420 2EECD4 008C+00 0/0 6/6 0/0 .text
|
||||
* __ct__8J2DPrintFP7JUTFontffQ28JUtility6TColorQ28JUtility6TColorQ28JUtility6TColorQ28JUtility6TColor
|
||||
*/
|
||||
J2DPrint::J2DPrint(JUTFont* pFont, f32 charSpacing, f32 lineSpacing, JUtility::TColor charColor,
|
||||
JUtility::TColor gradColor, JUtility::TColor blackColor, JUtility::TColor whiteColor) {
|
||||
private_initiate(pFont, charSpacing, lineSpacing, charColor, gradColor, blackColor, whiteColor, false);
|
||||
@@ -50,9 +47,6 @@ void J2DPrint::initiate() {
|
||||
}
|
||||
}
|
||||
|
||||
/* 802F4468-802F4658 2EEDA8 01F0+00 1/1 0/0 0/0 .text
|
||||
* private_initiate__8J2DPrintFP7JUTFontffQ28JUtility6TColorQ28JUtility6TColorQ28JUtility6TColorQ28JUtility6TColorb
|
||||
*/
|
||||
void J2DPrint::private_initiate(JUTFont* pFont, f32 charSpacing, f32 lineSpacing, JUtility::TColor charColor,
|
||||
JUtility::TColor gradColor, JUtility::TColor blackColor,
|
||||
JUtility::TColor whiteColor, bool param_7) {
|
||||
@@ -317,7 +311,7 @@ f32 J2DPrint::parse(const u8* pString, int length, int param_2, u16* param_3,
|
||||
} else {
|
||||
if (param_6) {
|
||||
if (param_3 != NULL) {
|
||||
mFont->drawChar_scale(mCursorH + (f32)(s16)param_3[someIndex], mCursorV, (s32)mScaleX, (s32)mScaleY, iCharacter, true);
|
||||
mFont->drawChar_scale(mCursorH + (s16)param_3[someIndex], mCursorV, (s32)mScaleX, (s32)mScaleY, iCharacter, true);
|
||||
} else {
|
||||
mFont->drawChar_scale(mCursorH, mCursorV, (s32)mScaleX, (s32)mScaleY, iCharacter, true);
|
||||
}
|
||||
|
||||
@@ -108,48 +108,48 @@ J2DTexMtxInfo const j2dDefaultTexMtxInfo = {1, 1, 255, 255, 0.5f, 0.5f,
|
||||
|
||||
J2DIndTexMtxInfo const j2dDefaultIndTexMtxInfo = {{0.5f, 0.0f, 0.0f, 0.0f, 0.5f, 0.0f}, 1};
|
||||
|
||||
extern J2DTevStageInfo const j2dDefaultTevStageInfo = {
|
||||
J2DTevStageInfo const j2dDefaultTevStageInfo = {
|
||||
4, GX_CC_RASC, GX_CC_ZERO, GX_CC_ZERO, GX_CC_CPREV, GX_TEV_ADD,
|
||||
GX_TB_ZERO, GX_CS_SCALE_1, 1, GX_TEVPREV, GX_CA_RASA, GX_CA_ZERO,
|
||||
GX_CA_ZERO, GX_CA_APREV, GX_TEV_ADD, GX_TB_ZERO, GX_CS_SCALE_1, 1,
|
||||
GX_TEVPREV};
|
||||
|
||||
extern const J2DIndTevStageInfo j2dDefaultIndTevStageInfo = {
|
||||
const J2DIndTevStageInfo j2dDefaultIndTevStageInfo = {
|
||||
GX_INDTEXSTAGE0, GX_ITB_NONE, GX_ITB_NONE, GX_ITM_OFF, GX_ITW_OFF,
|
||||
GX_ITW_OFF, 0, 0, GX_ITBA_OFF,
|
||||
};
|
||||
|
||||
extern const GXColor j2dDefaultColInfo = {255, 255, 255, 255};
|
||||
const GXColor j2dDefaultColInfo = {255, 255, 255, 255};
|
||||
|
||||
extern const J2DTevOrderInfo j2dDefaultTevOrderInfoNull = {
|
||||
const J2DTevOrderInfo j2dDefaultTevOrderInfoNull = {
|
||||
GX_TEXCOORD_NULL, GX_TEXMAP_NULL, GX_COLOR_NULL, 0};
|
||||
|
||||
extern const J2DIndTexOrderInfo j2dDefaultIndTexOrderNull = {
|
||||
const J2DIndTexOrderInfo j2dDefaultIndTexOrderNull = {
|
||||
GX_TEXCOORD_NULL,
|
||||
GX_TEXMAP_NULL,
|
||||
};
|
||||
|
||||
extern const GXColorS10 j2dDefaultTevColor = {255, 255, 255, 255};
|
||||
const GXColorS10 j2dDefaultTevColor = {255, 255, 255, 255};
|
||||
|
||||
extern const J2DIndTexCoordScaleInfo j2dDefaultIndTexCoordScaleInfo = {
|
||||
const J2DIndTexCoordScaleInfo j2dDefaultIndTexCoordScaleInfo = {
|
||||
GX_ITS_1,
|
||||
GX_ITS_1,
|
||||
};
|
||||
|
||||
extern const GXColor j2dDefaultTevKColor = {255, 255, 255, 255};
|
||||
const GXColor j2dDefaultTevKColor = {255, 255, 255, 255};
|
||||
|
||||
extern const J2DTevSwapModeInfo j2dDefaultTevSwapMode = {GX_TEV_SWAP0, GX_TEV_SWAP0, 0, 0};
|
||||
const J2DTevSwapModeInfo j2dDefaultTevSwapMode = {GX_TEV_SWAP0, GX_TEV_SWAP0, 0, 0};
|
||||
|
||||
extern const J2DTevSwapModeTableInfo j2dDefaultTevSwapModeTable = {
|
||||
const J2DTevSwapModeTableInfo j2dDefaultTevSwapModeTable = {
|
||||
GX_CH_RED, GX_CH_GREEN, GX_CH_BLUE, GX_CH_ALPHA};
|
||||
|
||||
extern const J2DBlendInfo j2dDefaultBlendInfo = {GX_BM_BLEND, GX_BL_SRCALPHA, GX_BL_INVSRCALPHA,
|
||||
const J2DBlendInfo j2dDefaultBlendInfo = {GX_BM_BLEND, GX_BL_SRCALPHA, GX_BL_INVSRCALPHA,
|
||||
GX_LO_NOOP};
|
||||
|
||||
extern const u8 j2dDefaultPEBlockDither = 0;
|
||||
const u8 j2dDefaultPEBlockDither = 0;
|
||||
|
||||
extern const J2DColorChanInfo j2dDefaultColorChanInfo = {0, 3, 0, 0};
|
||||
const J2DColorChanInfo j2dDefaultColorChanInfo = {0, 3, 0, 0};
|
||||
|
||||
extern const u8 j2dDefaultTevSwapTableID = 0x1B;
|
||||
const u8 j2dDefaultTevSwapTableID = 0x1B;
|
||||
|
||||
extern const u16 j2dDefaultAlphaCmp = 0x00E7;
|
||||
const u16 j2dDefaultAlphaCmp = 0x00E7;
|
||||
|
||||
@@ -109,9 +109,6 @@ J2DTextBox::J2DTextBox(J2DPane* p_pane, JSURandomInputStream* p_stream, u32 para
|
||||
mTextFontOwned = true;
|
||||
}
|
||||
|
||||
/* 802FFBC4-802FFC58 2FA504 0094+00 0/0 1/1 0/0 .text
|
||||
* __ct__10J2DTextBoxFUxRCQ29JGeometry8TBox2<f>PC7ResFONTPCcs18J2DTextBoxHBinding18J2DTextBoxVBinding
|
||||
*/
|
||||
J2DTextBox::J2DTextBox(u64 tag, JGeometry::TBox2<f32> const& bounds, ResFONT const* p_font,
|
||||
char const* string, s16 strLength, J2DTextBoxHBinding hBind,
|
||||
J2DTextBoxVBinding vBind)
|
||||
|
||||
@@ -423,9 +423,6 @@ void J2DWindow::resize(f32 param_0, f32 param_1) {
|
||||
}
|
||||
}
|
||||
|
||||
/* 802FB12C-802FB1D8 2F5A6C 00AC+00 1/1 0/0 0/0 .text
|
||||
* setContentsColor__9J2DWindowFQ28JUtility6TColorQ28JUtility6TColorQ28JUtility6TColorQ28JUtility6TColor
|
||||
*/
|
||||
void J2DWindow::setContentsColor(JUtility::TColor param_0, JUtility::TColor param_1,
|
||||
JUtility::TColor param_2, JUtility::TColor param_3) {
|
||||
field_0x128.set(param_0);
|
||||
|
||||
@@ -20,9 +20,6 @@ J3DJointTree::J3DJointTree()
|
||||
mWEvlpMixMtxIndex(0), mWEvlpMixWeight(0), mInvJointMtx(NULL), mWEvlpImportantMtxIdx(0),
|
||||
field_0x40(0), mJointName(NULL) {}
|
||||
|
||||
/* 80325A9C-80325C00 3203DC 0164+00 1/0 2/2 0/0 .text
|
||||
* makeHierarchy__12J3DJointTreeFP8J3DJointPPC17J3DModelHierarchyP16J3DMaterialTableP13J3DShapeTable
|
||||
*/
|
||||
void J3DJointTree::makeHierarchy(J3DJoint* pJoint, const J3DModelHierarchy** pHierarchy,
|
||||
J3DMaterialTable* pMaterialTable, J3DShapeTable* pShapeTable) {
|
||||
J3D_ASSERT_NULLPTR(95, pHierarchy != NULL);
|
||||
|
||||
@@ -335,9 +335,6 @@ static u8 GX2HWFiltConv[6] = {
|
||||
0x00, 0x04, 0x01, 0x05, 0x02, 0x06,
|
||||
};
|
||||
|
||||
/* 8030E438-8030E5D4 308D78 019C+00 0/0 1/1 0/0 .text
|
||||
* J3DGDSetTexLookupMode__F11_GXTexMapID14_GXTexWrapMode14_GXTexWrapMode12_GXTexFilter12_GXTexFilterfffUcUc13_GXAnisotropy
|
||||
*/
|
||||
void J3DGDSetTexLookupMode(GXTexMapID id, GXTexWrapMode wrap_s,
|
||||
GXTexWrapMode wrap_t, GXTexFilter min_filt,
|
||||
GXTexFilter mag_filt, f32 min_lod, f32 max_lod,
|
||||
@@ -435,9 +432,6 @@ void J3DGDSetIndTexMtx(GXIndTexMtxID mtx_id, f32 offset[2][3], s8 scale_exp) {
|
||||
));
|
||||
}
|
||||
|
||||
/* 8030EE10-8030EF08 309750 00F8+00 0/0 2/2 0/0 .text
|
||||
* J3DGDSetIndTexCoordScale__F16_GXIndTexStageID14_GXIndTexScale14_GXIndTexScale14_GXIndTexScale14_GXIndTexScale
|
||||
*/
|
||||
void J3DGDSetIndTexCoordScale(GXIndTexStageID indStageEven, GXIndTexScale scaleS0,
|
||||
GXIndTexScale scaleT0, GXIndTexScale scaleS1,
|
||||
GXIndTexScale scaleT1) {
|
||||
@@ -451,9 +445,6 @@ void J3DGDSetIndTexCoordScale(GXIndTexStageID indStageEven, GXIndTexScale scaleS
|
||||
));
|
||||
}
|
||||
|
||||
/* 8030EF08-8030F108 309848 0200+00 0/0 2/2 0/0 .text
|
||||
* J3DGDSetIndTexOrder__FUl13_GXTexCoordID11_GXTexMapID13_GXTexCoordID11_GXTexMapID13_GXTexCoordID11_GXTexMapID13_GXTexCoordID11_GXTexMapID
|
||||
*/
|
||||
void J3DGDSetIndTexOrder(u32 count, GXTexCoordID texCoord0, GXTexMapID texMap0,
|
||||
GXTexCoordID texCoord1, GXTexMapID texMap1,
|
||||
GXTexCoordID texCoord2, GXTexMapID texMap2,
|
||||
@@ -492,9 +483,6 @@ void J3DGDSetIndTexOrder(u32 count, GXTexCoordID texCoord0, GXTexMapID texMap0,
|
||||
J3DGDWriteBPCmd(BP_IND_MASK(mask, 0xF));
|
||||
}
|
||||
|
||||
/* 8030F108-8030F294 309A48 018C+00 0/0 9/9 0/0 .text
|
||||
* J3DGDSetTevOrder__F13_GXTevStageID13_GXTexCoordID11_GXTexMapID12_GXChannelID13_GXTexCoordID11_GXTexMapID12_GXChannelID
|
||||
*/
|
||||
void J3DGDSetTevOrder(GXTevStageID evenStage, GXTexCoordID coord0, GXTexMapID map0,
|
||||
GXChannelID color0, GXTexCoordID coord1, GXTexMapID map1,
|
||||
GXChannelID color1) {
|
||||
|
||||
@@ -67,11 +67,8 @@ u32 J3DShapeMtx::sCurrentPipeline;
|
||||
|
||||
u8* J3DShapeMtx::sCurrentScaleFlag;
|
||||
|
||||
// This below is technically part of J3DScaleFlag.
|
||||
/* 804515B0 0001+00 data_804515B0 None */
|
||||
bool J3DShapeMtx::sNBTFlag;
|
||||
|
||||
/* 804515B1 0003+00 data_804515B1 None */
|
||||
bool J3DShapeMtx::sLODFlag;
|
||||
|
||||
u32 J3DShapeMtx::sTexMtxLoadType;
|
||||
|
||||
@@ -315,7 +315,7 @@ void loadNBTScale(J3DNBTScale& NBTScale) {
|
||||
}
|
||||
}
|
||||
|
||||
extern const J3DLightInfo j3dDefaultLightInfo = {
|
||||
const J3DLightInfo j3dDefaultLightInfo = {
|
||||
0.0f, 0.0f, 0.0f,
|
||||
0.0f, -1.0f, 0.0f,
|
||||
0xff, 0xff, 0xff, 0xff,
|
||||
@@ -323,14 +323,14 @@ extern const J3DLightInfo j3dDefaultLightInfo = {
|
||||
1.0f, 0.0f, 0.0f,
|
||||
};
|
||||
|
||||
extern J3DTexCoordInfo const j3dDefaultTexCoordInfo[8] = {
|
||||
J3DTexCoordInfo const j3dDefaultTexCoordInfo[8] = {
|
||||
{GX_MTX2x4, GX_TG_TEX0, GX_IDENTITY, 0}, {GX_MTX2x4, GX_TG_TEX1, GX_IDENTITY, 0},
|
||||
{GX_MTX2x4, GX_TG_TEX2, GX_IDENTITY, 0}, {GX_MTX2x4, GX_TG_TEX3, GX_IDENTITY, 0},
|
||||
{GX_MTX2x4, GX_TG_TEX4, GX_IDENTITY, 0}, {GX_MTX2x4, GX_TG_TEX5, GX_IDENTITY, 0},
|
||||
{GX_MTX2x4, GX_TG_TEX6, GX_IDENTITY, 0}, {GX_MTX2x4, GX_TG_TEX7, GX_IDENTITY, 0},
|
||||
};
|
||||
|
||||
extern J3DTexMtxInfo const j3dDefaultTexMtxInfo = {
|
||||
J3DTexMtxInfo const j3dDefaultTexMtxInfo = {
|
||||
0x01,
|
||||
0x00,
|
||||
0xFF,
|
||||
@@ -341,27 +341,27 @@ extern J3DTexMtxInfo const j3dDefaultTexMtxInfo = {
|
||||
1.0f},
|
||||
};
|
||||
|
||||
extern J3DIndTexMtxInfo const j3dDefaultIndTexMtxInfo = {
|
||||
J3DIndTexMtxInfo const j3dDefaultIndTexMtxInfo = {
|
||||
0.5f, 0.0f, 0.0f,
|
||||
0.0f, 0.5f, 0.0f,
|
||||
1
|
||||
};
|
||||
|
||||
extern J3DTevStageInfo const j3dDefaultTevStageInfo = {
|
||||
J3DTevStageInfo const j3dDefaultTevStageInfo = {
|
||||
0x04, 0x0A, 0x0F, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00,
|
||||
0x05, 0x07, 0x07, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00,
|
||||
};
|
||||
|
||||
extern J3DIndTevStageInfo const j3dDefaultIndTevStageInfo = {
|
||||
J3DIndTevStageInfo const j3dDefaultIndTevStageInfo = {
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
};
|
||||
|
||||
extern J3DFogInfo const j3dDefaultFogInfo = {
|
||||
J3DFogInfo const j3dDefaultFogInfo = {
|
||||
0x00, 0x00, 0x0140, 0.0f, 0.0f, 0.1f, 10000.0f, 0xFF, 0xFF, 0xFF, 0x00,
|
||||
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
|
||||
};
|
||||
|
||||
extern J3DNBTScaleInfo const j3dDefaultNBTScaleInfo = {
|
||||
J3DNBTScaleInfo const j3dDefaultNBTScaleInfo = {
|
||||
0x00, 1.0f, 1.0f, 1.0f,
|
||||
};
|
||||
|
||||
@@ -413,7 +413,6 @@ void makeAlphaCmpTable() {
|
||||
}
|
||||
}
|
||||
|
||||
extern u8 j3dZModeTable[96];
|
||||
u8 j3dZModeTable[96];
|
||||
|
||||
void makeZModeTable() {
|
||||
@@ -492,43 +491,43 @@ static void J3DGDLoadPostTexMtxImm(f32 (*param_1)[4], u32 param_2) {
|
||||
J3DGDWrite_f32(param_1[2][3]);
|
||||
}
|
||||
|
||||
extern const GXColor j3dDefaultColInfo = {0xFF, 0xFF, 0xFF, 0xFF};
|
||||
const GXColor j3dDefaultColInfo = {0xFF, 0xFF, 0xFF, 0xFF};
|
||||
|
||||
extern const GXColor j3dDefaultAmbInfo = {0x32, 0x32, 0x32, 0x32};
|
||||
const GXColor j3dDefaultAmbInfo = {0x32, 0x32, 0x32, 0x32};
|
||||
|
||||
extern const u8 j3dDefaultNumChans = 1;
|
||||
const u8 j3dDefaultNumChans = 1;
|
||||
|
||||
extern const J3DTevOrderInfo j3dDefaultTevOrderInfoNull = {0xFF, 0xFF, 0xFF, 0x00};
|
||||
const J3DTevOrderInfo j3dDefaultTevOrderInfoNull = {0xFF, 0xFF, 0xFF, 0x00};
|
||||
|
||||
extern const J3DIndTexOrderInfo j3dDefaultIndTexOrderNull = {0xFF, 0xFF, 0x00, 0x00};
|
||||
const J3DIndTexOrderInfo j3dDefaultIndTexOrderNull = {0xFF, 0xFF, 0x00, 0x00};
|
||||
|
||||
extern const GXColorS10 j3dDefaultTevColor = {0xFF, 0xFF, 0xFF, 0xFF};
|
||||
const GXColorS10 j3dDefaultTevColor = {0xFF, 0xFF, 0xFF, 0xFF};
|
||||
|
||||
extern const J3DIndTexCoordScaleInfo j3dDefaultIndTexCoordScaleInfo = {
|
||||
const J3DIndTexCoordScaleInfo j3dDefaultIndTexCoordScaleInfo = {
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
};
|
||||
|
||||
extern const GXColor j3dDefaultTevKColor = {0xFF, 0xFF, 0xFF, 0xFF};
|
||||
const GXColor j3dDefaultTevKColor = {0xFF, 0xFF, 0xFF, 0xFF};
|
||||
|
||||
extern J3DTevSwapModeInfo const j3dDefaultTevSwapMode = {
|
||||
J3DTevSwapModeInfo const j3dDefaultTevSwapMode = {
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
};
|
||||
|
||||
extern const J3DTevSwapModeTableInfo j3dDefaultTevSwapModeTable = {0x00, 0x01, 0x02, 0x03};
|
||||
const J3DTevSwapModeTableInfo j3dDefaultTevSwapModeTable = {0x00, 0x01, 0x02, 0x03};
|
||||
|
||||
extern const J3DBlendInfo j3dDefaultBlendInfo = {GX_BM_BLEND, GX_BL_SRCALPHA, GX_BL_INVSRCALPHA, GX_LO_NOOP};
|
||||
const J3DBlendInfo j3dDefaultBlendInfo = {GX_BM_BLEND, GX_BL_SRCALPHA, GX_BL_INVSRCALPHA, GX_LO_NOOP};
|
||||
|
||||
extern const J3DColorChanInfo j3dDefaultColorChanInfo = {
|
||||
const J3DColorChanInfo j3dDefaultColorChanInfo = {
|
||||
0x00, 0x00, 0x00, 0x02, 0x02, 0x00, 0xFF, 0xFF,
|
||||
};
|
||||
|
||||
extern const u8 j3dDefaultTevSwapTableID = 0x1B;
|
||||
const u8 j3dDefaultTevSwapTableID = 0x1B;
|
||||
|
||||
const u16 j3dDefaultAlphaCmpID = 0x00E7;
|
||||
|
||||
|
||||
@@ -70,12 +70,12 @@ void J3DCalcBBoardMtx(__REGISTER Mtx mtx) {
|
||||
mtx[2][2] = z;
|
||||
}
|
||||
|
||||
extern J3DTransformInfo const j3dDefaultTransformInfo = {
|
||||
J3DTransformInfo const j3dDefaultTransformInfo = {
|
||||
{1.0f, 1.0f, 1.0f}, {0, 0, 0}, {0.0f, 0.0f, 0.0f}};
|
||||
|
||||
extern Vec const j3dDefaultScale = {1.0f, 1.0f, 1.0f};
|
||||
Vec const j3dDefaultScale = {1.0f, 1.0f, 1.0f};
|
||||
|
||||
extern Mtx const j3dDefaultMtx = {
|
||||
Mtx const j3dDefaultMtx = {
|
||||
{1.0f, 0.0f, 0.0f, 0.0f}, {0.0f, 1.0f, 0.0f, 0.0f}, {0.0f, 0.0f, 1.0f, 0.0f}};
|
||||
|
||||
void J3DCalcYBBoardMtx(Mtx mtx) {
|
||||
@@ -541,7 +541,7 @@ loop:
|
||||
}
|
||||
#endif // clang-format on
|
||||
|
||||
extern f32 const PSMulUnit01[] = {
|
||||
f32 const PSMulUnit01[] = {
|
||||
0.0f,
|
||||
-1.0f,
|
||||
};
|
||||
|
||||
@@ -19,9 +19,6 @@ u32 JASAramStream::sBlockSize;
|
||||
|
||||
u32 JASAramStream::sChannelMax;
|
||||
|
||||
/* 80451260 0001+00 data_80451260 None */
|
||||
/* 80451261 0001+00 data_80451261 None */
|
||||
/* 80451262 0006+00 data_80451262 None */
|
||||
bool struct_80451260;
|
||||
bool struct_80451261;
|
||||
|
||||
|
||||
@@ -270,9 +270,6 @@ JASBasicBank* JASBNKParser::Ver0::createBasicBank(void const* stream, JKRHeap* h
|
||||
return bank;
|
||||
}
|
||||
|
||||
/* 80299E68-80299F8C 2947A8 0124+00 1/1 0/0 0/0 .text
|
||||
* findOscPtr__Q212JASBNKParser4Ver0FP12JASBasicBankPCQ312JASBNKParser4Ver07THeaderPCQ312JASBNKParser4Ver04TOsc
|
||||
*/
|
||||
JASOscillator::Data* JASBNKParser::Ver0::findOscPtr(JASBasicBank* bank, THeader const* header,
|
||||
TOsc const* osc) {
|
||||
TOffsetData const* data = &header->mOffsets;
|
||||
|
||||
@@ -12,8 +12,6 @@ extern "C" void __DSP_remove_task(DSPTaskInfo* task);
|
||||
|
||||
static void Dsp_Update_Request();
|
||||
|
||||
/* 80451308 0001+00 data_80451308 None */
|
||||
/* 80451309 0003+00 data_80451309 None */
|
||||
static vu8 struct_80451308;
|
||||
static u8 struct_80451309;
|
||||
|
||||
|
||||
@@ -22,9 +22,6 @@ JGadget::TNodeLinkList::erase(JGadget::TNodeLinkList::iterator it) {
|
||||
return erase(it, next);
|
||||
}
|
||||
|
||||
/* 802DCAA0-802DCB08 2D73E0 0068+00 1/1 0/0 0/0 .text
|
||||
* erase__Q27JGadget13TNodeLinkListFQ37JGadget13TNodeLinkList8iteratorQ37JGadget13TNodeLinkList8iterator
|
||||
*/
|
||||
JGadget::TNodeLinkList::iterator JGadget::TNodeLinkList::erase(iterator a, iterator b) {
|
||||
TLinkListNode* cur = a.node;
|
||||
TLinkListNode* end = b.node;
|
||||
@@ -38,9 +35,6 @@ JGadget::TNodeLinkList::iterator JGadget::TNodeLinkList::erase(iterator a, itera
|
||||
return b;
|
||||
}
|
||||
|
||||
/* 802DCB08-802DCBA8 2D7448 00A0+00 1/1 0/0 0/0 .text
|
||||
* splice__Q27JGadget13TNodeLinkListFQ37JGadget13TNodeLinkList8iteratorRQ27JGadget13TNodeLinkListQ37JGadget13TNodeLinkList8iterator
|
||||
*/
|
||||
void JGadget::TNodeLinkList::splice(iterator it, TNodeLinkList& rSrc, iterator itSrc) {
|
||||
iterator itSrcNext = itSrc;
|
||||
++itSrcNext;
|
||||
|
||||
@@ -18,9 +18,6 @@ static int decompSZS_subroutine(u8*, u8*);
|
||||
static u8* firstSrcData();
|
||||
static u8* nextSrcData(u8*);
|
||||
|
||||
/* 802D9B98-802D9C54 2D44D8 00BC+00 0/0 1/1 0/0 .text
|
||||
* loadToMainRAM__12JKRDvdRipperFPCcPUc15JKRExpandSwitchUlP7JKRHeapQ212JKRDvdRipper15EAllocDirectionUlPiPUl
|
||||
*/
|
||||
void* JKRDvdRipper::loadToMainRAM(char const* name, u8* dst, JKRExpandSwitch expandSwitch,
|
||||
u32 dstLength, JKRHeap* heap,
|
||||
JKRDvdRipper::EAllocDirection allocDirection, u32 offset,
|
||||
@@ -33,9 +30,6 @@ void* JKRDvdRipper::loadToMainRAM(char const* name, u8* dst, JKRExpandSwitch exp
|
||||
pCompression, param_8);
|
||||
}
|
||||
|
||||
/* 802D9C54-802D9D10 2D4594 00BC+00 0/0 9/9 0/0 .text
|
||||
* loadToMainRAM__12JKRDvdRipperFlPUc15JKRExpandSwitchUlP7JKRHeapQ212JKRDvdRipper15EAllocDirectionUlPiPUl
|
||||
*/
|
||||
void* JKRDvdRipper::loadToMainRAM(s32 entryNumber, u8* dst, JKRExpandSwitch expandSwitch,
|
||||
u32 dstLength, JKRHeap* heap,
|
||||
JKRDvdRipper::EAllocDirection allocDirection, u32 offset,
|
||||
@@ -50,9 +44,6 @@ void* JKRDvdRipper::loadToMainRAM(s32 entryNumber, u8* dst, JKRExpandSwitch expa
|
||||
|
||||
static u8 errorRetry = 0x01;
|
||||
|
||||
/* 802D9D10-802DA1E4 2D4650 04D4+00 2/2 0/0 0/0 .text
|
||||
* loadToMainRAM__12JKRDvdRipperFP10JKRDvdFilePUc15JKRExpandSwitchUlP7JKRHeapQ212JKRDvdRipper15EAllocDirectionUlPiPUl
|
||||
*/
|
||||
void* JKRDvdRipper::loadToMainRAM(JKRDvdFile* dvdFile, u8* dst, JKRExpandSwitch expandSwitch,
|
||||
u32 dstLength, JKRHeap* heap,
|
||||
JKRDvdRipper::EAllocDirection allocDirection, u32 offset,
|
||||
|
||||
@@ -564,9 +564,6 @@ void JKRExpHeap::appendUsedList(JKRExpHeap::CMemBlock* newblock) {
|
||||
newblock->mNext = NULL;
|
||||
}
|
||||
|
||||
/* 802CFE68-802CFEB4 2CA7A8 004C+00 5/5 0/0 0/0 .text
|
||||
* setFreeBlock__10JKRExpHeapFPQ210JKRExpHeap9CMemBlockPQ210JKRExpHeap9CMemBlockPQ210JKRExpHeap9CMemBlock
|
||||
*/
|
||||
void JKRExpHeap::setFreeBlock(CMemBlock* block, CMemBlock* prev, CMemBlock* next) {
|
||||
if (prev == NULL) {
|
||||
mHeadFreeList = block;
|
||||
|
||||
@@ -402,9 +402,6 @@ void JMessage::TSequenceProcessor::on_jump(void const* pEntry, char const* pszTe
|
||||
do_jump(pEntry, pszText);
|
||||
}
|
||||
|
||||
/* 802A8690-802A86A0 2A2FD0 0010+00 1/1 0/0 0/0 .text
|
||||
* on_branch_register__Q28JMessage18TSequenceProcessorFPFPCQ28JMessage18TSequenceProcessorUl_PCvPCvUl
|
||||
*/
|
||||
void JMessage::TSequenceProcessor::on_branch_register(JMessage::TSequenceProcessor::branchPfn pfn, void const* pTarget, u32 uTarget) {
|
||||
JUT_ASSERT(669, eStatus_==STATUS_NORMAL);
|
||||
|
||||
|
||||
@@ -39,9 +39,6 @@ JPAEmitterManager::JPAEmitterManager(u32 i_ptclNum, u32 i_emtrNum, JKRHeap* pHea
|
||||
JUT_ASSERT(67, pWd);
|
||||
}
|
||||
|
||||
/* 8027DEBC-8027DFA0 2787FC 00E4+00 0/0 3/3 0/0 .text
|
||||
* createSimpleEmitterID__17JPAEmitterManagerFRCQ29JGeometry8TVec3<f>UsUcUcP18JPAEmitterCallBackP19JPAParticleCallBack
|
||||
*/
|
||||
JPABaseEmitter* JPAEmitterManager::createSimpleEmitterID(JGeometry::TVec3<f32> const& pos,
|
||||
u16 resID, u8 group_id, u8 res_mgr_id,
|
||||
JPAEmitterCallBack* emtrCB,
|
||||
|
||||
@@ -189,8 +189,6 @@ void TFunctionValueAttribute_range::range_set(f64 begin, f64 end) {
|
||||
JUT_ASSERT(458, fDifference_>=TValue(0));
|
||||
}
|
||||
|
||||
// /* 80281A08-80281D18 27C348 0310+00 2/2 0/0 0/0 .text
|
||||
// * range_getParameter__Q27JStudio29TFunctionValueAttribute_rangeCFddd */
|
||||
f64 TFunctionValueAttribute_range::range_getParameter(f64 arg1, f64 arg2, f64 arg3) const {
|
||||
f64 progress = range_getParameter_progress(arg1);
|
||||
TFunctionValue::TEAdjust adjust = range_getAdjust();
|
||||
@@ -256,9 +254,6 @@ f64 TFunctionValue_composite::getValue(f64 arg1) {
|
||||
return pfn_(arg1, container, data_getData());
|
||||
}
|
||||
|
||||
/* 80281E5C-80281EC8 27C79C 006C+00 0/0 1/0 0/0 .text
|
||||
* composite_raw__Q27JStudio24TFunctionValue_compositeFRCQ27JGadget44TVector_pointer<PQ27JStudio14TFunctionValue>RCQ37JStudio24TFunctionValue_composite5TDatad
|
||||
*/
|
||||
f64 TFunctionValue_composite::composite_raw(TVector_pointer<TFunctionValue*> const& param_1,
|
||||
TData const& param_2, f64 param_3) {
|
||||
u32 index = param_2.get_unsignedInteger();
|
||||
@@ -273,9 +268,6 @@ f64 TFunctionValue_composite::composite_raw(TVector_pointer<TFunctionValue*> con
|
||||
}
|
||||
|
||||
|
||||
/* 80281EC8-8028202C 27C808 0164+00 0/0 1/0 0/0 .text
|
||||
* composite_index__Q27JStudio24TFunctionValue_compositeFRCQ27JGadget44TVector_pointer<PQ27JStudio14TFunctionValue>RCQ37JStudio24TFunctionValue_composite5TDatad
|
||||
*/
|
||||
f64 TFunctionValue_composite::composite_index(TVector_pointer<TFunctionValue*> const& param_1,
|
||||
TData const& param_2, f64 param_3) {
|
||||
s32 size = param_1.size();
|
||||
@@ -337,9 +329,6 @@ struct TContainerEnumerator_const_TVector : public JGadget::TEnumerator<const T*
|
||||
: JGadget::TEnumerator<const T*>(param_1.begin(), param_1.end()) {}
|
||||
};
|
||||
|
||||
/* 8028202C-80282094 27C96C 0068+00 0/0 1/0 0/0 .text
|
||||
* composite_parameter__Q27JStudio24TFunctionValue_compositeFRCQ27JGadget44TVector_pointer<PQ27JStudio14TFunctionValue>RCQ37JStudio24TFunctionValue_composite5TDatad
|
||||
*/
|
||||
f64
|
||||
TFunctionValue_composite::composite_parameter(TVector_pointer<TFunctionValue*> const& param_1,
|
||||
TData const& param_2, f64 param_3) {
|
||||
@@ -353,9 +342,6 @@ TFunctionValue_composite::composite_parameter(TVector_pointer<TFunctionValue*> c
|
||||
return dVar4;
|
||||
}
|
||||
|
||||
/* 80282094-80282118 27C9D4 0084+00 0/0 1/0 0/0 .text
|
||||
* composite_add__Q27JStudio24TFunctionValue_compositeFRCQ27JGadget44TVector_pointer<PQ27JStudio14TFunctionValue>RCQ37JStudio24TFunctionValue_composite5TDatad
|
||||
*/
|
||||
f64 TFunctionValue_composite::composite_add(TVector_pointer<TFunctionValue*> const& param_1,
|
||||
TData const& param_2, f64 param_3) {
|
||||
f64 dVar4 = param_2.get_value();
|
||||
@@ -369,9 +355,6 @@ f64 TFunctionValue_composite::composite_add(TVector_pointer<TFunctionValue*> con
|
||||
return dVar4;
|
||||
}
|
||||
|
||||
/* 80282118-80282200 27CA58 00E8+00 0/0 1/0 0/0 .text
|
||||
* composite_subtract__Q27JStudio24TFunctionValue_compositeFRCQ27JGadget44TVector_pointer<PQ27JStudio14TFunctionValue>RCQ37JStudio24TFunctionValue_composite5TDatad
|
||||
*/
|
||||
f64 TFunctionValue_composite::composite_subtract(TVector_pointer<TFunctionValue*> const& param_1,
|
||||
TData const& param_2, f64 param_3) {
|
||||
u32 size = param_1.size();
|
||||
@@ -394,9 +377,6 @@ f64 TFunctionValue_composite::composite_subtract(TVector_pointer<TFunctionValue*
|
||||
}
|
||||
|
||||
|
||||
/* 80282200-80282284 27CB40 0084+00 0/0 1/0 0/0 .text
|
||||
* composite_multiply__Q27JStudio24TFunctionValue_compositeFRCQ27JGadget44TVector_pointer<PQ27JStudio14TFunctionValue>RCQ37JStudio24TFunctionValue_composite5TDatad
|
||||
*/
|
||||
f64 TFunctionValue_composite::composite_multiply(TVector_pointer<TFunctionValue*> const& param_1,
|
||||
TData const& param_2, f64 param_3) {
|
||||
f64 dVar4 = param_2.get_value();
|
||||
@@ -410,9 +390,6 @@ f64 TFunctionValue_composite::composite_multiply(TVector_pointer<TFunctionValue*
|
||||
return dVar4;
|
||||
}
|
||||
|
||||
/* 80282284-8028236C 27CBC4 00E8+00 0/0 1/0 0/0 .text
|
||||
* composite_divide__Q27JStudio24TFunctionValue_compositeFRCQ27JGadget44TVector_pointer<PQ27JStudio14TFunctionValue>RCQ37JStudio24TFunctionValue_composite5TDatad
|
||||
*/
|
||||
f64 TFunctionValue_composite::composite_divide(TVector_pointer<TFunctionValue*> const& param_1,
|
||||
TData const& param_2, f64 param_3) {
|
||||
u32 size = param_1.size();
|
||||
@@ -633,9 +610,6 @@ f64 TFunctionValue_list::update_INTERPOLATE_LINEAR_(const TFunctionValue_list& r
|
||||
rThis._44[data._10 + 1]);
|
||||
}
|
||||
|
||||
/* 80282C58-80282CA8 27D598 0050+00 1/1 0/0 0/0 .text
|
||||
* update_INTERPOLATE_PLATEAU___Q27JStudio19TFunctionValue_listFRCQ27JStudio19TFunctionValue_listRCQ37JStudio19TFunctionValue_list11TIndexData_
|
||||
*/
|
||||
f64 TFunctionValue_list::update_INTERPOLATE_PLATEAU_(const TFunctionValue_list& rThis,
|
||||
const TIndexData_& data) {
|
||||
const f32* arr = rThis._44;
|
||||
@@ -645,9 +619,6 @@ f64 TFunctionValue_list::update_INTERPOLATE_PLATEAU_(const TFunctionValue_list&
|
||||
}
|
||||
|
||||
|
||||
/* 80282CA8-80282D34 27D5E8 008C+00 1/1 0/0 0/0 .text
|
||||
* update_INTERPOLATE_BSPLINE_dataMore3___Q27JStudio19TFunctionValue_listFRCQ27JStudio19TFunctionValue_listRCQ37JStudio19TFunctionValue_list11TIndexData_
|
||||
*/
|
||||
f64 TFunctionValue_list::update_INTERPOLATE_BSPLINE_dataMore3_(
|
||||
TFunctionValue_list const& rThis, TFunctionValue_list::TIndexData_ const& param_2) {
|
||||
f64 dVar11 = rThis._44[param_2._10];
|
||||
@@ -770,9 +741,6 @@ f64 TFunctionValue_list_parameter::update_INTERPOLATE_LINEAR_(
|
||||
return functionvalue::interpolateValue_linear(d, a[-2], a[-1], a[0], a[1]);
|
||||
}
|
||||
|
||||
/* 80283024-80283060 27D964 003C+00 1/1 0/0 0/0 .text
|
||||
* update_INTERPOLATE_PLATEAU___Q27JStudio29TFunctionValue_list_parameterFRCQ27JStudio29TFunctionValue_list_parameterd
|
||||
*/
|
||||
f64 TFunctionValue_list_parameter::update_INTERPOLATE_PLATEAU_(
|
||||
const TFunctionValue_list_parameter& rThis, f64 d) {
|
||||
const f32* a = rThis.dat3.get();
|
||||
@@ -780,9 +748,6 @@ f64 TFunctionValue_list_parameter::update_INTERPOLATE_PLATEAU_(
|
||||
}
|
||||
|
||||
|
||||
/* 80283060-802832C4 27D9A0 0264+00 1/1 0/0 0/0 .text
|
||||
* update_INTERPOLATE_BSPLINE_dataMore3___Q27JStudio29TFunctionValue_list_parameterFRCQ27JStudio29TFunctionValue_list_parameterd
|
||||
*/
|
||||
f64 TFunctionValue_list_parameter::update_INTERPOLATE_BSPLINE_dataMore3_(
|
||||
TFunctionValue_list_parameter const& rThis, f64 param_2) {
|
||||
JUT_ASSERT(1457, rThis.uData_>=3)
|
||||
|
||||
@@ -2,4 +2,4 @@
|
||||
|
||||
#include "JSystem/JStudio/JStudio/fvb-data.h"
|
||||
|
||||
extern const char JStudio::fvb::data::ga4cSignature[4] = "FVB";
|
||||
const char JStudio::fvb::data::ga4cSignature[4] = "FVB";
|
||||
|
||||
@@ -2,4 +2,4 @@
|
||||
|
||||
#include "JSystem/JStudio/JStudio/jstudio-data.h"
|
||||
|
||||
extern const char JStudio::data::ga8cSignature[8] = "jstudio";
|
||||
const char JStudio::data::ga8cSignature[8] = "jstudio";
|
||||
|
||||
@@ -120,9 +120,6 @@ void JStudio::TAdaptor::adaptor_do_data(void const* param_0, u32 param_1, void c
|
||||
/* empty function */
|
||||
}
|
||||
|
||||
/* 8028602C-802860CC 28096C 00A0+00 8/7 0/0 0/0 .text
|
||||
* adaptor_setVariableValue__Q27JStudio8TAdaptorFPQ27JStudio8TControlUlQ37JStudio4data15TEOperationDataPCvUl
|
||||
*/
|
||||
void JStudio::TAdaptor::adaptor_setVariableValue(JStudio::TControl* pControl, u32 param_2,
|
||||
JStudio::data::TEOperationData param_3,
|
||||
void const* param_4, u32 param_5) {
|
||||
@@ -152,9 +149,6 @@ void JStudio::TAdaptor::adaptor_setVariableValue(JStudio::TControl* pControl, u3
|
||||
}
|
||||
|
||||
|
||||
/* 802860CC-802861C0 280A0C 00F4+00 7/7 0/0 0/0 .text
|
||||
* adaptor_setVariableValue_n__Q27JStudio8TAdaptorFPQ27JStudio8TControlPCUlUlQ37JStudio4data15TEOperationDataPCvUl
|
||||
*/
|
||||
void JStudio::TAdaptor::adaptor_setVariableValue_n(JStudio::TControl* pControl,
|
||||
u32 const* param_2, u32 param_3,
|
||||
JStudio::data::TEOperationData param_4,
|
||||
@@ -190,9 +184,6 @@ void JStudio::TAdaptor::adaptor_setVariableValue_n(JStudio::TControl* pControl,
|
||||
}
|
||||
}
|
||||
|
||||
/* 802861C0-80286204 280B00 0044+00 0/0 2/2 0/0 .text
|
||||
* adaptor_setVariableValue_immediate__Q27JStudio8TAdaptorFPCQ37JStudio8TAdaptor27TSetVariableValue_immediate
|
||||
*/
|
||||
void JStudio::TAdaptor::adaptor_setVariableValue_immediate(
|
||||
JStudio::TAdaptor::TSetVariableValue_immediate const* p) {
|
||||
JUT_ASSERT(388, p!=NULL);
|
||||
@@ -244,9 +235,6 @@ void JStudio::TAdaptor::adaptor_updateVariableValue(JStudio::TControl* pControl,
|
||||
}
|
||||
}
|
||||
|
||||
/* 8028656C-80286584 280EAC 0018+00 2/2 0/0 0/0 .text
|
||||
* adaptor_setVariableValue_VOID___Q27JStudio8TAdaptorFPQ27JStudio8TAdaptorPQ27JStudio8TControlUlPCvUl
|
||||
*/
|
||||
void JStudio::TAdaptor::adaptor_setVariableValue_VOID_(JStudio::TAdaptor* param_1,
|
||||
JStudio::TControl* param_2, u32 param_3,
|
||||
void const* param_4, u32 uSize) {
|
||||
@@ -254,9 +242,6 @@ void JStudio::TAdaptor::adaptor_setVariableValue_VOID_(JStudio::TAdaptor* param_
|
||||
param_1->pValue_[param_3].setValue_none();
|
||||
}
|
||||
|
||||
/* 80286584-802865B0 280EC4 002C+00 2/2 0/0 0/0 .text
|
||||
* adaptor_setVariableValue_IMMEDIATE___Q27JStudio8TAdaptorFPQ27JStudio8TAdaptorPQ27JStudio8TControlUlPCvUl
|
||||
*/
|
||||
void JStudio::TAdaptor::adaptor_setVariableValue_IMMEDIATE_(JStudio::TAdaptor* param_1,
|
||||
JStudio::TControl* param_2, u32 param_3,
|
||||
void const* param_4, u32 param_5) {
|
||||
@@ -264,9 +249,6 @@ void JStudio::TAdaptor::adaptor_setVariableValue_IMMEDIATE_(JStudio::TAdaptor* p
|
||||
value->setValue_immediate(*(f32*)param_4);
|
||||
}
|
||||
|
||||
/* 802865B0-802865DC 280EF0 002C+00 2/2 0/0 0/0 .text
|
||||
* adaptor_setVariableValue_TIME___Q27JStudio8TAdaptorFPQ27JStudio8TAdaptorPQ27JStudio8TControlUlPCvUl
|
||||
*/
|
||||
void JStudio::TAdaptor::adaptor_setVariableValue_TIME_(JStudio::TAdaptor* param_1,
|
||||
JStudio::TControl* param_2, u32 param_3,
|
||||
void const* param_4, u32 param_5) {
|
||||
@@ -274,9 +256,6 @@ void JStudio::TAdaptor::adaptor_setVariableValue_TIME_(JStudio::TAdaptor* param_
|
||||
value->setValue_time(*(f32*)param_4);
|
||||
}
|
||||
|
||||
/* 802865DC-80286648 280F1C 006C+00 1/1 0/0 0/0 .text
|
||||
* adaptor_setVariableValue_FVR_NAME___Q27JStudio8TAdaptorFPQ27JStudio8TAdaptorPQ27JStudio8TControlUlPCvUl
|
||||
*/
|
||||
void JStudio::TAdaptor::adaptor_setVariableValue_FVR_NAME_(JStudio::TAdaptor* param_1,
|
||||
JStudio::TControl* param_2, u32 param_3,
|
||||
void const* param_4, u32 param_5) {
|
||||
@@ -284,9 +263,6 @@ void JStudio::TAdaptor::adaptor_setVariableValue_FVR_NAME_(JStudio::TAdaptor* pa
|
||||
value->setValue_functionValue(param_2->getFunctionValue(param_4,param_5));
|
||||
}
|
||||
|
||||
/* 80286648-802866B0 280F88 0068+00 2/2 0/0 0/0 .text
|
||||
* adaptor_setVariableValue_FVR_INDEX___Q27JStudio8TAdaptorFPQ27JStudio8TAdaptorPQ27JStudio8TControlUlPCvUl
|
||||
*/
|
||||
void JStudio::TAdaptor::adaptor_setVariableValue_FVR_INDEX_(JStudio::TAdaptor* param_1,
|
||||
JStudio::TControl* param_2, u32 param_3,
|
||||
void const* param_4, u32 param_5) {
|
||||
@@ -339,9 +315,6 @@ JStudio::TObject::TObject(JStudio::stb::data::TParse_TBlock_object const& param_
|
||||
JStudio::TAdaptor_actor::~TAdaptor_actor() {
|
||||
}
|
||||
|
||||
/* 80286910-8028694C 281250 003C+00 0/0 1/1 0/0 .text
|
||||
* __ct__Q27JStudio13TObject_actorFRCQ47JStudio3stb4data20TParse_TBlock_objectPQ27JStudio14TAdaptor_actor
|
||||
*/
|
||||
JStudio::TObject_actor::TObject_actor(JStudio::stb::data::TParse_TBlock_object const& param_0,
|
||||
JStudio::TAdaptor_actor* param_1) : TObject(param_0, param_1) {
|
||||
|
||||
@@ -495,9 +468,6 @@ fun:
|
||||
|
||||
JStudio::TAdaptor_ambientLight::~TAdaptor_ambientLight() {}
|
||||
|
||||
/* 80286CFC-80286D38 28163C 003C+00 0/0 1/1 0/0 .text
|
||||
* __ct__Q27JStudio20TObject_ambientLightFRCQ47JStudio3stb4data20TParse_TBlock_objectPQ27JStudio21TAdaptor_ambientLight
|
||||
*/
|
||||
JStudio::TObject_ambientLight::TObject_ambientLight(
|
||||
JStudio::stb::data::TParse_TBlock_object const& param_0,
|
||||
JStudio::TAdaptor_ambientLight* param_1) : TObject(param_0, param_1) {
|
||||
@@ -560,9 +530,6 @@ value_n:
|
||||
|
||||
JStudio::TAdaptor_camera::~TAdaptor_camera() {}
|
||||
|
||||
/* 80286E7C-80286EB8 2817BC 003C+00 0/0 1/1 0/0 .text
|
||||
* __ct__Q27JStudio14TObject_cameraFRCQ47JStudio3stb4data20TParse_TBlock_objectPQ27JStudio15TAdaptor_camera
|
||||
*/
|
||||
JStudio::TObject_camera::TObject_camera(JStudio::stb::data::TParse_TBlock_object const& param_0,
|
||||
JStudio::TAdaptor_camera* param_1)
|
||||
: TObject(param_0, param_1) {}
|
||||
@@ -695,9 +662,6 @@ fun:
|
||||
|
||||
JStudio::TAdaptor_fog::~TAdaptor_fog() {}
|
||||
|
||||
/* 802871DC-80287218 281B1C 003C+00 0/0 1/1 0/0 .text
|
||||
* __ct__Q27JStudio11TObject_fogFRCQ47JStudio3stb4data20TParse_TBlock_objectPQ27JStudio12TAdaptor_fog
|
||||
*/
|
||||
JStudio::TObject_fog::TObject_fog(JStudio::stb::data::TParse_TBlock_object const& param_0,
|
||||
JStudio::TAdaptor_fog* param_1) : TObject(param_0, param_1) {}
|
||||
|
||||
@@ -771,9 +735,6 @@ value_n:
|
||||
|
||||
JStudio::TAdaptor_light::~TAdaptor_light() {}
|
||||
|
||||
/* 80287368-802873A4 281CA8 003C+00 0/0 1/1 0/0 .text
|
||||
* __ct__Q27JStudio13TObject_lightFRCQ47JStudio3stb4data20TParse_TBlock_objectPQ27JStudio14TAdaptor_light
|
||||
*/
|
||||
JStudio::TObject_light::TObject_light(JStudio::stb::data::TParse_TBlock_object const& param_0,
|
||||
JStudio::TAdaptor_light* param_1) : TObject(param_0, param_1) {}
|
||||
|
||||
@@ -910,9 +871,6 @@ fun:
|
||||
|
||||
JStudio::TAdaptor_message::~TAdaptor_message() {}
|
||||
|
||||
/* 80287640-8028767C 281F80 003C+00 0/0 1/1 0/0 .text
|
||||
* __ct__Q27JStudio15TObject_messageFRCQ47JStudio3stb4data20TParse_TBlock_objectPQ27JStudio16TAdaptor_message
|
||||
*/
|
||||
JStudio::TObject_message::TObject_message(JStudio::stb::data::TParse_TBlock_object const& param_0,
|
||||
JStudio::TAdaptor_message* param_1)
|
||||
: TObject(param_0, param_1) {}
|
||||
@@ -939,9 +897,6 @@ void JStudio::TObject_message::do_paragraph(u32 param_1, void const* param_2, u3
|
||||
|
||||
JStudio::TAdaptor_particle::~TAdaptor_particle() {}
|
||||
|
||||
/* 8028776C-802877A8 2820AC 003C+00 0/0 1/1 0/0 .text
|
||||
* __ct__Q27JStudio16TObject_particleFRCQ47JStudio3stb4data20TParse_TBlock_objectPQ27JStudio17TAdaptor_particle
|
||||
*/
|
||||
JStudio::TObject_particle::TObject_particle(
|
||||
JStudio::stb::data::TParse_TBlock_object const& param_0, JStudio::TAdaptor_particle* param_1) : TObject(param_0, param_1) {}
|
||||
|
||||
@@ -1140,9 +1095,6 @@ fun:
|
||||
|
||||
JStudio::TAdaptor_sound::~TAdaptor_sound() {}
|
||||
|
||||
/* 80287B9C-80287BD8 2824DC 003C+00 0/0 1/1 0/0 .text
|
||||
* __ct__Q27JStudio13TObject_soundFRCQ47JStudio3stb4data20TParse_TBlock_objectPQ27JStudio14TAdaptor_sound
|
||||
*/
|
||||
JStudio::TObject_sound::TObject_sound(JStudio::stb::data::TParse_TBlock_object const& param_0,
|
||||
JStudio::TAdaptor_sound* param_1) : TObject(param_0, param_1) {}
|
||||
|
||||
|
||||
@@ -9,9 +9,6 @@
|
||||
|
||||
JStudio_JAudio2::TCreateObject::~TCreateObject() {}
|
||||
|
||||
/* 8028D5B0-8028D624 287EF0 0074+00 1/0 0/0 0/0 .text
|
||||
* create__Q215JStudio_JAudio213TCreateObjectFPPQ27JStudio7TObjectRCQ47JStudio3stb4data20TParse_TBlock_object
|
||||
*/
|
||||
bool JStudio_JAudio2::TCreateObject::create(
|
||||
JStudio::TObject** ppObject, JStudio::stb::data::TParse_TBlock_object const& param_2) {
|
||||
JUT_ASSERT(40, ppObject!=NULL);
|
||||
@@ -27,9 +24,6 @@ bool JStudio_JAudio2::TCreateObject::create(
|
||||
return 1;
|
||||
}
|
||||
|
||||
/* 8028D624-8028D728 287F64 0104+00 1/1 0/0 0/0 .text
|
||||
* createObject_JAI_SOUND___Q215JStudio_JAudio213TCreateObjectFRCQ47JStudio3stb4data20TParse_TBlock_objectPQ215JStudio_JAudio213TCreateObject
|
||||
*/
|
||||
JStudio::TObject* JStudio_JAudio2::TCreateObject::createObject_JAI_SOUND_(
|
||||
JStudio::stb::data::TParse_TBlock_object const& param_1,
|
||||
JStudio_JAudio2::TCreateObject* param_2) {
|
||||
|
||||
@@ -166,9 +166,6 @@ void JStudio_JAudio2::TAdaptor_sound::adaptor_do_BEGIN(JStudio::data::TEOperatio
|
||||
}
|
||||
}
|
||||
|
||||
/* 8028DC88-8028DCD0 2885C8 0048+00 1/0 0/0 0/0 .text
|
||||
* adaptor_do_BEGIN_FADE_IN__Q215JStudio_JAudio214TAdaptor_soundFQ37JStudio4data15TEOperationDataPCvUl
|
||||
*/
|
||||
void JStudio_JAudio2::TAdaptor_sound::adaptor_do_BEGIN_FADE_IN(
|
||||
JStudio::data::TEOperationData param_1, void const* pContent, u32 uSize) {
|
||||
switch (param_1) {
|
||||
@@ -190,9 +187,6 @@ void JStudio_JAudio2::TAdaptor_sound::adaptor_do_END(JStudio::data::TEOperationD
|
||||
}
|
||||
}
|
||||
|
||||
/* 8028DD00-8028DD48 288640 0048+00 1/0 0/0 0/0 .text
|
||||
* adaptor_do_END_FADE_OUT__Q215JStudio_JAudio214TAdaptor_soundFQ37JStudio4data15TEOperationDataPCvUl
|
||||
*/
|
||||
void JStudio_JAudio2::TAdaptor_sound::adaptor_do_END_FADE_OUT(
|
||||
JStudio::data::TEOperationData param_1, void const* pContent, u32 uSize) {
|
||||
switch (param_1) {
|
||||
@@ -222,9 +216,6 @@ void JStudio_JAudio2::TAdaptor_sound::adaptor_do_PARENT(
|
||||
}
|
||||
}
|
||||
|
||||
/* 8028DDB4-8028DE34 2886F4 0080+00 1/0 0/0 0/0 .text
|
||||
* adaptor_do_PARENT_NODE__Q215JStudio_JAudio214TAdaptor_soundFQ37JStudio4data15TEOperationDataPCvUl
|
||||
*/
|
||||
void JStudio_JAudio2::TAdaptor_sound::adaptor_do_PARENT_NODE(JStudio::data::TEOperationData param_1,
|
||||
const void* pContent, u32 uSize) {
|
||||
switch (param_1) {
|
||||
@@ -246,9 +237,6 @@ void JStudio_JAudio2::TAdaptor_sound::adaptor_do_PARENT_NODE(JStudio::data::TEOp
|
||||
}
|
||||
}
|
||||
|
||||
/* 8028DE34-8028DE50 288774 001C+00 1/0 0/0 0/0 .text
|
||||
* adaptor_do_PARENT_ENABLE__Q215JStudio_JAudio214TAdaptor_soundFQ37JStudio4data15TEOperationDataPCvUl
|
||||
*/
|
||||
void JStudio_JAudio2::TAdaptor_sound::adaptor_do_PARENT_ENABLE(
|
||||
JStudio::data::TEOperationData param_1, const void* pContent, u32 uSize) {
|
||||
if (param_1 == JStudio::data::UNK_0x2) {
|
||||
@@ -267,9 +255,6 @@ void JStudio_JAudio2::TAdaptor_sound::adaptor_do_REPEAT(JStudio::data::TEOperati
|
||||
}
|
||||
}
|
||||
|
||||
/* 8028DE6C-8028DE88 2887AC 001C+00 1/0 0/0 0/0 .text
|
||||
* adaptor_do_CONTINUOUS__Q215JStudio_JAudio214TAdaptor_soundFQ37JStudio4data15TEOperationDataPCvUl
|
||||
*/
|
||||
void JStudio_JAudio2::TAdaptor_sound::adaptor_do_CONTINUOUS(JStudio::data::TEOperationData param_1,
|
||||
const void* pContent, u32 uSize) {
|
||||
if (param_1 == JStudio::data::UNK_0x2) {
|
||||
@@ -292,9 +277,6 @@ void JStudio_JAudio2::TAdaptor_sound::adaptor_do_LOCATED(JStudio::data::TEOperat
|
||||
}
|
||||
}
|
||||
|
||||
/* 8028DEB0-8028DECC 2887F0 001C+00 1/0 0/0 0/0 .text
|
||||
* adaptor_do_ON_EXIT_NOT_END__Q215JStudio_JAudio214TAdaptor_soundFQ37JStudio4data15TEOperationDataPCvUl
|
||||
*/
|
||||
void JStudio_JAudio2::TAdaptor_sound::adaptor_do_ON_EXIT_NOT_END(
|
||||
JStudio::data::TEOperationData param_1, const void* pContent, u32 uSize) {
|
||||
if (param_1 == JStudio::data::UNK_0x2) {
|
||||
|
||||
@@ -10,9 +10,6 @@
|
||||
|
||||
JStudio_JParticle::TCreateObject::~TCreateObject() {}
|
||||
|
||||
/* 8028E400-8028E474 288D40 0074+00 1/0 1/0 0/0 .text
|
||||
* create__Q217JStudio_JParticle13TCreateObjectFPPQ27JStudio7TObjectRCQ47JStudio3stb4data20TParse_TBlock_object
|
||||
*/
|
||||
bool
|
||||
JStudio_JParticle::TCreateObject::create(JStudio::TObject** ppObject,
|
||||
JStudio::stb::data::TParse_TBlock_object const& param_2) {
|
||||
@@ -41,9 +38,6 @@ void JStudio_JParticle::TCreateObject::emitter_destroy(JPABaseEmitter* pEmitter)
|
||||
pJPAEmitterManager_->forceDeleteEmitter(pEmitter);
|
||||
}
|
||||
|
||||
/* 8028E508-8028E60C 288E48 0104+00 1/1 0/0 0/0 .text
|
||||
* createObject_JPA_PARTICLE___Q217JStudio_JParticle13TCreateObjectFRCQ47JStudio3stb4data20TParse_TBlock_objectPQ217JStudio_JParticle13TCreateObject
|
||||
*/
|
||||
JStudio::TObject* JStudio_JParticle::TCreateObject::createObject_JPA_PARTICLE_(
|
||||
JStudio::stb::data::TParse_TBlock_object const& param_1,
|
||||
JStudio_JParticle::TCreateObject* param_2) {
|
||||
|
||||
@@ -99,9 +99,6 @@ void JStudio_JParticle::TAdaptor_particle::adaptor_do_update(u32 param_1) {
|
||||
}
|
||||
}
|
||||
|
||||
/* 8028EA68-8028EA7C 2893A8 0014+00 1/0 0/0 0/0 .text
|
||||
* adaptor_do_PARTICLE__Q217JStudio_JParticle17TAdaptor_particleFQ37JStudio4data15TEOperationDataPCvUl
|
||||
*/
|
||||
void JStudio_JParticle::TAdaptor_particle::adaptor_do_PARTICLE(
|
||||
JStudio::data::TEOperationData param_1, const void* pContent, u32 uSize) {
|
||||
if (param_1 == JStudio::data::UNK_0x19) {
|
||||
@@ -111,9 +108,6 @@ void JStudio_JParticle::TAdaptor_particle::adaptor_do_PARTICLE(
|
||||
}
|
||||
}
|
||||
|
||||
/* 8028EA7C-8028EAB0 2893BC 0034+00 1/0 0/0 0/0 .text
|
||||
* adaptor_do_BEGIN__Q217JStudio_JParticle17TAdaptor_particleFQ37JStudio4data15TEOperationDataPCvUl
|
||||
*/
|
||||
void JStudio_JParticle::TAdaptor_particle::adaptor_do_BEGIN(JStudio::data::TEOperationData param_1,
|
||||
const void* pContent, u32 uSize) {
|
||||
switch (param_1) {
|
||||
@@ -124,9 +118,6 @@ void JStudio_JParticle::TAdaptor_particle::adaptor_do_BEGIN(JStudio::data::TEOpe
|
||||
}
|
||||
}
|
||||
|
||||
/* 8028EAB0-8028EAF8 2893F0 0048+00 1/0 0/0 0/0 .text
|
||||
* adaptor_do_BEGIN_FADE_IN__Q217JStudio_JParticle17TAdaptor_particleFQ37JStudio4data15TEOperationDataPCvUl
|
||||
*/
|
||||
void JStudio_JParticle::TAdaptor_particle::adaptor_do_BEGIN_FADE_IN(
|
||||
JStudio::data::TEOperationData param_1, const void* pContent, u32 uSize) {
|
||||
switch (param_1) {
|
||||
@@ -146,9 +137,6 @@ void JStudio_JParticle::TAdaptor_particle::adaptor_do_END(JStudio::data::TEOpera
|
||||
}
|
||||
}
|
||||
|
||||
/* 8028EB24-8028EB6C 289464 0048+00 1/0 0/0 0/0 .text
|
||||
* adaptor_do_END_FADE_OUT__Q217JStudio_JParticle17TAdaptor_particleFQ37JStudio4data15TEOperationDataPCvUl
|
||||
*/
|
||||
void JStudio_JParticle::TAdaptor_particle::adaptor_do_END_FADE_OUT(
|
||||
JStudio::data::TEOperationData param_1, const void* pContent, u32 uSize) {
|
||||
switch (param_1) {
|
||||
@@ -160,9 +148,6 @@ void JStudio_JParticle::TAdaptor_particle::adaptor_do_END_FADE_OUT(
|
||||
}
|
||||
}
|
||||
|
||||
/* 8028EB6C-8028EBD8 2894AC 006C+00 1/0 0/0 0/0 .text
|
||||
* adaptor_do_PARENT__Q217JStudio_JParticle17TAdaptor_particleFQ37JStudio4data15TEOperationDataPCvUl
|
||||
*/
|
||||
void JStudio_JParticle::TAdaptor_particle::adaptor_do_PARENT(
|
||||
JStudio::data::TEOperationData param_1, const void* pContent, u32 uSize) {
|
||||
switch (param_1) {
|
||||
@@ -181,9 +166,6 @@ void JStudio_JParticle::TAdaptor_particle::adaptor_do_PARENT(
|
||||
}
|
||||
}
|
||||
|
||||
/* 8028EBD8-8028EC58 289518 0080+00 1/0 0/0 0/0 .text
|
||||
* adaptor_do_PARENT_NODE__Q217JStudio_JParticle17TAdaptor_particleFQ37JStudio4data15TEOperationDataPCvUl
|
||||
*/
|
||||
void JStudio_JParticle::TAdaptor_particle::adaptor_do_PARENT_NODE(
|
||||
JStudio::data::TEOperationData param_1, const void* pContent, u32 uSize) {
|
||||
switch (param_1) {
|
||||
@@ -205,9 +187,6 @@ void JStudio_JParticle::TAdaptor_particle::adaptor_do_PARENT_NODE(
|
||||
}
|
||||
}
|
||||
|
||||
/* 8028EC58-8028EC74 289598 001C+00 1/0 0/0 0/0 .text
|
||||
* adaptor_do_PARENT_ENABLE__Q217JStudio_JParticle17TAdaptor_particleFQ37JStudio4data15TEOperationDataPCvUl
|
||||
*/
|
||||
void JStudio_JParticle::TAdaptor_particle::adaptor_do_PARENT_ENABLE(JStudio::data::TEOperationData param_1,
|
||||
const void* pContent, u32 uSize) {
|
||||
if (param_1 == JStudio::data::UNK_0x2) {
|
||||
@@ -217,9 +196,6 @@ void JStudio_JParticle::TAdaptor_particle::adaptor_do_PARENT_ENABLE(JStudio::dat
|
||||
}
|
||||
}
|
||||
|
||||
/* 8028EC74-8028EC88 2895B4 0014+00 1/0 0/0 0/0 .text
|
||||
* adaptor_do_PARENT_FUNCTION__Q217JStudio_JParticle17TAdaptor_particleFQ37JStudio4data15TEOperationDataPCvUl
|
||||
*/
|
||||
void JStudio_JParticle::TAdaptor_particle::adaptor_do_PARENT_FUNCTION(JStudio::data::TEOperationData param_1,
|
||||
const void* pContent, u32 uSize) {
|
||||
if (param_1 == JStudio::data::UNK_0x2) {
|
||||
@@ -229,9 +205,6 @@ void JStudio_JParticle::TAdaptor_particle::adaptor_do_PARENT_FUNCTION(JStudio::d
|
||||
}
|
||||
}
|
||||
|
||||
/* 8028EC88-8028ECA4 2895C8 001C+00 1/0 0/0 0/0 .text
|
||||
* adaptor_do_REPEAT__Q217JStudio_JParticle17TAdaptor_particleFQ37JStudio4data15TEOperationDataPCvUl
|
||||
*/
|
||||
void JStudio_JParticle::TAdaptor_particle::adaptor_do_REPEAT(JStudio::data::TEOperationData param_1,
|
||||
const void* pContent, u32 uSize) {
|
||||
if (param_1 == JStudio::data::UNK_0x2) {
|
||||
@@ -241,9 +214,6 @@ void JStudio_JParticle::TAdaptor_particle::adaptor_do_REPEAT(JStudio::data::TEOp
|
||||
}
|
||||
}
|
||||
|
||||
/* 8028ECA4-8028ECC0 2895E4 001C+00 1/0 0/0 0/0 .text
|
||||
* adaptor_do_ON_EXIT_NOT_END__Q217JStudio_JParticle17TAdaptor_particleFQ37JStudio4data15TEOperationDataPCvUl
|
||||
*/
|
||||
void JStudio_JParticle::TAdaptor_particle::adaptor_do_ON_EXIT_NOT_END(JStudio::data::TEOperationData param_1,
|
||||
const void* pContent, u32 uSize) {
|
||||
if (param_1 == JStudio::data::UNK_0x2) {
|
||||
@@ -332,9 +302,6 @@ JStudio_JParticle::TAdaptor_particle::TJPACallback_emitter_::execute(JPABaseEmit
|
||||
}
|
||||
}
|
||||
|
||||
/* 8028F060-8028F098 2899A0 0038+00 1/0 0/0 0/0 .text
|
||||
* executeAfter__Q317JStudio_JParticle17TAdaptor_particle21TJPACallback_emitter_FP14JPABaseEmitter
|
||||
*/
|
||||
void
|
||||
JStudio_JParticle::TAdaptor_particle::TJPACallback_emitter_::executeAfter(JPABaseEmitter* pJPAEmitter) {
|
||||
if (pOld != NULL) {
|
||||
|
||||
@@ -9,9 +9,6 @@
|
||||
|
||||
JStudio_JStage::TCreateObject::~TCreateObject() {}
|
||||
|
||||
/* 80289B60-80289CE4 2844A0 0184+00 1/0 0/0 0/0 .text
|
||||
* create__Q214JStudio_JStage13TCreateObjectFPPQ27JStudio7TObjectRCQ47JStudio3stb4data20TParse_TBlock_object
|
||||
*/
|
||||
bool JStudio_JStage::TCreateObject::create(
|
||||
JStudio::TObject** ppObject, JStudio::stb::data::TParse_TBlock_object const& rParse) {
|
||||
JUT_ASSERT(83, ppObject!=NULL);
|
||||
|
||||
@@ -92,9 +92,6 @@ void JStudio_JStage::TAdaptor_actor::adaptor_do_ANIMATION(JStudio::data::TEOpera
|
||||
}
|
||||
|
||||
|
||||
/* 8028AA48-8028AA5C 285388 0014+00 1/0 0/0 0/0 .text
|
||||
* adaptor_do_ANIMATION_MODE__Q214JStudio_JStage14TAdaptor_actorFQ37JStudio4data15TEOperationDataPCvUl
|
||||
*/
|
||||
void JStudio_JStage::TAdaptor_actor::adaptor_do_ANIMATION_MODE(JStudio::data::TEOperationData operation,
|
||||
void const* pContent, u32 uSize) {
|
||||
switch (operation) {
|
||||
@@ -106,17 +103,11 @@ void JStudio_JStage::TAdaptor_actor::adaptor_do_ANIMATION_MODE(JStudio::data::TE
|
||||
}
|
||||
}
|
||||
|
||||
/* 8028AA5C-8028AAB4 28539C 0058+00 1/0 0/0 0/0 .text
|
||||
* adaptor_do_TEXTURE_ANIMATION__Q214JStudio_JStage14TAdaptor_actorFQ37JStudio4data15TEOperationDataPCvUl
|
||||
*/
|
||||
void JStudio_JStage::TAdaptor_actor::adaptor_do_TEXTURE_ANIMATION(JStudio::data::TEOperationData operation,
|
||||
void const* param_2, u32 param_3) {
|
||||
setJSG_ID_(&JStage::TActor::JSGSetTextureAnimation, operation, param_2, param_3);
|
||||
}
|
||||
|
||||
/* 8028AAB4-8028AAC8 2853F4 0014+00 1/0 0/0 0/0 .text
|
||||
* adaptor_do_TEXTURE_ANIMATION_MODE__Q214JStudio_JStage14TAdaptor_actorFQ37JStudio4data15TEOperationDataPCvUl
|
||||
*/
|
||||
void JStudio_JStage::TAdaptor_actor::adaptor_do_TEXTURE_ANIMATION_MODE(
|
||||
JStudio::data::TEOperationData operation, void const* pContent, u32 uSize) {
|
||||
switch (operation) {
|
||||
@@ -139,9 +130,6 @@ void JStudio_JStage::TAdaptor_actor::adaptor_do_PARENT(
|
||||
}
|
||||
}
|
||||
|
||||
/* 8028AB0C-8028AB68 28544C 005C+00 1/0 0/0 0/0 .text
|
||||
* adaptor_do_PARENT_NODE__Q214JStudio_JStage14TAdaptor_actorFQ37JStudio4data15TEOperationDataPCvUl
|
||||
*/
|
||||
void JStudio_JStage::TAdaptor_actor::adaptor_do_PARENT_NODE(
|
||||
JStudio::data::TEOperationData operation, void const* pContent, u32 uSize) {
|
||||
switch (operation) {
|
||||
@@ -158,9 +146,6 @@ void JStudio_JStage::TAdaptor_actor::adaptor_do_PARENT_NODE(
|
||||
}
|
||||
}
|
||||
|
||||
/* 8028AB68-8028ABF0 2854A8 0088+00 1/0 0/0 0/0 .text
|
||||
* adaptor_do_PARENT_ENABLE__Q214JStudio_JStage14TAdaptor_actorFQ37JStudio4data15TEOperationDataPCvUl
|
||||
*/
|
||||
void JStudio_JStage::TAdaptor_actor::adaptor_do_PARENT_ENABLE(
|
||||
JStudio::data::TEOperationData operation, void const* pContent, u32 uSize) {
|
||||
switch (operation) {
|
||||
@@ -188,9 +173,6 @@ void JStudio_JStage::TAdaptor_actor::adaptor_do_PARENT_ENABLE(
|
||||
}
|
||||
}
|
||||
|
||||
/* 8028ABF0-8028AC04 285530 0014+00 1/0 0/0 0/0 .text
|
||||
* adaptor_do_PARENT_FUNCTION__Q214JStudio_JStage14TAdaptor_actorFQ37JStudio4data15TEOperationDataPCvUl
|
||||
*/
|
||||
void JStudio_JStage::TAdaptor_actor::adaptor_do_PARENT_FUNCTION(
|
||||
JStudio::data::TEOperationData operation, void const* pContent, u32 uSize) {
|
||||
switch (operation) {
|
||||
@@ -213,9 +195,6 @@ void JStudio_JStage::TAdaptor_actor::adaptor_do_RELATION(
|
||||
}
|
||||
}
|
||||
|
||||
/* 8028AC48-8028ACA4 285588 005C+00 1/0 0/0 0/0 .text
|
||||
* adaptor_do_RELATION_NODE__Q214JStudio_JStage14TAdaptor_actorFQ37JStudio4data15TEOperationDataPCvUl
|
||||
*/
|
||||
void JStudio_JStage::TAdaptor_actor::adaptor_do_RELATION_NODE(
|
||||
JStudio::data::TEOperationData operation, void const* pContent, u32 uSize) {
|
||||
switch (operation) {
|
||||
@@ -232,9 +211,6 @@ void JStudio_JStage::TAdaptor_actor::adaptor_do_RELATION_NODE(
|
||||
}
|
||||
}
|
||||
|
||||
/* 8028ACA4-8028ACFC 2855E4 0058+00 1/0 0/0 0/0 .text
|
||||
* adaptor_do_RELATION_ENABLE__Q214JStudio_JStage14TAdaptor_actorFQ37JStudio4data15TEOperationDataPCvUl
|
||||
*/
|
||||
void JStudio_JStage::TAdaptor_actor::adaptor_do_RELATION_ENABLE(
|
||||
JStudio::data::TEOperationData operation, void const* pContent, u32 uSize) {
|
||||
switch (operation) {
|
||||
@@ -246,9 +222,6 @@ void JStudio_JStage::TAdaptor_actor::adaptor_do_RELATION_ENABLE(
|
||||
}
|
||||
}
|
||||
|
||||
/* 8028ACFC-8028AD38 28563C 003C+00 3/3 0/0 0/0 .text
|
||||
* setJSG_ID___Q214JStudio_JStage14TAdaptor_actorFMQ26JStage6TActorFPCvPvUl_vQ37JStudio4data15TEOperationDataPCvUl
|
||||
*/
|
||||
void JStudio_JStage::TAdaptor_actor::setJSG_ID_(void (JStage::TActor::*function)(u32),
|
||||
JStudio::data::TEOperationData operation,
|
||||
void const* pContent, u32 uSize) {
|
||||
|
||||
@@ -88,9 +88,6 @@ void JStudio_JStage::TAdaptor_camera::adaptor_do_PARENT(JStudio::data::TEOperati
|
||||
}
|
||||
}
|
||||
|
||||
/* 8028BC14-8028BC70 286554 005C+00 1/0 0/0 0/0 .text
|
||||
* adaptor_do_PARENT_NODE__Q214JStudio_JStage15TAdaptor_cameraFQ37JStudio4data15TEOperationDataPCvUl
|
||||
*/
|
||||
void JStudio_JStage::TAdaptor_camera::adaptor_do_PARENT_NODE(JStudio::data::TEOperationData param_1,
|
||||
void const* pContent, u32 uSize) {
|
||||
switch (param_1) {
|
||||
@@ -107,9 +104,6 @@ void JStudio_JStage::TAdaptor_camera::adaptor_do_PARENT_NODE(JStudio::data::TEOp
|
||||
}
|
||||
}
|
||||
|
||||
/* 8028BC70-8028BCEC 2865B0 007C+00 1/0 0/0 0/0 .text
|
||||
* adaptor_do_PARENT_ENABLE__Q214JStudio_JStage15TAdaptor_cameraFQ37JStudio4data15TEOperationDataPCvUl
|
||||
*/
|
||||
void
|
||||
JStudio_JStage::TAdaptor_camera::adaptor_do_PARENT_ENABLE(JStudio::data::TEOperationData param_1,
|
||||
void const* pContent, u32 uSize) {
|
||||
@@ -136,9 +130,6 @@ JStudio_JStage::TAdaptor_camera::adaptor_do_PARENT_ENABLE(JStudio::data::TEOpera
|
||||
}
|
||||
}
|
||||
|
||||
/* 8028BCEC-8028BD00 28662C 0014+00 1/0 0/0 0/0 .text
|
||||
* adaptor_do_PARENT_FUNCTION__Q214JStudio_JStage15TAdaptor_cameraFQ37JStudio4data15TEOperationDataPCvUl
|
||||
*/
|
||||
void
|
||||
JStudio_JStage::TAdaptor_camera::adaptor_do_PARENT_FUNCTION(JStudio::data::TEOperationData param_1,
|
||||
void const* pContent, u32 uSize) {
|
||||
@@ -151,9 +142,6 @@ JStudio_JStage::TAdaptor_camera::adaptor_do_PARENT_FUNCTION(JStudio::data::TEOpe
|
||||
}
|
||||
}
|
||||
|
||||
/* 8028BD00-8028BD44 286640 0044+00 1/0 0/0 0/0 .text
|
||||
* adaptor_do_TARGET_PARENT__Q214JStudio_JStage15TAdaptor_cameraFQ37JStudio4data15TEOperationDataPCvUl
|
||||
*/
|
||||
void JStudio_JStage::TAdaptor_camera::adaptor_do_TARGET_PARENT(
|
||||
JStudio::data::TEOperationData param_1, void const* pContent, u32 uSize) {
|
||||
switch(param_1) {
|
||||
@@ -165,9 +153,6 @@ void JStudio_JStage::TAdaptor_camera::adaptor_do_TARGET_PARENT(
|
||||
}
|
||||
}
|
||||
|
||||
/* 8028BD44-8028BDA0 286684 005C+00 1/0 0/0 0/0 .text
|
||||
* adaptor_do_TARGET_PARENT_NODE__Q214JStudio_JStage15TAdaptor_cameraFQ37JStudio4data15TEOperationDataPCvUl
|
||||
*/
|
||||
void JStudio_JStage::TAdaptor_camera::adaptor_do_TARGET_PARENT_NODE(
|
||||
JStudio::data::TEOperationData param_1, void const* pContent, u32 uSize) {
|
||||
switch (param_1) {
|
||||
@@ -184,9 +169,6 @@ void JStudio_JStage::TAdaptor_camera::adaptor_do_TARGET_PARENT_NODE(
|
||||
}
|
||||
}
|
||||
|
||||
/* 8028BDA0-8028BDBC 2866E0 001C+00 1/0 0/0 0/0 .text
|
||||
* adaptor_do_TARGET_PARENT_ENABLE__Q214JStudio_JStage15TAdaptor_cameraFQ37JStudio4data15TEOperationDataPCvUl
|
||||
*/
|
||||
void JStudio_JStage::TAdaptor_camera::adaptor_do_TARGET_PARENT_ENABLE(
|
||||
JStudio::data::TEOperationData param_1, void const* pContent, u32 uSize) {
|
||||
switch(param_1) {
|
||||
|
||||
@@ -6,9 +6,6 @@
|
||||
|
||||
#include "JSystem/JStudio/JStudio_JStage/object.h"
|
||||
|
||||
/* 8028A1F8-8028A290 284B38 0098+00 0/0 2/2 0/0 .text
|
||||
* transform_toGlobalFromLocal__14JStudio_JStageFPA4_fRCQ37JStudio8TControl39TTransform_translation_rotation_scalingPCQ26JStage7TObjectUl
|
||||
*/
|
||||
bool JStudio_JStage::transform_toGlobalFromLocal(
|
||||
f32 (*param_1)[4], JStudio::TControl::TTransform_translation_rotation_scaling const& param_2,
|
||||
JStage::TObject const* param_3, u32 param_4) {
|
||||
@@ -26,9 +23,6 @@ bool JStudio_JStage::transform_toGlobalFromLocal(
|
||||
return true;
|
||||
}
|
||||
|
||||
/* 8028A290-8028A328 284BD0 0098+00 0/0 3/3 0/0 .text
|
||||
* transform_toGlobalFromLocal__14JStudio_JStageFPA4_fRCQ37JStudio8TControl19TTransform_positionPCQ26JStage7TObjectUl
|
||||
*/
|
||||
bool JStudio_JStage::transform_toGlobalFromLocal(
|
||||
f32 (*param_1)[4], JStudio::TControl::TTransform_position const& param_2,
|
||||
JStage::TObject const* param_3, u32 param_4) {
|
||||
@@ -45,9 +39,6 @@ bool JStudio_JStage::transform_toGlobalFromLocal(
|
||||
return true;
|
||||
}
|
||||
|
||||
/* 8028A328-8028A3CC 284C68 00A4+00 0/0 1/1 0/0 .text
|
||||
* transform_toLocalFromGlobal__14JStudio_JStageFPA4_fRCQ37JStudio8TControl39TTransform_translation_rotation_scalingPCQ26JStage7TObjectUl
|
||||
*/
|
||||
bool JStudio_JStage::transform_toLocalFromGlobal(
|
||||
f32 (*param_1)[4], JStudio::TControl::TTransform_translation_rotation_scaling const& param_2,
|
||||
JStage::TObject const* param_3, u32 param_4) {
|
||||
@@ -67,9 +58,6 @@ bool JStudio_JStage::transform_toLocalFromGlobal(
|
||||
return true;
|
||||
}
|
||||
|
||||
/* 8028A3CC-8028A470 284D0C 00A4+00 0/0 2/2 0/0 .text
|
||||
* transform_toLocalFromGlobal__14JStudio_JStageFPA4_fRCQ37JStudio8TControl19TTransform_positionPCQ26JStage7TObjectUl
|
||||
*/
|
||||
bool JStudio_JStage::transform_toLocalFromGlobal(
|
||||
f32 (*param_1)[4], JStudio::TControl::TTransform_position const& param_2,
|
||||
JStage::TObject const* param_3, u32 param_4) {
|
||||
@@ -118,9 +106,6 @@ s32 JStudio_JStage::TAdaptor_object_::adaptor_object_findJSGObjectNode_(
|
||||
return param_1->JSGFindNodeID(param_2);
|
||||
}
|
||||
|
||||
/* 8028A550-8028A5F0 284E90 00A0+00 0/0 1/1 0/0 .text
|
||||
* adaptor_object_ENABLE___Q214JStudio_JStage16TAdaptor_object_FQ37JStudio4data15TEOperationDataPCvUl
|
||||
*/
|
||||
void
|
||||
JStudio_JStage::TAdaptor_object_::adaptor_object_ENABLE_(JStudio::data::TEOperationData param_1,
|
||||
void const* pContent, u32 uSize) {
|
||||
|
||||
@@ -339,9 +339,6 @@ JUTCacheFont::TGlyphCacheInfo* JUTCacheFont::determineBlankPage() {
|
||||
return NULL;
|
||||
}
|
||||
|
||||
/* 802DDBBC-802DDCE4 2D84FC 0128+00 1/1 0/0 0/0 .text
|
||||
* getGlyphFromAram__12JUTCacheFontFPQ212JUTCacheFont15TGlyphCacheInfoPQ212JUTCacheFont10TCachePagePiPi
|
||||
*/
|
||||
void JUTCacheFont::getGlyphFromAram(JUTCacheFont::TGlyphCacheInfo* param_0,
|
||||
JUTCacheFont::TCachePage* pCachePage, int* param_2, int* param_3) {
|
||||
TGlyphCacheInfo* pGylphCacheInfo = pCachePage;
|
||||
|
||||
@@ -1,9 +1,10 @@
|
||||
#include "JSystem/JSystem.h" // IWYU pragma: keep
|
||||
|
||||
#include "JSystem/JUtility/JUTResFont.h"
|
||||
#include <dolphin/dolphin.h>
|
||||
#include "global.h"
|
||||
|
||||
extern u8 const JUTResFONT_Ascfont_fix12[16736] ATTRIBUTE_ALIGN(32) = {
|
||||
u8 const JUTResFONT_Ascfont_fix12[] ATTRIBUTE_ALIGN(32) = {
|
||||
0x46, 0x4F, 0x4E, 0x54, 0x62, 0x66, 0x6E, 0x31, 0x00, 0x00, 0x41, 0x60, 0x00, 0x00, 0x00, 0x04,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x49, 0x4E, 0x46, 0x31, 0x00, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x0C, 0x00, 0x00, 0x00, 0x0C,
|
||||
|
||||
@@ -172,10 +172,8 @@ void* JUTGamePad::C3ButtonReset::sCallbackArg;
|
||||
|
||||
OSTime JUTGamePad::C3ButtonReset::sThreshold = (OSTime)(OS_TIMER_CLOCK / 60) * 30;
|
||||
|
||||
/* 80451500 0001+00 data_80451500 None */
|
||||
bool JUTGamePad::C3ButtonReset::sResetSwitchPushing;
|
||||
|
||||
/* 80451501 0003+00 data_80451501 None */
|
||||
bool JUTGamePad::C3ButtonReset::sResetOccurred;
|
||||
|
||||
s32 JUTGamePad::C3ButtonReset::sResetOccurredPort;
|
||||
|
||||
@@ -489,16 +489,10 @@ void cCcS::DrawClear() {
|
||||
|
||||
void cCcS::SetCoGCorrectProc(cCcD_Obj* pco1_obj, cCcD_Obj* pco2_obj) {}
|
||||
|
||||
/* 80265DF8-80265DFC 260738 0004+00 1/0 0/0 0/0 .text
|
||||
* SetCoGObjInf__4cCcSFbbP12cCcD_GObjInfP12cCcD_GObjInfP9cCcD_SttsP9cCcD_SttsP10cCcD_GSttsP10cCcD_GStts
|
||||
*/
|
||||
void cCcS::SetCoGObjInf(bool co2_set, bool co1_set, cCcD_GObjInf* pco1_gobj,
|
||||
cCcD_GObjInf* pco2_gobj, cCcD_Stts* pco1_stts, cCcD_Stts* pco2_stts,
|
||||
cCcD_GStts* pco1_gstts, cCcD_GStts* pco2_gstts) {}
|
||||
|
||||
/* 80265DFC-80265E00 26073C 0004+00 1/0 0/0 0/0 .text
|
||||
* SetAtTgGObjInf__4cCcSFbbP8cCcD_ObjP8cCcD_ObjP12cCcD_GObjInfP12cCcD_GObjInfP9cCcD_SttsP9cCcD_SttsP10cCcD_GSttsP10cCcD_GSttsP4cXyz
|
||||
*/
|
||||
void cCcS::SetAtTgGObjInf(bool param_0, bool param_1, cCcD_Obj* pat_obj, cCcD_Obj* ptg_obj,
|
||||
cCcD_GObjInf* pat_gobj, cCcD_GObjInf* ptg_gobj, cCcD_Stts* pat_stts,
|
||||
cCcD_Stts* ptg_stts, cCcD_GStts* pat_gstts, cCcD_GStts* ptg_gstts,
|
||||
@@ -509,9 +503,6 @@ bool cCcS::ChkNoHitGAtTg(const cCcD_GObjInf* pat_gobj, const cCcD_GObjInf* ptg_g
|
||||
return false;
|
||||
}
|
||||
|
||||
/* 80265E08-80265E10 260748 0008+00 1/0 0/0 0/0 .text
|
||||
* ChkAtTgHitAfterCross__4cCcSFbbPC12cCcD_GObjInfPC12cCcD_GObjInfP9cCcD_SttsP9cCcD_SttsP10cCcD_GSttsP10cCcD_GStts
|
||||
*/
|
||||
bool cCcS::ChkAtTgHitAfterCross(bool param_0, bool param_1, const cCcD_GObjInf* pat_gobj,
|
||||
const cCcD_GObjInf* ptg_gobj, cCcD_Stts* pat_stts, cCcD_Stts* ptg_stts,
|
||||
cCcD_GStts* pat_gstts, cCcD_GStts* ptg_gstts) {
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
#include "TRK_MINNOW_DOLPHIN/Os/dolphin/dolphin_trk.h"
|
||||
#include "TRK_MINNOW_DOLPHIN/MetroTRK/Portable/main_TRK.h"
|
||||
#include "TRK_MINNOW_DOLPHIN/MetroTRK/Portable/mem_TRK.h"
|
||||
#include "TRK_MINNOW_DOLPHIN/Os/dolphin/dolphin_trk_glue.h"
|
||||
#include "TRK_MINNOW_DOLPHIN/ppc/Generic/targimpl.h"
|
||||
#include <dolphin/ar.h>
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
#include "TRK_MINNOW_DOLPHIN/MetroTRK/Portable/msgbuf.h"
|
||||
#include "TRK_MINNOW_DOLPHIN/MetroTRK/Portable/nubinit.h"
|
||||
#include "TRK_MINNOW_DOLPHIN/MetroTRK/Portable/mutex_TRK.h"
|
||||
|
||||
TRKBuffer gTRKMsgBufs[3];
|
||||
|
||||
|
||||
@@ -778,9 +778,6 @@ u32 Z2Audience::calcDeltaPriority_(f32 param_0, int distVolBit, bool param_2) co
|
||||
return mSetting.field_0xac[distVolBit] * (param_0 - mSetting.field_0x3c);
|
||||
}
|
||||
|
||||
/* 802BDCB0-802BDD00 2B85F0 0050+00 1/1 0/0 0/0 .text
|
||||
* calcPitchDoppler___10Z2AudienceCFRCQ29JGeometry8TVec3<f>RCQ29JGeometry8TVec3<f>RCQ29JGeometry8TVec3<f>f
|
||||
*/
|
||||
f32 Z2Audience::calcPitchDoppler_(const JGeometry::TVec3<f32>& param_0,
|
||||
const JGeometry::TVec3<f32>& param_1,
|
||||
const JGeometry::TVec3<f32>& param_2, f32 param_3) const {
|
||||
|
||||
@@ -8,8 +8,6 @@ static void Z2_E_ms_modVol(Z2SoundHandlePool*, u32);
|
||||
static void Z2_E_mm_modPitch(Z2SoundHandlePool*, u32);
|
||||
static void Z2_B_zan_modPitch(Z2SoundHandlePool*, u32);
|
||||
|
||||
/* 80451358 0001+00 data_80451358 None */
|
||||
/* 80451359 0007+00 data_80451359 None */
|
||||
s8 data_80451358;
|
||||
s8 data_80451359;
|
||||
|
||||
|
||||
@@ -103,11 +103,8 @@ f32 Z2Param::MIN_DISTANCE_VOLUME;
|
||||
|
||||
f32 Z2Param::ENEMY_LASTHIT_MUTE_VOLUME;
|
||||
|
||||
/* 80451340 0001+00 data_80451340 None */
|
||||
u8 Z2Param::DARK_SE_FILTER_ON;
|
||||
|
||||
/* 80451341 0001+00 data_80451341 None */
|
||||
u8 Z2Param::DARK_SE_LOW_PASS_FILTER_SETTING;
|
||||
|
||||
/* 80451342 0006+00 data_80451342 None */
|
||||
u8 Z2Param::SYSTEM_SE_USE_DARK_SE_SETTING;
|
||||
|
||||
@@ -528,8 +528,8 @@ u32 Z2SoundObjAnime::getSoundID(const JAUSoundAnimationSound* animationSound,
|
||||
|
||||
bool Z2SoundObjAnime::playsSound(const JAUSoundAnimationSound* animationSound,
|
||||
const JGeometry::TVec3<f32>& param_1, f32 param_2) {
|
||||
(void)param_1;
|
||||
(void)param_2;
|
||||
UNUSED(param_1);
|
||||
UNUSED(param_2);
|
||||
|
||||
if (animationSound->playsOnlyOnce()) {
|
||||
if (field_0x3c != animationSound->field_0x16) {
|
||||
|
||||
@@ -206,7 +206,7 @@ f32 Z2WolfHowlMgr::getNowInputValue() {
|
||||
}
|
||||
|
||||
void Z2WolfHowlMgr::calcPitchMod(f32 param_0, f32 param_1) {
|
||||
(void)param_0;
|
||||
UNUSED(param_0);
|
||||
|
||||
f32 pitch = 1.0f;
|
||||
field_0x20 = getNowPitch();
|
||||
|
||||
@@ -407,7 +407,7 @@ static actor_method_class l_daDr_Method = {
|
||||
(process_method_func)daDr_Draw,
|
||||
};
|
||||
|
||||
extern actor_process_profile_definition g_profile_DR = {
|
||||
actor_process_profile_definition g_profile_DR = {
|
||||
fpcLy_CURRENT_e, // mLayerID
|
||||
7, // mListID
|
||||
fpcPi_CURRENT_e, // mListPrio
|
||||
|
||||
@@ -197,7 +197,7 @@ static actor_method_class l_daL7lowDr_Method = {
|
||||
(process_method_func)daL7lowDr_Draw,
|
||||
};
|
||||
|
||||
extern actor_process_profile_definition g_profile_L7lowDr = {
|
||||
actor_process_profile_definition g_profile_L7lowDr = {
|
||||
fpcLy_CURRENT_e, // mLayerID
|
||||
7, // mListID
|
||||
fpcPi_CURRENT_e, // mListPrio
|
||||
|
||||
@@ -839,7 +839,7 @@ static actor_method_class l_daL7ODR_Method = {
|
||||
(process_method_func)daL7ODR_Draw,
|
||||
};
|
||||
|
||||
extern actor_process_profile_definition g_profile_L7ODR = {
|
||||
actor_process_profile_definition g_profile_L7ODR = {
|
||||
fpcLy_CURRENT_e, // mLayerID
|
||||
7, // mListID
|
||||
fpcPi_CURRENT_e, // mListPrio
|
||||
|
||||
@@ -18882,7 +18882,7 @@ static actor_method_class l_daAlink_Method = {
|
||||
(process_method_func)daAlink_Draw,
|
||||
};
|
||||
|
||||
extern actor_process_profile_definition g_profile_ALINK = {
|
||||
actor_process_profile_definition g_profile_ALINK = {
|
||||
fpcLy_CURRENT_e,
|
||||
5,
|
||||
fpcPi_CURRENT_e,
|
||||
|
||||
@@ -187,7 +187,7 @@ static actor_method_class l_daAlldie_Method = {
|
||||
(process_method_func)daAlldie_Draw,
|
||||
};
|
||||
|
||||
extern actor_process_profile_definition g_profile_ALLDIE = {
|
||||
actor_process_profile_definition g_profile_ALLDIE = {
|
||||
fpcLy_CURRENT_e,
|
||||
2,
|
||||
fpcPi_CURRENT_e,
|
||||
|
||||
@@ -111,7 +111,7 @@ static actor_method_class l_daAndsw_Method = {
|
||||
(process_method_func)NULL,
|
||||
};
|
||||
|
||||
extern actor_process_profile_definition g_profile_ANDSW = {
|
||||
actor_process_profile_definition g_profile_ANDSW = {
|
||||
fpcLy_CURRENT_e, // mLayerID
|
||||
7, // mListID
|
||||
fpcPi_CURRENT_e, // mListPrio
|
||||
|
||||
@@ -342,7 +342,7 @@ static actor_method_class l_daAndsw2_Method = {
|
||||
(process_method_func)daAndsw2_Execute,
|
||||
};
|
||||
|
||||
extern actor_process_profile_definition g_profile_ANDSW2 = {
|
||||
actor_process_profile_definition g_profile_ANDSW2 = {
|
||||
fpcLy_CURRENT_e, // mLayerID
|
||||
7, // mListID
|
||||
fpcPi_CURRENT_e, // mListPrio
|
||||
|
||||
@@ -1220,7 +1220,7 @@ static actor_method_class l_daArrowMethodTable = {
|
||||
(process_method_func)daArrow_draw,
|
||||
};
|
||||
|
||||
extern actor_process_profile_definition g_profile_ARROW = {
|
||||
actor_process_profile_definition g_profile_ARROW = {
|
||||
fpcLy_CURRENT_e, // mLayerID
|
||||
9, // mListID
|
||||
fpcPi_CURRENT_e, // mListPrio
|
||||
|
||||
@@ -94,7 +94,6 @@ static int daB_BH_Draw(b_bh_class* i_this) {
|
||||
return 1;
|
||||
}
|
||||
|
||||
/* 805B33ED 0003+00 data_805B33ED None */
|
||||
static u8 hio_set;
|
||||
|
||||
static daB_BH_HIO_c l_HIO;
|
||||
@@ -1577,7 +1576,7 @@ static actor_method_class l_daB_BH_Method = {
|
||||
(process_method_func)daB_BH_Draw,
|
||||
};
|
||||
|
||||
extern actor_process_profile_definition g_profile_B_BH = {
|
||||
actor_process_profile_definition g_profile_B_BH = {
|
||||
fpcLy_CURRENT_e, // mLayerID
|
||||
7, // mListID
|
||||
fpcPi_CURRENT_e, // mListPrio
|
||||
|
||||
@@ -2672,7 +2672,7 @@ static actor_method_class l_daB_BQ_Method = {
|
||||
(process_method_func)daB_BQ_Draw,
|
||||
};
|
||||
|
||||
extern actor_process_profile_definition g_profile_B_BQ = {
|
||||
actor_process_profile_definition g_profile_B_BQ = {
|
||||
fpcLy_CURRENT_e,
|
||||
7,
|
||||
fpcPi_CURRENT_e,
|
||||
|
||||
@@ -281,7 +281,6 @@ daB_DR_HIO_c::daB_DR_HIO_c() {
|
||||
breath_feint2_OFF = true;
|
||||
}
|
||||
|
||||
/* 805C78FD 0003+00 hio_set None */
|
||||
static u8 hio_set;
|
||||
|
||||
static daB_DR_HIO_c l_HIO;
|
||||
@@ -4287,7 +4286,7 @@ static actor_method_class l_daB_DR_Method = {
|
||||
(process_method_func)daB_DR_Draw,
|
||||
};
|
||||
|
||||
extern actor_process_profile_definition g_profile_B_DR = {
|
||||
actor_process_profile_definition g_profile_B_DR = {
|
||||
fpcLy_CURRENT_e, // mLayerID
|
||||
4, // mListID
|
||||
fpcPi_CURRENT_e, // mListPrio
|
||||
|
||||
@@ -943,7 +943,7 @@ static actor_method_class l_daB_DRE_Method = {
|
||||
(process_method_func)daB_DRE_Draw,
|
||||
};
|
||||
|
||||
extern actor_process_profile_definition g_profile_B_DRE = {
|
||||
actor_process_profile_definition g_profile_B_DRE = {
|
||||
fpcLy_CURRENT_e, // mLayerID
|
||||
7, // mListID
|
||||
fpcPi_CURRENT_e, // mListPrio
|
||||
|
||||
@@ -203,13 +203,9 @@ static bool hio_set;
|
||||
|
||||
static daB_DS_HIO_c l_HIO;
|
||||
|
||||
/* 805DDB0C 0002+00 data_805DDB0C handL_ang */
|
||||
/* 805DDB0E 0002+00 data_805DDB0E handR_ang */
|
||||
static s16 handL_ang;
|
||||
static s16 handR_ang;
|
||||
|
||||
/* 805DDB10 0002+00 data_805DDB10 handX_ang */
|
||||
/* 805DDB12 0002+00 breathTimerBase None */
|
||||
static s16 handX_ang;
|
||||
static u8 breathTimerBase;
|
||||
|
||||
@@ -5686,7 +5682,7 @@ static actor_method_class l_daB_DS_Method = {
|
||||
(process_method_func)daB_DS_Draw,
|
||||
};
|
||||
|
||||
extern actor_process_profile_definition g_profile_B_DS = {
|
||||
actor_process_profile_definition g_profile_B_DS = {
|
||||
fpcLy_CURRENT_e,
|
||||
4,
|
||||
fpcPi_CURRENT_e,
|
||||
|
||||
@@ -543,10 +543,8 @@ static s16 s_TargetAngle;
|
||||
|
||||
static cXyz s_centerpos(217.0f, 1275.0f, -57.0f);
|
||||
|
||||
/* 805ED74C 0002+00 data_805ED74C s_M_Action__22@unnamed@d_a_b_gg_cpp@ */
|
||||
static s16 s_M_Action;
|
||||
|
||||
/* 805ED74E 0002+00 data_805ED74E s_W_Action__22@unnamed@d_a_b_gg_cpp@ */
|
||||
static s16 s_W_Action;
|
||||
}
|
||||
|
||||
@@ -4458,7 +4456,7 @@ static actor_method_class l_daB_GG_Method = {
|
||||
(process_method_func)daB_GG_Draw,
|
||||
};
|
||||
|
||||
extern actor_process_profile_definition g_profile_B_GG = {
|
||||
actor_process_profile_definition g_profile_B_GG = {
|
||||
fpcLy_CURRENT_e, // mLayerID
|
||||
7, // mListID
|
||||
fpcPi_CURRENT_e, // mListPrio
|
||||
|
||||
@@ -2231,7 +2231,7 @@ static actor_method_class l_daB_GM_Method = {
|
||||
(process_method_func)daB_GM_Draw,
|
||||
};
|
||||
|
||||
extern actor_process_profile_definition g_profile_B_GM = {
|
||||
actor_process_profile_definition g_profile_B_GM = {
|
||||
fpcLy_CURRENT_e, // mLayerID
|
||||
7, // mListID
|
||||
fpcPi_CURRENT_e, // mListPrio
|
||||
|
||||
@@ -4956,7 +4956,7 @@ static actor_method_class l_daB_GND_Method = {
|
||||
(process_method_func)daB_GND_Draw,
|
||||
};
|
||||
|
||||
extern actor_process_profile_definition g_profile_B_GND = {
|
||||
actor_process_profile_definition g_profile_B_GND = {
|
||||
fpcLy_CURRENT_e, // mLayerID
|
||||
7, // mListID
|
||||
fpcPi_CURRENT_e, // mListPrio
|
||||
|
||||
@@ -290,7 +290,7 @@ static actor_method_class l_daB_GO_Method = {
|
||||
(process_method_func)daB_GO_Draw,
|
||||
};
|
||||
|
||||
extern actor_process_profile_definition g_profile_B_GO = {
|
||||
actor_process_profile_definition g_profile_B_GO = {
|
||||
fpcLy_CURRENT_e,
|
||||
7,
|
||||
fpcPi_CURRENT_e,
|
||||
|
||||
@@ -415,7 +415,7 @@ static actor_method_class l_daB_GOS_Method = {
|
||||
(process_method_func)daB_GOS_Draw,
|
||||
};
|
||||
|
||||
extern actor_process_profile_definition g_profile_B_GOS = {
|
||||
actor_process_profile_definition g_profile_B_GOS = {
|
||||
fpcLy_CURRENT_e,
|
||||
8,
|
||||
fpcPi_CURRENT_e,
|
||||
|
||||
@@ -3584,7 +3584,7 @@ static actor_method_class l_daB_MGN_Method = {
|
||||
(process_method_func)daB_MGN_Draw,
|
||||
};
|
||||
|
||||
extern actor_process_profile_definition g_profile_B_MGN = {
|
||||
actor_process_profile_definition g_profile_B_MGN = {
|
||||
fpcLy_CURRENT_e, // mLayerID
|
||||
7, // mListID
|
||||
fpcPi_CURRENT_e, // mListPrio
|
||||
|
||||
@@ -3648,7 +3648,7 @@ static actor_method_class l_daB_OB_Method = {
|
||||
(process_method_func)daB_OB_Draw,
|
||||
};
|
||||
|
||||
extern actor_process_profile_definition g_profile_B_OB = {
|
||||
actor_process_profile_definition g_profile_B_OB = {
|
||||
fpcLy_CURRENT_e,
|
||||
4,
|
||||
fpcPi_CURRENT_e,
|
||||
|
||||
@@ -118,7 +118,6 @@ static int daB_OH_Draw(b_oh_class* i_this) {
|
||||
return 1;
|
||||
}
|
||||
|
||||
/* 8061DBB5 0003+00 data_8061DBB5 None */
|
||||
static u8 data_8061DBB5;
|
||||
|
||||
static daB_OH_HIO_c l_HIO;
|
||||
@@ -831,7 +830,7 @@ static actor_method_class l_daB_OH_Method = {
|
||||
(process_method_func)daB_OH_Draw,
|
||||
};
|
||||
|
||||
extern actor_process_profile_definition g_profile_B_OH = {
|
||||
actor_process_profile_definition g_profile_B_OH = {
|
||||
fpcLy_CURRENT_e,
|
||||
3,
|
||||
fpcPi_CURRENT_e,
|
||||
|
||||
@@ -299,7 +299,7 @@ static actor_method_class l_daB_OH2_Method = {
|
||||
(process_method_func)daB_OH2_Draw,
|
||||
};
|
||||
|
||||
extern actor_process_profile_definition g_profile_B_OH2 = {
|
||||
actor_process_profile_definition g_profile_B_OH2 = {
|
||||
fpcLy_CURRENT_e,
|
||||
7,
|
||||
fpcPi_CURRENT_e,
|
||||
|
||||
@@ -342,7 +342,6 @@ void daB_TN_c::calcWaistAngle() {
|
||||
cLib_addCalcAngleS2(&mWaistAngle, sVar1, 4, 0x1000);
|
||||
}
|
||||
|
||||
/* 8062F01D 0003+00 data_8062F01D None */
|
||||
static u8 hio_set;
|
||||
|
||||
static daB_TN_HIO_c l_HIO;
|
||||
@@ -5174,7 +5173,7 @@ static actor_method_class l_daB_TN_Method = {
|
||||
(process_method_func)daB_TN_Draw,
|
||||
};
|
||||
|
||||
extern actor_process_profile_definition g_profile_B_TN = {
|
||||
actor_process_profile_definition g_profile_B_TN = {
|
||||
fpcLy_CURRENT_e, // mLayerID
|
||||
7, // mListID
|
||||
fpcPi_CURRENT_e, // mListPrio
|
||||
|
||||
@@ -122,7 +122,6 @@ enum L5_R50_RES_FIL_ID {
|
||||
/* 0x0A */ DZB_R50_P2,
|
||||
};
|
||||
|
||||
/* 80639F74 0001+00 data_80639F74 @1009 */
|
||||
static bool hio_set;
|
||||
|
||||
static daB_YO_HIO_c l_HIO;
|
||||
@@ -3432,7 +3431,7 @@ static actor_method_class l_daB_YO_Method = {
|
||||
(process_method_func)daB_YO_Draw,
|
||||
};
|
||||
|
||||
extern actor_process_profile_definition g_profile_B_YO = {
|
||||
actor_process_profile_definition g_profile_B_YO = {
|
||||
fpcLy_CURRENT_e, // mLayerID
|
||||
7, // mListID
|
||||
fpcPi_CURRENT_e, // mListPrio
|
||||
|
||||
@@ -1093,7 +1093,7 @@ static actor_method_class l_daB_YOI_Method = {
|
||||
(process_method_func)daB_YOI_Draw,
|
||||
};
|
||||
|
||||
extern actor_process_profile_definition g_profile_B_YOI = {
|
||||
actor_process_profile_definition g_profile_B_YOI = {
|
||||
fpcLy_CURRENT_e, // mLayerID
|
||||
7, // mListID
|
||||
fpcPi_CURRENT_e, // mListPrio
|
||||
|
||||
@@ -399,7 +399,6 @@ void daB_ZANT_c::setDamageSe(dCcD_Sph* i_hitSph, int i_dmgAmount) {
|
||||
}
|
||||
}
|
||||
|
||||
/* 8064F5F5 0003+00 hio_set None */
|
||||
static u8 hio_set;
|
||||
|
||||
static daB_ZANT_HIO_c l_HIO;
|
||||
@@ -5598,7 +5597,7 @@ static actor_method_class l_daB_ZANT_Method = {
|
||||
(process_method_func)daB_ZANT_Draw,
|
||||
};
|
||||
|
||||
extern actor_process_profile_definition g_profile_B_ZANT = {
|
||||
actor_process_profile_definition g_profile_B_ZANT = {
|
||||
fpcLy_CURRENT_e, // mLayerID
|
||||
4, // mListID
|
||||
fpcPi_CURRENT_e, // mListPrio
|
||||
|
||||
@@ -276,7 +276,7 @@ static actor_method_class l_daB_ZANTM_Method = {
|
||||
(process_method_func)daB_ZANTM_Draw,
|
||||
};
|
||||
|
||||
extern actor_process_profile_definition g_profile_B_ZANTM = {
|
||||
actor_process_profile_definition g_profile_B_ZANTM = {
|
||||
fpcLy_CURRENT_e, // mLayerID
|
||||
4, // mListID
|
||||
fpcPi_CURRENT_e, // mListPrio
|
||||
|
||||
@@ -506,7 +506,7 @@ static actor_method_class l_daB_ZANTZ_Method = {
|
||||
(process_method_func)daB_ZANTZ_Draw,
|
||||
};
|
||||
|
||||
extern actor_process_profile_definition g_profile_B_ZANTZ = {
|
||||
actor_process_profile_definition g_profile_B_ZANTZ = {
|
||||
fpcLy_CURRENT_e, // mLayerID
|
||||
4, // mListID
|
||||
fpcPi_CURRENT_e, // mListPrio
|
||||
|
||||
@@ -227,7 +227,7 @@ static actor_method_class l_daB_ZANTS_Method = {
|
||||
(process_method_func)daB_ZANTS_Draw,
|
||||
};
|
||||
|
||||
extern actor_process_profile_definition g_profile_B_ZANTS = {
|
||||
actor_process_profile_definition g_profile_B_ZANTS = {
|
||||
fpcLy_CURRENT_e,
|
||||
3,
|
||||
fpcPi_CURRENT_e,
|
||||
|
||||
@@ -717,7 +717,7 @@ static actor_method_class daBalloon2D_METHODS = {
|
||||
(process_method_func)daBalloon2D_draw,
|
||||
};
|
||||
|
||||
extern actor_process_profile_definition g_profile_BALLOON2D = {
|
||||
actor_process_profile_definition g_profile_BALLOON2D = {
|
||||
fpcLy_CURRENT_e, // mLayerID
|
||||
3, // mListID
|
||||
fpcPi_CURRENT_e, // mListPrio
|
||||
|
||||
@@ -1003,7 +1003,6 @@ static int daBd_Create(fopAc_ac_c* i_act_this) {
|
||||
i_act_this->field_0x560 = 1;
|
||||
i_this->mStts.Init(100, 0, i_act_this);
|
||||
|
||||
/* 804DA234-804DA274 0002AC 0040+00 1/1 0/0 0/0 .data cc_sph_src$4956 */
|
||||
static dCcD_SrcSph cc_sph_src = {
|
||||
{
|
||||
{0x0, {{0x0, 0x0, 0x0}, {0xd8fbfdff, 0x3}, 0x75}}, // mObj
|
||||
@@ -1054,7 +1053,7 @@ static actor_method_class l_daBd_Method = {
|
||||
(process_method_func)daBd_Draw,
|
||||
};
|
||||
|
||||
extern actor_process_profile_definition g_profile_BD = {
|
||||
actor_process_profile_definition g_profile_BD = {
|
||||
fpcLy_CURRENT_e, // mLayerID
|
||||
8, // mListID
|
||||
fpcPi_CURRENT_e, // mListPrio
|
||||
|
||||
@@ -623,7 +623,7 @@ static actor_method_class l_daBg_Method = {
|
||||
(process_method_func)daBg_Draw,
|
||||
};
|
||||
|
||||
extern actor_process_profile_definition2 g_profile_BG = {
|
||||
actor_process_profile_definition2 g_profile_BG = {
|
||||
fpcLy_CURRENT_e, // mLayerID
|
||||
7, // mListID
|
||||
fpcPi_CURRENT_e, // mListPrio
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user