├── .flake8 ├── .gitattributes ├── .github └── workflows │ └── build.yml ├── .gitignore ├── .vscode ├── c_cpp_properties.json ├── key.code-snippets └── settings.json ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── assets ├── dolphin-extract.png └── objdiff.png ├── config └── RK5E01 │ ├── build.sha1 │ ├── config.yml │ ├── ldscript.tpl │ ├── splits.txt │ └── symbols.txt ├── configure.py ├── docs ├── game │ ├── enemies.csv │ └── gimmicks.csv ├── gfl │ └── about.md ├── hexpat │ ├── GFA.hexpat │ ├── bgst.hexpat │ ├── enbin.hexpat │ ├── fdgt.hexpat │ ├── mapbin.hexpat │ └── mneb.hexpat └── libraries.md ├── orig └── RK5E01 │ └── .gitkeep ├── src ├── PowerPC_EABI_Support │ ├── MSL │ │ ├── MSL_C++ │ │ │ ├── MSL_Common │ │ │ │ ├── detail │ │ │ │ │ ├── default_delete.h │ │ │ │ │ └── shared_ptr.h │ │ │ │ ├── ios.cpp │ │ │ │ ├── locale.cpp │ │ │ │ ├── msl_thread.cpp │ │ │ │ ├── type_traits.h │ │ │ │ └── type_traits │ │ │ │ │ ├── _category_function.h │ │ │ │ │ ├── _category_function.t4 │ │ │ │ │ ├── _new_header.h │ │ │ │ │ ├── category.h │ │ │ │ │ ├── integral_constant.h │ │ │ │ │ ├── manip.h │ │ │ │ │ ├── manip_2.h │ │ │ │ │ ├── operation.h │ │ │ │ │ ├── property.h │ │ │ │ │ ├── relationship.h │ │ │ │ │ └── utility.h │ │ │ ├── Metrowerks │ │ │ │ ├── compressed_pair.h │ │ │ │ ├── int2type.h │ │ │ │ ├── move_ptr.h │ │ │ │ ├── type_traits.h │ │ │ │ └── type_traits │ │ │ │ │ ├── call_traits.h │ │ │ │ │ └── intrinsics.h │ │ │ ├── algorithm │ │ │ ├── bitset │ │ │ ├── cassert │ │ │ ├── cctype │ │ │ ├── cerrno │ │ │ ├── cfloat │ │ │ ├── ciso646 │ │ │ ├── climits │ │ │ ├── clocale │ │ │ ├── cmath │ │ │ ├── csetjmp │ │ │ ├── csignal │ │ │ ├── cstdarg │ │ │ ├── cstddef │ │ │ ├── cstdio │ │ │ ├── cstdlib │ │ │ ├── cstring │ │ │ ├── ctime │ │ │ ├── cwchar │ │ │ ├── cwctype │ │ │ ├── deque │ │ │ ├── exception │ │ │ ├── functional │ │ │ ├── ios │ │ │ ├── iosfwd │ │ │ ├── iterator │ │ │ ├── limits │ │ │ ├── locale │ │ │ ├── memory │ │ │ ├── msl_utility │ │ │ ├── new │ │ │ ├── stdexcept │ │ │ ├── string │ │ │ ├── tree │ │ │ ├── typeinfo │ │ │ ├── utility │ │ │ ├── vector │ │ │ └── vector_old │ │ └── MSL_C │ │ │ ├── MSL_Common │ │ │ ├── FILE_POS.h │ │ │ ├── alloc.h │ │ │ ├── ansi_files.h │ │ │ ├── ansi_fp.h │ │ │ ├── arith.c │ │ │ ├── arith.h │ │ │ ├── assert_api.h │ │ │ ├── bool_def.h │ │ │ ├── buffer_io.c │ │ │ ├── buffer_io.h │ │ │ ├── console_io.h │ │ │ ├── ctype_api.h │ │ │ ├── errno.c │ │ │ ├── extras.h │ │ │ ├── file_def.h │ │ │ ├── file_io.h │ │ │ ├── float.c │ │ │ ├── float.h │ │ │ ├── imaxdiv_def.h │ │ │ ├── intmax_def.h │ │ │ ├── intptr_def.h │ │ │ ├── locale_def.h │ │ │ ├── math_api.h │ │ │ ├── mbconvert.h │ │ │ ├── mbstring.h │ │ │ ├── mem.c │ │ │ ├── mem_funcs.h │ │ │ ├── misc_io.h │ │ │ ├── null_def.h │ │ │ ├── printf.h │ │ │ ├── rand.c │ │ │ ├── rand.h │ │ │ ├── restrict_def.h │ │ │ ├── scanf.h │ │ │ ├── secure_error.h │ │ │ ├── size_def.h │ │ │ ├── stdio_api.h │ │ │ ├── string_api.h │ │ │ ├── strtold.h │ │ │ ├── strtoul.h │ │ │ ├── time_def.h │ │ │ ├── va_list_def.h │ │ │ ├── wchar_def.h │ │ │ ├── wchar_io.h │ │ │ ├── wchar_sizes.h │ │ │ ├── wchar_time.h │ │ │ ├── wcstoul.h │ │ │ ├── wctype_api.h │ │ │ ├── wint_def.h │ │ │ ├── wmem.h │ │ │ ├── wprintf.h │ │ │ ├── wscanf.h │ │ │ └── wstring.h │ │ │ ├── MSL_Common_Embedded │ │ │ ├── Math │ │ │ │ └── Double_precision │ │ │ │ │ ├── e_acos.c │ │ │ │ │ ├── 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 │ │ │ │ │ ├── fdlibm.h │ │ │ │ │ ├── k_cos.c │ │ │ │ │ ├── k_rem_pio2.c │ │ │ │ │ ├── k_sin.c │ │ │ │ │ ├── k_tan.c │ │ │ │ │ ├── readme │ │ │ │ │ ├── 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_rint.c │ │ │ │ │ ├── s_sin.c │ │ │ │ │ ├── s_tan.c │ │ │ │ │ ├── w_acos.c │ │ │ │ │ ├── w_asin.c │ │ │ │ │ ├── w_atan2.c │ │ │ │ │ ├── w_exp.c │ │ │ │ │ ├── w_fmod.c │ │ │ │ │ ├── w_log.c │ │ │ │ │ ├── w_log10.c │ │ │ │ │ └── w_pow.c │ │ │ └── UART.h │ │ │ ├── PPC_EABI │ │ │ ├── math_ppc.c │ │ │ └── time.dolphin.c │ │ │ ├── assert.h │ │ │ ├── complex.h │ │ │ ├── ctype.h │ │ │ ├── errno.h │ │ │ ├── fenv.h │ │ │ ├── float.h │ │ │ ├── inttypes.h │ │ │ ├── iso646.h │ │ │ ├── limits.h │ │ │ ├── locale.h │ │ │ ├── math.h │ │ │ ├── setjmp.h │ │ │ ├── signal.h │ │ │ ├── stdarg.h │ │ │ ├── stdbool.h │ │ │ ├── stddef.h │ │ │ ├── stdint.h │ │ │ ├── stdio.h │ │ │ ├── stdlib.h │ │ │ ├── string.h │ │ │ ├── tgmath.h │ │ │ ├── time.h │ │ │ ├── wchar.h │ │ │ └── wctype.h │ ├── MetroTRK │ │ └── custconn │ │ │ └── MWCriticalSection_gc.c │ └── Runtime │ │ ├── Gecko_ExceptionPPC.cpp │ │ ├── Gecko_ExceptionPPC.h │ │ ├── Gecko_setjmp.c │ │ ├── Gecko_setjmp.h │ │ ├── MWCPlusLib.h │ │ ├── MWRTTI.cpp │ │ ├── MWRTTI.h │ │ ├── NMWException.cpp │ │ ├── NMWException.h │ │ ├── New.cpp │ │ ├── __init_cpp_exceptions.cpp │ │ ├── __init_cpp_exceptions.h │ │ ├── __mem.c │ │ ├── __mem.h │ │ ├── __ppc_eabi_init.h │ │ ├── __ppc_eabi_linker.h │ │ ├── __va_arg.c │ │ ├── global_destructor_chain.c │ │ ├── ptmf.c │ │ ├── ptmf.h │ │ ├── runtime.c │ │ └── runtime.h ├── compiler_macros.h ├── fluff │ ├── demo │ │ ├── DemoObject.cpp │ │ ├── DemoObject.h │ │ ├── EventDemoAttachment.h │ │ ├── EventDemoGimmickCommand.h │ │ ├── FlfDemoCtrl.cpp │ │ └── FlfDemoCtrl.h │ ├── env │ │ ├── EnvFadeBase.h │ │ ├── EnvManager.h │ │ ├── EnvObject.cpp │ │ ├── EnvObject.h │ │ ├── EnvParts_PlayGuideIconLocator.cpp │ │ ├── EnvParts_PlayGuideIconLocator.h │ │ ├── EnvUnitBase.cpp │ │ ├── EnvUnitBase.h │ │ ├── EnvUtil_FrameBuffer.h │ │ ├── EnvUtil_State.h │ │ └── PlayerCloneElement.h │ ├── game │ │ ├── Game.cpp │ │ └── Game.h │ ├── graphics │ │ ├── BGSTEntry.h │ │ ├── BGSTEntryInfo.h │ │ ├── BGSTFile.cpp │ │ ├── BGSTFile.h │ │ ├── BGSTHeader.h │ │ ├── BGSTImage.h │ │ ├── BGSTList.cpp │ │ ├── BGSTList.h │ │ ├── BGSTLoadState.h │ │ ├── BgBackImage.cpp │ │ ├── BgBackImage.h │ │ ├── BgImage2.h │ │ ├── Cam.cpp │ │ ├── Cam.h │ │ ├── FB2Tex.cpp │ │ ├── FB2Tex.h │ │ ├── FbAlpha.h │ │ ├── FbDof.h │ │ ├── FbMokoMoko.h │ │ ├── FlfMdlDraw.cpp │ │ ├── FlfMdlDraw.h │ │ ├── FullSortGroup.h │ │ ├── FullSortScene.cpp │ │ ├── FullSortScene.h │ │ ├── GmkMoleHoleRender.h │ │ ├── GmkPartsMdlSet.cpp │ │ ├── GmkPartsMdlSet.h │ │ ├── KeyFrame.h │ │ ├── MoguraLight.h │ │ ├── NURBSSet.h │ │ ├── NwAnm.cpp │ │ ├── NwAnm.h │ │ ├── NwAnmCtrl.cpp │ │ ├── NwAnmCtrl.h │ │ └── PlTransMdl.h │ ├── language │ │ ├── Language.cpp │ │ └── Language.h │ ├── layout │ │ ├── LayoutObject.h │ │ └── LayoutObjectRender.h │ ├── main.cpp │ ├── manager │ │ ├── CameraManager.cpp │ │ ├── CameraManager.h │ │ ├── DemoManager.h │ │ ├── FlfFriendManager.h │ │ ├── GameManager.cpp │ │ ├── GameManager.h │ │ ├── GmkBeadManager.cpp │ │ ├── GmkBeadManager.h │ │ ├── GmkMng.cpp │ │ ├── GmkMng.h │ │ ├── LevelManager.cpp │ │ ├── LevelManager.h │ │ ├── PlayerMdlMng.h │ │ ├── PointerManager.h │ │ ├── Stage.h │ │ ├── StageModCtrlMng.h │ │ ├── StageResourceManager.cpp │ │ ├── StageResourceManager.h │ │ └── WorkManager.h │ ├── mapdata │ │ ├── BGData.h │ │ └── Mapdata.h │ ├── message │ │ └── MessageTagProcessor.h │ ├── misc │ │ └── ScopedPointers.h │ ├── object │ │ ├── EnemyBase.h │ │ ├── FlfFriend.h │ │ ├── FlfGameObj.cpp │ │ ├── FlfGameObj.h │ │ ├── FlfGameObjLocator.cpp │ │ ├── FlfGameObjLocator.h │ │ ├── FlfHandleList.cpp │ │ ├── FlfHandleList.h │ │ ├── FlfHandleObj.cpp │ │ ├── FlfHandleObj.h │ │ ├── Gimmick.cpp │ │ ├── Gimmick.h │ │ ├── GimmickList.h │ │ ├── MoveTarget.h │ │ ├── PlayerBase.h │ │ ├── SpringBase.cpp │ │ ├── SpringBase.h │ │ ├── callback │ │ │ ├── CB_PlayerBase.h │ │ │ └── ScnMdlCallbackBase.h │ │ ├── collision │ │ │ ├── ColData.h │ │ │ ├── ColObj.cpp │ │ │ ├── ColObj.h │ │ │ ├── ColObjTree.h │ │ │ ├── Colbin.h │ │ │ ├── CollisionData.h │ │ │ ├── CollisionEntry.h │ │ │ ├── CollisionInfo.h │ │ │ ├── CollisionTemplate.h │ │ │ ├── FlfMdlCollision.h │ │ │ ├── FlfRideHitBase.cpp │ │ │ ├── FlfRideHitBase.h │ │ │ ├── FlfRideHitCtrlTrans.h │ │ │ ├── IHitSide.h │ │ │ ├── IObjHitCB.h │ │ │ ├── KdTree.cpp │ │ │ ├── KdTree.h │ │ │ ├── KdTreeData.h │ │ │ ├── KdTreeNode.cpp │ │ │ ├── KdTreeNode.h │ │ │ └── ObjHit.h │ │ ├── effect │ │ │ └── EffectObj.h │ │ ├── enemy │ │ │ └── Enemy76.h │ │ ├── friend │ │ │ └── Friend03.h │ │ ├── gimmick │ │ │ ├── GmkAllGetSwitch.cpp │ │ │ ├── GmkAllGetSwitch.h │ │ │ ├── GmkAnimChg.h │ │ │ ├── GmkArrowSign.cpp │ │ │ ├── GmkArrowSign.h │ │ │ ├── GmkBead.h │ │ │ ├── GmkBeadDrop.cpp │ │ │ ├── GmkBeadDrop.h │ │ │ ├── GmkBeadPopItem.cpp │ │ │ ├── GmkBeadPopItem.h │ │ │ ├── GmkCamRectCtrl.cpp │ │ │ ├── GmkCamRectCtrl.h │ │ │ ├── GmkCameraControl.cpp │ │ │ ├── GmkCameraControl.h │ │ │ ├── GmkCandleStick.cpp │ │ │ ├── GmkCandleStick.h │ │ │ ├── GmkCart.h │ │ │ ├── GmkCartBtn.cpp │ │ │ ├── GmkCartBtn.h │ │ │ ├── GmkColAnimCtrl.h │ │ │ ├── GmkColAnimMdl.cpp │ │ │ ├── GmkColAnimMdl.h │ │ │ ├── GmkDecolativeBall.h │ │ │ ├── GmkLamp.h │ │ │ ├── GmkMsCarrierGoal.cpp │ │ │ ├── GmkMsCarrierGoal.h │ │ │ ├── GmkSimpleMdl.cpp │ │ │ ├── GmkSimpleMdl.h │ │ │ ├── GmkSimpleMdlRotZ.h │ │ │ ├── GmkSimpleNurbs.h │ │ │ ├── GmkSunriseCurtain.cpp │ │ │ ├── GmkSunriseCurtain.h │ │ │ ├── GmkTurtle.cpp │ │ │ ├── GmkTurtle.h │ │ │ ├── GmkUnderseaSound.cpp │ │ │ ├── GmkUnderseaSound.h │ │ │ ├── GmkUpdownWater.h │ │ │ ├── GmkVictoryStand.cpp │ │ │ ├── GmkVictoryStand.h │ │ │ ├── GmkWarpExit.cpp │ │ │ ├── GmkWarpExit.h │ │ │ ├── GmkWarpOut.cpp │ │ │ ├── GmkWarpOut.h │ │ │ ├── GmkWoolHook.h │ │ │ ├── GmkWoolRope.cpp │ │ │ └── GmkWoolRope.h │ │ └── wool │ │ │ ├── WoolBaseTask.h │ │ │ └── WoolLinkObj.h │ ├── sound │ │ └── GameSound.h │ ├── stage │ │ ├── StageGraphicResources.h │ │ ├── StageInfo.h │ │ ├── StageModCtrl.h │ │ ├── StageResources.cpp │ │ ├── StageResources.h │ │ └── mission │ │ │ ├── MissionClearChecker.cpp │ │ │ ├── MissionClearChecker.h │ │ │ ├── MissionGameCtrl.h │ │ │ ├── MissionInfo.h │ │ │ ├── MissionUtil.cpp │ │ │ └── MissionUtil.h │ ├── util │ │ ├── BeadDropperInfo.h │ │ ├── BeadUtil.h │ │ ├── ButtonUtil.h │ │ ├── CollisionFlagUtil.cpp │ │ ├── CollisionFlagUtil.h │ │ ├── FullSortSceneUtil.cpp │ │ ├── FullSortSceneUtil.h │ │ ├── GameBuildInfo.h │ │ ├── GeneratorInfo.h │ │ ├── GimmickResource.cpp │ │ ├── GimmickResource.h │ │ ├── GimmickUtil.cpp │ │ ├── GimmickUtil.h │ │ ├── GmkBeadPopItem_Info.h │ │ ├── GraphicsUtil.h │ │ ├── KdTreeUtil.cpp │ │ ├── KdTreeUtil.h │ │ ├── ModelUtil.h │ │ ├── NURBSOption.cpp │ │ ├── NURBSOption.h │ │ ├── NURBSStructures.h │ │ ├── Player.h │ │ ├── ScreenPosition.h │ │ ├── SignatureUtil.cpp │ │ ├── SignatureUtil.h │ │ ├── SimpleMdlCommon.cpp │ │ └── SimpleMdlCommon.h │ └── work │ │ ├── InStageWork.cpp │ │ └── InStageWork.h ├── gfl │ ├── gfl.h │ ├── gflAlloc.cpp │ ├── gflAlloc.h │ ├── gflArray.h │ ├── gflAsyncFileStream.h │ ├── gflBpeDecoderFile.cpp │ ├── gflBpeDecoderFile.h │ ├── gflChecksum.cpp │ ├── gflChecksum.h │ ├── gflConsole.h │ ├── gflCustomRenderObj.cpp │ ├── gflCustomRenderObj.h │ ├── gflDirEntry.h │ ├── gflDirEntryWii.h │ ├── gflError.h │ ├── gflFile.cpp │ ├── gflFile.h │ ├── gflFileSystem.h │ ├── gflFileSystemWii.cpp │ ├── gflFileSystemWii.h │ ├── gflFixedMemoryStream.cpp │ ├── gflFixedMemoryStream.h │ ├── gflFixedString.cpp │ ├── gflFixedString.h │ ├── gflFunctor.h │ ├── gflGfArch.cpp │ ├── gflGfArch.h │ ├── gflGfCompression.cpp │ ├── gflGfCompression.h │ ├── gflHeap.cpp │ ├── gflHeap.h │ ├── gflLinkedList.cpp │ ├── gflLinkedList.h │ ├── gflMemory.cpp │ ├── gflMemory.h │ ├── gflMemoryBase.cpp │ ├── gflMemoryBase.h │ ├── gflMemoryManagement.cpp │ ├── gflMemoryManagement.h │ ├── gflMemoryUtil.cpp │ ├── gflMemoryUtil.h │ ├── gflMisc.h │ ├── gflParam.h │ ├── gflParamBase.cpp │ ├── gflParamReader.cpp │ ├── gflParamReader.h │ ├── gflParamSingleValue.cpp │ ├── gflPointer.h │ ├── gflRenderObj.cpp │ ├── gflRenderObj.h │ ├── gflResArchivedFileInfo.cpp │ ├── gflResArchivedFileInfo.h │ ├── gflResFileInfo.cpp │ ├── gflResFileInfo.h │ ├── gflResInfo.cpp │ ├── gflResInfo.h │ ├── gflSD3DActor.cpp │ ├── gflSD3DActor.h │ ├── gflSD3DActorInner.h │ ├── gflScene.cpp │ ├── gflScene.h │ ├── gflScnMdlWrapper.h │ ├── gflSound.h │ ├── gflSoundArchiveMng.cpp │ ├── gflSoundArchiveMng.h │ ├── gflSoundFadeCtrl.h │ ├── gflSoundHandle.h │ ├── gflSoundHandleInner.cpp │ ├── gflSoundHandleInner.h │ ├── gflSoundQue.h │ ├── gflStream.h │ ├── gflTask.cpp │ ├── gflTask.h │ ├── gflTaskInfo.cpp │ ├── gflTaskInfo.h │ ├── gflTimer.cpp │ ├── gflTimer.h │ ├── gflVec2.h │ ├── gflVec3.h │ └── gfl_types.h ├── hbm │ ├── context_rvl.h │ ├── homebutton │ │ ├── HBMAnmController.cpp │ │ ├── HBMAnmController.hpp │ │ ├── HBMAxSound.cpp │ │ ├── HBMAxSound.hpp │ │ ├── HBMBase.cpp │ │ ├── HBMBase.hpp │ │ ├── HBMCommon.cpp │ │ ├── HBMCommon.hpp │ │ ├── HBMController.cpp │ │ ├── HBMController.hpp │ │ ├── HBMFrameController.cpp │ │ ├── HBMFrameController.hpp │ │ ├── HBMGUIManager.cpp │ │ ├── HBMGUIManager.hpp │ │ ├── HBMRemoteSpk.cpp │ │ └── HBMRemoteSpk.hpp │ ├── nw4hbm │ │ ├── lyt │ │ │ ├── lyt_animation.cpp │ │ │ ├── lyt_animation.hpp │ │ │ ├── lyt_arcResourceAccessor.cpp │ │ │ ├── lyt_arcResourceAccessor.hpp │ │ │ ├── lyt_bounding.cpp │ │ │ ├── lyt_bounding.hpp │ │ │ ├── lyt_common.cpp │ │ │ ├── lyt_common.hpp │ │ │ ├── lyt_drawInfo.cpp │ │ │ ├── lyt_drawInfo.hpp │ │ │ ├── lyt_group.cpp │ │ │ ├── lyt_group.hpp │ │ │ ├── lyt_layout.cpp │ │ │ ├── lyt_layout.hpp │ │ │ ├── lyt_material.cpp │ │ │ ├── lyt_material.hpp │ │ │ ├── lyt_pane.cpp │ │ │ ├── lyt_pane.hpp │ │ │ ├── lyt_picture.cpp │ │ │ ├── lyt_picture.hpp │ │ │ ├── lyt_resourceAccessor.cpp │ │ │ ├── lyt_resourceAccessor.hpp │ │ │ ├── lyt_textBox.cpp │ │ │ ├── lyt_textBox.hpp │ │ │ ├── lyt_types.cpp │ │ │ ├── lyt_types.hpp │ │ │ ├── lyt_window.cpp │ │ │ └── lyt_window.hpp │ │ ├── math │ │ │ ├── math_arithmetic.cpp │ │ │ ├── math_arithmetic.hpp │ │ │ ├── math_equation.cpp │ │ │ ├── math_equation.hpp │ │ │ ├── math_triangular.cpp │ │ │ ├── math_triangular.hpp │ │ │ ├── math_types.cpp │ │ │ └── math_types.hpp │ │ └── ut │ │ │ ├── ut_CharStrmReader.cpp │ │ │ ├── ut_CharStrmReader.hpp │ │ │ ├── ut_CharWriter.cpp │ │ │ ├── ut_CharWriter.hpp │ │ │ ├── ut_Color.cpp │ │ │ ├── ut_Color.hpp │ │ │ ├── ut_Font.cpp │ │ │ ├── ut_Font.hpp │ │ │ ├── ut_LinkList.cpp │ │ │ ├── ut_LinkList.hpp │ │ │ ├── ut_Rect.cpp │ │ │ ├── ut_Rect.hpp │ │ │ ├── ut_ResFont.cpp │ │ │ ├── ut_ResFont.hpp │ │ │ ├── ut_ResFontBase.cpp │ │ │ ├── ut_ResFontBase.hpp │ │ │ ├── ut_RuntimeTypeInfo.cpp │ │ │ ├── ut_RuntimeTypeInfo.hpp │ │ │ ├── ut_TagProcessorBase.cpp │ │ │ ├── ut_TagProcessorBase.hpp │ │ │ ├── ut_TextWriterBase.cpp │ │ │ ├── ut_TextWriterBase.hpp │ │ │ ├── ut_binaryFileFormat.cpp │ │ │ ├── ut_binaryFileFormat.hpp │ │ │ ├── ut_inlines.cpp │ │ │ ├── ut_inlines.hpp │ │ │ ├── ut_list.cpp │ │ │ └── ut_list.hpp │ └── sound │ │ ├── mix.cpp │ │ ├── mix.h │ │ ├── seq.cpp │ │ ├── seq.h │ │ ├── syn.cpp │ │ ├── syn.h │ │ ├── synctrl.cpp │ │ ├── synctrl.h │ │ ├── synenv.cpp │ │ ├── synenv.h │ │ ├── synmix.cpp │ │ ├── synmix.h │ │ ├── synpitch.cpp │ │ ├── synpitch.h │ │ ├── synsample.cpp │ │ ├── synsample.h │ │ ├── synvoice.cpp │ │ └── synvoice.h ├── macros.h ├── nw4r │ ├── ef.h │ ├── ef │ │ ├── drawstrategy │ │ │ ├── ef_drawbillboardstrategy.h │ │ │ ├── ef_drawdirectionalstrategy.h │ │ │ ├── ef_drawfreestrategy.cpp │ │ │ ├── ef_drawfreestrategy.h │ │ │ ├── ef_drawlinestrategy.cpp │ │ │ ├── ef_drawlinestrategy.h │ │ │ ├── ef_drawpointstrategy.cpp │ │ │ ├── ef_drawpointstrategy.h │ │ │ ├── ef_drawsmoothstripestrategy.h │ │ │ ├── ef_drawstrategybuilder.cpp │ │ │ ├── ef_drawstrategybuilder.h │ │ │ ├── ef_drawstrategyimpl.cpp │ │ │ ├── ef_drawstrategyimpl.h │ │ │ └── ef_drawstripestrategy.h │ │ ├── ef_activitylist.h │ │ ├── ef_animcurve.h │ │ ├── ef_creationqueue.cpp │ │ ├── ef_creationqueue.h │ │ ├── ef_drawinfo.h │ │ ├── ef_draworder.cpp │ │ ├── ef_draworder.h │ │ ├── ef_drawstrategy.h │ │ ├── ef_drawstrategybuilder.cpp │ │ ├── ef_drawstrategybuilder.h │ │ ├── ef_effect.cpp │ │ ├── ef_effect.h │ │ ├── ef_effectsystem.cpp │ │ ├── ef_effectsystem.h │ │ ├── ef_emform.cpp │ │ ├── ef_emitter.cpp │ │ ├── ef_emitter.h │ │ ├── ef_emitterform.cpp │ │ ├── ef_emitterform.h │ │ ├── ef_handle.cpp │ │ ├── ef_handle.h │ │ ├── ef_linkedobject.h │ │ ├── ef_memorymanager.h │ │ ├── ef_memorymanagertmp.h │ │ ├── ef_particle.cpp │ │ ├── ef_particle.h │ │ ├── ef_particlemanager.cpp │ │ ├── ef_particlemanager.h │ │ ├── ef_random.h │ │ ├── ef_referencedobject.h │ │ ├── ef_res_animcurve.h │ │ ├── ef_res_emitter.h │ │ ├── ef_res_texture.h │ │ ├── ef_resource.cpp │ │ ├── ef_resource.h │ │ ├── ef_types.h │ │ ├── ef_util.cpp │ │ ├── ef_util.h │ │ └── emform │ │ │ ├── ef_cube.cpp │ │ │ ├── ef_cube.h │ │ │ ├── ef_cylinder.cpp │ │ │ ├── ef_cylinder.h │ │ │ ├── ef_disc.cpp │ │ │ ├── ef_disc.h │ │ │ ├── ef_emform.cpp │ │ │ ├── ef_emform.h │ │ │ ├── ef_line.cpp │ │ │ ├── ef_line.h │ │ │ ├── ef_point.cpp │ │ │ ├── ef_point.h │ │ │ ├── ef_sphere.cpp │ │ │ ├── ef_sphere.h │ │ │ ├── ef_torus.cpp │ │ │ └── ef_torus.h │ ├── g3d.h │ ├── g3d │ │ ├── g3d_3dsmax.cpp │ │ ├── g3d_3dsmax.h │ │ ├── g3d_anmchr.cpp │ │ ├── g3d_anmchr.h │ │ ├── g3d_anmclr.cpp │ │ ├── g3d_anmclr.h │ │ ├── g3d_anmobj.cpp │ │ ├── g3d_anmobj.h │ │ ├── g3d_anmscn.cpp │ │ ├── g3d_anmscn.h │ │ ├── g3d_anmshp.cpp │ │ ├── g3d_anmshp.h │ │ ├── g3d_anmtexpat.cpp │ │ ├── g3d_anmtexpat.h │ │ ├── g3d_anmtexsrt.cpp │ │ ├── g3d_anmtexsrt.h │ │ ├── g3d_anmvis.cpp │ │ ├── g3d_anmvis.h │ │ ├── g3d_basic.cpp │ │ ├── g3d_basic.h │ │ ├── g3d_calcmaterial.cpp │ │ ├── g3d_calcmaterial.h │ │ ├── g3d_calcview.cpp │ │ ├── g3d_calcview.h │ │ ├── g3d_calcvtx.cpp │ │ ├── g3d_calcvtx.h │ │ ├── g3d_calcworld.cpp │ │ ├── g3d_calcworld.h │ │ ├── g3d_camera.cpp │ │ ├── g3d_camera.h │ │ ├── g3d_dcc.cpp │ │ ├── g3d_dcc.h │ │ ├── g3d_draw.cpp │ │ ├── g3d_draw.h │ │ ├── g3d_draw1mat1shp.cpp │ │ ├── g3d_draw1mat1shp.h │ │ ├── g3d_fog.cpp │ │ ├── g3d_fog.h │ │ ├── g3d_init.cpp │ │ ├── g3d_init.h │ │ ├── g3d_light.cpp │ │ ├── g3d_light.h │ │ ├── g3d_maya.cpp │ │ ├── g3d_maya.h │ │ ├── g3d_obj.cpp │ │ ├── g3d_obj.h │ │ ├── g3d_rtti.h │ │ ├── g3d_scnmdl.cpp │ │ ├── g3d_scnmdl.h │ │ ├── g3d_scnmdl1mat1shp.cpp │ │ ├── g3d_scnmdl1mat1shp.h │ │ ├── g3d_scnmdlsmpl.cpp │ │ ├── g3d_scnmdlsmpl.h │ │ ├── g3d_scnobj.cpp │ │ ├── g3d_scnobj.h │ │ ├── g3d_scnproc.cpp │ │ ├── g3d_scnproc.h │ │ ├── g3d_scnrfl.cpp │ │ ├── g3d_scnrfl.h │ │ ├── g3d_scnroot.cpp │ │ ├── g3d_scnroot.h │ │ ├── g3d_state.cpp │ │ ├── g3d_state.h │ │ ├── g3d_workmem.cpp │ │ ├── g3d_workmem.h │ │ ├── g3d_xsi.cpp │ │ ├── g3d_xsi.h │ │ ├── platform │ │ │ ├── g3d_allocator.h │ │ │ ├── g3d_cpu.cpp │ │ │ ├── g3d_cpu.h │ │ │ ├── g3d_gpu.cpp │ │ │ ├── g3d_gpu.h │ │ │ ├── g3d_tmem.cpp │ │ │ └── g3d_tmem.h │ │ └── res │ │ │ ├── g3d_resanm.cpp │ │ │ ├── g3d_resanm.h │ │ │ ├── g3d_resanmamblight.cpp │ │ │ ├── g3d_resanmamblight.h │ │ │ ├── g3d_resanmcamera.cpp │ │ │ ├── g3d_resanmcamera.h │ │ │ ├── g3d_resanmchr.cpp │ │ │ ├── g3d_resanmchr.h │ │ │ ├── g3d_resanmclr.cpp │ │ │ ├── g3d_resanmclr.h │ │ │ ├── g3d_resanmfog.cpp │ │ │ ├── g3d_resanmfog.h │ │ │ ├── g3d_resanmlight.cpp │ │ │ ├── g3d_resanmlight.h │ │ │ ├── g3d_resanmscn.cpp │ │ │ ├── g3d_resanmscn.h │ │ │ ├── g3d_resanmshp.cpp │ │ │ ├── g3d_resanmshp.h │ │ │ ├── g3d_resanmtexpat.cpp │ │ │ ├── g3d_resanmtexpat.h │ │ │ ├── g3d_resanmtexsrt.cpp │ │ │ ├── g3d_resanmtexsrt.h │ │ │ ├── g3d_resanmvis.cpp │ │ │ ├── g3d_resanmvis.h │ │ │ ├── g3d_rescommon.cpp │ │ │ ├── g3d_rescommon.h │ │ │ ├── g3d_resdict.cpp │ │ │ ├── g3d_resdict.h │ │ │ ├── g3d_resfile.cpp │ │ │ ├── g3d_resfile.h │ │ │ ├── g3d_reslightset.cpp │ │ │ ├── g3d_reslightset.h │ │ │ ├── g3d_resmat.cpp │ │ │ ├── g3d_resmat.h │ │ │ ├── g3d_resmdl.cpp │ │ │ ├── g3d_resmdl.h │ │ │ ├── g3d_resnode.cpp │ │ │ ├── g3d_resnode.h │ │ │ ├── g3d_respltt.h │ │ │ ├── g3d_resshp.cpp │ │ │ ├── g3d_resshp.h │ │ │ ├── g3d_restev.cpp │ │ │ ├── g3d_restev.h │ │ │ ├── g3d_restex.cpp │ │ │ ├── g3d_restex.h │ │ │ ├── g3d_resvtx.cpp │ │ │ └── g3d_resvtx.h │ ├── lyt.h │ ├── lyt │ │ ├── lyt_animation.cpp │ │ ├── lyt_animation.h │ │ ├── lyt_arcResourceAccessor.cpp │ │ ├── lyt_arcResourceAccessor.h │ │ ├── lyt_bounding.cpp │ │ ├── lyt_bounding.h │ │ ├── lyt_common.cpp │ │ ├── lyt_common.h │ │ ├── lyt_drawInfo.cpp │ │ ├── lyt_drawInfo.h │ │ ├── lyt_group.cpp │ │ ├── lyt_group.h │ │ ├── lyt_init.cpp │ │ ├── lyt_init.h │ │ ├── lyt_layout.cpp │ │ ├── lyt_layout.h │ │ ├── lyt_material.cpp │ │ ├── lyt_material.h │ │ ├── lyt_pane.cpp │ │ ├── lyt_pane.h │ │ ├── lyt_picture.cpp │ │ ├── lyt_picture.h │ │ ├── lyt_resourceAccessor.cpp │ │ ├── lyt_resourceAccessor.h │ │ ├── lyt_resources.h │ │ ├── lyt_texMap.cpp │ │ ├── lyt_texMap.h │ │ ├── lyt_textBox.cpp │ │ ├── lyt_textBox.h │ │ ├── lyt_types.h │ │ ├── lyt_window.cpp │ │ └── lyt_window.h │ ├── math.h │ ├── math │ │ ├── math_arithmetic.cpp │ │ ├── math_arithmetic.h │ │ ├── math_constant.h │ │ ├── math_geometry.cpp │ │ ├── math_geometry.h │ │ ├── math_triangular.cpp │ │ ├── math_triangular.h │ │ ├── math_types.cpp │ │ └── math_types.h │ ├── snd.h │ ├── snd │ │ ├── snd_AnimSound.cpp │ │ ├── snd_AxManager.cpp │ │ ├── snd_AxManager.h │ │ ├── snd_AxVoice.cpp │ │ ├── snd_AxVoice.h │ │ ├── snd_AxVoiceManager.cpp │ │ ├── snd_AxVoiceManager.h │ │ ├── snd_AxfxImpl.cpp │ │ ├── snd_AxfxImpl.h │ │ ├── snd_Bank.cpp │ │ ├── snd_Bank.h │ │ ├── snd_BankFile.cpp │ │ ├── snd_BankFile.h │ │ ├── snd_BasicPlayer.cpp │ │ ├── snd_BasicPlayer.h │ │ ├── snd_BasicSound.cpp │ │ ├── snd_BasicSound.h │ │ ├── snd_Channel.cpp │ │ ├── snd_Channel.h │ │ ├── snd_ChannelManager.h │ │ ├── snd_DisposeCallback.h │ │ ├── snd_DisposeCallbackManager.cpp │ │ ├── snd_DisposeCallbackManager.h │ │ ├── snd_DvdSoundArchive.cpp │ │ ├── snd_DvdSoundArchive.h │ │ ├── snd_EnvGenerator.cpp │ │ ├── snd_EnvGenerator.h │ │ ├── snd_ExternalSoundPlayer.cpp │ │ ├── snd_ExternalSoundPlayer.h │ │ ├── snd_FrameHeap.cpp │ │ ├── snd_FrameHeap.h │ │ ├── snd_FxBase.h │ │ ├── snd_FxChorus.cpp │ │ ├── snd_FxChorus.h │ │ ├── snd_FxDelay.cpp │ │ ├── snd_FxDelay.h │ │ ├── snd_FxReverbHi.cpp │ │ ├── snd_FxReverbHi.h │ │ ├── snd_FxReverbHiDpl2.cpp │ │ ├── snd_FxReverbHiDpl2.h │ │ ├── snd_InstancePool.cpp │ │ ├── snd_InstancePool.h │ │ ├── snd_Lfo.cpp │ │ ├── snd_Lfo.h │ │ ├── snd_MemorySoundArchive.cpp │ │ ├── snd_MemorySoundArchive.h │ │ ├── snd_MidiSeqPlayer.cpp │ │ ├── snd_MmlParser.cpp │ │ ├── snd_MmlParser.h │ │ ├── snd_MmlSeqTrack.cpp │ │ ├── snd_MmlSeqTrack.h │ │ ├── snd_MmlSeqTrackAllocator.cpp │ │ ├── snd_MmlSeqTrackAllocator.h │ │ ├── snd_MoveValue.h │ │ ├── snd_NandSoundArchive.cpp │ │ ├── snd_NandSoundArchive.h │ │ ├── snd_NoteOnCallback.h │ │ ├── snd_PlayerHeap.h │ │ ├── snd_RemoteSpeaker.cpp │ │ ├── snd_RemoteSpeaker.h │ │ ├── snd_RemoteSpeakerManager.cpp │ │ ├── snd_RemoteSpeakerManager.h │ │ ├── snd_SeqFile.cpp │ │ ├── snd_SeqFile.h │ │ ├── snd_SeqPlayer.cpp │ │ ├── snd_SeqPlayer.h │ │ ├── snd_SeqSound.cpp │ │ ├── snd_SeqSound.h │ │ ├── snd_SeqSoundHandle.cpp │ │ ├── snd_SeqSoundHandle.h │ │ ├── snd_SeqTrack.cpp │ │ ├── snd_SeqTrack.h │ │ ├── snd_SeqTrackAllocator.h │ │ ├── snd_Sound3DActor.cpp │ │ ├── snd_Sound3DActor.h │ │ ├── snd_Sound3DListener.cpp │ │ ├── snd_Sound3DListener.h │ │ ├── snd_Sound3DManager.cpp │ │ ├── snd_Sound3DManager.h │ │ ├── snd_SoundActor.cpp │ │ ├── snd_SoundActor.h │ │ ├── snd_SoundArchive.cpp │ │ ├── snd_SoundArchive.h │ │ ├── snd_SoundArchiveFile.cpp │ │ ├── snd_SoundArchiveFile.h │ │ ├── snd_SoundArchiveLoader.cpp │ │ ├── snd_SoundArchiveLoader.h │ │ ├── snd_SoundArchivePlayer.cpp │ │ ├── snd_SoundArchivePlayer.h │ │ ├── snd_SoundHandle.cpp │ │ ├── snd_SoundHandle.h │ │ ├── snd_SoundHeap.cpp │ │ ├── snd_SoundHeap.h │ │ ├── snd_SoundInstanceManager.h │ │ ├── snd_SoundMemoryAllocatable.h │ │ ├── snd_SoundPlayer.cpp │ │ ├── snd_SoundPlayer.h │ │ ├── snd_SoundStartable.cpp │ │ ├── snd_SoundStartable.h │ │ ├── snd_SoundSystem.cpp │ │ ├── snd_SoundSystem.h │ │ ├── snd_SoundThread.cpp │ │ ├── snd_SoundThread.h │ │ ├── snd_StrmChannel.cpp │ │ ├── snd_StrmChannel.h │ │ ├── snd_StrmFile.cpp │ │ ├── snd_StrmFile.h │ │ ├── snd_StrmPlayer.cpp │ │ ├── snd_StrmPlayer.h │ │ ├── snd_StrmSound.cpp │ │ ├── snd_StrmSound.h │ │ ├── snd_StrmSoundHandle.cpp │ │ ├── snd_StrmSoundHandle.h │ │ ├── snd_Task.cpp │ │ ├── snd_Task.h │ │ ├── snd_TaskManager.cpp │ │ ├── snd_TaskManager.h │ │ ├── snd_TaskThread.cpp │ │ ├── snd_TaskThread.h │ │ ├── snd_Types.h │ │ ├── snd_Util.cpp │ │ ├── snd_Util.h │ │ ├── snd_Voice.cpp │ │ ├── snd_Voice.h │ │ ├── snd_VoiceManager.cpp │ │ ├── snd_VoiceManager.h │ │ ├── snd_WaveFile.cpp │ │ ├── snd_WaveFile.h │ │ ├── snd_WaveSound.cpp │ │ ├── snd_WaveSound.h │ │ ├── snd_WaveSoundHandle.cpp │ │ ├── snd_WaveSoundHandle.h │ │ ├── snd_WsdFile.cpp │ │ ├── snd_WsdFile.h │ │ ├── snd_WsdPlayer.cpp │ │ ├── snd_WsdPlayer.h │ │ ├── snd_adpcm.cpp │ │ └── snd_adpcm.h │ ├── types_nw4r.h │ ├── ut.h │ └── ut │ │ ├── ut_CharStrmReader.cpp │ │ ├── ut_CharStrmReader.h │ │ ├── ut_CharWriter.cpp │ │ ├── ut_CharWriter.h │ │ ├── ut_Color.h │ │ ├── ut_DvdFileStream.cpp │ │ ├── ut_DvdFileStream.h │ │ ├── ut_DvdLockedFileStream.cpp │ │ ├── ut_DvdLockedFileStream.h │ │ ├── ut_FileStream.cpp │ │ ├── ut_FileStream.h │ │ ├── ut_Font.cpp │ │ ├── ut_Font.h │ │ ├── ut_IOStream.cpp │ │ ├── ut_IOStream.h │ │ ├── ut_LinkList.cpp │ │ ├── ut_LinkList.h │ │ ├── ut_LockedCache.cpp │ │ ├── ut_LockedCache.h │ │ ├── ut_NandFileStream.cpp │ │ ├── ut_NandFileStream.h │ │ ├── ut_NonCopyable.h │ │ ├── ut_Rect.h │ │ ├── ut_ResFont.cpp │ │ ├── ut_ResFont.h │ │ ├── ut_ResFontBase.cpp │ │ ├── ut_ResFontBase.h │ │ ├── ut_RomFont.cpp │ │ ├── ut_RomFont.h │ │ ├── ut_RuntimeTypeInfo.h │ │ ├── ut_TagProcessor.h │ │ ├── ut_TagProcessorBase.cpp │ │ ├── ut_TagProcessorBase.h │ │ ├── ut_TextWriter.h │ │ ├── ut_TextWriterBase.cpp │ │ ├── ut_TextWriterBase.h │ │ ├── ut_WideTagProcessor.h │ │ ├── ut_WideTextWriter.h │ │ ├── ut_algorithm.h │ │ ├── ut_binaryFileFormat.cpp │ │ ├── ut_binaryFileFormat.h │ │ ├── ut_list.cpp │ │ ├── ut_list.h │ │ └── ut_lock.h ├── revolution │ ├── AI.h │ ├── AI │ │ ├── ai.c │ │ ├── ai.h │ │ └── ai_hardware.h │ ├── ARC.h │ ├── ARC │ │ ├── arc.c │ │ └── arc.h │ ├── AX.h │ ├── AX │ │ ├── AX.c │ │ ├── AX.h │ │ ├── AXAlloc.c │ │ ├── AXAlloc.h │ │ ├── AXAux.c │ │ ├── AXAux.h │ │ ├── AXCL.c │ │ ├── AXCL.h │ │ ├── AXComp.c │ │ ├── AXComp.h │ │ ├── AXOut.c │ │ ├── AXOut.h │ │ ├── AXPB.h │ │ ├── AXProf.c │ │ ├── AXProf.h │ │ ├── AXSPB.c │ │ ├── AXSPB.h │ │ ├── AXVPB.c │ │ ├── AXVPB.h │ │ ├── DSPCode.c │ │ └── DSPCode.h │ ├── AXFX.h │ ├── AXFX │ │ ├── AXFXChorus.c │ │ ├── AXFXChorus.h │ │ ├── AXFXChorusExp.h │ │ ├── AXFXCommon.h │ │ ├── AXFXDelay.c │ │ ├── AXFXDelay.h │ │ ├── AXFXHooks.c │ │ ├── AXFXHooks.h │ │ ├── AXFXLfoTable.c │ │ ├── AXFXLfoTable.h │ │ ├── AXFXReverbHi.c │ │ ├── AXFXReverbHi.h │ │ ├── AXFXReverbHiDpl2.c │ │ ├── AXFXReverbHiDpl2.h │ │ ├── AXFXReverbHiExp.h │ │ ├── AXFXReverbHiExpDpl2.h │ │ ├── AXFXSrcCoef.c │ │ └── AXFXSrcCoef.h │ ├── BASE.h │ ├── BASE │ │ ├── PPCArch.c │ │ └── PPCArch.h │ ├── CARD.h │ ├── CARD │ │ └── CARD.h │ ├── CNT.h │ ├── CNT │ │ ├── cnt.c │ │ └── cnt.h │ ├── DB.h │ ├── DB │ │ ├── db.c │ │ └── db.h │ ├── DSP.h │ ├── DSP │ │ ├── dsp.c │ │ ├── dsp.h │ │ ├── dsp_debug.c │ │ ├── dsp_debug.h │ │ ├── dsp_hardware.h │ │ ├── dsp_task.c │ │ └── dsp_task.h │ ├── DVD.h │ ├── DVD │ │ ├── dvd.c │ │ ├── dvd.h │ │ ├── dvdFatal.c │ │ ├── dvd_broadway.c │ │ ├── dvd_broadway.h │ │ ├── dvderror.c │ │ ├── dvderror.h │ │ ├── dvdfatal.h │ │ ├── dvdfs.c │ │ ├── dvdfs.h │ │ ├── dvdidutils.c │ │ ├── dvdidutils.h │ │ ├── dvdqueue.c │ │ └── dvdqueue.h │ ├── ESP.h │ ├── ESP │ │ ├── esp.c │ │ └── esp.h │ ├── EUART.h │ ├── EUART │ │ ├── euart.c │ │ └── euart.h │ ├── EXI.h │ ├── EXI │ │ ├── EXIBios.c │ │ ├── EXIBios.h │ │ ├── EXICommon.c │ │ ├── EXICommon.h │ │ ├── EXIHardware.h │ │ ├── EXIUart.c │ │ └── EXIUart.h │ ├── FS.h │ ├── FS │ │ ├── fs.c │ │ └── fs.h │ ├── GX.h │ ├── GX │ │ ├── GXAttr.c │ │ ├── GXAttr.h │ │ ├── GXBump.c │ │ ├── GXBump.h │ │ ├── GXDisplayList.c │ │ ├── GXDisplayList.h │ │ ├── GXDraw.c │ │ ├── GXDraw.h │ │ ├── GXFifo.h │ │ ├── GXFrameBuf.h │ │ ├── GXGeometry.c │ │ ├── GXGeometry.h │ │ ├── GXHardware.h │ │ ├── GXHardwareBP.h │ │ ├── GXHardwareCP.h │ │ ├── GXHardwareXF.h │ │ ├── GXInit.h │ │ ├── GXInternal.h │ │ ├── GXLight.c │ │ ├── GXLight.h │ │ ├── GXMisc.h │ │ ├── GXPixel.c │ │ ├── GXPixel.h │ │ ├── GXTev.h │ │ ├── GXTexture.h │ │ ├── GXTransform.c │ │ ├── GXTransform.h │ │ ├── GXTypes.h │ │ └── GXVert.h │ ├── HBM.h │ ├── HBM │ │ ├── HBMCommon.h │ │ └── HBMConfig.h │ ├── IPC.h │ ├── IPC │ │ ├── ipcMain.c │ │ ├── ipcMain.h │ │ ├── ipcProfile.c │ │ ├── ipcProfile.h │ │ ├── ipcclt.c │ │ ├── ipcclt.h │ │ ├── memory.c │ │ └── memory.h │ ├── KPAD.h │ ├── KPAD │ │ └── KPAD.h │ ├── MEM.h │ ├── MEM │ │ ├── mem_allocator.c │ │ ├── mem_allocator.h │ │ ├── mem_expHeap.c │ │ ├── mem_expHeap.h │ │ ├── mem_frameHeap.c │ │ ├── mem_frameHeap.h │ │ ├── mem_heapCommon.c │ │ ├── mem_heapCommon.h │ │ ├── mem_list.c │ │ └── mem_list.h │ ├── MTX.h │ ├── MTX │ │ ├── mtx.h │ │ ├── mtx44.c │ │ ├── mtx44.h │ │ ├── mtxvec.c │ │ ├── mtxvec.h │ │ ├── quat.c │ │ ├── quat.h │ │ ├── vec.c │ │ └── vec.h │ ├── NAND.h │ ├── NAND │ │ ├── NANDCheck.c │ │ ├── NANDCheck.h │ │ ├── NANDCore.c │ │ ├── NANDCore.h │ │ ├── NANDOpenClose.c │ │ ├── NANDOpenClose.h │ │ ├── nand.c │ │ └── nand.h │ ├── NWC24.h │ ├── NWC24 │ │ ├── NWC24Config.c │ │ ├── NWC24Config.h │ │ ├── NWC24DateParser.h │ │ ├── NWC24Download.c │ │ ├── NWC24Download.h │ │ ├── NWC24FileApi.c │ │ ├── NWC24FileApi.h │ │ ├── NWC24FriendList.c │ │ ├── NWC24FriendList.h │ │ ├── NWC24Ipc.c │ │ ├── NWC24Ipc.h │ │ ├── NWC24MBoxCtrl.h │ │ ├── NWC24Manage.c │ │ ├── NWC24Manage.h │ │ ├── NWC24Mime.h │ │ ├── NWC24MsgCommit.h │ │ ├── NWC24MsgObj.c │ │ ├── NWC24MsgObj.h │ │ ├── NWC24Parser.c │ │ ├── NWC24Parser.h │ │ ├── NWC24Schedule.c │ │ ├── NWC24Schedule.h │ │ ├── NWC24SecretFList.c │ │ ├── NWC24SecretFList.h │ │ ├── NWC24StdApi.h │ │ ├── NWC24System.c │ │ ├── NWC24System.h │ │ ├── NWC24Time.c │ │ ├── NWC24Time.h │ │ ├── NWC24Types.h │ │ ├── NWC24Utils.c │ │ └── NWC24Utils.h │ ├── NdevExi2AD.h │ ├── NdevExi2AD │ │ ├── DebuggerDriver.c │ │ ├── DebuggerDriver.h │ │ ├── ODEMU.h │ │ ├── exi2.c │ │ └── exi2.h │ ├── OS │ │ ├── OS.c │ │ ├── OS.h │ │ ├── OSAddress.h │ │ ├── OSAlarm.c │ │ ├── OSAlarm.h │ │ ├── OSAlloc.c │ │ ├── OSAlloc.h │ │ ├── OSArena.c │ │ ├── OSArena.h │ │ ├── OSAudioSystem.c │ │ ├── OSAudioSystem.h │ │ ├── OSCache.c │ │ ├── OSCache.h │ │ ├── OSContext.c │ │ ├── OSContext.h │ │ ├── OSError.c │ │ ├── OSError.h │ │ ├── OSExec.c │ │ ├── OSExec.h │ │ ├── OSFastCast.h │ │ ├── OSFatal.c │ │ ├── OSFatal.h │ │ ├── OSFont.c │ │ ├── OSFont.h │ │ ├── OSHardware.h │ │ ├── OSInterrupt.c │ │ ├── OSInterrupt.h │ │ ├── OSIpc.c │ │ ├── OSIpc.h │ │ ├── OSLink.c │ │ ├── OSLink.h │ │ ├── OSMemory.c │ │ ├── OSMemory.h │ │ ├── OSMessage.c │ │ ├── OSMessage.h │ │ ├── OSMutex.c │ │ ├── OSMutex.h │ │ ├── OSNet.c │ │ ├── OSNet.h │ │ ├── OSPlayRecord.c │ │ ├── OSPlayRecord.h │ │ ├── OSReset.c │ │ ├── OSReset.h │ │ ├── OSRtc.c │ │ ├── OSRtc.h │ │ ├── OSStateFlags.c │ │ ├── OSStateFlags.h │ │ ├── OSStateTM.c │ │ ├── OSStateTM.h │ │ ├── OSSync.c │ │ ├── OSSync.h │ │ ├── OSThread.c │ │ ├── OSThread.h │ │ ├── OSTime.c │ │ ├── OSTime.h │ │ ├── OSUtf.c │ │ ├── OSUtf.h │ │ ├── __ppc_eabi_init.c │ │ ├── __ppc_eabi_init.h │ │ └── __start.c │ ├── PAD.h │ ├── PAD │ │ ├── Pad.c │ │ └── Pad.h │ ├── SC.h │ ├── SC │ │ ├── scapi.c │ │ ├── scapi.h │ │ ├── scapi_prdinfo.c │ │ ├── scapi_prdinfo.h │ │ ├── scsystem.c │ │ └── scsystem.h │ ├── SI.h │ ├── SI │ │ ├── SIBios.c │ │ ├── SIBios.h │ │ ├── SIHardware.h │ │ ├── SISamplingRate.c │ │ └── SISamplingRate.h │ ├── TPL.h │ ├── TPL │ │ ├── TPL.c │ │ └── TPL.h │ ├── USB.h │ ├── USB │ │ ├── usb.c │ │ └── usb.h │ ├── VF.h │ ├── VF │ │ └── d_vf.h │ ├── VI.h │ ├── VI │ │ ├── vi.h │ │ ├── vi3in1.h │ │ └── vihardware.h │ ├── WENC.h │ ├── WENC │ │ ├── wenc.c │ │ └── wenc.h │ ├── WPAD.h │ ├── WPAD │ │ ├── WPAD.c │ │ ├── WPAD.h │ │ ├── WPADEncrypt.c │ │ ├── WPADEncrypt.h │ │ ├── WPADHIDParser.c │ │ ├── WPADHIDParser.h │ │ ├── WPADMem.c │ │ ├── WPADMem.h │ │ ├── WUD.c │ │ ├── WUD.h │ │ ├── WUDHidHost.c │ │ ├── WUDHidHost.h │ │ ├── context_rvl.h │ │ ├── lint.c │ │ └── lint.h │ ├── WPADMem.h │ ├── WUD.h │ ├── context_bte.h │ ├── macros.h │ ├── os.h │ └── types.h └── types.h ├── todo └── unlinked.csv └── tools ├── __init__.py ├── changes_fmt.py ├── decompctx.py ├── download_tool.py ├── ninja_syntax.py ├── project.py ├── transform_dep.py └── upload_progress.py /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/.flake8 -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /.vscode/key.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/.vscode/key.code-snippets -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/README.md -------------------------------------------------------------------------------- /assets/dolphin-extract.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/assets/dolphin-extract.png -------------------------------------------------------------------------------- /assets/objdiff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/assets/objdiff.png -------------------------------------------------------------------------------- /config/RK5E01/build.sha1: -------------------------------------------------------------------------------- 1 | f4280a2b0709bfde4132be22e9f7fa8ecfa2a130 build/RK5E01/main.dol 2 | -------------------------------------------------------------------------------- /config/RK5E01/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/config/RK5E01/config.yml -------------------------------------------------------------------------------- /config/RK5E01/ldscript.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/config/RK5E01/ldscript.tpl -------------------------------------------------------------------------------- /config/RK5E01/splits.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/config/RK5E01/splits.txt -------------------------------------------------------------------------------- /config/RK5E01/symbols.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/config/RK5E01/symbols.txt -------------------------------------------------------------------------------- /configure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/configure.py -------------------------------------------------------------------------------- /docs/game/enemies.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/docs/game/enemies.csv -------------------------------------------------------------------------------- /docs/game/gimmicks.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/docs/game/gimmicks.csv -------------------------------------------------------------------------------- /docs/gfl/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/docs/gfl/about.md -------------------------------------------------------------------------------- /docs/hexpat/GFA.hexpat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/docs/hexpat/GFA.hexpat -------------------------------------------------------------------------------- /docs/hexpat/bgst.hexpat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/docs/hexpat/bgst.hexpat -------------------------------------------------------------------------------- /docs/hexpat/enbin.hexpat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/docs/hexpat/enbin.hexpat -------------------------------------------------------------------------------- /docs/hexpat/fdgt.hexpat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/docs/hexpat/fdgt.hexpat -------------------------------------------------------------------------------- /docs/hexpat/mapbin.hexpat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/docs/hexpat/mapbin.hexpat -------------------------------------------------------------------------------- /docs/hexpat/mneb.hexpat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/docs/hexpat/mneb.hexpat -------------------------------------------------------------------------------- /docs/libraries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/docs/libraries.md -------------------------------------------------------------------------------- /orig/RK5E01/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/PowerPC_EABI_Support/MSL/MSL_C/MSL_Common/errno.c: -------------------------------------------------------------------------------- 1 | int errno; 2 | -------------------------------------------------------------------------------- /src/PowerPC_EABI_Support/MSL/MSL_C/PPC_EABI/math_ppc.c: -------------------------------------------------------------------------------- 1 | void nan(const char* x) {return;} 2 | -------------------------------------------------------------------------------- /src/compiler_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/compiler_macros.h -------------------------------------------------------------------------------- /src/fluff/demo/DemoObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/fluff/demo/DemoObject.cpp -------------------------------------------------------------------------------- /src/fluff/demo/DemoObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/fluff/demo/DemoObject.h -------------------------------------------------------------------------------- /src/fluff/demo/FlfDemoCtrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/fluff/demo/FlfDemoCtrl.cpp -------------------------------------------------------------------------------- /src/fluff/demo/FlfDemoCtrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/fluff/demo/FlfDemoCtrl.h -------------------------------------------------------------------------------- /src/fluff/env/EnvFadeBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/fluff/env/EnvFadeBase.h -------------------------------------------------------------------------------- /src/fluff/env/EnvManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/fluff/env/EnvManager.h -------------------------------------------------------------------------------- /src/fluff/env/EnvObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/fluff/env/EnvObject.cpp -------------------------------------------------------------------------------- /src/fluff/env/EnvObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/fluff/env/EnvObject.h -------------------------------------------------------------------------------- /src/fluff/env/EnvUnitBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/fluff/env/EnvUnitBase.cpp -------------------------------------------------------------------------------- /src/fluff/env/EnvUnitBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/fluff/env/EnvUnitBase.h -------------------------------------------------------------------------------- /src/fluff/env/EnvUtil_State.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/fluff/env/EnvUtil_State.h -------------------------------------------------------------------------------- /src/fluff/env/PlayerCloneElement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/fluff/env/PlayerCloneElement.h -------------------------------------------------------------------------------- /src/fluff/game/Game.cpp: -------------------------------------------------------------------------------- 1 | #include "game/Game.h" -------------------------------------------------------------------------------- /src/fluff/game/Game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/fluff/game/Game.h -------------------------------------------------------------------------------- /src/fluff/graphics/BGSTEntry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/fluff/graphics/BGSTEntry.h -------------------------------------------------------------------------------- /src/fluff/graphics/BGSTEntryInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/fluff/graphics/BGSTEntryInfo.h -------------------------------------------------------------------------------- /src/fluff/graphics/BGSTFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/fluff/graphics/BGSTFile.cpp -------------------------------------------------------------------------------- /src/fluff/graphics/BGSTFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/fluff/graphics/BGSTFile.h -------------------------------------------------------------------------------- /src/fluff/graphics/BGSTHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/fluff/graphics/BGSTHeader.h -------------------------------------------------------------------------------- /src/fluff/graphics/BGSTImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/fluff/graphics/BGSTImage.h -------------------------------------------------------------------------------- /src/fluff/graphics/BGSTList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/fluff/graphics/BGSTList.cpp -------------------------------------------------------------------------------- /src/fluff/graphics/BGSTList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/fluff/graphics/BGSTList.h -------------------------------------------------------------------------------- /src/fluff/graphics/BGSTLoadState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/fluff/graphics/BGSTLoadState.h -------------------------------------------------------------------------------- /src/fluff/graphics/BgBackImage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/fluff/graphics/BgBackImage.cpp -------------------------------------------------------------------------------- /src/fluff/graphics/BgBackImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/fluff/graphics/BgBackImage.h -------------------------------------------------------------------------------- /src/fluff/graphics/BgImage2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/fluff/graphics/BgImage2.h -------------------------------------------------------------------------------- /src/fluff/graphics/Cam.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/fluff/graphics/Cam.cpp -------------------------------------------------------------------------------- /src/fluff/graphics/Cam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/fluff/graphics/Cam.h -------------------------------------------------------------------------------- /src/fluff/graphics/FB2Tex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/fluff/graphics/FB2Tex.cpp -------------------------------------------------------------------------------- /src/fluff/graphics/FB2Tex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/fluff/graphics/FB2Tex.h -------------------------------------------------------------------------------- /src/fluff/graphics/FbAlpha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/fluff/graphics/FbAlpha.h -------------------------------------------------------------------------------- /src/fluff/graphics/FbDof.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/fluff/graphics/FbDof.h -------------------------------------------------------------------------------- /src/fluff/graphics/FbMokoMoko.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/fluff/graphics/FbMokoMoko.h -------------------------------------------------------------------------------- /src/fluff/graphics/FlfMdlDraw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/fluff/graphics/FlfMdlDraw.cpp -------------------------------------------------------------------------------- /src/fluff/graphics/FlfMdlDraw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/fluff/graphics/FlfMdlDraw.h -------------------------------------------------------------------------------- /src/fluff/graphics/FullSortGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/fluff/graphics/FullSortGroup.h -------------------------------------------------------------------------------- /src/fluff/graphics/FullSortScene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/fluff/graphics/FullSortScene.h -------------------------------------------------------------------------------- /src/fluff/graphics/KeyFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/fluff/graphics/KeyFrame.h -------------------------------------------------------------------------------- /src/fluff/graphics/MoguraLight.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/fluff/graphics/MoguraLight.h -------------------------------------------------------------------------------- /src/fluff/graphics/NURBSSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/fluff/graphics/NURBSSet.h -------------------------------------------------------------------------------- /src/fluff/graphics/NwAnm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/fluff/graphics/NwAnm.cpp -------------------------------------------------------------------------------- /src/fluff/graphics/NwAnm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/fluff/graphics/NwAnm.h -------------------------------------------------------------------------------- /src/fluff/graphics/NwAnmCtrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/fluff/graphics/NwAnmCtrl.cpp -------------------------------------------------------------------------------- /src/fluff/graphics/NwAnmCtrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/fluff/graphics/NwAnmCtrl.h -------------------------------------------------------------------------------- /src/fluff/graphics/PlTransMdl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/fluff/graphics/PlTransMdl.h -------------------------------------------------------------------------------- /src/fluff/language/Language.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/fluff/language/Language.cpp -------------------------------------------------------------------------------- /src/fluff/language/Language.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/fluff/language/Language.h -------------------------------------------------------------------------------- /src/fluff/layout/LayoutObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/fluff/layout/LayoutObject.h -------------------------------------------------------------------------------- /src/fluff/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/fluff/main.cpp -------------------------------------------------------------------------------- /src/fluff/manager/CameraManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/fluff/manager/CameraManager.h -------------------------------------------------------------------------------- /src/fluff/manager/DemoManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/fluff/manager/DemoManager.h -------------------------------------------------------------------------------- /src/fluff/manager/GameManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/fluff/manager/GameManager.cpp -------------------------------------------------------------------------------- /src/fluff/manager/GameManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/fluff/manager/GameManager.h -------------------------------------------------------------------------------- /src/fluff/manager/GmkBeadManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/fluff/manager/GmkBeadManager.h -------------------------------------------------------------------------------- /src/fluff/manager/GmkMng.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/fluff/manager/GmkMng.cpp -------------------------------------------------------------------------------- /src/fluff/manager/GmkMng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/fluff/manager/GmkMng.h -------------------------------------------------------------------------------- /src/fluff/manager/LevelManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/fluff/manager/LevelManager.cpp -------------------------------------------------------------------------------- /src/fluff/manager/LevelManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/fluff/manager/LevelManager.h -------------------------------------------------------------------------------- /src/fluff/manager/PlayerMdlMng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/fluff/manager/PlayerMdlMng.h -------------------------------------------------------------------------------- /src/fluff/manager/PointerManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/fluff/manager/PointerManager.h -------------------------------------------------------------------------------- /src/fluff/manager/Stage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/fluff/manager/Stage.h -------------------------------------------------------------------------------- /src/fluff/manager/WorkManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/fluff/manager/WorkManager.h -------------------------------------------------------------------------------- /src/fluff/mapdata/BGData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/fluff/mapdata/BGData.h -------------------------------------------------------------------------------- /src/fluff/mapdata/Mapdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/fluff/mapdata/Mapdata.h -------------------------------------------------------------------------------- /src/fluff/misc/ScopedPointers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/fluff/misc/ScopedPointers.h -------------------------------------------------------------------------------- /src/fluff/object/EnemyBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/fluff/object/EnemyBase.h -------------------------------------------------------------------------------- /src/fluff/object/FlfFriend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/fluff/object/FlfFriend.h -------------------------------------------------------------------------------- /src/fluff/object/FlfGameObj.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/fluff/object/FlfGameObj.cpp -------------------------------------------------------------------------------- /src/fluff/object/FlfGameObj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/fluff/object/FlfGameObj.h -------------------------------------------------------------------------------- /src/fluff/object/FlfHandleList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/fluff/object/FlfHandleList.cpp -------------------------------------------------------------------------------- /src/fluff/object/FlfHandleList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/fluff/object/FlfHandleList.h -------------------------------------------------------------------------------- /src/fluff/object/FlfHandleObj.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/fluff/object/FlfHandleObj.cpp -------------------------------------------------------------------------------- /src/fluff/object/FlfHandleObj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/fluff/object/FlfHandleObj.h -------------------------------------------------------------------------------- /src/fluff/object/Gimmick.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/fluff/object/Gimmick.cpp -------------------------------------------------------------------------------- /src/fluff/object/Gimmick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/fluff/object/Gimmick.h -------------------------------------------------------------------------------- /src/fluff/object/GimmickList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/fluff/object/GimmickList.h -------------------------------------------------------------------------------- /src/fluff/object/MoveTarget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/fluff/object/MoveTarget.h -------------------------------------------------------------------------------- /src/fluff/object/PlayerBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/fluff/object/PlayerBase.h -------------------------------------------------------------------------------- /src/fluff/object/SpringBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/fluff/object/SpringBase.cpp -------------------------------------------------------------------------------- /src/fluff/object/SpringBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/fluff/object/SpringBase.h -------------------------------------------------------------------------------- /src/fluff/object/enemy/Enemy76.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/fluff/object/enemy/Enemy76.h -------------------------------------------------------------------------------- /src/fluff/object/friend/Friend03.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/fluff/object/friend/Friend03.h -------------------------------------------------------------------------------- /src/fluff/object/gimmick/GmkBead.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/fluff/object/gimmick/GmkBead.h -------------------------------------------------------------------------------- /src/fluff/object/gimmick/GmkCart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/fluff/object/gimmick/GmkCart.h -------------------------------------------------------------------------------- /src/fluff/object/gimmick/GmkLamp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/fluff/object/gimmick/GmkLamp.h -------------------------------------------------------------------------------- /src/fluff/sound/GameSound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/fluff/sound/GameSound.h -------------------------------------------------------------------------------- /src/fluff/stage/StageInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/fluff/stage/StageInfo.h -------------------------------------------------------------------------------- /src/fluff/stage/StageModCtrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/fluff/stage/StageModCtrl.h -------------------------------------------------------------------------------- /src/fluff/stage/StageResources.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/fluff/stage/StageResources.cpp -------------------------------------------------------------------------------- /src/fluff/stage/StageResources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/fluff/stage/StageResources.h -------------------------------------------------------------------------------- /src/fluff/util/BeadDropperInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/fluff/util/BeadDropperInfo.h -------------------------------------------------------------------------------- /src/fluff/util/BeadUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/fluff/util/BeadUtil.h -------------------------------------------------------------------------------- /src/fluff/util/ButtonUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/fluff/util/ButtonUtil.h -------------------------------------------------------------------------------- /src/fluff/util/CollisionFlagUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/fluff/util/CollisionFlagUtil.h -------------------------------------------------------------------------------- /src/fluff/util/FullSortSceneUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/fluff/util/FullSortSceneUtil.h -------------------------------------------------------------------------------- /src/fluff/util/GameBuildInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/fluff/util/GameBuildInfo.h -------------------------------------------------------------------------------- /src/fluff/util/GeneratorInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/fluff/util/GeneratorInfo.h -------------------------------------------------------------------------------- /src/fluff/util/GimmickResource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/fluff/util/GimmickResource.cpp -------------------------------------------------------------------------------- /src/fluff/util/GimmickResource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/fluff/util/GimmickResource.h -------------------------------------------------------------------------------- /src/fluff/util/GimmickUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/fluff/util/GimmickUtil.cpp -------------------------------------------------------------------------------- /src/fluff/util/GimmickUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/fluff/util/GimmickUtil.h -------------------------------------------------------------------------------- /src/fluff/util/GraphicsUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/fluff/util/GraphicsUtil.h -------------------------------------------------------------------------------- /src/fluff/util/KdTreeUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/fluff/util/KdTreeUtil.cpp -------------------------------------------------------------------------------- /src/fluff/util/KdTreeUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/fluff/util/KdTreeUtil.h -------------------------------------------------------------------------------- /src/fluff/util/ModelUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/fluff/util/ModelUtil.h -------------------------------------------------------------------------------- /src/fluff/util/NURBSOption.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/fluff/util/NURBSOption.cpp -------------------------------------------------------------------------------- /src/fluff/util/NURBSOption.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/fluff/util/NURBSOption.h -------------------------------------------------------------------------------- /src/fluff/util/NURBSStructures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/fluff/util/NURBSStructures.h -------------------------------------------------------------------------------- /src/fluff/util/Player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/fluff/util/Player.h -------------------------------------------------------------------------------- /src/fluff/util/ScreenPosition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/fluff/util/ScreenPosition.h -------------------------------------------------------------------------------- /src/fluff/util/SignatureUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/fluff/util/SignatureUtil.cpp -------------------------------------------------------------------------------- /src/fluff/util/SignatureUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/fluff/util/SignatureUtil.h -------------------------------------------------------------------------------- /src/fluff/util/SimpleMdlCommon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/fluff/util/SimpleMdlCommon.cpp -------------------------------------------------------------------------------- /src/fluff/util/SimpleMdlCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/fluff/util/SimpleMdlCommon.h -------------------------------------------------------------------------------- /src/fluff/work/InStageWork.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/fluff/work/InStageWork.cpp -------------------------------------------------------------------------------- /src/fluff/work/InStageWork.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/fluff/work/InStageWork.h -------------------------------------------------------------------------------- /src/gfl/gfl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/gfl/gfl.h -------------------------------------------------------------------------------- /src/gfl/gflAlloc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/gfl/gflAlloc.cpp -------------------------------------------------------------------------------- /src/gfl/gflAlloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/gfl/gflAlloc.h -------------------------------------------------------------------------------- /src/gfl/gflArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/gfl/gflArray.h -------------------------------------------------------------------------------- /src/gfl/gflAsyncFileStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/gfl/gflAsyncFileStream.h -------------------------------------------------------------------------------- /src/gfl/gflBpeDecoderFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/gfl/gflBpeDecoderFile.cpp -------------------------------------------------------------------------------- /src/gfl/gflBpeDecoderFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/gfl/gflBpeDecoderFile.h -------------------------------------------------------------------------------- /src/gfl/gflChecksum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/gfl/gflChecksum.cpp -------------------------------------------------------------------------------- /src/gfl/gflChecksum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/gfl/gflChecksum.h -------------------------------------------------------------------------------- /src/gfl/gflConsole.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/gfl/gflConsole.h -------------------------------------------------------------------------------- /src/gfl/gflCustomRenderObj.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/gfl/gflCustomRenderObj.cpp -------------------------------------------------------------------------------- /src/gfl/gflCustomRenderObj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/gfl/gflCustomRenderObj.h -------------------------------------------------------------------------------- /src/gfl/gflDirEntry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/gfl/gflDirEntry.h -------------------------------------------------------------------------------- /src/gfl/gflDirEntryWii.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/gfl/gflDirEntryWii.h -------------------------------------------------------------------------------- /src/gfl/gflError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/gfl/gflError.h -------------------------------------------------------------------------------- /src/gfl/gflFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/gfl/gflFile.cpp -------------------------------------------------------------------------------- /src/gfl/gflFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/gfl/gflFile.h -------------------------------------------------------------------------------- /src/gfl/gflFileSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/gfl/gflFileSystem.h -------------------------------------------------------------------------------- /src/gfl/gflFileSystemWii.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/gfl/gflFileSystemWii.cpp -------------------------------------------------------------------------------- /src/gfl/gflFileSystemWii.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/gfl/gflFileSystemWii.h -------------------------------------------------------------------------------- /src/gfl/gflFixedMemoryStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/gfl/gflFixedMemoryStream.cpp -------------------------------------------------------------------------------- /src/gfl/gflFixedMemoryStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/gfl/gflFixedMemoryStream.h -------------------------------------------------------------------------------- /src/gfl/gflFixedString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/gfl/gflFixedString.cpp -------------------------------------------------------------------------------- /src/gfl/gflFixedString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/gfl/gflFixedString.h -------------------------------------------------------------------------------- /src/gfl/gflFunctor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/gfl/gflFunctor.h -------------------------------------------------------------------------------- /src/gfl/gflGfArch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/gfl/gflGfArch.cpp -------------------------------------------------------------------------------- /src/gfl/gflGfArch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/gfl/gflGfArch.h -------------------------------------------------------------------------------- /src/gfl/gflGfCompression.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/gfl/gflGfCompression.cpp -------------------------------------------------------------------------------- /src/gfl/gflGfCompression.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/gfl/gflGfCompression.h -------------------------------------------------------------------------------- /src/gfl/gflHeap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/gfl/gflHeap.cpp -------------------------------------------------------------------------------- /src/gfl/gflHeap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/gfl/gflHeap.h -------------------------------------------------------------------------------- /src/gfl/gflLinkedList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/gfl/gflLinkedList.cpp -------------------------------------------------------------------------------- /src/gfl/gflLinkedList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/gfl/gflLinkedList.h -------------------------------------------------------------------------------- /src/gfl/gflMemory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/gfl/gflMemory.cpp -------------------------------------------------------------------------------- /src/gfl/gflMemory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/gfl/gflMemory.h -------------------------------------------------------------------------------- /src/gfl/gflMemoryBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/gfl/gflMemoryBase.cpp -------------------------------------------------------------------------------- /src/gfl/gflMemoryBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/gfl/gflMemoryBase.h -------------------------------------------------------------------------------- /src/gfl/gflMemoryManagement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/gfl/gflMemoryManagement.cpp -------------------------------------------------------------------------------- /src/gfl/gflMemoryManagement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/gfl/gflMemoryManagement.h -------------------------------------------------------------------------------- /src/gfl/gflMemoryUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/gfl/gflMemoryUtil.cpp -------------------------------------------------------------------------------- /src/gfl/gflMemoryUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/gfl/gflMemoryUtil.h -------------------------------------------------------------------------------- /src/gfl/gflMisc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/gfl/gflMisc.h -------------------------------------------------------------------------------- /src/gfl/gflParam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/gfl/gflParam.h -------------------------------------------------------------------------------- /src/gfl/gflParamBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/gfl/gflParamBase.cpp -------------------------------------------------------------------------------- /src/gfl/gflParamReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/gfl/gflParamReader.cpp -------------------------------------------------------------------------------- /src/gfl/gflParamReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/gfl/gflParamReader.h -------------------------------------------------------------------------------- /src/gfl/gflParamSingleValue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/gfl/gflParamSingleValue.cpp -------------------------------------------------------------------------------- /src/gfl/gflPointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/gfl/gflPointer.h -------------------------------------------------------------------------------- /src/gfl/gflRenderObj.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/gfl/gflRenderObj.cpp -------------------------------------------------------------------------------- /src/gfl/gflRenderObj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/gfl/gflRenderObj.h -------------------------------------------------------------------------------- /src/gfl/gflResArchivedFileInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/gfl/gflResArchivedFileInfo.cpp -------------------------------------------------------------------------------- /src/gfl/gflResArchivedFileInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/gfl/gflResArchivedFileInfo.h -------------------------------------------------------------------------------- /src/gfl/gflResFileInfo.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/gfl/gflResFileInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/gfl/gflResFileInfo.h -------------------------------------------------------------------------------- /src/gfl/gflResInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/gfl/gflResInfo.cpp -------------------------------------------------------------------------------- /src/gfl/gflResInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/gfl/gflResInfo.h -------------------------------------------------------------------------------- /src/gfl/gflSD3DActor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/gfl/gflSD3DActor.cpp -------------------------------------------------------------------------------- /src/gfl/gflSD3DActor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/gfl/gflSD3DActor.h -------------------------------------------------------------------------------- /src/gfl/gflSD3DActorInner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/gfl/gflSD3DActorInner.h -------------------------------------------------------------------------------- /src/gfl/gflScene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/gfl/gflScene.cpp -------------------------------------------------------------------------------- /src/gfl/gflScene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/gfl/gflScene.h -------------------------------------------------------------------------------- /src/gfl/gflScnMdlWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/gfl/gflScnMdlWrapper.h -------------------------------------------------------------------------------- /src/gfl/gflSound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/gfl/gflSound.h -------------------------------------------------------------------------------- /src/gfl/gflSoundArchiveMng.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/gfl/gflSoundArchiveMng.cpp -------------------------------------------------------------------------------- /src/gfl/gflSoundArchiveMng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/gfl/gflSoundArchiveMng.h -------------------------------------------------------------------------------- /src/gfl/gflSoundFadeCtrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/gfl/gflSoundFadeCtrl.h -------------------------------------------------------------------------------- /src/gfl/gflSoundHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/gfl/gflSoundHandle.h -------------------------------------------------------------------------------- /src/gfl/gflSoundHandleInner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/gfl/gflSoundHandleInner.cpp -------------------------------------------------------------------------------- /src/gfl/gflSoundHandleInner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/gfl/gflSoundHandleInner.h -------------------------------------------------------------------------------- /src/gfl/gflSoundQue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/gfl/gflSoundQue.h -------------------------------------------------------------------------------- /src/gfl/gflStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/gfl/gflStream.h -------------------------------------------------------------------------------- /src/gfl/gflTask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/gfl/gflTask.cpp -------------------------------------------------------------------------------- /src/gfl/gflTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/gfl/gflTask.h -------------------------------------------------------------------------------- /src/gfl/gflTaskInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/gfl/gflTaskInfo.cpp -------------------------------------------------------------------------------- /src/gfl/gflTaskInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/gfl/gflTaskInfo.h -------------------------------------------------------------------------------- /src/gfl/gflTimer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/gfl/gflTimer.cpp -------------------------------------------------------------------------------- /src/gfl/gflTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/gfl/gflTimer.h -------------------------------------------------------------------------------- /src/gfl/gflVec2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/gfl/gflVec2.h -------------------------------------------------------------------------------- /src/gfl/gflVec3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/gfl/gflVec3.h -------------------------------------------------------------------------------- /src/gfl/gfl_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/gfl/gfl_types.h -------------------------------------------------------------------------------- /src/hbm/context_rvl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/hbm/context_rvl.h -------------------------------------------------------------------------------- /src/hbm/homebutton/HBMAxSound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/hbm/homebutton/HBMAxSound.cpp -------------------------------------------------------------------------------- /src/hbm/homebutton/HBMAxSound.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/hbm/homebutton/HBMAxSound.hpp -------------------------------------------------------------------------------- /src/hbm/homebutton/HBMBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/hbm/homebutton/HBMBase.cpp -------------------------------------------------------------------------------- /src/hbm/homebutton/HBMBase.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/hbm/homebutton/HBMBase.hpp -------------------------------------------------------------------------------- /src/hbm/homebutton/HBMCommon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/hbm/homebutton/HBMCommon.cpp -------------------------------------------------------------------------------- /src/hbm/homebutton/HBMCommon.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/hbm/homebutton/HBMCommon.hpp -------------------------------------------------------------------------------- /src/hbm/nw4hbm/lyt/lyt_common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/hbm/nw4hbm/lyt/lyt_common.cpp -------------------------------------------------------------------------------- /src/hbm/nw4hbm/lyt/lyt_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/hbm/nw4hbm/lyt/lyt_common.hpp -------------------------------------------------------------------------------- /src/hbm/nw4hbm/lyt/lyt_group.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/hbm/nw4hbm/lyt/lyt_group.cpp -------------------------------------------------------------------------------- /src/hbm/nw4hbm/lyt/lyt_group.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/hbm/nw4hbm/lyt/lyt_group.hpp -------------------------------------------------------------------------------- /src/hbm/nw4hbm/lyt/lyt_layout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/hbm/nw4hbm/lyt/lyt_layout.cpp -------------------------------------------------------------------------------- /src/hbm/nw4hbm/lyt/lyt_layout.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/hbm/nw4hbm/lyt/lyt_layout.hpp -------------------------------------------------------------------------------- /src/hbm/nw4hbm/lyt/lyt_pane.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/hbm/nw4hbm/lyt/lyt_pane.cpp -------------------------------------------------------------------------------- /src/hbm/nw4hbm/lyt/lyt_pane.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/hbm/nw4hbm/lyt/lyt_pane.hpp -------------------------------------------------------------------------------- /src/hbm/nw4hbm/lyt/lyt_picture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/hbm/nw4hbm/lyt/lyt_picture.cpp -------------------------------------------------------------------------------- /src/hbm/nw4hbm/lyt/lyt_picture.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/hbm/nw4hbm/lyt/lyt_picture.hpp -------------------------------------------------------------------------------- /src/hbm/nw4hbm/lyt/lyt_textBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/hbm/nw4hbm/lyt/lyt_textBox.cpp -------------------------------------------------------------------------------- /src/hbm/nw4hbm/lyt/lyt_textBox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/hbm/nw4hbm/lyt/lyt_textBox.hpp -------------------------------------------------------------------------------- /src/hbm/nw4hbm/lyt/lyt_types.cpp: -------------------------------------------------------------------------------- 1 | /* This file intentionally left blank. */ 2 | -------------------------------------------------------------------------------- /src/hbm/nw4hbm/lyt/lyt_types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/hbm/nw4hbm/lyt/lyt_types.hpp -------------------------------------------------------------------------------- /src/hbm/nw4hbm/lyt/lyt_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/hbm/nw4hbm/lyt/lyt_window.cpp -------------------------------------------------------------------------------- /src/hbm/nw4hbm/lyt/lyt_window.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/hbm/nw4hbm/lyt/lyt_window.hpp -------------------------------------------------------------------------------- /src/hbm/nw4hbm/math/math_equation.hpp: -------------------------------------------------------------------------------- 1 | /* This file intentionally left blank. */ 2 | -------------------------------------------------------------------------------- /src/hbm/nw4hbm/math/math_types.cpp: -------------------------------------------------------------------------------- 1 | /* This file intentionally left blank. */ 2 | -------------------------------------------------------------------------------- /src/hbm/nw4hbm/math/math_types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/hbm/nw4hbm/math/math_types.hpp -------------------------------------------------------------------------------- /src/hbm/nw4hbm/ut/ut_Color.cpp: -------------------------------------------------------------------------------- 1 | /* This file intentionally left blank. */ 2 | -------------------------------------------------------------------------------- /src/hbm/nw4hbm/ut/ut_Color.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/hbm/nw4hbm/ut/ut_Color.hpp -------------------------------------------------------------------------------- /src/hbm/nw4hbm/ut/ut_Font.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/hbm/nw4hbm/ut/ut_Font.cpp -------------------------------------------------------------------------------- /src/hbm/nw4hbm/ut/ut_Font.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/hbm/nw4hbm/ut/ut_Font.hpp -------------------------------------------------------------------------------- /src/hbm/nw4hbm/ut/ut_LinkList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/hbm/nw4hbm/ut/ut_LinkList.cpp -------------------------------------------------------------------------------- /src/hbm/nw4hbm/ut/ut_LinkList.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/hbm/nw4hbm/ut/ut_LinkList.hpp -------------------------------------------------------------------------------- /src/hbm/nw4hbm/ut/ut_Rect.cpp: -------------------------------------------------------------------------------- 1 | /* This file intentionally left blank. */ 2 | -------------------------------------------------------------------------------- /src/hbm/nw4hbm/ut/ut_Rect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/hbm/nw4hbm/ut/ut_Rect.hpp -------------------------------------------------------------------------------- /src/hbm/nw4hbm/ut/ut_ResFont.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/hbm/nw4hbm/ut/ut_ResFont.cpp -------------------------------------------------------------------------------- /src/hbm/nw4hbm/ut/ut_ResFont.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/hbm/nw4hbm/ut/ut_ResFont.hpp -------------------------------------------------------------------------------- /src/hbm/nw4hbm/ut/ut_RuntimeTypeInfo.cpp: -------------------------------------------------------------------------------- 1 | /* This file intentionally left blank. */ 2 | -------------------------------------------------------------------------------- /src/hbm/nw4hbm/ut/ut_inlines.cpp: -------------------------------------------------------------------------------- 1 | /* This file intentionally left blank. */ 2 | -------------------------------------------------------------------------------- /src/hbm/nw4hbm/ut/ut_inlines.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/hbm/nw4hbm/ut/ut_inlines.hpp -------------------------------------------------------------------------------- /src/hbm/nw4hbm/ut/ut_list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/hbm/nw4hbm/ut/ut_list.cpp -------------------------------------------------------------------------------- /src/hbm/nw4hbm/ut/ut_list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/hbm/nw4hbm/ut/ut_list.hpp -------------------------------------------------------------------------------- /src/hbm/sound/mix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/hbm/sound/mix.cpp -------------------------------------------------------------------------------- /src/hbm/sound/mix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/hbm/sound/mix.h -------------------------------------------------------------------------------- /src/hbm/sound/seq.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/hbm/sound/seq.cpp -------------------------------------------------------------------------------- /src/hbm/sound/seq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/hbm/sound/seq.h -------------------------------------------------------------------------------- /src/hbm/sound/syn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/hbm/sound/syn.cpp -------------------------------------------------------------------------------- /src/hbm/sound/syn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/hbm/sound/syn.h -------------------------------------------------------------------------------- /src/hbm/sound/synctrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/hbm/sound/synctrl.cpp -------------------------------------------------------------------------------- /src/hbm/sound/synctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/hbm/sound/synctrl.h -------------------------------------------------------------------------------- /src/hbm/sound/synenv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/hbm/sound/synenv.cpp -------------------------------------------------------------------------------- /src/hbm/sound/synenv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/hbm/sound/synenv.h -------------------------------------------------------------------------------- /src/hbm/sound/synmix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/hbm/sound/synmix.cpp -------------------------------------------------------------------------------- /src/hbm/sound/synmix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/hbm/sound/synmix.h -------------------------------------------------------------------------------- /src/hbm/sound/synpitch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/hbm/sound/synpitch.cpp -------------------------------------------------------------------------------- /src/hbm/sound/synpitch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/hbm/sound/synpitch.h -------------------------------------------------------------------------------- /src/hbm/sound/synsample.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/hbm/sound/synsample.cpp -------------------------------------------------------------------------------- /src/hbm/sound/synsample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/hbm/sound/synsample.h -------------------------------------------------------------------------------- /src/hbm/sound/synvoice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/hbm/sound/synvoice.cpp -------------------------------------------------------------------------------- /src/hbm/sound/synvoice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/hbm/sound/synvoice.h -------------------------------------------------------------------------------- /src/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/macros.h -------------------------------------------------------------------------------- /src/nw4r/ef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/ef.h -------------------------------------------------------------------------------- /src/nw4r/ef/ef_activitylist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/ef/ef_activitylist.h -------------------------------------------------------------------------------- /src/nw4r/ef/ef_animcurve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/ef/ef_animcurve.h -------------------------------------------------------------------------------- /src/nw4r/ef/ef_creationqueue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/ef/ef_creationqueue.cpp -------------------------------------------------------------------------------- /src/nw4r/ef/ef_creationqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/ef/ef_creationqueue.h -------------------------------------------------------------------------------- /src/nw4r/ef/ef_drawinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/ef/ef_drawinfo.h -------------------------------------------------------------------------------- /src/nw4r/ef/ef_draworder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/ef/ef_draworder.cpp -------------------------------------------------------------------------------- /src/nw4r/ef/ef_draworder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/ef/ef_draworder.h -------------------------------------------------------------------------------- /src/nw4r/ef/ef_drawstrategy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/ef/ef_drawstrategy.h -------------------------------------------------------------------------------- /src/nw4r/ef/ef_effect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/ef/ef_effect.cpp -------------------------------------------------------------------------------- /src/nw4r/ef/ef_effect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/ef/ef_effect.h -------------------------------------------------------------------------------- /src/nw4r/ef/ef_effectsystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/ef/ef_effectsystem.cpp -------------------------------------------------------------------------------- /src/nw4r/ef/ef_effectsystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/ef/ef_effectsystem.h -------------------------------------------------------------------------------- /src/nw4r/ef/ef_emform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/ef/ef_emform.cpp -------------------------------------------------------------------------------- /src/nw4r/ef/ef_emitter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/ef/ef_emitter.cpp -------------------------------------------------------------------------------- /src/nw4r/ef/ef_emitter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/ef/ef_emitter.h -------------------------------------------------------------------------------- /src/nw4r/ef/ef_emitterform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/ef/ef_emitterform.cpp -------------------------------------------------------------------------------- /src/nw4r/ef/ef_emitterform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/ef/ef_emitterform.h -------------------------------------------------------------------------------- /src/nw4r/ef/ef_handle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/ef/ef_handle.cpp -------------------------------------------------------------------------------- /src/nw4r/ef/ef_handle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/ef/ef_handle.h -------------------------------------------------------------------------------- /src/nw4r/ef/ef_linkedobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/ef/ef_linkedobject.h -------------------------------------------------------------------------------- /src/nw4r/ef/ef_memorymanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/ef/ef_memorymanager.h -------------------------------------------------------------------------------- /src/nw4r/ef/ef_memorymanagertmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/ef/ef_memorymanagertmp.h -------------------------------------------------------------------------------- /src/nw4r/ef/ef_particle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/ef/ef_particle.cpp -------------------------------------------------------------------------------- /src/nw4r/ef/ef_particle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/ef/ef_particle.h -------------------------------------------------------------------------------- /src/nw4r/ef/ef_particlemanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/ef/ef_particlemanager.cpp -------------------------------------------------------------------------------- /src/nw4r/ef/ef_particlemanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/ef/ef_particlemanager.h -------------------------------------------------------------------------------- /src/nw4r/ef/ef_random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/ef/ef_random.h -------------------------------------------------------------------------------- /src/nw4r/ef/ef_referencedobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/ef/ef_referencedobject.h -------------------------------------------------------------------------------- /src/nw4r/ef/ef_res_animcurve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/ef/ef_res_animcurve.h -------------------------------------------------------------------------------- /src/nw4r/ef/ef_res_emitter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/ef/ef_res_emitter.h -------------------------------------------------------------------------------- /src/nw4r/ef/ef_res_texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/ef/ef_res_texture.h -------------------------------------------------------------------------------- /src/nw4r/ef/ef_resource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/ef/ef_resource.cpp -------------------------------------------------------------------------------- /src/nw4r/ef/ef_resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/ef/ef_resource.h -------------------------------------------------------------------------------- /src/nw4r/ef/ef_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/ef/ef_types.h -------------------------------------------------------------------------------- /src/nw4r/ef/ef_util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/ef/ef_util.cpp -------------------------------------------------------------------------------- /src/nw4r/ef/ef_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/ef/ef_util.h -------------------------------------------------------------------------------- /src/nw4r/ef/emform/ef_cube.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/ef/emform/ef_cube.cpp -------------------------------------------------------------------------------- /src/nw4r/ef/emform/ef_cube.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/ef/emform/ef_cube.h -------------------------------------------------------------------------------- /src/nw4r/ef/emform/ef_cylinder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/ef/emform/ef_cylinder.cpp -------------------------------------------------------------------------------- /src/nw4r/ef/emform/ef_cylinder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/ef/emform/ef_cylinder.h -------------------------------------------------------------------------------- /src/nw4r/ef/emform/ef_disc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/ef/emform/ef_disc.cpp -------------------------------------------------------------------------------- /src/nw4r/ef/emform/ef_disc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/ef/emform/ef_disc.h -------------------------------------------------------------------------------- /src/nw4r/ef/emform/ef_emform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/ef/emform/ef_emform.cpp -------------------------------------------------------------------------------- /src/nw4r/ef/emform/ef_emform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/ef/emform/ef_emform.h -------------------------------------------------------------------------------- /src/nw4r/ef/emform/ef_line.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/ef/emform/ef_line.cpp -------------------------------------------------------------------------------- /src/nw4r/ef/emform/ef_line.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/ef/emform/ef_line.h -------------------------------------------------------------------------------- /src/nw4r/ef/emform/ef_point.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/ef/emform/ef_point.cpp -------------------------------------------------------------------------------- /src/nw4r/ef/emform/ef_point.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/ef/emform/ef_point.h -------------------------------------------------------------------------------- /src/nw4r/ef/emform/ef_sphere.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/ef/emform/ef_sphere.cpp -------------------------------------------------------------------------------- /src/nw4r/ef/emform/ef_sphere.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/ef/emform/ef_sphere.h -------------------------------------------------------------------------------- /src/nw4r/ef/emform/ef_torus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/ef/emform/ef_torus.cpp -------------------------------------------------------------------------------- /src/nw4r/ef/emform/ef_torus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/ef/emform/ef_torus.h -------------------------------------------------------------------------------- /src/nw4r/g3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/g3d.h -------------------------------------------------------------------------------- /src/nw4r/g3d/g3d_3dsmax.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/g3d/g3d_3dsmax.cpp -------------------------------------------------------------------------------- /src/nw4r/g3d/g3d_3dsmax.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/g3d/g3d_3dsmax.h -------------------------------------------------------------------------------- /src/nw4r/g3d/g3d_anmchr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/g3d/g3d_anmchr.cpp -------------------------------------------------------------------------------- /src/nw4r/g3d/g3d_anmchr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/g3d/g3d_anmchr.h -------------------------------------------------------------------------------- /src/nw4r/g3d/g3d_anmclr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/g3d/g3d_anmclr.cpp -------------------------------------------------------------------------------- /src/nw4r/g3d/g3d_anmclr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/g3d/g3d_anmclr.h -------------------------------------------------------------------------------- /src/nw4r/g3d/g3d_anmobj.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/g3d/g3d_anmobj.cpp -------------------------------------------------------------------------------- /src/nw4r/g3d/g3d_anmobj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/g3d/g3d_anmobj.h -------------------------------------------------------------------------------- /src/nw4r/g3d/g3d_anmscn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/g3d/g3d_anmscn.cpp -------------------------------------------------------------------------------- /src/nw4r/g3d/g3d_anmscn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/g3d/g3d_anmscn.h -------------------------------------------------------------------------------- /src/nw4r/g3d/g3d_anmshp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/g3d/g3d_anmshp.cpp -------------------------------------------------------------------------------- /src/nw4r/g3d/g3d_anmshp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/g3d/g3d_anmshp.h -------------------------------------------------------------------------------- /src/nw4r/g3d/g3d_anmtexpat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/g3d/g3d_anmtexpat.cpp -------------------------------------------------------------------------------- /src/nw4r/g3d/g3d_anmtexpat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/g3d/g3d_anmtexpat.h -------------------------------------------------------------------------------- /src/nw4r/g3d/g3d_anmtexsrt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/g3d/g3d_anmtexsrt.cpp -------------------------------------------------------------------------------- /src/nw4r/g3d/g3d_anmtexsrt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/g3d/g3d_anmtexsrt.h -------------------------------------------------------------------------------- /src/nw4r/g3d/g3d_anmvis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/g3d/g3d_anmvis.cpp -------------------------------------------------------------------------------- /src/nw4r/g3d/g3d_anmvis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/g3d/g3d_anmvis.h -------------------------------------------------------------------------------- /src/nw4r/g3d/g3d_basic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/g3d/g3d_basic.cpp -------------------------------------------------------------------------------- /src/nw4r/g3d/g3d_basic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/g3d/g3d_basic.h -------------------------------------------------------------------------------- /src/nw4r/g3d/g3d_calcmaterial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/g3d/g3d_calcmaterial.cpp -------------------------------------------------------------------------------- /src/nw4r/g3d/g3d_calcmaterial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/g3d/g3d_calcmaterial.h -------------------------------------------------------------------------------- /src/nw4r/g3d/g3d_calcview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/g3d/g3d_calcview.cpp -------------------------------------------------------------------------------- /src/nw4r/g3d/g3d_calcview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/g3d/g3d_calcview.h -------------------------------------------------------------------------------- /src/nw4r/g3d/g3d_calcvtx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/g3d/g3d_calcvtx.cpp -------------------------------------------------------------------------------- /src/nw4r/g3d/g3d_calcvtx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/g3d/g3d_calcvtx.h -------------------------------------------------------------------------------- /src/nw4r/g3d/g3d_calcworld.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/g3d/g3d_calcworld.cpp -------------------------------------------------------------------------------- /src/nw4r/g3d/g3d_calcworld.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/g3d/g3d_calcworld.h -------------------------------------------------------------------------------- /src/nw4r/g3d/g3d_camera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/g3d/g3d_camera.cpp -------------------------------------------------------------------------------- /src/nw4r/g3d/g3d_camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/g3d/g3d_camera.h -------------------------------------------------------------------------------- /src/nw4r/g3d/g3d_dcc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/g3d/g3d_dcc.cpp -------------------------------------------------------------------------------- /src/nw4r/g3d/g3d_dcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/g3d/g3d_dcc.h -------------------------------------------------------------------------------- /src/nw4r/g3d/g3d_draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/g3d/g3d_draw.cpp -------------------------------------------------------------------------------- /src/nw4r/g3d/g3d_draw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/g3d/g3d_draw.h -------------------------------------------------------------------------------- /src/nw4r/g3d/g3d_draw1mat1shp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/g3d/g3d_draw1mat1shp.cpp -------------------------------------------------------------------------------- /src/nw4r/g3d/g3d_draw1mat1shp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/g3d/g3d_draw1mat1shp.h -------------------------------------------------------------------------------- /src/nw4r/g3d/g3d_fog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/g3d/g3d_fog.cpp -------------------------------------------------------------------------------- /src/nw4r/g3d/g3d_fog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/g3d/g3d_fog.h -------------------------------------------------------------------------------- /src/nw4r/g3d/g3d_init.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/g3d/g3d_init.cpp -------------------------------------------------------------------------------- /src/nw4r/g3d/g3d_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/g3d/g3d_init.h -------------------------------------------------------------------------------- /src/nw4r/g3d/g3d_light.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/g3d/g3d_light.cpp -------------------------------------------------------------------------------- /src/nw4r/g3d/g3d_light.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/g3d/g3d_light.h -------------------------------------------------------------------------------- /src/nw4r/g3d/g3d_maya.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/g3d/g3d_maya.cpp -------------------------------------------------------------------------------- /src/nw4r/g3d/g3d_maya.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/g3d/g3d_maya.h -------------------------------------------------------------------------------- /src/nw4r/g3d/g3d_obj.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/g3d/g3d_obj.cpp -------------------------------------------------------------------------------- /src/nw4r/g3d/g3d_obj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/g3d/g3d_obj.h -------------------------------------------------------------------------------- /src/nw4r/g3d/g3d_rtti.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/g3d/g3d_rtti.h -------------------------------------------------------------------------------- /src/nw4r/g3d/g3d_scnmdl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/g3d/g3d_scnmdl.cpp -------------------------------------------------------------------------------- /src/nw4r/g3d/g3d_scnmdl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/g3d/g3d_scnmdl.h -------------------------------------------------------------------------------- /src/nw4r/g3d/g3d_scnmdl1mat1shp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/g3d/g3d_scnmdl1mat1shp.h -------------------------------------------------------------------------------- /src/nw4r/g3d/g3d_scnmdlsmpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/g3d/g3d_scnmdlsmpl.cpp -------------------------------------------------------------------------------- /src/nw4r/g3d/g3d_scnmdlsmpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/g3d/g3d_scnmdlsmpl.h -------------------------------------------------------------------------------- /src/nw4r/g3d/g3d_scnobj.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/g3d/g3d_scnobj.cpp -------------------------------------------------------------------------------- /src/nw4r/g3d/g3d_scnobj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/g3d/g3d_scnobj.h -------------------------------------------------------------------------------- /src/nw4r/g3d/g3d_scnproc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/g3d/g3d_scnproc.cpp -------------------------------------------------------------------------------- /src/nw4r/g3d/g3d_scnproc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/g3d/g3d_scnproc.h -------------------------------------------------------------------------------- /src/nw4r/g3d/g3d_scnrfl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/g3d/g3d_scnrfl.cpp -------------------------------------------------------------------------------- /src/nw4r/g3d/g3d_scnrfl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/g3d/g3d_scnrfl.h -------------------------------------------------------------------------------- /src/nw4r/g3d/g3d_scnroot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/g3d/g3d_scnroot.cpp -------------------------------------------------------------------------------- /src/nw4r/g3d/g3d_scnroot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/g3d/g3d_scnroot.h -------------------------------------------------------------------------------- /src/nw4r/g3d/g3d_state.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/g3d/g3d_state.cpp -------------------------------------------------------------------------------- /src/nw4r/g3d/g3d_state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/g3d/g3d_state.h -------------------------------------------------------------------------------- /src/nw4r/g3d/g3d_workmem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/g3d/g3d_workmem.cpp -------------------------------------------------------------------------------- /src/nw4r/g3d/g3d_workmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/g3d/g3d_workmem.h -------------------------------------------------------------------------------- /src/nw4r/g3d/g3d_xsi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/g3d/g3d_xsi.cpp -------------------------------------------------------------------------------- /src/nw4r/g3d/g3d_xsi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/g3d/g3d_xsi.h -------------------------------------------------------------------------------- /src/nw4r/g3d/platform/g3d_cpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/g3d/platform/g3d_cpu.cpp -------------------------------------------------------------------------------- /src/nw4r/g3d/platform/g3d_cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/g3d/platform/g3d_cpu.h -------------------------------------------------------------------------------- /src/nw4r/g3d/platform/g3d_gpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/g3d/platform/g3d_gpu.cpp -------------------------------------------------------------------------------- /src/nw4r/g3d/platform/g3d_gpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/g3d/platform/g3d_gpu.h -------------------------------------------------------------------------------- /src/nw4r/g3d/platform/g3d_tmem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/g3d/platform/g3d_tmem.cpp -------------------------------------------------------------------------------- /src/nw4r/g3d/platform/g3d_tmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/g3d/platform/g3d_tmem.h -------------------------------------------------------------------------------- /src/nw4r/g3d/res/g3d_resanm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/g3d/res/g3d_resanm.cpp -------------------------------------------------------------------------------- /src/nw4r/g3d/res/g3d_resanm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/g3d/res/g3d_resanm.h -------------------------------------------------------------------------------- /src/nw4r/g3d/res/g3d_resanmchr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/g3d/res/g3d_resanmchr.cpp -------------------------------------------------------------------------------- /src/nw4r/g3d/res/g3d_resanmchr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/g3d/res/g3d_resanmchr.h -------------------------------------------------------------------------------- /src/nw4r/g3d/res/g3d_resanmclr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/g3d/res/g3d_resanmclr.cpp -------------------------------------------------------------------------------- /src/nw4r/g3d/res/g3d_resanmclr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/g3d/res/g3d_resanmclr.h -------------------------------------------------------------------------------- /src/nw4r/g3d/res/g3d_resanmfog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/g3d/res/g3d_resanmfog.cpp -------------------------------------------------------------------------------- /src/nw4r/g3d/res/g3d_resanmfog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/g3d/res/g3d_resanmfog.h -------------------------------------------------------------------------------- /src/nw4r/g3d/res/g3d_resanmlight.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/g3d/res/g3d_resanmlight.h -------------------------------------------------------------------------------- /src/nw4r/g3d/res/g3d_resanmscn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/g3d/res/g3d_resanmscn.cpp -------------------------------------------------------------------------------- /src/nw4r/g3d/res/g3d_resanmscn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/g3d/res/g3d_resanmscn.h -------------------------------------------------------------------------------- /src/nw4r/g3d/res/g3d_resanmshp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/g3d/res/g3d_resanmshp.cpp -------------------------------------------------------------------------------- /src/nw4r/g3d/res/g3d_resanmshp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/g3d/res/g3d_resanmshp.h -------------------------------------------------------------------------------- /src/nw4r/g3d/res/g3d_resanmvis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/g3d/res/g3d_resanmvis.cpp -------------------------------------------------------------------------------- /src/nw4r/g3d/res/g3d_resanmvis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/g3d/res/g3d_resanmvis.h -------------------------------------------------------------------------------- /src/nw4r/g3d/res/g3d_rescommon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/g3d/res/g3d_rescommon.cpp -------------------------------------------------------------------------------- /src/nw4r/g3d/res/g3d_rescommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/g3d/res/g3d_rescommon.h -------------------------------------------------------------------------------- /src/nw4r/g3d/res/g3d_resdict.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/g3d/res/g3d_resdict.cpp -------------------------------------------------------------------------------- /src/nw4r/g3d/res/g3d_resdict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/g3d/res/g3d_resdict.h -------------------------------------------------------------------------------- /src/nw4r/g3d/res/g3d_resfile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/g3d/res/g3d_resfile.cpp -------------------------------------------------------------------------------- /src/nw4r/g3d/res/g3d_resfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/g3d/res/g3d_resfile.h -------------------------------------------------------------------------------- /src/nw4r/g3d/res/g3d_reslightset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/g3d/res/g3d_reslightset.h -------------------------------------------------------------------------------- /src/nw4r/g3d/res/g3d_resmat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/g3d/res/g3d_resmat.cpp -------------------------------------------------------------------------------- /src/nw4r/g3d/res/g3d_resmat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/g3d/res/g3d_resmat.h -------------------------------------------------------------------------------- /src/nw4r/g3d/res/g3d_resmdl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/g3d/res/g3d_resmdl.cpp -------------------------------------------------------------------------------- /src/nw4r/g3d/res/g3d_resmdl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/g3d/res/g3d_resmdl.h -------------------------------------------------------------------------------- /src/nw4r/g3d/res/g3d_resnode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/g3d/res/g3d_resnode.cpp -------------------------------------------------------------------------------- /src/nw4r/g3d/res/g3d_resnode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/g3d/res/g3d_resnode.h -------------------------------------------------------------------------------- /src/nw4r/g3d/res/g3d_respltt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/g3d/res/g3d_respltt.h -------------------------------------------------------------------------------- /src/nw4r/g3d/res/g3d_resshp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/g3d/res/g3d_resshp.cpp -------------------------------------------------------------------------------- /src/nw4r/g3d/res/g3d_resshp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/g3d/res/g3d_resshp.h -------------------------------------------------------------------------------- /src/nw4r/g3d/res/g3d_restev.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/g3d/res/g3d_restev.cpp -------------------------------------------------------------------------------- /src/nw4r/g3d/res/g3d_restev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/g3d/res/g3d_restev.h -------------------------------------------------------------------------------- /src/nw4r/g3d/res/g3d_restex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/g3d/res/g3d_restex.cpp -------------------------------------------------------------------------------- /src/nw4r/g3d/res/g3d_restex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/g3d/res/g3d_restex.h -------------------------------------------------------------------------------- /src/nw4r/g3d/res/g3d_resvtx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/g3d/res/g3d_resvtx.cpp -------------------------------------------------------------------------------- /src/nw4r/g3d/res/g3d_resvtx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/g3d/res/g3d_resvtx.h -------------------------------------------------------------------------------- /src/nw4r/lyt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/lyt.h -------------------------------------------------------------------------------- /src/nw4r/lyt/lyt_animation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/lyt/lyt_animation.cpp -------------------------------------------------------------------------------- /src/nw4r/lyt/lyt_animation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/lyt/lyt_animation.h -------------------------------------------------------------------------------- /src/nw4r/lyt/lyt_bounding.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/lyt/lyt_bounding.cpp -------------------------------------------------------------------------------- /src/nw4r/lyt/lyt_bounding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/lyt/lyt_bounding.h -------------------------------------------------------------------------------- /src/nw4r/lyt/lyt_common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/lyt/lyt_common.cpp -------------------------------------------------------------------------------- /src/nw4r/lyt/lyt_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/lyt/lyt_common.h -------------------------------------------------------------------------------- /src/nw4r/lyt/lyt_drawInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/lyt/lyt_drawInfo.cpp -------------------------------------------------------------------------------- /src/nw4r/lyt/lyt_drawInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/lyt/lyt_drawInfo.h -------------------------------------------------------------------------------- /src/nw4r/lyt/lyt_group.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/lyt/lyt_group.cpp -------------------------------------------------------------------------------- /src/nw4r/lyt/lyt_group.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/lyt/lyt_group.h -------------------------------------------------------------------------------- /src/nw4r/lyt/lyt_init.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/lyt/lyt_init.cpp -------------------------------------------------------------------------------- /src/nw4r/lyt/lyt_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/lyt/lyt_init.h -------------------------------------------------------------------------------- /src/nw4r/lyt/lyt_layout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/lyt/lyt_layout.cpp -------------------------------------------------------------------------------- /src/nw4r/lyt/lyt_layout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/lyt/lyt_layout.h -------------------------------------------------------------------------------- /src/nw4r/lyt/lyt_material.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/lyt/lyt_material.cpp -------------------------------------------------------------------------------- /src/nw4r/lyt/lyt_material.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/lyt/lyt_material.h -------------------------------------------------------------------------------- /src/nw4r/lyt/lyt_pane.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/lyt/lyt_pane.cpp -------------------------------------------------------------------------------- /src/nw4r/lyt/lyt_pane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/lyt/lyt_pane.h -------------------------------------------------------------------------------- /src/nw4r/lyt/lyt_picture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/lyt/lyt_picture.cpp -------------------------------------------------------------------------------- /src/nw4r/lyt/lyt_picture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/lyt/lyt_picture.h -------------------------------------------------------------------------------- /src/nw4r/lyt/lyt_resources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/lyt/lyt_resources.h -------------------------------------------------------------------------------- /src/nw4r/lyt/lyt_texMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/lyt/lyt_texMap.cpp -------------------------------------------------------------------------------- /src/nw4r/lyt/lyt_texMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/lyt/lyt_texMap.h -------------------------------------------------------------------------------- /src/nw4r/lyt/lyt_textBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/lyt/lyt_textBox.cpp -------------------------------------------------------------------------------- /src/nw4r/lyt/lyt_textBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/lyt/lyt_textBox.h -------------------------------------------------------------------------------- /src/nw4r/lyt/lyt_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/lyt/lyt_types.h -------------------------------------------------------------------------------- /src/nw4r/lyt/lyt_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/lyt/lyt_window.cpp -------------------------------------------------------------------------------- /src/nw4r/lyt/lyt_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/lyt/lyt_window.h -------------------------------------------------------------------------------- /src/nw4r/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/math.h -------------------------------------------------------------------------------- /src/nw4r/math/math_arithmetic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/math/math_arithmetic.cpp -------------------------------------------------------------------------------- /src/nw4r/math/math_arithmetic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/math/math_arithmetic.h -------------------------------------------------------------------------------- /src/nw4r/math/math_constant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/math/math_constant.h -------------------------------------------------------------------------------- /src/nw4r/math/math_geometry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/math/math_geometry.cpp -------------------------------------------------------------------------------- /src/nw4r/math/math_geometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/math/math_geometry.h -------------------------------------------------------------------------------- /src/nw4r/math/math_triangular.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/math/math_triangular.cpp -------------------------------------------------------------------------------- /src/nw4r/math/math_triangular.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/math/math_triangular.h -------------------------------------------------------------------------------- /src/nw4r/math/math_types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/math/math_types.cpp -------------------------------------------------------------------------------- /src/nw4r/math/math_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/math/math_types.h -------------------------------------------------------------------------------- /src/nw4r/snd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/snd.h -------------------------------------------------------------------------------- /src/nw4r/snd/snd_AnimSound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/snd/snd_AnimSound.cpp -------------------------------------------------------------------------------- /src/nw4r/snd/snd_AxManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/snd/snd_AxManager.cpp -------------------------------------------------------------------------------- /src/nw4r/snd/snd_AxManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/snd/snd_AxManager.h -------------------------------------------------------------------------------- /src/nw4r/snd/snd_AxVoice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/snd/snd_AxVoice.cpp -------------------------------------------------------------------------------- /src/nw4r/snd/snd_AxVoice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/snd/snd_AxVoice.h -------------------------------------------------------------------------------- /src/nw4r/snd/snd_AxVoiceManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/snd/snd_AxVoiceManager.h -------------------------------------------------------------------------------- /src/nw4r/snd/snd_AxfxImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/snd/snd_AxfxImpl.cpp -------------------------------------------------------------------------------- /src/nw4r/snd/snd_AxfxImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/snd/snd_AxfxImpl.h -------------------------------------------------------------------------------- /src/nw4r/snd/snd_Bank.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/snd/snd_Bank.cpp -------------------------------------------------------------------------------- /src/nw4r/snd/snd_Bank.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/snd/snd_Bank.h -------------------------------------------------------------------------------- /src/nw4r/snd/snd_BankFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/snd/snd_BankFile.cpp -------------------------------------------------------------------------------- /src/nw4r/snd/snd_BankFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/snd/snd_BankFile.h -------------------------------------------------------------------------------- /src/nw4r/snd/snd_BasicPlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/snd/snd_BasicPlayer.cpp -------------------------------------------------------------------------------- /src/nw4r/snd/snd_BasicPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/snd/snd_BasicPlayer.h -------------------------------------------------------------------------------- /src/nw4r/snd/snd_BasicSound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/snd/snd_BasicSound.cpp -------------------------------------------------------------------------------- /src/nw4r/snd/snd_BasicSound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/snd/snd_BasicSound.h -------------------------------------------------------------------------------- /src/nw4r/snd/snd_Channel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/snd/snd_Channel.cpp -------------------------------------------------------------------------------- /src/nw4r/snd/snd_Channel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/snd/snd_Channel.h -------------------------------------------------------------------------------- /src/nw4r/snd/snd_ChannelManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/snd/snd_ChannelManager.h -------------------------------------------------------------------------------- /src/nw4r/snd/snd_DisposeCallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/snd/snd_DisposeCallback.h -------------------------------------------------------------------------------- /src/nw4r/snd/snd_DvdSoundArchive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/snd/snd_DvdSoundArchive.h -------------------------------------------------------------------------------- /src/nw4r/snd/snd_EnvGenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/snd/snd_EnvGenerator.cpp -------------------------------------------------------------------------------- /src/nw4r/snd/snd_EnvGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/snd/snd_EnvGenerator.h -------------------------------------------------------------------------------- /src/nw4r/snd/snd_FrameHeap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/snd/snd_FrameHeap.cpp -------------------------------------------------------------------------------- /src/nw4r/snd/snd_FrameHeap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/snd/snd_FrameHeap.h -------------------------------------------------------------------------------- /src/nw4r/snd/snd_FxBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/snd/snd_FxBase.h -------------------------------------------------------------------------------- /src/nw4r/snd/snd_FxChorus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/snd/snd_FxChorus.cpp -------------------------------------------------------------------------------- /src/nw4r/snd/snd_FxChorus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/snd/snd_FxChorus.h -------------------------------------------------------------------------------- /src/nw4r/snd/snd_FxDelay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/snd/snd_FxDelay.cpp -------------------------------------------------------------------------------- /src/nw4r/snd/snd_FxDelay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/snd/snd_FxDelay.h -------------------------------------------------------------------------------- /src/nw4r/snd/snd_FxReverbHi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/snd/snd_FxReverbHi.cpp -------------------------------------------------------------------------------- /src/nw4r/snd/snd_FxReverbHi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/snd/snd_FxReverbHi.h -------------------------------------------------------------------------------- /src/nw4r/snd/snd_FxReverbHiDpl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/snd/snd_FxReverbHiDpl2.h -------------------------------------------------------------------------------- /src/nw4r/snd/snd_InstancePool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/snd/snd_InstancePool.cpp -------------------------------------------------------------------------------- /src/nw4r/snd/snd_InstancePool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/snd/snd_InstancePool.h -------------------------------------------------------------------------------- /src/nw4r/snd/snd_Lfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/snd/snd_Lfo.cpp -------------------------------------------------------------------------------- /src/nw4r/snd/snd_Lfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/snd/snd_Lfo.h -------------------------------------------------------------------------------- /src/nw4r/snd/snd_MidiSeqPlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/snd/snd_MidiSeqPlayer.cpp -------------------------------------------------------------------------------- /src/nw4r/snd/snd_MmlParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/snd/snd_MmlParser.cpp -------------------------------------------------------------------------------- /src/nw4r/snd/snd_MmlParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/snd/snd_MmlParser.h -------------------------------------------------------------------------------- /src/nw4r/snd/snd_MmlSeqTrack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/snd/snd_MmlSeqTrack.cpp -------------------------------------------------------------------------------- /src/nw4r/snd/snd_MmlSeqTrack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/snd/snd_MmlSeqTrack.h -------------------------------------------------------------------------------- /src/nw4r/snd/snd_MoveValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/snd/snd_MoveValue.h -------------------------------------------------------------------------------- /src/nw4r/snd/snd_NoteOnCallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/snd/snd_NoteOnCallback.h -------------------------------------------------------------------------------- /src/nw4r/snd/snd_PlayerHeap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/snd/snd_PlayerHeap.h -------------------------------------------------------------------------------- /src/nw4r/snd/snd_RemoteSpeaker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/snd/snd_RemoteSpeaker.cpp -------------------------------------------------------------------------------- /src/nw4r/snd/snd_RemoteSpeaker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/snd/snd_RemoteSpeaker.h -------------------------------------------------------------------------------- /src/nw4r/snd/snd_SeqFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/snd/snd_SeqFile.cpp -------------------------------------------------------------------------------- /src/nw4r/snd/snd_SeqFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/snd/snd_SeqFile.h -------------------------------------------------------------------------------- /src/nw4r/snd/snd_SeqPlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/snd/snd_SeqPlayer.cpp -------------------------------------------------------------------------------- /src/nw4r/snd/snd_SeqPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/snd/snd_SeqPlayer.h -------------------------------------------------------------------------------- /src/nw4r/snd/snd_SeqSound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/snd/snd_SeqSound.cpp -------------------------------------------------------------------------------- /src/nw4r/snd/snd_SeqSound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/snd/snd_SeqSound.h -------------------------------------------------------------------------------- /src/nw4r/snd/snd_SeqSoundHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/snd/snd_SeqSoundHandle.h -------------------------------------------------------------------------------- /src/nw4r/snd/snd_SeqTrack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/snd/snd_SeqTrack.cpp -------------------------------------------------------------------------------- /src/nw4r/snd/snd_SeqTrack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/snd/snd_SeqTrack.h -------------------------------------------------------------------------------- /src/nw4r/snd/snd_Sound3DActor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/snd/snd_Sound3DActor.cpp -------------------------------------------------------------------------------- /src/nw4r/snd/snd_Sound3DActor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/snd/snd_Sound3DActor.h -------------------------------------------------------------------------------- /src/nw4r/snd/snd_Sound3DListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/snd/snd_Sound3DListener.h -------------------------------------------------------------------------------- /src/nw4r/snd/snd_Sound3DManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/snd/snd_Sound3DManager.h -------------------------------------------------------------------------------- /src/nw4r/snd/snd_SoundActor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/snd/snd_SoundActor.cpp -------------------------------------------------------------------------------- /src/nw4r/snd/snd_SoundActor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/snd/snd_SoundActor.h -------------------------------------------------------------------------------- /src/nw4r/snd/snd_SoundArchive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/snd/snd_SoundArchive.cpp -------------------------------------------------------------------------------- /src/nw4r/snd/snd_SoundArchive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/snd/snd_SoundArchive.h -------------------------------------------------------------------------------- /src/nw4r/snd/snd_SoundHandle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/snd/snd_SoundHandle.cpp -------------------------------------------------------------------------------- /src/nw4r/snd/snd_SoundHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/snd/snd_SoundHandle.h -------------------------------------------------------------------------------- /src/nw4r/snd/snd_SoundHeap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/snd/snd_SoundHeap.cpp -------------------------------------------------------------------------------- /src/nw4r/snd/snd_SoundHeap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/snd/snd_SoundHeap.h -------------------------------------------------------------------------------- /src/nw4r/snd/snd_SoundPlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/snd/snd_SoundPlayer.cpp -------------------------------------------------------------------------------- /src/nw4r/snd/snd_SoundPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/snd/snd_SoundPlayer.h -------------------------------------------------------------------------------- /src/nw4r/snd/snd_SoundStartable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/snd/snd_SoundStartable.h -------------------------------------------------------------------------------- /src/nw4r/snd/snd_SoundSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/snd/snd_SoundSystem.cpp -------------------------------------------------------------------------------- /src/nw4r/snd/snd_SoundSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/snd/snd_SoundSystem.h -------------------------------------------------------------------------------- /src/nw4r/snd/snd_SoundThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/snd/snd_SoundThread.cpp -------------------------------------------------------------------------------- /src/nw4r/snd/snd_SoundThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/snd/snd_SoundThread.h -------------------------------------------------------------------------------- /src/nw4r/snd/snd_StrmChannel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/snd/snd_StrmChannel.cpp -------------------------------------------------------------------------------- /src/nw4r/snd/snd_StrmChannel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/snd/snd_StrmChannel.h -------------------------------------------------------------------------------- /src/nw4r/snd/snd_StrmFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/snd/snd_StrmFile.cpp -------------------------------------------------------------------------------- /src/nw4r/snd/snd_StrmFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/snd/snd_StrmFile.h -------------------------------------------------------------------------------- /src/nw4r/snd/snd_StrmPlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/snd/snd_StrmPlayer.cpp -------------------------------------------------------------------------------- /src/nw4r/snd/snd_StrmPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/snd/snd_StrmPlayer.h -------------------------------------------------------------------------------- /src/nw4r/snd/snd_StrmSound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/snd/snd_StrmSound.cpp -------------------------------------------------------------------------------- /src/nw4r/snd/snd_StrmSound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/snd/snd_StrmSound.h -------------------------------------------------------------------------------- /src/nw4r/snd/snd_StrmSoundHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/snd/snd_StrmSoundHandle.h -------------------------------------------------------------------------------- /src/nw4r/snd/snd_Task.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/snd/snd_Task.cpp -------------------------------------------------------------------------------- /src/nw4r/snd/snd_Task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/snd/snd_Task.h -------------------------------------------------------------------------------- /src/nw4r/snd/snd_TaskManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/snd/snd_TaskManager.cpp -------------------------------------------------------------------------------- /src/nw4r/snd/snd_TaskManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/snd/snd_TaskManager.h -------------------------------------------------------------------------------- /src/nw4r/snd/snd_TaskThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/snd/snd_TaskThread.cpp -------------------------------------------------------------------------------- /src/nw4r/snd/snd_TaskThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/snd/snd_TaskThread.h -------------------------------------------------------------------------------- /src/nw4r/snd/snd_Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/snd/snd_Types.h -------------------------------------------------------------------------------- /src/nw4r/snd/snd_Util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/snd/snd_Util.cpp -------------------------------------------------------------------------------- /src/nw4r/snd/snd_Util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/snd/snd_Util.h -------------------------------------------------------------------------------- /src/nw4r/snd/snd_Voice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/snd/snd_Voice.cpp -------------------------------------------------------------------------------- /src/nw4r/snd/snd_Voice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/snd/snd_Voice.h -------------------------------------------------------------------------------- /src/nw4r/snd/snd_VoiceManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/snd/snd_VoiceManager.cpp -------------------------------------------------------------------------------- /src/nw4r/snd/snd_VoiceManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/snd/snd_VoiceManager.h -------------------------------------------------------------------------------- /src/nw4r/snd/snd_WaveFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/snd/snd_WaveFile.cpp -------------------------------------------------------------------------------- /src/nw4r/snd/snd_WaveFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/snd/snd_WaveFile.h -------------------------------------------------------------------------------- /src/nw4r/snd/snd_WaveSound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/snd/snd_WaveSound.cpp -------------------------------------------------------------------------------- /src/nw4r/snd/snd_WaveSound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/snd/snd_WaveSound.h -------------------------------------------------------------------------------- /src/nw4r/snd/snd_WaveSoundHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/snd/snd_WaveSoundHandle.h -------------------------------------------------------------------------------- /src/nw4r/snd/snd_WsdFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/snd/snd_WsdFile.cpp -------------------------------------------------------------------------------- /src/nw4r/snd/snd_WsdFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/snd/snd_WsdFile.h -------------------------------------------------------------------------------- /src/nw4r/snd/snd_WsdPlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/snd/snd_WsdPlayer.cpp -------------------------------------------------------------------------------- /src/nw4r/snd/snd_WsdPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/snd/snd_WsdPlayer.h -------------------------------------------------------------------------------- /src/nw4r/snd/snd_adpcm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/snd/snd_adpcm.cpp -------------------------------------------------------------------------------- /src/nw4r/snd/snd_adpcm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/snd/snd_adpcm.h -------------------------------------------------------------------------------- /src/nw4r/types_nw4r.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/types_nw4r.h -------------------------------------------------------------------------------- /src/nw4r/ut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/ut.h -------------------------------------------------------------------------------- /src/nw4r/ut/ut_CharStrmReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/ut/ut_CharStrmReader.cpp -------------------------------------------------------------------------------- /src/nw4r/ut/ut_CharStrmReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/ut/ut_CharStrmReader.h -------------------------------------------------------------------------------- /src/nw4r/ut/ut_CharWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/ut/ut_CharWriter.cpp -------------------------------------------------------------------------------- /src/nw4r/ut/ut_CharWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/ut/ut_CharWriter.h -------------------------------------------------------------------------------- /src/nw4r/ut/ut_Color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/ut/ut_Color.h -------------------------------------------------------------------------------- /src/nw4r/ut/ut_DvdFileStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/ut/ut_DvdFileStream.cpp -------------------------------------------------------------------------------- /src/nw4r/ut/ut_DvdFileStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/ut/ut_DvdFileStream.h -------------------------------------------------------------------------------- /src/nw4r/ut/ut_FileStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/ut/ut_FileStream.cpp -------------------------------------------------------------------------------- /src/nw4r/ut/ut_FileStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/ut/ut_FileStream.h -------------------------------------------------------------------------------- /src/nw4r/ut/ut_Font.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/ut/ut_Font.cpp -------------------------------------------------------------------------------- /src/nw4r/ut/ut_Font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/ut/ut_Font.h -------------------------------------------------------------------------------- /src/nw4r/ut/ut_IOStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/ut/ut_IOStream.cpp -------------------------------------------------------------------------------- /src/nw4r/ut/ut_IOStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/ut/ut_IOStream.h -------------------------------------------------------------------------------- /src/nw4r/ut/ut_LinkList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/ut/ut_LinkList.cpp -------------------------------------------------------------------------------- /src/nw4r/ut/ut_LinkList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/ut/ut_LinkList.h -------------------------------------------------------------------------------- /src/nw4r/ut/ut_LockedCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/ut/ut_LockedCache.cpp -------------------------------------------------------------------------------- /src/nw4r/ut/ut_LockedCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/ut/ut_LockedCache.h -------------------------------------------------------------------------------- /src/nw4r/ut/ut_NandFileStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/ut/ut_NandFileStream.cpp -------------------------------------------------------------------------------- /src/nw4r/ut/ut_NandFileStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/ut/ut_NandFileStream.h -------------------------------------------------------------------------------- /src/nw4r/ut/ut_NonCopyable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/ut/ut_NonCopyable.h -------------------------------------------------------------------------------- /src/nw4r/ut/ut_Rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/ut/ut_Rect.h -------------------------------------------------------------------------------- /src/nw4r/ut/ut_ResFont.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/ut/ut_ResFont.cpp -------------------------------------------------------------------------------- /src/nw4r/ut/ut_ResFont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/ut/ut_ResFont.h -------------------------------------------------------------------------------- /src/nw4r/ut/ut_ResFontBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/ut/ut_ResFontBase.cpp -------------------------------------------------------------------------------- /src/nw4r/ut/ut_ResFontBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/ut/ut_ResFontBase.h -------------------------------------------------------------------------------- /src/nw4r/ut/ut_RomFont.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/ut/ut_RomFont.cpp -------------------------------------------------------------------------------- /src/nw4r/ut/ut_RomFont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/ut/ut_RomFont.h -------------------------------------------------------------------------------- /src/nw4r/ut/ut_RuntimeTypeInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/ut/ut_RuntimeTypeInfo.h -------------------------------------------------------------------------------- /src/nw4r/ut/ut_TagProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/ut/ut_TagProcessor.h -------------------------------------------------------------------------------- /src/nw4r/ut/ut_TagProcessorBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/ut/ut_TagProcessorBase.h -------------------------------------------------------------------------------- /src/nw4r/ut/ut_TextWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/ut/ut_TextWriter.h -------------------------------------------------------------------------------- /src/nw4r/ut/ut_TextWriterBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/ut/ut_TextWriterBase.cpp -------------------------------------------------------------------------------- /src/nw4r/ut/ut_TextWriterBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/ut/ut_TextWriterBase.h -------------------------------------------------------------------------------- /src/nw4r/ut/ut_WideTagProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/ut/ut_WideTagProcessor.h -------------------------------------------------------------------------------- /src/nw4r/ut/ut_WideTextWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/ut/ut_WideTextWriter.h -------------------------------------------------------------------------------- /src/nw4r/ut/ut_algorithm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/ut/ut_algorithm.h -------------------------------------------------------------------------------- /src/nw4r/ut/ut_binaryFileFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/ut/ut_binaryFileFormat.h -------------------------------------------------------------------------------- /src/nw4r/ut/ut_list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/ut/ut_list.cpp -------------------------------------------------------------------------------- /src/nw4r/ut/ut_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/ut/ut_list.h -------------------------------------------------------------------------------- /src/nw4r/ut/ut_lock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/nw4r/ut/ut_lock.h -------------------------------------------------------------------------------- /src/revolution/AI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/AI.h -------------------------------------------------------------------------------- /src/revolution/AI/ai.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/AI/ai.c -------------------------------------------------------------------------------- /src/revolution/AI/ai.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/AI/ai.h -------------------------------------------------------------------------------- /src/revolution/AI/ai_hardware.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/AI/ai_hardware.h -------------------------------------------------------------------------------- /src/revolution/ARC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/ARC.h -------------------------------------------------------------------------------- /src/revolution/ARC/arc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/ARC/arc.c -------------------------------------------------------------------------------- /src/revolution/ARC/arc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/ARC/arc.h -------------------------------------------------------------------------------- /src/revolution/AX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/AX.h -------------------------------------------------------------------------------- /src/revolution/AX/AX.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/AX/AX.c -------------------------------------------------------------------------------- /src/revolution/AX/AX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/AX/AX.h -------------------------------------------------------------------------------- /src/revolution/AX/AXAlloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/AX/AXAlloc.c -------------------------------------------------------------------------------- /src/revolution/AX/AXAlloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/AX/AXAlloc.h -------------------------------------------------------------------------------- /src/revolution/AX/AXAux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/AX/AXAux.c -------------------------------------------------------------------------------- /src/revolution/AX/AXAux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/AX/AXAux.h -------------------------------------------------------------------------------- /src/revolution/AX/AXCL.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/AX/AXCL.c -------------------------------------------------------------------------------- /src/revolution/AX/AXCL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/AX/AXCL.h -------------------------------------------------------------------------------- /src/revolution/AX/AXComp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/AX/AXComp.c -------------------------------------------------------------------------------- /src/revolution/AX/AXComp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/AX/AXComp.h -------------------------------------------------------------------------------- /src/revolution/AX/AXOut.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/AX/AXOut.c -------------------------------------------------------------------------------- /src/revolution/AX/AXOut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/AX/AXOut.h -------------------------------------------------------------------------------- /src/revolution/AX/AXPB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/AX/AXPB.h -------------------------------------------------------------------------------- /src/revolution/AX/AXProf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/AX/AXProf.c -------------------------------------------------------------------------------- /src/revolution/AX/AXProf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/AX/AXProf.h -------------------------------------------------------------------------------- /src/revolution/AX/AXSPB.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/AX/AXSPB.c -------------------------------------------------------------------------------- /src/revolution/AX/AXSPB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/AX/AXSPB.h -------------------------------------------------------------------------------- /src/revolution/AX/AXVPB.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/AX/AXVPB.c -------------------------------------------------------------------------------- /src/revolution/AX/AXVPB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/AX/AXVPB.h -------------------------------------------------------------------------------- /src/revolution/AX/DSPCode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/AX/DSPCode.c -------------------------------------------------------------------------------- /src/revolution/AX/DSPCode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/AX/DSPCode.h -------------------------------------------------------------------------------- /src/revolution/AXFX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/AXFX.h -------------------------------------------------------------------------------- /src/revolution/AXFX/AXFXChorus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/AXFX/AXFXChorus.c -------------------------------------------------------------------------------- /src/revolution/AXFX/AXFXChorus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/AXFX/AXFXChorus.h -------------------------------------------------------------------------------- /src/revolution/AXFX/AXFXCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/AXFX/AXFXCommon.h -------------------------------------------------------------------------------- /src/revolution/AXFX/AXFXDelay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/AXFX/AXFXDelay.c -------------------------------------------------------------------------------- /src/revolution/AXFX/AXFXDelay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/AXFX/AXFXDelay.h -------------------------------------------------------------------------------- /src/revolution/AXFX/AXFXHooks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/AXFX/AXFXHooks.c -------------------------------------------------------------------------------- /src/revolution/AXFX/AXFXHooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/AXFX/AXFXHooks.h -------------------------------------------------------------------------------- /src/revolution/AXFX/AXFXLfoTable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/AXFX/AXFXLfoTable.c -------------------------------------------------------------------------------- /src/revolution/AXFX/AXFXLfoTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/AXFX/AXFXLfoTable.h -------------------------------------------------------------------------------- /src/revolution/AXFX/AXFXReverbHi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/AXFX/AXFXReverbHi.c -------------------------------------------------------------------------------- /src/revolution/AXFX/AXFXReverbHi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/AXFX/AXFXReverbHi.h -------------------------------------------------------------------------------- /src/revolution/AXFX/AXFXSrcCoef.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/AXFX/AXFXSrcCoef.c -------------------------------------------------------------------------------- /src/revolution/AXFX/AXFXSrcCoef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/AXFX/AXFXSrcCoef.h -------------------------------------------------------------------------------- /src/revolution/BASE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/BASE.h -------------------------------------------------------------------------------- /src/revolution/BASE/PPCArch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/BASE/PPCArch.c -------------------------------------------------------------------------------- /src/revolution/BASE/PPCArch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/BASE/PPCArch.h -------------------------------------------------------------------------------- /src/revolution/CARD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/CARD.h -------------------------------------------------------------------------------- /src/revolution/CARD/CARD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/CARD/CARD.h -------------------------------------------------------------------------------- /src/revolution/CNT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/CNT.h -------------------------------------------------------------------------------- /src/revolution/CNT/cnt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/CNT/cnt.c -------------------------------------------------------------------------------- /src/revolution/CNT/cnt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/CNT/cnt.h -------------------------------------------------------------------------------- /src/revolution/DB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/DB.h -------------------------------------------------------------------------------- /src/revolution/DB/db.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/DB/db.c -------------------------------------------------------------------------------- /src/revolution/DB/db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/DB/db.h -------------------------------------------------------------------------------- /src/revolution/DSP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/DSP.h -------------------------------------------------------------------------------- /src/revolution/DSP/dsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/DSP/dsp.c -------------------------------------------------------------------------------- /src/revolution/DSP/dsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/DSP/dsp.h -------------------------------------------------------------------------------- /src/revolution/DSP/dsp_debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/DSP/dsp_debug.c -------------------------------------------------------------------------------- /src/revolution/DSP/dsp_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/DSP/dsp_debug.h -------------------------------------------------------------------------------- /src/revolution/DSP/dsp_hardware.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/DSP/dsp_hardware.h -------------------------------------------------------------------------------- /src/revolution/DSP/dsp_task.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/DSP/dsp_task.c -------------------------------------------------------------------------------- /src/revolution/DSP/dsp_task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/DSP/dsp_task.h -------------------------------------------------------------------------------- /src/revolution/DVD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/DVD.h -------------------------------------------------------------------------------- /src/revolution/DVD/dvd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/DVD/dvd.c -------------------------------------------------------------------------------- /src/revolution/DVD/dvd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/DVD/dvd.h -------------------------------------------------------------------------------- /src/revolution/DVD/dvdFatal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/DVD/dvdFatal.c -------------------------------------------------------------------------------- /src/revolution/DVD/dvd_broadway.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/DVD/dvd_broadway.c -------------------------------------------------------------------------------- /src/revolution/DVD/dvd_broadway.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/DVD/dvd_broadway.h -------------------------------------------------------------------------------- /src/revolution/DVD/dvderror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/DVD/dvderror.c -------------------------------------------------------------------------------- /src/revolution/DVD/dvderror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/DVD/dvderror.h -------------------------------------------------------------------------------- /src/revolution/DVD/dvdfatal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/DVD/dvdfatal.h -------------------------------------------------------------------------------- /src/revolution/DVD/dvdfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/DVD/dvdfs.c -------------------------------------------------------------------------------- /src/revolution/DVD/dvdfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/DVD/dvdfs.h -------------------------------------------------------------------------------- /src/revolution/DVD/dvdidutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/DVD/dvdidutils.c -------------------------------------------------------------------------------- /src/revolution/DVD/dvdidutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/DVD/dvdidutils.h -------------------------------------------------------------------------------- /src/revolution/DVD/dvdqueue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/DVD/dvdqueue.c -------------------------------------------------------------------------------- /src/revolution/DVD/dvdqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/DVD/dvdqueue.h -------------------------------------------------------------------------------- /src/revolution/ESP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/ESP.h -------------------------------------------------------------------------------- /src/revolution/ESP/esp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/ESP/esp.c -------------------------------------------------------------------------------- /src/revolution/ESP/esp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/ESP/esp.h -------------------------------------------------------------------------------- /src/revolution/EUART.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/EUART.h -------------------------------------------------------------------------------- /src/revolution/EUART/euart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/EUART/euart.c -------------------------------------------------------------------------------- /src/revolution/EUART/euart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/EUART/euart.h -------------------------------------------------------------------------------- /src/revolution/EXI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/EXI.h -------------------------------------------------------------------------------- /src/revolution/EXI/EXIBios.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/EXI/EXIBios.c -------------------------------------------------------------------------------- /src/revolution/EXI/EXIBios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/EXI/EXIBios.h -------------------------------------------------------------------------------- /src/revolution/EXI/EXICommon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/EXI/EXICommon.c -------------------------------------------------------------------------------- /src/revolution/EXI/EXICommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/EXI/EXICommon.h -------------------------------------------------------------------------------- /src/revolution/EXI/EXIUart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/EXI/EXIUart.c -------------------------------------------------------------------------------- /src/revolution/EXI/EXIUart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/EXI/EXIUart.h -------------------------------------------------------------------------------- /src/revolution/FS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/FS.h -------------------------------------------------------------------------------- /src/revolution/FS/fs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/FS/fs.c -------------------------------------------------------------------------------- /src/revolution/FS/fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/FS/fs.h -------------------------------------------------------------------------------- /src/revolution/GX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/GX.h -------------------------------------------------------------------------------- /src/revolution/GX/GXAttr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/GX/GXAttr.c -------------------------------------------------------------------------------- /src/revolution/GX/GXAttr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/GX/GXAttr.h -------------------------------------------------------------------------------- /src/revolution/GX/GXBump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/GX/GXBump.c -------------------------------------------------------------------------------- /src/revolution/GX/GXBump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/GX/GXBump.h -------------------------------------------------------------------------------- /src/revolution/GX/GXDraw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/GX/GXDraw.c -------------------------------------------------------------------------------- /src/revolution/GX/GXDraw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/GX/GXDraw.h -------------------------------------------------------------------------------- /src/revolution/GX/GXFifo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/GX/GXFifo.h -------------------------------------------------------------------------------- /src/revolution/GX/GXFrameBuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/GX/GXFrameBuf.h -------------------------------------------------------------------------------- /src/revolution/GX/GXGeometry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/GX/GXGeometry.c -------------------------------------------------------------------------------- /src/revolution/GX/GXGeometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/GX/GXGeometry.h -------------------------------------------------------------------------------- /src/revolution/GX/GXHardware.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/GX/GXHardware.h -------------------------------------------------------------------------------- /src/revolution/GX/GXInit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/GX/GXInit.h -------------------------------------------------------------------------------- /src/revolution/GX/GXInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/GX/GXInternal.h -------------------------------------------------------------------------------- /src/revolution/GX/GXLight.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/GX/GXLight.c -------------------------------------------------------------------------------- /src/revolution/GX/GXLight.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/GX/GXLight.h -------------------------------------------------------------------------------- /src/revolution/GX/GXMisc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/GX/GXMisc.h -------------------------------------------------------------------------------- /src/revolution/GX/GXPixel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/GX/GXPixel.c -------------------------------------------------------------------------------- /src/revolution/GX/GXPixel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/GX/GXPixel.h -------------------------------------------------------------------------------- /src/revolution/GX/GXTev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/GX/GXTev.h -------------------------------------------------------------------------------- /src/revolution/GX/GXTexture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/GX/GXTexture.h -------------------------------------------------------------------------------- /src/revolution/GX/GXTransform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/GX/GXTransform.c -------------------------------------------------------------------------------- /src/revolution/GX/GXTransform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/GX/GXTransform.h -------------------------------------------------------------------------------- /src/revolution/GX/GXTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/GX/GXTypes.h -------------------------------------------------------------------------------- /src/revolution/GX/GXVert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/GX/GXVert.h -------------------------------------------------------------------------------- /src/revolution/HBM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/HBM.h -------------------------------------------------------------------------------- /src/revolution/HBM/HBMCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/HBM/HBMCommon.h -------------------------------------------------------------------------------- /src/revolution/HBM/HBMConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/HBM/HBMConfig.h -------------------------------------------------------------------------------- /src/revolution/IPC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/IPC.h -------------------------------------------------------------------------------- /src/revolution/IPC/ipcMain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/IPC/ipcMain.c -------------------------------------------------------------------------------- /src/revolution/IPC/ipcMain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/IPC/ipcMain.h -------------------------------------------------------------------------------- /src/revolution/IPC/ipcProfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/IPC/ipcProfile.c -------------------------------------------------------------------------------- /src/revolution/IPC/ipcProfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/IPC/ipcProfile.h -------------------------------------------------------------------------------- /src/revolution/IPC/ipcclt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/IPC/ipcclt.c -------------------------------------------------------------------------------- /src/revolution/IPC/ipcclt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/IPC/ipcclt.h -------------------------------------------------------------------------------- /src/revolution/IPC/memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/IPC/memory.c -------------------------------------------------------------------------------- /src/revolution/IPC/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/IPC/memory.h -------------------------------------------------------------------------------- /src/revolution/KPAD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/KPAD.h -------------------------------------------------------------------------------- /src/revolution/KPAD/KPAD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/KPAD/KPAD.h -------------------------------------------------------------------------------- /src/revolution/MEM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/MEM.h -------------------------------------------------------------------------------- /src/revolution/MEM/mem_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/MEM/mem_list.c -------------------------------------------------------------------------------- /src/revolution/MEM/mem_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/MEM/mem_list.h -------------------------------------------------------------------------------- /src/revolution/MTX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/MTX.h -------------------------------------------------------------------------------- /src/revolution/MTX/mtx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/MTX/mtx.h -------------------------------------------------------------------------------- /src/revolution/MTX/mtx44.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/MTX/mtx44.c -------------------------------------------------------------------------------- /src/revolution/MTX/mtx44.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/MTX/mtx44.h -------------------------------------------------------------------------------- /src/revolution/MTX/mtxvec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/MTX/mtxvec.c -------------------------------------------------------------------------------- /src/revolution/MTX/mtxvec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/MTX/mtxvec.h -------------------------------------------------------------------------------- /src/revolution/MTX/quat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/MTX/quat.c -------------------------------------------------------------------------------- /src/revolution/MTX/quat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/MTX/quat.h -------------------------------------------------------------------------------- /src/revolution/MTX/vec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/MTX/vec.c -------------------------------------------------------------------------------- /src/revolution/MTX/vec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/MTX/vec.h -------------------------------------------------------------------------------- /src/revolution/NAND.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/NAND.h -------------------------------------------------------------------------------- /src/revolution/NAND/NANDCheck.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/NAND/NANDCheck.c -------------------------------------------------------------------------------- /src/revolution/NAND/NANDCheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/NAND/NANDCheck.h -------------------------------------------------------------------------------- /src/revolution/NAND/NANDCore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/NAND/NANDCore.c -------------------------------------------------------------------------------- /src/revolution/NAND/NANDCore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/NAND/NANDCore.h -------------------------------------------------------------------------------- /src/revolution/NAND/nand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/NAND/nand.c -------------------------------------------------------------------------------- /src/revolution/NAND/nand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/NAND/nand.h -------------------------------------------------------------------------------- /src/revolution/NWC24.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/NWC24.h -------------------------------------------------------------------------------- /src/revolution/NWC24/NWC24Ipc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/NWC24/NWC24Ipc.c -------------------------------------------------------------------------------- /src/revolution/NWC24/NWC24Ipc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/NWC24/NWC24Ipc.h -------------------------------------------------------------------------------- /src/revolution/NdevExi2AD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/NdevExi2AD.h -------------------------------------------------------------------------------- /src/revolution/OS/OS.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/OS/OS.c -------------------------------------------------------------------------------- /src/revolution/OS/OS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/OS/OS.h -------------------------------------------------------------------------------- /src/revolution/OS/OSAddress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/OS/OSAddress.h -------------------------------------------------------------------------------- /src/revolution/OS/OSAlarm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/OS/OSAlarm.c -------------------------------------------------------------------------------- /src/revolution/OS/OSAlarm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/OS/OSAlarm.h -------------------------------------------------------------------------------- /src/revolution/OS/OSAlloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/OS/OSAlloc.c -------------------------------------------------------------------------------- /src/revolution/OS/OSAlloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/OS/OSAlloc.h -------------------------------------------------------------------------------- /src/revolution/OS/OSArena.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/OS/OSArena.c -------------------------------------------------------------------------------- /src/revolution/OS/OSArena.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/OS/OSArena.h -------------------------------------------------------------------------------- /src/revolution/OS/OSCache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/OS/OSCache.c -------------------------------------------------------------------------------- /src/revolution/OS/OSCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/OS/OSCache.h -------------------------------------------------------------------------------- /src/revolution/OS/OSContext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/OS/OSContext.c -------------------------------------------------------------------------------- /src/revolution/OS/OSContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/OS/OSContext.h -------------------------------------------------------------------------------- /src/revolution/OS/OSError.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/OS/OSError.c -------------------------------------------------------------------------------- /src/revolution/OS/OSError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/OS/OSError.h -------------------------------------------------------------------------------- /src/revolution/OS/OSExec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/OS/OSExec.c -------------------------------------------------------------------------------- /src/revolution/OS/OSExec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/OS/OSExec.h -------------------------------------------------------------------------------- /src/revolution/OS/OSFastCast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/OS/OSFastCast.h -------------------------------------------------------------------------------- /src/revolution/OS/OSFatal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/OS/OSFatal.c -------------------------------------------------------------------------------- /src/revolution/OS/OSFatal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/OS/OSFatal.h -------------------------------------------------------------------------------- /src/revolution/OS/OSFont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/OS/OSFont.c -------------------------------------------------------------------------------- /src/revolution/OS/OSFont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/OS/OSFont.h -------------------------------------------------------------------------------- /src/revolution/OS/OSHardware.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/OS/OSHardware.h -------------------------------------------------------------------------------- /src/revolution/OS/OSInterrupt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/OS/OSInterrupt.c -------------------------------------------------------------------------------- /src/revolution/OS/OSInterrupt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/OS/OSInterrupt.h -------------------------------------------------------------------------------- /src/revolution/OS/OSIpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/OS/OSIpc.c -------------------------------------------------------------------------------- /src/revolution/OS/OSIpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/OS/OSIpc.h -------------------------------------------------------------------------------- /src/revolution/OS/OSLink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/OS/OSLink.c -------------------------------------------------------------------------------- /src/revolution/OS/OSLink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/OS/OSLink.h -------------------------------------------------------------------------------- /src/revolution/OS/OSMemory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/OS/OSMemory.c -------------------------------------------------------------------------------- /src/revolution/OS/OSMemory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/OS/OSMemory.h -------------------------------------------------------------------------------- /src/revolution/OS/OSMessage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/OS/OSMessage.c -------------------------------------------------------------------------------- /src/revolution/OS/OSMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/OS/OSMessage.h -------------------------------------------------------------------------------- /src/revolution/OS/OSMutex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/OS/OSMutex.c -------------------------------------------------------------------------------- /src/revolution/OS/OSMutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/OS/OSMutex.h -------------------------------------------------------------------------------- /src/revolution/OS/OSNet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/OS/OSNet.c -------------------------------------------------------------------------------- /src/revolution/OS/OSNet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/OS/OSNet.h -------------------------------------------------------------------------------- /src/revolution/OS/OSReset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/OS/OSReset.c -------------------------------------------------------------------------------- /src/revolution/OS/OSReset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/OS/OSReset.h -------------------------------------------------------------------------------- /src/revolution/OS/OSRtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/OS/OSRtc.c -------------------------------------------------------------------------------- /src/revolution/OS/OSRtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/OS/OSRtc.h -------------------------------------------------------------------------------- /src/revolution/OS/OSStateTM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/OS/OSStateTM.c -------------------------------------------------------------------------------- /src/revolution/OS/OSStateTM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/OS/OSStateTM.h -------------------------------------------------------------------------------- /src/revolution/OS/OSSync.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/OS/OSSync.c -------------------------------------------------------------------------------- /src/revolution/OS/OSSync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/OS/OSSync.h -------------------------------------------------------------------------------- /src/revolution/OS/OSThread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/OS/OSThread.c -------------------------------------------------------------------------------- /src/revolution/OS/OSThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/OS/OSThread.h -------------------------------------------------------------------------------- /src/revolution/OS/OSTime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/OS/OSTime.c -------------------------------------------------------------------------------- /src/revolution/OS/OSTime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/OS/OSTime.h -------------------------------------------------------------------------------- /src/revolution/OS/OSUtf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/OS/OSUtf.c -------------------------------------------------------------------------------- /src/revolution/OS/OSUtf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/OS/OSUtf.h -------------------------------------------------------------------------------- /src/revolution/OS/__start.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/OS/__start.c -------------------------------------------------------------------------------- /src/revolution/PAD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/PAD.h -------------------------------------------------------------------------------- /src/revolution/PAD/Pad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/PAD/Pad.c -------------------------------------------------------------------------------- /src/revolution/PAD/Pad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/PAD/Pad.h -------------------------------------------------------------------------------- /src/revolution/SC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/SC.h -------------------------------------------------------------------------------- /src/revolution/SC/scapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/SC/scapi.c -------------------------------------------------------------------------------- /src/revolution/SC/scapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/SC/scapi.h -------------------------------------------------------------------------------- /src/revolution/SC/scsystem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/SC/scsystem.c -------------------------------------------------------------------------------- /src/revolution/SC/scsystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/SC/scsystem.h -------------------------------------------------------------------------------- /src/revolution/SI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/SI.h -------------------------------------------------------------------------------- /src/revolution/SI/SIBios.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/SI/SIBios.c -------------------------------------------------------------------------------- /src/revolution/SI/SIBios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/SI/SIBios.h -------------------------------------------------------------------------------- /src/revolution/SI/SIHardware.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/SI/SIHardware.h -------------------------------------------------------------------------------- /src/revolution/TPL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/TPL.h -------------------------------------------------------------------------------- /src/revolution/TPL/TPL.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/TPL/TPL.c -------------------------------------------------------------------------------- /src/revolution/TPL/TPL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/TPL/TPL.h -------------------------------------------------------------------------------- /src/revolution/USB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/USB.h -------------------------------------------------------------------------------- /src/revolution/USB/usb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/USB/usb.c -------------------------------------------------------------------------------- /src/revolution/USB/usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/USB/usb.h -------------------------------------------------------------------------------- /src/revolution/VF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/VF.h -------------------------------------------------------------------------------- /src/revolution/VF/d_vf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/VF/d_vf.h -------------------------------------------------------------------------------- /src/revolution/VI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/VI.h -------------------------------------------------------------------------------- /src/revolution/VI/vi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/VI/vi.h -------------------------------------------------------------------------------- /src/revolution/VI/vi3in1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/VI/vi3in1.h -------------------------------------------------------------------------------- /src/revolution/VI/vihardware.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/VI/vihardware.h -------------------------------------------------------------------------------- /src/revolution/WENC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/WENC.h -------------------------------------------------------------------------------- /src/revolution/WENC/wenc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/WENC/wenc.c -------------------------------------------------------------------------------- /src/revolution/WENC/wenc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/WENC/wenc.h -------------------------------------------------------------------------------- /src/revolution/WPAD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/WPAD.h -------------------------------------------------------------------------------- /src/revolution/WPAD/WPAD.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/WPAD/WPAD.c -------------------------------------------------------------------------------- /src/revolution/WPAD/WPAD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/WPAD/WPAD.h -------------------------------------------------------------------------------- /src/revolution/WPAD/WPADMem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/WPAD/WPADMem.c -------------------------------------------------------------------------------- /src/revolution/WPAD/WPADMem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/WPAD/WPADMem.h -------------------------------------------------------------------------------- /src/revolution/WPAD/WUD.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/WPAD/WUD.c -------------------------------------------------------------------------------- /src/revolution/WPAD/WUD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/WPAD/WUD.h -------------------------------------------------------------------------------- /src/revolution/WPAD/lint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/WPAD/lint.c -------------------------------------------------------------------------------- /src/revolution/WPAD/lint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/WPAD/lint.h -------------------------------------------------------------------------------- /src/revolution/WPADMem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/WPADMem.h -------------------------------------------------------------------------------- /src/revolution/WUD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/WUD.h -------------------------------------------------------------------------------- /src/revolution/context_bte.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/context_bte.h -------------------------------------------------------------------------------- /src/revolution/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/macros.h -------------------------------------------------------------------------------- /src/revolution/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/os.h -------------------------------------------------------------------------------- /src/revolution/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/revolution/types.h -------------------------------------------------------------------------------- /src/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/src/types.h -------------------------------------------------------------------------------- /todo/unlinked.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/todo/unlinked.csv -------------------------------------------------------------------------------- /tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/changes_fmt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/tools/changes_fmt.py -------------------------------------------------------------------------------- /tools/decompctx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/tools/decompctx.py -------------------------------------------------------------------------------- /tools/download_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/tools/download_tool.py -------------------------------------------------------------------------------- /tools/ninja_syntax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/tools/ninja_syntax.py -------------------------------------------------------------------------------- /tools/project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/tools/project.py -------------------------------------------------------------------------------- /tools/transform_dep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/tools/transform_dep.py -------------------------------------------------------------------------------- /tools/upload_progress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swiftshine/key/HEAD/tools/upload_progress.py --------------------------------------------------------------------------------