├── .gitignore ├── LICENSE ├── README.md ├── SMPe.sln ├── SMPe ├── AddSpaceForm.Designer.cs ├── AddSpaceForm.cs ├── AddSpaceForm.resx ├── App.config ├── Board.cs ├── Editor.Designer.cs ├── Editor.cs ├── Editor.resx ├── Helper.cs ├── MainWindow.Designer.cs ├── MainWindow.cs ├── MainWindow.resx ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── SMPe.csproj ├── SMPe.csproj.user ├── SpaceNode.cs ├── bea │ ├── asst.cs │ ├── bea.cs │ ├── dict.cs │ ├── rlt.cs │ └── str.cs ├── fres │ ├── BFRES.cs │ ├── FMAT.cs │ ├── FMDL.cs │ ├── FSHP.cs │ ├── FSKL.cs │ └── FVTX.cs ├── io │ ├── EndianBinaryReader.cs │ └── Filesystem.cs └── packages.config └── packages └── ZstdNet.1.3.3 ├── ZstdNet.1.3.3.nupkg ├── build ├── LICENSE ├── ZstdNet.targets ├── x64 │ └── libzstd.dll └── x86 │ └── libzstd.dll └── lib ├── LICENSE ├── net45 └── ZstdNet.dll └── netstandard2.0 └── ZstdNet.dll /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shibbo/SMPe/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shibbo/SMPe/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shibbo/SMPe/HEAD/README.md -------------------------------------------------------------------------------- /SMPe.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shibbo/SMPe/HEAD/SMPe.sln -------------------------------------------------------------------------------- /SMPe/AddSpaceForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shibbo/SMPe/HEAD/SMPe/AddSpaceForm.Designer.cs -------------------------------------------------------------------------------- /SMPe/AddSpaceForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shibbo/SMPe/HEAD/SMPe/AddSpaceForm.cs -------------------------------------------------------------------------------- /SMPe/AddSpaceForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shibbo/SMPe/HEAD/SMPe/AddSpaceForm.resx -------------------------------------------------------------------------------- /SMPe/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shibbo/SMPe/HEAD/SMPe/App.config -------------------------------------------------------------------------------- /SMPe/Board.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shibbo/SMPe/HEAD/SMPe/Board.cs -------------------------------------------------------------------------------- /SMPe/Editor.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shibbo/SMPe/HEAD/SMPe/Editor.Designer.cs -------------------------------------------------------------------------------- /SMPe/Editor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shibbo/SMPe/HEAD/SMPe/Editor.cs -------------------------------------------------------------------------------- /SMPe/Editor.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shibbo/SMPe/HEAD/SMPe/Editor.resx -------------------------------------------------------------------------------- /SMPe/Helper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shibbo/SMPe/HEAD/SMPe/Helper.cs -------------------------------------------------------------------------------- /SMPe/MainWindow.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shibbo/SMPe/HEAD/SMPe/MainWindow.Designer.cs -------------------------------------------------------------------------------- /SMPe/MainWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shibbo/SMPe/HEAD/SMPe/MainWindow.cs -------------------------------------------------------------------------------- /SMPe/MainWindow.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shibbo/SMPe/HEAD/SMPe/MainWindow.resx -------------------------------------------------------------------------------- /SMPe/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shibbo/SMPe/HEAD/SMPe/Program.cs -------------------------------------------------------------------------------- /SMPe/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shibbo/SMPe/HEAD/SMPe/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SMPe/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shibbo/SMPe/HEAD/SMPe/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /SMPe/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shibbo/SMPe/HEAD/SMPe/Properties/Resources.resx -------------------------------------------------------------------------------- /SMPe/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shibbo/SMPe/HEAD/SMPe/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /SMPe/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shibbo/SMPe/HEAD/SMPe/Properties/Settings.settings -------------------------------------------------------------------------------- /SMPe/SMPe.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shibbo/SMPe/HEAD/SMPe/SMPe.csproj -------------------------------------------------------------------------------- /SMPe/SMPe.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shibbo/SMPe/HEAD/SMPe/SMPe.csproj.user -------------------------------------------------------------------------------- /SMPe/SpaceNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shibbo/SMPe/HEAD/SMPe/SpaceNode.cs -------------------------------------------------------------------------------- /SMPe/bea/asst.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shibbo/SMPe/HEAD/SMPe/bea/asst.cs -------------------------------------------------------------------------------- /SMPe/bea/bea.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shibbo/SMPe/HEAD/SMPe/bea/bea.cs -------------------------------------------------------------------------------- /SMPe/bea/dict.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shibbo/SMPe/HEAD/SMPe/bea/dict.cs -------------------------------------------------------------------------------- /SMPe/bea/rlt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shibbo/SMPe/HEAD/SMPe/bea/rlt.cs -------------------------------------------------------------------------------- /SMPe/bea/str.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shibbo/SMPe/HEAD/SMPe/bea/str.cs -------------------------------------------------------------------------------- /SMPe/fres/BFRES.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shibbo/SMPe/HEAD/SMPe/fres/BFRES.cs -------------------------------------------------------------------------------- /SMPe/fres/FMAT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shibbo/SMPe/HEAD/SMPe/fres/FMAT.cs -------------------------------------------------------------------------------- /SMPe/fres/FMDL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shibbo/SMPe/HEAD/SMPe/fres/FMDL.cs -------------------------------------------------------------------------------- /SMPe/fres/FSHP.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shibbo/SMPe/HEAD/SMPe/fres/FSHP.cs -------------------------------------------------------------------------------- /SMPe/fres/FSKL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shibbo/SMPe/HEAD/SMPe/fres/FSKL.cs -------------------------------------------------------------------------------- /SMPe/fres/FVTX.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shibbo/SMPe/HEAD/SMPe/fres/FVTX.cs -------------------------------------------------------------------------------- /SMPe/io/EndianBinaryReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shibbo/SMPe/HEAD/SMPe/io/EndianBinaryReader.cs -------------------------------------------------------------------------------- /SMPe/io/Filesystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shibbo/SMPe/HEAD/SMPe/io/Filesystem.cs -------------------------------------------------------------------------------- /SMPe/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shibbo/SMPe/HEAD/SMPe/packages.config -------------------------------------------------------------------------------- /packages/ZstdNet.1.3.3/ZstdNet.1.3.3.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shibbo/SMPe/HEAD/packages/ZstdNet.1.3.3/ZstdNet.1.3.3.nupkg -------------------------------------------------------------------------------- /packages/ZstdNet.1.3.3/build/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shibbo/SMPe/HEAD/packages/ZstdNet.1.3.3/build/LICENSE -------------------------------------------------------------------------------- /packages/ZstdNet.1.3.3/build/ZstdNet.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shibbo/SMPe/HEAD/packages/ZstdNet.1.3.3/build/ZstdNet.targets -------------------------------------------------------------------------------- /packages/ZstdNet.1.3.3/build/x64/libzstd.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shibbo/SMPe/HEAD/packages/ZstdNet.1.3.3/build/x64/libzstd.dll -------------------------------------------------------------------------------- /packages/ZstdNet.1.3.3/build/x86/libzstd.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shibbo/SMPe/HEAD/packages/ZstdNet.1.3.3/build/x86/libzstd.dll -------------------------------------------------------------------------------- /packages/ZstdNet.1.3.3/lib/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shibbo/SMPe/HEAD/packages/ZstdNet.1.3.3/lib/LICENSE -------------------------------------------------------------------------------- /packages/ZstdNet.1.3.3/lib/net45/ZstdNet.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shibbo/SMPe/HEAD/packages/ZstdNet.1.3.3/lib/net45/ZstdNet.dll -------------------------------------------------------------------------------- /packages/ZstdNet.1.3.3/lib/netstandard2.0/ZstdNet.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shibbo/SMPe/HEAD/packages/ZstdNet.1.3.3/lib/netstandard2.0/ZstdNet.dll --------------------------------------------------------------------------------