├── .gitignore ├── .travis.yml ├── LICENSE ├── Podfile ├── Podfile.lock ├── README.md ├── RomPlayer.xcodeproj ├── project.pbxproj └── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ └── IDEWorkspaceChecks.plist ├── RomPlayer.xcworkspace ├── contents.xcworkspacedata └── xcshareddata │ └── IDEWorkspaceChecks.plist └── RomPlayer ├── AppDelegate.swift ├── Assets.xcassets ├── AppIcon.appiconset │ ├── Contents.json │ ├── Icon-60@2x.png │ ├── Icon-60@3x.png │ ├── Icon-76.png │ ├── Icon-76@2x.png │ └── Icon-83.5@2x.png ├── Contents.json ├── LaunchImage.launchimage │ ├── Contents.json │ ├── RomPlayerLaunchImage.png │ └── RomPlayerLaunchImage@2x.png ├── au_main.imageset │ ├── Contents.json │ └── au_main@2x.png ├── bluetooth.imageset │ ├── Contents.json │ └── bluetooth@2x.png ├── dice.imageset │ ├── Contents.json │ └── dice@2x.png ├── headerback.imageset │ ├── Contents.json │ └── headerback@2x.png ├── left-arrow.imageset │ ├── Contents.json │ └── left-arrow@2x.png ├── mockup_blackkeys.imageset │ ├── Contents.json │ └── mockup_blackkeys@2x.png ├── mockup_whitekeys.imageset │ ├── Contents.json │ └── mockup_whitekeys@2x.png └── right-arrow.imageset │ ├── Contents.json │ └── right-arrow@2x.png ├── AudioSystem ├── AutoPan.swift ├── Conductor.swift ├── Fatten.swift ├── FilterSection.swift └── PingPongDelay.swift ├── Base.lproj └── Main.storyboard ├── Cells └── PresetCell.swift ├── Controllers ├── AUMainController.swift └── ParentViewController.swift ├── Controls ├── Buttons │ ├── ButtonStyleKit.swift │ ├── FlatToggleStyleKit.swift │ ├── LedButton.swift │ ├── LedToggleStyleKit.swift │ ├── MIDIButton.swift │ ├── RadioButton.swift │ ├── Stepper.swift │ ├── StepperStyleKit.swift │ ├── SynthUIButton.swift │ ├── ToggleButton.swift │ ├── TopUIButton.swift │ ├── TopUIButtonStyleKit.swift │ └── UrlButton.swift ├── Knobs │ ├── FlatKnob.swift │ ├── FlatKnobStyleKit.swift │ ├── Knob+Touches.swift │ ├── Knob.swift │ ├── KnobStyleKit2.swift │ └── MIDIKnob.swift ├── MIDILearnable.swift └── SynthKeyboard.swift ├── Extensions ├── Double+Extensions.swift ├── UILabel+Rotate.swift └── ViewController+DisplayAlert.swift ├── Images.xcassets └── LaunchImage.launchimage │ ├── Contents.json │ └── launchscreen@2x.png ├── Info.plist ├── PopUpControllers ├── AboutViewController.swift ├── PopUpKeySettingsController.swift ├── PopUpMIDIController.swift └── PopUpPresetController.swift ├── RomPlayer.entitlements └── Sounds ├── .DS_Store ├── midi ├── rom_bass.mid ├── rom_lead.mid └── rom_poly.mid └── sfz ├── .DS_Store ├── TX Brass.sfz ├── TX LoTine81z.sfz ├── TX Metalimba.sfz ├── TX Pluck Bass.sfz └── samples ├── TX_Chorus_Bras-000-048-c2.wv ├── TX_Chorus_Bras-000-054-f#2.wv ├── TX_Chorus_Bras-000-060-c3.wv ├── TX_Chorus_Bras-000-066-f#3.wv ├── TX_Chorus_Bras-000-072-c4.wv ├── TX_Chorus_Bras-000-078-f#4.wv ├── TX_Chorus_Bras-000-084-c5.wv ├── TX_LoTine81z_ms0_048_c2.wv ├── TX_LoTine81z_ms0_054_f#2.wv ├── TX_LoTine81z_ms0_060_c3.wv ├── TX_LoTine81z_ms0_066_f#3.wv ├── TX_LoTine81z_ms0_072_c4.wv ├── TX_LoTine81z_ms0_078_f#4.wv ├── TX_LoTine81z_ms0_084_c5.wv ├── TX_LoTine81z_ms1_048_c2.wv ├── TX_LoTine81z_ms1_054_f#2.wv ├── TX_LoTine81z_ms1_060_c3.wv ├── TX_LoTine81z_ms1_066_f#3.wv ├── TX_LoTine81z_ms1_072_c4.wv ├── TX_LoTine81z_ms1_078_f#4.wv ├── TX_LoTine81z_ms1_084_c5.wv ├── TX_LoTine81z_ms2_048_c2.wv ├── TX_LoTine81z_ms2_054_f#2.wv ├── TX_LoTine81z_ms2_060_c3.wv ├── TX_LoTine81z_ms2_066_f#3.wv ├── TX_LoTine81z_ms2_072_c4.wv ├── TX_LoTine81z_ms2_078_f#4.wv ├── TX_LoTine81z_ms2_084_c5.wv ├── TX_Metalimba-000-048-c2.wv ├── TX_Metalimba-000-054-f#2.wv ├── TX_Metalimba-000-060-c3.wv ├── TX_Metalimba-000-066-f#3.wv ├── TX_Metalimba-000-072-c4.wv ├── TX_Metalimba-000-078-f#4.wv ├── TX_Metalimba-000-084-c5.wv ├── TX_Pluck_Bass-000-048-c2.wv ├── TX_Pluck_Bass-000-054-f#2.wv ├── TX_Pluck_Bass-000-060-c3.wv ├── TX_Pluck_Bass-000-066-f#3.wv ├── TX_Pluck_Bass-000-072-c4.wv ├── TX_Pluck_Bass-000-078-f#4.wv └── TX_Pluck_Bass-000-084-c5.wv /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioKit/ROMPlayer/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioKit/ROMPlayer/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioKit/ROMPlayer/HEAD/LICENSE -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- 1 | platform :ios, '12.0' 2 | use_frameworks! 3 | 4 | target 'RomPlayer' do 5 | pod 'AudioKit' 6 | end -------------------------------------------------------------------------------- /Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioKit/ROMPlayer/HEAD/Podfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioKit/ROMPlayer/HEAD/README.md -------------------------------------------------------------------------------- /RomPlayer.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioKit/ROMPlayer/HEAD/RomPlayer.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /RomPlayer.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioKit/ROMPlayer/HEAD/RomPlayer.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /RomPlayer.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioKit/ROMPlayer/HEAD/RomPlayer.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /RomPlayer.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioKit/ROMPlayer/HEAD/RomPlayer.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /RomPlayer.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioKit/ROMPlayer/HEAD/RomPlayer.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /RomPlayer/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioKit/ROMPlayer/HEAD/RomPlayer/AppDelegate.swift -------------------------------------------------------------------------------- /RomPlayer/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioKit/ROMPlayer/HEAD/RomPlayer/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /RomPlayer/Assets.xcassets/AppIcon.appiconset/Icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioKit/ROMPlayer/HEAD/RomPlayer/Assets.xcassets/AppIcon.appiconset/Icon-60@2x.png -------------------------------------------------------------------------------- /RomPlayer/Assets.xcassets/AppIcon.appiconset/Icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioKit/ROMPlayer/HEAD/RomPlayer/Assets.xcassets/AppIcon.appiconset/Icon-60@3x.png -------------------------------------------------------------------------------- /RomPlayer/Assets.xcassets/AppIcon.appiconset/Icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioKit/ROMPlayer/HEAD/RomPlayer/Assets.xcassets/AppIcon.appiconset/Icon-76.png -------------------------------------------------------------------------------- /RomPlayer/Assets.xcassets/AppIcon.appiconset/Icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioKit/ROMPlayer/HEAD/RomPlayer/Assets.xcassets/AppIcon.appiconset/Icon-76@2x.png -------------------------------------------------------------------------------- /RomPlayer/Assets.xcassets/AppIcon.appiconset/Icon-83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioKit/ROMPlayer/HEAD/RomPlayer/Assets.xcassets/AppIcon.appiconset/Icon-83.5@2x.png -------------------------------------------------------------------------------- /RomPlayer/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioKit/ROMPlayer/HEAD/RomPlayer/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /RomPlayer/Assets.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioKit/ROMPlayer/HEAD/RomPlayer/Assets.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /RomPlayer/Assets.xcassets/LaunchImage.launchimage/RomPlayerLaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioKit/ROMPlayer/HEAD/RomPlayer/Assets.xcassets/LaunchImage.launchimage/RomPlayerLaunchImage.png -------------------------------------------------------------------------------- /RomPlayer/Assets.xcassets/LaunchImage.launchimage/RomPlayerLaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioKit/ROMPlayer/HEAD/RomPlayer/Assets.xcassets/LaunchImage.launchimage/RomPlayerLaunchImage@2x.png -------------------------------------------------------------------------------- /RomPlayer/Assets.xcassets/au_main.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioKit/ROMPlayer/HEAD/RomPlayer/Assets.xcassets/au_main.imageset/Contents.json -------------------------------------------------------------------------------- /RomPlayer/Assets.xcassets/au_main.imageset/au_main@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioKit/ROMPlayer/HEAD/RomPlayer/Assets.xcassets/au_main.imageset/au_main@2x.png -------------------------------------------------------------------------------- /RomPlayer/Assets.xcassets/bluetooth.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioKit/ROMPlayer/HEAD/RomPlayer/Assets.xcassets/bluetooth.imageset/Contents.json -------------------------------------------------------------------------------- /RomPlayer/Assets.xcassets/bluetooth.imageset/bluetooth@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioKit/ROMPlayer/HEAD/RomPlayer/Assets.xcassets/bluetooth.imageset/bluetooth@2x.png -------------------------------------------------------------------------------- /RomPlayer/Assets.xcassets/dice.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioKit/ROMPlayer/HEAD/RomPlayer/Assets.xcassets/dice.imageset/Contents.json -------------------------------------------------------------------------------- /RomPlayer/Assets.xcassets/dice.imageset/dice@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioKit/ROMPlayer/HEAD/RomPlayer/Assets.xcassets/dice.imageset/dice@2x.png -------------------------------------------------------------------------------- /RomPlayer/Assets.xcassets/headerback.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioKit/ROMPlayer/HEAD/RomPlayer/Assets.xcassets/headerback.imageset/Contents.json -------------------------------------------------------------------------------- /RomPlayer/Assets.xcassets/headerback.imageset/headerback@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioKit/ROMPlayer/HEAD/RomPlayer/Assets.xcassets/headerback.imageset/headerback@2x.png -------------------------------------------------------------------------------- /RomPlayer/Assets.xcassets/left-arrow.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioKit/ROMPlayer/HEAD/RomPlayer/Assets.xcassets/left-arrow.imageset/Contents.json -------------------------------------------------------------------------------- /RomPlayer/Assets.xcassets/left-arrow.imageset/left-arrow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioKit/ROMPlayer/HEAD/RomPlayer/Assets.xcassets/left-arrow.imageset/left-arrow@2x.png -------------------------------------------------------------------------------- /RomPlayer/Assets.xcassets/mockup_blackkeys.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioKit/ROMPlayer/HEAD/RomPlayer/Assets.xcassets/mockup_blackkeys.imageset/Contents.json -------------------------------------------------------------------------------- /RomPlayer/Assets.xcassets/mockup_blackkeys.imageset/mockup_blackkeys@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioKit/ROMPlayer/HEAD/RomPlayer/Assets.xcassets/mockup_blackkeys.imageset/mockup_blackkeys@2x.png -------------------------------------------------------------------------------- /RomPlayer/Assets.xcassets/mockup_whitekeys.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioKit/ROMPlayer/HEAD/RomPlayer/Assets.xcassets/mockup_whitekeys.imageset/Contents.json -------------------------------------------------------------------------------- /RomPlayer/Assets.xcassets/mockup_whitekeys.imageset/mockup_whitekeys@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioKit/ROMPlayer/HEAD/RomPlayer/Assets.xcassets/mockup_whitekeys.imageset/mockup_whitekeys@2x.png -------------------------------------------------------------------------------- /RomPlayer/Assets.xcassets/right-arrow.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioKit/ROMPlayer/HEAD/RomPlayer/Assets.xcassets/right-arrow.imageset/Contents.json -------------------------------------------------------------------------------- /RomPlayer/Assets.xcassets/right-arrow.imageset/right-arrow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioKit/ROMPlayer/HEAD/RomPlayer/Assets.xcassets/right-arrow.imageset/right-arrow@2x.png -------------------------------------------------------------------------------- /RomPlayer/AudioSystem/AutoPan.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioKit/ROMPlayer/HEAD/RomPlayer/AudioSystem/AutoPan.swift -------------------------------------------------------------------------------- /RomPlayer/AudioSystem/Conductor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioKit/ROMPlayer/HEAD/RomPlayer/AudioSystem/Conductor.swift -------------------------------------------------------------------------------- /RomPlayer/AudioSystem/Fatten.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioKit/ROMPlayer/HEAD/RomPlayer/AudioSystem/Fatten.swift -------------------------------------------------------------------------------- /RomPlayer/AudioSystem/FilterSection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioKit/ROMPlayer/HEAD/RomPlayer/AudioSystem/FilterSection.swift -------------------------------------------------------------------------------- /RomPlayer/AudioSystem/PingPongDelay.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioKit/ROMPlayer/HEAD/RomPlayer/AudioSystem/PingPongDelay.swift -------------------------------------------------------------------------------- /RomPlayer/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioKit/ROMPlayer/HEAD/RomPlayer/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /RomPlayer/Cells/PresetCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioKit/ROMPlayer/HEAD/RomPlayer/Cells/PresetCell.swift -------------------------------------------------------------------------------- /RomPlayer/Controllers/AUMainController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioKit/ROMPlayer/HEAD/RomPlayer/Controllers/AUMainController.swift -------------------------------------------------------------------------------- /RomPlayer/Controllers/ParentViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioKit/ROMPlayer/HEAD/RomPlayer/Controllers/ParentViewController.swift -------------------------------------------------------------------------------- /RomPlayer/Controls/Buttons/ButtonStyleKit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioKit/ROMPlayer/HEAD/RomPlayer/Controls/Buttons/ButtonStyleKit.swift -------------------------------------------------------------------------------- /RomPlayer/Controls/Buttons/FlatToggleStyleKit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioKit/ROMPlayer/HEAD/RomPlayer/Controls/Buttons/FlatToggleStyleKit.swift -------------------------------------------------------------------------------- /RomPlayer/Controls/Buttons/LedButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioKit/ROMPlayer/HEAD/RomPlayer/Controls/Buttons/LedButton.swift -------------------------------------------------------------------------------- /RomPlayer/Controls/Buttons/LedToggleStyleKit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioKit/ROMPlayer/HEAD/RomPlayer/Controls/Buttons/LedToggleStyleKit.swift -------------------------------------------------------------------------------- /RomPlayer/Controls/Buttons/MIDIButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioKit/ROMPlayer/HEAD/RomPlayer/Controls/Buttons/MIDIButton.swift -------------------------------------------------------------------------------- /RomPlayer/Controls/Buttons/RadioButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioKit/ROMPlayer/HEAD/RomPlayer/Controls/Buttons/RadioButton.swift -------------------------------------------------------------------------------- /RomPlayer/Controls/Buttons/Stepper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioKit/ROMPlayer/HEAD/RomPlayer/Controls/Buttons/Stepper.swift -------------------------------------------------------------------------------- /RomPlayer/Controls/Buttons/StepperStyleKit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioKit/ROMPlayer/HEAD/RomPlayer/Controls/Buttons/StepperStyleKit.swift -------------------------------------------------------------------------------- /RomPlayer/Controls/Buttons/SynthUIButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioKit/ROMPlayer/HEAD/RomPlayer/Controls/Buttons/SynthUIButton.swift -------------------------------------------------------------------------------- /RomPlayer/Controls/Buttons/ToggleButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioKit/ROMPlayer/HEAD/RomPlayer/Controls/Buttons/ToggleButton.swift -------------------------------------------------------------------------------- /RomPlayer/Controls/Buttons/TopUIButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioKit/ROMPlayer/HEAD/RomPlayer/Controls/Buttons/TopUIButton.swift -------------------------------------------------------------------------------- /RomPlayer/Controls/Buttons/TopUIButtonStyleKit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioKit/ROMPlayer/HEAD/RomPlayer/Controls/Buttons/TopUIButtonStyleKit.swift -------------------------------------------------------------------------------- /RomPlayer/Controls/Buttons/UrlButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioKit/ROMPlayer/HEAD/RomPlayer/Controls/Buttons/UrlButton.swift -------------------------------------------------------------------------------- /RomPlayer/Controls/Knobs/FlatKnob.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioKit/ROMPlayer/HEAD/RomPlayer/Controls/Knobs/FlatKnob.swift -------------------------------------------------------------------------------- /RomPlayer/Controls/Knobs/FlatKnobStyleKit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioKit/ROMPlayer/HEAD/RomPlayer/Controls/Knobs/FlatKnobStyleKit.swift -------------------------------------------------------------------------------- /RomPlayer/Controls/Knobs/Knob+Touches.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioKit/ROMPlayer/HEAD/RomPlayer/Controls/Knobs/Knob+Touches.swift -------------------------------------------------------------------------------- /RomPlayer/Controls/Knobs/Knob.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioKit/ROMPlayer/HEAD/RomPlayer/Controls/Knobs/Knob.swift -------------------------------------------------------------------------------- /RomPlayer/Controls/Knobs/KnobStyleKit2.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioKit/ROMPlayer/HEAD/RomPlayer/Controls/Knobs/KnobStyleKit2.swift -------------------------------------------------------------------------------- /RomPlayer/Controls/Knobs/MIDIKnob.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioKit/ROMPlayer/HEAD/RomPlayer/Controls/Knobs/MIDIKnob.swift -------------------------------------------------------------------------------- /RomPlayer/Controls/MIDILearnable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioKit/ROMPlayer/HEAD/RomPlayer/Controls/MIDILearnable.swift -------------------------------------------------------------------------------- /RomPlayer/Controls/SynthKeyboard.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioKit/ROMPlayer/HEAD/RomPlayer/Controls/SynthKeyboard.swift -------------------------------------------------------------------------------- /RomPlayer/Extensions/Double+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioKit/ROMPlayer/HEAD/RomPlayer/Extensions/Double+Extensions.swift -------------------------------------------------------------------------------- /RomPlayer/Extensions/UILabel+Rotate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioKit/ROMPlayer/HEAD/RomPlayer/Extensions/UILabel+Rotate.swift -------------------------------------------------------------------------------- /RomPlayer/Extensions/ViewController+DisplayAlert.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioKit/ROMPlayer/HEAD/RomPlayer/Extensions/ViewController+DisplayAlert.swift -------------------------------------------------------------------------------- /RomPlayer/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioKit/ROMPlayer/HEAD/RomPlayer/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /RomPlayer/Images.xcassets/LaunchImage.launchimage/launchscreen@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioKit/ROMPlayer/HEAD/RomPlayer/Images.xcassets/LaunchImage.launchimage/launchscreen@2x.png -------------------------------------------------------------------------------- /RomPlayer/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioKit/ROMPlayer/HEAD/RomPlayer/Info.plist -------------------------------------------------------------------------------- /RomPlayer/PopUpControllers/AboutViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioKit/ROMPlayer/HEAD/RomPlayer/PopUpControllers/AboutViewController.swift -------------------------------------------------------------------------------- /RomPlayer/PopUpControllers/PopUpKeySettingsController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioKit/ROMPlayer/HEAD/RomPlayer/PopUpControllers/PopUpKeySettingsController.swift -------------------------------------------------------------------------------- /RomPlayer/PopUpControllers/PopUpMIDIController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioKit/ROMPlayer/HEAD/RomPlayer/PopUpControllers/PopUpMIDIController.swift -------------------------------------------------------------------------------- /RomPlayer/PopUpControllers/PopUpPresetController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioKit/ROMPlayer/HEAD/RomPlayer/PopUpControllers/PopUpPresetController.swift -------------------------------------------------------------------------------- /RomPlayer/RomPlayer.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioKit/ROMPlayer/HEAD/RomPlayer/RomPlayer.entitlements -------------------------------------------------------------------------------- /RomPlayer/Sounds/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioKit/ROMPlayer/HEAD/RomPlayer/Sounds/.DS_Store -------------------------------------------------------------------------------- /RomPlayer/Sounds/midi/rom_bass.mid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioKit/ROMPlayer/HEAD/RomPlayer/Sounds/midi/rom_bass.mid -------------------------------------------------------------------------------- /RomPlayer/Sounds/midi/rom_lead.mid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioKit/ROMPlayer/HEAD/RomPlayer/Sounds/midi/rom_lead.mid -------------------------------------------------------------------------------- /RomPlayer/Sounds/midi/rom_poly.mid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioKit/ROMPlayer/HEAD/RomPlayer/Sounds/midi/rom_poly.mid -------------------------------------------------------------------------------- /RomPlayer/Sounds/sfz/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioKit/ROMPlayer/HEAD/RomPlayer/Sounds/sfz/.DS_Store -------------------------------------------------------------------------------- /RomPlayer/Sounds/sfz/TX Brass.sfz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioKit/ROMPlayer/HEAD/RomPlayer/Sounds/sfz/TX Brass.sfz -------------------------------------------------------------------------------- /RomPlayer/Sounds/sfz/TX LoTine81z.sfz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioKit/ROMPlayer/HEAD/RomPlayer/Sounds/sfz/TX LoTine81z.sfz -------------------------------------------------------------------------------- /RomPlayer/Sounds/sfz/TX Metalimba.sfz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioKit/ROMPlayer/HEAD/RomPlayer/Sounds/sfz/TX Metalimba.sfz -------------------------------------------------------------------------------- /RomPlayer/Sounds/sfz/TX Pluck Bass.sfz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioKit/ROMPlayer/HEAD/RomPlayer/Sounds/sfz/TX Pluck Bass.sfz -------------------------------------------------------------------------------- /RomPlayer/Sounds/sfz/samples/TX_Chorus_Bras-000-048-c2.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioKit/ROMPlayer/HEAD/RomPlayer/Sounds/sfz/samples/TX_Chorus_Bras-000-048-c2.wv -------------------------------------------------------------------------------- /RomPlayer/Sounds/sfz/samples/TX_Chorus_Bras-000-054-f#2.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioKit/ROMPlayer/HEAD/RomPlayer/Sounds/sfz/samples/TX_Chorus_Bras-000-054-f#2.wv -------------------------------------------------------------------------------- /RomPlayer/Sounds/sfz/samples/TX_Chorus_Bras-000-060-c3.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioKit/ROMPlayer/HEAD/RomPlayer/Sounds/sfz/samples/TX_Chorus_Bras-000-060-c3.wv -------------------------------------------------------------------------------- /RomPlayer/Sounds/sfz/samples/TX_Chorus_Bras-000-066-f#3.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioKit/ROMPlayer/HEAD/RomPlayer/Sounds/sfz/samples/TX_Chorus_Bras-000-066-f#3.wv -------------------------------------------------------------------------------- /RomPlayer/Sounds/sfz/samples/TX_Chorus_Bras-000-072-c4.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioKit/ROMPlayer/HEAD/RomPlayer/Sounds/sfz/samples/TX_Chorus_Bras-000-072-c4.wv -------------------------------------------------------------------------------- /RomPlayer/Sounds/sfz/samples/TX_Chorus_Bras-000-078-f#4.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioKit/ROMPlayer/HEAD/RomPlayer/Sounds/sfz/samples/TX_Chorus_Bras-000-078-f#4.wv -------------------------------------------------------------------------------- /RomPlayer/Sounds/sfz/samples/TX_Chorus_Bras-000-084-c5.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioKit/ROMPlayer/HEAD/RomPlayer/Sounds/sfz/samples/TX_Chorus_Bras-000-084-c5.wv -------------------------------------------------------------------------------- /RomPlayer/Sounds/sfz/samples/TX_LoTine81z_ms0_048_c2.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioKit/ROMPlayer/HEAD/RomPlayer/Sounds/sfz/samples/TX_LoTine81z_ms0_048_c2.wv -------------------------------------------------------------------------------- /RomPlayer/Sounds/sfz/samples/TX_LoTine81z_ms0_054_f#2.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioKit/ROMPlayer/HEAD/RomPlayer/Sounds/sfz/samples/TX_LoTine81z_ms0_054_f#2.wv -------------------------------------------------------------------------------- /RomPlayer/Sounds/sfz/samples/TX_LoTine81z_ms0_060_c3.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioKit/ROMPlayer/HEAD/RomPlayer/Sounds/sfz/samples/TX_LoTine81z_ms0_060_c3.wv -------------------------------------------------------------------------------- /RomPlayer/Sounds/sfz/samples/TX_LoTine81z_ms0_066_f#3.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioKit/ROMPlayer/HEAD/RomPlayer/Sounds/sfz/samples/TX_LoTine81z_ms0_066_f#3.wv -------------------------------------------------------------------------------- /RomPlayer/Sounds/sfz/samples/TX_LoTine81z_ms0_072_c4.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioKit/ROMPlayer/HEAD/RomPlayer/Sounds/sfz/samples/TX_LoTine81z_ms0_072_c4.wv -------------------------------------------------------------------------------- /RomPlayer/Sounds/sfz/samples/TX_LoTine81z_ms0_078_f#4.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioKit/ROMPlayer/HEAD/RomPlayer/Sounds/sfz/samples/TX_LoTine81z_ms0_078_f#4.wv -------------------------------------------------------------------------------- /RomPlayer/Sounds/sfz/samples/TX_LoTine81z_ms0_084_c5.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioKit/ROMPlayer/HEAD/RomPlayer/Sounds/sfz/samples/TX_LoTine81z_ms0_084_c5.wv -------------------------------------------------------------------------------- /RomPlayer/Sounds/sfz/samples/TX_LoTine81z_ms1_048_c2.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioKit/ROMPlayer/HEAD/RomPlayer/Sounds/sfz/samples/TX_LoTine81z_ms1_048_c2.wv -------------------------------------------------------------------------------- /RomPlayer/Sounds/sfz/samples/TX_LoTine81z_ms1_054_f#2.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioKit/ROMPlayer/HEAD/RomPlayer/Sounds/sfz/samples/TX_LoTine81z_ms1_054_f#2.wv -------------------------------------------------------------------------------- /RomPlayer/Sounds/sfz/samples/TX_LoTine81z_ms1_060_c3.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioKit/ROMPlayer/HEAD/RomPlayer/Sounds/sfz/samples/TX_LoTine81z_ms1_060_c3.wv -------------------------------------------------------------------------------- /RomPlayer/Sounds/sfz/samples/TX_LoTine81z_ms1_066_f#3.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioKit/ROMPlayer/HEAD/RomPlayer/Sounds/sfz/samples/TX_LoTine81z_ms1_066_f#3.wv -------------------------------------------------------------------------------- /RomPlayer/Sounds/sfz/samples/TX_LoTine81z_ms1_072_c4.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioKit/ROMPlayer/HEAD/RomPlayer/Sounds/sfz/samples/TX_LoTine81z_ms1_072_c4.wv -------------------------------------------------------------------------------- /RomPlayer/Sounds/sfz/samples/TX_LoTine81z_ms1_078_f#4.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioKit/ROMPlayer/HEAD/RomPlayer/Sounds/sfz/samples/TX_LoTine81z_ms1_078_f#4.wv -------------------------------------------------------------------------------- /RomPlayer/Sounds/sfz/samples/TX_LoTine81z_ms1_084_c5.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioKit/ROMPlayer/HEAD/RomPlayer/Sounds/sfz/samples/TX_LoTine81z_ms1_084_c5.wv -------------------------------------------------------------------------------- /RomPlayer/Sounds/sfz/samples/TX_LoTine81z_ms2_048_c2.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioKit/ROMPlayer/HEAD/RomPlayer/Sounds/sfz/samples/TX_LoTine81z_ms2_048_c2.wv -------------------------------------------------------------------------------- /RomPlayer/Sounds/sfz/samples/TX_LoTine81z_ms2_054_f#2.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioKit/ROMPlayer/HEAD/RomPlayer/Sounds/sfz/samples/TX_LoTine81z_ms2_054_f#2.wv -------------------------------------------------------------------------------- /RomPlayer/Sounds/sfz/samples/TX_LoTine81z_ms2_060_c3.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioKit/ROMPlayer/HEAD/RomPlayer/Sounds/sfz/samples/TX_LoTine81z_ms2_060_c3.wv -------------------------------------------------------------------------------- /RomPlayer/Sounds/sfz/samples/TX_LoTine81z_ms2_066_f#3.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioKit/ROMPlayer/HEAD/RomPlayer/Sounds/sfz/samples/TX_LoTine81z_ms2_066_f#3.wv -------------------------------------------------------------------------------- /RomPlayer/Sounds/sfz/samples/TX_LoTine81z_ms2_072_c4.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioKit/ROMPlayer/HEAD/RomPlayer/Sounds/sfz/samples/TX_LoTine81z_ms2_072_c4.wv -------------------------------------------------------------------------------- /RomPlayer/Sounds/sfz/samples/TX_LoTine81z_ms2_078_f#4.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioKit/ROMPlayer/HEAD/RomPlayer/Sounds/sfz/samples/TX_LoTine81z_ms2_078_f#4.wv -------------------------------------------------------------------------------- /RomPlayer/Sounds/sfz/samples/TX_LoTine81z_ms2_084_c5.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioKit/ROMPlayer/HEAD/RomPlayer/Sounds/sfz/samples/TX_LoTine81z_ms2_084_c5.wv -------------------------------------------------------------------------------- /RomPlayer/Sounds/sfz/samples/TX_Metalimba-000-048-c2.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioKit/ROMPlayer/HEAD/RomPlayer/Sounds/sfz/samples/TX_Metalimba-000-048-c2.wv -------------------------------------------------------------------------------- /RomPlayer/Sounds/sfz/samples/TX_Metalimba-000-054-f#2.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioKit/ROMPlayer/HEAD/RomPlayer/Sounds/sfz/samples/TX_Metalimba-000-054-f#2.wv -------------------------------------------------------------------------------- /RomPlayer/Sounds/sfz/samples/TX_Metalimba-000-060-c3.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioKit/ROMPlayer/HEAD/RomPlayer/Sounds/sfz/samples/TX_Metalimba-000-060-c3.wv -------------------------------------------------------------------------------- /RomPlayer/Sounds/sfz/samples/TX_Metalimba-000-066-f#3.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioKit/ROMPlayer/HEAD/RomPlayer/Sounds/sfz/samples/TX_Metalimba-000-066-f#3.wv -------------------------------------------------------------------------------- /RomPlayer/Sounds/sfz/samples/TX_Metalimba-000-072-c4.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioKit/ROMPlayer/HEAD/RomPlayer/Sounds/sfz/samples/TX_Metalimba-000-072-c4.wv -------------------------------------------------------------------------------- /RomPlayer/Sounds/sfz/samples/TX_Metalimba-000-078-f#4.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioKit/ROMPlayer/HEAD/RomPlayer/Sounds/sfz/samples/TX_Metalimba-000-078-f#4.wv -------------------------------------------------------------------------------- /RomPlayer/Sounds/sfz/samples/TX_Metalimba-000-084-c5.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioKit/ROMPlayer/HEAD/RomPlayer/Sounds/sfz/samples/TX_Metalimba-000-084-c5.wv -------------------------------------------------------------------------------- /RomPlayer/Sounds/sfz/samples/TX_Pluck_Bass-000-048-c2.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioKit/ROMPlayer/HEAD/RomPlayer/Sounds/sfz/samples/TX_Pluck_Bass-000-048-c2.wv -------------------------------------------------------------------------------- /RomPlayer/Sounds/sfz/samples/TX_Pluck_Bass-000-054-f#2.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioKit/ROMPlayer/HEAD/RomPlayer/Sounds/sfz/samples/TX_Pluck_Bass-000-054-f#2.wv -------------------------------------------------------------------------------- /RomPlayer/Sounds/sfz/samples/TX_Pluck_Bass-000-060-c3.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioKit/ROMPlayer/HEAD/RomPlayer/Sounds/sfz/samples/TX_Pluck_Bass-000-060-c3.wv -------------------------------------------------------------------------------- /RomPlayer/Sounds/sfz/samples/TX_Pluck_Bass-000-066-f#3.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioKit/ROMPlayer/HEAD/RomPlayer/Sounds/sfz/samples/TX_Pluck_Bass-000-066-f#3.wv -------------------------------------------------------------------------------- /RomPlayer/Sounds/sfz/samples/TX_Pluck_Bass-000-072-c4.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioKit/ROMPlayer/HEAD/RomPlayer/Sounds/sfz/samples/TX_Pluck_Bass-000-072-c4.wv -------------------------------------------------------------------------------- /RomPlayer/Sounds/sfz/samples/TX_Pluck_Bass-000-078-f#4.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioKit/ROMPlayer/HEAD/RomPlayer/Sounds/sfz/samples/TX_Pluck_Bass-000-078-f#4.wv -------------------------------------------------------------------------------- /RomPlayer/Sounds/sfz/samples/TX_Pluck_Bass-000-084-c5.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioKit/ROMPlayer/HEAD/RomPlayer/Sounds/sfz/samples/TX_Pluck_Bass-000-084-c5.wv --------------------------------------------------------------------------------