├── .github └── workflows │ └── ci.yaml ├── .gitignore ├── .readthedocs.yaml ├── LICENSE ├── README.md ├── docs ├── Makefile ├── make.bat ├── make.sh └── source │ ├── api │ ├── __init__.rst │ ├── bmg.rst │ ├── code.rst │ ├── codeCompression.rst │ ├── fnt.rst │ ├── index.rst │ ├── lz10.rst │ ├── narc.rst │ ├── rom.rst │ ├── soundArchive.rst │ ├── soundBank.rst │ ├── soundGroup.rst │ ├── soundSequence-events.rst │ ├── soundSequence.rst │ ├── soundSequenceArchive.rst │ ├── soundSequencePlayer.rst │ ├── soundStream.rst │ ├── soundStreamPlayer.rst │ ├── soundWave.rst │ └── soundWaveArchive.rst │ ├── appendices │ └── sdat-structure.rst │ ├── changelog.rst │ ├── cli │ ├── codeCompression.rst │ ├── index.rst │ └── lz10.rst │ ├── conf.py │ ├── doctest_global_setup.py │ ├── index.rst │ └── tutorials │ ├── getting-started.rst │ ├── images │ ├── narc-after.png │ ├── narc-before.png │ ├── rom-after.png │ └── rom-before.png │ ├── index.rst │ ├── narc-editing.rst │ └── rom-editing.rst ├── ndspy ├── __init__.py ├── _common.py ├── _lzCommon.py ├── bmg.py ├── bnbl.py ├── bncl.py ├── code.py ├── codeCompression.py ├── color.py ├── extras │ ├── __init__.py │ ├── music.py │ └── soundEffect.py ├── fnt.py ├── graphics2D.py ├── lz10.py ├── model.py ├── narc.py ├── py.typed ├── rom.py ├── soundArchive.py ├── soundBank.py ├── soundGroup.py ├── soundSequence.py ├── soundSequenceArchive.py ├── soundSequencePlayer.py ├── soundStream.py ├── soundStreamPlayer.py ├── soundWave.py ├── soundWaveArchive.py └── texture.py ├── setup.py ├── test_files ├── bmg │ ├── 01-19_1B-7F_cp1252.bmg │ ├── 01-19_1B-7F_shift-jis.bmg │ ├── 01-19_1B-7F_utf-16be.bmg │ ├── 01-19_1B-7F_utf-16le.bmg │ ├── 01-19_1B-7F_utf-8.bmg │ ├── 80-FF_utf-16be.bmg │ ├── 80-FF_utf-16le.bmg │ ├── 80-FF_utf-8.bmg │ ├── A1-DF_cp1252.bmg │ ├── A1-DF_shift-jis.bmg │ ├── empty.bmg │ ├── endian_be.bmg │ ├── endian_le.bmg │ ├── id.bmg │ ├── instructions.bmg │ ├── labels.bmg │ ├── message_infos.bmg │ ├── message_isnull.bmg │ ├── message_stringparts.bmg │ ├── messages.bmg │ ├── no_inf1.bmg │ ├── scripts.bmg │ └── unks.bmg └── never-gonna-give-you-up.sseq ├── tests ├── _meta.py ├── test_bmg.py └── test_main.py └── tools ├── _common.py ├── fnttool.py ├── instrumentExamples.py ├── lz10tool.py ├── narctool.py ├── soundfontExport.py └── testSDAT.py /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoadrunnerWMC/ndspy/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoadrunnerWMC/ndspy/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoadrunnerWMC/ndspy/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoadrunnerWMC/ndspy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoadrunnerWMC/ndspy/HEAD/README.md -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoadrunnerWMC/ndspy/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoadrunnerWMC/ndspy/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/make.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoadrunnerWMC/ndspy/HEAD/docs/make.sh -------------------------------------------------------------------------------- /docs/source/api/__init__.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoadrunnerWMC/ndspy/HEAD/docs/source/api/__init__.rst -------------------------------------------------------------------------------- /docs/source/api/bmg.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoadrunnerWMC/ndspy/HEAD/docs/source/api/bmg.rst -------------------------------------------------------------------------------- /docs/source/api/code.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoadrunnerWMC/ndspy/HEAD/docs/source/api/code.rst -------------------------------------------------------------------------------- /docs/source/api/codeCompression.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoadrunnerWMC/ndspy/HEAD/docs/source/api/codeCompression.rst -------------------------------------------------------------------------------- /docs/source/api/fnt.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoadrunnerWMC/ndspy/HEAD/docs/source/api/fnt.rst -------------------------------------------------------------------------------- /docs/source/api/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoadrunnerWMC/ndspy/HEAD/docs/source/api/index.rst -------------------------------------------------------------------------------- /docs/source/api/lz10.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoadrunnerWMC/ndspy/HEAD/docs/source/api/lz10.rst -------------------------------------------------------------------------------- /docs/source/api/narc.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoadrunnerWMC/ndspy/HEAD/docs/source/api/narc.rst -------------------------------------------------------------------------------- /docs/source/api/rom.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoadrunnerWMC/ndspy/HEAD/docs/source/api/rom.rst -------------------------------------------------------------------------------- /docs/source/api/soundArchive.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoadrunnerWMC/ndspy/HEAD/docs/source/api/soundArchive.rst -------------------------------------------------------------------------------- /docs/source/api/soundBank.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoadrunnerWMC/ndspy/HEAD/docs/source/api/soundBank.rst -------------------------------------------------------------------------------- /docs/source/api/soundGroup.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoadrunnerWMC/ndspy/HEAD/docs/source/api/soundGroup.rst -------------------------------------------------------------------------------- /docs/source/api/soundSequence-events.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoadrunnerWMC/ndspy/HEAD/docs/source/api/soundSequence-events.rst -------------------------------------------------------------------------------- /docs/source/api/soundSequence.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoadrunnerWMC/ndspy/HEAD/docs/source/api/soundSequence.rst -------------------------------------------------------------------------------- /docs/source/api/soundSequenceArchive.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoadrunnerWMC/ndspy/HEAD/docs/source/api/soundSequenceArchive.rst -------------------------------------------------------------------------------- /docs/source/api/soundSequencePlayer.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoadrunnerWMC/ndspy/HEAD/docs/source/api/soundSequencePlayer.rst -------------------------------------------------------------------------------- /docs/source/api/soundStream.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoadrunnerWMC/ndspy/HEAD/docs/source/api/soundStream.rst -------------------------------------------------------------------------------- /docs/source/api/soundStreamPlayer.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoadrunnerWMC/ndspy/HEAD/docs/source/api/soundStreamPlayer.rst -------------------------------------------------------------------------------- /docs/source/api/soundWave.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoadrunnerWMC/ndspy/HEAD/docs/source/api/soundWave.rst -------------------------------------------------------------------------------- /docs/source/api/soundWaveArchive.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoadrunnerWMC/ndspy/HEAD/docs/source/api/soundWaveArchive.rst -------------------------------------------------------------------------------- /docs/source/appendices/sdat-structure.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoadrunnerWMC/ndspy/HEAD/docs/source/appendices/sdat-structure.rst -------------------------------------------------------------------------------- /docs/source/changelog.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoadrunnerWMC/ndspy/HEAD/docs/source/changelog.rst -------------------------------------------------------------------------------- /docs/source/cli/codeCompression.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoadrunnerWMC/ndspy/HEAD/docs/source/cli/codeCompression.rst -------------------------------------------------------------------------------- /docs/source/cli/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoadrunnerWMC/ndspy/HEAD/docs/source/cli/index.rst -------------------------------------------------------------------------------- /docs/source/cli/lz10.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoadrunnerWMC/ndspy/HEAD/docs/source/cli/lz10.rst -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoadrunnerWMC/ndspy/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/doctest_global_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoadrunnerWMC/ndspy/HEAD/docs/source/doctest_global_setup.py -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoadrunnerWMC/ndspy/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/tutorials/getting-started.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoadrunnerWMC/ndspy/HEAD/docs/source/tutorials/getting-started.rst -------------------------------------------------------------------------------- /docs/source/tutorials/images/narc-after.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoadrunnerWMC/ndspy/HEAD/docs/source/tutorials/images/narc-after.png -------------------------------------------------------------------------------- /docs/source/tutorials/images/narc-before.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoadrunnerWMC/ndspy/HEAD/docs/source/tutorials/images/narc-before.png -------------------------------------------------------------------------------- /docs/source/tutorials/images/rom-after.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoadrunnerWMC/ndspy/HEAD/docs/source/tutorials/images/rom-after.png -------------------------------------------------------------------------------- /docs/source/tutorials/images/rom-before.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoadrunnerWMC/ndspy/HEAD/docs/source/tutorials/images/rom-before.png -------------------------------------------------------------------------------- /docs/source/tutorials/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoadrunnerWMC/ndspy/HEAD/docs/source/tutorials/index.rst -------------------------------------------------------------------------------- /docs/source/tutorials/narc-editing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoadrunnerWMC/ndspy/HEAD/docs/source/tutorials/narc-editing.rst -------------------------------------------------------------------------------- /docs/source/tutorials/rom-editing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoadrunnerWMC/ndspy/HEAD/docs/source/tutorials/rom-editing.rst -------------------------------------------------------------------------------- /ndspy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoadrunnerWMC/ndspy/HEAD/ndspy/__init__.py -------------------------------------------------------------------------------- /ndspy/_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoadrunnerWMC/ndspy/HEAD/ndspy/_common.py -------------------------------------------------------------------------------- /ndspy/_lzCommon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoadrunnerWMC/ndspy/HEAD/ndspy/_lzCommon.py -------------------------------------------------------------------------------- /ndspy/bmg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoadrunnerWMC/ndspy/HEAD/ndspy/bmg.py -------------------------------------------------------------------------------- /ndspy/bnbl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoadrunnerWMC/ndspy/HEAD/ndspy/bnbl.py -------------------------------------------------------------------------------- /ndspy/bncl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoadrunnerWMC/ndspy/HEAD/ndspy/bncl.py -------------------------------------------------------------------------------- /ndspy/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoadrunnerWMC/ndspy/HEAD/ndspy/code.py -------------------------------------------------------------------------------- /ndspy/codeCompression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoadrunnerWMC/ndspy/HEAD/ndspy/codeCompression.py -------------------------------------------------------------------------------- /ndspy/color.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoadrunnerWMC/ndspy/HEAD/ndspy/color.py -------------------------------------------------------------------------------- /ndspy/extras/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ndspy/extras/music.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoadrunnerWMC/ndspy/HEAD/ndspy/extras/music.py -------------------------------------------------------------------------------- /ndspy/extras/soundEffect.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ndspy/fnt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoadrunnerWMC/ndspy/HEAD/ndspy/fnt.py -------------------------------------------------------------------------------- /ndspy/graphics2D.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoadrunnerWMC/ndspy/HEAD/ndspy/graphics2D.py -------------------------------------------------------------------------------- /ndspy/lz10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoadrunnerWMC/ndspy/HEAD/ndspy/lz10.py -------------------------------------------------------------------------------- /ndspy/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoadrunnerWMC/ndspy/HEAD/ndspy/model.py -------------------------------------------------------------------------------- /ndspy/narc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoadrunnerWMC/ndspy/HEAD/ndspy/narc.py -------------------------------------------------------------------------------- /ndspy/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ndspy/rom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoadrunnerWMC/ndspy/HEAD/ndspy/rom.py -------------------------------------------------------------------------------- /ndspy/soundArchive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoadrunnerWMC/ndspy/HEAD/ndspy/soundArchive.py -------------------------------------------------------------------------------- /ndspy/soundBank.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoadrunnerWMC/ndspy/HEAD/ndspy/soundBank.py -------------------------------------------------------------------------------- /ndspy/soundGroup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoadrunnerWMC/ndspy/HEAD/ndspy/soundGroup.py -------------------------------------------------------------------------------- /ndspy/soundSequence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoadrunnerWMC/ndspy/HEAD/ndspy/soundSequence.py -------------------------------------------------------------------------------- /ndspy/soundSequenceArchive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoadrunnerWMC/ndspy/HEAD/ndspy/soundSequenceArchive.py -------------------------------------------------------------------------------- /ndspy/soundSequencePlayer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoadrunnerWMC/ndspy/HEAD/ndspy/soundSequencePlayer.py -------------------------------------------------------------------------------- /ndspy/soundStream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoadrunnerWMC/ndspy/HEAD/ndspy/soundStream.py -------------------------------------------------------------------------------- /ndspy/soundStreamPlayer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoadrunnerWMC/ndspy/HEAD/ndspy/soundStreamPlayer.py -------------------------------------------------------------------------------- /ndspy/soundWave.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoadrunnerWMC/ndspy/HEAD/ndspy/soundWave.py -------------------------------------------------------------------------------- /ndspy/soundWaveArchive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoadrunnerWMC/ndspy/HEAD/ndspy/soundWaveArchive.py -------------------------------------------------------------------------------- /ndspy/texture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoadrunnerWMC/ndspy/HEAD/ndspy/texture.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoadrunnerWMC/ndspy/HEAD/setup.py -------------------------------------------------------------------------------- /test_files/bmg/01-19_1B-7F_cp1252.bmg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoadrunnerWMC/ndspy/HEAD/test_files/bmg/01-19_1B-7F_cp1252.bmg -------------------------------------------------------------------------------- /test_files/bmg/01-19_1B-7F_shift-jis.bmg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoadrunnerWMC/ndspy/HEAD/test_files/bmg/01-19_1B-7F_shift-jis.bmg -------------------------------------------------------------------------------- /test_files/bmg/01-19_1B-7F_utf-16be.bmg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoadrunnerWMC/ndspy/HEAD/test_files/bmg/01-19_1B-7F_utf-16be.bmg -------------------------------------------------------------------------------- /test_files/bmg/01-19_1B-7F_utf-16le.bmg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoadrunnerWMC/ndspy/HEAD/test_files/bmg/01-19_1B-7F_utf-16le.bmg -------------------------------------------------------------------------------- /test_files/bmg/01-19_1B-7F_utf-8.bmg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoadrunnerWMC/ndspy/HEAD/test_files/bmg/01-19_1B-7F_utf-8.bmg -------------------------------------------------------------------------------- /test_files/bmg/80-FF_utf-16be.bmg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoadrunnerWMC/ndspy/HEAD/test_files/bmg/80-FF_utf-16be.bmg -------------------------------------------------------------------------------- /test_files/bmg/80-FF_utf-16le.bmg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoadrunnerWMC/ndspy/HEAD/test_files/bmg/80-FF_utf-16le.bmg -------------------------------------------------------------------------------- /test_files/bmg/80-FF_utf-8.bmg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoadrunnerWMC/ndspy/HEAD/test_files/bmg/80-FF_utf-8.bmg -------------------------------------------------------------------------------- /test_files/bmg/A1-DF_cp1252.bmg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoadrunnerWMC/ndspy/HEAD/test_files/bmg/A1-DF_cp1252.bmg -------------------------------------------------------------------------------- /test_files/bmg/A1-DF_shift-jis.bmg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoadrunnerWMC/ndspy/HEAD/test_files/bmg/A1-DF_shift-jis.bmg -------------------------------------------------------------------------------- /test_files/bmg/empty.bmg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoadrunnerWMC/ndspy/HEAD/test_files/bmg/empty.bmg -------------------------------------------------------------------------------- /test_files/bmg/endian_be.bmg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoadrunnerWMC/ndspy/HEAD/test_files/bmg/endian_be.bmg -------------------------------------------------------------------------------- /test_files/bmg/endian_le.bmg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoadrunnerWMC/ndspy/HEAD/test_files/bmg/endian_le.bmg -------------------------------------------------------------------------------- /test_files/bmg/id.bmg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoadrunnerWMC/ndspy/HEAD/test_files/bmg/id.bmg -------------------------------------------------------------------------------- /test_files/bmg/instructions.bmg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoadrunnerWMC/ndspy/HEAD/test_files/bmg/instructions.bmg -------------------------------------------------------------------------------- /test_files/bmg/labels.bmg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoadrunnerWMC/ndspy/HEAD/test_files/bmg/labels.bmg -------------------------------------------------------------------------------- /test_files/bmg/message_infos.bmg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoadrunnerWMC/ndspy/HEAD/test_files/bmg/message_infos.bmg -------------------------------------------------------------------------------- /test_files/bmg/message_isnull.bmg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoadrunnerWMC/ndspy/HEAD/test_files/bmg/message_isnull.bmg -------------------------------------------------------------------------------- /test_files/bmg/message_stringparts.bmg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoadrunnerWMC/ndspy/HEAD/test_files/bmg/message_stringparts.bmg -------------------------------------------------------------------------------- /test_files/bmg/messages.bmg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoadrunnerWMC/ndspy/HEAD/test_files/bmg/messages.bmg -------------------------------------------------------------------------------- /test_files/bmg/no_inf1.bmg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoadrunnerWMC/ndspy/HEAD/test_files/bmg/no_inf1.bmg -------------------------------------------------------------------------------- /test_files/bmg/scripts.bmg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoadrunnerWMC/ndspy/HEAD/test_files/bmg/scripts.bmg -------------------------------------------------------------------------------- /test_files/bmg/unks.bmg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoadrunnerWMC/ndspy/HEAD/test_files/bmg/unks.bmg -------------------------------------------------------------------------------- /test_files/never-gonna-give-you-up.sseq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoadrunnerWMC/ndspy/HEAD/test_files/never-gonna-give-you-up.sseq -------------------------------------------------------------------------------- /tests/_meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoadrunnerWMC/ndspy/HEAD/tests/_meta.py -------------------------------------------------------------------------------- /tests/test_bmg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoadrunnerWMC/ndspy/HEAD/tests/test_bmg.py -------------------------------------------------------------------------------- /tests/test_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoadrunnerWMC/ndspy/HEAD/tests/test_main.py -------------------------------------------------------------------------------- /tools/_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoadrunnerWMC/ndspy/HEAD/tools/_common.py -------------------------------------------------------------------------------- /tools/fnttool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoadrunnerWMC/ndspy/HEAD/tools/fnttool.py -------------------------------------------------------------------------------- /tools/instrumentExamples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoadrunnerWMC/ndspy/HEAD/tools/instrumentExamples.py -------------------------------------------------------------------------------- /tools/lz10tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoadrunnerWMC/ndspy/HEAD/tools/lz10tool.py -------------------------------------------------------------------------------- /tools/narctool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoadrunnerWMC/ndspy/HEAD/tools/narctool.py -------------------------------------------------------------------------------- /tools/soundfontExport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoadrunnerWMC/ndspy/HEAD/tools/soundfontExport.py -------------------------------------------------------------------------------- /tools/testSDAT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoadrunnerWMC/ndspy/HEAD/tools/testSDAT.py --------------------------------------------------------------------------------