├── .flake8 ├── .gitattributes ├── .github └── workflows │ └── build.yml ├── .gitignore ├── .gitmodules ├── .vscode ├── extensions.json ├── settings.json └── tasks.json ├── LICENSE ├── README.md ├── assets └── objdiff.png ├── config ├── MarioClub_us │ ├── build.sha1 │ ├── config.yml │ ├── splits.txt │ └── symbols.txt ├── Release_eu │ ├── analysis_overrides.yml │ ├── assets.yml │ ├── config.yml │ ├── dol.yml │ ├── dol_slices.yml │ └── symbols.yml └── ld.tpl ├── configure.py ├── include ├── Bando │ └── EngineSound.h ├── Inagaki │ ├── GameAudioAnimator.h │ ├── GameAudioArcLoader.h │ ├── GameAudioAudience.h │ ├── GameAudioCamera.h │ ├── GameAudioCommon.h │ ├── GameAudioFxConfig.h │ ├── GameAudioHostIO.h │ ├── GameAudioMain.h │ ├── GameAudioMgr.h │ ├── GameMapSoundMgr.h │ ├── GameSoundMgr.h │ └── GameSoundTable.h ├── JSystem │ ├── J2D.h │ ├── J2D │ │ ├── J2DAnimation.h │ │ ├── J2DAnmLoader.h │ │ ├── J2DBloSaver.h │ │ ├── J2DGXColorS10.h │ │ ├── J2DGrafContext.h │ │ ├── J2DInd.h │ │ ├── J2DManage.h │ │ ├── J2DMatBlock.h │ │ ├── J2DMaterial.h │ │ ├── J2DMaterialFactory.h │ │ ├── J2DPane.h │ │ ├── J2DPicture.h │ │ ├── J2DPrint.h │ │ ├── J2DScreen.h │ │ ├── J2DTevStage.h │ │ ├── J2DTexMtx.h │ │ └── J2DTypes.h │ ├── J3D.h │ ├── J3D │ │ ├── J3DAnmBase.h │ │ ├── J3DAnmCluster.h │ │ ├── J3DAnmColor.h │ │ ├── J3DAnmLoader.h │ │ ├── J3DAnmTevRegKey.h │ │ ├── J3DAnmTexPattern.h │ │ ├── J3DAnmTextureSRTKey.h │ │ ├── J3DAnmTransform.h │ │ ├── J3DAnmVisibilityFull.h │ │ ├── J3DAnmVtxColor.h │ │ ├── J3DCluster.h │ │ ├── J3DClusterLoader.h │ │ ├── J3DColorBlock.h │ │ ├── J3DDisplayListObj.h │ │ ├── J3DDrawBuffer.h │ │ ├── J3DDrawMtxData.h │ │ ├── J3DFileBlock.h │ │ ├── J3DFrameCtrl.h │ │ ├── J3DGD.h │ │ ├── J3DGXColor.h │ │ ├── J3DInd.h │ │ ├── J3DJoint.h │ │ ├── J3DJointBlock.h │ │ ├── J3DJointFactory.h │ │ ├── J3DJointTree.h │ │ ├── J3DMaterial.h │ │ ├── J3DMaterialAnm.h │ │ ├── J3DMaterialFactory.h │ │ ├── J3DMath.h │ │ ├── J3DModel.h │ │ ├── J3DModelLoader.h │ │ ├── J3DMtxBuffer.h │ │ ├── J3DMtxCalc.h │ │ ├── J3DPE.h │ │ ├── J3DPacket.h │ │ ├── J3DShape.h │ │ ├── J3DShapeFactory.h │ │ ├── J3DSkinDeform.h │ │ ├── J3DSys.h │ │ ├── J3DTevBlock.h │ │ ├── J3DTexGenBlock.h │ │ ├── J3DTexMtx.h │ │ ├── J3DTexture.h │ │ ├── J3DTransform.h │ │ ├── J3DTypes.h │ │ ├── J3DVertexBuffer.h │ │ ├── J3DVertexData.h │ │ └── J3DVtxColorCalc.h │ ├── J3DU │ │ ├── J3DU.h │ │ ├── J3DUClipper.h │ │ ├── J3DUMotion.h │ │ └── J3DUMtxCache.h │ ├── JAudio │ │ ├── Interface │ │ │ ├── JAIAudible.h │ │ │ ├── JAIAudience.h │ │ │ ├── JAISe.h │ │ │ ├── JAISeMgr.h │ │ │ ├── JAISeq.h │ │ │ ├── JAISeqDataMgr.h │ │ │ ├── JAISeqMgr.h │ │ │ ├── JAISound.h │ │ │ ├── JAISoundHandles.h │ │ │ ├── JAISoundParams.h │ │ │ ├── JAIStream.h │ │ │ ├── JAIStreamDataMgr.h │ │ │ └── JAIStreamMgr.h │ │ ├── JASFakeMatch.h │ │ ├── JASFakeMatch10.h │ │ ├── JASFakeMatch11.h │ │ ├── JASFakeMatch12.h │ │ ├── JASFakeMatch2.h │ │ ├── JASFakeMatch3.h │ │ ├── JASFakeMatch4.h │ │ ├── JASFakeMatch5.h │ │ ├── JASFakeMatch6.h │ │ ├── JASFakeMatch7.h │ │ ├── JASFakeMatch8.h │ │ ├── JASFakeMatch9.h │ │ ├── JAUAudience.h │ │ ├── JAUAudioArchive.h │ │ ├── JAUAudioMgr.h │ │ ├── JAUBankTable.h │ │ ├── JAUClusterSound.h │ │ ├── JAUInitializer.h │ │ ├── JAUSectionHeap.h │ │ ├── JAUSeqCollection.h │ │ ├── JAUSeqDataBlockMgr.h │ │ ├── JAUSoundAnimator.h │ │ ├── JAUSoundInfo.h │ │ ├── JAUSoundMgr.h │ │ ├── JAUSoundObject.h │ │ ├── JAUSoundTable.h │ │ ├── JAUStreamFileTable.h │ │ ├── System │ │ │ ├── JASAramStream.h │ │ │ ├── JASAudioReseter.h │ │ │ ├── JASAudioThread.h │ │ │ ├── JASBNKParser.h │ │ │ ├── JASBank.h │ │ │ ├── JASBankList.h │ │ │ ├── JASBankTable.h │ │ │ ├── JASCalc.h │ │ │ ├── JASCallback.h │ │ │ ├── JASChannel.h │ │ │ ├── JASCmdStack.h │ │ │ ├── JASCriticalSection.h │ │ │ ├── JASDisposer.h │ │ │ ├── JASDriver.h │ │ │ ├── JASDrumSet.h │ │ │ ├── JASDsp.h │ │ │ ├── JASDvd.h │ │ │ ├── JASGadget.h │ │ │ ├── JASHeap.h │ │ │ ├── JASHeapCtrl.h │ │ │ ├── JASInst.h │ │ │ ├── JASKernel.h │ │ │ ├── JASLfo.h │ │ │ ├── JASMutex.h │ │ │ ├── JASOscillator.h │ │ │ ├── JASProbe.h │ │ │ ├── JASRegisterParam.h │ │ │ ├── JASReport.h │ │ │ ├── JASResArcLoader.h │ │ │ ├── JASSeqCtrl.h │ │ │ ├── JASSeqParser.h │ │ │ ├── JASSeqReader.h │ │ │ ├── JASSoundParams.h │ │ │ ├── JASTaskThread.h │ │ │ ├── JASTrack.h │ │ │ ├── JASWSParser.h │ │ │ ├── JASWaveArcLoader.h │ │ │ ├── JASWaveBank.h │ │ │ └── JASWaveInfo.h │ │ └── dsp.h │ ├── JBlockType.h │ ├── JFramework.h │ ├── JFramework │ │ ├── JFWDisplay.h │ │ └── JFWSystem.h │ ├── JGadget │ │ ├── define.h │ │ ├── hashcode.h │ │ ├── linklist.h │ │ ├── std-list.h │ │ └── std-memory.h │ ├── JGeometry.h │ ├── JGeometry │ │ ├── Box.h │ │ ├── Matrix.h │ │ ├── Quat.h │ │ ├── Util.h │ │ └── Vec.h │ ├── JKernel.h │ ├── JKernel │ │ ├── JKRAram.h │ │ ├── JKRAramPiece.h │ │ ├── JKRArchive.h │ │ ├── JKRAssertHeap.h │ │ ├── JKRCompression.h │ │ ├── JKRDecomp.h │ │ ├── JKRDisposer.h │ │ ├── JKRDvdAramRipper.h │ │ ├── JKRDvdFile.h │ │ ├── JKRDvdRipper.h │ │ ├── JKRExpHeap.h │ │ ├── JKRFile.h │ │ ├── JKRFileCache.h │ │ ├── JKRFileFinder.h │ │ ├── JKRFileLoader.h │ │ ├── JKRHeap.h │ │ └── JKRThread.h │ ├── JMath │ │ ├── Inline.h │ │ └── JMath.h │ ├── JORReflexible.h │ ├── JParticle │ │ ├── JPABlock.h │ │ ├── JPAEmitter.h │ │ ├── JPAField.h │ │ ├── JPAList.h │ │ ├── JPAMath.h │ │ ├── JPAResource.h │ │ ├── JPAShape.h │ │ └── JPATexture.h │ ├── JSupport.h │ ├── JSupport │ │ ├── JSUList.h │ │ └── JSUStream.h │ ├── JUtility.h │ ├── JUtility │ │ ├── FontData │ │ │ └── .gitkeep │ │ ├── JUTAssert.h │ │ ├── JUTConsole.h │ │ ├── JUTDbPrint.h │ │ ├── JUTDbg.h │ │ ├── JUTDirectFile.h │ │ ├── JUTDirectPrint.h │ │ ├── JUTException.h │ │ ├── JUTExternalFB.h │ │ ├── JUTFader.h │ │ ├── JUTFont.h │ │ ├── JUTGamePad.h │ │ ├── JUTGraphFifo.h │ │ ├── JUTNameTab.h │ │ ├── JUTPalette.h │ │ ├── JUTProcBar.h │ │ ├── JUTResource.h │ │ ├── JUTTexture.h │ │ ├── JUTVideo.h │ │ ├── JUTXfb.h │ │ └── TColor.h │ ├── Logitech │ │ └── Wheels.h │ ├── ResTIMG.h │ └── ResTLUT.h ├── Kameda │ ├── BattleName2D.h │ ├── CharacterSelect3D.h │ ├── Demo2D.h │ ├── Fade.h │ ├── J2DManager.h │ ├── Mario.h │ ├── MotorManager.h │ ├── PauseManager.h │ ├── PrintDvdError.h │ ├── PrintMemoryCard.h │ ├── PrintProgressive.h │ ├── PrintWindow.h │ ├── Race2D.h │ ├── ReadPrintMessage.h │ ├── Result2D.h │ ├── Scene.h │ ├── SceneApp.h │ ├── SceneCourseSelect.h │ ├── SceneFactory.h │ ├── SceneMenu.h │ ├── SequenceInfo.h │ ├── Task.h │ └── WipeManager.h ├── Kaneshige │ ├── Blurscreen.h │ ├── CenterLine.h │ ├── Course │ │ ├── AIPath.h │ │ ├── Course.h │ │ ├── CrsArea.h │ │ ├── CrsData.h │ │ └── CrsGround.h │ ├── DarkAnmMgr.h │ ├── DemoTimeKeeper.h │ ├── DrawBuffer.h │ ├── ExModel.h │ ├── GhostScreen.h │ ├── HioMgr.h │ ├── JugemPoint.h │ ├── KartChecker.h │ ├── KartChkUsrPage.h │ ├── KartDrawer.h │ ├── KartInfo.h │ ├── KartLoader.h │ ├── KartMotion.h │ ├── KartMtx.h │ ├── LightMgr.h │ ├── MaskScreen.h │ ├── MdlViewer.h │ ├── MenuLight.h │ ├── Movie │ │ ├── MovieApp.h │ │ ├── MoviePlayer.h │ │ └── THPDraw.h │ ├── Objects │ │ ├── GeoAirJet.h │ │ ├── GeoBombCar.h │ │ ├── GeoBus.h │ │ ├── GeoCannon.h │ │ ├── GeoCar.h │ │ ├── GeoCarShadow.h │ │ ├── GeoDkCloud.h │ │ ├── GeoHanaBody.h │ │ ├── GeoHanaCar.h │ │ ├── GeoItemCar.h │ │ ├── GeoItemGen.h │ │ ├── GeoKinoCar.h │ │ ├── GeoKinojii.h │ │ ├── GeoKuriCar.h │ │ ├── GeoKuribo.h │ │ ├── GeoNormCar.h │ │ ├── GeoPuller.h │ │ ├── GeoRabbitMark.h │ │ ├── GeoShimmer.h │ │ ├── GeoShine.h │ │ ├── GeoSignal.h │ │ ├── GeoSoundGen.h │ │ ├── GeoSplash.h │ │ ├── GeoStartLine.h │ │ ├── GeoTideSensor.h │ │ ├── GeoTruck.h │ │ ├── GeoVision.h │ │ └── GeoWater.h │ ├── RaceBGMPlayer.h │ ├── RaceDirector.h │ ├── RaceDrawer.h │ ├── RaceInfo.h │ ├── RaceLight.h │ ├── RaceMgr.h │ ├── RaceTime.h │ ├── RaceUsrPage.h │ ├── ScrnShot.h │ ├── ShapePktControl.h │ ├── ShimmerScreen.h │ ├── SimpleDrawer.h │ ├── SysDebug.h │ ├── THP │ │ ├── THPAudioDecode.h │ │ ├── THPBuffer.h │ │ ├── THPFile.h │ │ ├── THPInfo.h │ │ ├── THPPlayer.h │ │ ├── THPRead.h │ │ └── THPVideoDecode.h │ ├── TexLODControl.h │ └── ViewCtrlModel.h ├── Kawano │ ├── PrintPal.h │ ├── SceneTitleLine.h │ ├── StaffRoll2D.h │ ├── accessory.h │ ├── driver.h │ ├── feeling.h │ └── osage.h ├── Osako │ ├── AppMgr.h │ ├── Award2D.h │ ├── AwardApp.h │ ├── BBAMgr.h │ ├── CardAgent.h │ ├── CardMgr.h │ ├── ErrorViewApp.h │ ├── FontMgr.h │ ├── ForceEffectMgr.h │ ├── GIRecord.h │ ├── GPRecord.h │ ├── GameApp.h │ ├── GhostFile.h │ ├── Kart2DCommon.h │ ├── KartPadData.h │ ├── KartPadRecord.h │ ├── LANEntry.h │ ├── LANPlayInfo.h │ ├── LANSelectMode.h │ ├── LANTitle.h │ ├── LogoApp.h │ ├── MainMenuApp.h │ ├── MapSelectApp.h │ ├── MenuBackground.h │ ├── MenuTitleLine.h │ ├── NameEntryHelper.h │ ├── NetGameMgr.h │ ├── NetGateApp.h │ ├── PadMgr.h │ ├── PadRecorder.h │ ├── PlayerSelectApp.h │ ├── PrintApp.h │ ├── RaceApp.h │ ├── ResMgr.h │ ├── ResetAgent.h │ ├── SaveFile.h │ ├── SequenceApp.h │ ├── SystemFile.h │ ├── SystemRecord.h │ ├── TARecord.h │ ├── TestViewApp.h │ ├── animator.h │ ├── clock.h │ ├── kartPad.h │ ├── password.h │ ├── screenshot.h │ ├── shadowMgr.h │ ├── shadowModel.h │ ├── shadowScr.h │ ├── system.h │ ├── systemData.h │ └── testApp.h ├── Sato │ ├── AnmController.h │ ├── EffectScreen.h │ ├── GeographyObj.h │ ├── GeographyObjMgr.h │ ├── ItemBanana.h │ ├── ItemBomb.h │ ├── ItemFlyTurtle.h │ ├── ItemHeart.h │ ├── ItemKinoko.h │ ├── ItemObj.h │ ├── ItemObjMgr.h │ ├── ItemStar.h │ ├── ItemSuccession.h │ ├── ItemThunder.h │ ├── ItemTurtle.h │ ├── ItemWanWan.h │ ├── ItemYoshiEgg.h │ ├── J3DAnmObject.h │ ├── J3DEfctHeart.h │ ├── J3DEffectMgr.h │ ├── JPEffectMgr.h │ ├── JPEffectPerformer.h │ ├── NeckCtrl.h │ ├── ObjCollision.h │ ├── ObjUtility.h │ ├── Objects │ │ ├── GeoItemBox.h │ │ ├── GeoJumpNarrow.h │ │ ├── GeoObjPathMove.h │ │ ├── GeoRFlower.h │ │ └── GeoTree.h │ ├── RivalBodyCtrl.h │ ├── RivalCtrlBase.h │ ├── RivalItemCtrl.h │ ├── RivalKart.h │ ├── RivalSpeedCtrl.h │ ├── StateObserver.h │ ├── stEfctWeed.h │ ├── stEffectMgr.h │ ├── stEmitter.h │ └── stMath.h ├── Shiraiwa │ ├── AnmPlayer.h │ ├── Balloon.h │ ├── Coord3D.h │ ├── Interp.h │ ├── JugemHeadItem.h │ ├── JugemItem.h │ ├── JugemMain.h │ ├── JugemRodItem.h │ ├── LensFlare.h │ ├── MapObjAntLion.h │ ├── MapObjAward.h │ ├── MapObjDemoObj.h │ ├── MapObjHanabi.h │ ├── MapObjPool.h │ ├── SecretScene.h │ ├── SiUtil.h │ ├── Wipe.h │ └── ZCaptureMgr.h ├── Yamamoto │ ├── KartAnime.h │ ├── KartAnt.h │ ├── KartAppendix.h │ ├── KartCannon.h │ ├── KartCheck.h │ ├── KartCrash.h │ ├── KartDamage.h │ ├── KartDemoCam.h │ ├── KartDisp.h │ ├── KartDossin.h │ ├── KartGame.h │ ├── KartHandle.h │ ├── KartItem.h │ ├── KartMat.h │ ├── KartMath.h │ ├── KartPerCam.h │ ├── KartPipe.h │ ├── KartRescue.h │ ├── KartScene.h │ ├── KartSound.h │ ├── KartStar.h │ ├── KartStrat.h │ ├── KartTarget.h │ ├── KartThunder.h │ ├── KartTire.h │ ├── KartTumble.h │ ├── KartVec.h │ ├── kartBody.h │ ├── kartCamera.h │ ├── kartCtrl.h │ ├── kartLine.h │ ├── kartPad.h │ ├── kartParams.h │ └── kartSus.h ├── dolphin │ ├── CARDPriv.h │ ├── DVDPriv.h │ ├── OSRtcPriv.h │ ├── ai.h │ ├── ar │ │ ├── ar.h │ │ └── arq.h │ ├── base.h │ ├── base │ │ └── PPCArch.h │ ├── card.h │ ├── db.h │ ├── dsp.h │ ├── dvd.h │ ├── dvd │ │ ├── dvd.h │ │ ├── dvdfs.h │ │ ├── dvdlow.h │ │ └── dvdqueue.h │ ├── eth │ │ ├── eth.h │ │ └── hashfunc.c │ ├── exi.h │ ├── gd.h │ ├── gx.h │ ├── gx │ │ ├── GXBump.h │ │ ├── GXCommandList.h │ │ ├── GXCull.h │ │ ├── GXDispList.h │ │ ├── GXDraw.h │ │ ├── GXEnum.h │ │ ├── GXFifo.h │ │ ├── GXFrameBuffer.h │ │ ├── GXGeometry.h │ │ ├── GXGet.h │ │ ├── GXLighting.h │ │ ├── GXManage.h │ │ ├── GXMisc.h │ │ ├── GXPerf.h │ │ ├── GXPixel.h │ │ ├── GXPriv.h │ │ ├── GXStruct.h │ │ ├── GXTev.h │ │ ├── GXTexture.h │ │ ├── GXTransform.h │ │ └── GXVert.h │ ├── hio.h │ ├── hw_regs.h │ ├── ip │ │ └── ip.h │ ├── lg.h │ ├── md5.h │ ├── mtx.h │ ├── os.h │ ├── os │ │ ├── OSAlarm.h │ │ ├── OSAlloc.h │ │ ├── OSArena.h │ │ ├── OSBootInfo.h │ │ ├── OSCache.h │ │ ├── OSContext.h │ │ ├── OSError.h │ │ ├── OSException.h │ │ ├── OSExpansion.h │ │ ├── OSFastCast.h │ │ ├── OSFont.h │ │ ├── OSFst.h │ │ ├── OSInterrupt.h │ │ ├── OSMemory.h │ │ ├── OSMessage.h │ │ ├── OSModule.h │ │ ├── OSMutex.h │ │ ├── OSPriv.h │ │ ├── OSReset.h │ │ ├── OSResetSW.h │ │ ├── OSSerial.h │ │ ├── OSThread.h │ │ ├── OSTime.h │ │ └── init │ │ │ └── __start.h │ ├── pad.h │ ├── sipriv.h │ ├── tcp │ │ └── tcp.h │ ├── thp.h │ ├── types.h │ └── vi.h ├── kartEnums.h ├── kartLocale.h ├── macros.h ├── mathHelper.h ├── std │ ├── bitset.h │ └── math.h └── types.h ├── libs ├── JSystem │ ├── J2DGraph │ │ ├── J2DAnimation.cpp │ │ ├── J2DAnmLoader.cpp │ │ ├── J2DBloSaver.cpp │ │ ├── J2DGrafContext.cpp │ │ ├── J2DManage.cpp │ │ ├── J2DMatBlock.cpp │ │ ├── J2DMaterial.cpp │ │ ├── J2DMaterialFactory.cpp │ │ ├── J2DOrthoGraph.cpp │ │ ├── J2DPane.cpp │ │ ├── J2DPerspGraph.cpp │ │ ├── J2DPicture.cpp │ │ ├── J2DPictureEx.cpp │ │ ├── J2DPrint.cpp │ │ ├── J2DScreen.cpp │ │ ├── J2DTevs.cpp │ │ ├── J2DTextBox.cpp │ │ ├── J2DTextBoxEx.cpp │ │ ├── J2DWindow.cpp │ │ └── J2DWindowEx.cpp │ ├── J3D │ │ ├── GraphAnimator │ │ │ ├── J3DAnimation.cpp │ │ │ ├── J3DCluster.cpp │ │ │ ├── J3DJoint.cpp │ │ │ ├── J3DJointTree.cpp │ │ │ ├── J3DMaterialAnm.cpp │ │ │ ├── J3DMaterialAttach.cpp │ │ │ ├── J3DModel.cpp │ │ │ ├── J3DModelData.cpp │ │ │ ├── J3DMtxBuffer.cpp │ │ │ ├── J3DShapeTable.cpp │ │ │ └── J3DSkinDeform.cpp │ │ ├── GraphBase │ │ │ ├── J3DDrawBuffer.cpp │ │ │ ├── J3DGD.cpp │ │ │ ├── J3DMatBlock.cpp │ │ │ ├── J3DMaterial.cpp │ │ │ ├── J3DPacket.cpp │ │ │ ├── J3DShape.cpp │ │ │ ├── J3DShapeDraw.cpp │ │ │ ├── J3DShapeMtx.cpp │ │ │ ├── J3DStruct.cpp │ │ │ ├── J3DSys.cpp │ │ │ ├── J3DTevs.cpp │ │ │ ├── J3DTexture.cpp │ │ │ ├── J3DTransform.cpp │ │ │ └── J3DVertex.cpp │ │ └── GraphLoader │ │ │ ├── J3DAnmLoader.cpp │ │ │ ├── J3DBinaryFormat.cpp │ │ │ ├── J3DClusterLoader.cpp │ │ │ ├── J3DJointFactory.cpp │ │ │ ├── J3DMaterialFactory.cpp │ │ │ ├── J3DMaterialFactory_v21.cpp │ │ │ ├── J3DModelLoader.cpp │ │ │ ├── J3DModelLoaderCalcSize.cpp │ │ │ ├── J3DModelSaver.cpp │ │ │ └── J3DShapeFactory.cpp │ ├── J3DU │ │ ├── J3DUClipper.cpp │ │ ├── J3DUDL.cpp │ │ ├── J3DUMotion.cpp │ │ └── J3DUPerf.cpp │ ├── JAudio │ │ ├── Interface │ │ │ ├── JAIAudible.cpp │ │ │ ├── JAIAudience.cpp │ │ │ ├── JAISe.cpp │ │ │ ├── JAISeMgr.cpp │ │ │ ├── JAISeq.cpp │ │ │ ├── JAISeqDataMgr.cpp │ │ │ ├── JAISeqMgr.cpp │ │ │ ├── JAISound.cpp │ │ │ ├── JAISoundChild.cpp │ │ │ ├── JAISoundHandles.cpp │ │ │ ├── JAISoundInfo.cpp │ │ │ ├── JAISoundParams.cpp │ │ │ ├── JAISoundStarter.cpp │ │ │ ├── JAIStream.cpp │ │ │ ├── JAIStreamDataMgr.cpp │ │ │ └── JAIStreamMgr.cpp │ │ ├── System │ │ │ ├── JASAiCtrl.cpp │ │ │ ├── JASAramStream.cpp │ │ │ ├── JASAudioReseter.cpp │ │ │ ├── JASAudioThread.cpp │ │ │ ├── JASBNKParser.cpp │ │ │ ├── JASBank.cpp │ │ │ ├── JASBasicBank.cpp │ │ │ ├── JASBasicInst.cpp │ │ │ ├── JASBasicWaveBank.cpp │ │ │ ├── JASCalc.cpp │ │ │ ├── JASCallback.cpp │ │ │ ├── JASChannel.cpp │ │ │ ├── JASCmdStack.cpp │ │ │ ├── JASDSPChannel.cpp │ │ │ ├── JASDSPInterface.cpp │ │ │ ├── JASDriverIF.cpp │ │ │ ├── JASDrumSet.cpp │ │ │ ├── JASDvdThread.cpp │ │ │ ├── JASHeapCtrl.cpp │ │ │ ├── JASInstRand.cpp │ │ │ ├── JASInstSense.cpp │ │ │ ├── JASLfo.cpp │ │ │ ├── JASOscillator.cpp │ │ │ ├── JASProbe.cpp │ │ │ ├── JASRegisterParam.cpp │ │ │ ├── JASReport.cpp │ │ │ ├── JASResArcLoader.cpp │ │ │ ├── JASSeqCtrl.cpp │ │ │ ├── JASSeqParser.cpp │ │ │ ├── JASSeqReader.cpp │ │ │ ├── JASSimpleWaveBank.cpp │ │ │ ├── JASSoundParams.cpp │ │ │ ├── JASTaskThread.cpp │ │ │ ├── JASTrack.cpp │ │ │ ├── JASTrackPort.cpp │ │ │ ├── JASWSParser.cpp │ │ │ ├── JASWaveArcLoader.cpp │ │ │ └── JASWaveBank.cpp │ │ ├── Task │ │ │ ├── dspproc.c │ │ │ ├── dsptask.c │ │ │ ├── osdsp.c │ │ │ └── osdsp_task.c │ │ └── Utility │ │ │ ├── JAUAudience.cpp │ │ │ ├── JAUAudioArcInterpreter.cpp │ │ │ ├── JAUAudioArcLoader.cpp │ │ │ ├── JAUAudioMgr.cpp │ │ │ ├── JAUBankTable.cpp │ │ │ ├── JAUClusterSound.cpp │ │ │ ├── JAUInitializer.cpp │ │ │ ├── JAUSectionHeap.cpp │ │ │ ├── JAUSeqCollection.cpp │ │ │ ├── JAUSeqDataBlockMgr.cpp │ │ │ ├── JAUSoundAnimator.cpp │ │ │ ├── JAUSoundMgr.cpp │ │ │ ├── JAUSoundObject.cpp │ │ │ ├── JAUSoundTable.cpp │ │ │ └── JAUStreamFileTable.cpp │ ├── JFramework │ │ ├── JFWDisplay.cpp │ │ └── JFWSystem.cpp │ ├── JGadget │ │ ├── hashcode.cpp │ │ └── linklist.cpp │ ├── JKernel │ │ ├── JKRAram.cpp │ │ ├── JKRAramArchive.cpp │ │ ├── JKRAramBlock.cpp │ │ ├── JKRAramHeap.cpp │ │ ├── JKRAramPiece.cpp │ │ ├── JKRAramStream.cpp │ │ ├── JKRArchivePri.cpp │ │ ├── JKRArchivePub.cpp │ │ ├── JKRAssertHeap.cpp │ │ ├── JKRCompArchive.cpp │ │ ├── JKRDecomp.cpp │ │ ├── JKRDisposer.cpp │ │ ├── JKRDvdAramRipper.cpp │ │ ├── JKRDvdArchive.cpp │ │ ├── JKRDvdFile.cpp │ │ ├── JKRDvdRipper.cpp │ │ ├── JKRExpHeap.cpp │ │ ├── JKRFile.cpp │ │ ├── JKRFileCache.cpp │ │ ├── JKRFileFinder.cpp │ │ ├── JKRFileLoader.cpp │ │ ├── JKRHeap.cpp │ │ ├── JKRMemArchive.cpp │ │ ├── JKRSolidHeap.cpp │ │ └── JKRThread.cpp │ ├── JMath │ │ ├── JMATrigonometric.cpp │ │ ├── JMath.cpp │ │ └── random.cpp │ ├── JParticle │ │ ├── JPABaseShape.cpp │ │ ├── JPAChildShape.cpp │ │ ├── JPADynamicsBlock.cpp │ │ ├── JPAEmitter.cpp │ │ ├── JPAEmitterManager.cpp │ │ ├── JPAExTexShape.cpp │ │ ├── JPAExtraShape.cpp │ │ ├── JPAFieldBlock.cpp │ │ ├── JPAKeyBlock.cpp │ │ ├── JPAMath.cpp │ │ ├── JPAParticle.cpp │ │ ├── JPAResource.cpp │ │ ├── JPAResourceLoader.cpp │ │ ├── JPAResourceManager.cpp │ │ └── JPATexture.cpp │ ├── JSupport │ │ ├── JSUFileStream.cpp │ │ ├── JSUInputStream.cpp │ │ ├── JSUList.cpp │ │ ├── JSUMemoryStream.cpp │ │ └── JSUOutputStream.cpp │ ├── JUtility │ │ ├── JUTAssert.cpp │ │ ├── JUTConsole.cpp │ │ ├── JUTDbPrint.cpp │ │ ├── JUTDirectFile.cpp │ │ ├── JUTDirectPrint.cpp │ │ ├── JUTException.cpp │ │ ├── JUTFader.cpp │ │ ├── JUTFont.cpp │ │ ├── JUTFontData_Ascfont_fix12.s │ │ ├── JUTGamePad.cpp │ │ ├── JUTGraphFifo.cpp │ │ ├── JUTNameTab.cpp │ │ ├── JUTPalette.cpp │ │ ├── JUTProcBar.cpp │ │ ├── JUTResFont.cpp │ │ ├── JUTResource.cpp │ │ ├── JUTTexture.cpp │ │ ├── JUTVideo.cpp │ │ └── JUTXfb.cpp │ └── Logitech │ │ ├── Conditon.cpp │ │ ├── Constant.cpp │ │ ├── Force.cpp │ │ ├── LGWheels.cpp │ │ ├── Periodic.cpp │ │ ├── Ramp.cpp │ │ └── Wheels.cpp ├── PowerPC_EABI_Support │ ├── include │ │ ├── PowerPC_EABI_Support │ │ │ ├── MSL_C │ │ │ │ ├── MSL_Common │ │ │ │ │ ├── FILE_POS.h │ │ │ │ │ ├── abort_exit.h │ │ │ │ │ ├── alloc.h │ │ │ │ │ ├── ansi_files.h │ │ │ │ │ ├── ansi_fp.h │ │ │ │ │ ├── ansi_params.h │ │ │ │ │ ├── arith.h │ │ │ │ │ ├── bsearch.h │ │ │ │ │ ├── critical_regions.h │ │ │ │ │ ├── ctype_api.h │ │ │ │ │ ├── direct_io.h │ │ │ │ │ ├── file_io.h │ │ │ │ │ ├── file_struc.h │ │ │ │ │ ├── locale_api.h │ │ │ │ │ ├── math_api.h │ │ │ │ │ ├── mbstring.h │ │ │ │ │ ├── mem_funcs.h │ │ │ │ │ ├── misc_io.h │ │ │ │ │ ├── printf.h │ │ │ │ │ ├── rand.h │ │ │ │ │ ├── scanf.h │ │ │ │ │ ├── secure_error.h │ │ │ │ │ ├── signal.h │ │ │ │ │ ├── stdio_api.h │ │ │ │ │ ├── strtold.h │ │ │ │ │ ├── strtoul.h │ │ │ │ │ └── wchar_io.h │ │ │ │ └── PPC_EABI │ │ │ │ │ └── math_ppc.h │ │ │ ├── MetroTRK │ │ │ │ ├── custconn │ │ │ │ │ ├── CircleBuffer.h │ │ │ │ │ └── cc_gdev.h │ │ │ │ ├── dispatch.h │ │ │ │ ├── dolphin_trk.h │ │ │ │ ├── target_options.h │ │ │ │ └── trk.h │ │ │ └── Runtime │ │ │ │ ├── Gecko_ExceptionPPC.h │ │ │ │ ├── MWCPlusPlusLib.h │ │ │ │ ├── NMWException.h │ │ │ │ ├── __init_cpp_exceptions.h │ │ │ │ ├── __mem.h │ │ │ │ ├── __ppc_eabi_linker.h │ │ │ │ ├── __va_arg.h │ │ │ │ ├── global_destructor_chain.h │ │ │ │ └── runtime.h │ │ ├── algorithm │ │ ├── cstring │ │ ├── ctype.h │ │ ├── errno.h │ │ ├── exception │ │ ├── extras.h │ │ ├── fdlibm.h │ │ ├── float.h │ │ ├── functional │ │ ├── iterator │ │ ├── limits │ │ ├── limits.h │ │ ├── locale.h │ │ ├── math.h │ │ ├── mem.h │ │ ├── signal.h │ │ ├── stdarg.h │ │ ├── stdio.h │ │ ├── stdlib.h │ │ ├── string.h │ │ ├── utility │ │ └── wchar.h │ └── src │ │ ├── MSL_C │ │ ├── MSL_Common │ │ │ ├── FILE_POS.C │ │ │ ├── alloc.c │ │ │ ├── ansi_files.c │ │ │ ├── arith.c │ │ │ ├── bsearch.c │ │ │ ├── buffer_io.c │ │ │ ├── ctype.c │ │ │ ├── direct_io.c │ │ │ ├── errno.c │ │ │ ├── extras.c │ │ │ ├── file_io.c │ │ │ ├── float.c │ │ │ ├── locale.c │ │ │ ├── mbstring.c │ │ │ ├── mem.c │ │ │ ├── mem_funcs.c │ │ │ ├── misc_io.c │ │ │ ├── printf.c │ │ │ ├── rand.c │ │ │ ├── scanf.c │ │ │ ├── signal.c │ │ │ ├── string.c │ │ │ ├── strtold.c │ │ │ ├── strtoul.c │ │ │ └── wchar_io.c │ │ ├── MSL_Common_Embedded │ │ │ ├── Math │ │ │ │ └── Double_precision │ │ │ │ │ ├── e_asin.c │ │ │ │ │ ├── e_atan2.c │ │ │ │ │ ├── e_exp.c │ │ │ │ │ ├── e_fmod.c │ │ │ │ │ ├── e_log.c │ │ │ │ │ ├── e_log10.c │ │ │ │ │ ├── e_pow.c │ │ │ │ │ ├── e_rem_pio2.c │ │ │ │ │ ├── e_sqrt.c │ │ │ │ │ ├── k_cos.c │ │ │ │ │ ├── k_rem_pio2.c │ │ │ │ │ ├── k_sin.c │ │ │ │ │ ├── k_tan.c │ │ │ │ │ ├── s_atan.c │ │ │ │ │ ├── s_ceil.c │ │ │ │ │ ├── s_copysign.c │ │ │ │ │ ├── s_cos.c │ │ │ │ │ ├── s_floor.c │ │ │ │ │ ├── s_frexp.c │ │ │ │ │ ├── s_ldexp.c │ │ │ │ │ ├── s_modf.c │ │ │ │ │ ├── s_sin.c │ │ │ │ │ ├── s_tan.c │ │ │ │ │ ├── w_asin.c │ │ │ │ │ ├── w_atan2.c │ │ │ │ │ ├── w_exp.c │ │ │ │ │ ├── w_fmod.c │ │ │ │ │ ├── w_log10.c │ │ │ │ │ ├── w_pow.c │ │ │ │ │ └── w_sqrt.c │ │ │ ├── ansi_fp.c │ │ │ └── uart_console_io_gcn.c │ │ └── PPC_EABI │ │ │ ├── abort_exit.c │ │ │ ├── critical_regions.gamecube.c │ │ │ └── math_ppc.c │ │ └── Runtime │ │ ├── CPlusLibPPC.cp │ │ ├── GCN_mem_alloc.c │ │ ├── Gecko_ExceptionPPC.cp │ │ ├── NMWException.cp │ │ ├── __init_cpp_exceptions.cpp │ │ ├── __mem.c │ │ ├── __va_arg.c │ │ ├── global_destructor_chain.c │ │ ├── ptmf.c │ │ └── runtime.c ├── dolphin │ ├── OdemuExi2 │ │ └── DebuggerDriver.c │ ├── ai │ │ └── ai.c │ ├── amcstubs │ │ └── AmcExi2Stubs.c │ ├── ar │ │ ├── ar.c │ │ └── arq.c │ ├── base │ │ └── PPCArch.c │ ├── card │ │ ├── CARDBios.c │ │ ├── CARDBlock.c │ │ ├── CARDCheck.c │ │ ├── CARDCreate.c │ │ ├── CARDDelete.c │ │ ├── CARDDir.c │ │ ├── CARDFormat.c │ │ ├── CARDMount.c │ │ ├── CARDNet.c │ │ ├── CARDOpen.c │ │ ├── CARDRdwr.c │ │ ├── CARDRead.c │ │ ├── CARDRename.c │ │ ├── CARDStat.c │ │ ├── CARDUnlock.c │ │ └── CARDWrite.c │ ├── db │ │ └── db.c │ ├── dsp │ │ ├── dsp.c │ │ ├── dsp_debug.c │ │ └── dsp_task.c │ ├── dvd │ │ ├── dvd.c │ │ ├── dvdFatal.c │ │ ├── dvderror.c │ │ ├── dvdfs.c │ │ ├── dvdidutils.c │ │ ├── dvdlow.c │ │ ├── dvdqueue.c │ │ └── emu_level2 │ │ │ └── fstload.c │ ├── eth │ │ ├── base64.c │ │ ├── eth.c │ │ ├── ethsec.c │ │ └── md5.c │ ├── exi │ │ ├── EXIBios.c │ │ └── EXIUart.c │ ├── gd │ │ ├── GDBase.c │ │ └── GDGeometry.c │ ├── gx │ │ ├── GXAttr.c │ │ ├── GXBump.c │ │ ├── GXDisplayList.c │ │ ├── GXDraw.c │ │ ├── GXFifo.c │ │ ├── GXFrameBuf.c │ │ ├── GXGeometry.c │ │ ├── GXInit.c │ │ ├── GXLight.c │ │ ├── GXMisc.c │ │ ├── GXPerf.c │ │ ├── GXPixel.c │ │ ├── GXTev.c │ │ ├── GXTexture.c │ │ └── GXTransform.c │ ├── hio │ │ └── hio.c │ ├── ip │ │ ├── IFFifo.c │ │ ├── IFRing.c │ │ ├── IP.c │ │ ├── IPArp.c │ │ ├── IPChap.c │ │ ├── IPDhcp.c │ │ ├── IPDns.c │ │ ├── IPEther.c │ │ ├── IPFrag.c │ │ ├── IPIcmp.c │ │ ├── IPIgmp.c │ │ ├── IPIpcp.c │ │ ├── IPLcp.c │ │ ├── IPOpt.c │ │ ├── IPPPP.c │ │ ├── IPPPPoE.c │ │ ├── IPPap.c │ │ ├── IPRoute.c │ │ ├── IPSocket.c │ │ ├── IPTcp.c │ │ ├── IPTcpOutput.c │ │ ├── IPTcpTimeWait.c │ │ ├── IPTcpTimer.c │ │ ├── IPTcpUser.c │ │ ├── IPUdp.c │ │ ├── IPUuid.c │ │ └── IPZero.c │ ├── lg │ │ └── allsrc.c │ ├── mtx │ │ ├── mtx.c │ │ ├── mtx44.c │ │ ├── mtx44vec.c │ │ ├── mtxvec.c │ │ ├── quat.c │ │ └── vec.c │ ├── odenotstub │ │ └── odenotstub.c │ ├── os │ │ ├── OS.c │ │ ├── OSAlarm.c │ │ ├── OSAlloc.c │ │ ├── OSArena.c │ │ ├── OSAudioSystem.c │ │ ├── OSCache.c │ │ ├── OSContext.c │ │ ├── OSError.c │ │ ├── OSFont.c │ │ ├── OSInterrupt.c │ │ ├── OSLink.c │ │ ├── OSMemory.c │ │ ├── OSMessage.c │ │ ├── OSMutex.c │ │ ├── OSReboot.c │ │ ├── OSReset.c │ │ ├── OSResetSW.c │ │ ├── OSRtc.c │ │ ├── OSSync.c │ │ ├── OSThread.c │ │ ├── OSTime.c │ │ └── init │ │ │ ├── __ppc_eabi_init.cpp │ │ │ └── __start.c │ ├── pad │ │ ├── Pad.c │ │ └── Padclamp.c │ ├── si │ │ ├── SIBios.c │ │ ├── SISamplingRate.c │ │ ├── SISteering.c │ │ ├── SISteeringAuto.c │ │ └── SISteeringXfer.c │ ├── thp │ │ ├── THPAudio.c │ │ └── THPDec.c │ ├── upnp │ │ ├── UPnP.c │ │ ├── UPnPHttp.c │ │ ├── UPnPHttpd.c │ │ ├── UPnPHttpdResponse.c │ │ ├── UPnPSsdp.c │ │ ├── UPnPUri.c │ │ └── UPnPUuid.c │ └── vi │ │ └── vi.c └── runtime_libs │ ├── debugger │ └── embedded │ │ └── MetroTRK │ │ ├── Export │ │ └── mslsupp.c │ │ ├── Os │ │ └── dolphin │ │ │ ├── UDP_Stubs.c │ │ │ ├── dolphin_trk.c │ │ │ ├── dolphin_trk_glue.c │ │ │ ├── targcont.c │ │ │ ├── target_options.c │ │ │ └── usr_put.c │ │ ├── Portable │ │ ├── dispatch.c │ │ ├── main_TRK.c │ │ ├── mainloop.c │ │ ├── mem_TRK.c │ │ ├── msg.c │ │ ├── msgbuf.c │ │ ├── msghndlr.c │ │ ├── mutex_TRK.c │ │ ├── notify.c │ │ ├── nubevent.c │ │ ├── nubinit.c │ │ ├── serpoll.c │ │ └── support.c │ │ └── Processor │ │ └── ppc │ │ ├── Export │ │ └── targsupp.s │ │ └── Generic │ │ ├── __exception.s │ │ ├── flush_cache.c │ │ ├── mpc_7xx_603e.c │ │ └── targimpl.c │ └── gamedev │ └── cust_connection │ ├── cc │ └── exi2 │ │ └── GCN │ │ ├── EXI2_DDH_GCN │ │ └── main.c │ │ └── EXI2_GDEV_GCN │ │ └── main.c │ └── utils │ ├── common │ ├── CircleBuffer.c │ └── MWTrace.c │ └── gc │ └── MWCriticalSection_gc.cpp ├── orig ├── MarioClub_us │ └── main.dol.sha1 └── Release_eu │ └── main.dol.sha1 ├── src ├── Bando │ └── EngineSound.cpp ├── Inagaki │ ├── CharacterSoundMgr.cpp │ ├── CircleSoundMgr.cpp │ ├── CoasterSoundMgr.cpp │ ├── GameAudioArcLoader.cpp │ ├── GameAudioCamera.cpp │ ├── GameAudioCommon.cpp │ ├── GameAudioFxConfig.cpp │ ├── GameAudioHostIO.cpp │ ├── GameAudioMain.cpp │ ├── GameAudioMgr.cpp │ ├── GameAudioParam.cpp │ ├── GameSoundTable.cpp │ ├── KartSoundMgr.cpp │ ├── MapSoundObjectMgr.cpp │ ├── NpcCarSoundMgr.cpp │ ├── ObjectSoundMgr.cpp │ ├── RockSoundMgr.cpp │ └── ShoreSoundMgr.cpp ├── Kameda │ ├── BattleName2D.cpp │ ├── BombStart2D.cpp │ ├── CanNotSaveG2D.cpp │ ├── CharacterSelect3D.cpp │ ├── CourseName2D.cpp │ ├── Cup2D.cpp │ ├── Demo2D.cpp │ ├── Fade.cpp │ ├── Go2D.cpp │ ├── Go3212D.cpp │ ├── Goal2D.cpp │ ├── J2DManager.cpp │ ├── K2DPicture.cpp │ ├── LANNum2D.cpp │ ├── LANResult2D.cpp │ ├── LapGhost2D.cpp │ ├── Mario.cpp │ ├── Motor.cpp │ ├── MotorManager.cpp │ ├── Pause2D.cpp │ ├── PauseManager.cpp │ ├── PreRace2D.cpp │ ├── PrintDvdError.cpp │ ├── PrintMemoryCard.cpp │ ├── PrintProgressive.cpp │ ├── PrintWindow.cpp │ ├── Race2D.cpp │ ├── ReadPrintMessage.cpp │ ├── Result2D.cpp │ ├── Scene.cpp │ ├── SceneApp.cpp │ ├── SceneCourseSelect.cpp │ ├── SceneFactory.cpp │ ├── SceneGhostLoadSave.cpp │ ├── SceneLanEntry.cpp │ ├── SceneMap.cpp │ ├── SceneMapSelect.cpp │ ├── SceneMenu.cpp │ ├── SceneOption.cpp │ ├── SceneRecord.cpp │ ├── SceneTitle.cpp │ ├── SequenceInfo.cpp │ ├── Task.cpp │ └── WipeManager.cpp ├── Kaneshige │ ├── BlurScreen.cpp │ ├── CenterLine.cpp │ ├── Course │ │ ├── Course.cpp │ │ ├── CrsData.cpp │ │ └── CrsGround.cpp │ ├── CrsArea.cpp │ ├── DarkAnmMgr.cpp │ ├── DemoTimeKeeper.cpp │ ├── DrawBuffer.cpp │ ├── ExModel.cpp │ ├── GeoAirJet.cpp │ ├── GeoBombCar.cpp │ ├── GeoBus.cpp │ ├── GeoCannon.cpp │ ├── GeoCar.cpp │ ├── GeoCarShadow.cpp │ ├── GeoDkCloud.cpp │ ├── GeoHanaBody.cpp │ ├── GeoHanaCar.cpp │ ├── GeoItemCar.cpp │ ├── GeoItemGen.cpp │ ├── GeoKinoCar.cpp │ ├── GeoKinojii.cpp │ ├── GeoKuriCar.cpp │ ├── GeoKuribo.cpp │ ├── GeoNormCar.cpp │ ├── GeoPuller.cpp │ ├── GeoRabbitMark.cpp │ ├── GeoShimmer.cpp │ ├── GeoShine.cpp │ ├── GeoSignal.cpp │ ├── GeoSoundGen.cpp │ ├── GeoSplash.cpp │ ├── GeoStartLine.cpp │ ├── GeoSubWater.cpp │ ├── GeoTideSensor.cpp │ ├── GeoTruck.cpp │ ├── GeoVision.cpp │ ├── GeoWater.cpp │ ├── GhostScreen.cpp │ ├── HioMgr.cpp │ ├── JugemPoint.cpp │ ├── KartChecker.cpp │ ├── KartDrawer.cpp │ ├── KartInfo.cpp │ ├── KartLoader.cpp │ ├── KartMotion.cpp │ ├── KartMtx.cpp │ ├── LightMgr.cpp │ ├── MaskScreen.cpp │ ├── MdlViewer.cpp │ ├── Movie │ │ ├── MovieApp.cpp │ │ ├── MoviePlayer.cpp │ │ └── THPDraw.c │ ├── RaceBGMPlayer.cpp │ ├── RaceDirector.cpp │ ├── RaceDrawBuffer.cpp │ ├── RaceDrawer.cpp │ ├── RaceInfo.cpp │ ├── RaceLight.cpp │ ├── RaceMgr.cpp │ ├── RaceTime.cpp │ ├── ScrnShot.cpp │ ├── ShapePktControl.cpp │ ├── ShimmerScreen.cpp │ ├── SimpleDrawer.cpp │ ├── SysDebug.cpp │ ├── THP │ │ ├── THPAudioDecode.c │ │ ├── THPPlayer.c │ │ ├── THPRead.c │ │ └── THPVideoDecode.c │ └── TexLODControl.cpp ├── Kawano │ ├── PrintPal.cpp │ ├── SceneTitleLine.cpp │ ├── StaffRoll2D.cpp │ ├── accessory.cpp │ ├── animation.cpp │ ├── driver.cpp │ ├── driverAnim.cpp │ ├── driverAnimBuf.cpp │ ├── driverData.cpp │ ├── driverMgr.cpp │ ├── driverObj.cpp │ ├── driverOffset.cpp │ ├── driverState.cpp │ ├── driverTPAnim.cpp │ ├── driver_ik.cpp │ ├── feeling.cpp │ ├── laurel.cpp │ └── osage.cpp ├── Osako │ ├── AppMgr.cpp │ ├── Award2D.cpp │ ├── AwardApp.cpp │ ├── BBAMgr.cpp │ ├── CardAgent.cpp │ ├── CardMgr.cpp │ ├── ErrorViewApp.cpp │ ├── FontMgr.cpp │ ├── ForceEffectMgr.cpp │ ├── GIRecord.cpp │ ├── GPRecord.cpp │ ├── GameApp.cpp │ ├── GhostFile.cpp │ ├── Kart2DCommon.cpp │ ├── LANBackground.cpp │ ├── LANEntry.cpp │ ├── LANPlayInfo.cpp │ ├── LANSelectMode.cpp │ ├── LANTitle.cpp │ ├── LogoApp.cpp │ ├── MainMenuApp.cpp │ ├── MapSelectApp.cpp │ ├── MenuBackground.cpp │ ├── MenuTitleLine.cpp │ ├── NameEntryHelper.cpp │ ├── NetGameMgr.cpp │ ├── NetGateApp.cpp │ ├── PadMgr.cpp │ ├── PadRecorder.cpp │ ├── PlayerSelectApp.cpp │ ├── RaceApp.cpp │ ├── ResMgr.cpp │ ├── ResetAgent.cpp │ ├── SaveFile.cpp │ ├── SequenceApp.cpp │ ├── SystemFile.cpp │ ├── SystemRecord.cpp │ ├── TARecord.cpp │ ├── TestViewApp.cpp │ ├── animator.cpp │ ├── clock.cpp │ ├── kartPad.cpp │ ├── main.cpp │ ├── password.cpp │ ├── screenshot.c │ ├── shadowMgr.cpp │ ├── shadowModel.cpp │ ├── shadowScr.cpp │ ├── system.cpp │ ├── systemData.cpp │ └── testApp.cpp ├── Sato │ ├── AnmController.cpp │ ├── ArmCtrl.cpp │ ├── EffectScreen.cpp │ ├── GeoItemBox.cpp │ ├── GeoJumpNarrow.cpp │ ├── GeoObjPathMove.cpp │ ├── GeoRFlower.cpp │ ├── GeoTree.cpp │ ├── GeographyObj.cpp │ ├── GeographyObjMgr.cpp │ ├── ItemBanana.cpp │ ├── ItemBomb.cpp │ ├── ItemFlyTurtle.cpp │ ├── ItemGTurtle.cpp │ ├── ItemHeart.cpp │ ├── ItemKinoko.cpp │ ├── ItemObj.cpp │ ├── ItemObjMgr.cpp │ ├── ItemStar.cpp │ ├── ItemSuccession.cpp │ ├── ItemThunder.cpp │ ├── ItemWanWan.cpp │ ├── ItemYoshiEgg.cpp │ ├── J3DAnmObject.cpp │ ├── J3DEfctBomb.cpp │ ├── J3DEfctHeart.cpp │ ├── J3DEfctIceRock.cpp │ ├── J3DEfctSplashDown.cpp │ ├── J3DEffectMgr.cpp │ ├── JPEffectMgr.cpp │ ├── JPEffectPerformer.cpp │ ├── LumbarCtrl.cpp │ ├── NeckCtrl.cpp │ ├── ObjCollision.cpp │ ├── ObjUtility.cpp │ ├── RivalBodyCtrl.cpp │ ├── RivalItemCtrl.cpp │ ├── RivalKart.cpp │ ├── RivalSpeedCtrl.cpp │ ├── StateObserver.cpp │ ├── StringObj.cpp │ ├── logbridge.cpp │ ├── stEfctExhaust.cpp │ ├── stEfctRoad.cpp │ ├── stEfctWater.cpp │ ├── stEfctWeed.cpp │ ├── stEffectMgr.cpp │ ├── stEmitter.cpp │ ├── stMath.cpp │ └── stParticle.cpp ├── Shiraiwa │ ├── AnmPlayer.cpp │ ├── Balloon.cpp │ ├── BoidsManager.cpp │ ├── Coord3D.cpp │ ├── Coord3DUtil.cpp │ ├── DistSnow.cpp │ ├── Interp.cpp │ ├── JugemDemo.cpp │ ├── JugemFlag.cpp │ ├── JugemGoal.cpp │ ├── JugemHeadLamp.cpp │ ├── JugemLap.cpp │ ├── JugemMain.cpp │ ├── JugemRescue.cpp │ ├── JugemReverse.cpp │ ├── JugemRodBoard.cpp │ ├── JugemRodSignal.cpp │ ├── JugemStart.cpp │ ├── JugemVoidRod.cpp │ ├── LensFlare.cpp │ ├── MapObjAntLion.cpp │ ├── MapObjAwardItemBox.cpp │ ├── MapObjBubble.cpp │ ├── MapObjDemoObj.cpp │ ├── MapObjDesun.cpp │ ├── MapObjDonkyRock.cpp │ ├── MapObjDonkyRockGen.cpp │ ├── MapObjDonkyTree.cpp │ ├── MapObjDossun.cpp │ ├── MapObjFerriswheel.cpp │ ├── MapObjFireBar.cpp │ ├── MapObjFireObj.cpp │ ├── MapObjFountain.cpp │ ├── MapObjGeyser.cpp │ ├── MapObjHanabi.cpp │ ├── MapObjHeyho.cpp │ ├── MapObjHioNode.cpp │ ├── MapObjIceBlock.cpp │ ├── MapObjJetCoaster.cpp │ ├── MapObjKpFire.cpp │ ├── MapObjKpGear.cpp │ ├── MapObjMare.cpp │ ├── MapObjMeteor.cpp │ ├── MapObjMonte.cpp │ ├── MapObjMoveItemBox.cpp │ ├── MapObjNoMove.cpp │ ├── MapObjNossie.cpp │ ├── MapObjPakkun.cpp │ ├── MapObjPeachTree.cpp │ ├── MapObjPoihana.cpp │ ├── MapObjPool.cpp │ ├── MapObjRollTable.cpp │ ├── MapObjSanbo.cpp │ ├── MapObjSandPillar.cpp │ ├── MapObjSkyShip.cpp │ ├── MapObjSnowMan.cpp │ ├── MapObjSnowRock.cpp │ ├── MapObjSun.cpp │ ├── MapObjVentilator.cpp │ ├── MapObjWall.cpp │ ├── MapObjWanwan.cpp │ ├── MapObjWanwanChain.cpp │ ├── MapObjWluArrow.cpp │ ├── MapObjYoshiHeli.cpp │ ├── SMABird2.cpp │ ├── SMABirdGroup.cpp │ ├── SMABoidBird.cpp │ ├── SMAButterfly.cpp │ ├── SecretScene.cpp │ ├── ShineArrow.cpp │ ├── SiUtil.cpp │ ├── SmallAnimalGen.cpp │ ├── TestRollObj.cpp │ ├── TestString.cpp │ ├── WipeBase.cpp │ ├── WipeCheck.cpp │ ├── WipeCircle.cpp │ ├── WipeCurtain.cpp │ ├── WipeLine.cpp │ ├── WipeShut.cpp │ ├── WipeSlide.cpp │ ├── WipeWave.cpp │ └── ZCaptureMgr.cpp ├── Yamamoto │ ├── KartAnime.cpp │ ├── KartAnt.cpp │ ├── KartApeendix.cpp │ ├── KartCannon.cpp │ ├── KartChecker.cpp │ ├── KartCrash.cpp │ ├── KartDamage.cpp │ ├── KartDemoCam.cpp │ ├── KartDisp.cpp │ ├── KartDossin.cpp │ ├── KartFitParam.cpp │ ├── KartHandle.cpp │ ├── KartItemStrat.cpp │ ├── KartPerCam.cpp │ ├── KartPipe.cpp │ ├── KartRescue.cpp │ ├── KartSound.cpp │ ├── KartStar.cpp │ ├── KartTaeget.cpp │ ├── KartThunder.cpp │ ├── KartTire.cpp │ ├── KartTumble.cpp │ ├── kartBody.cpp │ ├── kartBodyStrat.cpp │ ├── kartCamStrat.cpp │ ├── kartCamera.cpp │ ├── kartChapter.cpp │ ├── kartCtrl.cpp │ ├── kartCtrlInfo.cpp │ ├── kartCtrlStrat.cpp │ ├── kartLine.cpp │ ├── kartParams.cpp │ ├── kartSus.cpp │ └── kartvec.cpp ├── extabhack.s ├── kartLocale.cpp └── starthack.s └── tools ├── __init__.py ├── changes_fmt.py ├── custom ├── decomp_switch.py └── struct_creator.py ├── decompctx.py ├── download_tool.py ├── ninja_syntax.py ├── project.py ├── transform_dep.py └── upload_progress.py /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/.flake8 -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/README.md -------------------------------------------------------------------------------- /assets/objdiff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/assets/objdiff.png -------------------------------------------------------------------------------- /config/MarioClub_us/build.sha1: -------------------------------------------------------------------------------- 1 | db87a9ec1a34275efc45d965dcdcb1a9eb131885 build/MarioClub_us/main.dol 2 | -------------------------------------------------------------------------------- /config/MarioClub_us/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/config/MarioClub_us/config.yml -------------------------------------------------------------------------------- /config/MarioClub_us/splits.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/config/MarioClub_us/splits.txt -------------------------------------------------------------------------------- /config/MarioClub_us/symbols.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/config/MarioClub_us/symbols.txt -------------------------------------------------------------------------------- /config/Release_eu/assets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/config/Release_eu/assets.yml -------------------------------------------------------------------------------- /config/Release_eu/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/config/Release_eu/config.yml -------------------------------------------------------------------------------- /config/Release_eu/dol.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/config/Release_eu/dol.yml -------------------------------------------------------------------------------- /config/Release_eu/dol_slices.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/config/Release_eu/dol_slices.yml -------------------------------------------------------------------------------- /config/Release_eu/symbols.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/config/Release_eu/symbols.yml -------------------------------------------------------------------------------- /config/ld.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/config/ld.tpl -------------------------------------------------------------------------------- /configure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/configure.py -------------------------------------------------------------------------------- /include/Bando/EngineSound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Bando/EngineSound.h -------------------------------------------------------------------------------- /include/Inagaki/GameAudioCamera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Inagaki/GameAudioCamera.h -------------------------------------------------------------------------------- /include/Inagaki/GameAudioCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Inagaki/GameAudioCommon.h -------------------------------------------------------------------------------- /include/Inagaki/GameAudioHostIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Inagaki/GameAudioHostIO.h -------------------------------------------------------------------------------- /include/Inagaki/GameAudioMain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Inagaki/GameAudioMain.h -------------------------------------------------------------------------------- /include/Inagaki/GameAudioMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Inagaki/GameAudioMgr.h -------------------------------------------------------------------------------- /include/Inagaki/GameMapSoundMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Inagaki/GameMapSoundMgr.h -------------------------------------------------------------------------------- /include/Inagaki/GameSoundMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Inagaki/GameSoundMgr.h -------------------------------------------------------------------------------- /include/Inagaki/GameSoundTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Inagaki/GameSoundTable.h -------------------------------------------------------------------------------- /include/JSystem/J2D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/JSystem/J2D.h -------------------------------------------------------------------------------- /include/JSystem/J2D/J2DAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/JSystem/J2D/J2DAnimation.h -------------------------------------------------------------------------------- /include/JSystem/J2D/J2DAnmLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/JSystem/J2D/J2DAnmLoader.h -------------------------------------------------------------------------------- /include/JSystem/J2D/J2DBloSaver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/JSystem/J2D/J2DBloSaver.h -------------------------------------------------------------------------------- /include/JSystem/J2D/J2DInd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/JSystem/J2D/J2DInd.h -------------------------------------------------------------------------------- /include/JSystem/J2D/J2DManage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/JSystem/J2D/J2DManage.h -------------------------------------------------------------------------------- /include/JSystem/J2D/J2DMatBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/JSystem/J2D/J2DMatBlock.h -------------------------------------------------------------------------------- /include/JSystem/J2D/J2DMaterial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/JSystem/J2D/J2DMaterial.h -------------------------------------------------------------------------------- /include/JSystem/J2D/J2DPane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/JSystem/J2D/J2DPane.h -------------------------------------------------------------------------------- /include/JSystem/J2D/J2DPicture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/JSystem/J2D/J2DPicture.h -------------------------------------------------------------------------------- /include/JSystem/J2D/J2DPrint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/JSystem/J2D/J2DPrint.h -------------------------------------------------------------------------------- /include/JSystem/J2D/J2DScreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/JSystem/J2D/J2DScreen.h -------------------------------------------------------------------------------- /include/JSystem/J2D/J2DTevStage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/JSystem/J2D/J2DTevStage.h -------------------------------------------------------------------------------- /include/JSystem/J2D/J2DTexMtx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/JSystem/J2D/J2DTexMtx.h -------------------------------------------------------------------------------- /include/JSystem/J2D/J2DTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/JSystem/J2D/J2DTypes.h -------------------------------------------------------------------------------- /include/JSystem/J3D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/JSystem/J3D.h -------------------------------------------------------------------------------- /include/JSystem/J3D/J3DAnmBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/JSystem/J3D/J3DAnmBase.h -------------------------------------------------------------------------------- /include/JSystem/J3D/J3DAnmColor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/JSystem/J3D/J3DAnmColor.h -------------------------------------------------------------------------------- /include/JSystem/J3D/J3DAnmLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/JSystem/J3D/J3DAnmLoader.h -------------------------------------------------------------------------------- /include/JSystem/J3D/J3DCluster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/JSystem/J3D/J3DCluster.h -------------------------------------------------------------------------------- /include/JSystem/J3D/J3DFileBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/JSystem/J3D/J3DFileBlock.h -------------------------------------------------------------------------------- /include/JSystem/J3D/J3DFrameCtrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/JSystem/J3D/J3DFrameCtrl.h -------------------------------------------------------------------------------- /include/JSystem/J3D/J3DGD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/JSystem/J3D/J3DGD.h -------------------------------------------------------------------------------- /include/JSystem/J3D/J3DGXColor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/JSystem/J3D/J3DGXColor.h -------------------------------------------------------------------------------- /include/JSystem/J3D/J3DInd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/JSystem/J3D/J3DInd.h -------------------------------------------------------------------------------- /include/JSystem/J3D/J3DJoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/JSystem/J3D/J3DJoint.h -------------------------------------------------------------------------------- /include/JSystem/J3D/J3DJointTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/JSystem/J3D/J3DJointTree.h -------------------------------------------------------------------------------- /include/JSystem/J3D/J3DMaterial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/JSystem/J3D/J3DMaterial.h -------------------------------------------------------------------------------- /include/JSystem/J3D/J3DMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/JSystem/J3D/J3DMath.h -------------------------------------------------------------------------------- /include/JSystem/J3D/J3DModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/JSystem/J3D/J3DModel.h -------------------------------------------------------------------------------- /include/JSystem/J3D/J3DMtxBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/JSystem/J3D/J3DMtxBuffer.h -------------------------------------------------------------------------------- /include/JSystem/J3D/J3DMtxCalc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/JSystem/J3D/J3DMtxCalc.h -------------------------------------------------------------------------------- /include/JSystem/J3D/J3DPE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/JSystem/J3D/J3DPE.h -------------------------------------------------------------------------------- /include/JSystem/J3D/J3DPacket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/JSystem/J3D/J3DPacket.h -------------------------------------------------------------------------------- /include/JSystem/J3D/J3DShape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/JSystem/J3D/J3DShape.h -------------------------------------------------------------------------------- /include/JSystem/J3D/J3DSys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/JSystem/J3D/J3DSys.h -------------------------------------------------------------------------------- /include/JSystem/J3D/J3DTevBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/JSystem/J3D/J3DTevBlock.h -------------------------------------------------------------------------------- /include/JSystem/J3D/J3DTexMtx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/JSystem/J3D/J3DTexMtx.h -------------------------------------------------------------------------------- /include/JSystem/J3D/J3DTexture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/JSystem/J3D/J3DTexture.h -------------------------------------------------------------------------------- /include/JSystem/J3D/J3DTransform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/JSystem/J3D/J3DTransform.h -------------------------------------------------------------------------------- /include/JSystem/J3D/J3DTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/JSystem/J3D/J3DTypes.h -------------------------------------------------------------------------------- /include/JSystem/J3DU/J3DU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/JSystem/J3DU/J3DU.h -------------------------------------------------------------------------------- /include/JSystem/J3DU/J3DUClipper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/JSystem/J3DU/J3DUClipper.h -------------------------------------------------------------------------------- /include/JSystem/J3DU/J3DUMotion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/JSystem/J3DU/J3DUMotion.h -------------------------------------------------------------------------------- /include/JSystem/JAudio/dsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/JSystem/JAudio/dsp.h -------------------------------------------------------------------------------- /include/JSystem/JBlockType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/JSystem/JBlockType.h -------------------------------------------------------------------------------- /include/JSystem/JFramework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/JSystem/JFramework.h -------------------------------------------------------------------------------- /include/JSystem/JGadget/define.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/JSystem/JGadget/define.h -------------------------------------------------------------------------------- /include/JSystem/JGadget/hashcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/JSystem/JGadget/hashcode.h -------------------------------------------------------------------------------- /include/JSystem/JGadget/linklist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/JSystem/JGadget/linklist.h -------------------------------------------------------------------------------- /include/JSystem/JGadget/std-list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/JSystem/JGadget/std-list.h -------------------------------------------------------------------------------- /include/JSystem/JGeometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/JSystem/JGeometry.h -------------------------------------------------------------------------------- /include/JSystem/JGeometry/Box.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/JSystem/JGeometry/Box.h -------------------------------------------------------------------------------- /include/JSystem/JGeometry/Matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/JSystem/JGeometry/Matrix.h -------------------------------------------------------------------------------- /include/JSystem/JGeometry/Quat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/JSystem/JGeometry/Quat.h -------------------------------------------------------------------------------- /include/JSystem/JGeometry/Util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/JSystem/JGeometry/Util.h -------------------------------------------------------------------------------- /include/JSystem/JGeometry/Vec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/JSystem/JGeometry/Vec.h -------------------------------------------------------------------------------- /include/JSystem/JKernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/JSystem/JKernel.h -------------------------------------------------------------------------------- /include/JSystem/JKernel/JKRAram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/JSystem/JKernel/JKRAram.h -------------------------------------------------------------------------------- /include/JSystem/JKernel/JKRFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/JSystem/JKernel/JKRFile.h -------------------------------------------------------------------------------- /include/JSystem/JKernel/JKRHeap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/JSystem/JKernel/JKRHeap.h -------------------------------------------------------------------------------- /include/JSystem/JMath/Inline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/JSystem/JMath/Inline.h -------------------------------------------------------------------------------- /include/JSystem/JMath/JMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/JSystem/JMath/JMath.h -------------------------------------------------------------------------------- /include/JSystem/JORReflexible.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/JSystem/JORReflexible.h -------------------------------------------------------------------------------- /include/JSystem/JSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/JSystem/JSupport.h -------------------------------------------------------------------------------- /include/JSystem/JSupport/JSUList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/JSystem/JSupport/JSUList.h -------------------------------------------------------------------------------- /include/JSystem/JUtility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/JSystem/JUtility.h -------------------------------------------------------------------------------- /include/JSystem/JUtility/FontData/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /include/JSystem/JUtility/JUTDbg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/JSystem/JUtility/JUTDbg.h -------------------------------------------------------------------------------- /include/JSystem/JUtility/JUTFont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/JSystem/JUtility/JUTFont.h -------------------------------------------------------------------------------- /include/JSystem/JUtility/JUTXfb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/JSystem/JUtility/JUTXfb.h -------------------------------------------------------------------------------- /include/JSystem/JUtility/TColor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/JSystem/JUtility/TColor.h -------------------------------------------------------------------------------- /include/JSystem/Logitech/Wheels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/JSystem/Logitech/Wheels.h -------------------------------------------------------------------------------- /include/JSystem/ResTIMG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/JSystem/ResTIMG.h -------------------------------------------------------------------------------- /include/JSystem/ResTLUT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/JSystem/ResTLUT.h -------------------------------------------------------------------------------- /include/Kameda/BattleName2D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Kameda/BattleName2D.h -------------------------------------------------------------------------------- /include/Kameda/CharacterSelect3D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Kameda/CharacterSelect3D.h -------------------------------------------------------------------------------- /include/Kameda/Demo2D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Kameda/Demo2D.h -------------------------------------------------------------------------------- /include/Kameda/Fade.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Kameda/Fade.h -------------------------------------------------------------------------------- /include/Kameda/J2DManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Kameda/J2DManager.h -------------------------------------------------------------------------------- /include/Kameda/Mario.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Kameda/Mario.h -------------------------------------------------------------------------------- /include/Kameda/MotorManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Kameda/MotorManager.h -------------------------------------------------------------------------------- /include/Kameda/PauseManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Kameda/PauseManager.h -------------------------------------------------------------------------------- /include/Kameda/PrintDvdError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Kameda/PrintDvdError.h -------------------------------------------------------------------------------- /include/Kameda/PrintMemoryCard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Kameda/PrintMemoryCard.h -------------------------------------------------------------------------------- /include/Kameda/PrintProgressive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Kameda/PrintProgressive.h -------------------------------------------------------------------------------- /include/Kameda/PrintWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Kameda/PrintWindow.h -------------------------------------------------------------------------------- /include/Kameda/Race2D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Kameda/Race2D.h -------------------------------------------------------------------------------- /include/Kameda/ReadPrintMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Kameda/ReadPrintMessage.h -------------------------------------------------------------------------------- /include/Kameda/Result2D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Kameda/Result2D.h -------------------------------------------------------------------------------- /include/Kameda/Scene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Kameda/Scene.h -------------------------------------------------------------------------------- /include/Kameda/SceneApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Kameda/SceneApp.h -------------------------------------------------------------------------------- /include/Kameda/SceneCourseSelect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Kameda/SceneCourseSelect.h -------------------------------------------------------------------------------- /include/Kameda/SceneFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Kameda/SceneFactory.h -------------------------------------------------------------------------------- /include/Kameda/SceneMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Kameda/SceneMenu.h -------------------------------------------------------------------------------- /include/Kameda/SequenceInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Kameda/SequenceInfo.h -------------------------------------------------------------------------------- /include/Kameda/Task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Kameda/Task.h -------------------------------------------------------------------------------- /include/Kameda/WipeManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Kameda/WipeManager.h -------------------------------------------------------------------------------- /include/Kaneshige/Blurscreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Kaneshige/Blurscreen.h -------------------------------------------------------------------------------- /include/Kaneshige/CenterLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Kaneshige/CenterLine.h -------------------------------------------------------------------------------- /include/Kaneshige/Course/AIPath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Kaneshige/Course/AIPath.h -------------------------------------------------------------------------------- /include/Kaneshige/Course/Course.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Kaneshige/Course/Course.h -------------------------------------------------------------------------------- /include/Kaneshige/Course/CrsArea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Kaneshige/Course/CrsArea.h -------------------------------------------------------------------------------- /include/Kaneshige/Course/CrsData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Kaneshige/Course/CrsData.h -------------------------------------------------------------------------------- /include/Kaneshige/DarkAnmMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Kaneshige/DarkAnmMgr.h -------------------------------------------------------------------------------- /include/Kaneshige/DemoTimeKeeper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Kaneshige/DemoTimeKeeper.h -------------------------------------------------------------------------------- /include/Kaneshige/DrawBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Kaneshige/DrawBuffer.h -------------------------------------------------------------------------------- /include/Kaneshige/ExModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Kaneshige/ExModel.h -------------------------------------------------------------------------------- /include/Kaneshige/GhostScreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Kaneshige/GhostScreen.h -------------------------------------------------------------------------------- /include/Kaneshige/HioMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Kaneshige/HioMgr.h -------------------------------------------------------------------------------- /include/Kaneshige/JugemPoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Kaneshige/JugemPoint.h -------------------------------------------------------------------------------- /include/Kaneshige/KartChecker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Kaneshige/KartChecker.h -------------------------------------------------------------------------------- /include/Kaneshige/KartChkUsrPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Kaneshige/KartChkUsrPage.h -------------------------------------------------------------------------------- /include/Kaneshige/KartDrawer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Kaneshige/KartDrawer.h -------------------------------------------------------------------------------- /include/Kaneshige/KartInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Kaneshige/KartInfo.h -------------------------------------------------------------------------------- /include/Kaneshige/KartLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Kaneshige/KartLoader.h -------------------------------------------------------------------------------- /include/Kaneshige/KartMotion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Kaneshige/KartMotion.h -------------------------------------------------------------------------------- /include/Kaneshige/KartMtx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Kaneshige/KartMtx.h -------------------------------------------------------------------------------- /include/Kaneshige/LightMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Kaneshige/LightMgr.h -------------------------------------------------------------------------------- /include/Kaneshige/MaskScreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Kaneshige/MaskScreen.h -------------------------------------------------------------------------------- /include/Kaneshige/MdlViewer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Kaneshige/MdlViewer.h -------------------------------------------------------------------------------- /include/Kaneshige/MenuLight.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Kaneshige/MenuLight.h -------------------------------------------------------------------------------- /include/Kaneshige/Movie/MovieApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Kaneshige/Movie/MovieApp.h -------------------------------------------------------------------------------- /include/Kaneshige/Movie/THPDraw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Kaneshige/Movie/THPDraw.h -------------------------------------------------------------------------------- /include/Kaneshige/Objects/GeoBus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Kaneshige/Objects/GeoBus.h -------------------------------------------------------------------------------- /include/Kaneshige/Objects/GeoCar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Kaneshige/Objects/GeoCar.h -------------------------------------------------------------------------------- /include/Kaneshige/RaceBGMPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Kaneshige/RaceBGMPlayer.h -------------------------------------------------------------------------------- /include/Kaneshige/RaceDirector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Kaneshige/RaceDirector.h -------------------------------------------------------------------------------- /include/Kaneshige/RaceDrawer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Kaneshige/RaceDrawer.h -------------------------------------------------------------------------------- /include/Kaneshige/RaceInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Kaneshige/RaceInfo.h -------------------------------------------------------------------------------- /include/Kaneshige/RaceLight.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Kaneshige/RaceLight.h -------------------------------------------------------------------------------- /include/Kaneshige/RaceMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Kaneshige/RaceMgr.h -------------------------------------------------------------------------------- /include/Kaneshige/RaceTime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Kaneshige/RaceTime.h -------------------------------------------------------------------------------- /include/Kaneshige/RaceUsrPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Kaneshige/RaceUsrPage.h -------------------------------------------------------------------------------- /include/Kaneshige/ScrnShot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Kaneshige/ScrnShot.h -------------------------------------------------------------------------------- /include/Kaneshige/ShimmerScreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Kaneshige/ShimmerScreen.h -------------------------------------------------------------------------------- /include/Kaneshige/SimpleDrawer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Kaneshige/SimpleDrawer.h -------------------------------------------------------------------------------- /include/Kaneshige/SysDebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Kaneshige/SysDebug.h -------------------------------------------------------------------------------- /include/Kaneshige/THP/THPBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Kaneshige/THP/THPBuffer.h -------------------------------------------------------------------------------- /include/Kaneshige/THP/THPFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Kaneshige/THP/THPFile.h -------------------------------------------------------------------------------- /include/Kaneshige/THP/THPInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Kaneshige/THP/THPInfo.h -------------------------------------------------------------------------------- /include/Kaneshige/THP/THPPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Kaneshige/THP/THPPlayer.h -------------------------------------------------------------------------------- /include/Kaneshige/THP/THPRead.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Kaneshige/THP/THPRead.h -------------------------------------------------------------------------------- /include/Kaneshige/TexLODControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Kaneshige/TexLODControl.h -------------------------------------------------------------------------------- /include/Kawano/PrintPal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Kawano/PrintPal.h -------------------------------------------------------------------------------- /include/Kawano/SceneTitleLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Kawano/SceneTitleLine.h -------------------------------------------------------------------------------- /include/Kawano/StaffRoll2D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Kawano/StaffRoll2D.h -------------------------------------------------------------------------------- /include/Kawano/accessory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Kawano/accessory.h -------------------------------------------------------------------------------- /include/Kawano/driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Kawano/driver.h -------------------------------------------------------------------------------- /include/Kawano/feeling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Kawano/feeling.h -------------------------------------------------------------------------------- /include/Kawano/osage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Kawano/osage.h -------------------------------------------------------------------------------- /include/Osako/AppMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Osako/AppMgr.h -------------------------------------------------------------------------------- /include/Osako/Award2D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Osako/Award2D.h -------------------------------------------------------------------------------- /include/Osako/AwardApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Osako/AwardApp.h -------------------------------------------------------------------------------- /include/Osako/BBAMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Osako/BBAMgr.h -------------------------------------------------------------------------------- /include/Osako/CardAgent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Osako/CardAgent.h -------------------------------------------------------------------------------- /include/Osako/CardMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Osako/CardMgr.h -------------------------------------------------------------------------------- /include/Osako/ErrorViewApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Osako/ErrorViewApp.h -------------------------------------------------------------------------------- /include/Osako/FontMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Osako/FontMgr.h -------------------------------------------------------------------------------- /include/Osako/ForceEffectMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Osako/ForceEffectMgr.h -------------------------------------------------------------------------------- /include/Osako/GIRecord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Osako/GIRecord.h -------------------------------------------------------------------------------- /include/Osako/GPRecord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Osako/GPRecord.h -------------------------------------------------------------------------------- /include/Osako/GameApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Osako/GameApp.h -------------------------------------------------------------------------------- /include/Osako/GhostFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Osako/GhostFile.h -------------------------------------------------------------------------------- /include/Osako/Kart2DCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Osako/Kart2DCommon.h -------------------------------------------------------------------------------- /include/Osako/KartPadData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Osako/KartPadData.h -------------------------------------------------------------------------------- /include/Osako/KartPadRecord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Osako/KartPadRecord.h -------------------------------------------------------------------------------- /include/Osako/LANEntry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Osako/LANEntry.h -------------------------------------------------------------------------------- /include/Osako/LANPlayInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Osako/LANPlayInfo.h -------------------------------------------------------------------------------- /include/Osako/LANSelectMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Osako/LANSelectMode.h -------------------------------------------------------------------------------- /include/Osako/LANTitle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Osako/LANTitle.h -------------------------------------------------------------------------------- /include/Osako/LogoApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Osako/LogoApp.h -------------------------------------------------------------------------------- /include/Osako/MainMenuApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Osako/MainMenuApp.h -------------------------------------------------------------------------------- /include/Osako/MapSelectApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Osako/MapSelectApp.h -------------------------------------------------------------------------------- /include/Osako/MenuBackground.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Osako/MenuBackground.h -------------------------------------------------------------------------------- /include/Osako/MenuTitleLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Osako/MenuTitleLine.h -------------------------------------------------------------------------------- /include/Osako/NameEntryHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Osako/NameEntryHelper.h -------------------------------------------------------------------------------- /include/Osako/NetGameMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Osako/NetGameMgr.h -------------------------------------------------------------------------------- /include/Osako/NetGateApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Osako/NetGateApp.h -------------------------------------------------------------------------------- /include/Osako/PadMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Osako/PadMgr.h -------------------------------------------------------------------------------- /include/Osako/PadRecorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Osako/PadRecorder.h -------------------------------------------------------------------------------- /include/Osako/PlayerSelectApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Osako/PlayerSelectApp.h -------------------------------------------------------------------------------- /include/Osako/PrintApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Osako/PrintApp.h -------------------------------------------------------------------------------- /include/Osako/RaceApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Osako/RaceApp.h -------------------------------------------------------------------------------- /include/Osako/ResMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Osako/ResMgr.h -------------------------------------------------------------------------------- /include/Osako/ResetAgent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Osako/ResetAgent.h -------------------------------------------------------------------------------- /include/Osako/SaveFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Osako/SaveFile.h -------------------------------------------------------------------------------- /include/Osako/SequenceApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Osako/SequenceApp.h -------------------------------------------------------------------------------- /include/Osako/SystemFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Osako/SystemFile.h -------------------------------------------------------------------------------- /include/Osako/SystemRecord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Osako/SystemRecord.h -------------------------------------------------------------------------------- /include/Osako/TARecord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Osako/TARecord.h -------------------------------------------------------------------------------- /include/Osako/TestViewApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Osako/TestViewApp.h -------------------------------------------------------------------------------- /include/Osako/animator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Osako/animator.h -------------------------------------------------------------------------------- /include/Osako/clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Osako/clock.h -------------------------------------------------------------------------------- /include/Osako/kartPad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Osako/kartPad.h -------------------------------------------------------------------------------- /include/Osako/password.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Osako/password.h -------------------------------------------------------------------------------- /include/Osako/screenshot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Osako/screenshot.h -------------------------------------------------------------------------------- /include/Osako/shadowMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Osako/shadowMgr.h -------------------------------------------------------------------------------- /include/Osako/shadowModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Osako/shadowModel.h -------------------------------------------------------------------------------- /include/Osako/shadowScr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Osako/shadowScr.h -------------------------------------------------------------------------------- /include/Osako/system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Osako/system.h -------------------------------------------------------------------------------- /include/Osako/systemData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Osako/systemData.h -------------------------------------------------------------------------------- /include/Osako/testApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Osako/testApp.h -------------------------------------------------------------------------------- /include/Sato/AnmController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Sato/AnmController.h -------------------------------------------------------------------------------- /include/Sato/EffectScreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Sato/EffectScreen.h -------------------------------------------------------------------------------- /include/Sato/GeographyObj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Sato/GeographyObj.h -------------------------------------------------------------------------------- /include/Sato/GeographyObjMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Sato/GeographyObjMgr.h -------------------------------------------------------------------------------- /include/Sato/ItemBanana.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Sato/ItemBanana.h -------------------------------------------------------------------------------- /include/Sato/ItemBomb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Sato/ItemBomb.h -------------------------------------------------------------------------------- /include/Sato/ItemFlyTurtle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Sato/ItemFlyTurtle.h -------------------------------------------------------------------------------- /include/Sato/ItemHeart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Sato/ItemHeart.h -------------------------------------------------------------------------------- /include/Sato/ItemKinoko.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Sato/ItemKinoko.h -------------------------------------------------------------------------------- /include/Sato/ItemObj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Sato/ItemObj.h -------------------------------------------------------------------------------- /include/Sato/ItemObjMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Sato/ItemObjMgr.h -------------------------------------------------------------------------------- /include/Sato/ItemStar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Sato/ItemStar.h -------------------------------------------------------------------------------- /include/Sato/ItemSuccession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Sato/ItemSuccession.h -------------------------------------------------------------------------------- /include/Sato/ItemThunder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Sato/ItemThunder.h -------------------------------------------------------------------------------- /include/Sato/ItemTurtle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Sato/ItemTurtle.h -------------------------------------------------------------------------------- /include/Sato/ItemWanWan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Sato/ItemWanWan.h -------------------------------------------------------------------------------- /include/Sato/ItemYoshiEgg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Sato/ItemYoshiEgg.h -------------------------------------------------------------------------------- /include/Sato/J3DAnmObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Sato/J3DAnmObject.h -------------------------------------------------------------------------------- /include/Sato/J3DEfctHeart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Sato/J3DEfctHeart.h -------------------------------------------------------------------------------- /include/Sato/J3DEffectMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Sato/J3DEffectMgr.h -------------------------------------------------------------------------------- /include/Sato/JPEffectMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Sato/JPEffectMgr.h -------------------------------------------------------------------------------- /include/Sato/NeckCtrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Sato/NeckCtrl.h -------------------------------------------------------------------------------- /include/Sato/ObjCollision.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Sato/ObjCollision.h -------------------------------------------------------------------------------- /include/Sato/ObjUtility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Sato/ObjUtility.h -------------------------------------------------------------------------------- /include/Sato/Objects/GeoTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Sato/Objects/GeoTree.h -------------------------------------------------------------------------------- /include/Sato/RivalBodyCtrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Sato/RivalBodyCtrl.h -------------------------------------------------------------------------------- /include/Sato/RivalCtrlBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Sato/RivalCtrlBase.h -------------------------------------------------------------------------------- /include/Sato/RivalItemCtrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Sato/RivalItemCtrl.h -------------------------------------------------------------------------------- /include/Sato/RivalKart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Sato/RivalKart.h -------------------------------------------------------------------------------- /include/Sato/RivalSpeedCtrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Sato/RivalSpeedCtrl.h -------------------------------------------------------------------------------- /include/Sato/StateObserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Sato/StateObserver.h -------------------------------------------------------------------------------- /include/Sato/stEfctWeed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Sato/stEfctWeed.h -------------------------------------------------------------------------------- /include/Sato/stEffectMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Sato/stEffectMgr.h -------------------------------------------------------------------------------- /include/Sato/stEmitter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Sato/stEmitter.h -------------------------------------------------------------------------------- /include/Sato/stMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Sato/stMath.h -------------------------------------------------------------------------------- /include/Shiraiwa/AnmPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Shiraiwa/AnmPlayer.h -------------------------------------------------------------------------------- /include/Shiraiwa/Balloon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Shiraiwa/Balloon.h -------------------------------------------------------------------------------- /include/Shiraiwa/Coord3D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Shiraiwa/Coord3D.h -------------------------------------------------------------------------------- /include/Shiraiwa/Interp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Shiraiwa/Interp.h -------------------------------------------------------------------------------- /include/Shiraiwa/JugemItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Shiraiwa/JugemItem.h -------------------------------------------------------------------------------- /include/Shiraiwa/JugemMain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Shiraiwa/JugemMain.h -------------------------------------------------------------------------------- /include/Shiraiwa/JugemRodItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Shiraiwa/JugemRodItem.h -------------------------------------------------------------------------------- /include/Shiraiwa/LensFlare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Shiraiwa/LensFlare.h -------------------------------------------------------------------------------- /include/Shiraiwa/MapObjAward.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Shiraiwa/MapObjAward.h -------------------------------------------------------------------------------- /include/Shiraiwa/MapObjHanabi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Shiraiwa/MapObjHanabi.h -------------------------------------------------------------------------------- /include/Shiraiwa/MapObjPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Shiraiwa/MapObjPool.h -------------------------------------------------------------------------------- /include/Shiraiwa/SecretScene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Shiraiwa/SecretScene.h -------------------------------------------------------------------------------- /include/Shiraiwa/SiUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Shiraiwa/SiUtil.h -------------------------------------------------------------------------------- /include/Shiraiwa/Wipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Shiraiwa/Wipe.h -------------------------------------------------------------------------------- /include/Shiraiwa/ZCaptureMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Shiraiwa/ZCaptureMgr.h -------------------------------------------------------------------------------- /include/Yamamoto/KartAnime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Yamamoto/KartAnime.h -------------------------------------------------------------------------------- /include/Yamamoto/KartAnt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Yamamoto/KartAnt.h -------------------------------------------------------------------------------- /include/Yamamoto/KartAppendix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Yamamoto/KartAppendix.h -------------------------------------------------------------------------------- /include/Yamamoto/KartCannon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Yamamoto/KartCannon.h -------------------------------------------------------------------------------- /include/Yamamoto/KartCheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Yamamoto/KartCheck.h -------------------------------------------------------------------------------- /include/Yamamoto/KartCrash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Yamamoto/KartCrash.h -------------------------------------------------------------------------------- /include/Yamamoto/KartDamage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Yamamoto/KartDamage.h -------------------------------------------------------------------------------- /include/Yamamoto/KartDemoCam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Yamamoto/KartDemoCam.h -------------------------------------------------------------------------------- /include/Yamamoto/KartDisp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Yamamoto/KartDisp.h -------------------------------------------------------------------------------- /include/Yamamoto/KartDossin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Yamamoto/KartDossin.h -------------------------------------------------------------------------------- /include/Yamamoto/KartGame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Yamamoto/KartGame.h -------------------------------------------------------------------------------- /include/Yamamoto/KartHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Yamamoto/KartHandle.h -------------------------------------------------------------------------------- /include/Yamamoto/KartItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Yamamoto/KartItem.h -------------------------------------------------------------------------------- /include/Yamamoto/KartMat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Yamamoto/KartMat.h -------------------------------------------------------------------------------- /include/Yamamoto/KartMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Yamamoto/KartMath.h -------------------------------------------------------------------------------- /include/Yamamoto/KartPerCam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Yamamoto/KartPerCam.h -------------------------------------------------------------------------------- /include/Yamamoto/KartPipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Yamamoto/KartPipe.h -------------------------------------------------------------------------------- /include/Yamamoto/KartRescue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Yamamoto/KartRescue.h -------------------------------------------------------------------------------- /include/Yamamoto/KartScene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Yamamoto/KartScene.h -------------------------------------------------------------------------------- /include/Yamamoto/KartSound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Yamamoto/KartSound.h -------------------------------------------------------------------------------- /include/Yamamoto/KartStar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Yamamoto/KartStar.h -------------------------------------------------------------------------------- /include/Yamamoto/KartStrat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Yamamoto/KartStrat.h -------------------------------------------------------------------------------- /include/Yamamoto/KartTarget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Yamamoto/KartTarget.h -------------------------------------------------------------------------------- /include/Yamamoto/KartThunder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Yamamoto/KartThunder.h -------------------------------------------------------------------------------- /include/Yamamoto/KartTire.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Yamamoto/KartTire.h -------------------------------------------------------------------------------- /include/Yamamoto/KartTumble.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Yamamoto/KartTumble.h -------------------------------------------------------------------------------- /include/Yamamoto/KartVec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Yamamoto/KartVec.h -------------------------------------------------------------------------------- /include/Yamamoto/kartBody.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Yamamoto/kartBody.h -------------------------------------------------------------------------------- /include/Yamamoto/kartCamera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Yamamoto/kartCamera.h -------------------------------------------------------------------------------- /include/Yamamoto/kartCtrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Yamamoto/kartCtrl.h -------------------------------------------------------------------------------- /include/Yamamoto/kartLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Yamamoto/kartLine.h -------------------------------------------------------------------------------- /include/Yamamoto/kartPad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Yamamoto/kartPad.h -------------------------------------------------------------------------------- /include/Yamamoto/kartParams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Yamamoto/kartParams.h -------------------------------------------------------------------------------- /include/Yamamoto/kartSus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/Yamamoto/kartSus.h -------------------------------------------------------------------------------- /include/dolphin/CARDPriv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/dolphin/CARDPriv.h -------------------------------------------------------------------------------- /include/dolphin/DVDPriv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/dolphin/DVDPriv.h -------------------------------------------------------------------------------- /include/dolphin/OSRtcPriv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/dolphin/OSRtcPriv.h -------------------------------------------------------------------------------- /include/dolphin/ai.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/dolphin/ai.h -------------------------------------------------------------------------------- /include/dolphin/ar/ar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/dolphin/ar/ar.h -------------------------------------------------------------------------------- /include/dolphin/ar/arq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/dolphin/ar/arq.h -------------------------------------------------------------------------------- /include/dolphin/base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/dolphin/base.h -------------------------------------------------------------------------------- /include/dolphin/base/PPCArch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/dolphin/base/PPCArch.h -------------------------------------------------------------------------------- /include/dolphin/card.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/dolphin/card.h -------------------------------------------------------------------------------- /include/dolphin/db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/dolphin/db.h -------------------------------------------------------------------------------- /include/dolphin/dsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/dolphin/dsp.h -------------------------------------------------------------------------------- /include/dolphin/dvd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/dolphin/dvd.h -------------------------------------------------------------------------------- /include/dolphin/dvd/dvd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/dolphin/dvd/dvd.h -------------------------------------------------------------------------------- /include/dolphin/dvd/dvdfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/dolphin/dvd/dvdfs.h -------------------------------------------------------------------------------- /include/dolphin/dvd/dvdlow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/dolphin/dvd/dvdlow.h -------------------------------------------------------------------------------- /include/dolphin/dvd/dvdqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/dolphin/dvd/dvdqueue.h -------------------------------------------------------------------------------- /include/dolphin/eth/eth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/dolphin/eth/eth.h -------------------------------------------------------------------------------- /include/dolphin/eth/hashfunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/dolphin/eth/hashfunc.c -------------------------------------------------------------------------------- /include/dolphin/exi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/dolphin/exi.h -------------------------------------------------------------------------------- /include/dolphin/gd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/dolphin/gd.h -------------------------------------------------------------------------------- /include/dolphin/gx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/dolphin/gx.h -------------------------------------------------------------------------------- /include/dolphin/gx/GXBump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/dolphin/gx/GXBump.h -------------------------------------------------------------------------------- /include/dolphin/gx/GXCull.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/dolphin/gx/GXCull.h -------------------------------------------------------------------------------- /include/dolphin/gx/GXDispList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/dolphin/gx/GXDispList.h -------------------------------------------------------------------------------- /include/dolphin/gx/GXDraw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/dolphin/gx/GXDraw.h -------------------------------------------------------------------------------- /include/dolphin/gx/GXEnum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/dolphin/gx/GXEnum.h -------------------------------------------------------------------------------- /include/dolphin/gx/GXFifo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/dolphin/gx/GXFifo.h -------------------------------------------------------------------------------- /include/dolphin/gx/GXGeometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/dolphin/gx/GXGeometry.h -------------------------------------------------------------------------------- /include/dolphin/gx/GXGet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/dolphin/gx/GXGet.h -------------------------------------------------------------------------------- /include/dolphin/gx/GXLighting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/dolphin/gx/GXLighting.h -------------------------------------------------------------------------------- /include/dolphin/gx/GXManage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/dolphin/gx/GXManage.h -------------------------------------------------------------------------------- /include/dolphin/gx/GXMisc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/dolphin/gx/GXMisc.h -------------------------------------------------------------------------------- /include/dolphin/gx/GXPerf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/dolphin/gx/GXPerf.h -------------------------------------------------------------------------------- /include/dolphin/gx/GXPixel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/dolphin/gx/GXPixel.h -------------------------------------------------------------------------------- /include/dolphin/gx/GXPriv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/dolphin/gx/GXPriv.h -------------------------------------------------------------------------------- /include/dolphin/gx/GXStruct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/dolphin/gx/GXStruct.h -------------------------------------------------------------------------------- /include/dolphin/gx/GXTev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/dolphin/gx/GXTev.h -------------------------------------------------------------------------------- /include/dolphin/gx/GXTexture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/dolphin/gx/GXTexture.h -------------------------------------------------------------------------------- /include/dolphin/gx/GXVert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/dolphin/gx/GXVert.h -------------------------------------------------------------------------------- /include/dolphin/hio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/dolphin/hio.h -------------------------------------------------------------------------------- /include/dolphin/hw_regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/dolphin/hw_regs.h -------------------------------------------------------------------------------- /include/dolphin/ip/ip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/dolphin/ip/ip.h -------------------------------------------------------------------------------- /include/dolphin/lg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/dolphin/lg.h -------------------------------------------------------------------------------- /include/dolphin/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/dolphin/md5.h -------------------------------------------------------------------------------- /include/dolphin/mtx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/dolphin/mtx.h -------------------------------------------------------------------------------- /include/dolphin/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/dolphin/os.h -------------------------------------------------------------------------------- /include/dolphin/os/OSAlarm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/dolphin/os/OSAlarm.h -------------------------------------------------------------------------------- /include/dolphin/os/OSAlloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/dolphin/os/OSAlloc.h -------------------------------------------------------------------------------- /include/dolphin/os/OSArena.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/dolphin/os/OSArena.h -------------------------------------------------------------------------------- /include/dolphin/os/OSBootInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/dolphin/os/OSBootInfo.h -------------------------------------------------------------------------------- /include/dolphin/os/OSCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/dolphin/os/OSCache.h -------------------------------------------------------------------------------- /include/dolphin/os/OSContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/dolphin/os/OSContext.h -------------------------------------------------------------------------------- /include/dolphin/os/OSError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/dolphin/os/OSError.h -------------------------------------------------------------------------------- /include/dolphin/os/OSFastCast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/dolphin/os/OSFastCast.h -------------------------------------------------------------------------------- /include/dolphin/os/OSFont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/dolphin/os/OSFont.h -------------------------------------------------------------------------------- /include/dolphin/os/OSFst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/dolphin/os/OSFst.h -------------------------------------------------------------------------------- /include/dolphin/os/OSMemory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/dolphin/os/OSMemory.h -------------------------------------------------------------------------------- /include/dolphin/os/OSMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/dolphin/os/OSMessage.h -------------------------------------------------------------------------------- /include/dolphin/os/OSModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/dolphin/os/OSModule.h -------------------------------------------------------------------------------- /include/dolphin/os/OSMutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/dolphin/os/OSMutex.h -------------------------------------------------------------------------------- /include/dolphin/os/OSPriv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/dolphin/os/OSPriv.h -------------------------------------------------------------------------------- /include/dolphin/os/OSReset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/dolphin/os/OSReset.h -------------------------------------------------------------------------------- /include/dolphin/os/OSResetSW.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/dolphin/os/OSResetSW.h -------------------------------------------------------------------------------- /include/dolphin/os/OSSerial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/dolphin/os/OSSerial.h -------------------------------------------------------------------------------- /include/dolphin/os/OSThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/dolphin/os/OSThread.h -------------------------------------------------------------------------------- /include/dolphin/os/OSTime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/dolphin/os/OSTime.h -------------------------------------------------------------------------------- /include/dolphin/pad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/dolphin/pad.h -------------------------------------------------------------------------------- /include/dolphin/sipriv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/dolphin/sipriv.h -------------------------------------------------------------------------------- /include/dolphin/tcp/tcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/dolphin/tcp/tcp.h -------------------------------------------------------------------------------- /include/dolphin/thp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/dolphin/thp.h -------------------------------------------------------------------------------- /include/dolphin/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/dolphin/types.h -------------------------------------------------------------------------------- /include/dolphin/vi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/dolphin/vi.h -------------------------------------------------------------------------------- /include/kartEnums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/kartEnums.h -------------------------------------------------------------------------------- /include/kartLocale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/kartLocale.h -------------------------------------------------------------------------------- /include/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/macros.h -------------------------------------------------------------------------------- /include/mathHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/mathHelper.h -------------------------------------------------------------------------------- /include/std/bitset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/std/bitset.h -------------------------------------------------------------------------------- /include/std/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/std/math.h -------------------------------------------------------------------------------- /include/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/include/types.h -------------------------------------------------------------------------------- /libs/JSystem/J3D/GraphAnimator/J3DAnimation.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/JSystem/J3D/GraphAnimator/J3DCluster.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/JSystem/J3D/GraphAnimator/J3DJoint.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/JSystem/J3D/GraphAnimator/J3DJointTree.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/JSystem/J3D/GraphAnimator/J3DMaterialAnm.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/JSystem/J3D/GraphAnimator/J3DMaterialAttach.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/JSystem/J3D/GraphAnimator/J3DModel.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/JSystem/J3D/GraphAnimator/J3DModelData.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/JSystem/J3D/GraphAnimator/J3DMtxBuffer.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/JSystem/J3D/GraphAnimator/J3DShapeTable.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/JSystem/J3D/GraphAnimator/J3DSkinDeform.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/JSystem/J3D/GraphBase/J3DDrawBuffer.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/JSystem/J3D/GraphBase/J3DGD.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/JSystem/J3D/GraphBase/J3DMatBlock.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/JSystem/J3D/GraphBase/J3DMaterial.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/JSystem/J3D/GraphBase/J3DPacket.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/JSystem/J3D/GraphBase/J3DShape.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/JSystem/J3D/GraphBase/J3DShapeDraw.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/JSystem/J3D/GraphBase/J3DShapeMtx.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/JSystem/J3D/GraphBase/J3DStruct.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/JSystem/J3D/GraphBase/J3DSys.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/JSystem/J3D/GraphBase/J3DTevs.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/JSystem/J3D/GraphBase/J3DTexture.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/JSystem/J3D/GraphBase/J3DTransform.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/JSystem/J3D/GraphBase/J3DVertex.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/JSystem/J3D/GraphLoader/J3DAnmLoader.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/JSystem/J3D/GraphLoader/J3DBinaryFormat.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/JSystem/J3D/GraphLoader/J3DClusterLoader.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/JSystem/J3D/GraphLoader/J3DJointFactory.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/JSystem/J3D/GraphLoader/J3DMaterialFactory.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/JSystem/J3D/GraphLoader/J3DMaterialFactory_v21.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/JSystem/J3D/GraphLoader/J3DModelLoader.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/JSystem/J3D/GraphLoader/J3DModelLoaderCalcSize.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/JSystem/J3D/GraphLoader/J3DModelSaver.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/JSystem/J3D/GraphLoader/J3DShapeFactory.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/JSystem/J3DU/J3DUDL.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/JSystem/J3DU/J3DUMotion.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/JSystem/J3DU/J3DUPerf.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/JSystem/JMath/JMath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/libs/JSystem/JMath/JMath.cpp -------------------------------------------------------------------------------- /libs/JSystem/JMath/random.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/libs/JSystem/JMath/random.cpp -------------------------------------------------------------------------------- /libs/JSystem/Logitech/Conditon.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/JSystem/Logitech/Constant.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/JSystem/Logitech/Force.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/JSystem/Logitech/LGWheels.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/JSystem/Logitech/Periodic.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/JSystem/Logitech/Ramp.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/JSystem/Logitech/Wheels.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/dolphin/OdemuExi2/DebuggerDriver.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/dolphin/ai/ai.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/libs/dolphin/ai/ai.c -------------------------------------------------------------------------------- /libs/dolphin/amcstubs/AmcExi2Stubs.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/dolphin/ar/ar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/libs/dolphin/ar/ar.c -------------------------------------------------------------------------------- /libs/dolphin/ar/arq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/libs/dolphin/ar/arq.c -------------------------------------------------------------------------------- /libs/dolphin/base/PPCArch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/libs/dolphin/base/PPCArch.c -------------------------------------------------------------------------------- /libs/dolphin/card/CARDBios.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/libs/dolphin/card/CARDBios.c -------------------------------------------------------------------------------- /libs/dolphin/card/CARDBlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/libs/dolphin/card/CARDBlock.c -------------------------------------------------------------------------------- /libs/dolphin/card/CARDCheck.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/libs/dolphin/card/CARDCheck.c -------------------------------------------------------------------------------- /libs/dolphin/card/CARDCreate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/libs/dolphin/card/CARDCreate.c -------------------------------------------------------------------------------- /libs/dolphin/card/CARDDelete.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/libs/dolphin/card/CARDDelete.c -------------------------------------------------------------------------------- /libs/dolphin/card/CARDDir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/libs/dolphin/card/CARDDir.c -------------------------------------------------------------------------------- /libs/dolphin/card/CARDFormat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/libs/dolphin/card/CARDFormat.c -------------------------------------------------------------------------------- /libs/dolphin/card/CARDMount.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/libs/dolphin/card/CARDMount.c -------------------------------------------------------------------------------- /libs/dolphin/card/CARDNet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/libs/dolphin/card/CARDNet.c -------------------------------------------------------------------------------- /libs/dolphin/card/CARDOpen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/libs/dolphin/card/CARDOpen.c -------------------------------------------------------------------------------- /libs/dolphin/card/CARDRdwr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/libs/dolphin/card/CARDRdwr.c -------------------------------------------------------------------------------- /libs/dolphin/card/CARDRead.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/libs/dolphin/card/CARDRead.c -------------------------------------------------------------------------------- /libs/dolphin/card/CARDRename.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/libs/dolphin/card/CARDRename.c -------------------------------------------------------------------------------- /libs/dolphin/card/CARDStat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/libs/dolphin/card/CARDStat.c -------------------------------------------------------------------------------- /libs/dolphin/card/CARDUnlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/libs/dolphin/card/CARDUnlock.c -------------------------------------------------------------------------------- /libs/dolphin/card/CARDWrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/libs/dolphin/card/CARDWrite.c -------------------------------------------------------------------------------- /libs/dolphin/db/db.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/libs/dolphin/db/db.c -------------------------------------------------------------------------------- /libs/dolphin/dsp/dsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/libs/dolphin/dsp/dsp.c -------------------------------------------------------------------------------- /libs/dolphin/dsp/dsp_debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/libs/dolphin/dsp/dsp_debug.c -------------------------------------------------------------------------------- /libs/dolphin/dsp/dsp_task.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/libs/dolphin/dsp/dsp_task.c -------------------------------------------------------------------------------- /libs/dolphin/dvd/dvd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/libs/dolphin/dvd/dvd.c -------------------------------------------------------------------------------- /libs/dolphin/dvd/dvdFatal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/libs/dolphin/dvd/dvdFatal.c -------------------------------------------------------------------------------- /libs/dolphin/dvd/dvderror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/libs/dolphin/dvd/dvderror.c -------------------------------------------------------------------------------- /libs/dolphin/dvd/dvdfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/libs/dolphin/dvd/dvdfs.c -------------------------------------------------------------------------------- /libs/dolphin/dvd/dvdidutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/libs/dolphin/dvd/dvdidutils.c -------------------------------------------------------------------------------- /libs/dolphin/dvd/dvdlow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/libs/dolphin/dvd/dvdlow.c -------------------------------------------------------------------------------- /libs/dolphin/dvd/dvdqueue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/libs/dolphin/dvd/dvdqueue.c -------------------------------------------------------------------------------- /libs/dolphin/eth/base64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/libs/dolphin/eth/base64.c -------------------------------------------------------------------------------- /libs/dolphin/eth/eth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/libs/dolphin/eth/eth.c -------------------------------------------------------------------------------- /libs/dolphin/eth/ethsec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/libs/dolphin/eth/ethsec.c -------------------------------------------------------------------------------- /libs/dolphin/eth/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/libs/dolphin/eth/md5.c -------------------------------------------------------------------------------- /libs/dolphin/exi/EXIBios.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/libs/dolphin/exi/EXIBios.c -------------------------------------------------------------------------------- /libs/dolphin/exi/EXIUart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/libs/dolphin/exi/EXIUart.c -------------------------------------------------------------------------------- /libs/dolphin/gd/GDBase.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/dolphin/gd/GDGeometry.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/dolphin/gx/GXAttr.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/dolphin/gx/GXBump.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/dolphin/gx/GXDisplayList.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/dolphin/gx/GXDraw.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/dolphin/gx/GXFifo.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/dolphin/gx/GXFrameBuf.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/dolphin/gx/GXGeometry.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/dolphin/gx/GXInit.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/dolphin/gx/GXLight.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/dolphin/gx/GXMisc.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/dolphin/gx/GXPerf.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/dolphin/gx/GXPixel.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/dolphin/gx/GXTev.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/dolphin/gx/GXTexture.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/dolphin/gx/GXTransform.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/dolphin/hio/hio.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/dolphin/ip/IFFifo.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/dolphin/ip/IFRing.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/dolphin/ip/IP.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/dolphin/ip/IPArp.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/dolphin/ip/IPChap.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/dolphin/ip/IPDhcp.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/dolphin/ip/IPDns.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/dolphin/ip/IPEther.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/dolphin/ip/IPFrag.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/dolphin/ip/IPIcmp.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/dolphin/ip/IPIgmp.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/dolphin/ip/IPIpcp.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/dolphin/ip/IPLcp.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/dolphin/ip/IPOpt.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/dolphin/ip/IPPPP.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/dolphin/ip/IPPPPoE.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/dolphin/ip/IPPap.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/dolphin/ip/IPRoute.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/dolphin/ip/IPSocket.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/dolphin/ip/IPTcp.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/dolphin/ip/IPTcpOutput.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/dolphin/ip/IPTcpTimeWait.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/dolphin/ip/IPTcpTimer.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/dolphin/ip/IPTcpUser.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/dolphin/ip/IPUdp.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/dolphin/ip/IPUuid.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/dolphin/ip/IPZero.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/dolphin/lg/allsrc.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/dolphin/mtx/mtx.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/dolphin/mtx/mtx44.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/dolphin/mtx/mtx44vec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/libs/dolphin/mtx/mtx44vec.c -------------------------------------------------------------------------------- /libs/dolphin/mtx/mtxvec.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/dolphin/mtx/quat.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/dolphin/mtx/vec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/libs/dolphin/mtx/vec.c -------------------------------------------------------------------------------- /libs/dolphin/odenotstub/odenotstub.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/dolphin/os/OS.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/libs/dolphin/os/OS.c -------------------------------------------------------------------------------- /libs/dolphin/os/OSAlarm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/libs/dolphin/os/OSAlarm.c -------------------------------------------------------------------------------- /libs/dolphin/os/OSAlloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/libs/dolphin/os/OSAlloc.c -------------------------------------------------------------------------------- /libs/dolphin/os/OSArena.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/libs/dolphin/os/OSArena.c -------------------------------------------------------------------------------- /libs/dolphin/os/OSAudioSystem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/libs/dolphin/os/OSAudioSystem.c -------------------------------------------------------------------------------- /libs/dolphin/os/OSCache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/libs/dolphin/os/OSCache.c -------------------------------------------------------------------------------- /libs/dolphin/os/OSContext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/libs/dolphin/os/OSContext.c -------------------------------------------------------------------------------- /libs/dolphin/os/OSError.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/libs/dolphin/os/OSError.c -------------------------------------------------------------------------------- /libs/dolphin/os/OSFont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/libs/dolphin/os/OSFont.c -------------------------------------------------------------------------------- /libs/dolphin/os/OSInterrupt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/libs/dolphin/os/OSInterrupt.c -------------------------------------------------------------------------------- /libs/dolphin/os/OSLink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/libs/dolphin/os/OSLink.c -------------------------------------------------------------------------------- /libs/dolphin/os/OSMemory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/libs/dolphin/os/OSMemory.c -------------------------------------------------------------------------------- /libs/dolphin/os/OSMessage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/libs/dolphin/os/OSMessage.c -------------------------------------------------------------------------------- /libs/dolphin/os/OSMutex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/libs/dolphin/os/OSMutex.c -------------------------------------------------------------------------------- /libs/dolphin/os/OSReboot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/libs/dolphin/os/OSReboot.c -------------------------------------------------------------------------------- /libs/dolphin/os/OSReset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/libs/dolphin/os/OSReset.c -------------------------------------------------------------------------------- /libs/dolphin/os/OSResetSW.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/libs/dolphin/os/OSResetSW.c -------------------------------------------------------------------------------- /libs/dolphin/os/OSRtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/libs/dolphin/os/OSRtc.c -------------------------------------------------------------------------------- /libs/dolphin/os/OSSync.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/libs/dolphin/os/OSSync.c -------------------------------------------------------------------------------- /libs/dolphin/os/OSThread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/libs/dolphin/os/OSThread.c -------------------------------------------------------------------------------- /libs/dolphin/os/OSTime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/libs/dolphin/os/OSTime.c -------------------------------------------------------------------------------- /libs/dolphin/os/init/__start.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/libs/dolphin/os/init/__start.c -------------------------------------------------------------------------------- /libs/dolphin/pad/Pad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/libs/dolphin/pad/Pad.c -------------------------------------------------------------------------------- /libs/dolphin/pad/Padclamp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/libs/dolphin/pad/Padclamp.c -------------------------------------------------------------------------------- /libs/dolphin/si/SIBios.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/libs/dolphin/si/SIBios.c -------------------------------------------------------------------------------- /libs/dolphin/si/SISteering.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/dolphin/si/SISteeringAuto.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/dolphin/si/SISteeringXfer.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/dolphin/thp/THPAudio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/libs/dolphin/thp/THPAudio.c -------------------------------------------------------------------------------- /libs/dolphin/thp/THPDec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/libs/dolphin/thp/THPDec.c -------------------------------------------------------------------------------- /libs/dolphin/upnp/UPnP.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/dolphin/upnp/UPnPHttp.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/dolphin/upnp/UPnPHttpd.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/dolphin/upnp/UPnPHttpdResponse.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/dolphin/upnp/UPnPSsdp.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/dolphin/upnp/UPnPUri.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/dolphin/upnp/UPnPUuid.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/dolphin/vi/vi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/libs/dolphin/vi/vi.c -------------------------------------------------------------------------------- /libs/runtime_libs/debugger/embedded/MetroTRK/Export/mslsupp.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/runtime_libs/debugger/embedded/MetroTRK/Os/dolphin/UDP_Stubs.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/runtime_libs/debugger/embedded/MetroTRK/Os/dolphin/dolphin_trk.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/runtime_libs/debugger/embedded/MetroTRK/Os/dolphin/dolphin_trk_glue.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/runtime_libs/debugger/embedded/MetroTRK/Os/dolphin/targcont.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/runtime_libs/debugger/embedded/MetroTRK/Os/dolphin/target_options.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/runtime_libs/debugger/embedded/MetroTRK/Os/dolphin/usr_put.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/runtime_libs/debugger/embedded/MetroTRK/Portable/dispatch.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/runtime_libs/debugger/embedded/MetroTRK/Portable/main_TRK.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/runtime_libs/debugger/embedded/MetroTRK/Portable/mainloop.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/runtime_libs/debugger/embedded/MetroTRK/Portable/mem_TRK.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/runtime_libs/debugger/embedded/MetroTRK/Portable/msg.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/runtime_libs/debugger/embedded/MetroTRK/Portable/msgbuf.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/runtime_libs/debugger/embedded/MetroTRK/Portable/msghndlr.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/runtime_libs/debugger/embedded/MetroTRK/Portable/mutex_TRK.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/runtime_libs/debugger/embedded/MetroTRK/Portable/notify.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/runtime_libs/debugger/embedded/MetroTRK/Portable/nubevent.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/runtime_libs/debugger/embedded/MetroTRK/Portable/nubinit.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/runtime_libs/debugger/embedded/MetroTRK/Portable/serpoll.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/runtime_libs/debugger/embedded/MetroTRK/Portable/support.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/runtime_libs/debugger/embedded/MetroTRK/Processor/ppc/Export/targsupp.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/runtime_libs/debugger/embedded/MetroTRK/Processor/ppc/Generic/__exception.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/runtime_libs/debugger/embedded/MetroTRK/Processor/ppc/Generic/flush_cache.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/runtime_libs/debugger/embedded/MetroTRK/Processor/ppc/Generic/mpc_7xx_603e.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/runtime_libs/debugger/embedded/MetroTRK/Processor/ppc/Generic/targimpl.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/runtime_libs/gamedev/cust_connection/cc/exi2/GCN/EXI2_DDH_GCN/main.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/runtime_libs/gamedev/cust_connection/cc/exi2/GCN/EXI2_GDEV_GCN/main.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/runtime_libs/gamedev/cust_connection/utils/common/CircleBuffer.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/runtime_libs/gamedev/cust_connection/utils/common/MWTrace.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/runtime_libs/gamedev/cust_connection/utils/gc/MWCriticalSection_gc.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orig/MarioClub_us/main.dol.sha1: -------------------------------------------------------------------------------- 1 | db87a9ec1a34275efc45d965dcdcb1a9eb131885 *out/MarioClub_us/main.dol -------------------------------------------------------------------------------- /orig/Release_eu/main.dol.sha1: -------------------------------------------------------------------------------- 1 | f3bf225dd81cd9eb094fa9f8415f95f6bbcb9d10 *out/Release_eu/main.dol -------------------------------------------------------------------------------- /src/Bando/EngineSound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Bando/EngineSound.cpp -------------------------------------------------------------------------------- /src/Inagaki/CircleSoundMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Inagaki/CircleSoundMgr.cpp -------------------------------------------------------------------------------- /src/Inagaki/CoasterSoundMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Inagaki/CoasterSoundMgr.cpp -------------------------------------------------------------------------------- /src/Inagaki/GameAudioCamera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Inagaki/GameAudioCamera.cpp -------------------------------------------------------------------------------- /src/Inagaki/GameAudioCommon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Inagaki/GameAudioCommon.cpp -------------------------------------------------------------------------------- /src/Inagaki/GameAudioHostIO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Inagaki/GameAudioHostIO.cpp -------------------------------------------------------------------------------- /src/Inagaki/GameAudioMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Inagaki/GameAudioMain.cpp -------------------------------------------------------------------------------- /src/Inagaki/GameAudioMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Inagaki/GameAudioMgr.cpp -------------------------------------------------------------------------------- /src/Inagaki/GameAudioParam.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Inagaki/GameAudioParam.cpp -------------------------------------------------------------------------------- /src/Inagaki/GameSoundTable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Inagaki/GameSoundTable.cpp -------------------------------------------------------------------------------- /src/Inagaki/KartSoundMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Inagaki/KartSoundMgr.cpp -------------------------------------------------------------------------------- /src/Inagaki/NpcCarSoundMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Inagaki/NpcCarSoundMgr.cpp -------------------------------------------------------------------------------- /src/Inagaki/ObjectSoundMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Inagaki/ObjectSoundMgr.cpp -------------------------------------------------------------------------------- /src/Inagaki/RockSoundMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Inagaki/RockSoundMgr.cpp -------------------------------------------------------------------------------- /src/Inagaki/ShoreSoundMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Inagaki/ShoreSoundMgr.cpp -------------------------------------------------------------------------------- /src/Kameda/BattleName2D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Kameda/BattleName2D.cpp -------------------------------------------------------------------------------- /src/Kameda/BombStart2D.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Kameda/CanNotSaveG2D.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Kameda/CharacterSelect3D.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Kameda/CourseName2D.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Kameda/Cup2D.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Kameda/Demo2D.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Kameda/Fade.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Kameda/Go2D.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Kameda/Go3212D.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Kameda/Goal2D.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Kameda/J2DManager.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Kameda/K2DPicture.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Kameda/LANNum2D.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Kameda/LANResult2D.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Kameda/LapGhost2D.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Kameda/Mario.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Kameda/Motor.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Kameda/MotorManager.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Kameda/Pause2D.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Kameda/PauseManager.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Kameda/PreRace2D.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Kameda/PrintDvdError.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Kameda/PrintDvdError.cpp -------------------------------------------------------------------------------- /src/Kameda/PrintMemoryCard.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Kameda/PrintProgressive.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Kameda/PrintWindow.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Kameda/Race2D.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Kameda/ReadPrintMessage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Kameda/ReadPrintMessage.cpp -------------------------------------------------------------------------------- /src/Kameda/Result2D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Kameda/Result2D.cpp -------------------------------------------------------------------------------- /src/Kameda/Scene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Kameda/Scene.cpp -------------------------------------------------------------------------------- /src/Kameda/SceneApp.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Kameda/SceneCourseSelect.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Kameda/SceneFactory.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Kameda/SceneGhostLoadSave.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Kameda/SceneLanEntry.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Kameda/SceneMap.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Kameda/SceneMapSelect.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Kameda/SceneMenu.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Kameda/SceneOption.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Kameda/SceneRecord.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Kameda/SceneTitle.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Kameda/SequenceInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Kameda/SequenceInfo.cpp -------------------------------------------------------------------------------- /src/Kameda/Task.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Kameda/Task.cpp -------------------------------------------------------------------------------- /src/Kameda/WipeManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Kameda/WipeManager.cpp -------------------------------------------------------------------------------- /src/Kaneshige/BlurScreen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Kaneshige/BlurScreen.cpp -------------------------------------------------------------------------------- /src/Kaneshige/CenterLine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Kaneshige/CenterLine.cpp -------------------------------------------------------------------------------- /src/Kaneshige/Course/Course.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Kaneshige/Course/Course.cpp -------------------------------------------------------------------------------- /src/Kaneshige/CrsArea.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Kaneshige/CrsArea.cpp -------------------------------------------------------------------------------- /src/Kaneshige/DarkAnmMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Kaneshige/DarkAnmMgr.cpp -------------------------------------------------------------------------------- /src/Kaneshige/DrawBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Kaneshige/DrawBuffer.cpp -------------------------------------------------------------------------------- /src/Kaneshige/ExModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Kaneshige/ExModel.cpp -------------------------------------------------------------------------------- /src/Kaneshige/GeoAirJet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Kaneshige/GeoAirJet.cpp -------------------------------------------------------------------------------- /src/Kaneshige/GeoBombCar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Kaneshige/GeoBombCar.cpp -------------------------------------------------------------------------------- /src/Kaneshige/GeoBus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Kaneshige/GeoBus.cpp -------------------------------------------------------------------------------- /src/Kaneshige/GeoCannon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Kaneshige/GeoCannon.cpp -------------------------------------------------------------------------------- /src/Kaneshige/GeoCar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Kaneshige/GeoCar.cpp -------------------------------------------------------------------------------- /src/Kaneshige/GeoCarShadow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Kaneshige/GeoCarShadow.cpp -------------------------------------------------------------------------------- /src/Kaneshige/GeoDkCloud.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Kaneshige/GeoDkCloud.cpp -------------------------------------------------------------------------------- /src/Kaneshige/GeoHanaBody.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Kaneshige/GeoHanaBody.cpp -------------------------------------------------------------------------------- /src/Kaneshige/GeoHanaCar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Kaneshige/GeoHanaCar.cpp -------------------------------------------------------------------------------- /src/Kaneshige/GeoItemCar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Kaneshige/GeoItemCar.cpp -------------------------------------------------------------------------------- /src/Kaneshige/GeoItemGen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Kaneshige/GeoItemGen.cpp -------------------------------------------------------------------------------- /src/Kaneshige/GeoKinoCar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Kaneshige/GeoKinoCar.cpp -------------------------------------------------------------------------------- /src/Kaneshige/GeoKinojii.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Kaneshige/GeoKinojii.cpp -------------------------------------------------------------------------------- /src/Kaneshige/GeoKuriCar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Kaneshige/GeoKuriCar.cpp -------------------------------------------------------------------------------- /src/Kaneshige/GeoKuribo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Kaneshige/GeoKuribo.cpp -------------------------------------------------------------------------------- /src/Kaneshige/GeoNormCar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Kaneshige/GeoNormCar.cpp -------------------------------------------------------------------------------- /src/Kaneshige/GeoPuller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Kaneshige/GeoPuller.cpp -------------------------------------------------------------------------------- /src/Kaneshige/GeoRabbitMark.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Kaneshige/GeoRabbitMark.cpp -------------------------------------------------------------------------------- /src/Kaneshige/GeoShimmer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Kaneshige/GeoShimmer.cpp -------------------------------------------------------------------------------- /src/Kaneshige/GeoShine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Kaneshige/GeoShine.cpp -------------------------------------------------------------------------------- /src/Kaneshige/GeoSignal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Kaneshige/GeoSignal.cpp -------------------------------------------------------------------------------- /src/Kaneshige/GeoSoundGen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Kaneshige/GeoSoundGen.cpp -------------------------------------------------------------------------------- /src/Kaneshige/GeoSplash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Kaneshige/GeoSplash.cpp -------------------------------------------------------------------------------- /src/Kaneshige/GeoStartLine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Kaneshige/GeoStartLine.cpp -------------------------------------------------------------------------------- /src/Kaneshige/GeoSubWater.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Kaneshige/GeoSubWater.cpp -------------------------------------------------------------------------------- /src/Kaneshige/GeoTideSensor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Kaneshige/GeoTideSensor.cpp -------------------------------------------------------------------------------- /src/Kaneshige/GeoTruck.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Kaneshige/GeoTruck.cpp -------------------------------------------------------------------------------- /src/Kaneshige/GeoVision.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Kaneshige/GeoVision.cpp -------------------------------------------------------------------------------- /src/Kaneshige/GeoWater.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Kaneshige/GeoWater.cpp -------------------------------------------------------------------------------- /src/Kaneshige/GhostScreen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Kaneshige/GhostScreen.cpp -------------------------------------------------------------------------------- /src/Kaneshige/HioMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Kaneshige/HioMgr.cpp -------------------------------------------------------------------------------- /src/Kaneshige/JugemPoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Kaneshige/JugemPoint.cpp -------------------------------------------------------------------------------- /src/Kaneshige/KartChecker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Kaneshige/KartChecker.cpp -------------------------------------------------------------------------------- /src/Kaneshige/KartDrawer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Kaneshige/KartDrawer.cpp -------------------------------------------------------------------------------- /src/Kaneshige/KartInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Kaneshige/KartInfo.cpp -------------------------------------------------------------------------------- /src/Kaneshige/KartLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Kaneshige/KartLoader.cpp -------------------------------------------------------------------------------- /src/Kaneshige/KartMotion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Kaneshige/KartMotion.cpp -------------------------------------------------------------------------------- /src/Kaneshige/KartMtx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Kaneshige/KartMtx.cpp -------------------------------------------------------------------------------- /src/Kaneshige/LightMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Kaneshige/LightMgr.cpp -------------------------------------------------------------------------------- /src/Kaneshige/MaskScreen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Kaneshige/MaskScreen.cpp -------------------------------------------------------------------------------- /src/Kaneshige/MdlViewer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Kaneshige/MdlViewer.cpp -------------------------------------------------------------------------------- /src/Kaneshige/Movie/THPDraw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Kaneshige/Movie/THPDraw.c -------------------------------------------------------------------------------- /src/Kaneshige/RaceBGMPlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Kaneshige/RaceBGMPlayer.cpp -------------------------------------------------------------------------------- /src/Kaneshige/RaceDirector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Kaneshige/RaceDirector.cpp -------------------------------------------------------------------------------- /src/Kaneshige/RaceDrawer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Kaneshige/RaceDrawer.cpp -------------------------------------------------------------------------------- /src/Kaneshige/RaceInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Kaneshige/RaceInfo.cpp -------------------------------------------------------------------------------- /src/Kaneshige/RaceLight.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Kaneshige/RaceLight.cpp -------------------------------------------------------------------------------- /src/Kaneshige/RaceMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Kaneshige/RaceMgr.cpp -------------------------------------------------------------------------------- /src/Kaneshige/RaceTime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Kaneshige/RaceTime.cpp -------------------------------------------------------------------------------- /src/Kaneshige/ScrnShot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Kaneshige/ScrnShot.cpp -------------------------------------------------------------------------------- /src/Kaneshige/ShimmerScreen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Kaneshige/ShimmerScreen.cpp -------------------------------------------------------------------------------- /src/Kaneshige/SimpleDrawer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Kaneshige/SimpleDrawer.cpp -------------------------------------------------------------------------------- /src/Kaneshige/SysDebug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Kaneshige/SysDebug.cpp -------------------------------------------------------------------------------- /src/Kaneshige/THP/THPPlayer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Kaneshige/THP/THPPlayer.c -------------------------------------------------------------------------------- /src/Kaneshige/THP/THPRead.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Kaneshige/THP/THPRead.c -------------------------------------------------------------------------------- /src/Kaneshige/TexLODControl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Kaneshige/TexLODControl.cpp -------------------------------------------------------------------------------- /src/Kawano/PrintPal.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Kawano/SceneTitleLine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Kawano/SceneTitleLine.cpp -------------------------------------------------------------------------------- /src/Kawano/StaffRoll2D.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Kawano/accessory.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Kawano/animation.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Kawano/driver.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Kawano/driverAnim.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Kawano/driverAnim.cpp -------------------------------------------------------------------------------- /src/Kawano/driverAnimBuf.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Kawano/driverData.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Kawano/driverMgr.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Kawano/driverObj.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Kawano/driverOffset.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Kawano/driverState.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Kawano/driverTPAnim.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Kawano/driver_ik.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Kawano/feeling.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Kawano/laurel.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Kawano/osage.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Osako/AppMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Osako/AppMgr.cpp -------------------------------------------------------------------------------- /src/Osako/Award2D.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Osako/AwardApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Osako/AwardApp.cpp -------------------------------------------------------------------------------- /src/Osako/BBAMgr.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Osako/CardAgent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Osako/CardAgent.cpp -------------------------------------------------------------------------------- /src/Osako/CardMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Osako/CardMgr.cpp -------------------------------------------------------------------------------- /src/Osako/ErrorViewApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Osako/ErrorViewApp.cpp -------------------------------------------------------------------------------- /src/Osako/FontMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Osako/FontMgr.cpp -------------------------------------------------------------------------------- /src/Osako/ForceEffectMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Osako/ForceEffectMgr.cpp -------------------------------------------------------------------------------- /src/Osako/GIRecord.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Osako/GIRecord.cpp -------------------------------------------------------------------------------- /src/Osako/GPRecord.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Osako/GPRecord.cpp -------------------------------------------------------------------------------- /src/Osako/GameApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Osako/GameApp.cpp -------------------------------------------------------------------------------- /src/Osako/GhostFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Osako/GhostFile.cpp -------------------------------------------------------------------------------- /src/Osako/Kart2DCommon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Osako/Kart2DCommon.cpp -------------------------------------------------------------------------------- /src/Osako/LANBackground.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Osako/LANEntry.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Osako/LANPlayInfo.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Osako/LANSelectMode.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Osako/LANTitle.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Osako/LogoApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Osako/LogoApp.cpp -------------------------------------------------------------------------------- /src/Osako/MainMenuApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Osako/MainMenuApp.cpp -------------------------------------------------------------------------------- /src/Osako/MapSelectApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Osako/MapSelectApp.cpp -------------------------------------------------------------------------------- /src/Osako/MenuBackground.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Osako/MenuBackground.cpp -------------------------------------------------------------------------------- /src/Osako/MenuTitleLine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Osako/MenuTitleLine.cpp -------------------------------------------------------------------------------- /src/Osako/NameEntryHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Osako/NameEntryHelper.cpp -------------------------------------------------------------------------------- /src/Osako/NetGameMgr.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Osako/NetGateApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Osako/NetGateApp.cpp -------------------------------------------------------------------------------- /src/Osako/PadMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Osako/PadMgr.cpp -------------------------------------------------------------------------------- /src/Osako/PadRecorder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Osako/PadRecorder.cpp -------------------------------------------------------------------------------- /src/Osako/PlayerSelectApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Osako/PlayerSelectApp.cpp -------------------------------------------------------------------------------- /src/Osako/RaceApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Osako/RaceApp.cpp -------------------------------------------------------------------------------- /src/Osako/ResMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Osako/ResMgr.cpp -------------------------------------------------------------------------------- /src/Osako/ResetAgent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Osako/ResetAgent.cpp -------------------------------------------------------------------------------- /src/Osako/SaveFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Osako/SaveFile.cpp -------------------------------------------------------------------------------- /src/Osako/SequenceApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Osako/SequenceApp.cpp -------------------------------------------------------------------------------- /src/Osako/SystemFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Osako/SystemFile.cpp -------------------------------------------------------------------------------- /src/Osako/SystemRecord.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Osako/SystemRecord.cpp -------------------------------------------------------------------------------- /src/Osako/TARecord.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Osako/TARecord.cpp -------------------------------------------------------------------------------- /src/Osako/TestViewApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Osako/TestViewApp.cpp -------------------------------------------------------------------------------- /src/Osako/animator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Osako/animator.cpp -------------------------------------------------------------------------------- /src/Osako/clock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Osako/clock.cpp -------------------------------------------------------------------------------- /src/Osako/kartPad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Osako/kartPad.cpp -------------------------------------------------------------------------------- /src/Osako/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Osako/main.cpp -------------------------------------------------------------------------------- /src/Osako/password.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Osako/password.cpp -------------------------------------------------------------------------------- /src/Osako/screenshot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Osako/screenshot.c -------------------------------------------------------------------------------- /src/Osako/shadowMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Osako/shadowMgr.cpp -------------------------------------------------------------------------------- /src/Osako/shadowModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Osako/shadowModel.cpp -------------------------------------------------------------------------------- /src/Osako/shadowScr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Osako/shadowScr.cpp -------------------------------------------------------------------------------- /src/Osako/system.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Osako/system.cpp -------------------------------------------------------------------------------- /src/Osako/systemData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Osako/systemData.cpp -------------------------------------------------------------------------------- /src/Osako/testApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Osako/testApp.cpp -------------------------------------------------------------------------------- /src/Sato/AnmController.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Sato/AnmController.cpp -------------------------------------------------------------------------------- /src/Sato/ArmCtrl.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Sato/EffectScreen.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Sato/GeoItemBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Sato/GeoItemBox.cpp -------------------------------------------------------------------------------- /src/Sato/GeoJumpNarrow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Sato/GeoJumpNarrow.cpp -------------------------------------------------------------------------------- /src/Sato/GeoObjPathMove.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Sato/GeoObjPathMove.cpp -------------------------------------------------------------------------------- /src/Sato/GeoRFlower.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Sato/GeoRFlower.cpp -------------------------------------------------------------------------------- /src/Sato/GeoTree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Sato/GeoTree.cpp -------------------------------------------------------------------------------- /src/Sato/GeographyObj.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Sato/GeographyObj.cpp -------------------------------------------------------------------------------- /src/Sato/GeographyObjMgr.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Sato/ItemBanana.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Sato/ItemBomb.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Sato/ItemFlyTurtle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Sato/ItemFlyTurtle.cpp -------------------------------------------------------------------------------- /src/Sato/ItemGTurtle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Sato/ItemGTurtle.cpp -------------------------------------------------------------------------------- /src/Sato/ItemHeart.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Sato/ItemHeart.cpp -------------------------------------------------------------------------------- /src/Sato/ItemKinoko.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Sato/ItemKinoko.cpp -------------------------------------------------------------------------------- /src/Sato/ItemObj.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Sato/ItemObjMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Sato/ItemObjMgr.cpp -------------------------------------------------------------------------------- /src/Sato/ItemStar.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Sato/ItemSuccession.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Sato/ItemThunder.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Sato/ItemWanWan.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Sato/ItemYoshiEgg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Sato/ItemYoshiEgg.cpp -------------------------------------------------------------------------------- /src/Sato/J3DAnmObject.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Sato/J3DEfctBomb.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Sato/J3DEfctHeart.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Sato/J3DEfctIceRock.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Sato/J3DEfctSplashDown.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Sato/J3DEffectMgr.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Sato/JPEffectMgr.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Sato/JPEffectPerformer.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Sato/LumbarCtrl.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Sato/NeckCtrl.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Sato/ObjCollision.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Sato/ObjCollision.cpp -------------------------------------------------------------------------------- /src/Sato/ObjUtility.cpp: -------------------------------------------------------------------------------- 1 | #include "Sato/ObjUtility.h" 2 | -------------------------------------------------------------------------------- /src/Sato/RivalBodyCtrl.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Sato/RivalItemCtrl.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Sato/RivalKart.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Sato/RivalKart.cpp -------------------------------------------------------------------------------- /src/Sato/RivalSpeedCtrl.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Sato/StateObserver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Sato/StateObserver.cpp -------------------------------------------------------------------------------- /src/Sato/StringObj.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Sato/logbridge.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Sato/stEfctExhaust.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Sato/stEfctRoad.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Sato/stEfctWater.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Sato/stEfctWeed.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Sato/stEfctWeed.cpp -------------------------------------------------------------------------------- /src/Sato/stEffectMgr.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Sato/stEmitter.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Sato/stMath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Sato/stMath.cpp -------------------------------------------------------------------------------- /src/Sato/stParticle.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Shiraiwa/AnmPlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Shiraiwa/AnmPlayer.cpp -------------------------------------------------------------------------------- /src/Shiraiwa/Balloon.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Shiraiwa/BoidsManager.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Shiraiwa/Coord3D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Shiraiwa/Coord3D.cpp -------------------------------------------------------------------------------- /src/Shiraiwa/Coord3DUtil.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Shiraiwa/DistSnow.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Shiraiwa/Interp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Shiraiwa/Interp.cpp -------------------------------------------------------------------------------- /src/Shiraiwa/JugemDemo.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Shiraiwa/JugemFlag.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Shiraiwa/JugemGoal.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Shiraiwa/JugemHeadLamp.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Shiraiwa/JugemLap.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Shiraiwa/JugemMain.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Shiraiwa/JugemRescue.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Shiraiwa/JugemReverse.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Shiraiwa/JugemRodBoard.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Shiraiwa/JugemRodSignal.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Shiraiwa/JugemStart.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Shiraiwa/JugemVoidRod.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Shiraiwa/LensFlare.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Shiraiwa/MapObjAntLion.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Shiraiwa/MapObjAwardItemBox.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Shiraiwa/MapObjBubble.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Shiraiwa/MapObjDemoObj.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Shiraiwa/MapObjDesun.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Shiraiwa/MapObjDonkyRock.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Shiraiwa/MapObjDonkyRockGen.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Shiraiwa/MapObjDonkyTree.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Shiraiwa/MapObjDossun.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Shiraiwa/MapObjFerriswheel.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Shiraiwa/MapObjFireBar.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Shiraiwa/MapObjFireObj.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Shiraiwa/MapObjFountain.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Shiraiwa/MapObjGeyser.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Shiraiwa/MapObjHanabi.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Shiraiwa/MapObjHeyho.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Shiraiwa/MapObjHioNode.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Shiraiwa/MapObjIceBlock.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Shiraiwa/MapObjJetCoaster.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Shiraiwa/MapObjKpFire.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Shiraiwa/MapObjKpGear.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Shiraiwa/MapObjMare.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Shiraiwa/MapObjMeteor.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Shiraiwa/MapObjMonte.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Shiraiwa/MapObjMoveItemBox.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Shiraiwa/MapObjNoMove.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Shiraiwa/MapObjNossie.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Shiraiwa/MapObjPakkun.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Shiraiwa/MapObjPeachTree.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Shiraiwa/MapObjPoihana.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Shiraiwa/MapObjPool.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Shiraiwa/MapObjRollTable.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Shiraiwa/MapObjSanbo.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Shiraiwa/MapObjSandPillar.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Shiraiwa/MapObjSkyShip.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Shiraiwa/MapObjSnowMan.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Shiraiwa/MapObjSnowRock.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Shiraiwa/MapObjSun.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Shiraiwa/MapObjVentilator.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Shiraiwa/MapObjWall.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Shiraiwa/MapObjWanwan.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Shiraiwa/MapObjWanwanChain.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Shiraiwa/MapObjWluArrow.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Shiraiwa/MapObjYoshiHeli.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Shiraiwa/SMABird2.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Shiraiwa/SMABirdGroup.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Shiraiwa/SMABoidBird.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Shiraiwa/SMAButterfly.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Shiraiwa/SecretScene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Shiraiwa/SecretScene.cpp -------------------------------------------------------------------------------- /src/Shiraiwa/ShineArrow.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Shiraiwa/SiUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Shiraiwa/SiUtil.cpp -------------------------------------------------------------------------------- /src/Shiraiwa/SmallAnimalGen.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Shiraiwa/TestRollObj.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Shiraiwa/TestString.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Shiraiwa/WipeBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Shiraiwa/WipeBase.cpp -------------------------------------------------------------------------------- /src/Shiraiwa/WipeCheck.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Shiraiwa/WipeCheck.cpp -------------------------------------------------------------------------------- /src/Shiraiwa/WipeCircle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Shiraiwa/WipeCircle.cpp -------------------------------------------------------------------------------- /src/Shiraiwa/WipeCurtain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Shiraiwa/WipeCurtain.cpp -------------------------------------------------------------------------------- /src/Shiraiwa/WipeLine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Shiraiwa/WipeLine.cpp -------------------------------------------------------------------------------- /src/Shiraiwa/WipeShut.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Shiraiwa/WipeShut.cpp -------------------------------------------------------------------------------- /src/Shiraiwa/WipeSlide.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Shiraiwa/WipeSlide.cpp -------------------------------------------------------------------------------- /src/Shiraiwa/WipeWave.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Shiraiwa/WipeWave.cpp -------------------------------------------------------------------------------- /src/Shiraiwa/ZCaptureMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Shiraiwa/ZCaptureMgr.cpp -------------------------------------------------------------------------------- /src/Yamamoto/KartAnime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Yamamoto/KartAnime.cpp -------------------------------------------------------------------------------- /src/Yamamoto/KartAnt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Yamamoto/KartAnt.cpp -------------------------------------------------------------------------------- /src/Yamamoto/KartApeendix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Yamamoto/KartApeendix.cpp -------------------------------------------------------------------------------- /src/Yamamoto/KartCannon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Yamamoto/KartCannon.cpp -------------------------------------------------------------------------------- /src/Yamamoto/KartChecker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Yamamoto/KartChecker.cpp -------------------------------------------------------------------------------- /src/Yamamoto/KartCrash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Yamamoto/KartCrash.cpp -------------------------------------------------------------------------------- /src/Yamamoto/KartDamage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Yamamoto/KartDamage.cpp -------------------------------------------------------------------------------- /src/Yamamoto/KartDemoCam.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Yamamoto/KartDemoCam.cpp -------------------------------------------------------------------------------- /src/Yamamoto/KartDisp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Yamamoto/KartDisp.cpp -------------------------------------------------------------------------------- /src/Yamamoto/KartDossin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Yamamoto/KartDossin.cpp -------------------------------------------------------------------------------- /src/Yamamoto/KartFitParam.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Yamamoto/KartFitParam.cpp -------------------------------------------------------------------------------- /src/Yamamoto/KartHandle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Yamamoto/KartHandle.cpp -------------------------------------------------------------------------------- /src/Yamamoto/KartItemStrat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Yamamoto/KartItemStrat.cpp -------------------------------------------------------------------------------- /src/Yamamoto/KartPerCam.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Yamamoto/KartPerCam.cpp -------------------------------------------------------------------------------- /src/Yamamoto/KartPipe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Yamamoto/KartPipe.cpp -------------------------------------------------------------------------------- /src/Yamamoto/KartRescue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Yamamoto/KartRescue.cpp -------------------------------------------------------------------------------- /src/Yamamoto/KartSound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Yamamoto/KartSound.cpp -------------------------------------------------------------------------------- /src/Yamamoto/KartStar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Yamamoto/KartStar.cpp -------------------------------------------------------------------------------- /src/Yamamoto/KartTaeget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Yamamoto/KartTaeget.cpp -------------------------------------------------------------------------------- /src/Yamamoto/KartThunder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Yamamoto/KartThunder.cpp -------------------------------------------------------------------------------- /src/Yamamoto/KartTire.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Yamamoto/KartTire.cpp -------------------------------------------------------------------------------- /src/Yamamoto/KartTumble.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Yamamoto/KartTumble.cpp -------------------------------------------------------------------------------- /src/Yamamoto/kartBody.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Yamamoto/kartBody.cpp -------------------------------------------------------------------------------- /src/Yamamoto/kartBodyStrat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Yamamoto/kartBodyStrat.cpp -------------------------------------------------------------------------------- /src/Yamamoto/kartCamStrat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Yamamoto/kartCamStrat.cpp -------------------------------------------------------------------------------- /src/Yamamoto/kartCamera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Yamamoto/kartCamera.cpp -------------------------------------------------------------------------------- /src/Yamamoto/kartChapter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Yamamoto/kartChapter.cpp -------------------------------------------------------------------------------- /src/Yamamoto/kartCtrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Yamamoto/kartCtrl.cpp -------------------------------------------------------------------------------- /src/Yamamoto/kartCtrlInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Yamamoto/kartCtrlInfo.cpp -------------------------------------------------------------------------------- /src/Yamamoto/kartCtrlStrat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Yamamoto/kartCtrlStrat.cpp -------------------------------------------------------------------------------- /src/Yamamoto/kartLine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Yamamoto/kartLine.cpp -------------------------------------------------------------------------------- /src/Yamamoto/kartParams.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Yamamoto/kartParams.cpp -------------------------------------------------------------------------------- /src/Yamamoto/kartSus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Yamamoto/kartSus.cpp -------------------------------------------------------------------------------- /src/Yamamoto/kartvec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/Yamamoto/kartvec.cpp -------------------------------------------------------------------------------- /src/extabhack.s: -------------------------------------------------------------------------------- 1 | # yeah all files with hack have no code -------------------------------------------------------------------------------- /src/kartLocale.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/src/kartLocale.cpp -------------------------------------------------------------------------------- /src/starthack.s: -------------------------------------------------------------------------------- 1 | # haha another file without code -------------------------------------------------------------------------------- /tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/changes_fmt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/tools/changes_fmt.py -------------------------------------------------------------------------------- /tools/custom/decomp_switch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/tools/custom/decomp_switch.py -------------------------------------------------------------------------------- /tools/custom/struct_creator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/tools/custom/struct_creator.py -------------------------------------------------------------------------------- /tools/decompctx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/tools/decompctx.py -------------------------------------------------------------------------------- /tools/download_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/tools/download_tool.py -------------------------------------------------------------------------------- /tools/ninja_syntax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/tools/ninja_syntax.py -------------------------------------------------------------------------------- /tools/project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/tools/project.py -------------------------------------------------------------------------------- /tools/transform_dep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/tools/transform_dep.py -------------------------------------------------------------------------------- /tools/upload_progress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doldecomp/mkdd/HEAD/tools/upload_progress.py --------------------------------------------------------------------------------