├── .gitignore ├── ExampleImage.png ├── README.md ├── Whitehole.bat ├── data ├── areamanagerlimits.json ├── galaxies.json ├── hashlookup.txt ├── hints.json ├── modelsubstitutions.json ├── shortcuts.json ├── specialrenderers.json ├── templates │ ├── SMG1 1 Star Galaxy.json │ ├── SMG1 Big Galaxy.json │ ├── SMG1BigGalaxy.arc │ ├── SMG1BigGalaxyScenario.arc │ ├── SMG1OneStarGalaxy.arc │ ├── SMG1OneStarGalaxyScenario.arc │ ├── SMG2 Big Galaxy.json │ ├── SMG2 Small Galaxy.json │ ├── SMG2 Standard Zone.json │ ├── SMG2BigGalaxyMap.arc │ ├── SMG2BigGalaxyScenario.arc │ ├── SMG2SmallGalaxyMap.arc │ ├── SMG2SmallGalaxyScenario.arc │ └── SMG2StandardZoneMap.arc └── zones.json ├── iconRAW.png ├── lib ├── DiscordIPC-0.4-jar-with-dependencies.jar ├── JWindowsFileDialog-0.81.jar ├── flatlaf-2.1.jar ├── gluegen-rt.jar ├── jogamp-fat.jar └── json-20201115.jar ├── manifest.mf ├── nbproject ├── build-impl.xml ├── genfiles.properties ├── licenseheader.txt ├── project.properties └── project.xml └── src ├── res ├── icon32.png ├── icon40.png ├── icon48.png ├── icon56.png └── icon64.png └── whitehole ├── AboutForm.form ├── AboutForm.java ├── MainFrame.form ├── MainFrame.java ├── Settings.java ├── SettingsForm.form ├── SettingsForm.java ├── Whitehole.java ├── db ├── AreaManagerLimits.java ├── FieldHashes.java ├── GalaxyNames.java ├── GameAndProjectDataHolder.java ├── Hints.java ├── ModelSubstitutions.java ├── ObjectDB.java ├── SpecialRenderers.java └── ZoneNames.java ├── editor ├── BcsvEditorForm.form ├── BcsvEditorForm.java ├── CreateGalaxyForm.form ├── CreateGalaxyForm.java ├── GalaxyEditorForm.form ├── GalaxyEditorForm.java ├── GalaxyPropertiesForm.form ├── GalaxyPropertiesForm.java ├── HashGeneratorForm.form ├── HashGeneratorForm.java ├── ObjListTreeNode.java ├── ObjTreeNode.java ├── ObjectSelectForm.form └── ObjectSelectForm.java ├── io ├── ExternalFile.java ├── ExternalFilesystem.java ├── FileBase.java ├── FilesystemBase.java ├── InRarcFile.java ├── MemoryFile.java ├── RarcFile.java ├── Yaz0.java └── Yaz0File.java ├── math ├── Matrix4.java ├── RotationMatrix.java ├── Vec2f.java └── Vec3f.java ├── rendering ├── BmdRenderer.java ├── BtiRenderer.java ├── CubeRenderer.java ├── GLRenderer.java ├── KclRenderer.java ├── RendererCache.java ├── RendererFactory.java ├── ShaderCache.java ├── TextureCache.java ├── pattern │ └── CircleModelPattern.java └── special │ ├── AreaShapeRenderer.java │ ├── AssistAreaShapeRenderer.java │ ├── BasicAnimationRenderer.java │ ├── BlackHoleRenderer.java │ ├── GravityShapeRenderer.java │ ├── ModelByPropertyRenderer.java │ ├── MultiRenderer.java │ ├── ObjectRangeRenderer.java │ ├── OceanShapeRenderer.java │ ├── PatternRenderer.java │ ├── PhantomRenderer.java │ ├── PlantGroupRenderer.java │ ├── PowerStarRenderer.java │ ├── ShapeModelRenderer.java │ ├── TwoJointScaleRenderer.java │ └── WoodLogBridgeRenderer.java ├── smg ├── Bcsv.java ├── Bmd.java ├── Bti.java ├── GalaxyArchive.java ├── GameArchive.java ├── ImageUtils.java ├── Kcl.java ├── StageArchive.java ├── StageHelper.java ├── animation │ ├── Bck.java │ ├── Brk.java │ ├── Btk.java │ ├── Btp.java │ ├── Bva.java │ └── J3DAnim │ │ ├── J3DAnimationTrack.java │ │ └── J3DKeyFrame.java └── object │ ├── AbstractObj.java │ ├── AreaObj.java │ ├── CameraObj.java │ ├── ChildObj.java │ ├── CutsceneObj.java │ ├── DebugObj.java │ ├── GravityObj.java │ ├── LevelObj.java │ ├── MapPartObj.java │ ├── PathObj.java │ ├── PathPointObj.java │ ├── PositionObj.java │ ├── SoundObj.java │ ├── StageObj.java │ └── StartObj.java └── util ├── AdaptedEnumeration.java ├── CheckBoxList.java ├── Color4.java ├── Discord.java ├── MathUtil.java ├── ObjIdUtil.java ├── PropertyGrid.java ├── RailUtil.java ├── StageUtil.java ├── SuperFastHash.java ├── TableColumnAdjuster.java └── UIUtil.java /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/.gitignore -------------------------------------------------------------------------------- /ExampleImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/ExampleImage.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/README.md -------------------------------------------------------------------------------- /Whitehole.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/Whitehole.bat -------------------------------------------------------------------------------- /data/areamanagerlimits.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/data/areamanagerlimits.json -------------------------------------------------------------------------------- /data/galaxies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/data/galaxies.json -------------------------------------------------------------------------------- /data/hashlookup.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/data/hashlookup.txt -------------------------------------------------------------------------------- /data/hints.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/data/hints.json -------------------------------------------------------------------------------- /data/modelsubstitutions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/data/modelsubstitutions.json -------------------------------------------------------------------------------- /data/shortcuts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/data/shortcuts.json -------------------------------------------------------------------------------- /data/specialrenderers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/data/specialrenderers.json -------------------------------------------------------------------------------- /data/templates/SMG1 1 Star Galaxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/data/templates/SMG1 1 Star Galaxy.json -------------------------------------------------------------------------------- /data/templates/SMG1 Big Galaxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/data/templates/SMG1 Big Galaxy.json -------------------------------------------------------------------------------- /data/templates/SMG1BigGalaxy.arc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/data/templates/SMG1BigGalaxy.arc -------------------------------------------------------------------------------- /data/templates/SMG1BigGalaxyScenario.arc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/data/templates/SMG1BigGalaxyScenario.arc -------------------------------------------------------------------------------- /data/templates/SMG1OneStarGalaxy.arc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/data/templates/SMG1OneStarGalaxy.arc -------------------------------------------------------------------------------- /data/templates/SMG1OneStarGalaxyScenario.arc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/data/templates/SMG1OneStarGalaxyScenario.arc -------------------------------------------------------------------------------- /data/templates/SMG2 Big Galaxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/data/templates/SMG2 Big Galaxy.json -------------------------------------------------------------------------------- /data/templates/SMG2 Small Galaxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/data/templates/SMG2 Small Galaxy.json -------------------------------------------------------------------------------- /data/templates/SMG2 Standard Zone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/data/templates/SMG2 Standard Zone.json -------------------------------------------------------------------------------- /data/templates/SMG2BigGalaxyMap.arc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/data/templates/SMG2BigGalaxyMap.arc -------------------------------------------------------------------------------- /data/templates/SMG2BigGalaxyScenario.arc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/data/templates/SMG2BigGalaxyScenario.arc -------------------------------------------------------------------------------- /data/templates/SMG2SmallGalaxyMap.arc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/data/templates/SMG2SmallGalaxyMap.arc -------------------------------------------------------------------------------- /data/templates/SMG2SmallGalaxyScenario.arc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/data/templates/SMG2SmallGalaxyScenario.arc -------------------------------------------------------------------------------- /data/templates/SMG2StandardZoneMap.arc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/data/templates/SMG2StandardZoneMap.arc -------------------------------------------------------------------------------- /data/zones.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/data/zones.json -------------------------------------------------------------------------------- /iconRAW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/iconRAW.png -------------------------------------------------------------------------------- /lib/DiscordIPC-0.4-jar-with-dependencies.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/lib/DiscordIPC-0.4-jar-with-dependencies.jar -------------------------------------------------------------------------------- /lib/JWindowsFileDialog-0.81.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/lib/JWindowsFileDialog-0.81.jar -------------------------------------------------------------------------------- /lib/flatlaf-2.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/lib/flatlaf-2.1.jar -------------------------------------------------------------------------------- /lib/gluegen-rt.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/lib/gluegen-rt.jar -------------------------------------------------------------------------------- /lib/jogamp-fat.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/lib/jogamp-fat.jar -------------------------------------------------------------------------------- /lib/json-20201115.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/lib/json-20201115.jar -------------------------------------------------------------------------------- /manifest.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/manifest.mf -------------------------------------------------------------------------------- /nbproject/build-impl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/nbproject/build-impl.xml -------------------------------------------------------------------------------- /nbproject/genfiles.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/nbproject/genfiles.properties -------------------------------------------------------------------------------- /nbproject/licenseheader.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/nbproject/licenseheader.txt -------------------------------------------------------------------------------- /nbproject/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/nbproject/project.properties -------------------------------------------------------------------------------- /nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/nbproject/project.xml -------------------------------------------------------------------------------- /src/res/icon32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/src/res/icon32.png -------------------------------------------------------------------------------- /src/res/icon40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/src/res/icon40.png -------------------------------------------------------------------------------- /src/res/icon48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/src/res/icon48.png -------------------------------------------------------------------------------- /src/res/icon56.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/src/res/icon56.png -------------------------------------------------------------------------------- /src/res/icon64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/src/res/icon64.png -------------------------------------------------------------------------------- /src/whitehole/AboutForm.form: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/src/whitehole/AboutForm.form -------------------------------------------------------------------------------- /src/whitehole/AboutForm.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/src/whitehole/AboutForm.java -------------------------------------------------------------------------------- /src/whitehole/MainFrame.form: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/src/whitehole/MainFrame.form -------------------------------------------------------------------------------- /src/whitehole/MainFrame.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/src/whitehole/MainFrame.java -------------------------------------------------------------------------------- /src/whitehole/Settings.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/src/whitehole/Settings.java -------------------------------------------------------------------------------- /src/whitehole/SettingsForm.form: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/src/whitehole/SettingsForm.form -------------------------------------------------------------------------------- /src/whitehole/SettingsForm.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/src/whitehole/SettingsForm.java -------------------------------------------------------------------------------- /src/whitehole/Whitehole.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/src/whitehole/Whitehole.java -------------------------------------------------------------------------------- /src/whitehole/db/AreaManagerLimits.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/src/whitehole/db/AreaManagerLimits.java -------------------------------------------------------------------------------- /src/whitehole/db/FieldHashes.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/src/whitehole/db/FieldHashes.java -------------------------------------------------------------------------------- /src/whitehole/db/GalaxyNames.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/src/whitehole/db/GalaxyNames.java -------------------------------------------------------------------------------- /src/whitehole/db/GameAndProjectDataHolder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/src/whitehole/db/GameAndProjectDataHolder.java -------------------------------------------------------------------------------- /src/whitehole/db/Hints.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/src/whitehole/db/Hints.java -------------------------------------------------------------------------------- /src/whitehole/db/ModelSubstitutions.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/src/whitehole/db/ModelSubstitutions.java -------------------------------------------------------------------------------- /src/whitehole/db/ObjectDB.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/src/whitehole/db/ObjectDB.java -------------------------------------------------------------------------------- /src/whitehole/db/SpecialRenderers.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/src/whitehole/db/SpecialRenderers.java -------------------------------------------------------------------------------- /src/whitehole/db/ZoneNames.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/src/whitehole/db/ZoneNames.java -------------------------------------------------------------------------------- /src/whitehole/editor/BcsvEditorForm.form: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/src/whitehole/editor/BcsvEditorForm.form -------------------------------------------------------------------------------- /src/whitehole/editor/BcsvEditorForm.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/src/whitehole/editor/BcsvEditorForm.java -------------------------------------------------------------------------------- /src/whitehole/editor/CreateGalaxyForm.form: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/src/whitehole/editor/CreateGalaxyForm.form -------------------------------------------------------------------------------- /src/whitehole/editor/CreateGalaxyForm.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/src/whitehole/editor/CreateGalaxyForm.java -------------------------------------------------------------------------------- /src/whitehole/editor/GalaxyEditorForm.form: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/src/whitehole/editor/GalaxyEditorForm.form -------------------------------------------------------------------------------- /src/whitehole/editor/GalaxyEditorForm.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/src/whitehole/editor/GalaxyEditorForm.java -------------------------------------------------------------------------------- /src/whitehole/editor/GalaxyPropertiesForm.form: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/src/whitehole/editor/GalaxyPropertiesForm.form -------------------------------------------------------------------------------- /src/whitehole/editor/GalaxyPropertiesForm.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/src/whitehole/editor/GalaxyPropertiesForm.java -------------------------------------------------------------------------------- /src/whitehole/editor/HashGeneratorForm.form: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/src/whitehole/editor/HashGeneratorForm.form -------------------------------------------------------------------------------- /src/whitehole/editor/HashGeneratorForm.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/src/whitehole/editor/HashGeneratorForm.java -------------------------------------------------------------------------------- /src/whitehole/editor/ObjListTreeNode.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/src/whitehole/editor/ObjListTreeNode.java -------------------------------------------------------------------------------- /src/whitehole/editor/ObjTreeNode.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/src/whitehole/editor/ObjTreeNode.java -------------------------------------------------------------------------------- /src/whitehole/editor/ObjectSelectForm.form: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/src/whitehole/editor/ObjectSelectForm.form -------------------------------------------------------------------------------- /src/whitehole/editor/ObjectSelectForm.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/src/whitehole/editor/ObjectSelectForm.java -------------------------------------------------------------------------------- /src/whitehole/io/ExternalFile.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/src/whitehole/io/ExternalFile.java -------------------------------------------------------------------------------- /src/whitehole/io/ExternalFilesystem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/src/whitehole/io/ExternalFilesystem.java -------------------------------------------------------------------------------- /src/whitehole/io/FileBase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/src/whitehole/io/FileBase.java -------------------------------------------------------------------------------- /src/whitehole/io/FilesystemBase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/src/whitehole/io/FilesystemBase.java -------------------------------------------------------------------------------- /src/whitehole/io/InRarcFile.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/src/whitehole/io/InRarcFile.java -------------------------------------------------------------------------------- /src/whitehole/io/MemoryFile.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/src/whitehole/io/MemoryFile.java -------------------------------------------------------------------------------- /src/whitehole/io/RarcFile.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/src/whitehole/io/RarcFile.java -------------------------------------------------------------------------------- /src/whitehole/io/Yaz0.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/src/whitehole/io/Yaz0.java -------------------------------------------------------------------------------- /src/whitehole/io/Yaz0File.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/src/whitehole/io/Yaz0File.java -------------------------------------------------------------------------------- /src/whitehole/math/Matrix4.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/src/whitehole/math/Matrix4.java -------------------------------------------------------------------------------- /src/whitehole/math/RotationMatrix.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/src/whitehole/math/RotationMatrix.java -------------------------------------------------------------------------------- /src/whitehole/math/Vec2f.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/src/whitehole/math/Vec2f.java -------------------------------------------------------------------------------- /src/whitehole/math/Vec3f.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/src/whitehole/math/Vec3f.java -------------------------------------------------------------------------------- /src/whitehole/rendering/BmdRenderer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/src/whitehole/rendering/BmdRenderer.java -------------------------------------------------------------------------------- /src/whitehole/rendering/BtiRenderer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/src/whitehole/rendering/BtiRenderer.java -------------------------------------------------------------------------------- /src/whitehole/rendering/CubeRenderer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/src/whitehole/rendering/CubeRenderer.java -------------------------------------------------------------------------------- /src/whitehole/rendering/GLRenderer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/src/whitehole/rendering/GLRenderer.java -------------------------------------------------------------------------------- /src/whitehole/rendering/KclRenderer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/src/whitehole/rendering/KclRenderer.java -------------------------------------------------------------------------------- /src/whitehole/rendering/RendererCache.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/src/whitehole/rendering/RendererCache.java -------------------------------------------------------------------------------- /src/whitehole/rendering/RendererFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/src/whitehole/rendering/RendererFactory.java -------------------------------------------------------------------------------- /src/whitehole/rendering/ShaderCache.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/src/whitehole/rendering/ShaderCache.java -------------------------------------------------------------------------------- /src/whitehole/rendering/TextureCache.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/src/whitehole/rendering/TextureCache.java -------------------------------------------------------------------------------- /src/whitehole/rendering/pattern/CircleModelPattern.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/src/whitehole/rendering/pattern/CircleModelPattern.java -------------------------------------------------------------------------------- /src/whitehole/rendering/special/AreaShapeRenderer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/src/whitehole/rendering/special/AreaShapeRenderer.java -------------------------------------------------------------------------------- /src/whitehole/rendering/special/AssistAreaShapeRenderer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/src/whitehole/rendering/special/AssistAreaShapeRenderer.java -------------------------------------------------------------------------------- /src/whitehole/rendering/special/BasicAnimationRenderer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/src/whitehole/rendering/special/BasicAnimationRenderer.java -------------------------------------------------------------------------------- /src/whitehole/rendering/special/BlackHoleRenderer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/src/whitehole/rendering/special/BlackHoleRenderer.java -------------------------------------------------------------------------------- /src/whitehole/rendering/special/GravityShapeRenderer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/src/whitehole/rendering/special/GravityShapeRenderer.java -------------------------------------------------------------------------------- /src/whitehole/rendering/special/ModelByPropertyRenderer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/src/whitehole/rendering/special/ModelByPropertyRenderer.java -------------------------------------------------------------------------------- /src/whitehole/rendering/special/MultiRenderer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/src/whitehole/rendering/special/MultiRenderer.java -------------------------------------------------------------------------------- /src/whitehole/rendering/special/ObjectRangeRenderer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/src/whitehole/rendering/special/ObjectRangeRenderer.java -------------------------------------------------------------------------------- /src/whitehole/rendering/special/OceanShapeRenderer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/src/whitehole/rendering/special/OceanShapeRenderer.java -------------------------------------------------------------------------------- /src/whitehole/rendering/special/PatternRenderer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/src/whitehole/rendering/special/PatternRenderer.java -------------------------------------------------------------------------------- /src/whitehole/rendering/special/PhantomRenderer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/src/whitehole/rendering/special/PhantomRenderer.java -------------------------------------------------------------------------------- /src/whitehole/rendering/special/PlantGroupRenderer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/src/whitehole/rendering/special/PlantGroupRenderer.java -------------------------------------------------------------------------------- /src/whitehole/rendering/special/PowerStarRenderer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/src/whitehole/rendering/special/PowerStarRenderer.java -------------------------------------------------------------------------------- /src/whitehole/rendering/special/ShapeModelRenderer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/src/whitehole/rendering/special/ShapeModelRenderer.java -------------------------------------------------------------------------------- /src/whitehole/rendering/special/TwoJointScaleRenderer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/src/whitehole/rendering/special/TwoJointScaleRenderer.java -------------------------------------------------------------------------------- /src/whitehole/rendering/special/WoodLogBridgeRenderer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/src/whitehole/rendering/special/WoodLogBridgeRenderer.java -------------------------------------------------------------------------------- /src/whitehole/smg/Bcsv.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/src/whitehole/smg/Bcsv.java -------------------------------------------------------------------------------- /src/whitehole/smg/Bmd.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/src/whitehole/smg/Bmd.java -------------------------------------------------------------------------------- /src/whitehole/smg/Bti.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/src/whitehole/smg/Bti.java -------------------------------------------------------------------------------- /src/whitehole/smg/GalaxyArchive.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/src/whitehole/smg/GalaxyArchive.java -------------------------------------------------------------------------------- /src/whitehole/smg/GameArchive.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/src/whitehole/smg/GameArchive.java -------------------------------------------------------------------------------- /src/whitehole/smg/ImageUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/src/whitehole/smg/ImageUtils.java -------------------------------------------------------------------------------- /src/whitehole/smg/Kcl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/src/whitehole/smg/Kcl.java -------------------------------------------------------------------------------- /src/whitehole/smg/StageArchive.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/src/whitehole/smg/StageArchive.java -------------------------------------------------------------------------------- /src/whitehole/smg/StageHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/src/whitehole/smg/StageHelper.java -------------------------------------------------------------------------------- /src/whitehole/smg/animation/Bck.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/src/whitehole/smg/animation/Bck.java -------------------------------------------------------------------------------- /src/whitehole/smg/animation/Brk.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/src/whitehole/smg/animation/Brk.java -------------------------------------------------------------------------------- /src/whitehole/smg/animation/Btk.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/src/whitehole/smg/animation/Btk.java -------------------------------------------------------------------------------- /src/whitehole/smg/animation/Btp.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/src/whitehole/smg/animation/Btp.java -------------------------------------------------------------------------------- /src/whitehole/smg/animation/Bva.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/src/whitehole/smg/animation/Bva.java -------------------------------------------------------------------------------- /src/whitehole/smg/animation/J3DAnim/J3DAnimationTrack.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/src/whitehole/smg/animation/J3DAnim/J3DAnimationTrack.java -------------------------------------------------------------------------------- /src/whitehole/smg/animation/J3DAnim/J3DKeyFrame.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/src/whitehole/smg/animation/J3DAnim/J3DKeyFrame.java -------------------------------------------------------------------------------- /src/whitehole/smg/object/AbstractObj.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/src/whitehole/smg/object/AbstractObj.java -------------------------------------------------------------------------------- /src/whitehole/smg/object/AreaObj.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/src/whitehole/smg/object/AreaObj.java -------------------------------------------------------------------------------- /src/whitehole/smg/object/CameraObj.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/src/whitehole/smg/object/CameraObj.java -------------------------------------------------------------------------------- /src/whitehole/smg/object/ChildObj.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/src/whitehole/smg/object/ChildObj.java -------------------------------------------------------------------------------- /src/whitehole/smg/object/CutsceneObj.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/src/whitehole/smg/object/CutsceneObj.java -------------------------------------------------------------------------------- /src/whitehole/smg/object/DebugObj.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/src/whitehole/smg/object/DebugObj.java -------------------------------------------------------------------------------- /src/whitehole/smg/object/GravityObj.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/src/whitehole/smg/object/GravityObj.java -------------------------------------------------------------------------------- /src/whitehole/smg/object/LevelObj.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/src/whitehole/smg/object/LevelObj.java -------------------------------------------------------------------------------- /src/whitehole/smg/object/MapPartObj.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/src/whitehole/smg/object/MapPartObj.java -------------------------------------------------------------------------------- /src/whitehole/smg/object/PathObj.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/src/whitehole/smg/object/PathObj.java -------------------------------------------------------------------------------- /src/whitehole/smg/object/PathPointObj.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/src/whitehole/smg/object/PathPointObj.java -------------------------------------------------------------------------------- /src/whitehole/smg/object/PositionObj.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/src/whitehole/smg/object/PositionObj.java -------------------------------------------------------------------------------- /src/whitehole/smg/object/SoundObj.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/src/whitehole/smg/object/SoundObj.java -------------------------------------------------------------------------------- /src/whitehole/smg/object/StageObj.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/src/whitehole/smg/object/StageObj.java -------------------------------------------------------------------------------- /src/whitehole/smg/object/StartObj.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/src/whitehole/smg/object/StartObj.java -------------------------------------------------------------------------------- /src/whitehole/util/AdaptedEnumeration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/src/whitehole/util/AdaptedEnumeration.java -------------------------------------------------------------------------------- /src/whitehole/util/CheckBoxList.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/src/whitehole/util/CheckBoxList.java -------------------------------------------------------------------------------- /src/whitehole/util/Color4.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/src/whitehole/util/Color4.java -------------------------------------------------------------------------------- /src/whitehole/util/Discord.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/src/whitehole/util/Discord.java -------------------------------------------------------------------------------- /src/whitehole/util/MathUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/src/whitehole/util/MathUtil.java -------------------------------------------------------------------------------- /src/whitehole/util/ObjIdUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/src/whitehole/util/ObjIdUtil.java -------------------------------------------------------------------------------- /src/whitehole/util/PropertyGrid.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/src/whitehole/util/PropertyGrid.java -------------------------------------------------------------------------------- /src/whitehole/util/RailUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/src/whitehole/util/RailUtil.java -------------------------------------------------------------------------------- /src/whitehole/util/StageUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/src/whitehole/util/StageUtil.java -------------------------------------------------------------------------------- /src/whitehole/util/SuperFastHash.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/src/whitehole/util/SuperFastHash.java -------------------------------------------------------------------------------- /src/whitehole/util/TableColumnAdjuster.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/src/whitehole/util/TableColumnAdjuster.java -------------------------------------------------------------------------------- /src/whitehole/util/UIUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMGCommunity/Whitehole-Neo/HEAD/src/whitehole/util/UIUtil.java --------------------------------------------------------------------------------