├── .gitignore ├── Sound.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata ├── Sound ├── BLIT.h ├── BLIT.m ├── Sound-Info.plist ├── Sound-Prefix.pch ├── SoundAppDelegate.h ├── SoundAppDelegate.m ├── SoundViewController.h ├── SoundViewController.m ├── Synthesizer.h ├── Synthesizer.m ├── Wave.h ├── Wave.m ├── WaveNoise.h ├── WaveNoise.m ├── WaveSawtooth.h ├── WaveSawtooth.m ├── WaveSquare.h ├── WaveSquare.m ├── WaveTriangle.h ├── WaveTriangle.m ├── en.lproj │ ├── InfoPlist.strings │ └── MainStoryboard.storyboard └── main.m ├── SoundTests ├── SoundTests-Info.plist ├── SoundTests.h ├── SoundTests.m └── en.lproj │ └── InfoPlist.strings ├── keys ├── key-black.png ├── key-both.png ├── key-left.png ├── key-none.png ├── key-right.png ├── pressed-black.png ├── pressed-both.png ├── pressed-left.png ├── pressed-none.png └── pressed-right.png ├── noise.png ├── saw.png ├── sine.png ├── square.png ├── synth.png └── triangle.png /.gitignore: -------------------------------------------------------------------------------- 1 | psd/ 2 | xcuserdata 3 | .DS_Store 4 | -------------------------------------------------------------------------------- /Sound.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucaas/Blip-Synth/HEAD/Sound.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Sound.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucaas/Blip-Synth/HEAD/Sound.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Sound/BLIT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucaas/Blip-Synth/HEAD/Sound/BLIT.h -------------------------------------------------------------------------------- /Sound/BLIT.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucaas/Blip-Synth/HEAD/Sound/BLIT.m -------------------------------------------------------------------------------- /Sound/Sound-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucaas/Blip-Synth/HEAD/Sound/Sound-Info.plist -------------------------------------------------------------------------------- /Sound/Sound-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucaas/Blip-Synth/HEAD/Sound/Sound-Prefix.pch -------------------------------------------------------------------------------- /Sound/SoundAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucaas/Blip-Synth/HEAD/Sound/SoundAppDelegate.h -------------------------------------------------------------------------------- /Sound/SoundAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucaas/Blip-Synth/HEAD/Sound/SoundAppDelegate.m -------------------------------------------------------------------------------- /Sound/SoundViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucaas/Blip-Synth/HEAD/Sound/SoundViewController.h -------------------------------------------------------------------------------- /Sound/SoundViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucaas/Blip-Synth/HEAD/Sound/SoundViewController.m -------------------------------------------------------------------------------- /Sound/Synthesizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucaas/Blip-Synth/HEAD/Sound/Synthesizer.h -------------------------------------------------------------------------------- /Sound/Synthesizer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucaas/Blip-Synth/HEAD/Sound/Synthesizer.m -------------------------------------------------------------------------------- /Sound/Wave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucaas/Blip-Synth/HEAD/Sound/Wave.h -------------------------------------------------------------------------------- /Sound/Wave.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucaas/Blip-Synth/HEAD/Sound/Wave.m -------------------------------------------------------------------------------- /Sound/WaveNoise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucaas/Blip-Synth/HEAD/Sound/WaveNoise.h -------------------------------------------------------------------------------- /Sound/WaveNoise.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucaas/Blip-Synth/HEAD/Sound/WaveNoise.m -------------------------------------------------------------------------------- /Sound/WaveSawtooth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucaas/Blip-Synth/HEAD/Sound/WaveSawtooth.h -------------------------------------------------------------------------------- /Sound/WaveSawtooth.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucaas/Blip-Synth/HEAD/Sound/WaveSawtooth.m -------------------------------------------------------------------------------- /Sound/WaveSquare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucaas/Blip-Synth/HEAD/Sound/WaveSquare.h -------------------------------------------------------------------------------- /Sound/WaveSquare.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucaas/Blip-Synth/HEAD/Sound/WaveSquare.m -------------------------------------------------------------------------------- /Sound/WaveTriangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucaas/Blip-Synth/HEAD/Sound/WaveTriangle.h -------------------------------------------------------------------------------- /Sound/WaveTriangle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucaas/Blip-Synth/HEAD/Sound/WaveTriangle.m -------------------------------------------------------------------------------- /Sound/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Sound/en.lproj/MainStoryboard.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucaas/Blip-Synth/HEAD/Sound/en.lproj/MainStoryboard.storyboard -------------------------------------------------------------------------------- /Sound/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucaas/Blip-Synth/HEAD/Sound/main.m -------------------------------------------------------------------------------- /SoundTests/SoundTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucaas/Blip-Synth/HEAD/SoundTests/SoundTests-Info.plist -------------------------------------------------------------------------------- /SoundTests/SoundTests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucaas/Blip-Synth/HEAD/SoundTests/SoundTests.h -------------------------------------------------------------------------------- /SoundTests/SoundTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucaas/Blip-Synth/HEAD/SoundTests/SoundTests.m -------------------------------------------------------------------------------- /SoundTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /keys/key-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucaas/Blip-Synth/HEAD/keys/key-black.png -------------------------------------------------------------------------------- /keys/key-both.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucaas/Blip-Synth/HEAD/keys/key-both.png -------------------------------------------------------------------------------- /keys/key-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucaas/Blip-Synth/HEAD/keys/key-left.png -------------------------------------------------------------------------------- /keys/key-none.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucaas/Blip-Synth/HEAD/keys/key-none.png -------------------------------------------------------------------------------- /keys/key-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucaas/Blip-Synth/HEAD/keys/key-right.png -------------------------------------------------------------------------------- /keys/pressed-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucaas/Blip-Synth/HEAD/keys/pressed-black.png -------------------------------------------------------------------------------- /keys/pressed-both.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucaas/Blip-Synth/HEAD/keys/pressed-both.png -------------------------------------------------------------------------------- /keys/pressed-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucaas/Blip-Synth/HEAD/keys/pressed-left.png -------------------------------------------------------------------------------- /keys/pressed-none.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucaas/Blip-Synth/HEAD/keys/pressed-none.png -------------------------------------------------------------------------------- /keys/pressed-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucaas/Blip-Synth/HEAD/keys/pressed-right.png -------------------------------------------------------------------------------- /noise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucaas/Blip-Synth/HEAD/noise.png -------------------------------------------------------------------------------- /saw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucaas/Blip-Synth/HEAD/saw.png -------------------------------------------------------------------------------- /sine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucaas/Blip-Synth/HEAD/sine.png -------------------------------------------------------------------------------- /square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucaas/Blip-Synth/HEAD/square.png -------------------------------------------------------------------------------- /synth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucaas/Blip-Synth/HEAD/synth.png -------------------------------------------------------------------------------- /triangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucaas/Blip-Synth/HEAD/triangle.png --------------------------------------------------------------------------------