├── .gitignore ├── .hlint.yaml ├── ChinaCrash.xml ├── ChinaCrash1.xml ├── DGPatchMaker.cabal ├── DGPatchMaker.glade ├── DGPatchMaker.glade.backup ├── InstrumentPage.glade ├── LICENSE ├── README.md ├── Setup.hs ├── mapex_names.txt ├── modern_folk.txt ├── modern_folk_multi.txt ├── src ├── Data │ ├── Checkers.hs │ ├── Defaults.hs │ ├── DrumDrops │ │ ├── MapexKitParser.hs │ │ ├── ModernFolkParser.hs │ │ ├── Types.hs │ │ ├── Utils.hs │ │ └── VintageFolkParser.hs │ ├── Drumgizmo.hs │ ├── Export.hs │ ├── Import.hs │ ├── MultiVelocity.hs │ ├── Types.hs │ └── Version.hs ├── Gtk │ ├── ClickyKitDialog.hs │ ├── Colors.hs │ ├── DGPatchMakerBuilder.hs │ ├── DirectedChokeDialog.hs │ ├── Drumkit.hs │ ├── ErrorDialog.hs │ ├── FileHandlingDialog.hs │ ├── HitPowerDialog.hs │ ├── InstrumentFrame.hs │ ├── InstrumentPageBuilder.hs │ ├── MainWindow.hs │ ├── MidiMap.hs │ ├── NrHitsDialog.hs │ └── Utils.hs ├── GtkInterface.hs ├── Main.hs └── tests │ ├── CreateGladeSource.hs │ └── ParseTest.hs ├── stack.yaml ├── vintage_folk_multi.txt └── vintage_folk_names.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oswald2/DGPatchMaker/HEAD/.gitignore -------------------------------------------------------------------------------- /.hlint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oswald2/DGPatchMaker/HEAD/.hlint.yaml -------------------------------------------------------------------------------- /ChinaCrash.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oswald2/DGPatchMaker/HEAD/ChinaCrash.xml -------------------------------------------------------------------------------- /ChinaCrash1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oswald2/DGPatchMaker/HEAD/ChinaCrash1.xml -------------------------------------------------------------------------------- /DGPatchMaker.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oswald2/DGPatchMaker/HEAD/DGPatchMaker.cabal -------------------------------------------------------------------------------- /DGPatchMaker.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oswald2/DGPatchMaker/HEAD/DGPatchMaker.glade -------------------------------------------------------------------------------- /DGPatchMaker.glade.backup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oswald2/DGPatchMaker/HEAD/DGPatchMaker.glade.backup -------------------------------------------------------------------------------- /InstrumentPage.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oswald2/DGPatchMaker/HEAD/InstrumentPage.glade -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oswald2/DGPatchMaker/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oswald2/DGPatchMaker/HEAD/README.md -------------------------------------------------------------------------------- /Setup.hs: -------------------------------------------------------------------------------- 1 | import Distribution.Simple 2 | main = defaultMain 3 | -------------------------------------------------------------------------------- /mapex_names.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oswald2/DGPatchMaker/HEAD/mapex_names.txt -------------------------------------------------------------------------------- /modern_folk.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oswald2/DGPatchMaker/HEAD/modern_folk.txt -------------------------------------------------------------------------------- /modern_folk_multi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oswald2/DGPatchMaker/HEAD/modern_folk_multi.txt -------------------------------------------------------------------------------- /src/Data/Checkers.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oswald2/DGPatchMaker/HEAD/src/Data/Checkers.hs -------------------------------------------------------------------------------- /src/Data/Defaults.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oswald2/DGPatchMaker/HEAD/src/Data/Defaults.hs -------------------------------------------------------------------------------- /src/Data/DrumDrops/MapexKitParser.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oswald2/DGPatchMaker/HEAD/src/Data/DrumDrops/MapexKitParser.hs -------------------------------------------------------------------------------- /src/Data/DrumDrops/ModernFolkParser.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oswald2/DGPatchMaker/HEAD/src/Data/DrumDrops/ModernFolkParser.hs -------------------------------------------------------------------------------- /src/Data/DrumDrops/Types.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oswald2/DGPatchMaker/HEAD/src/Data/DrumDrops/Types.hs -------------------------------------------------------------------------------- /src/Data/DrumDrops/Utils.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oswald2/DGPatchMaker/HEAD/src/Data/DrumDrops/Utils.hs -------------------------------------------------------------------------------- /src/Data/DrumDrops/VintageFolkParser.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oswald2/DGPatchMaker/HEAD/src/Data/DrumDrops/VintageFolkParser.hs -------------------------------------------------------------------------------- /src/Data/Drumgizmo.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oswald2/DGPatchMaker/HEAD/src/Data/Drumgizmo.hs -------------------------------------------------------------------------------- /src/Data/Export.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oswald2/DGPatchMaker/HEAD/src/Data/Export.hs -------------------------------------------------------------------------------- /src/Data/Import.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oswald2/DGPatchMaker/HEAD/src/Data/Import.hs -------------------------------------------------------------------------------- /src/Data/MultiVelocity.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oswald2/DGPatchMaker/HEAD/src/Data/MultiVelocity.hs -------------------------------------------------------------------------------- /src/Data/Types.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oswald2/DGPatchMaker/HEAD/src/Data/Types.hs -------------------------------------------------------------------------------- /src/Data/Version.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oswald2/DGPatchMaker/HEAD/src/Data/Version.hs -------------------------------------------------------------------------------- /src/Gtk/ClickyKitDialog.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oswald2/DGPatchMaker/HEAD/src/Gtk/ClickyKitDialog.hs -------------------------------------------------------------------------------- /src/Gtk/Colors.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oswald2/DGPatchMaker/HEAD/src/Gtk/Colors.hs -------------------------------------------------------------------------------- /src/Gtk/DGPatchMakerBuilder.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oswald2/DGPatchMaker/HEAD/src/Gtk/DGPatchMakerBuilder.hs -------------------------------------------------------------------------------- /src/Gtk/DirectedChokeDialog.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oswald2/DGPatchMaker/HEAD/src/Gtk/DirectedChokeDialog.hs -------------------------------------------------------------------------------- /src/Gtk/Drumkit.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oswald2/DGPatchMaker/HEAD/src/Gtk/Drumkit.hs -------------------------------------------------------------------------------- /src/Gtk/ErrorDialog.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oswald2/DGPatchMaker/HEAD/src/Gtk/ErrorDialog.hs -------------------------------------------------------------------------------- /src/Gtk/FileHandlingDialog.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oswald2/DGPatchMaker/HEAD/src/Gtk/FileHandlingDialog.hs -------------------------------------------------------------------------------- /src/Gtk/HitPowerDialog.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oswald2/DGPatchMaker/HEAD/src/Gtk/HitPowerDialog.hs -------------------------------------------------------------------------------- /src/Gtk/InstrumentFrame.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oswald2/DGPatchMaker/HEAD/src/Gtk/InstrumentFrame.hs -------------------------------------------------------------------------------- /src/Gtk/InstrumentPageBuilder.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oswald2/DGPatchMaker/HEAD/src/Gtk/InstrumentPageBuilder.hs -------------------------------------------------------------------------------- /src/Gtk/MainWindow.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oswald2/DGPatchMaker/HEAD/src/Gtk/MainWindow.hs -------------------------------------------------------------------------------- /src/Gtk/MidiMap.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oswald2/DGPatchMaker/HEAD/src/Gtk/MidiMap.hs -------------------------------------------------------------------------------- /src/Gtk/NrHitsDialog.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oswald2/DGPatchMaker/HEAD/src/Gtk/NrHitsDialog.hs -------------------------------------------------------------------------------- /src/Gtk/Utils.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oswald2/DGPatchMaker/HEAD/src/Gtk/Utils.hs -------------------------------------------------------------------------------- /src/GtkInterface.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oswald2/DGPatchMaker/HEAD/src/GtkInterface.hs -------------------------------------------------------------------------------- /src/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oswald2/DGPatchMaker/HEAD/src/Main.hs -------------------------------------------------------------------------------- /src/tests/CreateGladeSource.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oswald2/DGPatchMaker/HEAD/src/tests/CreateGladeSource.hs -------------------------------------------------------------------------------- /src/tests/ParseTest.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oswald2/DGPatchMaker/HEAD/src/tests/ParseTest.hs -------------------------------------------------------------------------------- /stack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oswald2/DGPatchMaker/HEAD/stack.yaml -------------------------------------------------------------------------------- /vintage_folk_multi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oswald2/DGPatchMaker/HEAD/vintage_folk_multi.txt -------------------------------------------------------------------------------- /vintage_folk_names.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oswald2/DGPatchMaker/HEAD/vintage_folk_names.txt --------------------------------------------------------------------------------