mirror of
https://github.com/zeldaret/tww.git
synced 2026-07-30 23:54:54 -04:00
@@ -0,0 +1,510 @@
|
||||
/**
|
||||
* DynamicLink.cpp
|
||||
* REL Linking Manager
|
||||
*/
|
||||
|
||||
#include "DynamicLink.h"
|
||||
#include "JSystem/JKernel/JKRArchive.h"
|
||||
#include "JSystem/JKernel/JKRDvdRipper.h"
|
||||
#include "JSystem/JKernel/JKRExpHeap.h"
|
||||
#include "JSystem/JKernel/JKRFileCache.h"
|
||||
#include "JSystem/JUtility/JUTAssert.h"
|
||||
#include "JSystem/JUtility/JUTConsole.h"
|
||||
#include "MSL_C/stdio.h"
|
||||
#include "REL/executor.h"
|
||||
#include "m_Do/m_Do_dvd_thread.h"
|
||||
#include "dolphin/os/OS.h"
|
||||
|
||||
// TODO
|
||||
// #include "m_Do/m_Do_ext.h"
|
||||
JKRExpHeap* mDoExt_getArchiveHeap();
|
||||
extern JKRExpHeap* archiveHeap;
|
||||
// end m_Do_ext.h
|
||||
|
||||
DynamicModuleControlBase* DynamicModuleControlBase::mFirst;
|
||||
DynamicModuleControlBase* DynamicModuleControlBase::mLast;
|
||||
|
||||
DynamicModuleControlBase::~DynamicModuleControlBase() {
|
||||
force_unlink();
|
||||
if (mPrev != NULL) {
|
||||
mPrev->mNext = mNext;
|
||||
}
|
||||
if (mNext != NULL) {
|
||||
mNext->mPrev = mPrev;
|
||||
}
|
||||
if (mFirst == this) {
|
||||
mFirst = mNext;
|
||||
}
|
||||
if (mLast == this) {
|
||||
mLast = mPrev;
|
||||
}
|
||||
mNext = NULL;
|
||||
mPrev = NULL;
|
||||
}
|
||||
|
||||
DynamicModuleControlBase::DynamicModuleControlBase() {
|
||||
mLinkCount = 0;
|
||||
mDoLinkCount = 0;
|
||||
mNext = NULL;
|
||||
if (mFirst == NULL) {
|
||||
mFirst = this;
|
||||
}
|
||||
mPrev = mLast;
|
||||
if (mPrev != NULL) {
|
||||
mPrev->mNext = this;
|
||||
}
|
||||
mLast = this;
|
||||
}
|
||||
|
||||
extern OSThread mainThread;
|
||||
|
||||
BOOL DynamicModuleControlBase::link() {
|
||||
OSThread* thread = OSGetCurrentThread();
|
||||
if (thread != &mainThread) {
|
||||
OSReport_Error("DynamicModuleControlBase::link not mainthread %08x\n", thread);
|
||||
}
|
||||
|
||||
if (mLinkCount == 0) {
|
||||
do_load();
|
||||
if (do_link() == false) {
|
||||
return false;
|
||||
}
|
||||
if (mDoLinkCount < 65535) {
|
||||
mDoLinkCount++;
|
||||
}
|
||||
}
|
||||
JUT_ASSERT(__FILE__, 100, mLinkCount < 65535);
|
||||
if (mLinkCount < 65535) {
|
||||
mLinkCount++;
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
BOOL DynamicModuleControlBase::unlink() {
|
||||
OSThread* thread = OSGetCurrentThread();
|
||||
if (thread != &mainThread) {
|
||||
OSReport_Error("DynamicModuleControlBase::unlink not mainthread %08x\n", thread);
|
||||
}
|
||||
|
||||
if (mLinkCount != 0) {
|
||||
mLinkCount--;
|
||||
if (mLinkCount == 0) {
|
||||
do_unlink();
|
||||
do_unload();
|
||||
}
|
||||
} else {
|
||||
OSReport_Warning("%08x DynamicModuleControlBase::unlink() mLinkCount id already zero.\n",
|
||||
this);
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
BOOL DynamicModuleControlBase::load_async() {
|
||||
if (mLinkCount == 0) {
|
||||
return do_load_async();
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
bool DynamicModuleControlBase::force_unlink() {
|
||||
if (mLinkCount != 0) {
|
||||
mLinkCount = 0;
|
||||
do_unlink();
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
void DynamicModuleControlBase::dump() {
|
||||
u16 doLinkCount;
|
||||
u16 linkCount;
|
||||
DynamicModuleControlBase* current = getFirstClass();
|
||||
size_t totalSize = 0;
|
||||
JUTReportConsole_f("\nDynamicModuleControlBase::dump()\n");
|
||||
JUTReportConsole_f("Do Ln Size Name\n");
|
||||
while (current != NULL) {
|
||||
doLinkCount = current->mDoLinkCount;
|
||||
linkCount = current->mLinkCount;
|
||||
if (doLinkCount != 0 || linkCount != 0) {
|
||||
u32 size = current->getModuleSize();
|
||||
const char* name = current->getModuleName();
|
||||
if (size < 0xFFFFFFFF) {
|
||||
name = (name != NULL) ? name : "(Null)";
|
||||
const char* type = current->getModuleTypeString();
|
||||
JUTReportConsole_f("%3d%3d%5.1f %05x %-4s %s\n", doLinkCount, linkCount,
|
||||
size / 1024.0f, size, type, name);
|
||||
totalSize = totalSize + size;
|
||||
} else {
|
||||
name = (name != NULL) ? name : "(Null)";
|
||||
const char* type = current->getModuleTypeString();
|
||||
JUTReportConsole_f("%3d%3d ???? ????? %-4s %s\n", doLinkCount, linkCount, type,
|
||||
name);
|
||||
}
|
||||
current->dump2();
|
||||
}
|
||||
current = current->getNextClass();
|
||||
}
|
||||
JUTReportConsole_f("TotalSize %6.2f %06x\n\n", totalSize / 1024.0f, totalSize);
|
||||
}
|
||||
|
||||
DynamicModuleControl::DynamicModuleControl(char const* name) {
|
||||
mModule = NULL;
|
||||
mBss = NULL;
|
||||
unk_24 = 0;
|
||||
mName = name;
|
||||
mResourceType = 0;
|
||||
unk_33 = 0;
|
||||
mChecksum = 0;
|
||||
mSize = 0;
|
||||
mAsyncLoadCallback = NULL;
|
||||
}
|
||||
|
||||
u32 DynamicModuleControl::sAllocBytes;
|
||||
JKRArchive* DynamicModuleControl::sArchive;
|
||||
JKRFileCache* DynamicModuleControl::sFileCache;
|
||||
|
||||
static const char* baseString = "Base";
|
||||
static const char* unusedString = ",ダイナミックリンクプログラム名,サイズ\n";
|
||||
static const char* unusedString2 = ",%s,%d,\n";
|
||||
static const char* unusedString3 = "\n";
|
||||
|
||||
JKRArchive* DynamicModuleControl::mountCallback(void* param_0) {
|
||||
JKRExpHeap* heap = mDoExt_getArchiveHeap();
|
||||
sFileCache = JKRFileCache::mount("/rels", heap, NULL);
|
||||
sArchive = JKRArchive::mount("RELS.arc", JKRArchive::MOUNT_COMP, heap,
|
||||
JKRArchive::MOUNT_DIRECTION_HEAD);
|
||||
if (sArchive == NULL) {
|
||||
// "Mount failure, but if the archive isn't created, it was too slow %s\n"
|
||||
OSReport_Error("マウント失敗ですが単にアーカイブを作ってないだけなら遅いだけです %s\n",
|
||||
"RELS.arc");
|
||||
}
|
||||
return sArchive;
|
||||
}
|
||||
|
||||
bool DynamicModuleControl::initialize() {
|
||||
sFileCache = NULL;
|
||||
sAllocBytes = 0;
|
||||
sArchive = NULL;
|
||||
mountCallback(NULL);
|
||||
return true;
|
||||
}
|
||||
|
||||
bool DynamicModuleControl::callback(void* moduleControlPtr) {
|
||||
DynamicModuleControl* moduleControl = (DynamicModuleControl*)moduleControlPtr;
|
||||
return moduleControl->do_load();
|
||||
}
|
||||
|
||||
static u32 calcSum2(u16 const* data, u32 size) {
|
||||
u32 sum = 0;
|
||||
while (size > 0) {
|
||||
sum = sum + *data;
|
||||
size = size - 2;
|
||||
data++;
|
||||
}
|
||||
return sum;
|
||||
}
|
||||
|
||||
bool DynamicModuleControl::do_load() {
|
||||
if (mModule != NULL) {
|
||||
return true;
|
||||
}
|
||||
s32 i = 0;
|
||||
while (true) {
|
||||
if (mModule != NULL) {
|
||||
i_JKRFree(mModule);
|
||||
mModule = NULL;
|
||||
}
|
||||
char buffer[64];
|
||||
snprintf(buffer, 64, "%s.rel", mName);
|
||||
if (mModule == NULL && sArchive != NULL) {
|
||||
if (mModule == NULL) {
|
||||
mModule = (OSModuleInfo*)JKRGetResource('MMEM', buffer, sArchive);
|
||||
if (mModule != NULL) {
|
||||
mResourceType = 1;
|
||||
}
|
||||
}
|
||||
if (mModule == NULL) {
|
||||
mModule = (OSModuleInfo*)JKRGetResource('AMEM', buffer, sArchive);
|
||||
if (mModule != NULL) {
|
||||
mResourceType = 2;
|
||||
}
|
||||
}
|
||||
if (mModule == NULL) {
|
||||
mModule = (OSModuleInfo*)JKRGetResource('DMEM', buffer, sArchive);
|
||||
if (mModule != NULL) {
|
||||
mResourceType = 3;
|
||||
}
|
||||
}
|
||||
}
|
||||
if (mModule != NULL) {
|
||||
mSize = sArchive->getExpandedResSize(mModule);
|
||||
JKRDetachResource(mModule, NULL);
|
||||
} else {
|
||||
if (mModule == NULL) {
|
||||
snprintf(buffer, 64, "/rels/%s.rel", mName);
|
||||
mModule = (OSModuleInfo*)JKRDvdToMainRam(
|
||||
buffer, NULL, EXPAND_SWITCH_UNKNOWN1, NULL, archiveHeap,
|
||||
JKRDvdRipper::ALLOC_DIRECTION_FORWARD, 0, NULL);
|
||||
if (mModule != NULL) {
|
||||
mSize = 0;
|
||||
mResourceType = 7;
|
||||
}
|
||||
}
|
||||
if (mModule == NULL && sFileCache != NULL) {
|
||||
mModule = (OSModuleInfo*)sFileCache->getResource('rels', buffer);
|
||||
if (mModule != NULL) {
|
||||
mSize = 0;
|
||||
mResourceType = 11;
|
||||
JKRDetachResource(mModule, NULL);
|
||||
}
|
||||
}
|
||||
}
|
||||
if (mModule == NULL) {
|
||||
// "DynamicModuleControl::do_load() Resource loading failure [%s]\n"
|
||||
OSReport_Error("DynamicModuleControl::do_load() リソース読み込み失敗 [%s]\n", mName);
|
||||
return false;
|
||||
}
|
||||
if (mSize > 0) {
|
||||
u32 sum = calcSum2((u16*)mModule, mSize);
|
||||
if (unk_33 == 0) {
|
||||
mChecksum = sum;
|
||||
unk_33++;
|
||||
} else {
|
||||
u32 newsum = sum & 0xFFFF;
|
||||
if (newsum != mChecksum) {
|
||||
OSReport_Error(
|
||||
// "DynamicModuleControl::do_load() Checksum Error %04x %04x[%s]\n"
|
||||
"DynamicModuleControl::do_load() チェックサムエラー %04x %04x[%s]\n",
|
||||
newsum, mChecksum, mName);
|
||||
unk_33 = 0;
|
||||
i++;
|
||||
if (i >= 3) {
|
||||
return false;
|
||||
}
|
||||
} else {
|
||||
if (unk_33 < 0xFF) {
|
||||
unk_33++;
|
||||
}
|
||||
break;
|
||||
}
|
||||
}
|
||||
} else {
|
||||
if (unk_33 < 0xFF) {
|
||||
unk_33++;
|
||||
}
|
||||
break;
|
||||
}
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
BOOL DynamicModuleControl::do_load_async() {
|
||||
if (mAsyncLoadCallback == NULL) {
|
||||
if (mModule != NULL) {
|
||||
return true;
|
||||
}
|
||||
mAsyncLoadCallback = mDoDvdThd_callback_c::create(
|
||||
(mDoDvdThd_callback_func)DynamicModuleControl::callback, this);
|
||||
if (mAsyncLoadCallback == NULL) {
|
||||
OSReport_Error(
|
||||
// "DynamicModuleControl::do_load_async() async load callback entry failure [%s]\n"
|
||||
"DynamicModuleControl::do_load_async() 非同期読み込みコールバック登録失敗 [%s]\n",
|
||||
mName);
|
||||
}
|
||||
}
|
||||
if (mAsyncLoadCallback != NULL && mAsyncLoadCallback->sync()) {
|
||||
mAsyncLoadCallback->destroy();
|
||||
mAsyncLoadCallback = NULL;
|
||||
return true;
|
||||
} else {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
bool DynamicModuleControl::do_unload() {
|
||||
if (mModule != NULL) {
|
||||
i_JKRFree(mModule);
|
||||
mModule = NULL;
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
void DynamicModuleControl::dump2() {
|
||||
if (mModule != NULL) {
|
||||
OSSectionInfo* section = (OSSectionInfo*)mModule->info.sectionInfoOffset;
|
||||
OSReport("mModule=%08x %08x %08x %08x %08x\n", mModule, section[1].mOffset & ~1,
|
||||
section[1].mSize, mModule->mImportTableOffset - mModule->mRelocationTableOffset,
|
||||
mModule->mImportTableSize);
|
||||
}
|
||||
}
|
||||
|
||||
BOOL DynamicModuleControl::do_link() {
|
||||
OSGetTime();
|
||||
if (mModule == NULL) {
|
||||
do_load();
|
||||
}
|
||||
if (mModule != NULL) {
|
||||
JUT_ASSERT(__FILE__, 613, mModule->info.sectionInfoOffset < 0x80000000);
|
||||
JUT_ASSERT(__FILE__, 615, (u32)mModule + mModule->fixSize < 0x82000000);
|
||||
OSGetTime();
|
||||
OSGetTime();
|
||||
if (mModule->mModuleVersion >= 3) {
|
||||
u32 fixSizePtr;
|
||||
u32 fixSize = mModule->fixSize;
|
||||
u32 fixSize2 = (fixSize + 0x1f) & ~0x1f;
|
||||
fixSizePtr = (u32)mModule + fixSize2;
|
||||
s32 size = JKRGetMemBlockSize(NULL, mModule);
|
||||
if (size < 0) {
|
||||
void* bss = JKRAlloc(mModule->mBssSize, 0x20);
|
||||
if (bss == NULL) {
|
||||
// "BSS Memory allocation failed\n"
|
||||
OSReport_Error("BSSメモリ確保失敗\n", bss);
|
||||
goto error;
|
||||
}
|
||||
mBss = bss;
|
||||
BOOL linkResult = OSLink(mModule);
|
||||
if (linkResult == FALSE) {
|
||||
// "link failed\n"
|
||||
OSReport_Error("リンク失敗\n");
|
||||
goto error;
|
||||
}
|
||||
} else {
|
||||
if (fixSize2 + mModule->mBssSize < size) {
|
||||
BOOL linkResult = OSLinkFixed(mModule, fixSizePtr);
|
||||
if (linkResult == FALSE) {
|
||||
// "link failed\n"
|
||||
OSReport_Error("リンク失敗\n");
|
||||
goto error;
|
||||
}
|
||||
s32 result = JKRResizeMemBlock(NULL, mModule, fixSize2 + mModule->mBssSize);
|
||||
if (result < 0) {
|
||||
// "Module size (resize) failed\n"
|
||||
OSReport_Error("モジュールリサイズ(縮小)失敗\n");
|
||||
}
|
||||
} else {
|
||||
s32 result = JKRResizeMemBlock(NULL, mModule, fixSize2 + mModule->mBssSize);
|
||||
if (result > 0) {
|
||||
BOOL linkResult = OSLinkFixed(mModule, fixSizePtr);
|
||||
if (linkResult == FALSE) {
|
||||
// "link failed\n"
|
||||
OSReport_Error("リンク失敗\n");
|
||||
goto error;
|
||||
}
|
||||
} else {
|
||||
void* bss = JKRAlloc(mModule->mBssSize, 0x20);
|
||||
if (bss == NULL) {
|
||||
// "BSS Memory allocation failure [%x]\n"
|
||||
OSReport_Error("BSSメモリ確保失敗 [%x]\n", mModule->mBssSize);
|
||||
goto error;
|
||||
}
|
||||
mBss = bss;
|
||||
BOOL linkResult = OSLinkFixed(mModule, (u32)bss);
|
||||
if (linkResult == FALSE) {
|
||||
// "link failed\n"
|
||||
OSReport_Error("リンク失敗\n");
|
||||
goto error;
|
||||
}
|
||||
s32 result = JKRResizeMemBlock(NULL, mModule, fixSize);
|
||||
if (result < 0) {
|
||||
// "Module size (resize) failed\n"
|
||||
OSReport_Error("モジュールリサイズ(縮小)失敗\n");
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
} else {
|
||||
JUT_ASSERT(__FILE__, 724, 0);
|
||||
}
|
||||
OSGetTime();
|
||||
sAllocBytes = sAllocBytes + getModuleSize();
|
||||
OSGetTime();
|
||||
unk_24 = ((u32(*)())mModule->prolog)();
|
||||
OSGetTime();
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
error:
|
||||
unk_33 = 0;
|
||||
if (mBss != NULL) {
|
||||
JKRHeap::free(mBss, NULL);
|
||||
mBss = NULL;
|
||||
}
|
||||
if (mModule != NULL) {
|
||||
JKRHeap::free(mModule, NULL);
|
||||
mModule = NULL;
|
||||
}
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
bool DynamicModuleControl::do_unlink() {
|
||||
OSTime time1 = OSGetTime();
|
||||
((void (*)())mModule->epilog)();
|
||||
OSTime time2 = OSGetTime();
|
||||
BOOL unklink = OSUnlink(mModule);
|
||||
OSTime time3 = OSGetTime();
|
||||
if (unklink == FALSE) {
|
||||
// "Unlink failed mModule=%08x mBss=%08x\n"
|
||||
OSReport_Error("アンリンク失敗 mModule=%08x mBss=%08x\n", mModule, mBss);
|
||||
return false;
|
||||
}
|
||||
sAllocBytes = sAllocBytes - getModuleSize();
|
||||
if (mBss != NULL) {
|
||||
i_JKRFree(mBss);
|
||||
mBss = NULL;
|
||||
}
|
||||
do_unload();
|
||||
return true;
|
||||
}
|
||||
|
||||
int DynamicModuleControl::getModuleSize() const {
|
||||
if (mModule != NULL) {
|
||||
u32 size = JKRGetMemBlockSize(NULL, mModule);
|
||||
if (mBss != NULL) {
|
||||
JKRGetMemBlockSize(NULL, mBss);
|
||||
}
|
||||
return size + mModule->mBssSize;
|
||||
} else {
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
|
||||
const char* DynamicModuleControl::getModuleTypeString() const {
|
||||
static const char* strings[4] = {"????", "MEM", "ARAM", "DVD"};
|
||||
return strings[mResourceType & 3];
|
||||
}
|
||||
|
||||
void ModuleProlog() {
|
||||
/* empty function */
|
||||
}
|
||||
|
||||
void ModuleEpilog() {
|
||||
/* empty function */
|
||||
}
|
||||
|
||||
void ModuleUnresolved() {
|
||||
// "\nError: Unlinked function was called.\n"
|
||||
OSReport_Error("\nError: リンクされていない関数が呼び出されました.\n");
|
||||
OSReport_Error("Address: Back Chain LR Save\n");
|
||||
u32 i = 0;
|
||||
u32* stackPtr = (u32*)OSGetStackPointer();
|
||||
while ((stackPtr != NULL) && ((u32)stackPtr != 0xFFFFFFFF) && (i++ < 0x10)) {
|
||||
OSReport_Error("0x%08x: 0x%08x 0x%08x\n", stackPtr, *stackPtr, *(stackPtr + 1));
|
||||
stackPtr = (u32*)*stackPtr;
|
||||
}
|
||||
OSReport_Error("\n");
|
||||
}
|
||||
|
||||
void ModuleConstructorsX(const VoidFunc* _ctors) {
|
||||
JUT_ASSERT(__FILE__, 850, _ctors);
|
||||
while (*_ctors != 0) {
|
||||
(**_ctors)();
|
||||
_ctors++;
|
||||
}
|
||||
}
|
||||
|
||||
void ModuleDestructorsX(const VoidFunc* _dtors) {
|
||||
JUT_ASSERT(__FILE__, 864, _dtors);
|
||||
while (*_dtors != 0) {
|
||||
(**_dtors)();
|
||||
_dtors++;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,27 @@
|
||||
//
|
||||
// Generated by dtk
|
||||
// Translation Unit: JAIZelAnime.cpp
|
||||
//
|
||||
|
||||
#include "JSystem/JAudio/JAIZelAnime.h"
|
||||
#include "dolphin/types.h"
|
||||
|
||||
/* 802AC830-802AC888 .text setAnimSound__11JAIZelAnimeFP3VecffUlSc */
|
||||
void JAIZelAnime::setAnimSound(Vec*, float, float, unsigned long, signed char) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802AC888-802ACD34 .text startAnimSound__11JAIZelAnimeFPvUlPP8JAISoundPQ27JAInter5ActorUc */
|
||||
void JAIZelAnime::startAnimSound(void*, unsigned long, JAISound**, JAInter::Actor*, unsigned char) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802ACD34-802ACFA0 .text setSpeedModifySound__11JAIZelAnimeFP8JAISoundP22JAIAnimeFrameSoundDataf */
|
||||
void JAIZelAnime::setSpeedModifySound(JAISound*, JAIAnimeFrameSoundData*, float) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802ACFA0-802AD008 .text setPlayPosition__11JAIZelAnimeFf */
|
||||
void JAIZelAnime::setPlayPosition(float) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
@@ -0,0 +1,77 @@
|
||||
//
|
||||
// Generated by dtk
|
||||
// Translation Unit: JAIZelAtmos.cpp
|
||||
//
|
||||
|
||||
#include "JSystem/JAudio/JAIZelAtmos.h"
|
||||
#include "dolphin/types.h"
|
||||
|
||||
/* 802AD008-802AD014 .text initSeaEnvPos__11JAIZelBasicFv */
|
||||
void JAIZelBasic::initSeaEnvPos() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802AD014-802AD0A8 .text registSeaEnvPos__11JAIZelBasicFP3Vec */
|
||||
void JAIZelBasic::registSeaEnvPos(Vec*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802AD0A8-802AD54C .text seaEnvSePlay__11JAIZelBasicFUlSc */
|
||||
void JAIZelBasic::seaEnvSePlay(unsigned long, signed char) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802AD54C-802AD63C .text calcPosPanLR__11JAIZelBasicFP3Vec */
|
||||
void JAIZelBasic::calcPosPanLR(Vec*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802AD63C-802AD728 .text calcPosPanSR__11JAIZelBasicFP3Vecf */
|
||||
void JAIZelBasic::calcPosPanSR(Vec*, float) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802AD728-802AD878 .text calcPosVolume__11JAIZelBasicFP3Vecf */
|
||||
void JAIZelBasic::calcPosVolume(Vec*, float) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802AD878-802AD98C .text seaShoreSE__11JAIZelBasicFUlP3VecUlSc */
|
||||
void JAIZelBasic::seaShoreSE(unsigned long, Vec*, unsigned long, signed char) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802AD98C-802AD998 .text initRiverPos__11JAIZelBasicFv */
|
||||
void JAIZelBasic::initRiverPos() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802AD998-802ADB38 .text registRiverPos__11JAIZelBasicFP3Vec */
|
||||
void JAIZelBasic::registRiverPos(Vec*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802ADB38-802ADC58 .text riverSePlay__11JAIZelBasicFUcSc */
|
||||
void JAIZelBasic::riverSePlay(unsigned char, signed char) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802ADC58-802ADE68 .text waterfallSePlay__11JAIZelBasicFUcP3VecSc */
|
||||
void JAIZelBasic::waterfallSePlay(unsigned char, Vec*, signed char) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802ADE68-802ADE74 .text initWindowPos__11JAIZelBasicFv */
|
||||
void JAIZelBasic::initWindowPos() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802ADE74-802ADF20 .text registWindowPos__11JAIZelBasicFP3Vec */
|
||||
void JAIZelBasic::registWindowPos(Vec*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802ADF20-802AE04C .text rainPlay__11JAIZelBasicFl */
|
||||
void JAIZelBasic::rainPlay(long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
@@ -0,0 +1,607 @@
|
||||
//
|
||||
// Generated by dtk
|
||||
// Translation Unit: JAIZelBasic.cpp
|
||||
//
|
||||
|
||||
#include "JSystem/JAudio/JAIZelBasic.h"
|
||||
#include "dolphin/types.h"
|
||||
|
||||
/* 802A1C78-802A1EB4 .text __ct__11JAIZelBasicFv */
|
||||
JAIZelBasic::JAIZelBasic() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802A1EB4-802A2F48 .text zeldaGFrameWork__11JAIZelBasicFv */
|
||||
void JAIZelBasic::zeldaGFrameWork() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802A2F48-802A2F54 .text heartGaugeOn__11JAIZelBasicFv */
|
||||
void JAIZelBasic::heartGaugeOn() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802A2F54-802A3058 .text processHeartGaugeSound__11JAIZelBasicFv */
|
||||
void JAIZelBasic::processHeartGaugeSound() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802A3058-802A30A4 .text gframeProcess__11JAIZelBasicFv */
|
||||
void JAIZelBasic::gframeProcess() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802A30A4-802A31C0 .text resetProcess__11JAIZelBasicFv */
|
||||
void JAIZelBasic::resetProcess() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802A31C0-802A334C .text resetRecover__11JAIZelBasicFv */
|
||||
void JAIZelBasic::resetRecover() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802A334C-802A33D0 .text bgmStreamPrepare__11JAIZelBasicFUl */
|
||||
void JAIZelBasic::bgmStreamPrepare(unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802A33D0-802A34A4 .text bgmStreamPlay__11JAIZelBasicFv */
|
||||
void JAIZelBasic::bgmStreamPlay() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802A34A4-802A4658 .text bgmStart__11JAIZelBasicFUlUll */
|
||||
void JAIZelBasic::bgmStart(unsigned long, unsigned long, long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802A4658-802A4770 .text bgmStop__11JAIZelBasicFUll */
|
||||
void JAIZelBasic::bgmStop(unsigned long, long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802A4770-802A47B8 .text mainBgmStopOnly__11JAIZelBasicFUl */
|
||||
void JAIZelBasic::mainBgmStopOnly(unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802A47B8-802A4CDC .text subBgmStart__11JAIZelBasicFUl */
|
||||
void JAIZelBasic::subBgmStart(unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802A4CDC-802A4DA4 .text subBgmStop__11JAIZelBasicFv */
|
||||
void JAIZelBasic::subBgmStop() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802A4DA4-802A4EB8 .text subBgmStopInner__11JAIZelBasicFv */
|
||||
void JAIZelBasic::subBgmStopInner() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802A4EB8-802A53B4 .text bgmNowBattle__11JAIZelBasicFf */
|
||||
void JAIZelBasic::bgmNowBattle(float) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802A53B4-802A5548 .text bgmBattleGFrame__11JAIZelBasicFv */
|
||||
void JAIZelBasic::bgmBattleGFrame() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802A5548-802A55AC .text stopBattleBgm__11JAIZelBasicFv */
|
||||
void JAIZelBasic::stopBattleBgm() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802A55AC-802A564C .text bgmNowKaitengiri__11JAIZelBasicFv */
|
||||
void JAIZelBasic::bgmNowKaitengiri() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802A564C-802A579C .text bgmHitSound__11JAIZelBasicFl */
|
||||
void JAIZelBasic::bgmHitSound(long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802A579C-802A57A4 .text bgmSetSwordUsing__11JAIZelBasicFl */
|
||||
void JAIZelBasic::bgmSetSwordUsing(long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802A57A4-802A5818 .text onEnemyDamage__11JAIZelBasicFv */
|
||||
void JAIZelBasic::onEnemyDamage() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802A5818-802A591C .text mbossBgmMuteProcess__11JAIZelBasicFv */
|
||||
void JAIZelBasic::mbossBgmMuteProcess() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802A591C-802A59B0 .text mbossBgmNearByProcess__11JAIZelBasicFf */
|
||||
void JAIZelBasic::mbossBgmNearByProcess(float) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802A59B0-802A59D8 .text checkBgmPlaying__11JAIZelBasicFv */
|
||||
void JAIZelBasic::checkBgmPlaying() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802A59D8-802A59F4 .text checkPlayingMainBgmFlag__11JAIZelBasicFv */
|
||||
void JAIZelBasic::checkPlayingMainBgmFlag() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802A59F4-802A5A04 .text checkSubBgmPlaying__11JAIZelBasicFv */
|
||||
void JAIZelBasic::checkSubBgmPlaying() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802A5A04-802A5A20 .text checkPlayingSubBgmFlag__11JAIZelBasicFv */
|
||||
void JAIZelBasic::checkPlayingSubBgmFlag() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802A5A20-802A5A40 .text checkPlayingStreamBgmFlag__11JAIZelBasicFv */
|
||||
void JAIZelBasic::checkPlayingStreamBgmFlag() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802A5A40-802A5A78 .text changeBgmStatus__11JAIZelBasicFl */
|
||||
void JAIZelBasic::changeBgmStatus(long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802A5A78-802A5AC0 .text changeSubBgmStatus__11JAIZelBasicFl */
|
||||
void JAIZelBasic::changeSubBgmStatus(long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802A5AC0-802A5ACC .text bgmMuteMtDragon__11JAIZelBasicFv */
|
||||
void JAIZelBasic::bgmMuteMtDragon() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802A5ACC-802A5BA4 .text enemyNearBy__11JAIZelBasicFv */
|
||||
void JAIZelBasic::enemyNearBy() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802A5BA4-802A5C8C .text enemyNearByGFrame__11JAIZelBasicFv */
|
||||
void JAIZelBasic::enemyNearByGFrame() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802A5C8C-802A5D0C .text bgmAllMute__11JAIZelBasicFUl */
|
||||
void JAIZelBasic::bgmAllMute(unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802A5D0C-802A5DF0 .text taktModeMute__11JAIZelBasicFv */
|
||||
void JAIZelBasic::taktModeMute() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802A5DF0-802A5F24 .text taktModeMuteOff__11JAIZelBasicFv */
|
||||
void JAIZelBasic::taktModeMuteOff() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802A5F24-802A61AC .text cbPracticePlay__11JAIZelBasicFP3Vec */
|
||||
void JAIZelBasic::cbPracticePlay(Vec*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802A61AC-802A6434 .text cbPracticeProcess__11JAIZelBasicFv */
|
||||
void JAIZelBasic::cbPracticeProcess() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802A6434-802A6508 .text cbPracticeStop__11JAIZelBasicFv */
|
||||
void JAIZelBasic::cbPracticeStop() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802A6508-802A6570 .text checkCbPracticePlay__11JAIZelBasicFv */
|
||||
void JAIZelBasic::checkCbPracticePlay() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802A6570-802A659C .text prepareLandingDemo__11JAIZelBasicFl */
|
||||
void JAIZelBasic::prepareLandingDemo(long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802A659C-802A6608 .text startLandingDemo__11JAIZelBasicFv */
|
||||
void JAIZelBasic::startLandingDemo() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802A6608-802A6614 .text endLandingDemo__11JAIZelBasicFv */
|
||||
void JAIZelBasic::endLandingDemo() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802A6614-802A6720 .text initSe__11JAIZelBasicFv */
|
||||
void JAIZelBasic::initSe() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802A6720-802A8550 .text seStart__11JAIZelBasicFUlP3VecUlScffffUc */
|
||||
void JAIZelBasic::seStart(unsigned long, Vec*, unsigned long, signed char, float, float, float, float, unsigned char) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802A8550-802A85F4 .text seStop__11JAIZelBasicFUll */
|
||||
void JAIZelBasic::seStop(unsigned long, long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802A85F4-802A8634 .text checkSePlaying__11JAIZelBasicFUl */
|
||||
void JAIZelBasic::checkSePlaying(unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802A8634-802A8688 .text seStopActor__11JAIZelBasicFP3VecUl */
|
||||
void JAIZelBasic::seStopActor(Vec*, unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802A8688-802A86A8 .text seDeleteObject__11JAIZelBasicFP3Vec */
|
||||
void JAIZelBasic::seDeleteObject(Vec*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802A86A8-802A8748 .text getLinkVoiceVowel__11JAIZelBasicFUl */
|
||||
void JAIZelBasic::getLinkVoiceVowel(unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802A8748-802A892C .text linkVoiceStart__11JAIZelBasicFUlP3VecUcSc */
|
||||
void JAIZelBasic::linkVoiceStart(unsigned long, Vec*, unsigned char, signed char) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802A892C-802A8958 .text monsSeInit__11JAIZelBasicFv */
|
||||
void JAIZelBasic::monsSeInit() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802A8958-802A8B24 .text monsSeStart__11JAIZelBasicFUlP3VecUlUlSc */
|
||||
void JAIZelBasic::monsSeStart(unsigned long, Vec*, unsigned long, unsigned long, signed char) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802A8B24-802A8BE4 .text kuroboMotionPlay__11JAIZelBasicFUlP3VecUlSc */
|
||||
void JAIZelBasic::kuroboMotionPlay(unsigned long, Vec*, unsigned long, signed char) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802A8BE4-802A8CB4 .text kuroboVoicePlay__11JAIZelBasicFUlP3VecSc */
|
||||
void JAIZelBasic::kuroboVoicePlay(unsigned long, Vec*, signed char) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802A8CB4-802A8F58 .text setLevObjSE__11JAIZelBasicFUlP3VecSc */
|
||||
void JAIZelBasic::setLevObjSE(unsigned long, Vec*, signed char) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802A8F58-802A90C0 .text processLevObjSE__11JAIZelBasicFv */
|
||||
void JAIZelBasic::processLevObjSE() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802A90C0-802A9120 .text initLevObjSE__11JAIZelBasicFv */
|
||||
void JAIZelBasic::initLevObjSE() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802A9120-802A91CC .text charVoicePlay__11JAIZelBasicFllP3VecSc */
|
||||
void JAIZelBasic::charVoicePlay(long, long, Vec*, signed char) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802A91CC-802A92CC .text messageSePlay__11JAIZelBasicFUsP3VecSc */
|
||||
void JAIZelBasic::messageSePlay(unsigned short, Vec*, signed char) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802A92CC-802A965C .text shipCruiseSePlay__11JAIZelBasicFP3Vecf */
|
||||
void JAIZelBasic::shipCruiseSePlay(Vec*, float) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802A965C-802A9664 .text setShipSailState__11JAIZelBasicFl */
|
||||
void JAIZelBasic::setShipSailState(long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802A9664-802A9874 .text init__11JAIZelBasicFP12JKRSolidHeapUl */
|
||||
void JAIZelBasic::init(JKRSolidHeap*, unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802A9874-802A98A0 .text setOutputMode__11JAIZelBasicFUl */
|
||||
void JAIZelBasic::setOutputMode(unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802A98A0-802A9A20 .text talkIn__11JAIZelBasicFv */
|
||||
void JAIZelBasic::talkIn() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802A9A20-802A9B74 .text talkOut__11JAIZelBasicFv */
|
||||
void JAIZelBasic::talkOut() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802A9B74-802A9CBC .text menuIn__11JAIZelBasicFv */
|
||||
void JAIZelBasic::menuIn() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802A9CBC-802A9CF8 .text menuOut__11JAIZelBasicFv */
|
||||
void JAIZelBasic::menuOut() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802A9CF8-802A9DB0 .text getCameraInfo__11JAIZelBasicFP3VecPA4_fUl */
|
||||
void JAIZelBasic::getCameraInfo(Vec*, float(*)[4], unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802A9DB0-802A9DB8 .text getCameraMapInfo__11JAIZelBasicFUl */
|
||||
void JAIZelBasic::getCameraMapInfo(unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802A9DB8-802A9DDC .text setCameraPolygonPos__11JAIZelBasicFP3Vec */
|
||||
void JAIZelBasic::setCameraPolygonPos(Vec*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802A9DDC-802A9F60 .text setCameraGroupInfo__11JAIZelBasicFUc */
|
||||
void JAIZelBasic::setCameraGroupInfo(unsigned char) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802A9F60-802AA2B8 .text changeSeaBgm__11JAIZelBasicFv */
|
||||
void JAIZelBasic::changeSeaBgm() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802AA2B8-802AA348 .text startIsleBgm__11JAIZelBasicFv */
|
||||
void JAIZelBasic::startIsleBgm() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802AA348-802AA378 .text setLinkGroupInfo__11JAIZelBasicFUc */
|
||||
void JAIZelBasic::setLinkGroupInfo(unsigned char) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802AA378-802AA380 .text getMapInfoFxline__11JAIZelBasicFUl */
|
||||
void JAIZelBasic::getMapInfoFxline(unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802AA380-802AA388 .text getMapInfoFxParameter__11JAIZelBasicFUl */
|
||||
void JAIZelBasic::getMapInfoFxParameter(unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802AA388-802AA390 .text getMapInfoGround__11JAIZelBasicFUl */
|
||||
void JAIZelBasic::getMapInfoGround(unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802AA390-802AACE8 .text setScene__11JAIZelBasicFllll */
|
||||
void JAIZelBasic::setScene(long, long, long, long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802AACE8-802AAD0C .text expandSceneBgmNum__11JAIZelBasicFUl */
|
||||
void JAIZelBasic::expandSceneBgmNum(unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802AAD0C-802AAD48 .text checkLinkOnSea__11JAIZelBasicFv */
|
||||
void JAIZelBasic::checkLinkOnSea() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802AAD48-802AAD94 .text checkLinkOnBoardSea__11JAIZelBasicFv */
|
||||
void JAIZelBasic::checkLinkOnBoardSea() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802AAD94-802AAE80 .text setSceneName__11JAIZelBasicFPcll */
|
||||
void JAIZelBasic::setSceneName(char*, long, long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802AAE80-802AAF04 .text spotNameToId__11JAIZelBasicFPc */
|
||||
void JAIZelBasic::spotNameToId(char*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802AAF04-802AB204 .text sceneChange__11JAIZelBasicFUlUlUll */
|
||||
void JAIZelBasic::sceneChange(unsigned long, unsigned long, unsigned long, long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802AB204-802AB374 .text sceneBgmStart__11JAIZelBasicFv */
|
||||
void JAIZelBasic::sceneBgmStart() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802AB374-802AB678 .text load1stDynamicWave__11JAIZelBasicFv */
|
||||
void JAIZelBasic::load1stDynamicWave() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802AB678-802AB6F4 .text check1stDynamicWave__11JAIZelBasicFv */
|
||||
void JAIZelBasic::check1stDynamicWave() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802AB6F4-802AB858 .text load2ndDynamicWave__11JAIZelBasicFv */
|
||||
void JAIZelBasic::load2ndDynamicWave() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802AB858-802AB888 .text loadStaticWaves__11JAIZelBasicFv */
|
||||
void JAIZelBasic::loadStaticWaves() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802AB888-802AB8B0 .text checkFirstWaves__11JAIZelBasicFv */
|
||||
void JAIZelBasic::checkFirstWaves() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802AB8B0-802AB9F4 .text setLinkHp__11JAIZelBasicFll */
|
||||
void JAIZelBasic::setLinkHp(long, long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802AB9F4-802ABA44 .text setLinkSwordType__11JAIZelBasicFll */
|
||||
void JAIZelBasic::setLinkSwordType(long, long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802ABA44-802ABA94 .text setLinkShieldType__11JAIZelBasicFll */
|
||||
void JAIZelBasic::setLinkShieldType(long, long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802ABA94-802ABA9C .text setLinkBootsType__11JAIZelBasicFl */
|
||||
void JAIZelBasic::setLinkBootsType(long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802ABA9C-802ABB18 .text setLinkOnBoard__11JAIZelBasicFl */
|
||||
void JAIZelBasic::setLinkOnBoard(long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802ABB18-802ABBD0 .text bgmMute__11JAIZelBasicFPP8JAISoundUllUl */
|
||||
void JAIZelBasic::bgmMute(JAISound**, unsigned long, long, unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802ABBD0-802ABC3C .text checkStreamPlaying__11JAIZelBasicFUl */
|
||||
void JAIZelBasic::checkStreamPlaying(unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802ABC3C-802ABC88 .text stWaterLevelUp__11JAIZelBasicFv */
|
||||
void JAIZelBasic::stWaterLevelUp() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802ABC88-802ABCD4 .text stWaterLevelDown__11JAIZelBasicFv */
|
||||
void JAIZelBasic::stWaterLevelDown() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802ABCD4-802ABD34 .text stSkyCloisters__11JAIZelBasicFv */
|
||||
void JAIZelBasic::stSkyCloisters() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802ABD34-802ABDE0 .text stSkyCloistersProcess__11JAIZelBasicFv */
|
||||
void JAIZelBasic::stSkyCloistersProcess() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802ABDE0-802ABE10 .text getRandomU32__11JAIZelBasicFUl */
|
||||
void JAIZelBasic::getRandomU32(unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802ABE10-802ABE18 .text setEventBit__11JAIZelBasicFPv */
|
||||
void JAIZelBasic::setEventBit(void*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802ABE18-802ABE50 .text checkEventBit__11JAIZelBasicFUs */
|
||||
void JAIZelBasic::checkEventBit(unsigned short) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802ABE50-802ABE74 .text checkDayTime__11JAIZelBasicFv */
|
||||
void JAIZelBasic::checkDayTime() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802ABE74-802ABF2C .text processTime__11JAIZelBasicFv */
|
||||
void JAIZelBasic::processTime() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802ABF2C-802ABFC0 .text processMorningToNormal__11JAIZelBasicFv */
|
||||
void JAIZelBasic::processMorningToNormal() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802ABFC0-802AC1BC .text checkOnOuterSea__11JAIZelBasicFPf */
|
||||
void JAIZelBasic::checkOnOuterSea(float*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802AC1BC-802AC258 .text makeSound__11JAIZelBasicFUl */
|
||||
void JAIZelBasic::makeSound(unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802AC258-802AC300 .text checkSeqIDDemoPlaying__11JAIZelBasicFUl */
|
||||
void JAIZelBasic::checkSeqIDDemoPlaying(unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802AC300-802AC400 .text checkDemoFanfarePlaying__11JAIZelBasicFv */
|
||||
void JAIZelBasic::checkDemoFanfarePlaying() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802AC400-802AC468 .text processDemoFanfareMute__11JAIZelBasicFv */
|
||||
void JAIZelBasic::processDemoFanfareMute() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802AC468-802AC594 .text muteMainBgmAll__11JAIZelBasicFv */
|
||||
void JAIZelBasic::muteMainBgmAll() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802AC594-802AC6C0 .text unmuteMainBgmAll__11JAIZelBasicFv */
|
||||
void JAIZelBasic::unmuteMainBgmAll() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802AC6C0-802AC758 .text demoBgmStop__11JAIZelBasicFUl */
|
||||
void JAIZelBasic::demoBgmStop(unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802AC758-802AC788 .text isDemo__11JAIZelBasicFv */
|
||||
void JAIZelBasic::isDemo() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802AC788-802AC7E8 .text checkSeaBgmID__11JAIZelBasicFv */
|
||||
void JAIZelBasic::checkSeaBgmID() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802AC7E8-802AC830 .text __dt__11JAIZelSoundFv */
|
||||
JAIZelSound::~JAIZelSound() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
//
|
||||
// Generated by dtk
|
||||
// Translation Unit: JAIZelCharVoiceTable.cpp
|
||||
//
|
||||
|
||||
#include "JSystem/JAudio/JAIZelCharVoiceTable.h"
|
||||
#include "dolphin/types.h"
|
||||
@@ -0,0 +1,92 @@
|
||||
//
|
||||
// Generated by dtk
|
||||
// Translation Unit: JAIZelInst.cpp
|
||||
//
|
||||
|
||||
#include "JSystem/JAudio/JAIZelInst.h"
|
||||
#include "dolphin/types.h"
|
||||
|
||||
/* 802AE04C-802AE0B4 .text __ct__10JAIZelInstFv */
|
||||
JAIZelInst::JAIZelInst() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802AE0B4-802AE1C0 .text reset__10JAIZelInstFv */
|
||||
void JAIZelInst::reset() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802AE1C0-802AE278 .text playArmSwing__10JAIZelInstFll */
|
||||
void JAIZelInst::playArmSwing(long, long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802AE278-802AE2B8 .text stopArmSwing__10JAIZelInstFv */
|
||||
void JAIZelInst::stopArmSwing() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802AE2B8-802AE444 .text setStickPos__10JAIZelInstFll */
|
||||
void JAIZelInst::setStickPos(long, long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802AE444-802AE4B4 .text play__10JAIZelInstFv */
|
||||
void JAIZelInst::play() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802AE4B4-802AE590 .text setBeat__10JAIZelInstFl */
|
||||
void JAIZelInst::setBeat(long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802AE590-802AE5D0 .text setVolume__10JAIZelInstFf */
|
||||
void JAIZelInst::setVolume(float) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802AE5D0-802AE864 .text metronomePlay__10JAIZelInstFll */
|
||||
void JAIZelInst::metronomePlay(long, long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802AE864-802AEB5C .text judge__10JAIZelInstFll */
|
||||
void JAIZelInst::judge(long, long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802AEB5C-802AEC50 .text ambientPlay__10JAIZelInstFv */
|
||||
void JAIZelInst::ambientPlay() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802AEC50-802AECC0 .text armSoundPlay__10JAIZelInstFl */
|
||||
void JAIZelInst::armSoundPlay(long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802AECC0-802AED48 .text getMelodyPattern__10JAIZelInstFllPl */
|
||||
void JAIZelInst::getMelodyPattern(long, long, long*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802AED48-802AEDB8 .text getMelodyBeat__10JAIZelInstFl */
|
||||
void JAIZelInst::getMelodyBeat(long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802AEDB8-802AEE1C .text getMelodyGFrames__10JAIZelInstFl */
|
||||
void JAIZelInst::getMelodyGFrames(long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802AEE1C-802AEEA8 .text melodyPlay__10JAIZelInstFl */
|
||||
void JAIZelInst::melodyPlay(long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802AEEA8-802AEF64 .text melodyStop__10JAIZelInstFv */
|
||||
void JAIZelInst::melodyStop() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
//
|
||||
// Generated by dtk
|
||||
// Translation Unit: JAIZelParam.cpp
|
||||
//
|
||||
|
||||
#include "JSystem/JAudio/JAIZelParam.h"
|
||||
#include "dolphin/types.h"
|
||||
@@ -0,0 +1,7 @@
|
||||
//
|
||||
// Generated by dtk
|
||||
// Translation Unit: JAIZelScene.cpp
|
||||
//
|
||||
|
||||
#include "JSystem/JAudio/JAIZelScene.h"
|
||||
#include "dolphin/types.h"
|
||||
@@ -0,0 +1,32 @@
|
||||
//
|
||||
// Generated by dtk
|
||||
// Translation Unit: JAIZelSound.cpp
|
||||
//
|
||||
|
||||
#include "JSystem/JAudio/JAIZelSound.h"
|
||||
#include "dolphin/types.h"
|
||||
|
||||
/* 802AEF64-802AEFA0 .text __ct__11JAIZelSoundFv */
|
||||
JAIZelSound::JAIZelSound() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802AEFA0-802AF19C .text setDistanceVolumeCommon__11JAIZelSoundFfUc */
|
||||
void JAIZelSound::setDistanceVolumeCommon(float, unsigned char) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802AF19C-802AF2A0 .text setSeDistanceVolume__11JAIZelSoundFUc */
|
||||
void JAIZelSound::setSeDistanceVolume(unsigned char) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802AF2A0-802AF314 .text setSeDistancePan__11JAIZelSoundFUc */
|
||||
void JAIZelSound::setSeDistancePan(unsigned char) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802AF314-802AF458 .text setSeDistanceDolby__11JAIZelSoundFUc */
|
||||
void JAIZelSound::setSeDistanceDolby(unsigned char) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
//
|
||||
// Generated by dtk
|
||||
// Translation Unit: JRenderer.cpp
|
||||
//
|
||||
|
||||
#include "JSystem/JRenderer/JRenderer.h"
|
||||
#include "dolphin/types.h"
|
||||
|
||||
/* 802D5EB8-802D5F38 .text JRNLoadTexCached__F11_GXTexMapIDUl15_GXTexCacheSizeUl15_GXTexCacheSize */
|
||||
void JRNLoadTexCached(_GXTexMapID, unsigned long, _GXTexCacheSize, unsigned long, _GXTexCacheSize) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
@@ -0,0 +1,23 @@
|
||||
//
|
||||
// Generated by dtk
|
||||
// Translation Unit: console.cpp
|
||||
//
|
||||
|
||||
#include "console.h"
|
||||
#include "dolphin/types.h"
|
||||
|
||||
/* 8027A6EC-8027A75C .text __dt__20JSUMemoryInputStreamFv */
|
||||
JSUMemoryInputStream::~JSUMemoryInputStream() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8027A75C-8027A7BC .text __dt__20JSURandomInputStreamFv */
|
||||
JSURandomInputStream::~JSURandomInputStream() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8027A7BC-8027A804 .text __dt__10JSUIosBaseFv */
|
||||
JSUIosBase::~JSUIosBase() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
@@ -0,0 +1,33 @@
|
||||
//
|
||||
// Generated by dtk
|
||||
// Translation Unit: control.cpp
|
||||
//
|
||||
|
||||
#include "control.h"
|
||||
#include "dolphin/types.h"
|
||||
|
||||
/* 8027A3F4-8027A4A8 .text createObject_MESSAGE_JMS___Q216JStudio_JMessage21@unnamed@control_cpp@FRCQ47JStudio3stb4data20TParse_TBlock_objectPQ28JMessage8TControl */
|
||||
void createObject_MESSAGE_JMS___Q216JStudio_JMessage21@unnamed@control_cpp@FRCQ47JStudio3stb4data20TParse_TBlock_objectPQ28JMessage8TControl {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8027A4A8-8027A508 .text __dt__Q216JStudio_JMessage18TCreateObject_baseFv */
|
||||
JStudio_JMessage::TCreateObject_base::~TCreateObject_base() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8027A508-8027A5AC .text create__Q216JStudio_JMessage18TCreateObject_baseFPPQ27JStudio7TObjectRCQ47JStudio3stb4data20TParse_TBlock_object */
|
||||
void JStudio_JMessage::TCreateObject_base::create(JStudio::TObject**, const JStudio::stb::data::TParse_TBlock_object&) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8027A5AC-8027A60C .text __dt__Q216JStudio_JMessage13TCreateObjectFv */
|
||||
JStudio_JMessage::TCreateObject::~TCreateObject() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8027A60C-8027A614 .text find__Q216JStudio_JMessage13TCreateObjectFRCQ47JStudio3stb4data20TParse_TBlock_object */
|
||||
void JStudio_JMessage::TCreateObject::find(const JStudio::stb::data::TParse_TBlock_object&) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
@@ -0,0 +1,23 @@
|
||||
//
|
||||
// Generated by dtk
|
||||
// Translation Unit: object-message.cpp
|
||||
//
|
||||
|
||||
#include "object-message.h"
|
||||
#include "dolphin/types.h"
|
||||
|
||||
/* 8027A614-8027A64C .text __ct__Q216JStudio_JMessage16TAdaptor_messageFPQ28JMessage8TControl */
|
||||
JStudio_JMessage::TAdaptor_message::TAdaptor_message(JMessage::TControl*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8027A64C-8027A6AC .text __dt__Q216JStudio_JMessage16TAdaptor_messageFv */
|
||||
JStudio_JMessage::TAdaptor_message::~TAdaptor_message() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8027A6AC-8027A6EC .text adaptor_do_MESSAGE__Q216JStudio_JMessage16TAdaptor_messageFQ37JStudio4data15TEOperationDataPCvUl */
|
||||
void JStudio_JMessage::TAdaptor_message::adaptor_do_MESSAGE(JStudio::data::TEOperationData, const void*, unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
@@ -0,0 +1,87 @@
|
||||
//
|
||||
// Generated by dtk
|
||||
// Translation Unit: J2DGrafContext.cpp
|
||||
//
|
||||
|
||||
#include "JSystem/J2DGraph/J2DGrafContext.h"
|
||||
#include "dolphin/types.h"
|
||||
|
||||
/* 802CD050-802CD0FC .text __ct__14J2DGrafContextFffff */
|
||||
J2DGrafContext::J2DGrafContext(float, float, float, float) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802CD0FC-802CD16C .text setPort__14J2DGrafContextFv */
|
||||
void J2DGrafContext::setPort() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802CD16C-802CD340 .text setup2D__14J2DGrafContextFv */
|
||||
void J2DGrafContext::setup2D() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802CD340-802CD590 .text setScissor__14J2DGrafContextFv */
|
||||
void J2DGrafContext::setScissor() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802CD590-802CD5B4 .text scissor__14J2DGrafContextFRCQ29JGeometry8TBox2<f> */
|
||||
void J2DGrafContext::scissor(const JGeometry::TBox2<float>&) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802CD5B4-802CD5F8 .text place__14J2DGrafContextFRCQ29JGeometry8TBox2<f> */
|
||||
void J2DGrafContext::place(const JGeometry::TBox2<float>&) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802CD5F8-802CD714 .text setColor__14J2DGrafContextFQ28JUtility6TColorQ28JUtility6TColorQ28JUtility6TColorQ28JUtility6TColor */
|
||||
void J2DGrafContext::setColor(JUtility::TColor, JUtility::TColor, JUtility::TColor, JUtility::TColor) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802CD714-802CD740 .text setLineWidth__14J2DGrafContextFUc */
|
||||
void J2DGrafContext::setLineWidth(unsigned char) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802CD740-802CD858 .text fillBox__14J2DGrafContextFRCQ29JGeometry8TBox2<f> */
|
||||
void J2DGrafContext::fillBox(const JGeometry::TBox2<float>&) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802CD858-802CD990 .text drawFrame__14J2DGrafContextFRCQ29JGeometry8TBox2<f> */
|
||||
void J2DGrafContext::drawFrame(const JGeometry::TBox2<float>&) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802CD990-802CDA6C .text line__14J2DGrafContextFQ29JGeometry8TVec2<f>Q29JGeometry8TVec2<f> */
|
||||
void J2DGrafContext::line(JGeometry::TVec2<float>, JGeometry::TVec2<float>) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802CDA6C-802CDADC .text lineTo__14J2DGrafContextFQ29JGeometry8TVec2<f> */
|
||||
void J2DGrafContext::lineTo(JGeometry::TVec2<float>) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802CDADC-802CDB24 .text __dt__14J2DGrafContextFv */
|
||||
J2DGrafContext::~J2DGrafContext() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802CDB24-802CDB6C .text place__14J2DGrafContextFffff */
|
||||
void J2DGrafContext::place(float, float, float, float) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802CDB6C-802CDB74 .text getGrafType__14J2DGrafContextCFv */
|
||||
void J2DGrafContext::getGrafType() const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802CDB74-802CDB78 .text setLookat__14J2DGrafContextFv */
|
||||
void J2DGrafContext::setLookat() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
@@ -0,0 +1,67 @@
|
||||
//
|
||||
// Generated by dtk
|
||||
// Translation Unit: J2DOrthoGraph.cpp
|
||||
//
|
||||
|
||||
#include "JSystem/J2DGraph/J2DOrthoGraph.h"
|
||||
#include "dolphin/types.h"
|
||||
|
||||
/* 802CDB78-802CDBD8 .text __ct__13J2DOrthoGraphFv */
|
||||
J2DOrthoGraph::J2DOrthoGraph() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802CDBD8-802CDCB4 .text __ct__13J2DOrthoGraphFffffff */
|
||||
J2DOrthoGraph::J2DOrthoGraph(float, float, float, float, float, float) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802CDCB4-802CDD14 .text setPort__13J2DOrthoGraphFv */
|
||||
void J2DOrthoGraph::setPort() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802CDD14-802CDD48 .text setOrtho__13J2DOrthoGraphFRCQ29JGeometry8TBox2<f>ff */
|
||||
void J2DOrthoGraph::setOrtho(const JGeometry::TBox2<float>&, float, float) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802CDD48-802CDD84 .text setLookat__13J2DOrthoGraphFv */
|
||||
void J2DOrthoGraph::setLookat() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802CDD84-802CDE10 .text scissorBounds__13J2DOrthoGraphFPQ29JGeometry8TBox2<f>PCQ29JGeometry8TBox2<f> */
|
||||
void J2DOrthoGraph::scissorBounds(JGeometry::TBox2<float>*, const JGeometry::TBox2<float>*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802CDE10-802CDF3C .text J2DDrawLine__FffffQ28JUtility6TColori */
|
||||
void J2DDrawLine(float, float, float, float, JUtility::TColor, int) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802CDF3C-802CDF84 .text J2DFillBox__FffffQ28JUtility6TColor */
|
||||
void J2DFillBox(float, float, float, float, JUtility::TColor) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802CDF84-802CE014 .text J2DFillBox__FRCQ29JGeometry8TBox2<f>Q28JUtility6TColor */
|
||||
void J2DFillBox(const JGeometry::TBox2<float>&, JUtility::TColor) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802CE014-802CE060 .text J2DDrawFrame__FffffQ28JUtility6TColorUc */
|
||||
void J2DDrawFrame(float, float, float, float, JUtility::TColor, unsigned char) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802CE060-802CE100 .text J2DDrawFrame__FRCQ29JGeometry8TBox2<f>Q28JUtility6TColorUc */
|
||||
void J2DDrawFrame(const JGeometry::TBox2<float>&, JUtility::TColor, unsigned char) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802CE100-802CE108 .text getGrafType__13J2DOrthoGraphCFv */
|
||||
void J2DOrthoGraph::getGrafType() const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
@@ -0,0 +1,92 @@
|
||||
//
|
||||
// Generated by dtk
|
||||
// Translation Unit: J2DPane.cpp
|
||||
//
|
||||
|
||||
#include "JSystem/J2DGraph/J2DPane.h"
|
||||
#include "dolphin/types.h"
|
||||
|
||||
/* 802CF8F4-802CF984 .text __ct__7J2DPaneFv */
|
||||
J2DPane::J2DPane() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802CF984-802CFA44 .text __ct__7J2DPaneFP7J2DPanebUlRCQ29JGeometry8TBox2<f> */
|
||||
J2DPane::J2DPane(J2DPane*, bool, unsigned long, const JGeometry::TBox2<float>&) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802CFA44-802CFAE4 .text __ct__7J2DPaneFUlRCQ29JGeometry8TBox2<f> */
|
||||
J2DPane::J2DPane(unsigned long, const JGeometry::TBox2<float>&) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802CFAE4-802CFB48 .text initiate__7J2DPaneFv */
|
||||
void J2DPane::initiate() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802CFB48-802CFC00 .text __ct__7J2DPaneFP7J2DPaneP20JSURandomInputStream */
|
||||
J2DPane::J2DPane(J2DPane*, JSURandomInputStream*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802CFC00-802CFEF8 .text makePaneStream__7J2DPaneFP7J2DPaneP20JSURandomInputStream */
|
||||
void J2DPane::makePaneStream(J2DPane*, JSURandomInputStream*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802CFEF8-802CFFD8 .text __dt__7J2DPaneFv */
|
||||
J2DPane::~J2DPane() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802CFFD8-802D0078 .text insertChild__7J2DPaneFP7J2DPaneP7J2DPane */
|
||||
void J2DPane::insertChild(J2DPane*, J2DPane*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802D0078-802D054C .text draw__7J2DPaneFffPC14J2DGrafContextb */
|
||||
void J2DPane::draw(float, float, const J2DGrafContext*, bool) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802D054C-802D05C8 .text move__7J2DPaneFff */
|
||||
void J2DPane::move(float, float) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802D05C8-802D0604 .text add__7J2DPaneFff */
|
||||
void J2DPane::add(float, float) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802D0604-802D0680 .text clip__7J2DPaneFRCQ29JGeometry8TBox2<f> */
|
||||
void J2DPane::clip(const JGeometry::TBox2<float>&) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802D0680-802D0714 .text search__7J2DPaneFUl */
|
||||
void J2DPane::search(unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802D0714-802D0800 .text makeMatrix__7J2DPaneFff */
|
||||
void J2DPane::makeMatrix(float, float) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802D0800-802D08D8 .text setBasePosition__7J2DPaneF15J2DBasePosition */
|
||||
void J2DPane::setBasePosition(J2DBasePosition) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802D08D8-802D08DC .text drawSelf__7J2DPaneFffPA3_A4_f */
|
||||
void J2DPane::drawSelf(float, float, float(*)[3][4]) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802D08DC-802D08E4 .text getTypeID__7J2DPaneFv */
|
||||
void J2DPane::getTypeID() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
@@ -0,0 +1,132 @@
|
||||
//
|
||||
// Generated by dtk
|
||||
// Translation Unit: J2DPicture.cpp
|
||||
//
|
||||
|
||||
#include "JSystem/J2DGraph/J2DPicture.h"
|
||||
#include "dolphin/types.h"
|
||||
|
||||
/* 802D2D94-802D2E1C .text __ct__10J2DPictureFv */
|
||||
J2DPicture::J2DPicture() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802D2E1C-802D326C .text __ct__10J2DPictureFP7J2DPaneP20JSURandomInputStream */
|
||||
J2DPicture::J2DPicture(J2DPane*, JSURandomInputStream*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802D326C-802D3320 .text __ct__10J2DPictureFPC7ResTIMG */
|
||||
J2DPicture::J2DPicture(const ResTIMG*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802D3320-802D33D4 .text __ct__10J2DPictureFPCc */
|
||||
J2DPicture::J2DPicture(const char*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802D33D4-802D3474 .text __ct__10J2DPictureFUlRCQ29JGeometry8TBox2<f>PC7ResTIMGPC7ResTLUT */
|
||||
J2DPicture::J2DPicture(unsigned long, const JGeometry::TBox2<float>&, const ResTIMG*, const ResTLUT*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802D3474-802D3530 .text initiate__10J2DPictureFPC7ResTIMGPC7ResTLUT */
|
||||
void J2DPicture::initiate(const ResTIMG*, const ResTLUT*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802D3530-802D35FC .text private_initiate__10J2DPictureFPC7ResTIMGPC7ResTLUT */
|
||||
void J2DPicture::private_initiate(const ResTIMG*, const ResTLUT*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802D35FC-802D3774 .text initinfo__10J2DPictureFv */
|
||||
void J2DPicture::initinfo() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802D3774-802D3824 .text __dt__10J2DPictureFv */
|
||||
J2DPicture::~J2DPicture() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802D3824-802D3A08 .text insert__10J2DPictureFPC7ResTIMGUcf */
|
||||
void J2DPicture::insert(const ResTIMG*, unsigned char, float) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802D3A08-802D3A68 .text insert__10J2DPictureFPCcUcf */
|
||||
void J2DPicture::insert(const char*, unsigned char, float) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802D3A68-802D3B78 .text remove__10J2DPictureFUc */
|
||||
void J2DPicture::remove(unsigned char) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802D3B78-802D3C34 .text changeTexture__10J2DPictureFPC7ResTIMGUc */
|
||||
void J2DPicture::changeTexture(const ResTIMG*, unsigned char) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802D3C34-802D3C84 .text changeTexture__10J2DPictureFPCcUc */
|
||||
void J2DPicture::changeTexture(const char*, unsigned char) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802D3C84-802D3CEC .text drawSelf__10J2DPictureFff */
|
||||
void J2DPicture::drawSelf(float, float) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802D3CEC-802D3D54 .text drawSelf__10J2DPictureFffPA3_A4_f */
|
||||
void J2DPicture::drawSelf(float, float, float(*)[3][4]) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802D3D54-802D4074 .text drawFullSet__10J2DPictureFffff10J2DBinding9J2DMirrorbPA3_A4_f */
|
||||
void J2DPicture::drawFullSet(float, float, float, float, J2DBinding, J2DMirror, bool, float(*)[3][4]) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802D4074-802D4490 .text draw__10J2DPictureFffffbbb */
|
||||
void J2DPicture::draw(float, float, float, float, bool, bool, bool) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802D4490-802D4874 .text drawOut__10J2DPictureFRCQ29JGeometry8TBox2<f>RCQ29JGeometry8TBox2<f> */
|
||||
void J2DPicture::drawOut(const JGeometry::TBox2<float>&, const JGeometry::TBox2<float>&) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802D4874-802D4B3C .text drawTexCoord__10J2DPictureFffffffffffffPA3_A4_f */
|
||||
void J2DPicture::drawTexCoord(float, float, float, float, float, float, float, float, float, float, float, float, float(*)[3][4]) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802D4B3C-802D4F44 .text setTevMode__10J2DPictureFv */
|
||||
void J2DPicture::setTevMode() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802D4F44-802D4F58 .text swap__10J2DPictureFRfRf */
|
||||
void J2DPicture::swap(float&, float&) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802D4F58-802D5028 .text setBlendKonstColor__10J2DPictureFv */
|
||||
void J2DPicture::setBlendKonstColor() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802D5028-802D50F8 .text setBlendKonstAlpha__10J2DPictureFv */
|
||||
void J2DPicture::setBlendKonstAlpha() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802D50F8-802D51D8 .text getNewColor__10J2DPictureFPQ28JUtility6TColor */
|
||||
void J2DPicture::getNewColor(JUtility::TColor*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
@@ -0,0 +1,72 @@
|
||||
//
|
||||
// Generated by dtk
|
||||
// Translation Unit: J2DPrint.cpp
|
||||
//
|
||||
|
||||
#include "JSystem/J2DGraph/J2DPrint.h"
|
||||
#include "dolphin/types.h"
|
||||
|
||||
/* 802CE108-802CE194 .text __ct__8J2DPrintFP7JUTFontffQ28JUtility6TColorQ28JUtility6TColorQ28JUtility6TColorQ28JUtility6TColor */
|
||||
J2DPrint::J2DPrint(JUTFont*, float, float, JUtility::TColor, JUtility::TColor, JUtility::TColor, JUtility::TColor) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802CE194-802CE384 .text private_initiate__8J2DPrintFP7JUTFontffQ28JUtility6TColorQ28JUtility6TColorQ28JUtility6TColorQ28JUtility6TColorb */
|
||||
void J2DPrint::private_initiate(JUTFont*, float, float, JUtility::TColor, JUtility::TColor, JUtility::TColor, JUtility::TColor, bool) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802CE384-802CE424 .text setBuffer__8J2DPrintFUl */
|
||||
void J2DPrint::setBuffer(unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802CE424-802CE4BC .text setFontSize__8J2DPrintFv */
|
||||
void J2DPrint::setFontSize() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802CE4BC-802CE4D8 .text locate__8J2DPrintFff */
|
||||
void J2DPrint::locate(float, float) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802CE4D8-802CE888 .text printReturn__8J2DPrintFPCcff18J2DTextBoxHBinding18J2DTextBoxVBindingffUc */
|
||||
void J2DPrint::printReturn(const char*, float, float, J2DTextBoxHBinding, J2DTextBoxVBinding, float, float, unsigned char) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802CE888-802CEF9C .text parse__8J2DPrintFPCUciiPUsRQ28J2DPrint5TSizeUcb */
|
||||
void J2DPrint::parse(const unsigned char*, int, int, unsigned short*, J2DPrint::TSize&, unsigned char, bool) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802CEF9C-802CF0C4 .text doCtrlCode__8J2DPrintFi */
|
||||
void J2DPrint::doCtrlCode(int) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802CF0C4-802CF600 .text doEscapeCode__8J2DPrintFPPCUcUc */
|
||||
void J2DPrint::doEscapeCode(const unsigned char**, unsigned char) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802CF600-802CF674 .text initchar__8J2DPrintFv */
|
||||
void J2DPrint::initchar() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802CF674-802CF778 .text getNumberS32__8J2DPrintFPPCUclli */
|
||||
void J2DPrint::getNumberS32(const unsigned char**, long, long, int) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802CF778-802CF8AC .text getNumberF32__8J2DPrintFPPCUcffi */
|
||||
void J2DPrint::getNumberF32(const unsigned char**, float, float, int) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802CF8AC-802CF8F4 .text __dt__8J2DPrintFv */
|
||||
J2DPrint::~J2DPrint() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
@@ -0,0 +1,57 @@
|
||||
//
|
||||
// Generated by dtk
|
||||
// Translation Unit: J2DScreen.cpp
|
||||
//
|
||||
|
||||
#include "JSystem/J2DGraph/J2DScreen.h"
|
||||
#include "dolphin/types.h"
|
||||
|
||||
/* 802D08E4-802D0944 .text __dt__9J2DScreenFv */
|
||||
J2DScreen::~J2DScreen() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802D0944-802D0A2C .text set__9J2DScreenFPCcP10JKRArchive */
|
||||
void J2DScreen::set(const char*, JKRArchive*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802D0A2C-802D0B40 .text makeHierarchyPanes__9J2DScreenFP7J2DPaneP20JSURandomInputStream */
|
||||
void J2DScreen::makeHierarchyPanes(J2DPane*, JSURandomInputStream*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802D0B40-802D0CE0 .text createPane__9J2DScreenFRCQ27J2DPane18J2DScrnBlockHeaderP20JSURandomInputStreamP7J2DPane */
|
||||
void J2DScreen::createPane(const J2DPane::J2DScrnBlockHeader&, JSURandomInputStream*, J2DPane*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802D0CE0-802D0D70 .text set__9J2DScreenFP20JSURandomInputStream */
|
||||
void J2DScreen::set(JSURandomInputStream*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802D0D70-802D0DE8 .text checkSignature__9J2DScreenFP20JSURandomInputStream */
|
||||
void J2DScreen::checkSignature(JSURandomInputStream*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802D0DE8-802D0F2C .text getScreenInformation__9J2DScreenFP20JSURandomInputStream */
|
||||
void J2DScreen::getScreenInformation(JSURandomInputStream*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802D0F2C-802D1150 .text draw__9J2DScreenFffPC14J2DGrafContext */
|
||||
void J2DScreen::draw(float, float, const J2DGrafContext*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802D1150-802D1180 .text search__9J2DScreenFUl */
|
||||
void J2DScreen::search(unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802D1180-802D12E0 .text drawSelf__9J2DScreenFffPA3_A4_f */
|
||||
void J2DScreen::drawSelf(float, float, float(*)[3][4]) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
@@ -0,0 +1,77 @@
|
||||
//
|
||||
// Generated by dtk
|
||||
// Translation Unit: J2DTextBox.cpp
|
||||
//
|
||||
|
||||
#include "JSystem/J2DGraph/J2DTextBox.h"
|
||||
#include "dolphin/types.h"
|
||||
|
||||
/* 802D51D8-802D5268 .text __ct__10J2DTextBoxFPCcPCc */
|
||||
J2DTextBox::J2DTextBox(const char*, const char*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802D5268-802D55D4 .text __ct__10J2DTextBoxFP7J2DPaneP20JSURandomInputStream */
|
||||
J2DTextBox::J2DTextBox(J2DPane*, JSURandomInputStream*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802D55D4-802D5660 .text __ct__10J2DTextBoxFUlRCQ29JGeometry8TBox2<f>PC7ResFONTPCc18J2DTextBoxHBinding18J2DTextBoxVBinding */
|
||||
J2DTextBox::J2DTextBox(unsigned long, const JGeometry::TBox2<float>&, const ResFONT*, const char*, J2DTextBoxHBinding, J2DTextBoxVBinding) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802D5660-802D5820 .text initiate__10J2DTextBoxFPC7ResFONTPCc18J2DTextBoxHBinding18J2DTextBoxVBinding */
|
||||
void J2DTextBox::initiate(const ResFONT*, const char*, J2DTextBoxHBinding, J2DTextBoxVBinding) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802D5820-802D58B8 .text __dt__10J2DTextBoxFv */
|
||||
J2DTextBox::~J2DTextBox() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802D58B8-802D5928 .text setFont__10J2DTextBoxFP7JUTFont */
|
||||
void J2DTextBox::setFont(JUTFont*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802D5928-802D5AA4 .text draw__10J2DTextBoxFfff18J2DTextBoxHBinding */
|
||||
void J2DTextBox::draw(float, float, float, J2DTextBoxHBinding) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802D5AA4-802D5AAC .text getStringPtr__10J2DTextBoxCFv */
|
||||
void J2DTextBox::getStringPtr() const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802D5AAC-802D5B6C .text setString__10J2DTextBoxFPCce */
|
||||
void J2DTextBox::setString(const char*, ...) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802D5B6C-802D5BE4 .text setConnectParent__10J2DTextBoxFb */
|
||||
void J2DTextBox::setConnectParent(bool) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802D5BE4-802D5C4C .text drawSelf__10J2DTextBoxFff */
|
||||
void J2DTextBox::drawSelf(float, float) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802D5C4C-802D5DA4 .text drawSelf__10J2DTextBoxFffPA3_A4_f */
|
||||
void J2DTextBox::drawSelf(float, float, float(*)[3][4]) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802D5DA4-802D5EB0 .text resize__10J2DTextBoxFff */
|
||||
void J2DTextBox::resize(float, float) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802D5EB0-802D5EB8 .text getTypeID__10J2DTextBoxFv */
|
||||
void J2DTextBox::getTypeID() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
@@ -0,0 +1,77 @@
|
||||
//
|
||||
// Generated by dtk
|
||||
// Translation Unit: J2DWindow.cpp
|
||||
//
|
||||
|
||||
#include "JSystem/J2DGraph/J2DWindow.h"
|
||||
#include "dolphin/types.h"
|
||||
|
||||
/* 802D12E0-802D1820 .text __ct__9J2DWindowFP7J2DPaneP20JSURandomInputStream */
|
||||
J2DWindow::J2DWindow(J2DPane*, JSURandomInputStream*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802D1820-802D1A9C .text initinfo2__9J2DWindowFv */
|
||||
void J2DWindow::initinfo2() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802D1A9C-802D1B44 .text __dt__9J2DWindowFv */
|
||||
J2DWindow::~J2DWindow() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802D1B44-802D1F5C .text draw_private__9J2DWindowFRCQ29JGeometry8TBox2<f>RCQ29JGeometry8TBox2<f> */
|
||||
void J2DWindow::draw_private(const JGeometry::TBox2<float>&, const JGeometry::TBox2<float>&) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802D1F5C-802D207C .text resize__9J2DWindowFff */
|
||||
void J2DWindow::resize(float, float) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802D207C-802D2128 .text setContentsColor__9J2DWindowFQ28JUtility6TColorQ28JUtility6TColorQ28JUtility6TColorQ28JUtility6TColor */
|
||||
void J2DWindow::setContentsColor(JUtility::TColor, JUtility::TColor, JUtility::TColor, JUtility::TColor) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802D2128-802D2190 .text drawSelf__9J2DWindowFff */
|
||||
void J2DWindow::drawSelf(float, float) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802D2190-802D2288 .text drawSelf__9J2DWindowFffPA3_A4_f */
|
||||
void J2DWindow::drawSelf(float, float, float(*)[3][4]) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802D2288-802D2550 .text drawContents__9J2DWindowFRCQ29JGeometry8TBox2<f> */
|
||||
void J2DWindow::drawContents(const JGeometry::TBox2<float>&) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802D2550-802D26E4 .text drawFrameTexture__9J2DWindowFP10JUTTextureffffUsUsUsUsb */
|
||||
void J2DWindow::drawFrameTexture(JUTTexture*, float, float, float, float, unsigned short, unsigned short, unsigned short, unsigned short, bool) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802D26E4-802D2784 .text drawFrameTexture__9J2DWindowFP10JUTTextureffbbb */
|
||||
void J2DWindow::drawFrameTexture(JUTTexture*, float, float, bool, bool, bool) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802D2784-802D29F4 .text drawContentsTexture__9J2DWindowFffff */
|
||||
void J2DWindow::drawContentsTexture(float, float, float, float) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802D29F4-802D2D8C .text setTevMode__9J2DWindowFP10JUTTextureQ28JUtility6TColorQ28JUtility6TColor */
|
||||
void J2DWindow::setTevMode(JUTTexture*, JUtility::TColor, JUtility::TColor) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802D2D8C-802D2D94 .text getTypeID__9J2DWindowFv */
|
||||
void J2DWindow::getTypeID() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
@@ -0,0 +1,212 @@
|
||||
//
|
||||
// Generated by dtk
|
||||
// Translation Unit: J3DAnimation.cpp
|
||||
//
|
||||
|
||||
#include "JSystem/J3DGraphAnimator/J3DAnimation.h"
|
||||
#include "dolphin/types.h"
|
||||
|
||||
/* 802EF5D8-802EF608 .text init__12J3DFrameCtrlFs */
|
||||
void J3DFrameCtrl::init(short) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802EF608-802EFBA8 .text checkPass__12J3DFrameCtrlFf */
|
||||
void J3DFrameCtrl::checkPass(float) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802EFBA8-802EFFE4 .text update__12J3DFrameCtrlFv */
|
||||
void J3DFrameCtrl::update() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802EFFE4-802F06D8 .text getTransform__19J3DAnmTransformFullCFUsP16J3DTransformInfo */
|
||||
void J3DAnmTransformFull::getTransform(unsigned short, J3DTransformInfo*) const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F06D8-802F072C .text J3DHermiteInterpolationS__FfPsPsPsPsPsPs */
|
||||
void J3DHermiteInterpolationS(float, short*, short*, short*, short*, short*, short*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F072C-802F0954 .text J3DGetKeyFrameInterpolationS__FfP18J3DAnmKeyTableBasePs */
|
||||
void J3DGetKeyFrameInterpolationS(float, J3DAnmKeyTableBase*, short*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F0954-802F0E20 .text calcTransform__18J3DAnmTransformKeyCFfUsP16J3DTransformInfo */
|
||||
void J3DAnmTransformKey::calcTransform(float, unsigned short, J3DTransformInfo*) const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F0E20-802F10D4 .text calcTransform__19J3DAnmTextureSRTKeyCFfUsP17J3DTextureSRTInfo */
|
||||
void J3DAnmTextureSRTKey::calcTransform(float, unsigned short, J3DTextureSRTInfo*) const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F10D4-802F1188 .text getWeight__17J3DAnmClusterFullCFUs */
|
||||
void J3DAnmClusterFull::getWeight(unsigned short) const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F1188-802F120C .text getWeight__16J3DAnmClusterKeyCFUs */
|
||||
void J3DAnmClusterKey::getWeight(unsigned short) const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F120C-802F14B4 .text getColor__18J3DAnmVtxColorFullCFUcUsP8_GXColor */
|
||||
void J3DAnmVtxColorFull::getColor(unsigned char, unsigned short, _GXColor*) const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F14B4-802F17D0 .text getColor__17J3DAnmVtxColorKeyCFUcUsP8_GXColor */
|
||||
void J3DAnmVtxColorKey::getColor(unsigned char, unsigned short, _GXColor*) const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F17D0-802F1868 .text searchUpdateMaterialID__11J3DAnmColorFP16J3DMaterialTable */
|
||||
void J3DAnmColor::searchUpdateMaterialID(J3DMaterialTable*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F1868-802F188C .text searchUpdateMaterialID__11J3DAnmColorFP12J3DModelData */
|
||||
void J3DAnmColor::searchUpdateMaterialID(J3DModelData*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F188C-802F1BDC .text getColor__15J3DAnmColorFullCFUsP8_GXColor */
|
||||
void J3DAnmColorFull::getColor(unsigned short, _GXColor*) const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F1BDC-802F1F20 .text getColor__14J3DAnmColorKeyCFUsP8_GXColor */
|
||||
void J3DAnmColorKey::getColor(unsigned short, _GXColor*) const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F1F20-802F200C .text getTexNo__16J3DAnmTexPatternCFUsPUs */
|
||||
void J3DAnmTexPattern::getTexNo(unsigned short, unsigned short*) const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F200C-802F20EC .text getVisibility__20J3DAnmVisibilityFullCFUsPUc */
|
||||
void J3DAnmVisibilityFull::getVisibility(unsigned short, unsigned char*) const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F20EC-802F2184 .text searchUpdateMaterialID__16J3DAnmTexPatternFP16J3DMaterialTable */
|
||||
void J3DAnmTexPattern::searchUpdateMaterialID(J3DMaterialTable*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F2184-802F21A8 .text searchUpdateMaterialID__16J3DAnmTexPatternFP12J3DModelData */
|
||||
void J3DAnmTexPattern::searchUpdateMaterialID(J3DModelData*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F21A8-802F22BC .text searchUpdateMaterialID__19J3DAnmTextureSRTKeyFP16J3DMaterialTable */
|
||||
void J3DAnmTextureSRTKey::searchUpdateMaterialID(J3DMaterialTable*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F22BC-802F22E0 .text searchUpdateMaterialID__19J3DAnmTextureSRTKeyFP12J3DModelData */
|
||||
void J3DAnmTextureSRTKey::searchUpdateMaterialID(J3DModelData*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F22E0-802F2624 .text getTevColorReg__15J3DAnmTevRegKeyCFUsP11_GXColorS10 */
|
||||
void J3DAnmTevRegKey::getTevColorReg(unsigned short, _GXColorS10*) const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F2624-802F2968 .text getTevKonstReg__15J3DAnmTevRegKeyCFUsP8_GXColor */
|
||||
void J3DAnmTevRegKey::getTevKonstReg(unsigned short, _GXColor*) const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F2968-802F2A64 .text searchUpdateMaterialID__15J3DAnmTevRegKeyFP16J3DMaterialTable */
|
||||
void J3DAnmTevRegKey::searchUpdateMaterialID(J3DMaterialTable*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F2A64-802F2A88 .text searchUpdateMaterialID__15J3DAnmTevRegKeyFP12J3DModelData */
|
||||
void J3DAnmTevRegKey::searchUpdateMaterialID(J3DModelData*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F2A88-802F2DAC .text J3DGetKeyFrameInterpolation<s>__FfP18J3DAnmKeyTableBasePs */
|
||||
void J3DGetKeyFrameInterpolation<short>(float, J3DAnmKeyTableBase*, short*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F2DAC-802F2EF8 .text J3DGetKeyFrameInterpolation<f>__FfP18J3DAnmKeyTableBasePf */
|
||||
void J3DGetKeyFrameInterpolation<float>(float, J3DAnmKeyTableBase*, float*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F2EF8-802F2F7C .text __dt__14J3DAnmColorKeyFv */
|
||||
J3DAnmColorKey::~J3DAnmColorKey() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F2F7C-802F2FF0 .text __dt__11J3DAnmColorFv */
|
||||
J3DAnmColor::~J3DAnmColor() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F2FF0-802F2FF4 .text getColor__11J3DAnmColorCFUsP8_GXColor */
|
||||
void J3DAnmColor::getColor(unsigned short, _GXColor*) const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F2FF4-802F3078 .text __dt__15J3DAnmColorFullFv */
|
||||
J3DAnmColorFull::~J3DAnmColorFull() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F3078-802F30E4 .text __dt__17J3DAnmVtxColorKeyFv */
|
||||
J3DAnmVtxColorKey::~J3DAnmVtxColorKey() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F30E4-802F3140 .text __dt__14J3DAnmVtxColorFv */
|
||||
J3DAnmVtxColor::~J3DAnmVtxColor() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F3140-802F3144 .text getColor__14J3DAnmVtxColorCFUcUsP8_GXColor */
|
||||
void J3DAnmVtxColor::getColor(unsigned char, unsigned short, _GXColor*) const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F3144-802F31B0 .text __dt__18J3DAnmVtxColorFullFv */
|
||||
J3DAnmVtxColorFull::~J3DAnmVtxColorFull() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F31B0-802F321C .text __dt__16J3DAnmClusterKeyFv */
|
||||
J3DAnmClusterKey::~J3DAnmClusterKey() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F321C-802F3278 .text __dt__13J3DAnmClusterFv */
|
||||
J3DAnmCluster::~J3DAnmCluster() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F3278-802F3280 .text getWeight__13J3DAnmClusterCFUs */
|
||||
void J3DAnmCluster::getWeight(unsigned short) const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F3280-802F32EC .text __dt__17J3DAnmClusterFullFv */
|
||||
J3DAnmClusterFull::~J3DAnmClusterFull() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F32EC-802F3358 .text __dt__19J3DAnmTransformFullFv */
|
||||
J3DAnmTransformFull::~J3DAnmTransformFull() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
@@ -0,0 +1,102 @@
|
||||
//
|
||||
// Generated by dtk
|
||||
// Translation Unit: J3DCluster.cpp
|
||||
//
|
||||
|
||||
#include "JSystem/J3DGraphAnimator/J3DCluster.h"
|
||||
#include "dolphin/types.h"
|
||||
|
||||
/* 802F37C4-802F37E4 .text clear__13J3DDeformDataFv */
|
||||
void J3DDeformData::clear() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F37E4-802F3814 .text __ct__13J3DDeformDataFv */
|
||||
J3DDeformData::J3DDeformData() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F3814-802F3838 .text deform__13J3DDeformDataFP8J3DModel */
|
||||
void J3DDeformData::deform(J3DModel*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F3838-802F3900 .text deform__13J3DDeformDataFP15J3DVertexBuffer */
|
||||
void J3DDeformData::deform(J3DVertexBuffer*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F3900-802F3920 .text clear__11J3DDeformerFv */
|
||||
void J3DDeformer::clear() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F3920-802F3A08 .text deform__11J3DDeformerFP15J3DVertexBufferUs */
|
||||
void J3DDeformer::deform(J3DVertexBuffer*, unsigned short) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F3A08-802F3FA8 .text deform__11J3DDeformerFP15J3DVertexBufferUsPf */
|
||||
void J3DDeformer::deform(J3DVertexBuffer*, unsigned short, float*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F3FA8-802F4064 .text normalize__11J3DDeformerFPf */
|
||||
void J3DDeformer::normalize(float*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F4064-802F40C0 .text normalizeWeight__11J3DDeformerFiPf */
|
||||
void J3DDeformer::normalizeWeight(int, float*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F40C0-802F40F0 .text __ct__13J3DSkinDeformFv */
|
||||
J3DSkinDeform::J3DSkinDeform() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F40F0-802F44E8 .text initMtxIndexArray__13J3DSkinDeformFP12J3DModelData */
|
||||
void J3DSkinDeform::initMtxIndexArray(J3DModelData*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F44E8-802F4734 .text changeFastSkinDL__13J3DSkinDeformFP12J3DModelData */
|
||||
void J3DSkinDeform::changeFastSkinDL(J3DModelData*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F4734-802F4850 .text calcNrmMtx__13J3DSkinDeformFP8J3DModel */
|
||||
void J3DSkinDeform::calcNrmMtx(J3DModel*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F4850-802F4974 .text deformVtxPos_F32__13J3DSkinDeformCFP8J3DModel */
|
||||
void J3DSkinDeform::deformVtxPos_F32(J3DModel*) const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F4974-802F4AB4 .text deformVtxPos_S16__13J3DSkinDeformCFP8J3DModel */
|
||||
void J3DSkinDeform::deformVtxPos_S16(J3DModel*) const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F4AB4-802F4BB8 .text deformVtxNrm_F32__13J3DSkinDeformCFP8J3DModel */
|
||||
void J3DSkinDeform::deformVtxNrm_F32(J3DModel*) const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F4BB8-802F4CD8 .text deformVtxNrm_S16__13J3DSkinDeformCFP8J3DModel */
|
||||
void J3DSkinDeform::deformVtxNrm_S16(J3DModel*) const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F4CD8-802F4D78 .text deform__13J3DSkinDeformFP8J3DModel */
|
||||
void J3DSkinDeform::deform(J3DModel*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F4D78-802F4DC0 .text __dt__13J3DSkinDeformFv */
|
||||
J3DSkinDeform::~J3DSkinDeform() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
@@ -0,0 +1,137 @@
|
||||
//
|
||||
// Generated by dtk
|
||||
// Translation Unit: J3DJoint.cpp
|
||||
//
|
||||
|
||||
#include "JSystem/J3DGraphAnimator/J3DJoint.h"
|
||||
#include "dolphin/types.h"
|
||||
|
||||
/* 802F4DC0-802F4EB0 .text calc__13J3DMtxCalcAnmFUs */
|
||||
void J3DMtxCalcAnm::calc(unsigned short) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F4EB0-802F4EF8 .text __ct__15J3DMtxCalcBasicFv */
|
||||
J3DMtxCalcBasic::J3DMtxCalcBasic() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F4EF8-802F5090 .text recursiveCalc__15J3DMtxCalcBasicFP7J3DNode */
|
||||
void J3DMtxCalcBasic::recursiveCalc(J3DNode*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F5090-802F525C .text calcTransform__15J3DMtxCalcBasicFUsRC16J3DTransformInfo */
|
||||
void J3DMtxCalcBasic::calcTransform(unsigned short, const J3DTransformInfo&) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F525C-802F52BC .text calc__15J3DMtxCalcBasicFUs */
|
||||
void J3DMtxCalcBasic::calc(unsigned short) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F52BC-802F5508 .text calcTransform__19J3DMtxCalcSoftimageFUsRC16J3DTransformInfo */
|
||||
void J3DMtxCalcSoftimage::calcTransform(unsigned short, const J3DTransformInfo&) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F5508-802F5724 .text calcTransform__14J3DMtxCalcMayaFUsRC16J3DTransformInfo */
|
||||
void J3DMtxCalcMaya::calcTransform(unsigned short, const J3DTransformInfo&) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F5724-802F5814 .text initialize__8J3DJointFv */
|
||||
void J3DJoint::initialize() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F5814-802F5834 .text addMesh__8J3DJointFP11J3DMaterial */
|
||||
void J3DJoint::addMesh(J3DMaterial*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F5834-802F58B4 .text calcIn__8J3DJointFv */
|
||||
void J3DJoint::calcIn() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F58B4-802F58D8 .text calcOut__8J3DJointFv */
|
||||
void J3DJoint::calcOut() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F58D8-802F5A78 .text entryIn__8J3DJointFv */
|
||||
void J3DJoint::entryIn() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F5A78-802F5A84 .text getType__8J3DJointCFv */
|
||||
void J3DJoint::getType() const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F5A84-802F5AE4 .text __dt__8J3DJointFv */
|
||||
J3DJoint::~J3DJoint() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F5AE4-802F5AF8 .text @8@36@calc__13J3DMtxCalcAnmFUs */
|
||||
void J3DMtxCalcAnm::@8@36@calc(unsigned short) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F5AF8-802F5B0C .text @80@36@calcTransform__15J3DMtxCalcBasicFUsRC16J3DTransformInfo */
|
||||
void J3DMtxCalcBasic::@80@36@calcTransform(unsigned short, const J3DTransformInfo&) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F5B0C-802F5B20 .text @80@36@init__15J3DMtxCalcBasicFRC3VecRA3_A4_Cf */
|
||||
void J3DMtxCalcBasic::@80@36@init(const Vec&, const float(&)[3][4]) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F5B20-802F5B34 .text @80@36@calcTransform__19J3DMtxCalcSoftimageFUsRC16J3DTransformInfo */
|
||||
void J3DMtxCalcSoftimage::@80@36@calcTransform(unsigned short, const J3DTransformInfo&) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F5B34-802F5B48 .text @80@36@init__19J3DMtxCalcSoftimageFRC3VecRA3_A4_Cf */
|
||||
void J3DMtxCalcSoftimage::@80@36@init(const Vec&, const float(&)[3][4]) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F5B48-802F5B5C .text @80@36@calc__15J3DMtxCalcBasicFUs */
|
||||
void J3DMtxCalcBasic::@80@36@calc(unsigned short) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F5B5C-802F5B70 .text @80@36@calcTransform__14J3DMtxCalcMayaFUsRC16J3DTransformInfo */
|
||||
void J3DMtxCalcMaya::@80@36@calcTransform(unsigned short, const J3DTransformInfo&) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F5B70-802F5B84 .text @80@36@recursiveCalc__15J3DMtxCalcBasicFP7J3DNode */
|
||||
void J3DMtxCalcBasic::@80@36@recursiveCalc(J3DNode*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F5B84-802F5B98 .text @80@36@init__14J3DMtxCalcMayaFRC3VecRA3_A4_Cf */
|
||||
void J3DMtxCalcMaya::@80@36@init(const Vec&, const float(&)[3][4]) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F5B98-802F5B9C .text calcOut__7J3DNodeFv */
|
||||
void J3DNode::calcOut() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F5B9C-802F5BA0 .text calcIn__7J3DNodeFv */
|
||||
void J3DNode::calcIn() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F5BA0-802F5BA4 .text init__7J3DNodeFP12J3DModelData */
|
||||
void J3DNode::init(J3DModelData*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
@@ -0,0 +1,42 @@
|
||||
//
|
||||
// Generated by dtk
|
||||
// Translation Unit: J3DMaterialAnm.cpp
|
||||
//
|
||||
|
||||
#include "JSystem/J3DGraphAnimator/J3DMaterialAnm.h"
|
||||
#include "dolphin/types.h"
|
||||
|
||||
/* 802F3358-802F3394 .text calc__14J3DMatColorAnmCFP8_GXColor */
|
||||
void J3DMatColorAnm::calc(_GXColor*) const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F3394-802F33C8 .text calc__12J3DTexMtxAnmCFP17J3DTextureSRTInfo */
|
||||
void J3DTexMtxAnm::calc(J3DTextureSRTInfo*) const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F33C8-802F33F8 .text calc__11J3DTexNoAnmCFPUs */
|
||||
void J3DTexNoAnm::calc(unsigned short*) const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F33F8-802F3428 .text calc__14J3DTevColorAnmCFP11_GXColorS10 */
|
||||
void J3DTevColorAnm::calc(_GXColorS10*) const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F3428-802F3458 .text calc__15J3DTevKColorAnmCFP8_GXColor */
|
||||
void J3DTevKColorAnm::calc(_GXColor*) const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F3458-802F34FC .text initialize__14J3DMaterialAnmFv */
|
||||
void J3DMaterialAnm::initialize() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F34FC-802F36BC .text calc__14J3DMaterialAnmCFP11J3DMaterial */
|
||||
void J3DMaterialAnm::calc(J3DMaterial*) const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
@@ -0,0 +1,77 @@
|
||||
//
|
||||
// Generated by dtk
|
||||
// Translation Unit: J3DMaterialAttach.cpp
|
||||
//
|
||||
|
||||
#include "JSystem/J3DGraphAnimator/J3DMaterialAttach.h"
|
||||
#include "dolphin/types.h"
|
||||
|
||||
/* 802F5C48-802F5C70 .text clear__16J3DMaterialTableFv */
|
||||
void J3DMaterialTable::clear() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F5C70-802F5CAC .text __ct__16J3DMaterialTableFv */
|
||||
J3DMaterialTable::J3DMaterialTable() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F5CAC-802F5CF4 .text __dt__16J3DMaterialTableFv */
|
||||
J3DMaterialTable::~J3DMaterialTable() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F5CF4-802F5DC8 .text entryMatColorAnimator__16J3DMaterialTableFP11J3DAnmColor */
|
||||
void J3DMaterialTable::entryMatColorAnimator(J3DAnmColor*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F5DC8-802F6058 .text entryTexMtxAnimator__16J3DMaterialTableFP19J3DAnmTextureSRTKey */
|
||||
void J3DMaterialTable::entryTexMtxAnimator(J3DAnmTextureSRTKey*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F6058-802F61E8 .text entryTevRegAnimator__16J3DMaterialTableFP15J3DAnmTevRegKey */
|
||||
void J3DMaterialTable::entryTevRegAnimator(J3DAnmTevRegKey*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F61E8-802F6260 .text removeMatColorAnimator__16J3DMaterialTableFP11J3DAnmColor */
|
||||
void J3DMaterialTable::removeMatColorAnimator(J3DAnmColor*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F6260-802F62F4 .text removeTexNoAnimator__16J3DMaterialTableFP16J3DAnmTexPattern */
|
||||
void J3DMaterialTable::removeTexNoAnimator(J3DAnmTexPattern*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F62F4-802F6398 .text removeTexMtxAnimator__16J3DMaterialTableFP19J3DAnmTextureSRTKey */
|
||||
void J3DMaterialTable::removeTexMtxAnimator(J3DAnmTextureSRTKey*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F6398-802F64B8 .text removeTevRegAnimator__16J3DMaterialTableFP15J3DAnmTevRegKey */
|
||||
void J3DMaterialTable::removeTevRegAnimator(J3DAnmTevRegKey*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F64B8-802F6550 .text setMatColorAnimator__16J3DMaterialTableFP11J3DAnmColorP14J3DMatColorAnm */
|
||||
void J3DMaterialTable::setMatColorAnimator(J3DAnmColor*, J3DMatColorAnm*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F6550-802F6600 .text setTexNoAnimator__16J3DMaterialTableFP16J3DAnmTexPatternP11J3DTexNoAnm */
|
||||
void J3DMaterialTable::setTexNoAnimator(J3DAnmTexPattern*, J3DTexNoAnm*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F6600-802F6798 .text setTexMtxAnimator__16J3DMaterialTableFP19J3DAnmTextureSRTKeyP12J3DTexMtxAnmP12J3DTexMtxAnm */
|
||||
void J3DMaterialTable::setTexMtxAnimator(J3DAnmTextureSRTKey*, J3DTexMtxAnm*, J3DTexMtxAnm*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F6798-802F68F0 .text setTevRegAnimator__16J3DMaterialTableFP15J3DAnmTevRegKeyP14J3DTevColorAnmP15J3DTevKColorAnm */
|
||||
void J3DMaterialTable::setTevRegAnimator(J3DAnmTevRegKey*, J3DTevColorAnm*, J3DTevKColorAnm*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
@@ -0,0 +1,147 @@
|
||||
//
|
||||
// Generated by dtk
|
||||
// Translation Unit: J3DModel.cpp
|
||||
//
|
||||
|
||||
#include "JSystem/J3DGraphAnimator/J3DModel.h"
|
||||
#include "dolphin/types.h"
|
||||
|
||||
/* 802ED564-802ED5AC .text __ct__8J3DModelFv */
|
||||
J3DModel::J3DModel() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802ED5AC-802ED610 .text __dt__8J3DModelFv */
|
||||
J3DModel::~J3DModel() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802ED610-802ED6C4 .text initialize__8J3DModelFv */
|
||||
void J3DModel::initialize() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802ED6C4-802ED8D8 .text entryModelData__8J3DModelFP12J3DModelDataUlUl */
|
||||
void J3DModel::entryModelData(J3DModelData*, unsigned long, unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802ED8D8-802ED904 .text setNoUseDrawMtx__8J3DModelFv */
|
||||
void J3DModel::setNoUseDrawMtx() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802ED904-802EDA14 .text createSingleDrawMtx__8J3DModelFP12J3DModelData */
|
||||
void J3DModel::createSingleDrawMtx(J3DModelData*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802EDA14-802EDBC0 .text createDoubleDrawMtx__8J3DModelFP12J3DModelDataUl */
|
||||
void J3DModel::createDoubleDrawMtx(J3DModelData*, unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802EDBC0-802EDC8C .text createShapePacket__8J3DModelFP12J3DModelData */
|
||||
void J3DModel::createShapePacket(J3DModelData*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802EDC8C-802EDF60 .text createMatPacket__8J3DModelFP12J3DModelDataUl */
|
||||
void J3DModel::createMatPacket(J3DModelData*, unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802EDF60-802EE1D4 .text createBumpMtxArray__8J3DModelFP12J3DModelDataUl */
|
||||
void J3DModel::createBumpMtxArray(J3DModelData*, unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802EE1D4-802EE254 .text newDifferedDisplayList__8J3DModelFUl */
|
||||
void J3DModel::newDifferedDisplayList(unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802EE254-802EE28C .text lock__8J3DModelFv */
|
||||
void J3DModel::lock() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802EE28C-802EE2C4 .text unlock__8J3DModelFv */
|
||||
void J3DModel::unlock() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802EE2C4-802EE42C .text calcMaterial__8J3DModelFv */
|
||||
void J3DModel::calcMaterial() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802EE42C-802EE4BC .text diff__8J3DModelFv */
|
||||
void J3DModel::diff() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802EE4BC-802EE5D8 .text setSkinDeform__8J3DModelFP13J3DSkinDeformUl */
|
||||
void J3DModel::setSkinDeform(J3DSkinDeform*, unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802EE5D8-802EE67C .text calcAnmMtx__8J3DModelFv */
|
||||
void J3DModel::calcAnmMtx() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802EE67C-802EE874 .text calcWeightEnvelopeMtx__8J3DModelFv */
|
||||
void J3DModel::calcWeightEnvelopeMtx() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802EE874-802EE8C0 .text update__8J3DModelFv */
|
||||
void J3DModel::update() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802EE8C0-802EEA2C .text calc__8J3DModelFv */
|
||||
void J3DModel::calc() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802EEA2C-802EEB24 .text entry__8J3DModelFv */
|
||||
void J3DModel::entry() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802EEB24-802EEBDC .text calcViewBaseMtx__FPA4_fRC3VecRA3_A4_CfPA4_f */
|
||||
void calcViewBaseMtx(float(*)[4], const Vec&, const float(&)[3][4], float(*)[4]) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802EEBDC-802EEE30 .text calcDrawMtx__8J3DModelFv */
|
||||
void J3DModel::calcDrawMtx() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802EEE30-802EF050 .text viewCalc__8J3DModelFv */
|
||||
void J3DModel::viewCalc() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802EF050-802EF1B8 .text calcNrmMtx__8J3DModelFv */
|
||||
void J3DModel::calcNrmMtx() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802EF1B8-802EF2B0 .text calcBumpMtx__8J3DModelFv */
|
||||
void J3DModel::calcBumpMtx() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802EF2B0-802EF414 .text calcBBoard__8J3DModelFv */
|
||||
void J3DModel::calcBBoard() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802EF414-802EF5D8 .text prepareShapePackets__8J3DModelFv */
|
||||
void J3DModel::prepareShapePackets() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
@@ -0,0 +1,67 @@
|
||||
//
|
||||
// Generated by dtk
|
||||
// Translation Unit: J3DModelData.cpp
|
||||
//
|
||||
|
||||
#include "JSystem/J3DGraphAnimator/J3DModelData.h"
|
||||
#include "dolphin/types.h"
|
||||
|
||||
/* 802ECF30-802ECF70 .text clear__12J3DJointTreeFv */
|
||||
void J3DJointTree::clear() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802ECF70-802ED108 .text makeHierarchy__12J3DJointTreeFP7J3DNodePPC17J3DModelHierarchyP16J3DMaterialTablePP8J3DShape */
|
||||
void J3DJointTree::makeHierarchy(J3DNode*, const J3DModelHierarchy**, J3DMaterialTable*, J3DShape**) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802ED108-802ED130 .text clear__12J3DModelDataFv */
|
||||
void J3DModelData::clear() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802ED130-802ED1A8 .text __ct__12J3DModelDataFv */
|
||||
J3DModelData::J3DModelData() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802ED1A8-802ED238 .text __dt__12J3DModelDataFv */
|
||||
J3DModelData::~J3DModelData() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802ED238-802ED2A4 .text initShapeNodes__12J3DModelDataFv */
|
||||
void J3DModelData::initShapeNodes() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802ED2A4-802ED340 .text sortVcdVatCmd__12J3DModelDataFv */
|
||||
void J3DModelData::sortVcdVatCmd() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802ED340-802ED3E8 .text indexToPtr__12J3DModelDataFv */
|
||||
void J3DModelData::indexToPtr() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802ED3E8-802ED434 .text isDeformablePositionFormat__12J3DModelDataCFv */
|
||||
void J3DModelData::isDeformablePositionFormat() const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802ED434-802ED4F4 .text setMaterialTable__12J3DModelDataFP16J3DMaterialTable19J3DMaterialCopyFlag */
|
||||
void J3DModelData::setMaterialTable(J3DMaterialTable*, J3DMaterialCopyFlag) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802ED4F4-802ED500 .text getType__7J3DNodeCFv */
|
||||
void J3DNode::getType() const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802ED500-802ED564 .text __dt__12J3DJointTreeFv */
|
||||
J3DJointTree::~J3DJointTree() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
@@ -0,0 +1,27 @@
|
||||
//
|
||||
// Generated by dtk
|
||||
// Translation Unit: J3DNode.cpp
|
||||
//
|
||||
|
||||
#include "JSystem/J3DGraphAnimator/J3DNode.h"
|
||||
#include "dolphin/types.h"
|
||||
|
||||
/* 802F5BA4-802F5BC8 .text __ct__7J3DNodeFv */
|
||||
J3DNode::J3DNode() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F5BC8-802F5C10 .text __dt__7J3DNodeFv */
|
||||
J3DNode::~J3DNode() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F5C10-802F5C44 .text appendChild__7J3DNodeFP7J3DNode */
|
||||
void J3DNode::appendChild(J3DNode*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F5C44-802F5C48 .text entryIn__7J3DNodeFv */
|
||||
void J3DNode::entryIn() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
@@ -0,0 +1,17 @@
|
||||
//
|
||||
// Generated by dtk
|
||||
// Translation Unit: J3DVisibility.cpp
|
||||
//
|
||||
|
||||
#include "JSystem/J3DGraphAnimator/J3DVisibility.h"
|
||||
#include "dolphin/types.h"
|
||||
|
||||
/* 802F36BC-802F377C .text setVisibility__20J3DVisibilityManagerFP12J3DModelData */
|
||||
void J3DVisibilityManager::setVisibility(J3DModelData*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F377C-802F37C4 .text __dt__20J3DVisibilityManagerFv */
|
||||
J3DVisibilityManager::~J3DVisibilityManager() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
@@ -0,0 +1,82 @@
|
||||
//
|
||||
// Generated by dtk
|
||||
// Translation Unit: J3DDrawBuffer.cpp
|
||||
//
|
||||
|
||||
#include "JSystem/J3DGraphBase/J3DDrawBuffer.h"
|
||||
#include "dolphin/types.h"
|
||||
|
||||
/* 802EC74C-802EC7B4 .text initialize__13J3DDrawBufferFv */
|
||||
void J3DDrawBuffer::initialize() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802EC7B4-802EC84C .text allocBuffer__13J3DDrawBufferFUl */
|
||||
void J3DDrawBuffer::allocBuffer(unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802EC84C-802EC8AC .text __dt__13J3DDrawBufferFv */
|
||||
J3DDrawBuffer::~J3DDrawBuffer() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802EC8AC-802EC8E4 .text frameInit__13J3DDrawBufferFv */
|
||||
void J3DDrawBuffer::frameInit() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802EC8E4-802ECA38 .text entryMatSort__13J3DDrawBufferFP12J3DMatPacket */
|
||||
void J3DDrawBuffer::entryMatSort(J3DMatPacket*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802ECA38-802ECAF0 .text entryMatAnmSort__13J3DDrawBufferFP12J3DMatPacket */
|
||||
void J3DDrawBuffer::entryMatAnmSort(J3DMatPacket*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802ECAF0-802ECBEC .text entryZSort__13J3DDrawBufferFP12J3DMatPacket */
|
||||
void J3DDrawBuffer::entryZSort(J3DMatPacket*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802ECBEC-802ECC3C .text entryModelSort__13J3DDrawBufferFP12J3DMatPacket */
|
||||
void J3DDrawBuffer::entryModelSort(J3DMatPacket*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802ECC3C-802ECC90 .text entryInvalidSort__13J3DDrawBufferFP12J3DMatPacket */
|
||||
void J3DDrawBuffer::entryInvalidSort(J3DMatPacket*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802ECC90-802ECCC4 .text entryNonSort__13J3DDrawBufferFP12J3DMatPacket */
|
||||
void J3DDrawBuffer::entryNonSort(J3DMatPacket*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802ECCC4-802ECCE4 .text entryImm__13J3DDrawBufferFP9J3DPacketUs */
|
||||
void J3DDrawBuffer::entryImm(J3DPacket*, unsigned short) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802ECCE4-802ECD38 .text draw__13J3DDrawBufferCFv */
|
||||
void J3DDrawBuffer::draw() const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802ECD38-802ECDB0 .text drawHead__13J3DDrawBufferCFv */
|
||||
void J3DDrawBuffer::drawHead() const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802ECDB0-802ECE2C .text drawTail__13J3DDrawBufferCFv */
|
||||
void J3DDrawBuffer::drawTail() const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802ECE2C-802ECE5C .text setCallBackPacket__13J3DDrawBufferFP17J3DCallBackPacket */
|
||||
void J3DDrawBuffer::setCallBackPacket(J3DCallBackPacket*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
@@ -0,0 +1,127 @@
|
||||
//
|
||||
// Generated by dtk
|
||||
// Translation Unit: J3DGD.cpp
|
||||
//
|
||||
|
||||
#include "JSystem/J3DGraphBase/J3DGD.h"
|
||||
#include "dolphin/types.h"
|
||||
|
||||
/* 802D5F38-802D60B0 .text J3DGDSetGenMode__FUcUcUcUc11_GXCullMode */
|
||||
void J3DGDSetGenMode(unsigned char, unsigned char, unsigned char, unsigned char, _GXCullMode) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802D60B0-802D6204 .text J3DGDSetGenMode_3Param__FUcUcUc */
|
||||
void J3DGDSetGenMode_3Param(unsigned char, unsigned char, unsigned char) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802D6204-802D632C .text J3DGDSetIndTexStageNum__FUl */
|
||||
void J3DGDSetIndTexStageNum(unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802D632C-802D6624 .text J3DGDSetLightAttn__F10_GXLightIDffffff */
|
||||
void J3DGDSetLightAttn(_GXLightID, float, float, float, float, float, float) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802D6624-802D6734 .text J3DGDSetLightColor__F10_GXLightID8_GXColor */
|
||||
void J3DGDSetLightColor(_GXLightID, _GXColor) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802D6734-802D6900 .text J3DGDSetLightPos__F10_GXLightIDfff */
|
||||
void J3DGDSetLightPos(_GXLightID, float, float, float) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802D6900-802D6ACC .text J3DGDSetLightDir__F10_GXLightIDfff */
|
||||
void J3DGDSetLightDir(_GXLightID, float, float, float) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802D6ACC-802D702C .text J3DGDSetVtxAttrFmtv__F9_GXVtxFmtP17_GXVtxAttrFmtListb */
|
||||
void J3DGDSetVtxAttrFmtv(_GXVtxFmt, _GXVtxAttrFmtList*, bool) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802D702C-802D71FC .text J3DGDSetTexCoordGen__F13_GXTexGenType12_GXTexGenSrc */
|
||||
void J3DGDSetTexCoordGen(_GXTexGenType, _GXTexGenSrc) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802D71FC-802D7400 .text J3DGDSetTexCoordScale2__F13_GXTexCoordIDUsUcUcUsUcUc */
|
||||
void J3DGDSetTexCoordScale2(_GXTexCoordID, unsigned short, unsigned char, unsigned char, unsigned short, unsigned char, unsigned char) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802D7400-802D759C .text J3DGDSetTexLookupMode__F11_GXTexMapID14_GXTexWrapMode14_GXTexWrapMode12_GXTexFilter12_GXTexFilterfffUcUc13_GXAnisotropy */
|
||||
void J3DGDSetTexLookupMode(_GXTexMapID, _GXTexWrapMode, _GXTexWrapMode, _GXTexFilter, _GXTexFilter, float, float, float, unsigned char, unsigned char, _GXAnisotropy) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802D759C-802D7644 .text J3DGDSetTexImgAttr__F11_GXTexMapIDUsUs9_GXTexFmt */
|
||||
void J3DGDSetTexImgAttr(_GXTexMapID, unsigned short, unsigned short, _GXTexFmt) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802D7644-802D76D4 .text J3DGDSetTexImgPtr__F11_GXTexMapIDPv */
|
||||
void J3DGDSetTexImgPtr(_GXTexMapID, void*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802D76D4-802D77A8 .text J3DGDSetTexImgPtrRaw__F11_GXTexMapIDUl */
|
||||
void J3DGDSetTexImgPtrRaw(_GXTexMapID, unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802D77A8-802D7840 .text J3DGDSetTexTlut__F11_GXTexMapIDUl10_GXTlutFmt */
|
||||
void J3DGDSetTexTlut(_GXTexMapID, unsigned long, _GXTlutFmt) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802D7840-802D7AF8 .text J3DGDLoadTlut__FPvUl11_GXTlutSize */
|
||||
void J3DGDLoadTlut(void*, unsigned long, _GXTlutSize) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802D7AF8-802D7DD8 .text J3DGDSetIndTexMtx__F14_GXIndTexMtxIDPA3_fSc */
|
||||
void J3DGDSetIndTexMtx(_GXIndTexMtxID, float(*)[3], signed char) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802D7DD8-802D7ED0 .text J3DGDSetIndTexCoordScale__F16_GXIndTexStageID14_GXIndTexScale14_GXIndTexScale14_GXIndTexScale14_GXIndTexScale */
|
||||
void J3DGDSetIndTexCoordScale(_GXIndTexStageID, _GXIndTexScale, _GXIndTexScale, _GXIndTexScale, _GXIndTexScale) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802D7ED0-802D80D0 .text J3DGDSetIndTexOrder__FUl13_GXTexCoordID11_GXTexMapID13_GXTexCoordID11_GXTexMapID13_GXTexCoordID11_GXTexMapID13_GXTexCoordID11_GXTexMapID */
|
||||
void J3DGDSetIndTexOrder(unsigned long, _GXTexCoordID, _GXTexMapID, _GXTexCoordID, _GXTexMapID, _GXTexCoordID, _GXTexMapID, _GXTexCoordID, _GXTexMapID) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802D80D0-802D825C .text J3DGDSetTevOrder__F13_GXTevStageID13_GXTexCoordID11_GXTexMapID12_GXChannelID13_GXTexCoordID11_GXTexMapID12_GXChannelID */
|
||||
void J3DGDSetTevOrder(_GXTevStageID, _GXTexCoordID, _GXTexMapID, _GXChannelID, _GXTexCoordID, _GXTexMapID, _GXChannelID) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802D825C-802D83C4 .text J3DGDSetTevKColor__F14_GXTevKColorID8_GXColor */
|
||||
void J3DGDSetTevKColor(_GXTevKColorID, _GXColor) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802D83C4-802D85F8 .text J3DGDSetTevColorS10__F11_GXTevRegID11_GXColorS10 */
|
||||
void J3DGDSetTevColorS10(_GXTevRegID, _GXColorS10) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802D85F8-802D895C .text J3DGDSetFog__F10_GXFogTypeffff8_GXColor */
|
||||
void J3DGDSetFog(_GXFogType, float, float, float, float, _GXColor) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802D895C-802D8AA8 .text J3DGDSetFogRangeAdj__FUcUsP14_GXFogAdjTable */
|
||||
void J3DGDSetFogRangeAdj(unsigned char, unsigned short, _GXFogAdjTable*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,547 @@
|
||||
//
|
||||
// Generated by dtk
|
||||
// Translation Unit: J3DMaterial.cpp
|
||||
//
|
||||
|
||||
#include "JSystem/J3DGraphBase/J3DMaterial.h"
|
||||
#include "dolphin/types.h"
|
||||
|
||||
/* 802DDBC4-802DDDC4 .text createColorBlock__11J3DMaterialFUl */
|
||||
void J3DMaterial::createColorBlock(unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DDDC4-802DDF28 .text createTexGenBlock__11J3DMaterialFUl */
|
||||
void J3DMaterial::createTexGenBlock(unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DDF28-802DE29C .text createTevBlock__11J3DMaterialFi */
|
||||
void J3DMaterial::createTevBlock(int) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DE29C-802DE384 .text createIndBlock__11J3DMaterialFi */
|
||||
void J3DMaterial::createIndBlock(int) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DE384-802DE548 .text createPEBlock__11J3DMaterialFUlUl */
|
||||
void J3DMaterial::createPEBlock(unsigned long, unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DE548-802DE598 .text calcSizeColorBlock__11J3DMaterialFUl */
|
||||
void J3DMaterial::calcSizeColorBlock(unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DE598-802DE5C4 .text calcSizeTexGenBlock__11J3DMaterialFUl */
|
||||
void J3DMaterial::calcSizeTexGenBlock(unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DE5C4-802DE60C .text calcSizeTevBlock__11J3DMaterialFi */
|
||||
void J3DMaterial::calcSizeTevBlock(int) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DE60C-802DE620 .text calcSizeIndBlock__11J3DMaterialFi */
|
||||
void J3DMaterial::calcSizeIndBlock(int) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DE620-802DE688 .text calcSizePEBlock__11J3DMaterialFUlUl */
|
||||
void J3DMaterial::calcSizePEBlock(unsigned long, unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DE688-802DE6D8 .text initialize__11J3DMaterialFv */
|
||||
void J3DMaterial::initialize() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DE6D8-802DE78C .text countDLSize__11J3DMaterialFv */
|
||||
void J3DMaterial::countDLSize() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DE78C-802DEA68 .text makeDisplayList_private__11J3DMaterialFP17J3DDisplayListObj */
|
||||
void J3DMaterial::makeDisplayList_private(J3DDisplayListObj*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DEA68-802DEAB0 .text makeDisplayList__11J3DMaterialFv */
|
||||
void J3DMaterial::makeDisplayList() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DEAB0-802DEAD4 .text makeSharedDisplayList__11J3DMaterialFv */
|
||||
void J3DMaterial::makeSharedDisplayList() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DEAD4-802DEB3C .text load__11J3DMaterialFv */
|
||||
void J3DMaterial::load() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DEB3C-802DEBA0 .text loadSharedDL__11J3DMaterialFv */
|
||||
void J3DMaterial::loadSharedDL() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DEBA0-802DEC38 .text patch__11J3DMaterialFv */
|
||||
void J3DMaterial::patch() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DEC38-802DEE3C .text diff__11J3DMaterialFUl */
|
||||
void J3DMaterial::diff(unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DEE3C-802DEE88 .text calc__11J3DMaterialFPA4_Cf */
|
||||
void J3DMaterial::calc(const float(*)[4]) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DEE88-802DEEA0 .text setCurrentMtx__11J3DMaterialFv */
|
||||
void J3DMaterial::setCurrentMtx() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DEEA0-802DEFF0 .text calcCurrentMtx__11J3DMaterialFv */
|
||||
void J3DMaterial::calcCurrentMtx() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DEFF0-802DF09C .text copy__11J3DMaterialFP11J3DMaterial */
|
||||
void J3DMaterial::copy(J3DMaterial*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DF09C-802DF0F8 .text reset__11J3DMaterialFv */
|
||||
void J3DMaterial::reset() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DF0F8-802DF118 .text change__11J3DMaterialFv */
|
||||
void J3DMaterial::change() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DF118-802DF1AC .text newSharedDisplayList__11J3DMaterialFUl */
|
||||
void J3DMaterial::newSharedDisplayList(unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DF1AC-802DF240 .text newSingleSharedDisplayList__11J3DMaterialFUl */
|
||||
void J3DMaterial::newSingleSharedDisplayList(unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DF240-802DF260 .text initialize__18J3DPatchedMaterialFv */
|
||||
void J3DPatchedMaterial::initialize() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DF260-802DF264 .text makeDisplayList__18J3DPatchedMaterialFv */
|
||||
void J3DPatchedMaterial::makeDisplayList() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DF264-802DF268 .text makeSharedDisplayList__18J3DPatchedMaterialFv */
|
||||
void J3DPatchedMaterial::makeSharedDisplayList() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DF268-802DF2AC .text load__18J3DPatchedMaterialFv */
|
||||
void J3DPatchedMaterial::load() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DF2AC-802DF2EC .text loadSharedDL__18J3DPatchedMaterialFv */
|
||||
void J3DPatchedMaterial::loadSharedDL() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DF2EC-802DF338 .text calc__18J3DPatchedMaterialFPA4_Cf */
|
||||
void J3DPatchedMaterial::calc(const float(*)[4]) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DF338-802DF33C .text reset__18J3DPatchedMaterialFv */
|
||||
void J3DPatchedMaterial::reset() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DF33C-802DF340 .text change__18J3DPatchedMaterialFv */
|
||||
void J3DPatchedMaterial::change() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DF340-802DF360 .text initialize__17J3DLockedMaterialFv */
|
||||
void J3DLockedMaterial::initialize() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DF360-802DF364 .text makeDisplayList__17J3DLockedMaterialFv */
|
||||
void J3DLockedMaterial::makeDisplayList() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DF364-802DF368 .text makeSharedDisplayList__17J3DLockedMaterialFv */
|
||||
void J3DLockedMaterial::makeSharedDisplayList() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DF368-802DF3AC .text load__17J3DLockedMaterialFv */
|
||||
void J3DLockedMaterial::load() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DF3AC-802DF3EC .text loadSharedDL__17J3DLockedMaterialFv */
|
||||
void J3DLockedMaterial::loadSharedDL() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DF3EC-802DF3F0 .text patch__17J3DLockedMaterialFv */
|
||||
void J3DLockedMaterial::patch() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DF3F0-802DF3F4 .text diff__17J3DLockedMaterialFUl */
|
||||
void J3DLockedMaterial::diff(unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DF3F4-802DF3F8 .text calc__17J3DLockedMaterialFPA4_Cf */
|
||||
void J3DLockedMaterial::calc(const float(*)[4]) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DF3F8-802DF3FC .text reset__17J3DLockedMaterialFv */
|
||||
void J3DLockedMaterial::reset() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DF3FC-802DF400 .text change__17J3DLockedMaterialFv */
|
||||
void J3DLockedMaterial::change() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DF400-802DF45C .text __dt__21J3DColorBlockLightOffFv */
|
||||
J3DColorBlockLightOff::~J3DColorBlockLightOff() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DF45C-802DF4A4 .text __dt__13J3DColorBlockFv */
|
||||
J3DColorBlock::~J3DColorBlock() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DF4A4-802DF500 .text __dt__21J3DTexGenBlockPatchedFv */
|
||||
J3DTexGenBlockPatched::~J3DTexGenBlockPatched() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DF500-802DF548 .text __dt__14J3DTexGenBlockFv */
|
||||
J3DTexGenBlock::~J3DTexGenBlock() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DF548-802DF590 .text __dt__11J3DTevBlockFv */
|
||||
J3DTevBlock::~J3DTevBlock() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DF590-802DF5D8 .text __dt__11J3DIndBlockFv */
|
||||
J3DIndBlock::~J3DIndBlock() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DF5D8-802DF620 .text __dt__10J3DPEBlockFv */
|
||||
J3DPEBlock::~J3DPEBlock() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DF620-802DF628 .text countDLSize__14J3DTexGenBlockFv */
|
||||
void J3DTexGenBlock::countDLSize() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DF628-802DF630 .text countDLSize__13J3DColorBlockFv */
|
||||
void J3DColorBlock::countDLSize() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DF630-802DF638 .text countDLSize__11J3DTevBlockFv */
|
||||
void J3DTevBlock::countDLSize() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DF638-802DF640 .text countDLSize__11J3DIndBlockFv */
|
||||
void J3DIndBlock::countDLSize() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DF640-802DF648 .text countDLSize__10J3DPEBlockFv */
|
||||
void J3DPEBlock::countDLSize() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DF648-802DF64C .text load__13J3DColorBlockFv */
|
||||
void J3DColorBlock::load() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DF64C-802DF654 .text getCullMode__13J3DColorBlockCFv */
|
||||
void J3DColorBlock::getCullMode() const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DF654-802DF658 .text load__11J3DTevBlockFv */
|
||||
void J3DTevBlock::load() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DF658-802DF660 .text getNBTScale__14J3DTexGenBlockFv */
|
||||
void J3DTexGenBlock::getNBTScale() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DF660-802DF664 .text patch__13J3DColorBlockFv */
|
||||
void J3DColorBlock::patch() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DF664-802DF668 .text diff__13J3DColorBlockFUl */
|
||||
void J3DColorBlock::diff(unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DF668-802DF66C .text diff__10J3DPEBlockFUl */
|
||||
void J3DPEBlock::diff(unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DF66C-802DF670 .text reset__10J3DPEBlockFP10J3DPEBlock */
|
||||
void J3DPEBlock::reset(J3DPEBlock*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DF670-802DF674 .text reset__11J3DIndBlockFP11J3DIndBlock */
|
||||
void J3DIndBlock::reset(J3DIndBlock*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DF674-802DF678 .text reset__11J3DTevBlockFP11J3DTevBlock */
|
||||
void J3DTevBlock::reset(J3DTevBlock*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DF678-802DF67C .text reset__14J3DTexGenBlockFP14J3DTexGenBlock */
|
||||
void J3DTexGenBlock::reset(J3DTexGenBlock*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DF67C-802DF680 .text reset__13J3DColorBlockFP13J3DColorBlock */
|
||||
void J3DColorBlock::reset(J3DColorBlock*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DF680-802DF684 .text diffFog__10J3DPEBlockFv */
|
||||
void J3DPEBlock::diffFog() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DF684-802DF688 .text diffBlend__10J3DPEBlockFv */
|
||||
void J3DPEBlock::diffBlend() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DF688-802DF68C .text setFog__10J3DPEBlockFP6J3DFog */
|
||||
void J3DPEBlock::setFog(J3DFog*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DF68C-802DF690 .text setAlphaComp__10J3DPEBlockFPC12J3DAlphaComp */
|
||||
void J3DPEBlock::setAlphaComp(const J3DAlphaComp*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DF690-802DF694 .text setBlend__10J3DPEBlockFPC8J3DBlend */
|
||||
void J3DPEBlock::setBlend(const J3DBlend*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DF694-802DF698 .text setZMode__10J3DPEBlockFPC8J3DZMode */
|
||||
void J3DPEBlock::setZMode(const J3DZMode*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DF698-802DF69C .text setZCompLoc__10J3DPEBlockFPCUc */
|
||||
void J3DPEBlock::setZCompLoc(const unsigned char*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DF69C-802DF6A0 .text setDither__10J3DPEBlockFUc */
|
||||
void J3DPEBlock::setDither(unsigned char) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DF6A0-802DF6A4 .text setDither__10J3DPEBlockFPCUc */
|
||||
void J3DPEBlock::setDither(const unsigned char*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DF6A4-802DF6AC .text getDither__10J3DPEBlockCFv */
|
||||
void J3DPEBlock::getDither() const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DF6AC-802DF6B4 .text getFogOffset__10J3DPEBlockCFv */
|
||||
void J3DPEBlock::getFogOffset() const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DF6B4-802DF6B8 .text setFogOffset__10J3DPEBlockFUl */
|
||||
void J3DPEBlock::setFogOffset(unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DF6B8-802DF6BC .text diff__15J3DIndBlockNullFUl */
|
||||
void J3DIndBlockNull::diff(unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DF6BC-802DF6C0 .text load__15J3DIndBlockNullFv */
|
||||
void J3DIndBlockNull::load() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DF6C0-802DF6C4 .text reset__15J3DIndBlockNullFP11J3DIndBlock */
|
||||
void J3DIndBlockNull::reset(J3DIndBlock*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DF6C4-802DF6D0 .text getType__15J3DIndBlockNullFv */
|
||||
void J3DIndBlockNull::getType() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DF6D0-802DF72C .text __dt__15J3DIndBlockNullFv */
|
||||
J3DIndBlockNull::~J3DIndBlockNull() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DF72C-802DF730 .text setIndTexOrder__11J3DIndBlockFUlPC14J3DIndTexOrder */
|
||||
void J3DIndBlock::setIndTexOrder(unsigned long, const J3DIndTexOrder*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DF730-802DF734 .text setIndTexOrder__11J3DIndBlockFUl14J3DIndTexOrder */
|
||||
void J3DIndBlock::setIndTexOrder(unsigned long, J3DIndTexOrder) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DF734-802DF738 .text setIndTexMtx__11J3DIndBlockFUlPC12J3DIndTexMtx */
|
||||
void J3DIndBlock::setIndTexMtx(unsigned long, const J3DIndTexMtx*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DF738-802DF73C .text setIndTexCoordScale__11J3DIndBlockFUlPC19J3DIndTexCoordScale */
|
||||
void J3DIndBlock::setIndTexCoordScale(unsigned long, const J3DIndTexCoordScale*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DF73C-802DF740 .text setTexGenNum__14J3DTexGenBlockFPCUl */
|
||||
void J3DTexGenBlock::setTexGenNum(const unsigned long*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DF740-802DF744 .text setNBTScale__14J3DTexGenBlockF11J3DNBTScale */
|
||||
void J3DTexGenBlock::setNBTScale(J3DNBTScale) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DF744-802DF748 .text setNBTScale__14J3DTexGenBlockFPC11J3DNBTScale */
|
||||
void J3DTexGenBlock::setNBTScale(const J3DNBTScale*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DF748-802DF750 .text getTexMtxOffset__14J3DTexGenBlockCFv */
|
||||
void J3DTexGenBlock::getTexMtxOffset() const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DF750-802DF754 .text setTexMtxOffset__14J3DTexGenBlockFUl */
|
||||
void J3DTexGenBlock::setTexMtxOffset(unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DF754-802DF758 .text patchMatColor__13J3DColorBlockFv */
|
||||
void J3DColorBlock::patchMatColor() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DF758-802DF75C .text diffMatColor__13J3DColorBlockFv */
|
||||
void J3DColorBlock::diffMatColor() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DF75C-802DF760 .text diffLight__13J3DColorBlockFv */
|
||||
void J3DColorBlock::diffLight() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DF760-802DF764 .text setMatColor__13J3DColorBlockFUlPC10J3DGXColor */
|
||||
void J3DColorBlock::setMatColor(unsigned long, const J3DGXColor*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DF764-802DF768 .text setAmbColor__13J3DColorBlockFUlPC10J3DGXColor */
|
||||
void J3DColorBlock::setAmbColor(unsigned long, const J3DGXColor*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DF768-802DF76C .text setColorChanNum__13J3DColorBlockFPCUc */
|
||||
void J3DColorBlock::setColorChanNum(const unsigned char*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DF76C-802DF770 .text setColorChan__13J3DColorBlockFUlPC12J3DColorChan */
|
||||
void J3DColorBlock::setColorChan(unsigned long, const J3DColorChan*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DF770-802DF778 .text getLight__13J3DColorBlockFUl */
|
||||
void J3DColorBlock::getLight(unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DF778-802DF77C .text setCullMode__13J3DColorBlockFPCUc */
|
||||
void J3DColorBlock::setCullMode(const unsigned char*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DF77C-802DF784 .text getMatColorOffset__13J3DColorBlockCFv */
|
||||
void J3DColorBlock::getMatColorOffset() const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DF784-802DF78C .text getColorChanOffset__13J3DColorBlockCFv */
|
||||
void J3DColorBlock::getColorChanOffset() const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DF78C-802DF790 .text setMatColorOffset__13J3DColorBlockFUl */
|
||||
void J3DColorBlock::setMatColorOffset(unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DF790-802DF794 .text setColorChanOffset__13J3DColorBlockFUl */
|
||||
void J3DColorBlock::setColorChanOffset(unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
@@ -0,0 +1,182 @@
|
||||
//
|
||||
// Generated by dtk
|
||||
// Translation Unit: J3DPacket.cpp
|
||||
//
|
||||
|
||||
#include "JSystem/J3DGraphBase/J3DPacket.h"
|
||||
#include "dolphin/types.h"
|
||||
|
||||
/* 802DAE1C-802DAE9C .text newDisplayList__17J3DDisplayListObjFUl */
|
||||
void J3DDisplayListObj::newDisplayList(unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DAE9C-802DAF00 .text newSingleDisplayList__17J3DDisplayListObjFUl */
|
||||
void J3DDisplayListObj::newSingleDisplayList(unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DAF00-802DAF78 .text single_To_Double__17J3DDisplayListObjFv */
|
||||
void J3DDisplayListObj::single_To_Double() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DAF78-802DAF98 .text setSingleDisplayList__17J3DDisplayListObjFPvUl */
|
||||
void J3DDisplayListObj::setSingleDisplayList(void*, unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DAF98-802DAFAC .text swapBuffer__17J3DDisplayListObjFv */
|
||||
void J3DDisplayListObj::swapBuffer() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DAFAC-802DAFD8 .text callDL__17J3DDisplayListObjCFv */
|
||||
void J3DDisplayListObj::callDL() const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DAFD8-802DB02C .text beginDL__17J3DDisplayListObjFv */
|
||||
void J3DDisplayListObj::beginDL() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DB02C-802DB088 .text endDL__17J3DDisplayListObjFv */
|
||||
void J3DDisplayListObj::endDL() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DB088-802DB0A8 .text beginPatch__17J3DDisplayListObjFv */
|
||||
void J3DDisplayListObj::beginPatch() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DB0A8-802DB0E4 .text endPatch__17J3DDisplayListObjFv */
|
||||
void J3DDisplayListObj::endPatch() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DB0E4-802DB0EC .text isSame__9J3DPacketCFP12J3DMatPacket */
|
||||
void J3DPacket::isSame(J3DMatPacket*) const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DB0EC-802DB0F4 .text entry__9J3DPacketFP13J3DDrawBuffer */
|
||||
void J3DPacket::entry(J3DDrawBuffer*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DB0F4-802DB114 .text addChildPacket__9J3DPacketFP9J3DPacket */
|
||||
void J3DPacket::addChildPacket(J3DPacket*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DB114-802DB1A0 .text draw__17J3DCallBackPacketFv */
|
||||
void J3DCallBackPacket::draw() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DB1A0-802DB1D4 .text __ct__13J3DDrawPacketFv */
|
||||
J3DDrawPacket::J3DDrawPacket() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DB1D4-802DB230 .text __dt__13J3DDrawPacketFv */
|
||||
J3DDrawPacket::~J3DDrawPacket() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DB230-802DB2BC .text newDisplayList__13J3DDrawPacketFUl */
|
||||
void J3DDrawPacket::newDisplayList(unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DB2BC-802DB348 .text newSingleDisplayList__13J3DDrawPacketFUl */
|
||||
void J3DDrawPacket::newSingleDisplayList(unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DB348-802DB36C .text draw__13J3DDrawPacketFv */
|
||||
void J3DDrawPacket::draw() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DB36C-802DB3C4 .text __ct__12J3DMatPacketFv */
|
||||
J3DMatPacket::J3DMatPacket() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DB3C4-802DB424 .text __dt__12J3DMatPacketFv */
|
||||
J3DMatPacket::~J3DMatPacket() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DB424-802DB444 .text addShapePacket__12J3DMatPacketFP14J3DShapePacket */
|
||||
void J3DMatPacket::addShapePacket(J3DShapePacket*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DB444-802DB46C .text beginDiff__12J3DMatPacketFv */
|
||||
void J3DMatPacket::beginDiff() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DB46C-802DB494 .text endDiff__12J3DMatPacketFv */
|
||||
void J3DMatPacket::endDiff() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DB494-802DB524 .text draw__12J3DMatPacketFv */
|
||||
void J3DMatPacket::draw() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DB524-802DB584 .text __ct__14J3DShapePacketFv */
|
||||
J3DShapePacket::J3DShapePacket() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DB584-802DB5E4 .text __dt__14J3DShapePacketFv */
|
||||
J3DShapePacket::~J3DShapePacket() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DB5E4-802DB7CC .text calcDifferedBufferSize__14J3DShapePacketFUl */
|
||||
void J3DShapePacket::calcDifferedBufferSize(unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DB7CC-802DB818 .text newDifferedDisplayList__14J3DShapePacketFUl */
|
||||
void J3DShapePacket::newDifferedDisplayList(unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DB818-802DB890 .text prepareDraw__14J3DShapePacketCFv */
|
||||
void J3DShapePacket::prepareDraw() const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DB890-802DB8F8 .text draw__14J3DShapePacketFv */
|
||||
void J3DShapePacket::draw() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DB8F8-802DB950 .text drawFast__14J3DShapePacketFv */
|
||||
void J3DShapePacket::drawFast() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DB950-802DB978 .text isSame__12J3DMatPacketCFP12J3DMatPacket */
|
||||
void J3DMatPacket::isSame(J3DMatPacket*) const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DB978-802DB97C .text draw__9J3DPacketFv */
|
||||
void J3DPacket::draw() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DB97C-802DB9D8 .text __dt__17J3DCallBackPacketFv */
|
||||
J3DCallBackPacket::~J3DCallBackPacket() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
@@ -0,0 +1,82 @@
|
||||
//
|
||||
// Generated by dtk
|
||||
// Translation Unit: J3DShape.cpp
|
||||
//
|
||||
|
||||
#include "JSystem/J3DGraphBase/J3DShape.h"
|
||||
#include "dolphin/types.h"
|
||||
|
||||
/* 802DD18C-802DD1FC .text initialize__8J3DShapeFv */
|
||||
void J3DShape::initialize() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DD1FC-802DD27C .text calcNBTScale__8J3DShapeFRC3VecPA3_A3_fPA3_A3_f */
|
||||
void J3DShape::calcNBTScale(const Vec&, float(*)[3][3], float(*)[3][3]) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DD27C-802DD2F0 .text countBumpMtxNum__8J3DShapeCFv */
|
||||
void J3DShape::countBumpMtxNum() const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DD2F0-802DD308 .text J3DLoadCPCmd__FUcUl */
|
||||
void J3DLoadCPCmd(unsigned char, unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DD308-802DD344 .text J3DLoadArrayBasePtr__F7_GXAttrPv */
|
||||
void J3DLoadArrayBasePtr(_GXAttr, void*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DD344-802DD3B4 .text loadVtxArray__8J3DShapeCFv */
|
||||
void J3DShape::loadVtxArray() const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DD3B4-802DD3F0 .text isSameVcdVatCmd__8J3DShapeFP8J3DShape */
|
||||
void J3DShape::isSameVcdVatCmd(J3DShape*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DD3F0-802DD6B8 .text makeVtxArrayCmd__8J3DShapeFv */
|
||||
void J3DShape::makeVtxArrayCmd() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DD6B8-802DD72C .text makeVcdVatCmd__8J3DShapeFv */
|
||||
void J3DShape::makeVcdVatCmd() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DD72C-802DD7CC .text loadPreDrawSetting__8J3DShapeCFv */
|
||||
void J3DShape::loadPreDrawSetting() const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DD7CC-802DD874 .text setArrayAndBindPipeline__8J3DShapeCFv */
|
||||
void J3DShape::setArrayAndBindPipeline() const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DD874-802DD9FC .text drawFast__8J3DShapeCFv */
|
||||
void J3DShape::drawFast() const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DD9FC-802DDA44 .text draw__8J3DShapeCFv */
|
||||
void J3DShape::draw() const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DDA44-802DDAC8 .text simpleDraw__8J3DShapeCFv */
|
||||
void J3DShape::simpleDraw() const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DDAC8-802DDBC4 .text simpleDrawCache__8J3DShapeCFv */
|
||||
void J3DShape::simpleDrawCache() const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
@@ -0,0 +1,297 @@
|
||||
//
|
||||
// Generated by dtk
|
||||
// Translation Unit: J3DShapeMtx.cpp
|
||||
//
|
||||
|
||||
#include "JSystem/J3DGraphBase/J3DShapeMtx.h"
|
||||
#include "dolphin/types.h"
|
||||
|
||||
/* 802DB9D8-802DBA1C .text loadMtxIndx_PNGP__11J3DShapeMtxCFiUs */
|
||||
void J3DShapeMtx::loadMtxIndx_PNGP(int, unsigned short) const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DBA1C-802DBA7C .text loadMtxIndx_PCPU__11J3DShapeMtxCFiUs */
|
||||
void J3DShapeMtx::loadMtxIndx_PCPU(int, unsigned short) const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DBA7C-802DBAC8 .text loadMtxIndx_NCPU__11J3DShapeMtxCFiUs */
|
||||
void J3DShapeMtx::loadMtxIndx_NCPU(int, unsigned short) const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DBAC8-802DBB20 .text loadMtxIndx_PNCPU__11J3DShapeMtxCFiUs */
|
||||
void J3DShapeMtx::loadMtxIndx_PNCPU(int, unsigned short) const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DBB20-802DBB94 .text loadMtxImm_PNGP__14J3DShapeMtxImmCFiUs */
|
||||
void J3DShapeMtxImm::loadMtxImm_PNGP(int, unsigned short) const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DBB94-802DBC00 .text loadMtxImm_PCPU__14J3DShapeMtxImmCFiUs */
|
||||
void J3DShapeMtxImm::loadMtxImm_PCPU(int, unsigned short) const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DBC00-802DBC60 .text loadMtxImm_NCPU__14J3DShapeMtxImmCFiUs */
|
||||
void J3DShapeMtxImm::loadMtxImm_NCPU(int, unsigned short) const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DBC60-802DBCB8 .text loadMtxImm_PNCPU__14J3DShapeMtxImmCFiUs */
|
||||
void J3DShapeMtxImm::loadMtxImm_PNCPU(int, unsigned short) const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DBCB8-802DBD44 .text loadMtxConcatView_PNGP__21J3DShapeMtxConcatViewCFiUs */
|
||||
void J3DShapeMtxConcatView::loadMtxConcatView_PNGP(int, unsigned short) const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DBD44-802DBDD4 .text loadMtxConcatView_PCPU__21J3DShapeMtxConcatViewCFiUs */
|
||||
void J3DShapeMtxConcatView::loadMtxConcatView_PCPU(int, unsigned short) const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DBDD4-802DBE4C .text loadMtxConcatView_NCPU__21J3DShapeMtxConcatViewCFiUs */
|
||||
void J3DShapeMtxConcatView::loadMtxConcatView_NCPU(int, unsigned short) const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DBE4C-802DBEA4 .text loadMtxConcatView_PNCPU__21J3DShapeMtxConcatViewCFiUs */
|
||||
void J3DShapeMtxConcatView::loadMtxConcatView_PNCPU(int, unsigned short) const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DBEA4-802DBF00 .text load__11J3DShapeMtxCFv */
|
||||
void J3DShapeMtx::load() const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DBF00-802DBF60 .text calcNBTScale__11J3DShapeMtxFRC3VecPA3_A3_fPA3_A3_f */
|
||||
void J3DShapeMtx::calcNBTScale(const Vec&, float(*)[3][3], float(*)[3][3]) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DBF60-802DBFBC .text load__14J3DShapeMtxImmCFv */
|
||||
void J3DShapeMtxImm::load() const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DBFBC-802DC08C .text load__21J3DShapeMtxConcatViewCFv */
|
||||
void J3DShapeMtxConcatView::load() const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DC08C-802DC184 .text loadNrmMtx__14J3DShapeMtxImmCFiUs */
|
||||
void J3DShapeMtxImm::loadNrmMtx(int, unsigned short) const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DC184-802DC254 .text loadNrmMtx__21J3DShapeMtxConcatViewCFiUsPA4_f */
|
||||
void J3DShapeMtxConcatView::loadNrmMtx(int, unsigned short, float(*)[4]) const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DC254-802DC2F4 .text load__16J3DShapeMtxMultiCFv */
|
||||
void J3DShapeMtxMulti::load() const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DC2F4-802DC388 .text calcNBTScale__16J3DShapeMtxMultiFRC3VecPA3_A3_fPA3_A3_f */
|
||||
void J3DShapeMtxMulti::calcNBTScale(const Vec&, float(*)[3][3], float(*)[3][3]) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DC388-802DC428 .text load__19J3DShapeMtxMultiImmCFv */
|
||||
void J3DShapeMtxMultiImm::load() const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DC428-802DC524 .text load__26J3DShapeMtxMultiConcatViewCFv */
|
||||
void J3DShapeMtxMultiConcatView::load() const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DC524-802DC620 .text loadNrmMtx__19J3DShapeMtxMultiImmCFiUs */
|
||||
void J3DShapeMtxMultiImm::loadNrmMtx(int, unsigned short) const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DC620-802DC6F4 .text loadNrmMtx__26J3DShapeMtxMultiConcatViewCFiUsPA4_f */
|
||||
void J3DShapeMtxMultiConcatView::loadNrmMtx(int, unsigned short, float(*)[4]) const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DC6F4-802DC7B8 .text load__20J3DShapeMtxBBoardImmCFv */
|
||||
void J3DShapeMtxBBoardImm::load() const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DC7B8-802DC8C0 .text load__27J3DShapeMtxBBoardConcatViewCFv */
|
||||
void J3DShapeMtxBBoardConcatView::load() const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DC8C0-802DC9B8 .text load__21J3DShapeMtxYBBoardImmCFv */
|
||||
void J3DShapeMtxYBBoardImm::load() const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DC9B8-802DCAEC .text load__28J3DShapeMtxYBBoardConcatViewCFv */
|
||||
void J3DShapeMtxYBBoardConcatView::load() const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DCAEC-802DCB04 .text __ct__12J3DShapeDrawFPCUcUl */
|
||||
J3DShapeDraw::J3DShapeDraw(const unsigned char*, unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DCB04-802DCB30 .text draw__12J3DShapeDrawCFv */
|
||||
void J3DShapeDraw::draw() const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DCB30-802DCB78 .text __dt__12J3DShapeDrawFv */
|
||||
J3DShapeDraw::~J3DShapeDraw() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DCB78-802DCBF4 .text __dt__28J3DShapeMtxYBBoardConcatViewFv */
|
||||
J3DShapeMtxYBBoardConcatView::~J3DShapeMtxYBBoardConcatView() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DCBF4-802DCC00 .text getType__21J3DShapeMtxYBBoardImmCFv */
|
||||
void J3DShapeMtxYBBoardImm::getType() const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DCC00-802DCC08 .text getUseMtxIndex__11J3DShapeMtxCFUs */
|
||||
void J3DShapeMtx::getUseMtxIndex(unsigned short) const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DCC08-802DCC74 .text __dt__21J3DShapeMtxYBBoardImmFv */
|
||||
J3DShapeMtxYBBoardImm::~J3DShapeMtxYBBoardImm() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DCC74-802DCCF0 .text __dt__27J3DShapeMtxBBoardConcatViewFv */
|
||||
J3DShapeMtxBBoardConcatView::~J3DShapeMtxBBoardConcatView() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DCCF0-802DCCFC .text getType__20J3DShapeMtxBBoardImmCFv */
|
||||
void J3DShapeMtxBBoardImm::getType() const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DCCFC-802DCD68 .text __dt__20J3DShapeMtxBBoardImmFv */
|
||||
J3DShapeMtxBBoardImm::~J3DShapeMtxBBoardImm() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DCD68-802DCDE4 .text __dt__26J3DShapeMtxMultiConcatViewFv */
|
||||
J3DShapeMtxMultiConcatView::~J3DShapeMtxMultiConcatView() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DCDE4-802DCDF0 .text getType__26J3DShapeMtxMultiConcatViewCFv */
|
||||
void J3DShapeMtxMultiConcatView::getType() const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DCDF0-802DCDF8 .text getUseMtxNum__26J3DShapeMtxMultiConcatViewCFv */
|
||||
void J3DShapeMtxMultiConcatView::getUseMtxNum() const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DCDF8-802DCE08 .text getUseMtxIndex__26J3DShapeMtxMultiConcatViewCFUs */
|
||||
void J3DShapeMtxMultiConcatView::getUseMtxIndex(unsigned short) const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DCE08-802DCE0C .text loadNrmMtx__26J3DShapeMtxMultiConcatViewCFiUs */
|
||||
void J3DShapeMtxMultiConcatView::loadNrmMtx(int, unsigned short) const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DCE0C-802DCE78 .text __dt__19J3DShapeMtxMultiImmFv */
|
||||
J3DShapeMtxMultiImm::~J3DShapeMtxMultiImm() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DCE78-802DCE84 .text getType__19J3DShapeMtxMultiImmCFv */
|
||||
void J3DShapeMtxMultiImm::getType() const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DCE84-802DCE8C .text getUseMtxNum__19J3DShapeMtxMultiImmCFv */
|
||||
void J3DShapeMtxMultiImm::getUseMtxNum() const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DCE8C-802DCE9C .text getUseMtxIndex__19J3DShapeMtxMultiImmCFUs */
|
||||
void J3DShapeMtxMultiImm::getUseMtxIndex(unsigned short) const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DCE9C-802DCEF8 .text __dt__16J3DShapeMtxMultiFv */
|
||||
J3DShapeMtxMulti::~J3DShapeMtxMulti() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DCEF8-802DCF04 .text getType__16J3DShapeMtxMultiCFv */
|
||||
void J3DShapeMtxMulti::getType() const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DCF04-802DCF0C .text getUseMtxNum__16J3DShapeMtxMultiCFv */
|
||||
void J3DShapeMtxMulti::getUseMtxNum() const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DCF0C-802DCF1C .text getUseMtxIndex__16J3DShapeMtxMultiCFUs */
|
||||
void J3DShapeMtxMulti::getUseMtxIndex(unsigned short) const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DCF1C-802DCF88 .text __dt__21J3DShapeMtxConcatViewFv */
|
||||
J3DShapeMtxConcatView::~J3DShapeMtxConcatView() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DCF88-802DCF94 .text getType__21J3DShapeMtxConcatViewCFv */
|
||||
void J3DShapeMtxConcatView::getType() const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DCF94-802DCF98 .text loadNrmMtx__21J3DShapeMtxConcatViewCFiUs */
|
||||
void J3DShapeMtxConcatView::loadNrmMtx(int, unsigned short) const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DCF98-802DCFF4 .text __dt__14J3DShapeMtxImmFv */
|
||||
J3DShapeMtxImm::~J3DShapeMtxImm() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DCFF4-802DD000 .text getType__14J3DShapeMtxImmCFv */
|
||||
void J3DShapeMtxImm::getType() const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DD000-802DD048 .text __dt__11J3DShapeMtxFv */
|
||||
J3DShapeMtx::~J3DShapeMtx() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DD048-802DD054 .text getType__11J3DShapeMtxCFv */
|
||||
void J3DShapeMtx::getType() const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
@@ -0,0 +1,87 @@
|
||||
//
|
||||
// Generated by dtk
|
||||
// Translation Unit: J3DSys.cpp
|
||||
//
|
||||
|
||||
#include "JSystem/J3DGraphBase/J3DSys.h"
|
||||
#include "dolphin/types.h"
|
||||
|
||||
/* 802D8AA8-802D8B8C .text __ct__6J3DSysFv */
|
||||
J3DSys::J3DSys() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802D8B8C-802D8BB0 .text loadPosMtxIndx__6J3DSysCFiUs */
|
||||
void J3DSys::loadPosMtxIndx(int, unsigned short) const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802D8BB0-802D8BD8 .text loadNrmMtxIndx__6J3DSysCFiUs */
|
||||
void J3DSys::loadNrmMtxIndx(int, unsigned short) const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802D8BD8-802D8C58 .text J3DFifoLoadPosMtxImm__FPA4_fUl */
|
||||
void J3DFifoLoadPosMtxImm(float(*)[4], unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802D8C58-802D8CC4 .text J3DFifoLoadNrmMtxImm__FPA4_fUl */
|
||||
void J3DFifoLoadNrmMtxImm(float(*)[4], unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802D8CC4-802D8D30 .text J3DFifoLoadNrmMtxImm3x3__FPA3_fUl */
|
||||
void J3DFifoLoadNrmMtxImm3x3(float(*)[3], unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802D8D30-802D8EE0 .text setTexCacheRegion__6J3DSysF15_GXTexCacheSize */
|
||||
void J3DSys::setTexCacheRegion(_GXTexCacheSize) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802D8EE0-802D956C .text drawInit__6J3DSysFv */
|
||||
void J3DSys::drawInit() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802D956C-802D95C8 .text reinitGX__6J3DSysFv */
|
||||
void J3DSys::reinitGX() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802D95C8-802D9614 .text reinitGenMode__6J3DSysFv */
|
||||
void J3DSys::reinitGenMode() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802D9614-802D96C0 .text reinitLighting__6J3DSysFv */
|
||||
void J3DSys::reinitLighting() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802D96C0-802D97C4 .text reinitTransform__6J3DSysFv */
|
||||
void J3DSys::reinitTransform() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802D97C4-802D9868 .text reinitTexture__6J3DSysFv */
|
||||
void J3DSys::reinitTexture() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802D9868-802D9B70 .text reinitTevStages__6J3DSysFv */
|
||||
void J3DSys::reinitTevStages() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802D9B70-802D9C68 .text reinitIndStages__6J3DSysFv */
|
||||
void J3DSys::reinitIndStages() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802D9C68-802D9CFC .text reinitPixelProc__6J3DSysFv */
|
||||
void J3DSys::reinitPixelProc() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
@@ -0,0 +1,67 @@
|
||||
//
|
||||
// Generated by dtk
|
||||
// Translation Unit: J3DTevs.cpp
|
||||
//
|
||||
|
||||
#include "JSystem/J3DGraphBase/J3DTevs.h"
|
||||
#include "dolphin/types.h"
|
||||
|
||||
/* 802EBC94-802EBD48 .text load__11J3DLightObjCFUl */
|
||||
void J3DLightObj::load(unsigned long) const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802EBD48-802EBF40 .text loadTexCoordGens__FUlP11J3DTexCoord */
|
||||
void loadTexCoordGens(unsigned long, J3DTexCoord*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802EBF40-802EC358 .text calc__9J3DTexMtxFv */
|
||||
void J3DTexMtx::calc() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802EC358-802EC37C .text isTexNoReg__FPv */
|
||||
void isTexNoReg(void*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802EC37C-802EC388 .text getTexNoReg__FPv */
|
||||
void getTexNoReg(void*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802EC388-802EC530 .text loadTexNo__FUlRCUs */
|
||||
void loadTexNo(unsigned long, const unsigned short&) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802EC530-802EC554 .text patchTexNo_PtrToIdx__FUlRCUs */
|
||||
void patchTexNo_PtrToIdx(unsigned long, const unsigned short&) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802EC554-802EC588 .text loadNBTScale__FR11J3DNBTScale */
|
||||
void loadNBTScale(J3DNBTScale&) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802EC588-802EC630 .text makeTexCoordTable__Fv */
|
||||
void makeTexCoordTable() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802EC630-802EC69C .text makeAlphaCmpTable__Fv */
|
||||
void makeAlphaCmpTable() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802EC69C-802EC708 .text makeZModeTable__Fv */
|
||||
void makeZModeTable() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802EC708-802EC74C .text makeTevSwapTable__Fv */
|
||||
void makeTevSwapTable() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
@@ -0,0 +1,97 @@
|
||||
//
|
||||
// Generated by dtk
|
||||
// Translation Unit: J3DTransform.cpp
|
||||
//
|
||||
|
||||
#include "JSystem/J3DGraphBase/J3DTransform.h"
|
||||
#include "dolphin/types.h"
|
||||
|
||||
/* 802DA0A8-802DA0B0 .text __MTGQR7__FUl */
|
||||
void __MTGQR7(unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DA0B0-802DA0E8 .text J3DGQRSetup7__FUlUlUlUl */
|
||||
void J3DGQRSetup7(unsigned long, unsigned long, unsigned long, unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DA0E8-802DA120 .text J3DCalcZValue__FPA4_f3Vec */
|
||||
void J3DCalcZValue(float(*)[4], Vec) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DA120-802DA2E0 .text J3DCalcBBoardMtx__FPA4_f */
|
||||
void J3DCalcBBoardMtx(float(*)[4]) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DA2E0-802DA584 .text J3DCalcYBBoardMtx__FPA4_f */
|
||||
void J3DCalcYBBoardMtx(float(*)[4]) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DA584-802DA64C .text J3DPSCalcInverseTranspose__FPA4_fPA3_f */
|
||||
void J3DPSCalcInverseTranspose(float(*)[4], float(*)[3]) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DA64C-802DA724 .text J3DGetTranslateRotateMtx__FRC16J3DTransformInfoPA4_f */
|
||||
void J3DGetTranslateRotateMtx(const J3DTransformInfo&, float(*)[4]) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DA724-802DA7E4 .text J3DGetTranslateRotateMtx__FsssfffPA4_f */
|
||||
void J3DGetTranslateRotateMtx(short, short, short, float, float, float, float(*)[4]) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DA7E4-802DA8A8 .text J3DGetTextureMtx__FRC17J3DTextureSRTInfo3VecPA4_f */
|
||||
void J3DGetTextureMtx(const J3DTextureSRTInfo&, Vec, float(*)[4]) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DA8A8-802DA96C .text J3DGetTextureMtxOld__FRC17J3DTextureSRTInfo3VecPA4_f */
|
||||
void J3DGetTextureMtxOld(const J3DTextureSRTInfo&, Vec, float(*)[4]) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DA96C-802DAA38 .text J3DGetTextureMtxMaya__FRC17J3DTextureSRTInfoPA4_f */
|
||||
void J3DGetTextureMtxMaya(const J3DTextureSRTInfo&, float(*)[4]) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DAA38-802DAB04 .text J3DGetTextureMtxMayaOld__FRC17J3DTextureSRTInfoPA4_f */
|
||||
void J3DGetTextureMtxMayaOld(const J3DTextureSRTInfo&, float(*)[4]) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DAB04-802DAB68 .text J3DScaleNrmMtx__FPA4_fRC3Vec */
|
||||
void J3DScaleNrmMtx(float(*)[4], const Vec&) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DAB68-802DABBC .text J3DScaleNrmMtx33__FPA3_fRC3Vec */
|
||||
void J3DScaleNrmMtx33(float(*)[3], const Vec&) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DABBC-802DACE0 .text J3DMtxProjConcat__FPA4_fPA4_fPA4_f */
|
||||
void J3DMtxProjConcat(float(*)[4], float(*)[4], float(*)[4]) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DACE0-802DAD0C .text J3DPSMtx33Copy__FPA3_fPA3_f */
|
||||
void J3DPSMtx33Copy(float(*)[3], float(*)[3]) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DAD0C-802DAD40 .text J3DPSMtx33CopyFrom34__FPA4_fPA3_f */
|
||||
void J3DPSMtx33CopyFrom34(float(*)[4], float(*)[3]) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DAD40-802DAE1C .text J3DPSMtxArrayConcat__FPA4_fPA4_fPA4_fUl */
|
||||
void J3DPSMtxArrayConcat(float(*)[4], float(*)[4], float(*)[4], unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
@@ -0,0 +1,57 @@
|
||||
//
|
||||
// Generated by dtk
|
||||
// Translation Unit: J3DVertex.cpp
|
||||
//
|
||||
|
||||
#include "JSystem/J3DGraphBase/J3DVertex.h"
|
||||
#include "dolphin/types.h"
|
||||
|
||||
/* 802D9D24-802D9D9C .text __ct__13J3DVertexDataFv */
|
||||
J3DVertexData::J3DVertexData() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802D9D9C-802D9DD8 .text __dt__13J3DVertexDataFv */
|
||||
J3DVertexData::~J3DVertexData() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802D9DD8-802D9E38 .text setVertexData__15J3DVertexBufferFP13J3DVertexData */
|
||||
void J3DVertexBuffer::setVertexData(J3DVertexData*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802D9E38-802D9E90 .text init__15J3DVertexBufferFv */
|
||||
void J3DVertexBuffer::init() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802D9E90-802D9ECC .text __dt__15J3DVertexBufferFv */
|
||||
J3DVertexBuffer::~J3DVertexBuffer() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802D9ECC-802D9EF0 .text setArray__15J3DVertexBufferCFv */
|
||||
void J3DVertexBuffer::setArray() const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802D9EF0-802D9FA4 .text allocTransformedVtxPosArray__15J3DVertexBufferFv */
|
||||
void J3DVertexBuffer::allocTransformedVtxPosArray() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802D9FA4-802DA058 .text allocTransformedVtxNrmArray__15J3DVertexBufferFv */
|
||||
void J3DVertexBuffer::allocTransformedVtxNrmArray() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DA058-802DA06C .text __ct__14J3DDrawMtxDataFv */
|
||||
J3DDrawMtxData::J3DDrawMtxData() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802DA06C-802DA0A8 .text __dt__14J3DDrawMtxDataFv */
|
||||
J3DDrawMtxData::~J3DDrawMtxData() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
@@ -0,0 +1,257 @@
|
||||
//
|
||||
// Generated by dtk
|
||||
// Translation Unit: J3DAnmLoader.cpp
|
||||
//
|
||||
|
||||
#include "JSystem/J3DGraphLoader/J3DAnmLoader.h"
|
||||
#include "dolphin/types.h"
|
||||
|
||||
/* 802FEDA0-802FF6C8 .text load__20J3DAnmLoaderDataBaseFPCv */
|
||||
void J3DAnmLoaderDataBase::load(const void*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802FF6C8-802FF9EC .text setResource__20J3DAnmLoaderDataBaseFP10J3DAnmBasePCv */
|
||||
void J3DAnmLoaderDataBase::setResource(J3DAnmBase*, const void*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802FF9EC-802FFA08 .text __ct__20J3DAnmFullLoader_v15Fv */
|
||||
J3DAnmFullLoader_v15::J3DAnmFullLoader_v15() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802FFA08-802FFA64 .text __dt__20J3DAnmFullLoader_v15Fv */
|
||||
J3DAnmFullLoader_v15::~J3DAnmFullLoader_v15() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802FFA64-802FFA80 .text __ct__19J3DAnmKeyLoader_v15Fv */
|
||||
J3DAnmKeyLoader_v15::J3DAnmKeyLoader_v15() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802FFA80-802FFADC .text __dt__19J3DAnmKeyLoader_v15Fv */
|
||||
J3DAnmKeyLoader_v15::~J3DAnmKeyLoader_v15() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802FFADC-802FFC28 .text load__20J3DAnmFullLoader_v15FPCv */
|
||||
void J3DAnmFullLoader_v15::load(const void*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802FFC28-802FFDD4 .text setResource__20J3DAnmFullLoader_v15FP10J3DAnmBasePCv */
|
||||
void J3DAnmFullLoader_v15::setResource(J3DAnmBase*, const void*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802FFDD4-802FFDFC .text readAnmTransform__20J3DAnmFullLoader_v15FPC23J3DAnmTransformFullData */
|
||||
void J3DAnmFullLoader_v15::readAnmTransform(const J3DAnmTransformFullData*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802FFDFC-802FFE90 .text setAnmTransform__20J3DAnmFullLoader_v15FP19J3DAnmTransformFullPC23J3DAnmTransformFullData */
|
||||
void J3DAnmFullLoader_v15::setAnmTransform(J3DAnmTransformFull*, const J3DAnmTransformFullData*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802FFE90-802FFEB8 .text readAnmColor__20J3DAnmFullLoader_v15FPC19J3DAnmColorFullData */
|
||||
void J3DAnmFullLoader_v15::readAnmColor(const J3DAnmColorFullData*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802FFEB8-802FFF84 .text setAnmColor__20J3DAnmFullLoader_v15FP15J3DAnmColorFullPC19J3DAnmColorFullData */
|
||||
void J3DAnmFullLoader_v15::setAnmColor(J3DAnmColorFull*, const J3DAnmColorFullData*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802FFF84-802FFFAC .text readAnmTexPattern__20J3DAnmFullLoader_v15FPC24J3DAnmTexPatternFullData */
|
||||
void J3DAnmFullLoader_v15::readAnmTexPattern(const J3DAnmTexPatternFullData*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802FFFAC-80300050 .text setAnmTexPattern__20J3DAnmFullLoader_v15FP16J3DAnmTexPatternPC24J3DAnmTexPatternFullData */
|
||||
void J3DAnmFullLoader_v15::setAnmTexPattern(J3DAnmTexPattern*, const J3DAnmTexPatternFullData*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80300050-80300078 .text readAnmVisibility__20J3DAnmFullLoader_v15FPC24J3DAnmVisibilityFullData */
|
||||
void J3DAnmFullLoader_v15::readAnmVisibility(const J3DAnmVisibilityFullData*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80300078-803000F4 .text setAnmVisibility__20J3DAnmFullLoader_v15FP20J3DAnmVisibilityFullPC24J3DAnmVisibilityFullData */
|
||||
void J3DAnmFullLoader_v15::setAnmVisibility(J3DAnmVisibilityFull*, const J3DAnmVisibilityFullData*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 803000F4-8030011C .text readAnmCluster__20J3DAnmFullLoader_v15FPC21J3DAnmClusterFullData */
|
||||
void J3DAnmFullLoader_v15::readAnmCluster(const J3DAnmClusterFullData*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8030011C-80300188 .text setAnmCluster__20J3DAnmFullLoader_v15FP17J3DAnmClusterFullPC21J3DAnmClusterFullData */
|
||||
void J3DAnmFullLoader_v15::setAnmCluster(J3DAnmClusterFull*, const J3DAnmClusterFullData*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80300188-803001B0 .text readAnmVtxColor__20J3DAnmFullLoader_v15FPC22J3DAnmVtxColorFullData */
|
||||
void J3DAnmFullLoader_v15::readAnmVtxColor(const J3DAnmVtxColorFullData*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 803001B0-80300318 .text setAnmVtxColor__20J3DAnmFullLoader_v15FP18J3DAnmVtxColorFullPC22J3DAnmVtxColorFullData */
|
||||
void J3DAnmFullLoader_v15::setAnmVtxColor(J3DAnmVtxColorFull*, const J3DAnmVtxColorFullData*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80300318-80300464 .text load__19J3DAnmKeyLoader_v15FPCv */
|
||||
void J3DAnmKeyLoader_v15::load(const void*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80300464-80300610 .text setResource__19J3DAnmKeyLoader_v15FP10J3DAnmBasePCv */
|
||||
void J3DAnmKeyLoader_v15::setResource(J3DAnmBase*, const void*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80300610-80300638 .text readAnmTransform__19J3DAnmKeyLoader_v15FPC22J3DAnmTransformKeyData */
|
||||
void J3DAnmKeyLoader_v15::readAnmTransform(const J3DAnmTransformKeyData*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80300638-803006D4 .text setAnmTransform__19J3DAnmKeyLoader_v15FP18J3DAnmTransformKeyPC22J3DAnmTransformKeyData */
|
||||
void J3DAnmKeyLoader_v15::setAnmTransform(J3DAnmTransformKey*, const J3DAnmTransformKeyData*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 803006D4-803006FC .text readAnmTextureSRT__19J3DAnmKeyLoader_v15FPC23J3DAnmTextureSRTKeyData */
|
||||
void J3DAnmKeyLoader_v15::readAnmTextureSRT(const J3DAnmTextureSRTKeyData*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 803006FC-803008D8 .text setAnmTextureSRT__19J3DAnmKeyLoader_v15FP19J3DAnmTextureSRTKeyPC23J3DAnmTextureSRTKeyData */
|
||||
void J3DAnmKeyLoader_v15::setAnmTextureSRT(J3DAnmTextureSRTKey*, const J3DAnmTextureSRTKeyData*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 803008D8-80300900 .text readAnmColor__19J3DAnmKeyLoader_v15FPC18J3DAnmColorKeyData */
|
||||
void J3DAnmKeyLoader_v15::readAnmColor(const J3DAnmColorKeyData*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80300900-803009EC .text setAnmColor__19J3DAnmKeyLoader_v15FP14J3DAnmColorKeyPC18J3DAnmColorKeyData */
|
||||
void J3DAnmKeyLoader_v15::setAnmColor(J3DAnmColorKey*, const J3DAnmColorKeyData*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 803009EC-80300A14 .text readAnmCluster__19J3DAnmKeyLoader_v15FPC20J3DAnmClusterKeyData */
|
||||
void J3DAnmKeyLoader_v15::readAnmCluster(const J3DAnmClusterKeyData*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80300A14-80300A80 .text setAnmCluster__19J3DAnmKeyLoader_v15FP16J3DAnmClusterKeyPC20J3DAnmClusterKeyData */
|
||||
void J3DAnmKeyLoader_v15::setAnmCluster(J3DAnmClusterKey*, const J3DAnmClusterKeyData*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80300A80-80300AA8 .text readAnmTevReg__19J3DAnmKeyLoader_v15FPC19J3DAnmTevRegKeyData */
|
||||
void J3DAnmKeyLoader_v15::readAnmTevReg(const J3DAnmTevRegKeyData*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80300AA8-80300C34 .text setAnmTevReg__19J3DAnmKeyLoader_v15FP15J3DAnmTevRegKeyPC19J3DAnmTevRegKeyData */
|
||||
void J3DAnmKeyLoader_v15::setAnmTevReg(J3DAnmTevRegKey*, const J3DAnmTevRegKeyData*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80300C34-80300C5C .text readAnmVtxColor__19J3DAnmKeyLoader_v15FPC21J3DAnmVtxColorKeyData */
|
||||
void J3DAnmKeyLoader_v15::readAnmVtxColor(const J3DAnmVtxColorKeyData*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80300C5C-80300DC4 .text setAnmVtxColor__19J3DAnmKeyLoader_v15FP17J3DAnmVtxColorKeyPC21J3DAnmVtxColorKeyData */
|
||||
void J3DAnmKeyLoader_v15::setAnmVtxColor(J3DAnmVtxColorKey*, const J3DAnmVtxColorKeyData*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80300DC4-80300E20 .text __dt__20J3DAnmVisibilityFullFv */
|
||||
J3DAnmVisibilityFull::~J3DAnmVisibilityFull() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80300E20-80300EA8 .text __dt__15J3DAnmTevRegKeyFv */
|
||||
J3DAnmTevRegKey::~J3DAnmTevRegKey() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80300EA8-80300EF0 .text __dt__12J3DAnmLoaderFv */
|
||||
J3DAnmLoader::~J3DAnmLoader() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80300EF0-80300F08 .text JSUConvertOffsetToPtr<18J3DAnmKRegKeyTable>__FPCvPCv */
|
||||
void JSUConvertOffsetToPtr<J3DAnmKRegKeyTable>(const void*, const void*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80300F08-80300F20 .text JSUConvertOffsetToPtr<18J3DAnmCRegKeyTable>__FPCvPCv */
|
||||
void JSUConvertOffsetToPtr<J3DAnmCRegKeyTable>(const void*, const void*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80300F20-80300F38 .text JSUConvertOffsetToPtr<21J3DAnmClusterKeyTable>__FPCvPCv */
|
||||
void JSUConvertOffsetToPtr<J3DAnmClusterKeyTable>(const void*, const void*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80300F38-80300F50 .text JSUConvertOffsetToPtr<19J3DAnmColorKeyTable>__FPCvPCv */
|
||||
void JSUConvertOffsetToPtr<J3DAnmColorKeyTable>(const void*, const void*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80300F50-80300F68 .text JSUConvertOffsetToPtr<3Vec>__FPCvPCv */
|
||||
void JSUConvertOffsetToPtr<Vec>(const void*, const void*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80300F68-80300F80 .text JSUConvertOffsetToPtr<23J3DAnmTransformKeyTable>__FPCvPCv */
|
||||
void JSUConvertOffsetToPtr<J3DAnmTransformKeyTable>(const void*, const void*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80300F80-80300F98 .text JSUConvertOffsetToPtr<23J3DAnmVtxColorIndexData>__FPCvPCv */
|
||||
void JSUConvertOffsetToPtr<J3DAnmVtxColorIndexData>(const void*, const void*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80300F98-80300FB0 .text JSUConvertOffsetToPtr<22J3DAnmClusterFullTable>__FPCvPCv */
|
||||
void JSUConvertOffsetToPtr<J3DAnmClusterFullTable>(const void*, const void*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80300FB0-80300FC8 .text JSUConvertOffsetToPtr<25J3DAnmVisibilityFullTable>__FPCvPCv */
|
||||
void JSUConvertOffsetToPtr<J3DAnmVisibilityFullTable>(const void*, const void*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80300FC8-80300FE0 .text JSUConvertOffsetToPtr<25J3DAnmTexPatternFullTable>__FPCvPCv */
|
||||
void JSUConvertOffsetToPtr<J3DAnmTexPatternFullTable>(const void*, const void*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80300FE0-80300FF8 .text JSUConvertOffsetToPtr<20J3DAnmColorFullTable>__FPCvPCv */
|
||||
void JSUConvertOffsetToPtr<J3DAnmColorFullTable>(const void*, const void*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80300FF8-80301010 .text JSUConvertOffsetToPtr<s>__FPCvPCv */
|
||||
void JSUConvertOffsetToPtr<short>(const void*, const void*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80301010-80301028 .text JSUConvertOffsetToPtr<24J3DAnmTransformFullTable>__FPCvPCv */
|
||||
void JSUConvertOffsetToPtr<J3DAnmTransformFullTable>(const void*, const void*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
@@ -0,0 +1,62 @@
|
||||
//
|
||||
// Generated by dtk
|
||||
// Translation Unit: J3DClusterLoader.cpp
|
||||
//
|
||||
|
||||
#include "JSystem/J3DGraphLoader/J3DClusterLoader.h"
|
||||
#include "dolphin/types.h"
|
||||
|
||||
/* 802FB04C-802FB0E8 .text load__24J3DClusterLoaderDataBaseFPCv */
|
||||
void J3DClusterLoaderDataBase::load(const void*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802FB0E8-802FB104 .text __ct__20J3DClusterLoader_v15Fv */
|
||||
J3DClusterLoader_v15::J3DClusterLoader_v15() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802FB104-802FB160 .text __dt__20J3DClusterLoader_v15Fv */
|
||||
J3DClusterLoader_v15::~J3DClusterLoader_v15() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802FB160-802FB21C .text load__20J3DClusterLoader_v15FPCv */
|
||||
void J3DClusterLoader_v15::load(const void*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802FB21C-802FB698 .text readCluster__20J3DClusterLoader_v15FPC15J3DClusterBlock */
|
||||
void J3DClusterLoader_v15::readCluster(const J3DClusterBlock*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802FB698-802FB6E0 .text __dt__16J3DClusterLoaderFv */
|
||||
J3DClusterLoader::~J3DClusterLoader() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802FB6E0-802FB6F8 .text JSUConvertOffsetToPtr<16J3DClusterVertex>__FPCvPCv */
|
||||
void JSUConvertOffsetToPtr<J3DClusterVertex>(const void*, const void*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802FB6F8-802FB710 .text JSUConvertOffsetToPtr<13J3DClusterKey>__FPCvPCv */
|
||||
void JSUConvertOffsetToPtr<J3DClusterKey>(const void*, const void*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802FB710-802FB728 .text JSUConvertOffsetToPtr<10J3DCluster>__FPCvPCv */
|
||||
void JSUConvertOffsetToPtr<J3DCluster>(const void*, const void*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802FB728-802FB740 .text JSUConvertOffsetToPtr<f>__FPCvPCv */
|
||||
void JSUConvertOffsetToPtr<float>(const void*, const void*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802FB740-802FB758 .text JSUConvertOffsetToPtr<7ResNTAB>__FPCvPCv */
|
||||
void JSUConvertOffsetToPtr<ResNTAB>(const void*, const void*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
@@ -0,0 +1,22 @@
|
||||
//
|
||||
// Generated by dtk
|
||||
// Translation Unit: J3DJointFactory.cpp
|
||||
//
|
||||
|
||||
#include "JSystem/J3DGraphLoader/J3DJointFactory.h"
|
||||
#include "dolphin/types.h"
|
||||
|
||||
/* 802FE1A4-802FE1FC .text __ct__15J3DJointFactoryFRC13J3DJointBlock */
|
||||
J3DJointFactory::J3DJointFactory(const J3DJointBlock&) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802FE1FC-802FE390 .text create__15J3DJointFactoryFi */
|
||||
void J3DJointFactory::create(int) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802FE390-802FE3A8 .text JSUConvertOffsetToPtr<16J3DJointInitData>__FPCvUl */
|
||||
void JSUConvertOffsetToPtr<J3DJointInitData>(const void*, unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
@@ -0,0 +1,432 @@
|
||||
//
|
||||
// Generated by dtk
|
||||
// Translation Unit: J3DMaterialFactory.cpp
|
||||
//
|
||||
|
||||
#include "JSystem/J3DGraphLoader/J3DMaterialFactory.h"
|
||||
#include "dolphin/types.h"
|
||||
|
||||
/* 802F68F0-802F6B38 .text __ct__18J3DMaterialFactoryFRC16J3DMaterialBlock */
|
||||
J3DMaterialFactory::J3DMaterialFactory(const J3DMaterialBlock&) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F6B38-802F6BC0 .text __ct__18J3DMaterialFactoryFRC18J3DMaterialDLBlock */
|
||||
J3DMaterialFactory::J3DMaterialFactory(const J3DMaterialDLBlock&) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F6BC0-802F6C08 .text countUniqueMaterials__18J3DMaterialFactoryFv */
|
||||
void J3DMaterialFactory::countUniqueMaterials() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F6C08-802F6C40 .text countTexGens__18J3DMaterialFactoryCFi */
|
||||
void J3DMaterialFactory::countTexGens(int) const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F6C40-802F6CC8 .text countStages__18J3DMaterialFactoryCFi */
|
||||
void J3DMaterialFactory::countStages(int) const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F6CC8-802F6D44 .text create__18J3DMaterialFactoryCFP11J3DMaterialQ218J3DMaterialFactory12MaterialTypeiUl */
|
||||
void J3DMaterialFactory::create(J3DMaterial*, J3DMaterialFactory::MaterialType, int, unsigned long) const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F6D44-802F768C .text createNormalMaterial__18J3DMaterialFactoryCFP11J3DMaterialiUl */
|
||||
void J3DMaterialFactory::createNormalMaterial(J3DMaterial*, int, unsigned long) const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F768C-802F7F98 .text createPatchedMaterial__18J3DMaterialFactoryCFP11J3DMaterialiUl */
|
||||
void J3DMaterialFactory::createPatchedMaterial(J3DMaterial*, int, unsigned long) const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F7F98-802F80F8 .text modifyPatchedCurrentMtx__18J3DMaterialFactoryCFP11J3DMateriali */
|
||||
void J3DMaterialFactory::modifyPatchedCurrentMtx(J3DMaterial*, int) const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F80F8-802F83A0 .text createLockedMaterial__18J3DMaterialFactoryCFP11J3DMaterialiUl */
|
||||
void J3DMaterialFactory::createLockedMaterial(J3DMaterial*, int, unsigned long) const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F83A0-802F8420 .text calcSize__18J3DMaterialFactoryCFP11J3DMaterialQ218J3DMaterialFactory12MaterialTypeiUl */
|
||||
void J3DMaterialFactory::calcSize(J3DMaterial*, J3DMaterialFactory::MaterialType, int, unsigned long) const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F8420-802F8554 .text calcSizeNormalMaterial__18J3DMaterialFactoryCFP11J3DMaterialiUl */
|
||||
void J3DMaterialFactory::calcSizeNormalMaterial(J3DMaterial*, int, unsigned long) const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F8554-802F8624 .text calcSizePatchedMaterial__18J3DMaterialFactoryCFP11J3DMaterialiUl */
|
||||
void J3DMaterialFactory::calcSizePatchedMaterial(J3DMaterial*, int, unsigned long) const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F8624-802F863C .text calcSizeLockedMaterial__18J3DMaterialFactoryCFP11J3DMaterialiUl */
|
||||
void J3DMaterialFactory::calcSizeLockedMaterial(J3DMaterial*, int, unsigned long) const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F863C-802F86CC .text newMatColor__18J3DMaterialFactoryCFii */
|
||||
void J3DMaterialFactory::newMatColor(int, int) const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F86CC-802F8704 .text newColorChanNum__18J3DMaterialFactoryCFi */
|
||||
void J3DMaterialFactory::newColorChanNum(int) const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F8704-802F88A8 .text newColorChan__18J3DMaterialFactoryCFii */
|
||||
void J3DMaterialFactory::newColorChan(int, int) const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F88A8-802F8938 .text newAmbColor__18J3DMaterialFactoryCFii */
|
||||
void J3DMaterialFactory::newAmbColor(int, int) const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F8938-802F8970 .text newTexGenNum__18J3DMaterialFactoryCFi */
|
||||
void J3DMaterialFactory::newTexGenNum(int) const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F8970-802F89E4 .text newTexCoord__18J3DMaterialFactoryCFii */
|
||||
void J3DMaterialFactory::newTexCoord(int, int) const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F89E4-802F8AF4 .text newTexMtx__18J3DMaterialFactoryCFii */
|
||||
void J3DMaterialFactory::newTexMtx(int, int) const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F8AF4-802F8B34 .text newCullMode__18J3DMaterialFactoryCFi */
|
||||
void J3DMaterialFactory::newCullMode(int) const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F8B34-802F8B7C .text newTexNo__18J3DMaterialFactoryCFii */
|
||||
void J3DMaterialFactory::newTexNo(int, int) const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F8B7C-802F8BF0 .text newTevOrder__18J3DMaterialFactoryCFii */
|
||||
void J3DMaterialFactory::newTevOrder(int, int) const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F8BF0-802F8C88 .text newTevColor__18J3DMaterialFactoryCFii */
|
||||
void J3DMaterialFactory::newTevColor(int, int) const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F8C88-802F8D18 .text newTevKColor__18J3DMaterialFactoryCFii */
|
||||
void J3DMaterialFactory::newTevKColor(int, int) const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F8D18-802F8D50 .text newTevStageNum__18J3DMaterialFactoryCFi */
|
||||
void J3DMaterialFactory::newTevStageNum(int) const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F8D50-802F8DB0 .text newTevStage__18J3DMaterialFactoryCFii */
|
||||
void J3DMaterialFactory::newTevStage(int, int) const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F8DB0-802F8E4C .text newTevSwapModeTable__18J3DMaterialFactoryCFii */
|
||||
void J3DMaterialFactory::newTevSwapModeTable(int, int) const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F8E4C-802F8E74 .text newIndTexStageNum__18J3DMaterialFactoryCFi */
|
||||
void J3DMaterialFactory::newIndTexStageNum(int) const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F8E74-802F8ED4 .text newIndTexOrder__18J3DMaterialFactoryCFii */
|
||||
void J3DMaterialFactory::newIndTexOrder(int, int) const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F8ED4-802F8FD0 .text newIndTexMtx__18J3DMaterialFactoryCFii */
|
||||
void J3DMaterialFactory::newIndTexMtx(int, int) const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F8FD0-802F9164 .text newIndTevStage__18J3DMaterialFactoryCFii */
|
||||
void J3DMaterialFactory::newIndTevStage(int, int) const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F9164-802F91C4 .text newIndTexCoordScale__18J3DMaterialFactoryCFii */
|
||||
void J3DMaterialFactory::newIndTexCoordScale(int, int) const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F91C4-802F9348 .text newFog__18J3DMaterialFactoryCFi */
|
||||
void J3DMaterialFactory::newFog(int) const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F9348-802F93C8 .text newAlphaComp__18J3DMaterialFactoryCFi */
|
||||
void J3DMaterialFactory::newAlphaComp(int) const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F93C8-802F9444 .text newBlend__18J3DMaterialFactoryCFi */
|
||||
void J3DMaterialFactory::newBlend(int) const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F9444-802F94A4 .text newZMode__18J3DMaterialFactoryCFi */
|
||||
void J3DMaterialFactory::newZMode(int) const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F94A4-802F94DC .text newZCompLoc__18J3DMaterialFactoryCFi */
|
||||
void J3DMaterialFactory::newZCompLoc(int) const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F94DC-802F9514 .text newDither__18J3DMaterialFactoryCFi */
|
||||
void J3DMaterialFactory::newDither(int) const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F9514-802F95B8 .text newNBTScale__18J3DMaterialFactoryCFi */
|
||||
void J3DMaterialFactory::newNBTScale(int) const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F95B8-802F95BC .text load__14J3DPEBlockNullFv */
|
||||
void J3DPEBlockNull::load() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F95BC-802F95C8 .text getType__14J3DPEBlockNullFv */
|
||||
void J3DPEBlockNull::getType() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F95C8-802F9624 .text __dt__14J3DPEBlockNullFv */
|
||||
J3DPEBlockNull::~J3DPEBlockNull() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F9624-802F9628 .text reset__15J3DTevBlockNullFP11J3DTevBlock */
|
||||
void J3DTevBlockNull::reset(J3DTevBlock*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F9628-802F962C .text ptrToIndex__15J3DTevBlockNullFv */
|
||||
void J3DTevBlockNull::ptrToIndex() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F962C-802F9650 .text indexToPtr__15J3DTevBlockNullFv */
|
||||
void J3DTevBlockNull::indexToPtr() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F9650-802F965C .text getType__15J3DTevBlockNullFv */
|
||||
void J3DTevBlockNull::getType() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F965C-802F96B8 .text __dt__15J3DTevBlockNullFv */
|
||||
J3DTevBlockNull::~J3DTevBlockNull() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F96B8-802F96BC .text calc__18J3DTexGenBlockNullFPA4_Cf */
|
||||
void J3DTexGenBlockNull::calc(const float(*)[4]) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F96BC-802F96C0 .text load__18J3DTexGenBlockNullFv */
|
||||
void J3DTexGenBlockNull::load() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F96C0-802F96C4 .text patch__18J3DTexGenBlockNullFv */
|
||||
void J3DTexGenBlockNull::patch() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F96C4-802F96C8 .text diff__18J3DTexGenBlockNullFUl */
|
||||
void J3DTexGenBlockNull::diff(unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F96C8-802F96CC .text diffTexMtx__18J3DTexGenBlockNullFv */
|
||||
void J3DTexGenBlockNull::diffTexMtx() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F96CC-802F96D0 .text diffTexGen__18J3DTexGenBlockNullFv */
|
||||
void J3DTexGenBlockNull::diffTexGen() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F96D0-802F96DC .text getType__18J3DTexGenBlockNullFv */
|
||||
void J3DTexGenBlockNull::getType() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F96DC-802F9738 .text __dt__18J3DTexGenBlockNullFv */
|
||||
J3DTexGenBlockNull::~J3DTexGenBlockNull() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F9738-802F9744 .text getType__17J3DColorBlockNullFv */
|
||||
void J3DColorBlockNull::getType() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F9744-802F97A0 .text __dt__17J3DColorBlockNullFv */
|
||||
J3DColorBlockNull::~J3DColorBlockNull() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F97A0-802F9800 .text __ct__11J3DTevStageFRC15J3DTevStageInfo */
|
||||
J3DTevStage::J3DTevStage(const J3DTevStageInfo&) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F9800-802F9848 .text __dt__11J3DMaterialFv */
|
||||
J3DMaterial::~J3DMaterial() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F9848-802F9860 .text JSUConvertOffsetToPtr<17J3DCurrentMtxInfo>__FPCvPCv */
|
||||
void JSUConvertOffsetToPtr<J3DCurrentMtxInfo>(const void*, const void*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F9860-802F9878 .text JSUConvertOffsetToPtr<15J3DPatchingInfo>__FPCvPCv */
|
||||
void JSUConvertOffsetToPtr<J3DPatchingInfo>(const void*, const void*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F9878-802F9890 .text JSUConvertOffsetToPtr<18J3DDisplayListInit>__FPCvPCv */
|
||||
void JSUConvertOffsetToPtr<J3DDisplayListInit>(const void*, const void*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F9890-802F98A8 .text JSUConvertOffsetToPtr<15J3DNBTScaleInfo>__FPCvPCv */
|
||||
void JSUConvertOffsetToPtr<J3DNBTScaleInfo>(const void*, const void*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F98A8-802F98C0 .text JSUConvertOffsetToPtr<12J3DZModeInfo>__FPCvPCv */
|
||||
void JSUConvertOffsetToPtr<J3DZModeInfo>(const void*, const void*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F98C0-802F98D8 .text JSUConvertOffsetToPtr<12J3DBlendInfo>__FPCvPCv */
|
||||
void JSUConvertOffsetToPtr<J3DBlendInfo>(const void*, const void*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F98D8-802F98F0 .text JSUConvertOffsetToPtr<16J3DAlphaCompInfo>__FPCvPCv */
|
||||
void JSUConvertOffsetToPtr<J3DAlphaCompInfo>(const void*, const void*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F98F0-802F9908 .text JSUConvertOffsetToPtr<10J3DFogInfo>__FPCvPCv */
|
||||
void JSUConvertOffsetToPtr<J3DFogInfo>(const void*, const void*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F9908-802F9920 .text JSUConvertOffsetToPtr<23J3DTevSwapModeTableInfo>__FPCvPCv */
|
||||
void JSUConvertOffsetToPtr<J3DTevSwapModeTableInfo>(const void*, const void*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F9920-802F9938 .text JSUConvertOffsetToPtr<18J3DTevSwapModeInfo>__FPCvPCv */
|
||||
void JSUConvertOffsetToPtr<J3DTevSwapModeInfo>(const void*, const void*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F9938-802F9950 .text JSUConvertOffsetToPtr<15J3DTevStageInfo>__FPCvPCv */
|
||||
void JSUConvertOffsetToPtr<J3DTevStageInfo>(const void*, const void*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F9950-802F9968 .text JSUConvertOffsetToPtr<11_GXColorS10>__FPCvPCv */
|
||||
void JSUConvertOffsetToPtr<_GXColorS10>(const void*, const void*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F9968-802F9980 .text JSUConvertOffsetToPtr<15J3DTevOrderInfo>__FPCvPCv */
|
||||
void JSUConvertOffsetToPtr<J3DTevOrderInfo>(const void*, const void*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F9980-802F9998 .text JSUConvertOffsetToPtr<13J3DTexMtxInfo>__FPCvPCv */
|
||||
void JSUConvertOffsetToPtr<J3DTexMtxInfo>(const void*, const void*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F9998-802F99B0 .text JSUConvertOffsetToPtr<16J3DTexCoord2Info>__FPCvPCv */
|
||||
void JSUConvertOffsetToPtr<J3DTexCoord2Info>(const void*, const void*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F99B0-802F99C8 .text JSUConvertOffsetToPtr<15J3DTexCoordInfo>__FPCvPCv */
|
||||
void JSUConvertOffsetToPtr<J3DTexCoordInfo>(const void*, const void*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F99C8-802F99E0 .text JSUConvertOffsetToPtr<12J3DLightInfo>__FPCvPCv */
|
||||
void JSUConvertOffsetToPtr<J3DLightInfo>(const void*, const void*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F99E0-802F99F8 .text JSUConvertOffsetToPtr<16J3DColorChanInfo>__FPCvPCv */
|
||||
void JSUConvertOffsetToPtr<J3DColorChanInfo>(const void*, const void*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F99F8-802F9A10 .text JSUConvertOffsetToPtr<Uc>__FPCvPCv */
|
||||
void JSUConvertOffsetToPtr<unsigned char>(const void*, const void*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F9A10-802F9A28 .text JSUConvertOffsetToPtr<8_GXColor>__FPCvPCv */
|
||||
void JSUConvertOffsetToPtr<_GXColor>(const void*, const void*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F9A28-802F9A40 .text JSUConvertOffsetToPtr<11_GXCullMode>__FPCvPCv */
|
||||
void JSUConvertOffsetToPtr<_GXCullMode>(const void*, const void*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F9A40-802F9A58 .text JSUConvertOffsetToPtr<14J3DIndInitData>__FPCvPCv */
|
||||
void JSUConvertOffsetToPtr<J3DIndInitData>(const void*, const void*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F9A58-802F9A70 .text JSUConvertOffsetToPtr<Us>__FPCvPCv */
|
||||
void JSUConvertOffsetToPtr<unsigned short>(const void*, const void*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F9A70-802F9A88 .text JSUConvertOffsetToPtr<19J3DMaterialInitData>__FPCvPCv */
|
||||
void JSUConvertOffsetToPtr<J3DMaterialInitData>(const void*, const void*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
@@ -0,0 +1,142 @@
|
||||
//
|
||||
// Generated by dtk
|
||||
// Translation Unit: J3DMaterialFactory_v21.cpp
|
||||
//
|
||||
|
||||
#include "JSystem/J3DGraphLoader/J3DMaterialFactory_v21.h"
|
||||
#include "dolphin/types.h"
|
||||
|
||||
/* 802F9A88-802F9C68 .text __ct__22J3DMaterialFactory_v21FRC20J3DMaterialBlock_v21 */
|
||||
J3DMaterialFactory_v21::J3DMaterialFactory_v21(const J3DMaterialBlock_v21&) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F9C68-802F9C8C .text countUniqueMaterials__22J3DMaterialFactory_v21Fv */
|
||||
void J3DMaterialFactory_v21::countUniqueMaterials() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F9C8C-802F9CC4 .text countTexGens__22J3DMaterialFactory_v21CFi */
|
||||
void J3DMaterialFactory_v21::countTexGens(int) const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F9CC4-802F9D4C .text countStages__22J3DMaterialFactory_v21CFi */
|
||||
void J3DMaterialFactory_v21::countStages(int) const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802F9D4C-802FA4C0 .text create__22J3DMaterialFactory_v21CFP11J3DMaterialiUl */
|
||||
void J3DMaterialFactory_v21::create(J3DMaterial*, int, unsigned long) const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802FA4C0-802FA550 .text newMatColor__22J3DMaterialFactory_v21CFii */
|
||||
void J3DMaterialFactory_v21::newMatColor(int, int) const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802FA550-802FA588 .text newColorChanNum__22J3DMaterialFactory_v21CFi */
|
||||
void J3DMaterialFactory_v21::newColorChanNum(int) const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802FA588-802FA72C .text newColorChan__22J3DMaterialFactory_v21CFii */
|
||||
void J3DMaterialFactory_v21::newColorChan(int, int) const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802FA72C-802FA764 .text newTexGenNum__22J3DMaterialFactory_v21CFi */
|
||||
void J3DMaterialFactory_v21::newTexGenNum(int) const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802FA764-802FA7D8 .text newTexCoord__22J3DMaterialFactory_v21CFii */
|
||||
void J3DMaterialFactory_v21::newTexCoord(int, int) const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802FA7D8-802FA8E8 .text newTexMtx__22J3DMaterialFactory_v21CFii */
|
||||
void J3DMaterialFactory_v21::newTexMtx(int, int) const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802FA8E8-802FA928 .text newCullMode__22J3DMaterialFactory_v21CFi */
|
||||
void J3DMaterialFactory_v21::newCullMode(int) const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802FA928-802FA970 .text newTexNo__22J3DMaterialFactory_v21CFii */
|
||||
void J3DMaterialFactory_v21::newTexNo(int, int) const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802FA970-802FA9E4 .text newTevOrder__22J3DMaterialFactory_v21CFii */
|
||||
void J3DMaterialFactory_v21::newTevOrder(int, int) const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802FA9E4-802FAA7C .text newTevColor__22J3DMaterialFactory_v21CFii */
|
||||
void J3DMaterialFactory_v21::newTevColor(int, int) const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802FAA7C-802FAB0C .text newTevKColor__22J3DMaterialFactory_v21CFii */
|
||||
void J3DMaterialFactory_v21::newTevKColor(int, int) const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802FAB0C-802FAB44 .text newTevStageNum__22J3DMaterialFactory_v21CFi */
|
||||
void J3DMaterialFactory_v21::newTevStageNum(int) const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802FAB44-802FABA4 .text newTevStage__22J3DMaterialFactory_v21CFii */
|
||||
void J3DMaterialFactory_v21::newTevStage(int, int) const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802FABA4-802FAC40 .text newTevSwapModeTable__22J3DMaterialFactory_v21CFii */
|
||||
void J3DMaterialFactory_v21::newTevSwapModeTable(int, int) const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802FAC40-802FADC4 .text newFog__22J3DMaterialFactory_v21CFi */
|
||||
void J3DMaterialFactory_v21::newFog(int) const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802FADC4-802FAE44 .text newAlphaComp__22J3DMaterialFactory_v21CFi */
|
||||
void J3DMaterialFactory_v21::newAlphaComp(int) const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802FAE44-802FAEC0 .text newBlend__22J3DMaterialFactory_v21CFi */
|
||||
void J3DMaterialFactory_v21::newBlend(int) const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802FAEC0-802FAF20 .text newZMode__22J3DMaterialFactory_v21CFi */
|
||||
void J3DMaterialFactory_v21::newZMode(int) const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802FAF20-802FAF58 .text newZCompLoc__22J3DMaterialFactory_v21CFi */
|
||||
void J3DMaterialFactory_v21::newZCompLoc(int) const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802FAF58-802FAF90 .text newDither__22J3DMaterialFactory_v21CFi */
|
||||
void J3DMaterialFactory_v21::newDither(int) const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802FAF90-802FB034 .text newNBTScale__22J3DMaterialFactory_v21CFi */
|
||||
void J3DMaterialFactory_v21::newNBTScale(int) const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802FB034-802FB04C .text JSUConvertOffsetToPtr<23J3DMaterialInitData_v21>__FPCvPCv */
|
||||
void JSUConvertOffsetToPtr<J3DMaterialInitData_v21>(const void*, const void*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
@@ -0,0 +1,212 @@
|
||||
//
|
||||
// Generated by dtk
|
||||
// Translation Unit: J3DModelLoader.cpp
|
||||
//
|
||||
|
||||
#include "JSystem/J3DGraphLoader/J3DModelLoader.h"
|
||||
#include "dolphin/types.h"
|
||||
|
||||
/* 802FB758-802FB8A4 .text load__22J3DModelLoaderDataBaseFPCvUl */
|
||||
void J3DModelLoaderDataBase::load(const void*, unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802FB8A4-802FB94C .text loadMaterialTable__22J3DModelLoaderDataBaseFPCv */
|
||||
void J3DModelLoaderDataBase::loadMaterialTable(const void*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802FB94C-802FBA04 .text loadBinaryDisplayList__22J3DModelLoaderDataBaseFPCvUl */
|
||||
void J3DModelLoaderDataBase::loadBinaryDisplayList(const void*, unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802FBA04-802FBCC4 .text load__14J3DModelLoaderFPCvUl */
|
||||
void J3DModelLoader::load(const void*, unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802FBCC4-802FBE24 .text loadMaterialTable__14J3DModelLoaderFPCv */
|
||||
void J3DModelLoader::loadMaterialTable(const void*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802FBE24-802FC0CC .text loadBinaryDisplayList__14J3DModelLoaderFPCvUl */
|
||||
void J3DModelLoader::loadBinaryDisplayList(const void*, unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802FC0CC-802FC234 .text setupBBoardInfo__14J3DModelLoaderFv */
|
||||
void J3DModelLoader::setupBBoardInfo() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802FC234-802FC3E4 .text readInformation__14J3DModelLoaderFPC17J3DModelInfoBlockUl */
|
||||
void J3DModelLoader::readInformation(const J3DModelInfoBlock*, unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802FC3E4-802FC410 .text getFmtType__FP17_GXVtxAttrFmtList7_GXAttr */
|
||||
void getFmtType(_GXVtxAttrFmtList*, _GXAttr) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802FC410-802FC630 .text readVertex__14J3DModelLoaderFPC14J3DVertexBlock */
|
||||
void J3DModelLoader::readVertex(const J3DVertexBlock*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802FC630-802FC6C0 .text readEnvelop__14J3DModelLoaderFPC15J3DEnvelopBlock */
|
||||
void J3DModelLoader::readEnvelop(const J3DEnvelopBlock*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802FC6C0-802FC750 .text readDraw__14J3DModelLoaderFPC12J3DDrawBlock */
|
||||
void J3DModelLoader::readDraw(const J3DDrawBlock*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802FC750-802FC834 .text readJoint__14J3DModelLoaderFPC13J3DJointBlock */
|
||||
void J3DModelLoader::readJoint(const J3DJointBlock*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802FC834-802FCAB0 .text readMaterial__18J3DModelLoader_v26FPC16J3DMaterialBlockUl */
|
||||
void J3DModelLoader_v26::readMaterial(const J3DMaterialBlock*, unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802FCAB0-802FCD14 .text readMaterial_v21__18J3DModelLoader_v21FPC20J3DMaterialBlock_v21Ul */
|
||||
void J3DModelLoader_v21::readMaterial_v21(const J3DMaterialBlock_v21*, unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802FCD14-802FCE50 .text readShape__14J3DModelLoaderFPC13J3DShapeBlockUl */
|
||||
void J3DModelLoader::readShape(const J3DShapeBlock*, unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802FCE50-802FCF14 .text readTexture__14J3DModelLoaderFPC15J3DTextureBlock */
|
||||
void J3DModelLoader::readTexture(const J3DTextureBlock*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802FCF14-802FD050 .text readMaterialTable__18J3DModelLoader_v26FPC16J3DMaterialBlockUl */
|
||||
void J3DModelLoader_v26::readMaterialTable(const J3DMaterialBlock*, unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802FD050-802FD18C .text readMaterialTable_v21__18J3DModelLoader_v21FPC20J3DMaterialBlock_v21Ul */
|
||||
void J3DModelLoader_v21::readMaterialTable_v21(const J3DMaterialBlock_v21*, unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802FD18C-802FD250 .text readTextureTable__14J3DModelLoaderFPC15J3DTextureBlock */
|
||||
void J3DModelLoader::readTextureTable(const J3DTextureBlock*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802FD250-802FD390 .text readPatchedMaterial__14J3DModelLoaderFPC16J3DMaterialBlockUl */
|
||||
void J3DModelLoader::readPatchedMaterial(const J3DMaterialBlock*, unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802FD390-802FD548 .text readMaterialDL__14J3DModelLoaderFPC18J3DMaterialDLBlockUl */
|
||||
void J3DModelLoader::readMaterialDL(const J3DMaterialDLBlock*, unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802FD548-802FD5C4 .text modifyMaterial__14J3DModelLoaderFUl */
|
||||
void J3DModelLoader::modifyMaterial(unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802FD5C4-802FD620 .text __dt__18J3DModelLoader_v26Fv */
|
||||
J3DModelLoader_v26::~J3DModelLoader_v26() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802FD620-802FD67C .text __dt__18J3DModelLoader_v21Fv */
|
||||
J3DModelLoader_v21::~J3DModelLoader_v21() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802FD67C-802FD6C4 .text __dt__14J3DModelLoaderFv */
|
||||
J3DModelLoader::~J3DModelLoader() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802FD6C4-802FD6C8 .text readMaterial_v21__14J3DModelLoaderFPC20J3DMaterialBlock_v21Ul */
|
||||
void J3DModelLoader::readMaterial_v21(const J3DMaterialBlock_v21*, unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802FD6C8-802FD6CC .text readMaterial__14J3DModelLoaderFPC16J3DMaterialBlockUl */
|
||||
void J3DModelLoader::readMaterial(const J3DMaterialBlock*, unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802FD6CC-802FD6D0 .text readMaterialTable_v21__14J3DModelLoaderFPC20J3DMaterialBlock_v21Ul */
|
||||
void J3DModelLoader::readMaterialTable_v21(const J3DMaterialBlock_v21*, unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802FD6D0-802FD6D4 .text readMaterialTable__14J3DModelLoaderFPC16J3DMaterialBlockUl */
|
||||
void J3DModelLoader::readMaterialTable(const J3DMaterialBlock*, unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802FD6D4-802FD6DC .text calcSizeMaterial__14J3DModelLoaderFPC16J3DMaterialBlockUl */
|
||||
void J3DModelLoader::calcSizeMaterial(const J3DMaterialBlock*, unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802FD6DC-802FD6E4 .text calcSizeMaterialTable__14J3DModelLoaderFPC16J3DMaterialBlockUl */
|
||||
void J3DModelLoader::calcSizeMaterialTable(const J3DMaterialBlock*, unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802FD6E4-802FD738 .text __ct__11J3DMaterialFv */
|
||||
J3DMaterial::J3DMaterial() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802FD738-802FD780 .text __dt__10J3DTextureFv */
|
||||
J3DTexture::~J3DTexture() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802FD780-802FD798 .text JSUConvertOffsetToPtr<7ResTIMG>__FPCvPCv */
|
||||
void JSUConvertOffsetToPtr<ResTIMG>(const void*, const void*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802FD798-802FD7B0 .text JSUConvertOffsetToPtr<A3_A4_f>__FPCvPCv */
|
||||
void JSUConvertOffsetToPtr<float[3][4]>(const void*, const void*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802FD7B0-802FD7C8 .text JSUConvertOffsetToPtr<v>__FPCvPCv */
|
||||
void JSUConvertOffsetToPtr<void>(const void*, const void*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802FD7C8-802FD7E0 .text JSUConvertOffsetToPtr<17_GXVtxAttrFmtList>__FPCvPCv */
|
||||
void JSUConvertOffsetToPtr<_GXVtxAttrFmtList>(const void*, const void*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802FD7E0-802FD7F8 .text JSUConvertOffsetToPtr<17J3DModelHierarchy>__FPCvPCv */
|
||||
void JSUConvertOffsetToPtr<J3DModelHierarchy>(const void*, const void*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802FD7F8-802FD810 .text JSUConvertOffsetToPtr<16J3DShapeInitData>__FPCvUl */
|
||||
void JSUConvertOffsetToPtr<J3DShapeInitData>(const void*, unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802FD810-802FD828 .text JSUConvertOffsetToPtr<Us>__FPCvUl */
|
||||
void JSUConvertOffsetToPtr<unsigned short>(const void*, unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
@@ -0,0 +1,72 @@
|
||||
//
|
||||
// Generated by dtk
|
||||
// Translation Unit: J3DModelLoaderCalcSize.cpp
|
||||
//
|
||||
|
||||
#include "JSystem/J3DGraphLoader/J3DModelLoaderCalcSize.h"
|
||||
#include "dolphin/types.h"
|
||||
|
||||
/* 802FD828-802FD868 .text countMaterialNum__14J3DModelLoaderFPCv */
|
||||
void J3DModelLoader::countMaterialNum(const void*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802FD868-802FDA10 .text calcLoadSize__14J3DModelLoaderFPCvUl */
|
||||
void J3DModelLoader::calcLoadSize(const void*, unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802FDA10-802FDB0C .text calcLoadMaterialTableSize__14J3DModelLoaderFPCv */
|
||||
void J3DModelLoader::calcLoadMaterialTableSize(const void*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802FDB0C-802FDD28 .text calcLoadBinaryDisplayListSize__14J3DModelLoaderFPCvUl */
|
||||
void J3DModelLoader::calcLoadBinaryDisplayListSize(const void*, unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802FDD28-802FDDB4 .text calcSizeInformation__14J3DModelLoaderFPC17J3DModelInfoBlockUl */
|
||||
void J3DModelLoader::calcSizeInformation(const J3DModelInfoBlock*, unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802FDDB4-802FDDE0 .text calcSizeJoint__14J3DModelLoaderFPC13J3DJointBlock */
|
||||
void J3DModelLoader::calcSizeJoint(const J3DJointBlock*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802FDDE0-802FDECC .text calcSizeMaterial__18J3DModelLoader_v26FPC16J3DMaterialBlockUl */
|
||||
void J3DModelLoader_v26::calcSizeMaterial(const J3DMaterialBlock*, unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802FDECC-802FDF70 .text calcSizeShape__14J3DModelLoaderFPC13J3DShapeBlockUl */
|
||||
void J3DModelLoader::calcSizeShape(const J3DShapeBlock*, unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802FDF70-802FDF8C .text calcSizeTexture__14J3DModelLoaderFPC15J3DTextureBlock */
|
||||
void J3DModelLoader::calcSizeTexture(const J3DTextureBlock*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802FDF8C-802FE01C .text calcSizeMaterialTable__18J3DModelLoader_v26FPC16J3DMaterialBlockUl */
|
||||
void J3DModelLoader_v26::calcSizeMaterialTable(const J3DMaterialBlock*, unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802FE01C-802FE03C .text calcSizeTextureTable__14J3DModelLoaderFPC15J3DTextureBlock */
|
||||
void J3DModelLoader::calcSizeTextureTable(const J3DTextureBlock*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802FE03C-802FE0CC .text calcSizePatchedMaterial__14J3DModelLoaderFPC16J3DMaterialBlockUl */
|
||||
void J3DModelLoader::calcSizePatchedMaterial(const J3DMaterialBlock*, unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802FE0CC-802FE1A4 .text calcSizeMaterialDL__14J3DModelLoaderFPC18J3DMaterialDLBlockUl */
|
||||
void J3DModelLoader::calcSizeMaterialDL(const J3DMaterialDLBlock*, unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
@@ -0,0 +1,67 @@
|
||||
//
|
||||
// Generated by dtk
|
||||
// Translation Unit: J3DShapeFactory.cpp
|
||||
//
|
||||
|
||||
#include "JSystem/J3DGraphLoader/J3DShapeFactory.h"
|
||||
#include "dolphin/types.h"
|
||||
|
||||
/* 802FE3A8-802FE458 .text __ct__15J3DShapeFactoryFRC13J3DShapeBlock */
|
||||
J3DShapeFactory::J3DShapeFactory(const J3DShapeBlock&) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802FE458-802FE614 .text create__15J3DShapeFactoryFiUlP14_GXVtxDescList */
|
||||
void J3DShapeFactory::create(int, unsigned long, _GXVtxDescList*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802FE614-802FEA40 .text newShapeMtx__15J3DShapeFactoryCFUlii */
|
||||
void J3DShapeFactory::newShapeMtx(unsigned long, int, int) const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802FEA40-802FEACC .text newShapeDraw__15J3DShapeFactoryCFii */
|
||||
void J3DShapeFactory::newShapeDraw(int, int) const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802FEACC-802FEB38 .text allocVcdVatCmdBuffer__15J3DShapeFactoryFUl */
|
||||
void J3DShapeFactory::allocVcdVatCmdBuffer(unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802FEB38-802FEBCC .text calcSize__15J3DShapeFactoryFiUl */
|
||||
void J3DShapeFactory::calcSize(int, unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802FEBCC-802FEBDC .text calcSizeVcdVatCmdBuffer__15J3DShapeFactoryFUl */
|
||||
void J3DShapeFactory::calcSizeVcdVatCmdBuffer(unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802FEBDC-802FED40 .text calcSizeShapeMtx__15J3DShapeFactoryCFUlii */
|
||||
void J3DShapeFactory::calcSizeShapeMtx(unsigned long, int, int) const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802FED40-802FED58 .text JSUConvertOffsetToPtr<20J3DShapeDrawInitData>__FPCvUl */
|
||||
void JSUConvertOffsetToPtr<J3DShapeDrawInitData>(const void*, unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802FED58-802FED70 .text JSUConvertOffsetToPtr<19J3DShapeMtxInitData>__FPCvUl */
|
||||
void JSUConvertOffsetToPtr<J3DShapeMtxInitData>(const void*, unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802FED70-802FED88 .text JSUConvertOffsetToPtr<Uc>__FPCvUl */
|
||||
void JSUConvertOffsetToPtr<unsigned char>(const void*, unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802FED88-802FEDA0 .text JSUConvertOffsetToPtr<14_GXVtxDescList>__FPCvUl */
|
||||
void JSUConvertOffsetToPtr<_GXVtxDescList>(const void*, unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
@@ -0,0 +1,32 @@
|
||||
//
|
||||
// Generated by dtk
|
||||
// Translation Unit: J3DUClipper.cpp
|
||||
//
|
||||
|
||||
#include "JSystem/J3DU/J3DUClipper.h"
|
||||
#include "dolphin/types.h"
|
||||
|
||||
/* 802566B8-802566CC .text init__11J3DUClipperFv */
|
||||
void J3DUClipper::init() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802566CC-80256888 .text calcViewFrustum__11J3DUClipperFv */
|
||||
void J3DUClipper::calcViewFrustum() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80256888-802569D0 .text clip__11J3DUClipperFPA4_Cf3Vecf */
|
||||
void J3DUClipper::clip(const float(*)[4], Vec, float) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802569D0-80256CB8 .text clip__11J3DUClipperFPA4_CfP3VecP3Vec */
|
||||
void J3DUClipper::clip(const float(*)[4], Vec*, Vec*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80256CB8-80256DBC .text clipByBox__11J3DUClipperFP8J3DModel */
|
||||
void J3DUClipper::clipByBox(J3DModel*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
//
|
||||
// Generated by dtk
|
||||
// Translation Unit: J3DUDL.cpp
|
||||
//
|
||||
|
||||
#include "JSystem/J3DU/J3DUDL.h"
|
||||
#include "dolphin/types.h"
|
||||
|
||||
/* 80256F80-80256F88 .text getUseMtxNum__11J3DShapeMtxCFv */
|
||||
void J3DShapeMtx::getUseMtxNum() const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
@@ -0,0 +1,22 @@
|
||||
//
|
||||
// Generated by dtk
|
||||
// Translation Unit: J3DUMotion.cpp
|
||||
//
|
||||
|
||||
#include "JSystem/J3DU/J3DUMotion.h"
|
||||
#include "dolphin/types.h"
|
||||
|
||||
/* 80256DBC-80256E4C .text __dt__19J3DMtxCalcSoftimageFv */
|
||||
J3DMtxCalcSoftimage::~J3DMtxCalcSoftimage() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80256E4C-80256E94 .text init__19J3DMtxCalcSoftimageFRC3VecRA3_A4_Cf */
|
||||
void J3DMtxCalcSoftimage::init(const Vec&, const float(&)[3][4]) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80256E94-80256F80 .text init__15J3DMtxCalcBasicFRC3VecRA3_A4_Cf */
|
||||
void J3DMtxCalcBasic::init(const Vec&, const float(&)[3][4]) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
@@ -0,0 +1,47 @@
|
||||
//
|
||||
// Generated by dtk
|
||||
// Translation Unit: JAIAnimation.cpp
|
||||
//
|
||||
|
||||
#include "JSystem/JAudio/JAIAnimation.h"
|
||||
#include "dolphin/types.h"
|
||||
|
||||
/* 8028F08C-8028F110 .text __ct__13JAIAnimeSoundFv */
|
||||
JAIAnimeSound::JAIAnimeSound() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8028F110-8028F268 .text initActorAnimSound__13JAIAnimeSoundFPvUlf */
|
||||
void JAIAnimeSound::initActorAnimSound(void*, unsigned long, float) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8028F268-8028F2A0 .text setAnimSoundVec__13JAIAnimeSoundFP8JAIBasicP3VecffUlUc */
|
||||
void JAIAnimeSound::setAnimSoundVec(JAIBasic*, Vec*, float, float, unsigned long, unsigned char) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8028F2A0-8028F7B8 .text setAnimSoundActor__13JAIAnimeSoundFP8JAIBasicPQ27JAInter5ActorffUc */
|
||||
void JAIAnimeSound::setAnimSoundActor(JAIBasic*, JAInter::Actor*, float, float, unsigned char) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8028F7B8-8028FA60 .text playActorAnimSound__13JAIAnimeSoundFP8JAIBasicPQ27JAInter5ActorfUc */
|
||||
void JAIAnimeSound::playActorAnimSound(JAIBasic*, JAInter::Actor*, float, unsigned char) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8028FA60-8028FA94 .text startAnimSound__13JAIAnimeSoundFPvUlPP8JAISoundPQ27JAInter5ActorUc */
|
||||
void JAIAnimeSound::startAnimSound(void*, unsigned long, JAISound**, JAInter::Actor*, unsigned char) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8028FA94-8028FBE0 .text setSpeedModifySound__13JAIAnimeSoundFP8JAISoundP22JAIAnimeFrameSoundDataf */
|
||||
void JAIAnimeSound::setSpeedModifySound(JAISound*, JAIAnimeFrameSoundData*, float) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8028FBE0-8028FC48 .text stop__13JAIAnimeSoundFv */
|
||||
void JAIAnimeSound::stop() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
@@ -0,0 +1,62 @@
|
||||
//
|
||||
// Generated by dtk
|
||||
// Translation Unit: JAIBankWave.cpp
|
||||
//
|
||||
|
||||
#include "JSystem/JAudio/JAIBankWave.h"
|
||||
#include "dolphin/types.h"
|
||||
|
||||
/* 80291220-80291230 .text setWsGroupNumber__Q27JAInter8BankWaveFll */
|
||||
void JAInter::BankWave::setWsGroupNumber(long, long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80291230-80291240 .text setWsLoadStatus__Q27JAInter8BankWaveFll */
|
||||
void JAInter::BankWave::setWsLoadStatus(long, long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80291240-8029144C .text init__Q27JAInter8BankWaveFv */
|
||||
void JAInter::BankWave::init() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8029144C-802914D4 .text setWaveScene__Q27JAInter8BankWaveFv */
|
||||
void JAInter::BankWave::setWaveScene() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802914D4-80291578 .text loadSecondStayWave__Q27JAInter8BankWaveFv */
|
||||
void JAInter::BankWave::loadSecondStayWave() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80291578-802915C4 .text setSceneSetFinishCallback__Q27JAInter8BankWaveFll */
|
||||
void JAInter::BankWave::setSceneSetFinishCallback(long, long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802915C4-802915DC .text finishSceneSet__Q27JAInter8BankWaveFUl */
|
||||
void JAInter::BankWave::finishSceneSet(unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802915DC-8029165C .text loadSceneWave__Q27JAInter8BankWaveFll */
|
||||
void JAInter::BankWave::loadSceneWave(long, long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8029165C-802916B0 .text loadGroupWave__Q27JAInter8BankWaveFll */
|
||||
void JAInter::BankWave::loadGroupWave(long, long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802916B0-802916C0 .text getWaveLoadStatus__Q27JAInter8BankWaveFl */
|
||||
void JAInter::BankWave::getWaveLoadStatus(long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802916C0-80291704 .text checkAllWaveLoadStatus__Q27JAInter8BankWaveFv */
|
||||
void JAInter::BankWave::checkAllWaveLoadStatus() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
@@ -0,0 +1,202 @@
|
||||
//
|
||||
// Generated by dtk
|
||||
// Translation Unit: JAIBasic.cpp
|
||||
//
|
||||
|
||||
#include "JSystem/JAudio/JAIBasic.h"
|
||||
#include "dolphin/types.h"
|
||||
|
||||
/* 8028FC48-8028FCC4 .text __ct__8JAIBasicFv */
|
||||
JAIBasic::JAIBasic() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8028FCC4-8028FCE4 .text initDriver__8JAIBasicFP12JKRSolidHeapUlUc */
|
||||
void JAIBasic::initDriver(JKRSolidHeap*, unsigned long, unsigned char) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8028FCE4-8028FD04 .text initInterface__8JAIBasicFUc */
|
||||
void JAIBasic::initInterface(unsigned char) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8028FD04-8028FDC0 .text initInterfaceMain__8JAIBasicFv */
|
||||
void JAIBasic::initInterfaceMain() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8028FDC0-8028FE78 .text initHeap__8JAIBasicFv */
|
||||
void JAIBasic::initHeap() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8028FE78-8028FF20 .text initArchive__8JAIBasicFv */
|
||||
void JAIBasic::initArchive() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8028FF20-8028FFF8 .text initResourcePath__8JAIBasicFv */
|
||||
void JAIBasic::initResourcePath() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8028FFF8-8029002C .text setCameraInfo__8JAIBasicFP3VecP3VecPA4_fUl */
|
||||
void JAIBasic::setCameraInfo(Vec*, Vec*, float(*)[4], unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8029002C-80290068 .text initStream__8JAIBasicFv */
|
||||
void JAIBasic::initStream() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80290068-80290090 .text setRegisterTrackCallback__8JAIBasicFv */
|
||||
void JAIBasic::setRegisterTrackCallback() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80290090-8029011C .text initAudioThread__8JAIBasicFP12JKRSolidHeapUlUc */
|
||||
void JAIBasic::initAudioThread(JKRSolidHeap*, unsigned long, unsigned char) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8029011C-8029031C .text initCamera__8JAIBasicFv */
|
||||
void JAIBasic::initCamera() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8029031C-80290330 .text __defctor__Q27JAInter6CameraFv */
|
||||
void JAInter::Camera::__defctor() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80290330-8029046C .text initReadFile__8JAIBasicFv */
|
||||
void JAIBasic::initReadFile() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8029046C-802904B4 .text processFrameWork__8JAIBasicFv */
|
||||
void JAIBasic::processFrameWork() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802904B4-802904EC .text startSoundVec__8JAIBasicFUlPP8JAISoundP3VecUlUlUc */
|
||||
void JAIBasic::startSoundVec(unsigned long, JAISound**, Vec*, unsigned long, unsigned long, unsigned char) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802904EC-8029050C .text startSoundActor__8JAIBasicFUlPP8JAISoundPQ27JAInter5ActorUlUc */
|
||||
void JAIBasic::startSoundActor(unsigned long, JAISound**, JAInter::Actor*, unsigned long, unsigned char) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8029050C-8029057C .text startSoundDirectID__8JAIBasicFUlPP8JAISoundPQ27JAInter5ActorUlUc */
|
||||
void JAIBasic::startSoundDirectID(unsigned long, JAISound**, JAInter::Actor*, unsigned long, unsigned char) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8029057C-80290708 .text startSoundBasic__8JAIBasicFUlPP8JAISoundPQ27JAInter5ActorUlUcPv */
|
||||
void JAIBasic::startSoundBasic(unsigned long, JAISound**, JAInter::Actor*, unsigned long, unsigned char, void*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80290708-802907E0 .text stopSoundHandle__8JAIBasicFP8JAISoundUl */
|
||||
void JAIBasic::stopSoundHandle(JAISound*, unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802907E0-80290864 .text stopPlayingCategoryObjectSe__8JAIBasicFUcPv */
|
||||
void JAIBasic::stopPlayingCategoryObjectSe(unsigned char, void*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80290864-80290884 .text stopAllSe__8JAIBasicFUcPv */
|
||||
void JAIBasic::stopAllSe(unsigned char, void*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80290884-802908E8 .text stopActorSoundOneBuffer__8JAIBasicFPvP8JAISound */
|
||||
void JAIBasic::stopActorSoundOneBuffer(void*, JAISound*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802908E8-8029094C .text stopIDSoundOneBuffer__8JAIBasicFUlP8JAISound */
|
||||
void JAIBasic::stopIDSoundOneBuffer(unsigned long, JAISound*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8029094C-802909C0 .text stopIDActorSoundOneBuffer__8JAIBasicFUlPvP8JAISound */
|
||||
void JAIBasic::stopIDActorSoundOneBuffer(unsigned long, void*, JAISound*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802909C0-80290A5C .text stopAllSound__8JAIBasicFPv */
|
||||
void JAIBasic::stopAllSound(void*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80290A5C-80290B64 .text stopAllSound__8JAIBasicFUl */
|
||||
void JAIBasic::stopAllSound(unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80290B64-80290C74 .text stopAllSound__8JAIBasicFUlPv */
|
||||
void JAIBasic::stopAllSound(unsigned long, void*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80290C74-80290D94 .text deleteObject__8JAIBasicFPv */
|
||||
void JAIBasic::deleteObject(void*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80290D94-80290DA0 .text getMapInfoFxline__8JAIBasicFUl */
|
||||
void JAIBasic::getMapInfoFxline(unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80290DA0-80290DAC .text getMapInfoGround__8JAIBasicFUl */
|
||||
void JAIBasic::getMapInfoGround(unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80290DAC-80290DC4 .text getMapInfoFxParameter__8JAIBasicFUl */
|
||||
void JAIBasic::getMapInfoFxParameter(unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80290DC4-80290E14 .text getSoundOffsetNumberFromID__8JAIBasicFUl */
|
||||
void JAIBasic::getSoundOffsetNumberFromID(unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80290E14-80290E50 .text setSeCategoryVolume__8JAIBasicFUcUc */
|
||||
void JAIBasic::setSeCategoryVolume(unsigned char, unsigned char) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80290E50-80291034 .text setParameterSeqSync__8JAIBasicFPQ28JASystem6TTrackUs */
|
||||
void JAIBasic::setParameterSeqSync(JASystem::TTrack*, unsigned short) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80291034-80291114 .text setSeExtParameter__8JAIBasicFP8JAISound */
|
||||
void JAIBasic::setSeExtParameter(JAISound*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80291114-802911A8 .text makeSound__8JAIBasicFUl */
|
||||
void JAIBasic::makeSound(unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802911A8-80291200 .text allocStreamBuffer__8JAIBasicFPvl */
|
||||
void JAIBasic::allocStreamBuffer(void*, long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80291200-80291220 .text deallocStreamBuffer__8JAIBasicFv */
|
||||
void JAIBasic::deallocStreamBuffer() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
@@ -0,0 +1,27 @@
|
||||
//
|
||||
// Generated by dtk
|
||||
// Translation Unit: JAIConst.cpp
|
||||
//
|
||||
|
||||
#include "JSystem/JAudio/JAIConst.h"
|
||||
#include "dolphin/types.h"
|
||||
|
||||
/* 80291704-802917D8 .text transInitDataFile__7JAInterFPUcUl */
|
||||
void JAInter::transInitDataFile(unsigned char*, unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802917D8-802918CC .text loadTmpDVDFile__7JAInterFPcPPUc */
|
||||
void JAInter::loadTmpDVDFile(char*, unsigned char**) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802918CC-802918FC .text deleteTmpDVDFile__7JAInterFPPUc */
|
||||
void JAInter::deleteTmpDVDFile(unsigned char**) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802918FC-8029193C .text routeToTrack__7JAInterFUl */
|
||||
void JAInter::routeToTrack(unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
@@ -0,0 +1,27 @@
|
||||
//
|
||||
// Generated by dtk
|
||||
// Translation Unit: JAIDummyObject.cpp
|
||||
//
|
||||
|
||||
#include "JSystem/JAudio/JAIDummyObject.h"
|
||||
#include "dolphin/types.h"
|
||||
|
||||
/* 802919A0-80291B40 .text init__Q27JAInter14DummyObjectMgrFv */
|
||||
void JAInter::DummyObjectMgr::init() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80291B40-80291BAC .text getPointer__Q27JAInter14DummyObjectMgrFUlb */
|
||||
void JAInter::DummyObjectMgr::getPointer(unsigned long, bool) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80291BAC-80291C20 .text releasePointer__Q27JAInter14DummyObjectMgrFPQ27JAInter8DummyVec */
|
||||
void JAInter::DummyObjectMgr::releasePointer(JAInter::DummyVec*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80291C20-80291CCC .text check__Q27JAInter14DummyObjectMgrFv */
|
||||
void JAInter::DummyObjectMgr::check() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
@@ -0,0 +1,57 @@
|
||||
//
|
||||
// Generated by dtk
|
||||
// Translation Unit: JAIFx.cpp
|
||||
//
|
||||
|
||||
#include "JSystem/JAudio/JAIFx.h"
|
||||
#include "dolphin/types.h"
|
||||
|
||||
/* 80291CCC-80292068 .text init__Q27JAInter2FxFv */
|
||||
void JAInter::Fx::init() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80292068-80292070 .text setSceneMax__Q27JAInter2FxFUc */
|
||||
void JAInter::Fx::setSceneMax(unsigned char) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80292070-80292094 .text setBufferMax__Q27JAInter2FxFUlUlUlUl */
|
||||
void JAInter::Fx::setBufferMax(unsigned long, unsigned long, unsigned long, unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80292094-8029209C .text setTablePointer__Q27JAInter2FxFPPv */
|
||||
void JAInter::Fx::setTablePointer(void**) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8029209C-802920AC .text setBufferPointer__Q27JAInter2FxFUcPs */
|
||||
void JAInter::Fx::setBufferPointer(unsigned char, short*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802920AC-802920BC .text setScenePointer__Q27JAInter2FxFUcPv */
|
||||
void JAInter::Fx::setScenePointer(unsigned char, void*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802920BC-802920C4 .text getSceneMax__Q27JAInter2FxFv */
|
||||
void JAInter::Fx::getSceneMax() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802920C4-802920D4 .text getBufferSizeMax__Q27JAInter2FxFUc */
|
||||
void JAInter::Fx::getBufferSizeMax(unsigned char) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802920D4-802920E4 .text getBufferPointer__Q27JAInter2FxFUc */
|
||||
void JAInter::Fx::getBufferPointer(unsigned char) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802920E4-802920EC .text getFxconfigTable__Q27JAInter2FxFv */
|
||||
void JAInter::Fx::getFxconfigTable() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
@@ -0,0 +1,347 @@
|
||||
//
|
||||
// Generated by dtk
|
||||
// Translation Unit: JAIGlobalParameter.cpp
|
||||
//
|
||||
|
||||
#include "JSystem/JAudio/JAIGlobalParameter.h"
|
||||
#include "dolphin/types.h"
|
||||
|
||||
/* 802920EC-80292100 .text setParamInitDataPointer__18JAIGlobalParameterFPv */
|
||||
void JAIGlobalParameter::setParamInitDataPointer(void*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80292100-80292108 .text setParamInterfaceHeapSize__18JAIGlobalParameterFUl */
|
||||
void JAIGlobalParameter::setParamInterfaceHeapSize(unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80292108-80292110 .text setParamSoundSceneMax__18JAIGlobalParameterFUl */
|
||||
void JAIGlobalParameter::setParamSoundSceneMax(unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80292110-80292118 .text setParamSeRegistMax__18JAIGlobalParameterFUl */
|
||||
void JAIGlobalParameter::setParamSeRegistMax(unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80292118-80292120 .text setParamSeTrackMax__18JAIGlobalParameterFUl */
|
||||
void JAIGlobalParameter::setParamSeTrackMax(unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80292120-80292130 .text setParamSeqPlayTrackMax__18JAIGlobalParameterFUl */
|
||||
void JAIGlobalParameter::setParamSeqPlayTrackMax(unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80292130-80292138 .text setParamSeqControlBufferMax__18JAIGlobalParameterFUl */
|
||||
void JAIGlobalParameter::setParamSeqControlBufferMax(unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80292138-80292140 .text setParamStreamControlBufferMax__18JAIGlobalParameterFUl */
|
||||
void JAIGlobalParameter::setParamStreamControlBufferMax(unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80292140-80292148 .text setParamAutoHeapMax__18JAIGlobalParameterFUl */
|
||||
void JAIGlobalParameter::setParamAutoHeapMax(unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80292148-80292150 .text setParamStayHeapMax__18JAIGlobalParameterFUl */
|
||||
void JAIGlobalParameter::setParamStayHeapMax(unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80292150-80292158 .text setParamInputGainDown__18JAIGlobalParameterFf */
|
||||
void JAIGlobalParameter::setParamInputGainDown(float) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80292158-80292160 .text setParamOutputGainUp__18JAIGlobalParameterFf */
|
||||
void JAIGlobalParameter::setParamOutputGainUp(float) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80292160-80292168 .text setParamDistanceMax__18JAIGlobalParameterFf */
|
||||
void JAIGlobalParameter::setParamDistanceMax(float) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80292168-80292170 .text setParamMaxVolumeDistance__18JAIGlobalParameterFf */
|
||||
void JAIGlobalParameter::setParamMaxVolumeDistance(float) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80292170-80292178 .text setParamMinDistanceVolume__18JAIGlobalParameterFf */
|
||||
void JAIGlobalParameter::setParamMinDistanceVolume(float) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80292178-80292180 .text setParamSeDistanceFxParameter__18JAIGlobalParameterFUs */
|
||||
void JAIGlobalParameter::setParamSeDistanceFxParameter(unsigned short) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80292180-802921A0 .text setParamStreamDecodedBufferBlocks__18JAIGlobalParameterFUl */
|
||||
void JAIGlobalParameter::setParamStreamDecodedBufferBlocks(unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802921A0-802921B8 .text setParamStreamInsideBufferCut__18JAIGlobalParameterFb */
|
||||
void JAIGlobalParameter::setParamStreamInsideBufferCut(bool) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802921B8-802921C0 .text setParamAutoHeapRoomSize__18JAIGlobalParameterFUl */
|
||||
void JAIGlobalParameter::setParamAutoHeapRoomSize(unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802921C0-802921C8 .text setParamStayHeapSize__18JAIGlobalParameterFUl */
|
||||
void JAIGlobalParameter::setParamStayHeapSize(unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802921C8-802921F4 .text setParamSeDolbyCenterValue__18JAIGlobalParameterFUc */
|
||||
void JAIGlobalParameter::setParamSeDolbyCenterValue(unsigned char) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802921F4-802921FC .text setParamSeDolbyFrontDistanceMax__18JAIGlobalParameterFf */
|
||||
void JAIGlobalParameter::setParamSeDolbyFrontDistanceMax(float) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802921FC-80292204 .text setParamSeDolbyBehindDistanceMax__18JAIGlobalParameterFf */
|
||||
void JAIGlobalParameter::setParamSeDolbyBehindDistanceMax(float) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80292204-8029220C .text setParamInitDataFileName__18JAIGlobalParameterFPc */
|
||||
void JAIGlobalParameter::setParamInitDataFileName(char*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8029220C-80292214 .text setParamWavePath__18JAIGlobalParameterFPc */
|
||||
void JAIGlobalParameter::setParamWavePath(char*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80292214-8029221C .text setParamSequenceArchivesPath__18JAIGlobalParameterFPc */
|
||||
void JAIGlobalParameter::setParamSequenceArchivesPath(char*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8029221C-80292224 .text setParamStreamPath__18JAIGlobalParameterFPc */
|
||||
void JAIGlobalParameter::setParamStreamPath(char*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80292224-8029222C .text setParamAudioResPath__18JAIGlobalParameterFPc */
|
||||
void JAIGlobalParameter::setParamAudioResPath(char*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8029222C-80292234 .text setParamSequenceArchivesFileName__18JAIGlobalParameterFPc */
|
||||
void JAIGlobalParameter::setParamSequenceArchivesFileName(char*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80292234-8029223C .text setParamDummyObjectLifeTime__18JAIGlobalParameterFUl */
|
||||
void JAIGlobalParameter::setParamDummyObjectLifeTime(unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8029223C-80292244 .text setParamDummyObjectMax__18JAIGlobalParameterFUl */
|
||||
void JAIGlobalParameter::setParamDummyObjectMax(unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80292244-8029224C .text setParamAudioCameraMax__18JAIGlobalParameterFUl */
|
||||
void JAIGlobalParameter::setParamAudioCameraMax(unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8029224C-80292254 .text setParamSystemTrackMax__18JAIGlobalParameterFl */
|
||||
void JAIGlobalParameter::setParamSystemTrackMax(long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80292254-80292334 .text setParamSoundOutputMode__18JAIGlobalParameterFUl */
|
||||
void JAIGlobalParameter::setParamSoundOutputMode(unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80292334-80292358 .text getParamSeCategoryMax__18JAIGlobalParameterFv */
|
||||
void JAIGlobalParameter::getParamSeCategoryMax() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80292358-80292360 .text getParamSoundSceneMax__18JAIGlobalParameterFv */
|
||||
void JAIGlobalParameter::getParamSoundSceneMax() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80292360-80292368 .text getParamSeRegistMax__18JAIGlobalParameterFv */
|
||||
void JAIGlobalParameter::getParamSeRegistMax() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80292368-80292370 .text getParamSeTrackMax__18JAIGlobalParameterFv */
|
||||
void JAIGlobalParameter::getParamSeTrackMax() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80292370-80292378 .text getParamSeqTrackMax__18JAIGlobalParameterFv */
|
||||
void JAIGlobalParameter::getParamSeqTrackMax() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80292378-80292380 .text getParamSeqControlBufferMax__18JAIGlobalParameterFv */
|
||||
void JAIGlobalParameter::getParamSeqControlBufferMax() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80292380-80292388 .text getParamStreamControlBufferMax__18JAIGlobalParameterFv */
|
||||
void JAIGlobalParameter::getParamStreamControlBufferMax() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80292388-80292390 .text getParamStreamParameterBufferMax__18JAIGlobalParameterFv */
|
||||
void JAIGlobalParameter::getParamStreamParameterBufferMax() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80292390-80292398 .text getParamAutoHeapMax__18JAIGlobalParameterFv */
|
||||
void JAIGlobalParameter::getParamAutoHeapMax() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80292398-802923A0 .text getParamStayHeapMax__18JAIGlobalParameterFv */
|
||||
void JAIGlobalParameter::getParamStayHeapMax() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802923A0-802923A8 .text getParamSeqPlayTrackMax__18JAIGlobalParameterFv */
|
||||
void JAIGlobalParameter::getParamSeqPlayTrackMax() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802923A8-802923B0 .text getParamDistanceMax__18JAIGlobalParameterFv */
|
||||
void JAIGlobalParameter::getParamDistanceMax() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802923B0-802923B8 .text getParamMaxVolumeDistance__18JAIGlobalParameterFv */
|
||||
void JAIGlobalParameter::getParamMaxVolumeDistance() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802923B8-802923C0 .text getParamMinDistanceVolume__18JAIGlobalParameterFv */
|
||||
void JAIGlobalParameter::getParamMinDistanceVolume() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802923C0-802923C8 .text getParamAutoHeapRoomSize__18JAIGlobalParameterFv */
|
||||
void JAIGlobalParameter::getParamAutoHeapRoomSize() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802923C8-802923D0 .text getParamStayHeapSize__18JAIGlobalParameterFv */
|
||||
void JAIGlobalParameter::getParamStayHeapSize() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802923D0-802923D8 .text getParamSeDolbyCenterValue__18JAIGlobalParameterFv */
|
||||
void JAIGlobalParameter::getParamSeDolbyCenterValue() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802923D8-802923E0 .text getParamSeDolbyFrontDistanceMax__18JAIGlobalParameterFv */
|
||||
void JAIGlobalParameter::getParamSeDolbyFrontDistanceMax() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802923E0-802923E8 .text getParamSeDolbyBehindDistanceMax__18JAIGlobalParameterFv */
|
||||
void JAIGlobalParameter::getParamSeDolbyBehindDistanceMax() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802923E8-802923F0 .text getParamInitDataFileName__18JAIGlobalParameterFv */
|
||||
void JAIGlobalParameter::getParamInitDataFileName() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802923F0-802923F8 .text getParamWavePath__18JAIGlobalParameterFv */
|
||||
void JAIGlobalParameter::getParamWavePath() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802923F8-80292400 .text getParamSequenceArchivesPath__18JAIGlobalParameterFv */
|
||||
void JAIGlobalParameter::getParamSequenceArchivesPath() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80292400-80292408 .text getParamStreamPath__18JAIGlobalParameterFv */
|
||||
void JAIGlobalParameter::getParamStreamPath() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80292408-80292410 .text getParamAudioResPath__18JAIGlobalParameterFv */
|
||||
void JAIGlobalParameter::getParamAudioResPath() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80292410-80292418 .text getParamSequenceArchivesFileName__18JAIGlobalParameterFv */
|
||||
void JAIGlobalParameter::getParamSequenceArchivesFileName() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80292418-80292420 .text getParamDopplarMoveTime__18JAIGlobalParameterFv */
|
||||
void JAIGlobalParameter::getParamDopplarMoveTime() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80292420-80292428 .text getParamDistanceParameterMoveTime__18JAIGlobalParameterFv */
|
||||
void JAIGlobalParameter::getParamDistanceParameterMoveTime() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80292428-80292430 .text getParamDummyObjectMax__18JAIGlobalParameterFv */
|
||||
void JAIGlobalParameter::getParamDummyObjectMax() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80292430-80292438 .text getParamSeqMuteVolumeSePlay__18JAIGlobalParameterFv */
|
||||
void JAIGlobalParameter::getParamSeqMuteVolumeSePlay() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80292438-80292440 .text getParamSeqMuteMoveSpeedSePlay__18JAIGlobalParameterFv */
|
||||
void JAIGlobalParameter::getParamSeqMuteMoveSpeedSePlay() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80292440-80292448 .text getParamAudioCameraMax__18JAIGlobalParameterFv */
|
||||
void JAIGlobalParameter::getParamAudioCameraMax() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80292448-80292450 .text getParamSeqParameterLines__18JAIGlobalParameterFv */
|
||||
void JAIGlobalParameter::getParamSeqParameterLines() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80292450-80292458 .text getParamStreamParameterLines__18JAIGlobalParameterFv */
|
||||
void JAIGlobalParameter::getParamStreamParameterLines() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80292458-80292460 .text getParamSeDistanceWaitMax__18JAIGlobalParameterFv */
|
||||
void JAIGlobalParameter::getParamSeDistanceWaitMax() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
@@ -0,0 +1,17 @@
|
||||
//
|
||||
// Generated by dtk
|
||||
// Translation Unit: JAIInitData.cpp
|
||||
//
|
||||
|
||||
#include "JSystem/JAudio/JAIInitData.h"
|
||||
#include "dolphin/types.h"
|
||||
|
||||
/* 80292460-80292548 .text checkInitDataFile__Q27JAInter8InitDataFv */
|
||||
void JAInter::InitData::checkInitDataFile() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80292548-8029285C .text checkInitDataOnMemory__Q27JAInter8InitDataFv */
|
||||
void JAInter::InitData::checkInitDataOnMemory() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
@@ -0,0 +1,112 @@
|
||||
//
|
||||
// Generated by dtk
|
||||
// Translation Unit: JAISeMgr.cpp
|
||||
//
|
||||
|
||||
#include "JSystem/JAudio/JAISeMgr.h"
|
||||
#include "dolphin/types.h"
|
||||
|
||||
/* 8029285C-80293370 .text init__Q27JAInter5SeMgrFv */
|
||||
void JAInter::SeMgr::init() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80293370-80293460 .text __ct__Q27JAInter11SeParameterFv */
|
||||
JAInter::SeParameter::SeParameter() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80293460-80293508 .text startSeSequence__Q27JAInter5SeMgrFv */
|
||||
void JAInter::SeMgr::startSeSequence() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80293508-80293530 .text processGFrameSe__Q27JAInter5SeMgrFv */
|
||||
void JAInter::SeMgr::processGFrameSe() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80293530-80293C94 .text checkNextFrameSe__Q27JAInter5SeMgrFv */
|
||||
void JAInter::SeMgr::checkNextFrameSe() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80293C94-802941DC .text checkPlayingSe__Q27JAInter5SeMgrFv */
|
||||
void JAInter::SeMgr::checkPlayingSe() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802941DC-802942B0 .text setSeqMuteFromSeStart__Q27JAInter5SeMgrFP8JAISound */
|
||||
void JAInter::SeMgr::setSeqMuteFromSeStart(JAISound*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802942B0-80294380 .text clearSeqMuteFromSeStop__Q27JAInter5SeMgrFP8JAISound */
|
||||
void JAInter::SeMgr::clearSeqMuteFromSeStop(JAISound*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80294380-802944A0 .text checkSeMovePara__Q27JAInter5SeMgrFv */
|
||||
void JAInter::SeMgr::checkSeMovePara() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802944A0-802945FC .text sendSeAllParameter__Q27JAInter5SeMgrFP8JAISound */
|
||||
void JAInter::SeMgr::sendSeAllParameter(JAISound*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802945FC-802946F0 .text checkPlayingSeUpdateMultiplication__Q27JAInter5SeMgrFP8JAISoundPQ27JAInter13SeqUpdateDataPfPQ27JAInter11MoveParaSetfUcPf */
|
||||
void JAInter::SeMgr::checkPlayingSeUpdateMultiplication(JAISound*, JAInter::SeqUpdateData*, float*, JAInter::MoveParaSet*, float, unsigned char, float*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802946F0-8029480C .text checkPlayingSeUpdateAddition__Q27JAInter5SeMgrFP8JAISoundPQ27JAInter13SeqUpdateDataPfPQ27JAInter11MoveParaSetUcPff */
|
||||
void JAInter::SeMgr::checkPlayingSeUpdateAddition(JAISound*, JAInter::SeqUpdateData*, float*, JAInter::MoveParaSet*, unsigned char, float*, float) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8029480C-80294814 .text changeIDToCategory__Q27JAInter5SeMgrFUl */
|
||||
void JAInter::SeMgr::changeIDToCategory(unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80294814-80294938 .text releaseSeRegist__Q27JAInter5SeMgrFP8JAISound */
|
||||
void JAInter::SeMgr::releaseSeRegist(JAISound*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80294938-80294994 .text getSeParametermeterPointer__Q27JAInter5SeMgrFv */
|
||||
void JAInter::SeMgr::getSeParametermeterPointer() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80294994-80294A10 .text releaseSeParameterPointer__Q27JAInter5SeMgrFPQ27JAInter11SeParameter */
|
||||
void JAInter::SeMgr::releaseSeParameterPointer(JAInter::SeParameter*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80294A10-80294EBC .text storeSeBuffer__Q27JAInter5SeMgrFPP8JAISoundPQ27JAInter5ActorUlUlUcPv */
|
||||
void JAInter::SeMgr::storeSeBuffer(JAISound**, JAInter::Actor*, unsigned long, unsigned long, unsigned char, void*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80294EBC-80294F14 .text releaseSeBuffer__Q27JAInter5SeMgrFP8JAISoundUl */
|
||||
void JAInter::SeMgr::releaseSeBuffer(JAISound*, unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80294F14-80294F2C .text __ct__Q27JAInter19MoveParaSetInitZeroFv */
|
||||
JAInter::MoveParaSetInitZero::MoveParaSetInitZero() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80294F2C-80294F44 .text __ct__Q27JAInter19MoveParaSetInitHalfFv */
|
||||
JAInter::MoveParaSetInitHalf::MoveParaSetInitHalf() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80294F44-80294F5C .text __defctor__Q27JAInter11MoveParaSetFv */
|
||||
void JAInter::MoveParaSet::__defctor() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
@@ -0,0 +1,52 @@
|
||||
//
|
||||
// Generated by dtk
|
||||
// Translation Unit: JAISequenceHeap.cpp
|
||||
//
|
||||
|
||||
#include "JSystem/JAudio/JAISequenceHeap.h"
|
||||
#include "dolphin/types.h"
|
||||
|
||||
/* 80294F5C-8029531C .text init__Q27JAInter7HeapMgrFUcUlUcUl */
|
||||
void JAInter::HeapMgr::init(unsigned char, unsigned long, unsigned char, unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8029531C-80295324 .text getAutoHeapPointer__Q27JAInter7HeapMgrFv */
|
||||
void JAInter::HeapMgr::getAutoHeapPointer() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80295324-8029541C .text checkOnMemory__Q27JAInter7HeapMgrFUlPUc */
|
||||
void JAInter::HeapMgr::checkOnMemory(unsigned long, unsigned char*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8029541C-80295440 .text releaseAutoHeapPointer__Q27JAInter7HeapMgrFUc */
|
||||
void JAInter::HeapMgr::releaseAutoHeapPointer(unsigned char) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80295440-80295518 .text checkUsefulAutoHeapPosition__Q27JAInter7HeapMgrFv */
|
||||
void JAInter::HeapMgr::checkUsefulAutoHeapPosition() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80295518-80295560 .text getFreeAutoHeapPointer__Q27JAInter7HeapMgrFUcUl */
|
||||
void JAInter::HeapMgr::getFreeAutoHeapPointer(unsigned char, unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80295560-80295658 .text getFreeStayHeapPointer__Q27JAInter7HeapMgrFUlUl */
|
||||
void JAInter::HeapMgr::getFreeStayHeapPointer(unsigned long, unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80295658-8029566C .text setAutoHeapLoadedFlag__Q27JAInter7HeapMgrFUcUc */
|
||||
void JAInter::HeapMgr::setAutoHeapLoadedFlag(unsigned char, unsigned char) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8029566C-80295684 .text __ct__Q27JAInter9HeapBlockFv */
|
||||
JAInter::HeapBlock::HeapBlock() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
@@ -0,0 +1,142 @@
|
||||
//
|
||||
// Generated by dtk
|
||||
// Translation Unit: JAISequenceMgr.cpp
|
||||
//
|
||||
|
||||
#include "JSystem/JAudio/JAISequenceMgr.h"
|
||||
#include "dolphin/types.h"
|
||||
|
||||
/* 80295684-802960A0 .text init__Q27JAInter11SequenceMgrFv */
|
||||
void JAInter::SequenceMgr::init() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802960A0-80296744 .text __ct__Q27JAInter13SeqUpdateDataFv */
|
||||
JAInter::SeqUpdateData::SeqUpdateData() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80296744-80296780 .text __dt__Q27JAInter15PlayerParameterFv */
|
||||
JAInter::PlayerParameter::~PlayerParameter() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80296780-802967B4 .text __ct__Q27JAInter15PlayerParameterFv */
|
||||
JAInter::PlayerParameter::PlayerParameter() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802967B4-80296820 .text getArchiveName__Q27JAInter11SequenceMgrFPc */
|
||||
void JAInter::SequenceMgr::getArchiveName(char*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80296820-80296828 .text setArchivePointer__Q27JAInter11SequenceMgrFP10JKRArchive */
|
||||
void JAInter::SequenceMgr::setArchivePointer(JKRArchive*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80296828-80296860 .text processGFrameSequence__Q27JAInter11SequenceMgrFv */
|
||||
void JAInter::SequenceMgr::processGFrameSequence() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80296860-80296C24 .text checkEntriedSeq__Q27JAInter11SequenceMgrFv */
|
||||
void JAInter::SequenceMgr::checkEntriedSeq() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80296C24-80296CCC .text checkFadeoutSeq__Q27JAInter11SequenceMgrFv */
|
||||
void JAInter::SequenceMgr::checkFadeoutSeq() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80296CCC-80296D6C .text checkStoppedSeq__Q27JAInter11SequenceMgrFv */
|
||||
void JAInter::SequenceMgr::checkStoppedSeq() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80296D6C-80296E6C .text checkPlayingSeq__Q27JAInter11SequenceMgrFv */
|
||||
void JAInter::SequenceMgr::checkPlayingSeq() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80296E6C-80296F00 .text checkStartedSeq__Q27JAInter11SequenceMgrFv */
|
||||
void JAInter::SequenceMgr::checkStartedSeq() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80296F00-8029713C .text checkReadSeq__Q27JAInter11SequenceMgrFv */
|
||||
void JAInter::SequenceMgr::checkReadSeq() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8029713C-80297238 .text checkSeqWave__Q27JAInter11SequenceMgrFv */
|
||||
void JAInter::SequenceMgr::checkSeqWave() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80297238-80297378 .text checkPlayingSeqUpdateMultiplication__Q27JAInter11SequenceMgrFUlUcUlPQ27JAInter11MoveParaSetPUlUcPf */
|
||||
void JAInter::SequenceMgr::checkPlayingSeqUpdateMultiplication(unsigned long, unsigned char, unsigned long, JAInter::MoveParaSet*, unsigned long*, unsigned char, float*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80297378-802974F8 .text checkPlayingSeqUpdateAddition__Q27JAInter11SequenceMgrFUlUcUlPQ27JAInter11MoveParaSetPUlUcPff */
|
||||
void JAInter::SequenceMgr::checkPlayingSeqUpdateAddition(unsigned long, unsigned char, unsigned long, JAInter::MoveParaSet*, unsigned long*, unsigned char, float*, float) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802974F8-80297618 .text checkPlayingSeqUpdateTrack__Q27JAInter11SequenceMgrFUlUlPQ27JAInter11MoveParaSetPUlUcPf */
|
||||
void JAInter::SequenceMgr::checkPlayingSeqUpdateTrack(unsigned long, unsigned long, JAInter::MoveParaSet*, unsigned long*, unsigned char, float*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80297618-80297E18 .text checkPlayingSeqTrack__Q27JAInter11SequenceMgrFUl */
|
||||
void JAInter::SequenceMgr::checkPlayingSeqTrack(unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80297E18-80297F14 .text stopSeq__Q27JAInter11SequenceMgrFP8JAISound */
|
||||
void JAInter::SequenceMgr::stopSeq(JAISound*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80297F14-80297FD0 .text checkDvdLoadArc__Q27JAInter11SequenceMgrFUlUl */
|
||||
void JAInter::SequenceMgr::checkDvdLoadArc(unsigned long, unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80297FD0-80298208 .text storeSeqBuffer__Q27JAInter11SequenceMgrFPP8JAISoundPQ27JAInter5ActorUlUlUcPv */
|
||||
void JAInter::SequenceMgr::storeSeqBuffer(JAISound**, JAInter::Actor*, unsigned long, unsigned long, unsigned char, void*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80298208-802982C0 .text releaseSeqBuffer__Q27JAInter11SequenceMgrFP8JAISoundUl */
|
||||
void JAInter::SequenceMgr::releaseSeqBuffer(JAISound*, unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802982C0-802982D0 .text getPlayTrackInfo__Q27JAInter11SequenceMgrFUl */
|
||||
void JAInter::SequenceMgr::getPlayTrackInfo(unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802982D0-802982F0 .text __ct__Q27JAInter7MuteBitFv */
|
||||
JAInter::MuteBit::MuteBit() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802982F0-8029832C .text __dt__Q38JASystem6Kernel8TPortCmdFv */
|
||||
JASystem::Kernel::TPortCmd::~TPortCmd() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8029832C-80298334 .text getInterface__8JAIBasicFv */
|
||||
void JAIBasic::getInterface() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80298334-8029859C .text init__Q27JAInter12SeqParameterFv */
|
||||
void JAInter::SeqParameter::init() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
@@ -0,0 +1,322 @@
|
||||
//
|
||||
// Generated by dtk
|
||||
// Translation Unit: JAISound.cpp
|
||||
//
|
||||
|
||||
#include "JSystem/JAudio/JAISound.h"
|
||||
#include "dolphin/types.h"
|
||||
|
||||
/* 8029859C-802985C4 .text __ct__8JAISoundFv */
|
||||
JAISound::JAISound() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802985C4-802985E8 .text getSeCategoryNumber__8JAISoundFv */
|
||||
void JAISound::getSeCategoryNumber() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802985E8-802985F4 .text getSwBit__8JAISoundFv */
|
||||
void JAISound::getSwBit() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802985F4-80298624 .text checkSwBit__8JAISoundFUl */
|
||||
void JAISound::checkSwBit(unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80298624-80298630 .text getInfoPriority__8JAISoundFv */
|
||||
void JAISound::getInfoPriority() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80298630-80298648 .text clearMainSoundPPointer__8JAISoundFv */
|
||||
void JAISound::clearMainSoundPPointer() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80298648-80298688 .text start__8JAISoundFUl */
|
||||
void JAISound::start(unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80298688-802986B8 .text stop__8JAISoundFUl */
|
||||
void JAISound::stop(unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802986B8-8029878C .text setVolume__8JAISoundFfUlUc */
|
||||
void JAISound::setVolume(float, unsigned long, unsigned char) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8029878C-80298864 .text setPan__8JAISoundFfUlUc */
|
||||
void JAISound::setPan(float, unsigned long, unsigned char) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80298864-8029893C .text setPitch__8JAISoundFfUlUc */
|
||||
void JAISound::setPitch(float, unsigned long, unsigned char) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8029893C-80298A04 .text setFxmix__8JAISoundFfUlUc */
|
||||
void JAISound::setFxmix(float, unsigned long, unsigned char) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80298A04-80298ACC .text setDolby__8JAISoundFfUlUc */
|
||||
void JAISound::setDolby(float, unsigned long, unsigned char) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80298ACC-80298B74 .text setTempoProportion__8JAISoundFfUl */
|
||||
void JAISound::setTempoProportion(float, unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80298B74-80298C28 .text setPortData__8JAISoundFUcUs */
|
||||
void JAISound::setPortData(unsigned char, unsigned short) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80298C28-80298CD8 .text setPrepareFlag__8JAISoundFUc */
|
||||
void JAISound::setPrepareFlag(unsigned char) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80298CD8-80298E30 .text setDistanceVolumeCommon__8JAISoundFfUc */
|
||||
void JAISound::setDistanceVolumeCommon(float, unsigned char) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80298E30-80298F8C .text setDistancePanCommon__8JAISoundFv */
|
||||
void JAISound::setDistancePanCommon() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80298F8C-80299178 .text setPositionDopplarCommon__8JAISoundFUl */
|
||||
void JAISound::setPositionDopplarCommon(unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80299178-8029925C .text setSeqInterVolume__8JAISoundFUcfUl */
|
||||
void JAISound::setSeqInterVolume(unsigned char, float, unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8029925C-802993AC .text setSeqInterPan__8JAISoundFUcfUl */
|
||||
void JAISound::setSeqInterPan(unsigned char, float, unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802993AC-802994FC .text setSeqInterPitch__8JAISoundFUcfUl */
|
||||
void JAISound::setSeqInterPitch(unsigned char, float, unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802994FC-8029964C .text setSeqInterFxmix__8JAISoundFUcfUl */
|
||||
void JAISound::setSeqInterFxmix(unsigned char, float, unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8029964C-802997E4 .text setSeqInterDolby__8JAISoundFUcfUl */
|
||||
void JAISound::setSeqInterDolby(unsigned char, float, unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802997E4-80299884 .text setSeqTempoProportion__8JAISoundFfUl */
|
||||
void JAISound::setSeqTempoProportion(float, unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80299884-802999F4 .text setSeqPortData__8JAISoundFUcUsUl */
|
||||
void JAISound::setSeqPortData(unsigned char, unsigned short, unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802999F4-80299B14 .text setTrackVolume__8JAISoundFUcfUl */
|
||||
void JAISound::setTrackVolume(unsigned char, float, unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80299B14-80299BAC .text setTrackInterruptSwitch__8JAISoundFUcUc */
|
||||
void JAISound::setTrackInterruptSwitch(unsigned char, unsigned char) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80299BAC-80299CD4 .text setTrackPortData__8JAISoundFUcUcUs */
|
||||
void JAISound::setTrackPortData(unsigned char, unsigned char, unsigned short) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80299CD4-80299DE8 .text setSeInterRandomPara__8JAISoundFPfUlff */
|
||||
void JAISound::setSeInterRandomPara(float*, unsigned long, float, float) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80299DE8-80299E88 .text setSeInterVolume__8JAISoundFUcfUlUc */
|
||||
void JAISound::setSeInterVolume(unsigned char, float, unsigned long, unsigned char) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80299E88-80299F28 .text setSeInterPan__8JAISoundFUcfUlUc */
|
||||
void JAISound::setSeInterPan(unsigned char, float, unsigned long, unsigned char) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80299F28-80299FE0 .text setSeInterPitch__8JAISoundFUcfUlf */
|
||||
void JAISound::setSeInterPitch(unsigned char, float, unsigned long, float) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80299FE0-8029A080 .text setSeInterFxmix__8JAISoundFUcfUlUc */
|
||||
void JAISound::setSeInterFxmix(unsigned char, float, unsigned long, unsigned char) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8029A080-8029A120 .text setSeInterDolby__8JAISoundFUcfUlUc */
|
||||
void JAISound::setSeInterDolby(unsigned char, float, unsigned long, unsigned char) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8029A120-8029A1C4 .text setSePortData__8JAISoundFUcUs */
|
||||
void JAISound::setSePortData(unsigned char, unsigned short) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8029A1C4-8029A2E4 .text setSeDistanceParameters__8JAISoundFv */
|
||||
void JAISound::setSeDistanceParameters() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8029A2E4-8029A364 .text setSeDistanceVolume__8JAISoundFUc */
|
||||
void JAISound::setSeDistanceVolume(unsigned char) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8029A364-8029A3BC .text setSeDistancePan__8JAISoundFUc */
|
||||
void JAISound::setSeDistancePan(unsigned char) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8029A3BC-8029A544 .text setSeDistancePitch__8JAISoundFUc */
|
||||
void JAISound::setSeDistancePitch(unsigned char) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8029A544-8029A5CC .text setSePositionDopplar__8JAISoundFv */
|
||||
void JAISound::setSePositionDopplar() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8029A5CC-8029A6B0 .text setSeDistanceFxmix__8JAISoundFUc */
|
||||
void JAISound::setSeDistanceFxmix(unsigned char) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8029A6B0-8029A6B4 .text setSeDistanceFir__8JAISoundFUc */
|
||||
void JAISound::setSeDistanceFir(unsigned char) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8029A6B4-8029A788 .text setSeDistanceDolby__8JAISoundFUc */
|
||||
void JAISound::setSeDistanceDolby(unsigned char) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8029A788-8029A86C .text setStreamInterVolume__8JAISoundFUcfUl */
|
||||
void JAISound::setStreamInterVolume(unsigned char, float, unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8029A86C-8029A950 .text setStreamInterPitch__8JAISoundFUcfUl */
|
||||
void JAISound::setStreamInterPitch(unsigned char, float, unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8029A950-8029AA34 .text setStreamInterPan__8JAISoundFUcfUl */
|
||||
void JAISound::setStreamInterPan(unsigned char, float, unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8029AA34-8029AA84 .text setStreamPrepareFlag__8JAISoundFUc */
|
||||
void JAISound::setStreamPrepareFlag(unsigned char) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8029AA84-8029ACF0 .text setPauseMode__8JAISoundFUcUc */
|
||||
void JAISound::setPauseMode(unsigned char, unsigned char) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8029ACF0-8029AD54 .text setSeqPrepareFlag__8JAISoundFUc */
|
||||
void JAISound::setSeqPrepareFlag(unsigned char) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8029AD54-8029ADA8 .text getSeqInterVolume__8JAISoundFUc */
|
||||
void JAISound::getSeqInterVolume(unsigned char) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8029ADA8-8029AE34 .text getStreamInterVolume__8JAISoundFUc */
|
||||
void JAISound::getStreamInterVolume(unsigned char) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8029AE34-8029AE3C .text getSeqParameter__8JAISoundFv */
|
||||
void JAISound::getSeqParameter() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8029AE3C-8029AE44 .text getSeParameter__8JAISoundFv */
|
||||
void JAISound::getSeParameter() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8029AE44-8029AE4C .text getStreamParameter__8JAISoundFv */
|
||||
void JAISound::getStreamParameter() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8029AE4C-8029AE88 .text getTrackPortRoute__8JAISoundFUcUc */
|
||||
void JAISound::getTrackPortRoute(unsigned char, unsigned char) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8029AE88-8029AEF8 .text checkSoundHandle__8JAISoundFUlPv */
|
||||
void JAISound::checkSoundHandle(unsigned long, void*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8029AEF8-8029AFCC .text initParameter__8JAISoundFPP8JAISoundPQ27JAInter5ActorUlUlUcPv */
|
||||
void JAISound::initParameter(JAISound**, JAInter::Actor*, unsigned long, unsigned long, unsigned char, void*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8029AFCC-8029B07C .text set__Q27JAInter11MoveParaSetFfUl */
|
||||
void JAInter::MoveParaSet::set(float, unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8029B07C-8029B0C4 .text move__Q27JAInter11MoveParaSetFv */
|
||||
void JAInter::MoveParaSet::move() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8029B0C4-8029B4AC .text init__Q27JAInter9LinkSoundFP8JAISoundUl */
|
||||
void JAInter::LinkSound::init(JAISound*, unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8029B4AC-8029B500 .text getSound__Q27JAInter9LinkSoundFv */
|
||||
void JAInter::LinkSound::getSound() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8029B500-8029B570 .text releaseSound__Q27JAInter9LinkSoundFP8JAISound */
|
||||
void JAInter::LinkSound::releaseSound(JAISound*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
@@ -0,0 +1,27 @@
|
||||
//
|
||||
// Generated by dtk
|
||||
// Translation Unit: JAISoundTable.cpp
|
||||
//
|
||||
|
||||
#include "JSystem/JAudio/JAISoundTable.h"
|
||||
#include "dolphin/types.h"
|
||||
|
||||
/* 8029B570-8029B6FC .text init__Q27JAInter10SoundTableFPUcUl */
|
||||
void JAInter::SoundTable::init(unsigned char*, unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8029B6FC-8029B8CC .text getInfoPointer__Q27JAInter10SoundTableFUl */
|
||||
void JAInter::SoundTable::getInfoPointer(unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8029B8CC-8029B99C .text getInfoFormat__Q27JAInter10SoundTableFUl */
|
||||
void JAInter::SoundTable::getInfoFormat(unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8029B99C-8029B9A4 .text getCategotyMax__Q27JAInter10SoundTableFv */
|
||||
void JAInter::SoundTable::getCategotyMax() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
@@ -0,0 +1,197 @@
|
||||
//
|
||||
// Generated by dtk
|
||||
// Translation Unit: JAIStreamMgr.cpp
|
||||
//
|
||||
|
||||
#include "JSystem/JAudio/JAIStreamMgr.h"
|
||||
#include "dolphin/types.h"
|
||||
|
||||
/* 8029B9A4-8029BEB4 .text init__Q27JAInter9StreamMgrFv */
|
||||
void JAInter::StreamMgr::init() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8029BEB4-8029C04C .text storeStreamBuffer__Q27JAInter9StreamMgrFPP8JAISoundPQ27JAInter5ActorUlUlUcPv */
|
||||
void JAInter::StreamMgr::storeStreamBuffer(JAISound**, JAInter::Actor*, unsigned long, unsigned long, unsigned char, void*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8029C04C-8029C0F0 .text releaseStreamBuffer__Q27JAInter9StreamMgrFP8JAISoundUl */
|
||||
void JAInter::StreamMgr::releaseStreamBuffer(JAISound*, unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8029C0F0-8029C128 .text processGFrameStream__Q27JAInter9StreamMgrFv */
|
||||
void JAInter::StreamMgr::processGFrameStream() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8029C128-8029C1D8 .text checkEntriedStream__Q27JAInter9StreamMgrFv */
|
||||
void JAInter::StreamMgr::checkEntriedStream() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8029C1D8-8029C2AC .text checkWaitStream__Q27JAInter9StreamMgrFv */
|
||||
void JAInter::StreamMgr::checkWaitStream() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8029C2AC-8029C344 .text checkRequestStream__Q27JAInter9StreamMgrFv */
|
||||
void JAInter::StreamMgr::checkRequestStream() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8029C344-8029C730 .text checkPlayingStream__Q27JAInter9StreamMgrFv */
|
||||
void JAInter::StreamMgr::checkPlayingStream() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8029C730-8029C858 .text Play_DirectPCM__Q27JAInter9StreamLibFPQ28JASystem11TDSPChannelPsUsUlsUs */
|
||||
void JAInter::StreamLib::Play_DirectPCM(JASystem::TDSPChannel*, short*, unsigned short, unsigned long, short, unsigned short) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8029C858-8029C864 .text Get_DirectPCM_LoopRemain__Q27JAInter9StreamLibFPQ38JASystem12DSPInterface9DSPBuffer */
|
||||
void JAInter::StreamLib::Get_DirectPCM_LoopRemain(JASystem::DSPInterface::DSPBuffer*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8029C864-8029C86C .text Get_DirectPCM_Remain__Q27JAInter9StreamLibFPQ38JASystem12DSPInterface9DSPBuffer */
|
||||
void JAInter::StreamLib::Get_DirectPCM_Remain(JASystem::DSPInterface::DSPBuffer*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8029C86C-8029C8BC .text init__Q27JAInter9StreamLibFb */
|
||||
void JAInter::StreamLib::init(bool) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8029C8BC-8029CBF0 .text allocBuffer__Q27JAInter9StreamLibFPvl */
|
||||
void JAInter::StreamLib::allocBuffer(void*, long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8029CBF0-8029CC50 .text deallocBuffer__Q27JAInter9StreamLibFv */
|
||||
void JAInter::StreamLib::deallocBuffer() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8029CC50-8029CCA4 .text getNeedBufferSize__Q27JAInter9StreamLibFv */
|
||||
void JAInter::StreamLib::getNeedBufferSize() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8029CCA4-8029CCAC .text setAllocBufferCallback__Q27JAInter9StreamLibFPFv_v */
|
||||
void JAInter::StreamLib::setAllocBufferCallback(void (*)(void)) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8029CCAC-8029CCB4 .text setDeallocBufferCallback__Q27JAInter9StreamLibFPFv_v */
|
||||
void JAInter::StreamLib::setDeallocBufferCallback(void (*)(void)) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8029CCB4-8029CCD0 .text sync__Q27JAInter9StreamLibFl */
|
||||
void JAInter::StreamLib::sync(long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8029CCD0-8029CD8C .text __DecodePCM__Q27JAInter9StreamLibFv */
|
||||
void JAInter::StreamLib::__DecodePCM() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8029CD8C-8029D134 .text __DecodeADPCM__Q27JAInter9StreamLibFv */
|
||||
void JAInter::StreamLib::__DecodeADPCM() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8029D134-8029D1C8 .text __Decode__Q27JAInter9StreamLibFv */
|
||||
void JAInter::StreamLib::__Decode() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8029D1C8-8029D1E8 .text __LoadFin__Q27JAInter9StreamLibFlP11DVDFileInfo */
|
||||
void JAInter::StreamLib::__LoadFin(long, DVDFileInfo*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8029D1E8-8029D328 .text LoadADPCM__Q27JAInter9StreamLibFv */
|
||||
void JAInter::StreamLib::LoadADPCM() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8029D328-8029D338 .text setVolume__Q27JAInter9StreamLibFf */
|
||||
void JAInter::StreamLib::setVolume(float) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8029D338-8029D348 .text setPitch__Q27JAInter9StreamLibFf */
|
||||
void JAInter::StreamLib::setPitch(float) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8029D348-8029D358 .text setPan__Q27JAInter9StreamLibFf */
|
||||
void JAInter::StreamLib::setPan(float) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8029D358-8029D368 .text stop__Q27JAInter9StreamLibFv */
|
||||
void JAInter::StreamLib::stop() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8029D368-8029D384 .text setPauseFlag__Q27JAInter9StreamLibFUc */
|
||||
void JAInter::StreamLib::setPauseFlag(unsigned char) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8029D384-8029D3A4 .text clearPauseFlag__Q27JAInter9StreamLibFUc */
|
||||
void JAInter::StreamLib::clearPauseFlag(unsigned char) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8029D3A4-8029D3AC .text setPrepareFlag__Q27JAInter9StreamLibFUc */
|
||||
void JAInter::StreamLib::setPrepareFlag(unsigned char) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8029D3AC-8029D3B4 .text setOutputMode__Q27JAInter9StreamLibFUl */
|
||||
void JAInter::StreamLib::setOutputMode(unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8029D3B4-8029D3BC .text getPlayingFlag__Q27JAInter9StreamLibFv */
|
||||
void JAInter::StreamLib::getPlayingFlag() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8029D3BC-8029D424 .text setDecodedBufferBlocks__Q27JAInter9StreamLibFUl */
|
||||
void JAInter::StreamLib::setDecodedBufferBlocks(unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8029D424-8029D464 .text LoopInit__Q27JAInter9StreamLibFv */
|
||||
void JAInter::StreamLib::LoopInit() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8029D464-8029D4C0 .text directPlayWait__Q27JAInter9StreamLibFPv */
|
||||
void JAInter::StreamLib::directPlayWait(void*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8029D4C0-8029D560 .text start__Q27JAInter9StreamLibFPcUlPv */
|
||||
void JAInter::StreamLib::start(char*, unsigned long, void*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8029D560-8029D7C0 .text __start__Q27JAInter9StreamLibFv */
|
||||
void JAInter::StreamLib::__start() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8029D7C0-8029E14C .text callBack__Q27JAInter9StreamLibFPv */
|
||||
void JAInter::StreamLib::callBack(void*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
@@ -0,0 +1,57 @@
|
||||
//
|
||||
// Generated by dtk
|
||||
// Translation Unit: JAISystemInterface.cpp
|
||||
//
|
||||
|
||||
#include "JSystem/JAudio/JAISystemInterface.h"
|
||||
#include "dolphin/types.h"
|
||||
|
||||
/* 8029E188-8029E1B4 .text checkFileExsistence__Q27JAInter15SystemInterfaceFPc */
|
||||
void JAInter::SystemInterface::checkFileExsistence(char*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8029E1B4-8029E2A0 .text checkSeqActiveFlag__Q27JAInter15SystemInterfaceFPQ28JASystem6TTrack */
|
||||
void JAInter::SystemInterface::checkSeqActiveFlag(JASystem::TTrack*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8029E2A0-8029E478 .text trackToSeqp__Q27JAInter15SystemInterfaceFP8JAISoundUc */
|
||||
void JAInter::SystemInterface::trackToSeqp(JAISound*, unsigned char) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8029E478-8029E494 .text setSeqPortargsF32__Q27JAInter15SystemInterfaceFPQ27JAInter13SeqUpdateDataUlUcf */
|
||||
void JAInter::SystemInterface::setSeqPortargsF32(JAInter::SeqUpdateData*, unsigned long, unsigned char, float) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8029E494-8029E4B0 .text setSeqPortargsU32__Q27JAInter15SystemInterfaceFPQ27JAInter13SeqUpdateDataUlUcUl */
|
||||
void JAInter::SystemInterface::setSeqPortargsU32(JAInter::SeqUpdateData*, unsigned long, unsigned char, unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8029E4B0-8029E518 .text rootInit__Q27JAInter15SystemInterfaceFPQ27JAInter13SeqUpdateData */
|
||||
void JAInter::SystemInterface::rootInit(JAInter::SeqUpdateData*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8029E518-8029E5B4 .text trackInit__Q27JAInter15SystemInterfaceFPQ27JAInter13SeqUpdateData */
|
||||
void JAInter::SystemInterface::trackInit(JAInter::SeqUpdateData*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8029E5B4-8029E7B8 .text outerInit__Q27JAInter15SystemInterfaceFPQ27JAInter13SeqUpdateDataPvUlUsUc */
|
||||
void JAInter::SystemInterface::outerInit(JAInter::SeqUpdateData*, void*, unsigned long, unsigned short, unsigned char) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8029E7B8-8029E820 .text setPortParameter__Q27JAInter15SystemInterfaceFPQ38JASystem6Kernel9TPortArgsPQ28JASystem6TTrackUlUl */
|
||||
void JAInter::SystemInterface::setPortParameter(JASystem::Kernel::TPortArgs*, JASystem::TTrack*, unsigned long, unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8029E820-8029E8F4 .text setSePortParameter__Q27JAInter15SystemInterfaceFPQ38JASystem6Kernel9TPortArgs */
|
||||
void JAInter::SystemInterface::setSePortParameter(JASystem::Kernel::TPortArgs*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
@@ -0,0 +1,53 @@
|
||||
//
|
||||
// Generated by dtk
|
||||
// Translation Unit: JASAiCtrl.cpp
|
||||
//
|
||||
|
||||
#include "JASAiCtrl.h"
|
||||
#include "dolphin/types.h"
|
||||
|
||||
/* 8027AE30-8027AE5C .text init__Q28JASystem6KernelFv */
|
||||
void JASystem::Kernel::init() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8027AE5C-8027AEF8 .text initSystem__Q28JASystem6KernelFv */
|
||||
void JASystem::Kernel::initSystem() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8027AEF8-8027AF04 .text registerMixCallback__Q28JASystem6KernelFPFl_PsUc */
|
||||
void JASystem::Kernel::registerMixCallback(short* (*)(long), unsigned char) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8027AF04-8027B0B8 .text vframeWork__Q28JASystem6KernelFv */
|
||||
void JASystem::Kernel::vframeWork() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8027B0B8-8027B160 .text updateDac__Q28JASystem6KernelFv */
|
||||
void JASystem::Kernel::updateDac() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8027B160-8027B250 .text mixMonoTrack__Q28JASystem6KernelFPslPFl_Ps */
|
||||
void JASystem::Kernel::mixMonoTrack(short*, long, short* (*)(long)) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8027B250-8027B344 .text mixMonoTrackWide__Q28JASystem6KernelFPslPFl_Ps */
|
||||
void JASystem::Kernel::mixMonoTrackWide(short*, long, short* (*)(long)) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8027B344-8027B464 .text mixExtraTrack__Q28JASystem6KernelFPslPFl_Ps */
|
||||
void JASystem::Kernel::mixExtraTrack(short*, long, short* (*)(long)) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8027B464-8027B500 .text mixInterleaveTrack__Q28JASystem6KernelFPslPFl_Ps */
|
||||
void JASystem::Kernel::mixInterleaveTrack(short*, long, short* (*)(long)) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
@@ -0,0 +1,33 @@
|
||||
//
|
||||
// Generated by dtk
|
||||
// Translation Unit: JASAudioThread.cpp
|
||||
//
|
||||
|
||||
#include "JASAudioThread.h"
|
||||
#include "dolphin/types.h"
|
||||
|
||||
/* 80288F08-80288F88 .text syncAudio__Q28JASystem12TAudioThreadFv */
|
||||
void JASystem::TAudioThread::syncAudio() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80288F88-80289130 .text audioproc__Q28JASystem12TAudioThreadFPv */
|
||||
void JASystem::TAudioThread::audioproc(void*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80289130-802891F0 .text syncDSP__Q28JASystem12TAudioThreadFPv */
|
||||
void JASystem::TAudioThread::syncDSP(void*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802891F0-8028920C .text setPriority__Q28JASystem12TAudioThreadFUcUc */
|
||||
void JASystem::TAudioThread::setPriority(unsigned char, unsigned char) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8028920C-802892E0 .text start__Q28JASystem12TAudioThreadFP12JKRSolidHeapUlUl */
|
||||
void JASystem::TAudioThread::start(JKRSolidHeap*, unsigned long, unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
@@ -0,0 +1,68 @@
|
||||
//
|
||||
// Generated by dtk
|
||||
// Translation Unit: JASBNKParser.cpp
|
||||
//
|
||||
|
||||
#include "JASBNKParser.h"
|
||||
#include "dolphin/types.h"
|
||||
|
||||
/* 802870F0-802879A0 .text createBasicBank__Q28JASystem9BNKParserFPv */
|
||||
void JASystem::BNKParser::createBasicBank(void*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802879A0-80287AEC .text findOscPtr__Q28JASystem9BNKParserFPQ28JASystem10TBasicBankPQ38JASystem9BNKParser7THeaderPQ38JASystem9BNKParser4TOsc */
|
||||
void JASystem::BNKParser::findOscPtr(JASystem::TBasicBank*, JASystem::BNKParser::THeader*, JASystem::BNKParser::TOsc*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80287AEC-80287B00 .text getOscTableEndPtr__Q28JASystem9BNKParserFPs */
|
||||
void JASystem::BNKParser::getOscTableEndPtr(short*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80287B00-80287B18 .text JSUConvertOffsetToPtr<Q38JASystem9BNKParser5TPmap>__FPCvUl */
|
||||
void JSUConvertOffsetToPtr<JASystem::BNKParser::TPmap>(const void*, unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80287B18-80287B30 .text JSUConvertOffsetToPtr<Q38JASystem9BNKParser5TPerc>__FPCvUl */
|
||||
void JSUConvertOffsetToPtr<JASystem::BNKParser::TPerc>(const void*, unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80287B30-80287B48 .text JSUConvertOffsetToPtr<Q38JASystem9BNKParser5TVmap>__FPCvUl */
|
||||
void JSUConvertOffsetToPtr<JASystem::BNKParser::TVmap>(const void*, unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80287B48-80287B60 .text JSUConvertOffsetToPtr<Q38JASystem9BNKParser7TKeymap>__FPCvUl */
|
||||
void JSUConvertOffsetToPtr<JASystem::BNKParser::TKeymap>(const void*, unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80287B60-80287B78 .text JSUConvertOffsetToPtr<Q38JASystem9BNKParser6TSense>__FPCvUl */
|
||||
void JSUConvertOffsetToPtr<JASystem::BNKParser::TSense>(const void*, unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80287B78-80287B90 .text JSUConvertOffsetToPtr<Q38JASystem9BNKParser5TRand>__FPCvUl */
|
||||
void JSUConvertOffsetToPtr<JASystem::BNKParser::TRand>(const void*, unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80287B90-80287BA8 .text JSUConvertOffsetToPtr<s>__FPCvUl */
|
||||
void JSUConvertOffsetToPtr<short>(const void*, unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80287BA8-80287BC0 .text JSUConvertOffsetToPtr<Q38JASystem9BNKParser4TOsc>__FPCvUl */
|
||||
void JSUConvertOffsetToPtr<JASystem::BNKParser::TOsc>(const void*, unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80287BC0-80287BD8 .text JSUConvertOffsetToPtr<Q38JASystem9BNKParser5TInst>__FPCvUl */
|
||||
void JSUConvertOffsetToPtr<JASystem::BNKParser::TInst>(const void*, unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
@@ -0,0 +1,13 @@
|
||||
//
|
||||
// Generated by dtk
|
||||
// Translation Unit: JASBank.cpp
|
||||
//
|
||||
|
||||
#include "JASBank.h"
|
||||
#include "dolphin/types.h"
|
||||
|
||||
/* 80284548-8028455C .text getCurrentHeap__Q28JASystem5TBankFv */
|
||||
void JASystem::TBank::getCurrentHeap() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
@@ -0,0 +1,63 @@
|
||||
//
|
||||
// Generated by dtk
|
||||
// Translation Unit: JASBankMgr.cpp
|
||||
//
|
||||
|
||||
#include "JASBankMgr.h"
|
||||
#include "dolphin/types.h"
|
||||
|
||||
/* 80288594-80288698 .text init__Q28JASystem7BankMgrFi */
|
||||
void JASystem::BankMgr::init(int) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80288698-8028874C .text registBank__Q28JASystem7BankMgrFiPQ28JASystem5TBank */
|
||||
void JASystem::BankMgr::registBank(int, JASystem::TBank*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8028874C-802887AC .text registBankBNK__Q28JASystem7BankMgrFiPv */
|
||||
void JASystem::BankMgr::registBankBNK(int, void*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802887AC-802887E0 .text getBank__Q28JASystem7BankMgrFi */
|
||||
void JASystem::BankMgr::getBank(int) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802887E0-802887F0 .text getPhysicalNumber__Q28JASystem7BankMgrFUs */
|
||||
void JASystem::BankMgr::getPhysicalNumber(unsigned short) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802887F0-802888A0 .text setVir2PhyTable__Q28JASystem7BankMgrFUli */
|
||||
void JASystem::BankMgr::setVir2PhyTable(unsigned long, int) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802888A0-80288904 .text assignWaveBank__Q28JASystem7BankMgrFii */
|
||||
void JASystem::BankMgr::assignWaveBank(int, int) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80288904-8028892C .text clamp01__Q28JASystem7BankMgrFf */
|
||||
void JASystem::BankMgr::clamp01(float) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8028892C-80288CE8 .text noteOn__Q28JASystem7BankMgrFPQ28JASystem11TChannelMgriiUcUcUl */
|
||||
void JASystem::BankMgr::noteOn(JASystem::TChannelMgr*, int, int, unsigned char, unsigned char, unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80288CE8-80288E44 .text noteOnOsc__Q28JASystem7BankMgrFPQ28JASystem11TChannelMgriUcUcUl */
|
||||
void JASystem::BankMgr::noteOnOsc(JASystem::TChannelMgr*, int, unsigned char, unsigned char, unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80288E44-80288F08 .text gateOn__Q28JASystem7BankMgrFPQ28JASystem8TChannelUcUcUl */
|
||||
void JASystem::BankMgr::gateOn(JASystem::TChannel*, unsigned char, unsigned char, unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
@@ -0,0 +1,43 @@
|
||||
//
|
||||
// Generated by dtk
|
||||
// Translation Unit: JASBasicBank.cpp
|
||||
//
|
||||
|
||||
#include "JASBasicBank.h"
|
||||
#include "dolphin/types.h"
|
||||
|
||||
/* 80284570-8028459C .text __ct__Q28JASystem10TBasicBankFv */
|
||||
JASystem::TBasicBank::TBasicBank() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8028459C-80284610 .text __dt__Q28JASystem10TBasicBankFv */
|
||||
JASystem::TBasicBank::~TBasicBank() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80284610-802846B0 .text setInstCount__Q28JASystem10TBasicBankFUl */
|
||||
void JASystem::TBasicBank::setInstCount(unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802846B0-80284768 .text setInst__Q28JASystem10TBasicBankFiPQ28JASystem5TInst */
|
||||
void JASystem::TBasicBank::setInst(int, JASystem::TInst*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80284768-802847F0 .text getInst__Q28JASystem10TBasicBankCFi */
|
||||
void JASystem::TBasicBank::getInst(int) const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802847F0-80284838 .text __dt__Q28JASystem5TBankFv */
|
||||
JASystem::TBank::~TBank() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80284838-80284844 .text getType__Q28JASystem10TBasicBankCFv */
|
||||
void JASystem::TBasicBank::getType() const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
@@ -0,0 +1,93 @@
|
||||
//
|
||||
// Generated by dtk
|
||||
// Translation Unit: JASBasicInst.cpp
|
||||
//
|
||||
|
||||
#include "JASBasicInst.h"
|
||||
#include "dolphin/types.h"
|
||||
|
||||
/* 80284844-80284888 .text __ct__Q28JASystem10TBasicInstFv */
|
||||
JASystem::TBasicInst::TBasicInst() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80284888-80284914 .text __dt__Q28JASystem10TBasicInstFv */
|
||||
JASystem::TBasicInst::~TBasicInst() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80284914-80284B4C .text getParam__Q28JASystem10TBasicInstCFiiPQ28JASystem10TInstParam */
|
||||
void JASystem::TBasicInst::getParam(int, int, JASystem::TInstParam*) const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80284B4C-80284B54 .text getKeymapIndex__Q28JASystem10TBasicInstCFi */
|
||||
void JASystem::TBasicInst::getKeymapIndex(int) const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80284B54-80284C10 .text setKeyRegionCount__Q28JASystem10TBasicInstFUl */
|
||||
void JASystem::TBasicInst::setKeyRegionCount(unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80284C10-80284CC4 .text setEffectCount__Q28JASystem10TBasicInstFUl */
|
||||
void JASystem::TBasicInst::setEffectCount(unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80284CC4-80284D7C .text setEffect__Q28JASystem10TBasicInstFiPQ28JASystem11TInstEffect */
|
||||
void JASystem::TBasicInst::setEffect(int, JASystem::TInstEffect*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80284D7C-80284E30 .text setOscCount__Q28JASystem10TBasicInstFUl */
|
||||
void JASystem::TBasicInst::setOscCount(unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80284E30-80284EE8 .text setOsc__Q28JASystem10TBasicInstFiPQ38JASystem11TOscillator4Osc_ */
|
||||
void JASystem::TBasicInst::setOsc(int, JASystem::TOscillator::Osc_*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80284EE8-80284F70 .text getKeyRegion__Q28JASystem10TBasicInstFi */
|
||||
void JASystem::TBasicInst::getKeyRegion(int) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80284F70-80284FC4 .text __dt__Q38JASystem10TBasicInst7TKeymapFv */
|
||||
JASystem::TBasicInst::TKeymap::~TKeymap() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80284FC4-80285058 .text setVeloRegionCount__Q38JASystem10TBasicInst7TKeymapFUl */
|
||||
void JASystem::TBasicInst::TKeymap::setVeloRegionCount(unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80285058-802850E0 .text getVeloRegion__Q38JASystem10TBasicInst7TKeymapFi */
|
||||
void JASystem::TBasicInst::TKeymap::getVeloRegion(int) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802850E0-80285168 .text getVeloRegion__Q38JASystem10TBasicInst7TKeymapCFi */
|
||||
void JASystem::TBasicInst::TKeymap::getVeloRegion(int) const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80285168-802851B0 .text __dt__Q28JASystem5TInstFv */
|
||||
JASystem::TInst::~TInst() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802851B0-802851C8 .text __ct__Q38JASystem10TBasicInst7TKeymapFv */
|
||||
JASystem::TBasicInst::TKeymap::TKeymap() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802851C8-802851D4 .text getType__Q28JASystem10TBasicInstCFv */
|
||||
void JASystem::TBasicInst::getType() const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
@@ -0,0 +1,123 @@
|
||||
//
|
||||
// Generated by dtk
|
||||
// Translation Unit: JASBasicWaveBank.cpp
|
||||
//
|
||||
|
||||
#include "JASBasicWaveBank.h"
|
||||
#include "dolphin/types.h"
|
||||
|
||||
/* 80285968-802859C8 .text __ct__Q28JASystem14TBasicWaveBankFv */
|
||||
JASystem::TBasicWaveBank::TBasicWaveBank() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802859C8-80285A74 .text __dt__Q28JASystem14TBasicWaveBankFv */
|
||||
JASystem::TBasicWaveBank::~TBasicWaveBank() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80285A74-80285AFC .text getWaveGroup__Q28JASystem14TBasicWaveBankFi */
|
||||
void JASystem::TBasicWaveBank::getWaveGroup(int) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80285AFC-80285C10 .text setGroupCount__Q28JASystem14TBasicWaveBankFUl */
|
||||
void JASystem::TBasicWaveBank::setGroupCount(unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80285C10-80285CB0 .text setWaveTableSize__Q28JASystem14TBasicWaveBankFUl */
|
||||
void JASystem::TBasicWaveBank::setWaveTableSize(unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80285CB0-80285D54 .text incWaveTable__Q28JASystem14TBasicWaveBankFPCQ38JASystem14TBasicWaveBank10TWaveGroup */
|
||||
void JASystem::TBasicWaveBank::incWaveTable(const JASystem::TBasicWaveBank::TWaveGroup*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80285D54-80285E28 .text decWaveTable__Q28JASystem14TBasicWaveBankFPCQ38JASystem14TBasicWaveBank10TWaveGroup */
|
||||
void JASystem::TBasicWaveBank::decWaveTable(const JASystem::TBasicWaveBank::TWaveGroup*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80285E28-80285E58 .text getWaveHandle__Q28JASystem14TBasicWaveBankCFUl */
|
||||
void JASystem::TBasicWaveBank::getWaveHandle(unsigned long) const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80285E58-80285EB0 .text __ct__Q38JASystem14TBasicWaveBank10TWaveGroupFPQ28JASystem14TBasicWaveBank */
|
||||
JASystem::TBasicWaveBank::TWaveGroup::TWaveGroup(JASystem::TBasicWaveBank*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80285EB0-80285F64 .text __dt__Q38JASystem14TBasicWaveBank10TWaveGroupFv */
|
||||
JASystem::TBasicWaveBank::TWaveGroup::~TWaveGroup() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80285F64-80285FC4 .text __dt__Q38JASystem14TBasicWaveBank9TWaveInfoFv */
|
||||
JASystem::TBasicWaveBank::TWaveInfo::~TWaveInfo() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80285FC4-802860B8 .text setWaveCount__Q38JASystem14TBasicWaveBank10TWaveGroupFUl */
|
||||
void JASystem::TBasicWaveBank::TWaveGroup::setWaveCount(unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802860B8-80286204 .text setWaveInfo__Q38JASystem14TBasicWaveBank10TWaveGroupFiUlRCQ28JASystem9TWaveInfo */
|
||||
void JASystem::TBasicWaveBank::TWaveGroup::setWaveInfo(int, unsigned long, const JASystem::TWaveInfo&) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80286204-80286274 .text onLoadDone__Q38JASystem14TBasicWaveBank10TWaveGroupFv */
|
||||
void JASystem::TBasicWaveBank::TWaveGroup::onLoadDone() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80286274-802862E4 .text onEraseDone__Q38JASystem14TBasicWaveBank10TWaveGroupFv */
|
||||
void JASystem::TBasicWaveBank::TWaveGroup::onEraseDone() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802862E4-802862F8 .text getWaveID__Q38JASystem14TBasicWaveBank10TWaveGroupCFi */
|
||||
void JASystem::TBasicWaveBank::TWaveGroup::getWaveID(int) const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802862F8-80286340 .text __dt__Q28JASystem9TWaveBankFv */
|
||||
JASystem::TWaveBank::~TWaveBank() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80286340-80286388 .text __dt__Q28JASystem11TWaveHandleFv */
|
||||
JASystem::TWaveHandle::~TWaveHandle() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80286388-802863B8 .text __ct__Q38JASystem14TBasicWaveBank9TWaveInfoFv */
|
||||
JASystem::TBasicWaveBank::TWaveInfo::TWaveInfo() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802863B8-80286414 .text __dt__Q38JASystem14TBasicWaveBank11TWaveHandleFv */
|
||||
JASystem::TBasicWaveBank::TWaveHandle::~TWaveHandle() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80286414-8028641C .text getWaveInfo__Q38JASystem14TBasicWaveBank11TWaveHandleCFv */
|
||||
void JASystem::TBasicWaveBank::TWaveHandle::getWaveInfo() const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8028641C-802864A8 .text getWavePtr__Q38JASystem14TBasicWaveBank11TWaveHandleCFv */
|
||||
void JASystem::TBasicWaveBank::TWaveHandle::getWavePtr() const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802864A8-802864C8 .text getWaveArc__Q28JASystem14TBasicWaveBankFi */
|
||||
void JASystem::TBasicWaveBank::getWaveArc(int) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
@@ -0,0 +1,48 @@
|
||||
//
|
||||
// Generated by dtk
|
||||
// Translation Unit: JASCalc.cpp
|
||||
//
|
||||
|
||||
#include "JASCalc.h"
|
||||
#include "dolphin/types.h"
|
||||
|
||||
/* 8027A804-8027A9C8 .text initSinfT__Q28JASystem4CalcFv */
|
||||
void JASystem::Calc::initSinfT() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8027A9C8-8027A9F4 .text sinfT__Q28JASystem4CalcFf */
|
||||
void JASystem::Calc::sinfT(float) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8027A9F4-8027AA20 .text sinfDolby2__Q28JASystem4CalcFf */
|
||||
void JASystem::Calc::sinfDolby2(float) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8027AA20-8027AA50 .text imixcopy__Q28JASystem4CalcFPCsPCsPsl */
|
||||
void JASystem::Calc::imixcopy(const short*, const short*, short*, long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8027AA50-8027AB68 .text bcopyfast__Q28JASystem4CalcFPCUlPUlUl */
|
||||
void JASystem::Calc::bcopyfast(const unsigned long*, unsigned long*, unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8027AB68-8027AC68 .text bcopy__Q28JASystem4CalcFPCvPvUl */
|
||||
void JASystem::Calc::bcopy(const void*, void*, unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8027AC68-8027AD38 .text bzerofast__Q28JASystem4CalcFPvUl */
|
||||
void JASystem::Calc::bzerofast(void*, unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8027AD38-8027AE30 .text bzero__Q28JASystem4CalcFPvUl */
|
||||
void JASystem::Calc::bzero(void*, unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
@@ -0,0 +1,38 @@
|
||||
//
|
||||
// Generated by dtk
|
||||
// Translation Unit: JASCallback.cpp
|
||||
//
|
||||
|
||||
#include "JASCallback.h"
|
||||
#include "dolphin/types.h"
|
||||
|
||||
/* 8027BA70-8027BB24 .text resetCallback__Q28JASystem6KernelFv */
|
||||
void JASystem::Kernel::resetCallback() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8027BB24-8027BB8C .text checkCallback__Q28JASystem6KernelFPFPv_lPv */
|
||||
void JASystem::Kernel::checkCallback(long (*)(void*), void*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8027BB8C-8027BC24 .text registerDspCallback__Q28JASystem6KernelFPFPv_lPv */
|
||||
void JASystem::Kernel::registerDspCallback(long (*)(void*), void*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8027BC24-8027BD14 .text registerSubFrameCallback__Q28JASystem6KernelFPFPv_lPv */
|
||||
void JASystem::Kernel::registerSubFrameCallback(long (*)(void*), void*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8027BD14-8027BDAC .text aiCallback__Q28JASystem6KernelFv */
|
||||
void JASystem::Kernel::aiCallback() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8027BDAC-8027BE44 .text subframeCallback__Q28JASystem6KernelFv */
|
||||
void JASystem::Kernel::subframeCallback() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
@@ -0,0 +1,33 @@
|
||||
//
|
||||
// Generated by dtk
|
||||
// Translation Unit: JASChAllocQueue.cpp
|
||||
//
|
||||
|
||||
#include "JASChAllocQueue.h"
|
||||
#include "dolphin/types.h"
|
||||
|
||||
/* 8028B0C4-8028B224 .text deQueue__Q28JASystem9TDSPQueueFv */
|
||||
void JASystem::TDSPQueue::deQueue() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8028B224-8028B288 .text enQueue__Q28JASystem9TDSPQueueFPQ28JASystem8TChannel */
|
||||
void JASystem::TDSPQueue::enQueue(JASystem::TChannel*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8028B288-8028B2BC .text deleteQueue__Q28JASystem9TDSPQueueFPQ28JASystem8TChannel */
|
||||
void JASystem::TDSPQueue::deleteQueue(JASystem::TChannel*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8028B2BC-8028B350 .text checkQueue__Q28JASystem9TDSPQueueFv */
|
||||
void JASystem::TDSPQueue::checkQueue() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8028B394-8028B3E8 .text __dt__29JSUList<Q28JASystem8TChannel>Fv */
|
||||
JSUList<JASystem::TChannel>::~JSUList() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
@@ -0,0 +1,53 @@
|
||||
//
|
||||
// Generated by dtk
|
||||
// Translation Unit: JASChGlobal.cpp
|
||||
//
|
||||
|
||||
#include "JASChGlobal.h"
|
||||
#include "dolphin/types.h"
|
||||
|
||||
/* 8028AAEC-8028AB58 .text getChannelHandle__Q28JASystem14TGlobalChannelFUl */
|
||||
void JASystem::TGlobalChannel::getChannelHandle(unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8028AB58-8028AD50 .text init__Q28JASystem14TGlobalChannelFv */
|
||||
void JASystem::TGlobalChannel::init() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8028AD50-8028ADE8 .text alloc__Q28JASystem14TGlobalChannelFPQ28JASystem11TChannelMgrUl */
|
||||
void JASystem::TGlobalChannel::alloc(JASystem::TChannelMgr*, unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8028ADE8-8028AE4C .text release__Q28JASystem14TGlobalChannelFPQ28JASystem8TChannel */
|
||||
void JASystem::TGlobalChannel::release(JASystem::TChannel*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8028AE4C-8028AF8C .text releaseAll__Q28JASystem14TGlobalChannelFPQ28JASystem11TChannelMgr */
|
||||
void JASystem::TGlobalChannel::releaseAll(JASystem::TChannelMgr*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8028AF8C-8028AFC8 .text __dt__Q28JASystem11TOscillatorFv */
|
||||
JASystem::TOscillator::~TOscillator() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8028AFC8-8028AFF8 .text __ct__Q28JASystem11TOscillatorFv */
|
||||
JASystem::TOscillator::TOscillator() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8028AFF8-8028B058 .text __dt__Q28JASystem8TChannelFv */
|
||||
JASystem::TChannel::~TChannel() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8028B058-8028B0C4 .text __ct__Q28JASystem8TChannelFv */
|
||||
JASystem::TChannel::TChannel() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
@@ -0,0 +1,173 @@
|
||||
//
|
||||
// Generated by dtk
|
||||
// Translation Unit: JASChannel.cpp
|
||||
//
|
||||
|
||||
#include "JASChannel.h"
|
||||
#include "dolphin/types.h"
|
||||
|
||||
/* 8028B3E8-8028B5A4 .text init__Q28JASystem8TChannelFv */
|
||||
void JASystem::TChannel::init() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8028B5A4-8028B620 .text setOscillator__Q28JASystem8TChannelFUlPQ28JASystem11TOscillator */
|
||||
void JASystem::TChannel::setOscillator(unsigned long, JASystem::TOscillator*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8028B620-8028B6A8 .text setOscInit__Q28JASystem8TChannelFUlPCQ38JASystem11TOscillator4Osc_ */
|
||||
void JASystem::TChannel::setOscInit(unsigned long, const JASystem::TOscillator::Osc_*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8028B6A8-8028B73C .text forceStopOsc__Q28JASystem8TChannelFUl */
|
||||
void JASystem::TChannel::forceStopOsc(unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8028B73C-8028B7D0 .text releaseOsc__Q28JASystem8TChannelFUl */
|
||||
void JASystem::TChannel::releaseOsc(unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8028B7D0-8028B850 .text directReleaseOsc__Q28JASystem8TChannelFUlUs */
|
||||
void JASystem::TChannel::directReleaseOsc(unsigned long, unsigned short) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8028B850-8028B8E4 .text bankOscToOfs__Q28JASystem8TChannelFUl */
|
||||
void JASystem::TChannel::bankOscToOfs(unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8028B8E4-8028BA98 .text effectOsc__Q28JASystem8TChannelFUlf */
|
||||
void JASystem::TChannel::effectOsc(unsigned long, float) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8028BA98-8028BB14 .text getOscState__Q28JASystem8TChannelCFUl */
|
||||
void JASystem::TChannel::getOscState(unsigned long) const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8028BB14-8028BB98 .text isOsc__Q28JASystem8TChannelFUl */
|
||||
void JASystem::TChannel::isOsc(unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8028BB98-8028BC78 .text copyOsc__Q28JASystem8TChannelFUlPQ38JASystem11TOscillator4Osc_ */
|
||||
void JASystem::TChannel::copyOsc(unsigned long, JASystem::TOscillator::Osc_*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8028BC78-8028BD10 .text overwriteOsc__Q28JASystem8TChannelFUlPQ38JASystem11TOscillator4Osc_ */
|
||||
void JASystem::TChannel::overwriteOsc(unsigned long, JASystem::TOscillator::Osc_*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8028BD10-8028BDA4 .text setKeySweepTarget__Q28JASystem8TChannelFUcUl */
|
||||
void JASystem::TChannel::setKeySweepTarget(unsigned char, unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8028BDA4-8028BDAC .text setPauseFlag__Q28JASystem8TChannelFUc */
|
||||
void JASystem::TChannel::setPauseFlag(unsigned char) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8028BDAC-8028BDBC .text setPauseFlagReq__Q28JASystem8TChannelFUc */
|
||||
void JASystem::TChannel::setPauseFlagReq(unsigned char) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8028BDBC-8028BE64 .text setPanPower__Q28JASystem8TChannelFffff */
|
||||
void JASystem::TChannel::setPanPower(float, float, float, float) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8028BE64-8028BEB8 .text checkLogicalChannel__Q28JASystem8TChannelFv */
|
||||
void JASystem::TChannel::checkLogicalChannel() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8028BEB8-8028BF40 .text play__Q28JASystem8TChannelFUl */
|
||||
void JASystem::TChannel::play(unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8028BF40-8028BFAC .text stop__Q28JASystem8TChannelFUs */
|
||||
void JASystem::TChannel::stop(unsigned short) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8028BFAC-8028C108 .text updateJcToDSP__Q28JASystem8TChannelFv */
|
||||
void JASystem::TChannel::updateJcToDSP() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8028C108-8028C140 .text forceStopLogicalChannel__Q28JASystem8TChannelFv */
|
||||
void JASystem::TChannel::forceStopLogicalChannel() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8028C140-8028C1C0 .text stopLogicalChannel__Q28JASystem8TChannelFv */
|
||||
void JASystem::TChannel::stopLogicalChannel() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8028C1C0-8028C3A8 .text playLogicalChannel__Q28JASystem8TChannelFv */
|
||||
void JASystem::TChannel::playLogicalChannel() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8028C3A8-8028C62C .text updateEffectorParam__Q28JASystem8TChannelFv */
|
||||
void JASystem::TChannel::updateEffectorParam() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8028C62C-8028C6C4 .text killBrokenLogicalChannels__Q28JASystem8TChannelFPQ28JASystem11TDSPChannel */
|
||||
void JASystem::TChannel::killBrokenLogicalChannels(JASystem::TDSPChannel*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8028C6C4-8028CABC .text updatecallDSPChannel__Q28JASystem8TChannelFPQ28JASystem11TDSPChannelUl */
|
||||
void JASystem::TChannel::updatecallDSPChannel(JASystem::TDSPChannel*, unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8028CABC-8028CB88 .text calcEffect__Q28JASystem8TChannelFPCQ38JASystem6Driver10PanMatrix_PCQ38JASystem6Driver10PanMatrix_Uc */
|
||||
void JASystem::TChannel::calcEffect(const JASystem::Driver::PanMatrix_*, const JASystem::Driver::PanMatrix_*, unsigned char) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8028CB88-8028CC90 .text calcPan__Q28JASystem8TChannelFPCQ38JASystem6Driver10PanMatrix_PCQ38JASystem6Driver10PanMatrix_Uc */
|
||||
void JASystem::TChannel::calcPan(const JASystem::Driver::PanMatrix_*, const JASystem::Driver::PanMatrix_*, unsigned char) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8028CC90-8028CD90 .text updateJcToDSPInit__Q28JASystem8TChannelFv */
|
||||
void JASystem::TChannel::updateJcToDSPInit() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8028CD90-8028CEA8 .text updateAutoMixer__Q28JASystem8TChannelFffff */
|
||||
void JASystem::TChannel::updateAutoMixer(float, float, float, float) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8028CEA8-8028D128 .text updateMixer__Q28JASystem8TChannelFffff */
|
||||
void JASystem::TChannel::updateMixer(float, float, float, float) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8028D128-8028D218 .text extraUpdate__Q28JASystem8TChannelFPQ28JASystem8TChannelUl */
|
||||
void JASystem::TChannel::extraUpdate(JASystem::TChannel*, unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8028D218-8028D3C0 .text updatecallLogicalChannel__Q28JASystem8TChannelFPQ28JASystem8TChannelUl */
|
||||
void JASystem::TChannel::updatecallLogicalChannel(JASystem::TChannel*, unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
@@ -0,0 +1,78 @@
|
||||
//
|
||||
// Generated by dtk
|
||||
// Translation Unit: JASChannelMgr.cpp
|
||||
//
|
||||
|
||||
#include "JASChannelMgr.h"
|
||||
#include "dolphin/types.h"
|
||||
|
||||
/* 8028D3C0-8028D4D0 .text init__Q28JASystem11TChannelMgrFv */
|
||||
void JASystem::TChannelMgr::init() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8028D4D0-8028D514 .text stopAll__Q28JASystem11TChannelMgrFv */
|
||||
void JASystem::TChannelMgr::stopAll() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8028D514-8028D558 .text stopAllRelease__Q28JASystem11TChannelMgrFv */
|
||||
void JASystem::TChannelMgr::stopAllRelease() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8028D558-8028D5D0 .text initAllocChannel__Q28JASystem11TChannelMgrFUl */
|
||||
void JASystem::TChannelMgr::initAllocChannel(unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8028D5D0-8028D778 .text getLogicalChannel__Q28JASystem11TChannelMgrFUl */
|
||||
void JASystem::TChannelMgr::getLogicalChannel(unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8028D778-8028D7D8 .text moveListHead__Q28JASystem11TChannelMgrFPQ28JASystem8TChannelUl */
|
||||
void JASystem::TChannelMgr::moveListHead(JASystem::TChannel*, unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8028D7D8-8028D838 .text moveListTail__Q28JASystem11TChannelMgrFPQ28JASystem8TChannelUl */
|
||||
void JASystem::TChannelMgr::moveListTail(JASystem::TChannel*, unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8028D838-8028D8E4 .text addListHead__Q28JASystem11TChannelMgrFPQ28JASystem8TChannelUl */
|
||||
void JASystem::TChannelMgr::addListHead(JASystem::TChannel*, unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8028D8E4-8028D9C4 .text addListTail__Q28JASystem11TChannelMgrFPQ28JASystem8TChannelUl */
|
||||
void JASystem::TChannelMgr::addListTail(JASystem::TChannel*, unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8028D9C4-8028DA38 .text getListHead__Q28JASystem11TChannelMgrFUl */
|
||||
void JASystem::TChannelMgr::getListHead(unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8028DA38-8028DAF0 .text cutList__Q28JASystem11TChannelMgrFPQ28JASystem8TChannel */
|
||||
void JASystem::TChannelMgr::cutList(JASystem::TChannel*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8028DAF0-8028DC34 .text receiveAllChannels__Q28JASystem11TChannelMgrFPQ28JASystem11TChannelMgr */
|
||||
void JASystem::TChannelMgr::receiveAllChannels(JASystem::TChannelMgr*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8028DC34-8028DDD0 .text checkLimitStart__Q28JASystem11TChannelMgrFUl */
|
||||
void JASystem::TChannelMgr::checkLimitStart(unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8028DDD0-8028DE94 .text checkLimitStop__Q28JASystem11TChannelMgrFPQ28JASystem8TChannelUl */
|
||||
void JASystem::TChannelMgr::checkLimitStop(JASystem::TChannel*, unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
@@ -0,0 +1,58 @@
|
||||
//
|
||||
// Generated by dtk
|
||||
// Translation Unit: JASCmdStack.cpp
|
||||
//
|
||||
|
||||
#include "JASCmdStack.h"
|
||||
#include "dolphin/types.h"
|
||||
|
||||
/* 8027D6F4-8027D70C .text __ct__Q38JASystem6Kernel8TPortCmdFv */
|
||||
JASystem::Kernel::TPortCmd::TPortCmd() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8027D70C-8027D730 .text addPortCmdOnce__Q38JASystem6Kernel8TPortCmdFv */
|
||||
void JASystem::Kernel::TPortCmd::addPortCmdOnce() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8027D730-8027D7E8 .text setPortCmd__Q38JASystem6Kernel8TPortCmdFPFPQ38JASystem6Kernel9TPortArgs_vPQ38JASystem6Kernel9TPortArgs */
|
||||
void JASystem::Kernel::TPortCmd::setPortCmd(void (*)(JASystem::Kernel::TPortArgs*), JASystem::Kernel::TPortArgs*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8027D7E8-8027D8A4 .text addPortCmd__Q38JASystem6Kernel8TPortCmdFPQ38JASystem6Kernel9TPortHead */
|
||||
void JASystem::Kernel::TPortCmd::addPortCmd(JASystem::Kernel::TPortHead*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8027D8A4-8027D924 .text portCmdProcOnce__Q28JASystem6KernelFPQ38JASystem6Kernel9TPortHead */
|
||||
void JASystem::Kernel::portCmdProcOnce(JASystem::Kernel::TPortHead*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8027D924-8027D9A4 .text portCmdProcStay__Q28JASystem6KernelFPQ38JASystem6Kernel9TPortHead */
|
||||
void JASystem::Kernel::portCmdProcStay(JASystem::Kernel::TPortHead*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8027D9A4-8027DA0C .text portHeadInit__Q28JASystem6KernelFPQ38JASystem6Kernel9TPortHead */
|
||||
void JASystem::Kernel::portHeadInit(JASystem::Kernel::TPortHead*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8027DA0C-8027DA48 .text portCmdInit__Q28JASystem6KernelFv */
|
||||
void JASystem::Kernel::portCmdInit() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8027DA48-8027DB08 .text getPortCmd__Q28JASystem6KernelFPQ38JASystem6Kernel9TPortHead */
|
||||
void JASystem::Kernel::getPortCmd(JASystem::Kernel::TPortHead*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8027DB08-8027DB38 .text portCmdMain__Q28JASystem6KernelFPv */
|
||||
void JASystem::Kernel::portCmdMain(void*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
@@ -0,0 +1,28 @@
|
||||
//
|
||||
// Generated by dtk
|
||||
// Translation Unit: JASDSPBuf.cpp
|
||||
//
|
||||
|
||||
#include "JASDSPBuf.h"
|
||||
#include "dolphin/types.h"
|
||||
|
||||
/* 802892E0-802893E4 .text init__Q28JASystem14TDSP_DACBufferFv */
|
||||
void JASystem::TDSP_DACBuffer::init() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802893E4-80289438 .text updateDSP__Q28JASystem14TDSP_DACBufferFv */
|
||||
void JASystem::TDSP_DACBuffer::updateDSP() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80289438-80289568 .text mixDSP__Q28JASystem14TDSP_DACBufferFl */
|
||||
void JASystem::TDSP_DACBuffer::mixDSP(long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80289568-8028963C .text finishDSPFrame__Q28JASystem14TDSP_DACBufferFv */
|
||||
void JASystem::TDSP_DACBuffer::finishDSPFrame() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
@@ -0,0 +1,103 @@
|
||||
//
|
||||
// Generated by dtk
|
||||
// Translation Unit: JASDSPChannel.cpp
|
||||
//
|
||||
|
||||
#include "JASDSPChannel.h"
|
||||
#include "dolphin/types.h"
|
||||
|
||||
/* 8028963C-80289694 .text init__Q28JASystem11TDSPChannelFUc */
|
||||
void JASystem::TDSPChannel::init(unsigned char) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80289694-80289720 .text allocate__Q28JASystem11TDSPChannelFUl */
|
||||
void JASystem::TDSPChannel::allocate(unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80289720-8028973C .text free__Q28JASystem11TDSPChannelFv */
|
||||
void JASystem::TDSPChannel::free() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8028973C-802897E0 .text forceStop__Q28JASystem11TDSPChannelFv */
|
||||
void JASystem::TDSPChannel::forceStop() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802897E0-802897F4 .text forceDelete__Q28JASystem11TDSPChannelFv */
|
||||
void JASystem::TDSPChannel::forceDelete() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802897F4-80289844 .text play__Q28JASystem11TDSPChannelFv */
|
||||
void JASystem::TDSPChannel::play() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80289844-80289874 .text stop__Q28JASystem11TDSPChannelFv */
|
||||
void JASystem::TDSPChannel::stop() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80289874-80289994 .text initAll__Q28JASystem11TDSPChannelFv */
|
||||
void JASystem::TDSPChannel::initAll() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80289994-80289A54 .text alloc__Q28JASystem11TDSPChannelFUlUl */
|
||||
void JASystem::TDSPChannel::alloc(unsigned long, unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80289A54-80289AF4 .text free__Q28JASystem11TDSPChannelFPQ28JASystem11TDSPChannelUl */
|
||||
void JASystem::TDSPChannel::free(JASystem::TDSPChannel*, unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80289AF4-80289C0C .text getLower__Q28JASystem11TDSPChannelFv */
|
||||
void JASystem::TDSPChannel::getLower() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80289C0C-80289D10 .text getLowerActive__Q28JASystem11TDSPChannelFv */
|
||||
void JASystem::TDSPChannel::getLowerActive() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80289D10-80289DC8 .text breakLower__Q28JASystem11TDSPChannelFUc */
|
||||
void JASystem::TDSPChannel::breakLower(unsigned char) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80289DC8-80289E68 .text breakLowerActive__Q28JASystem11TDSPChannelFUc */
|
||||
void JASystem::TDSPChannel::breakLowerActive(unsigned char) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80289E68-8028A04C .text updateAll__Q28JASystem11TDSPChannelFv */
|
||||
void JASystem::TDSPChannel::updateAll() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8028A04C-8028A08C .text onUpdate__Q28JASystem11TDSPChannelFUl */
|
||||
void JASystem::TDSPChannel::onUpdate(unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8028A08C-8028A0C0 .text getNumBreak__Q28JASystem11TDSPChannelFv */
|
||||
void JASystem::TDSPChannel::getNumBreak() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8028A0C0-8028A0FC .text __dt__Q28JASystem11TDSPChannelFv */
|
||||
JASystem::TDSPChannel::~TDSPChannel() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8028A0FC-8028A10C .text __ct__Q28JASystem11TDSPChannelFv */
|
||||
JASystem::TDSPChannel::TDSPChannel() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
@@ -0,0 +1,158 @@
|
||||
//
|
||||
// Generated by dtk
|
||||
// Translation Unit: JASDSPInterface.cpp
|
||||
//
|
||||
|
||||
#include "JASDSPInterface.h"
|
||||
#include "dolphin/types.h"
|
||||
|
||||
/* 8028A10C-8028A130 .text setDSPMixerLevel__Q28JASystem12DSPInterfaceFf */
|
||||
void JASystem::DSPInterface::setDSPMixerLevel(float) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8028A130-8028A144 .text getDSPHandle__Q28JASystem12DSPInterfaceFUc */
|
||||
void JASystem::DSPInterface::getDSPHandle(unsigned char) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8028A144-8028A168 .text setFilterTable__Q28JASystem12DSPInterfaceFPsPsUl */
|
||||
void JASystem::DSPInterface::setFilterTable(short*, short*, unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8028A168-8028A19C .text flushBuffer__Q28JASystem12DSPInterfaceFv */
|
||||
void JASystem::DSPInterface::flushBuffer() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8028A19C-8028A1C4 .text invalChannelAll__Q28JASystem12DSPInterfaceFv */
|
||||
void JASystem::DSPInterface::invalChannelAll() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8028A1C4-8028A240 .text clearBuffer__Q28JASystem12DSPInterfaceFv */
|
||||
void JASystem::DSPInterface::clearBuffer() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8028A240-8028A28C .text setupBuffer__Q28JASystem12DSPInterfaceFv */
|
||||
void JASystem::DSPInterface::setupBuffer() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8028A28C-8028A368 .text initBuffer__Q28JASystem12DSPInterfaceFv */
|
||||
void JASystem::DSPInterface::initBuffer() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8028A368-8028A378 .text getFXHandle__Q28JASystem12DSPInterfaceFUc */
|
||||
void JASystem::DSPInterface::getFXHandle(unsigned char) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8028A378-8028A528 .text setFXLine__Q38JASystem12DSPInterface8FXBufferFPsPQ38JASystem12DSPInterface13FxlineConfig_ */
|
||||
void JASystem::DSPInterface::FXBuffer::setFXLine(short*, JASystem::DSPInterface::FxlineConfig_*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8028A528-8028A574 .text allocInit__Q38JASystem12DSPInterface9DSPBufferFv */
|
||||
void JASystem::DSPInterface::DSPBuffer::allocInit() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8028A574-8028A5D8 .text playStart__Q38JASystem12DSPInterface9DSPBufferFv */
|
||||
void JASystem::DSPInterface::DSPBuffer::playStart() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8028A5D8-8028A6FC .text setWaveInfo__Q38JASystem12DSPInterface9DSPBufferFPQ38JASystem6Driver5Wave_UlUl */
|
||||
void JASystem::DSPInterface::DSPBuffer::setWaveInfo(JASystem::Driver::Wave_*, unsigned long, unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8028A6FC-8028A714 .text setOscInfo__Q38JASystem12DSPInterface9DSPBufferFUl */
|
||||
void JASystem::DSPInterface::DSPBuffer::setOscInfo(unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8028A714-8028A740 .text initAutoMixer__Q38JASystem12DSPInterface9DSPBufferFv */
|
||||
void JASystem::DSPInterface::DSPBuffer::initAutoMixer() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8028A740-8028A764 .text setAutoMixer__Q38JASystem12DSPInterface9DSPBufferFUsUcUcUcUc */
|
||||
void JASystem::DSPInterface::DSPBuffer::setAutoMixer(unsigned short, unsigned char, unsigned char, unsigned char, unsigned char) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8028A764-8028A77C .text setPitch__Q38JASystem12DSPInterface9DSPBufferFUs */
|
||||
void JASystem::DSPInterface::DSPBuffer::setPitch(unsigned short) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8028A77C-8028A788 .text setMixerInitDelayMax__Q38JASystem12DSPInterface9DSPBufferFUc */
|
||||
void JASystem::DSPInterface::DSPBuffer::setMixerInitDelayMax(unsigned char) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8028A788-8028A7AC .text setMixerInitVolume__Q38JASystem12DSPInterface9DSPBufferFUcsUc */
|
||||
void JASystem::DSPInterface::DSPBuffer::setMixerInitVolume(unsigned char, short, unsigned char) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8028A7AC-8028A7DC .text setMixerVolume__Q38JASystem12DSPInterface9DSPBufferFUcsUc */
|
||||
void JASystem::DSPInterface::DSPBuffer::setMixerVolume(unsigned char, short, unsigned char) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8028A7DC-8028A7F8 .text setMixerVolumeOnly__Q38JASystem12DSPInterface9DSPBufferFUcs */
|
||||
void JASystem::DSPInterface::DSPBuffer::setMixerVolumeOnly(unsigned char, short) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8028A7F8-8028A804 .text setPauseFlag__Q38JASystem12DSPInterface9DSPBufferFUc */
|
||||
void JASystem::DSPInterface::DSPBuffer::setPauseFlag(unsigned char) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8028A804-8028A828 .text flushChannel__Q38JASystem12DSPInterface9DSPBufferFv */
|
||||
void JASystem::DSPInterface::DSPBuffer::flushChannel() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8028A828-8028A884 .text initFilter__Q38JASystem12DSPInterface9DSPBufferFv */
|
||||
void JASystem::DSPInterface::DSPBuffer::initFilter() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8028A884-8028A8BC .text setFilterMode__Q38JASystem12DSPInterface9DSPBufferFUs */
|
||||
void JASystem::DSPInterface::DSPBuffer::setFilterMode(unsigned short) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8028A8BC-8028A8E4 .text setIIRFilterParam__Q38JASystem12DSPInterface9DSPBufferFPs */
|
||||
void JASystem::DSPInterface::DSPBuffer::setIIRFilterParam(short*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8028A8E4-8028A90C .text setFIR8FilterParam__Q38JASystem12DSPInterface9DSPBufferFPs */
|
||||
void JASystem::DSPInterface::DSPBuffer::setFIR8FilterParam(short*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8028A90C-8028A914 .text setDistFilter__Q38JASystem12DSPInterface9DSPBufferFs */
|
||||
void JASystem::DSPInterface::DSPBuffer::setDistFilter(short) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8028A914-8028A934 .text setBusConnect__Q38JASystem12DSPInterface9DSPBufferFUcUc */
|
||||
void JASystem::DSPInterface::DSPBuffer::setBusConnect(unsigned char, unsigned char) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8028A934-8028A978 .text DSP_CreateMap2__FUl */
|
||||
void DSP_CreateMap2(unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
@@ -0,0 +1,43 @@
|
||||
//
|
||||
// Generated by dtk
|
||||
// Translation Unit: JASDriverIF.cpp
|
||||
//
|
||||
|
||||
#include "JASDriverIF.h"
|
||||
#include "dolphin/types.h"
|
||||
|
||||
/* 8028A978-8028A9A0 .text init__Q28JASystem6DriverFv */
|
||||
void JASystem::Driver::init() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8028A9A0-8028AAC4 .text setMixerLevel__Q28JASystem6DriverFff */
|
||||
void JASystem::Driver::setMixerLevel(float, float) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8028AAC4-8028AACC .text getChannelLevel__Q28JASystem6DriverFv */
|
||||
void JASystem::Driver::getChannelLevel() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8028AACC-8028AAD4 .text getAutoLevel__Q28JASystem6DriverFv */
|
||||
void JASystem::Driver::getAutoLevel() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8028AAD4-8028AADC .text setOutputMode__Q28JASystem6DriverFUl */
|
||||
void JASystem::Driver::setOutputMode(unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8028AADC-8028AAE4 .text getOutputMode__Q28JASystem6DriverFv */
|
||||
void JASystem::Driver::getOutputMode() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8028AAE4-8028AAEC .text getUpdateInterval__Q28JASystem6DriverFv */
|
||||
void JASystem::Driver::getUpdateInterval() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
@@ -0,0 +1,8 @@
|
||||
//
|
||||
// Generated by dtk
|
||||
// Translation Unit: JASDriverTables.cpp
|
||||
//
|
||||
|
||||
#include "JASDriverTables.h"
|
||||
#include "dolphin/types.h"
|
||||
|
||||
@@ -0,0 +1,63 @@
|
||||
//
|
||||
// Generated by dtk
|
||||
// Translation Unit: JASDrumSet.cpp
|
||||
//
|
||||
|
||||
#include "JASDrumSet.h"
|
||||
#include "dolphin/types.h"
|
||||
|
||||
/* 802851D4-80285470 .text getParam__Q28JASystem8TDrumSetCFiiPQ28JASystem10TInstParam */
|
||||
void JASystem::TDrumSet::getParam(int, int, JASystem::TInstParam*) const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80285470-80285520 .text getPerc__Q28JASystem8TDrumSetFi */
|
||||
void JASystem::TDrumSet::getPerc(int) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80285520-80285554 .text __ct__Q38JASystem8TDrumSet5TPercFv */
|
||||
JASystem::TDrumSet::TPerc::TPerc() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80285554-802855B0 .text __dt__Q38JASystem8TDrumSet5TPercFv */
|
||||
JASystem::TDrumSet::TPerc::~TPerc() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802855B0-80285664 .text setEffectCount__Q38JASystem8TDrumSet5TPercFUl */
|
||||
void JASystem::TDrumSet::TPerc::setEffectCount(unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80285664-802856F8 .text setVeloRegionCount__Q38JASystem8TDrumSet5TPercFUl */
|
||||
void JASystem::TDrumSet::TPerc::setVeloRegionCount(unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802856F8-802857AC .text getVeloRegion__Q38JASystem8TDrumSet5TPercFi */
|
||||
void JASystem::TDrumSet::TPerc::getVeloRegion(int) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802857AC-80285864 .text setEffect__Q38JASystem8TDrumSet5TPercFiPQ28JASystem11TInstEffect */
|
||||
void JASystem::TDrumSet::TPerc::setEffect(int, JASystem::TInstEffect*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80285864-802858D8 .text setRelease__Q38JASystem8TDrumSet5TPercFUl */
|
||||
void JASystem::TDrumSet::TPerc::setRelease(unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 802858D8-8028595C .text __dt__Q28JASystem8TDrumSetFv */
|
||||
JASystem::TDrumSet::~TDrumSet() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8028595C-80285968 .text getType__Q28JASystem8TDrumSetCFv */
|
||||
void JASystem::TDrumSet::getType() const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
@@ -0,0 +1,73 @@
|
||||
//
|
||||
// Generated by dtk
|
||||
// Translation Unit: JASDvdThread.cpp
|
||||
//
|
||||
|
||||
#include "JASDvdThread.h"
|
||||
#include "dolphin/types.h"
|
||||
|
||||
/* 8027B500-8027B584 .text __ct__Q213JASTaskThread10TCallStackFUl */
|
||||
JASTaskThread::TCallStack::TCallStack(unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8027B584-8027B5D8 .text __dt__Q213JASTaskThread10TCallStackFv */
|
||||
JASTaskThread::TCallStack::~TCallStack() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8027B5D8-8027B66C .text sendCmdMsg__13JASTaskThreadFPFPv_lPvUl */
|
||||
void JASTaskThread::sendCmdMsg(long (*)(void*), void*, unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8027B66C-8027B6D4 .text run__13JASTaskThreadFv */
|
||||
void JASTaskThread::run() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8027B6D4-8027B72C .text pause__13JASTaskThreadFb */
|
||||
void JASTaskThread::pause(bool) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8027B72C-8027B7E8 .text createThread__Q28JASystem3DvdFiiUl */
|
||||
void JASystem::Dvd::createThread(int, int, unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8027B7E8-8027B84C .text resumeThread__Q28JASystem3DvdFv */
|
||||
void JASystem::Dvd::resumeThread() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8027B84C-8027B8D4 .text sendCmdMsg__Q28JASystem3DvdFPFPv_lPvUl */
|
||||
void JASystem::Dvd::sendCmdMsg(long (*)(void*), void*, unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8027B8D4-8027B914 .text checkPassDvdT__Q28JASystem3DvdFUlPUlPFUl_v */
|
||||
void JASystem::Dvd::checkPassDvdT(unsigned long, unsigned long*, void (*)(unsigned long)) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8027B914-8027B960 .text checkFile__Q28JASystem3DvdFPc */
|
||||
void JASystem::Dvd::checkFile(char*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8027B960-8027B9C4 .text unpauseDvdT__Q28JASystem3DvdFv */
|
||||
void JASystem::Dvd::unpauseDvdT() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8027B9C4-8027BA10 .text dvdThreadCheckBack__Q28JASystem3DvdFPv */
|
||||
void JASystem::Dvd::dvdThreadCheckBack(void*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8027BA10-8027BA70 .text __dt__13JASTaskThreadFv */
|
||||
JASTaskThread::~JASTaskThread() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
@@ -0,0 +1,103 @@
|
||||
//
|
||||
// Generated by dtk
|
||||
// Translation Unit: JASHardStream.cpp
|
||||
//
|
||||
|
||||
#include "JASHardStream.h"
|
||||
#include "dolphin/types.h"
|
||||
|
||||
/* 8027BE44-8027BEA4 .text unregistBgmAll__Q28JASystem10HardStreamFv */
|
||||
void JASystem::HardStream::unregistBgmAll() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8027BEA4-8027C318 .text main__Q28JASystem10HardStreamFv */
|
||||
void JASystem::HardStream::main() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8027C318-8027C39C .text firstBgmCallback__Q28JASystem10HardStreamFlP11DVDFileInfo */
|
||||
void JASystem::HardStream::firstBgmCallback(long, DVDFileInfo*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8027C39C-8027C3B0 .text secondBgmCallback__Q28JASystem10HardStreamFlP11DVDFileInfo */
|
||||
void JASystem::HardStream::secondBgmCallback(long, DVDFileInfo*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8027C3B0-8027C4E4 .text getAddrCallback__Q28JASystem10HardStreamFlP15DVDCommandBlock */
|
||||
void JASystem::HardStream::getAddrCallback(long, DVDCommandBlock*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8027C4E4-8027C544 .text __ct__Q38JASystem10HardStream8TControlFv */
|
||||
JASystem::HardStream::TControl::TControl() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8027C544-8027C57C .text getIntroNum__Q38JASystem10HardStream8TControlFv */
|
||||
void JASystem::HardStream::TControl::getIntroNum() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8027C57C-8027C5B4 .text getLoopNum__Q38JASystem10HardStream8TControlFv */
|
||||
void JASystem::HardStream::TControl::getLoopNum() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8027C5B4-8027C648 .text fileOpen__Q38JASystem10HardStream8TControlFUsP11DVDFileInfo */
|
||||
void JASystem::HardStream::TControl::fileOpen(unsigned short, DVDFileInfo*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8027C648-8027C67C .text clearListOne__Q38JASystem10HardStream8TControlFv */
|
||||
void JASystem::HardStream::TControl::clearListOne() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8027C67C-8027C710 .text setLastAddr__Q38JASystem10HardStream8TControlFP11DVDFileInfo */
|
||||
void JASystem::HardStream::TControl::setLastAddr(DVDFileInfo*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8027C710-8027C724 .text getLastAddr__Q38JASystem10HardStream8TControlFv */
|
||||
void JASystem::HardStream::TControl::getLastAddr() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8027C724-8027C7D8 .text startFirst__Q38JASystem10HardStream8TControlFUsP11DVDFileInfoPUl */
|
||||
void JASystem::HardStream::TControl::startFirst(unsigned short, DVDFileInfo*, unsigned long*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8027C7D8-8027C88C .text startSecond__Q38JASystem10HardStream8TControlFUsP11DVDFileInfoPUl */
|
||||
void JASystem::HardStream::TControl::startSecond(unsigned short, DVDFileInfo*, unsigned long*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8027C88C-8027C8C8 .text resetFader__Q38JASystem10HardStream8TControlFv */
|
||||
void JASystem::HardStream::TControl::resetFader() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8027C8C8-8027C900 .text getCurVol__Q38JASystem10HardStream8TControlFv */
|
||||
void JASystem::HardStream::TControl::getCurVol() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8027C900-8027CB5C .text calcCurVolume__Q38JASystem10HardStream8TControlFv */
|
||||
void JASystem::HardStream::TControl::calcCurVolume() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8027CB5C-8027CB9C .text volFloatToU8__Q38JASystem10HardStream8TControlFf */
|
||||
void JASystem::HardStream::TControl::volFloatToU8(float) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8027CBD8-8027CC14 .text __dt__Q38JASystem10HardStream8TControlFv */
|
||||
JASystem::HardStream::TControl::~TControl() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
@@ -0,0 +1,78 @@
|
||||
//
|
||||
// Generated by dtk
|
||||
// Translation Unit: JASHeapCtrl.cpp
|
||||
//
|
||||
|
||||
#include "JASHeapCtrl.h"
|
||||
#include "dolphin/types.h"
|
||||
|
||||
/* 8027CC14-8027CC88 .text __ct__Q38JASystem6Kernel5THeapFPQ38JASystem6Kernel9TDisposer */
|
||||
JASystem::Kernel::THeap::THeap(JASystem::Kernel::TDisposer*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8027CC88-8027CD38 .text initRootHeap__Q38JASystem6Kernel5THeapFPvUlQ48JASystem6Kernel5THeap4Type */
|
||||
void JASystem::Kernel::THeap::initRootHeap(void*, unsigned long, JASystem::Kernel::THeap::Type) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8027CD38-8027CF68 .text alloc__Q38JASystem6Kernel5THeapFPQ38JASystem6Kernel5THeapUl */
|
||||
void JASystem::Kernel::THeap::alloc(JASystem::Kernel::THeap*, unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8027CF68-8027D088 .text free__Q38JASystem6Kernel5THeapFv */
|
||||
void JASystem::Kernel::THeap::free() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8027D088-8027D1FC .text insertChild__Q38JASystem6Kernel5THeapFPQ38JASystem6Kernel5THeapPQ38JASystem6Kernel5THeapPvUlb */
|
||||
void JASystem::Kernel::THeap::insertChild(JASystem::Kernel::THeap*, JASystem::Kernel::THeap*, void*, unsigned long, bool) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8027D1FC-8027D280 .text getTailHeap__Q38JASystem6Kernel5THeapFv */
|
||||
void JASystem::Kernel::THeap::getTailHeap() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8027D280-8027D2E8 .text getTailOffset__Q38JASystem6Kernel5THeapFv */
|
||||
void JASystem::Kernel::THeap::getTailOffset() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8027D2E8-8027D354 .text getCurOffset__Q38JASystem6Kernel5THeapFv */
|
||||
void JASystem::Kernel::THeap::getCurOffset() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8027D354-8027D370 .text __ct__Q38JASystem6Kernel10TSolidHeapFv */
|
||||
JASystem::Kernel::TSolidHeap::TSolidHeap() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8027D370-8027D40C .text alloc__Q38JASystem6Kernel10TSolidHeapFl */
|
||||
void JASystem::Kernel::TSolidHeap::alloc(long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8027D40C-8027D424 .text freeAll__Q38JASystem6Kernel10TSolidHeapFv */
|
||||
void JASystem::Kernel::TSolidHeap::freeAll() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8027D424-8027D4AC .text init__Q38JASystem6Kernel10TSolidHeapFPUcl */
|
||||
void JASystem::Kernel::TSolidHeap::init(unsigned char*, long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8027D4AC-8027D4C4 .text getRemain__Q38JASystem6Kernel10TSolidHeapFv */
|
||||
void JASystem::Kernel::TSolidHeap::getRemain() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8027D4C4-8027D4C8 .text onDispose__Q38JASystem6Kernel9TDisposerFv */
|
||||
void JASystem::Kernel::TDisposer::onDispose() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
@@ -0,0 +1,13 @@
|
||||
//
|
||||
// Generated by dtk
|
||||
// Translation Unit: JASInstEffect.cpp
|
||||
//
|
||||
|
||||
#include "JASInstEffect.h"
|
||||
#include "dolphin/types.h"
|
||||
|
||||
/* 8028684C-802868F0 .text setTarget__Q28JASystem11TInstEffectFi */
|
||||
void JASystem::TInstEffect::setTarget(int) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
@@ -0,0 +1,13 @@
|
||||
//
|
||||
// Generated by dtk
|
||||
// Translation Unit: JASInstRand.cpp
|
||||
//
|
||||
|
||||
#include "JASInstRand.h"
|
||||
#include "dolphin/types.h"
|
||||
|
||||
/* 80286B58-80286BF4 .text getY__Q28JASystem9TInstRandCFii */
|
||||
void JASystem::TInstRand::getY(int, int) const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
@@ -0,0 +1,18 @@
|
||||
//
|
||||
// Generated by dtk
|
||||
// Translation Unit: JASInstSense.cpp
|
||||
//
|
||||
|
||||
#include "JASInstSense.h"
|
||||
#include "dolphin/types.h"
|
||||
|
||||
/* 802868F0-80286A1C .text getY__Q28JASystem10TInstSenseCFii */
|
||||
void JASystem::TInstSense::getY(int, int) const {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 80286A1C-80286B58 .text setParams__Q28JASystem10TInstSenseFiiff */
|
||||
void JASystem::TInstSense::setParams(int, int, float, float) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
@@ -0,0 +1,13 @@
|
||||
//
|
||||
// Generated by dtk
|
||||
// Translation Unit: JASKernelDebug.cpp
|
||||
//
|
||||
|
||||
#include "JASKernelDebug.h"
|
||||
#include "dolphin/types.h"
|
||||
|
||||
/* 8027D6B8-8027D6F4 .text stackInit__Q28JASystem6KernelFPUxUl */
|
||||
void JASystem::Kernel::stackInit(unsigned long long*, unsigned long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
@@ -0,0 +1,33 @@
|
||||
//
|
||||
// Generated by dtk
|
||||
// Translation Unit: JASNoteMgr.cpp
|
||||
//
|
||||
|
||||
#include "JASNoteMgr.h"
|
||||
#include "dolphin/types.h"
|
||||
|
||||
/* 8027DD54-8027DD94 .text init__Q38JASystem6TTrack8TNoteMgrFv */
|
||||
void JASystem::TTrack::TNoteMgr::init() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8027DD94-8027DDBC .text endProcess__Q38JASystem6TTrack8TNoteMgrFv */
|
||||
void JASystem::TTrack::TNoteMgr::endProcess() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8027DDBC-8027DE78 .text setChannel__Q38JASystem6TTrack8TNoteMgrFiPQ28JASystem8TChannel */
|
||||
void JASystem::TTrack::TNoteMgr::setChannel(int, JASystem::TChannel*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8027DE78-8027DF24 .text releaseChannel__Q38JASystem6TTrack8TNoteMgrFi */
|
||||
void JASystem::TTrack::TNoteMgr::releaseChannel(int) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8027DF24-8027DFD8 .text getChannel__Q38JASystem6TTrack8TNoteMgrFi */
|
||||
void JASystem::TTrack::TNoteMgr::getChannel(int) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
@@ -0,0 +1,38 @@
|
||||
//
|
||||
// Generated by dtk
|
||||
// Translation Unit: JASOscillator.cpp
|
||||
//
|
||||
|
||||
#include "JASOscillator.h"
|
||||
#include "dolphin/types.h"
|
||||
|
||||
/* 8028DE94-8028DECC .text init__Q28JASystem11TOscillatorFv */
|
||||
void JASystem::TOscillator::init() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8028DECC-8028DF2C .text initStart__Q28JASystem11TOscillatorFv */
|
||||
void JASystem::TOscillator::initStart() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8028DF2C-8028E070 .text getOffset__Q28JASystem11TOscillatorFv */
|
||||
void JASystem::TOscillator::getOffset() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8028E070-8028E0AC .text forceStop__Q28JASystem11TOscillatorFv */
|
||||
void JASystem::TOscillator::forceStop() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8028E0AC-8028E238 .text release__Q28JASystem11TOscillatorFv */
|
||||
void JASystem::TOscillator::release() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8028E238-8028E5EC .text calc__Q28JASystem11TOscillatorFPs */
|
||||
void JASystem::TOscillator::calc(short*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
@@ -0,0 +1,58 @@
|
||||
//
|
||||
// Generated by dtk
|
||||
// Translation Unit: JASOuterParam.cpp
|
||||
//
|
||||
|
||||
#include "JASOuterParam.h"
|
||||
#include "dolphin/types.h"
|
||||
|
||||
/* 8027DFD8-8027E020 .text __ct__Q38JASystem6TTrack11TOuterParamFv */
|
||||
JASystem::TTrack::TOuterParam::TOuterParam() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8027E020-8027E030 .text initExtBuffer__Q38JASystem6TTrack11TOuterParamFv */
|
||||
void JASystem::TTrack::TOuterParam::initExtBuffer() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8027E030-8027E038 .text setOuterSwitch__Q38JASystem6TTrack11TOuterParamFUs */
|
||||
void JASystem::TTrack::TOuterParam::setOuterSwitch(unsigned short) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8027E038-8027E054 .text checkOuterSwitch__Q38JASystem6TTrack11TOuterParamFUs */
|
||||
void JASystem::TTrack::TOuterParam::checkOuterSwitch(unsigned short) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8027E054-8027E05C .text setOuterUpdate__Q38JASystem6TTrack11TOuterParamFUs */
|
||||
void JASystem::TTrack::TOuterParam::setOuterUpdate(unsigned short) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8027E05C-8027E064 .text getOuterUpdate__Q38JASystem6TTrack11TOuterParamFv */
|
||||
void JASystem::TTrack::TOuterParam::getOuterUpdate() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8027E064-8027E074 .text getIntFirFilter__Q38JASystem6TTrack11TOuterParamFUc */
|
||||
void JASystem::TTrack::TOuterParam::getIntFirFilter(unsigned char) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8027E074-8027E110 .text setParam__Q38JASystem6TTrack11TOuterParamFUcf */
|
||||
void JASystem::TTrack::TOuterParam::setParam(unsigned char, float) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8027E110-8027E12C .text onSwitch__Q38JASystem6TTrack11TOuterParamFUs */
|
||||
void JASystem::TTrack::TOuterParam::onSwitch(unsigned short) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8027E12C-8027E170 .text setFirFilter__Q38JASystem6TTrack11TOuterParamFPs */
|
||||
void JASystem::TTrack::TOuterParam::setFirFilter(short*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
@@ -0,0 +1,23 @@
|
||||
//
|
||||
// Generated by dtk
|
||||
// Translation Unit: JASPlayer_impl.cpp
|
||||
//
|
||||
|
||||
#include "JASPlayer_impl.h"
|
||||
#include "dolphin/types.h"
|
||||
|
||||
/* 8027E170-8027E190 .text extend8to16__Q28JASystem6PlayerFUc */
|
||||
void JASystem::Player::extend8to16(unsigned char) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8027E190-8027E250 .text pitchToCent__Q28JASystem6PlayerFff */
|
||||
void JASystem::Player::pitchToCent(float, float) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8027E250-8027E2C0 .text getRandomS32__Q28JASystem6PlayerFv */
|
||||
void JASystem::Player::getRandomS32() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
@@ -0,0 +1,18 @@
|
||||
//
|
||||
// Generated by dtk
|
||||
// Translation Unit: JASProbe.cpp
|
||||
//
|
||||
|
||||
#include "JASProbe.h"
|
||||
#include "dolphin/types.h"
|
||||
|
||||
/* 8027D6B0-8027D6B4 .text probeStart__Q28JASystem6KernelFlPc */
|
||||
void JASystem::Kernel::probeStart(long, char*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 8027D6B4-8027D6B8 .text probeFinish__Q28JASystem6KernelFl */
|
||||
void JASystem::Kernel::probeFinish(long) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user