├── .gitignore ├── 64klang2.png ├── FileProperties_Security_Unblock.png ├── LICENSE ├── Player ├── Player.sln └── Player │ ├── 64k2Patch.h │ ├── 64k2Song.h │ ├── Player.vcxproj │ ├── Player.vcxproj.filters │ ├── Synth.cpp │ ├── Synth.h │ ├── SynthAllocator.cpp │ ├── SynthAllocator.h │ ├── SynthNode.cpp │ ├── SynthNode.h │ ├── main.cpp │ ├── sample_t.cpp │ └── sample_t.h ├── README.md ├── VSTiPlugin └── 64klang2.zip └── VSTiPluginSourceCode ├── 64klang2.sln ├── 64klang2Core ├── 64klang2Core.vcxproj ├── 64klang2Core.vcxproj.filters ├── Synth.cpp ├── Synth.h ├── SynthAllocator.cpp ├── SynthAllocator.h ├── SynthController.cpp ├── SynthController.h ├── SynthNode.cpp ├── SynthNode.h ├── sample_t.cpp ├── sample_t.h ├── tinystr.cpp ├── tinystr.h ├── tinyxml.cpp ├── tinyxml.h ├── tinyxmlerror.cpp └── tinyxmlparser.cpp ├── 64klang2GUI ├── 64klang2Config.xml ├── 64klang2GUI.csproj ├── ArpeggiatorEdit.xaml ├── ArpeggiatorEdit.xaml.cs ├── BitPattern.xaml ├── BitPattern.xaml.cs ├── GUISynthNode.xaml ├── GUISynthNode.xaml.cs ├── GUISynthNodeEdit.xaml ├── GUISynthNodeEdit.xaml.cs ├── Knob.xaml ├── Knob.xaml.cs ├── ModeButton.xaml ├── ModeButton.xaml.cs ├── MultiParse │ ├── DefaultCasts │ │ ├── MPBooleanCast.cs │ │ ├── MPByteCast.cs │ │ ├── MPCharCast.cs │ │ ├── MPDecimalCast.cs │ │ ├── MPDoubleCast.cs │ │ ├── MPInt16Cast.cs │ │ ├── MPInt32Cast.cs │ │ ├── MPInt64Cast.cs │ │ ├── MPSByteCast.cs │ │ ├── MPSingleCast.cs │ │ ├── MPStringCast.cs │ │ ├── MPUInt16Cast.cs │ │ ├── MPUInt32Cast.cs │ │ └── MPUInt64Cast.cs │ ├── DefaultDataTypes │ │ ├── MPBoolean.cs │ │ ├── MPByte.cs │ │ ├── MPChar.cs │ │ ├── MPDecimal.cs │ │ ├── MPDouble.cs │ │ ├── MPInt16.cs │ │ ├── MPInt32.cs │ │ ├── MPInt64.cs │ │ ├── MPSByte.cs │ │ ├── MPSingle.cs │ │ ├── MPString.cs │ │ ├── MPUInt16.cs │ │ ├── MPUInt32.cs │ │ ├── MPUInt64.cs │ │ └── MPVariable.cs │ ├── DefaultFunctions │ │ ├── MPAbs.cs │ │ ├── MPAcos.cs │ │ ├── MPAsin.cs │ │ ├── MPAtan.cs │ │ ├── MPAtan2.cs │ │ ├── MPCeiling.cs │ │ ├── MPCos.cs │ │ ├── MPCosh.cs │ │ ├── MPExp.cs │ │ ├── MPExp2.cs │ │ ├── MPFloor.cs │ │ ├── MPIfThen.cs │ │ ├── MPIn0.cs │ │ ├── MPIn1.cs │ │ ├── MPLerp.cs │ │ ├── MPLog.cs │ │ ├── MPLog10.cs │ │ ├── MPLog2.cs │ │ ├── MPMax.cs │ │ ├── MPMaxTime.cs │ │ ├── MPMin.cs │ │ ├── MPPi.cs │ │ ├── MPPow.cs │ │ ├── MPPulse.cs │ │ ├── MPRand.cs │ │ ├── MPRound.cs │ │ ├── MPSign.cs │ │ ├── MPSin.cs │ │ ├── MPSqr.cs │ │ ├── MPSqrt.cs │ │ ├── MPTan.cs │ │ ├── MPTanh.cs │ │ ├── MPTau.cs │ │ ├── MPTautime.cs │ │ ├── MPTriSaw.cs │ │ ├── MPTruncate.cs │ │ ├── MPVAftertouch.cs │ │ ├── MPVFrequency.cs │ │ ├── MPVGate.cs │ │ ├── MPVNote.cs │ │ ├── MPVTrigger.cs │ │ └── MPVVelocity.cs │ ├── DefaultOperators │ │ ├── MPAddition.cs │ │ ├── MPAssignment.cs │ │ ├── MPComplement.cs │ │ ├── MPConditionalAnd.cs │ │ ├── MPConditionalOr.cs │ │ ├── MPDivision.cs │ │ ├── MPEquality.cs │ │ ├── MPInequality.cs │ │ ├── MPLeftShift.cs │ │ ├── MPLogicalAnd.cs │ │ ├── MPLogicalOr.cs │ │ ├── MPLogicalXOr.cs │ │ ├── MPModulo.cs │ │ ├── MPMultiplication.cs │ │ ├── MPNegative.cs │ │ ├── MPNot.cs │ │ ├── MPPositive.cs │ │ ├── MPRelationalLarger.cs │ │ ├── MPRelationalLargerEqual.cs │ │ ├── MPRelationalSmaller.cs │ │ ├── MPRelationalSmallerEqual.cs │ │ ├── MPRightShift.cs │ │ └── MPSubtraction.cs │ ├── Expression.cs │ ├── MPDataType.cs │ ├── MPDefault.cs │ ├── MPFunction.cs │ ├── MPOperator.cs │ ├── MPSpecialCharacters.cs │ └── ParseException.cs ├── Properties │ └── AssemblyInfo.cs ├── SynthCanvas.xaml ├── SynthCanvas.xaml.cs ├── SynthWindow.xaml ├── SynthWindow.xaml.cs ├── TouchScrolling.cs ├── VUMeter.xaml ├── VUMeter.xaml.cs ├── WaveFileConfig.xaml ├── WaveFileConfig.xaml.cs ├── WaveFileDialog.xaml ├── WaveFileDialog.xaml.cs └── WaveformTimeline.cs ├── 64klang2VSTi ├── 64klang2VSTi.vcxproj ├── vstplugmain.cpp ├── vstxsynth.cpp ├── vstxsynth.h └── vstxsynthproc.cpp ├── 64klang2Wrapper ├── 64klang2Wrapper.cpp ├── 64klang2Wrapper.h ├── 64klang2Wrapper.vcxproj ├── 64klang2Wrapper.vcxproj.filters ├── ReadMe.txt ├── dllmain.cpp ├── stdafx.cpp ├── stdafx.h └── targetver.h ├── DebugExe ├── AudioOut.h ├── DebugExe.vcxproj ├── Exe.cpp ├── Exe.ico ├── Exe.rc ├── Exe.vcxproj.filters ├── MidiIn.h ├── Resource.h ├── small.ico └── targetver.h ├── Setup ├── 64klang2_Setup.exe ├── Setup.isl └── Setup.isproj ├── readme.txt ├── stk ├── include │ ├── ADSR.h │ ├── Asymp.h │ ├── BandedWG.h │ ├── BeeThree.h │ ├── BiQuad.h │ ├── Blit.h │ ├── BlitSaw.h │ ├── BlitSquare.h │ ├── BlowBotl.h │ ├── BlowHole.h │ ├── BowTable.h │ ├── Bowed.h │ ├── Brass.h │ ├── Chorus.h │ ├── Clarinet.h │ ├── Cubic.h │ ├── Delay.h │ ├── DelayA.h │ ├── DelayL.h │ ├── Drummer.h │ ├── Echo.h │ ├── Effect.h │ ├── Envelope.h │ ├── FM.h │ ├── FMVoices.h │ ├── FileLoop.h │ ├── FileRead.h │ ├── FileWrite.h │ ├── FileWvIn.h │ ├── FileWvOut.h │ ├── Filter.h │ ├── Fir.h │ ├── Flute.h │ ├── FormSwep.h │ ├── FreeVerb.h │ ├── Function.h │ ├── Generator.h │ ├── Granulate.h │ ├── Guitar.h │ ├── HevyMetl.h │ ├── Iir.h │ ├── InetWvIn.h │ ├── InetWvOut.h │ ├── Instrmnt.h │ ├── JCRev.h │ ├── JetTable.h │ ├── LentPitShift.h │ ├── Mandolin.h │ ├── Mesh2D.h │ ├── Messager.h │ ├── MidiFileIn.h │ ├── Modal.h │ ├── ModalBar.h │ ├── Modulate.h │ ├── Moog.h │ ├── Mutex.h │ ├── NRev.h │ ├── Noise.h │ ├── OnePole.h │ ├── OneZero.h │ ├── PRCRev.h │ ├── PercFlut.h │ ├── Phonemes.h │ ├── PitShift.h │ ├── PluckTwo.h │ ├── Plucked.h │ ├── PoleZero.h │ ├── ReedTable.h │ ├── Resonate.h │ ├── Rhodey.h │ ├── RtAudio.h │ ├── RtError.h │ ├── RtMidi.h │ ├── RtWvIn.h │ ├── RtWvOut.h │ ├── SKINI.msg │ ├── SKINI.tbl │ ├── Sampler.h │ ├── Saxofony.h │ ├── Shakers.h │ ├── Simple.h │ ├── SineWave.h │ ├── SingWave.h │ ├── Sitar.h │ ├── Skini.h │ ├── Socket.h │ ├── Sphere.h │ ├── StifKarp.h │ ├── Stk.h │ ├── TapDelay.h │ ├── TcpClient.h │ ├── TcpServer.h │ ├── Thread.h │ ├── TubeBell.h │ ├── Twang.h │ ├── TwoPole.h │ ├── TwoZero.h │ ├── UdpSocket.h │ ├── Vector3D.h │ ├── VoicForm.h │ ├── Voicer.h │ ├── Whistle.h │ ├── Wurley.h │ ├── WvIn.h │ └── WvOut.h └── src │ ├── ADSR.cpp │ ├── Asymp.cpp │ ├── BandedWG.cpp │ ├── BeeThree.cpp │ ├── BiQuad.cpp │ ├── Blit.cpp │ ├── BlitSaw.cpp │ ├── BlitSquare.cpp │ ├── BlowBotl.cpp │ ├── BlowHole.cpp │ ├── Bowed.cpp │ ├── Brass.cpp │ ├── Chorus.cpp │ ├── Clarinet.cpp │ ├── Delay.cpp │ ├── DelayA.cpp │ ├── DelayL.cpp │ ├── Drummer.cpp │ ├── Echo.cpp │ ├── Envelope.cpp │ ├── FM.cpp │ ├── FMVoices.cpp │ ├── FileLoop.cpp │ ├── FileRead.cpp │ ├── FileWrite.cpp │ ├── FileWvIn.cpp │ ├── FileWvOut.cpp │ ├── Fir.cpp │ ├── Flute.cpp │ ├── FormSwep.cpp │ ├── FreeVerb.cpp │ ├── Granulate.cpp │ ├── Guitar.cpp │ ├── HevyMetl.cpp │ ├── Iir.cpp │ ├── InetWvIn.cpp │ ├── InetWvOut.cpp │ ├── JCRev.cpp │ ├── LentPitShift.cpp │ ├── Mandolin.cpp │ ├── Mesh2D.cpp │ ├── Messager.cpp │ ├── MidiFileIn.cpp │ ├── Modal.cpp │ ├── ModalBar.cpp │ ├── Modulate.cpp │ ├── Moog.cpp │ ├── Mutex.cpp │ ├── NRev.cpp │ ├── Noise.cpp │ ├── OnePole.cpp │ ├── OneZero.cpp │ ├── PRCRev.cpp │ ├── PercFlut.cpp │ ├── Phonemes.cpp │ ├── PitShift.cpp │ ├── PluckTwo.cpp │ ├── Plucked.cpp │ ├── PoleZero.cpp │ ├── Resonate.cpp │ ├── Rhodey.cpp │ ├── RtAudio.cpp │ ├── RtMidi.cpp │ ├── RtWvIn.cpp │ ├── RtWvOut.cpp │ ├── Sampler.cpp │ ├── Saxofony.cpp │ ├── Shakers.cpp │ ├── Simple.cpp │ ├── SineWave.cpp │ ├── SingWave.cpp │ ├── Sitar.cpp │ ├── Skini.cpp │ ├── Socket.cpp │ ├── Sphere.cpp │ ├── StifKarp.cpp │ ├── Stk.cpp │ ├── TapDelay.cpp │ ├── TcpClient.cpp │ ├── TcpServer.cpp │ ├── Thread.cpp │ ├── TubeBell.cpp │ ├── Twang.cpp │ ├── TwoPole.cpp │ ├── TwoZero.cpp │ ├── UdpSocket.cpp │ ├── VoicForm.cpp │ ├── Voicer.cpp │ ├── Whistle.cpp │ ├── Wurley.cpp │ └── include │ ├── FunctionDiscoveryKeys_devpkey.h │ ├── asio.cpp │ ├── asio.h │ ├── asiodrivers.cpp │ ├── asiodrivers.h │ ├── asiodrvr.h │ ├── asiolist.cpp │ ├── asiolist.h │ ├── asiosys.h │ ├── dsound.h │ ├── ginclude.h │ ├── iasiodrv.h │ ├── iasiothiscallresolver.cpp │ ├── iasiothiscallresolver.h │ └── soundcard.h └── vstsdk ├── interfaces ├── aeffect.h ├── aeffectx.h └── vstfxstore.h ├── source ├── aeffeditor.h ├── audioeffect.cpp ├── audioeffect.h ├── audioeffectx.cpp └── audioeffectx.h └── vstplug.def /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/.gitignore -------------------------------------------------------------------------------- /64klang2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/64klang2.png -------------------------------------------------------------------------------- /FileProperties_Security_Unblock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/FileProperties_Security_Unblock.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/LICENSE -------------------------------------------------------------------------------- /Player/Player.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/Player/Player.sln -------------------------------------------------------------------------------- /Player/Player/64k2Patch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/Player/Player/64k2Patch.h -------------------------------------------------------------------------------- /Player/Player/64k2Song.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/Player/Player/64k2Song.h -------------------------------------------------------------------------------- /Player/Player/Player.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/Player/Player/Player.vcxproj -------------------------------------------------------------------------------- /Player/Player/Player.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/Player/Player/Player.vcxproj.filters -------------------------------------------------------------------------------- /Player/Player/Synth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/Player/Player/Synth.cpp -------------------------------------------------------------------------------- /Player/Player/Synth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/Player/Player/Synth.h -------------------------------------------------------------------------------- /Player/Player/SynthAllocator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/Player/Player/SynthAllocator.cpp -------------------------------------------------------------------------------- /Player/Player/SynthAllocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/Player/Player/SynthAllocator.h -------------------------------------------------------------------------------- /Player/Player/SynthNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/Player/Player/SynthNode.cpp -------------------------------------------------------------------------------- /Player/Player/SynthNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/Player/Player/SynthNode.h -------------------------------------------------------------------------------- /Player/Player/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/Player/Player/main.cpp -------------------------------------------------------------------------------- /Player/Player/sample_t.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/Player/Player/sample_t.cpp -------------------------------------------------------------------------------- /Player/Player/sample_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/Player/Player/sample_t.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/README.md -------------------------------------------------------------------------------- /VSTiPlugin/64klang2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPlugin/64klang2.zip -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2.sln -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2Core/64klang2Core.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2Core/64klang2Core.vcxproj -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2Core/64klang2Core.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2Core/64klang2Core.vcxproj.filters -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2Core/Synth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2Core/Synth.cpp -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2Core/Synth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2Core/Synth.h -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2Core/SynthAllocator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2Core/SynthAllocator.cpp -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2Core/SynthAllocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2Core/SynthAllocator.h -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2Core/SynthController.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2Core/SynthController.cpp -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2Core/SynthController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2Core/SynthController.h -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2Core/SynthNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2Core/SynthNode.cpp -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2Core/SynthNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2Core/SynthNode.h -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2Core/sample_t.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2Core/sample_t.cpp -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2Core/sample_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2Core/sample_t.h -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2Core/tinystr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2Core/tinystr.cpp -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2Core/tinystr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2Core/tinystr.h -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2Core/tinyxml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2Core/tinyxml.cpp -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2Core/tinyxml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2Core/tinyxml.h -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2Core/tinyxmlerror.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2Core/tinyxmlerror.cpp -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2Core/tinyxmlparser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2Core/tinyxmlparser.cpp -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2GUI/64klang2Config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2GUI/64klang2Config.xml -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2GUI/64klang2GUI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2GUI/64klang2GUI.csproj -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2GUI/ArpeggiatorEdit.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2GUI/ArpeggiatorEdit.xaml -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2GUI/ArpeggiatorEdit.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2GUI/ArpeggiatorEdit.xaml.cs -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2GUI/BitPattern.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2GUI/BitPattern.xaml -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2GUI/BitPattern.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2GUI/BitPattern.xaml.cs -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2GUI/GUISynthNode.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2GUI/GUISynthNode.xaml -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2GUI/GUISynthNode.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2GUI/GUISynthNode.xaml.cs -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2GUI/GUISynthNodeEdit.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2GUI/GUISynthNodeEdit.xaml -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2GUI/GUISynthNodeEdit.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2GUI/GUISynthNodeEdit.xaml.cs -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2GUI/Knob.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2GUI/Knob.xaml -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2GUI/Knob.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2GUI/Knob.xaml.cs -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2GUI/ModeButton.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2GUI/ModeButton.xaml -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2GUI/ModeButton.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2GUI/ModeButton.xaml.cs -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultCasts/MPBooleanCast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultCasts/MPBooleanCast.cs -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultCasts/MPByteCast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultCasts/MPByteCast.cs -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultCasts/MPCharCast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultCasts/MPCharCast.cs -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultCasts/MPDecimalCast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultCasts/MPDecimalCast.cs -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultCasts/MPDoubleCast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultCasts/MPDoubleCast.cs -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultCasts/MPInt16Cast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultCasts/MPInt16Cast.cs -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultCasts/MPInt32Cast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultCasts/MPInt32Cast.cs -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultCasts/MPInt64Cast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultCasts/MPInt64Cast.cs -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultCasts/MPSByteCast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultCasts/MPSByteCast.cs -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultCasts/MPSingleCast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultCasts/MPSingleCast.cs -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultCasts/MPStringCast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultCasts/MPStringCast.cs -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultCasts/MPUInt16Cast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultCasts/MPUInt16Cast.cs -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultCasts/MPUInt32Cast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultCasts/MPUInt32Cast.cs -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultCasts/MPUInt64Cast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultCasts/MPUInt64Cast.cs -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultDataTypes/MPBoolean.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultDataTypes/MPBoolean.cs -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultDataTypes/MPByte.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultDataTypes/MPByte.cs -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultDataTypes/MPChar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultDataTypes/MPChar.cs -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultDataTypes/MPDecimal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultDataTypes/MPDecimal.cs -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultDataTypes/MPDouble.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultDataTypes/MPDouble.cs -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultDataTypes/MPInt16.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultDataTypes/MPInt16.cs -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultDataTypes/MPInt32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultDataTypes/MPInt32.cs -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultDataTypes/MPInt64.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultDataTypes/MPInt64.cs -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultDataTypes/MPSByte.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultDataTypes/MPSByte.cs -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultDataTypes/MPSingle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultDataTypes/MPSingle.cs -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultDataTypes/MPString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultDataTypes/MPString.cs -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultDataTypes/MPUInt16.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultDataTypes/MPUInt16.cs -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultDataTypes/MPUInt32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultDataTypes/MPUInt32.cs -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultDataTypes/MPUInt64.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultDataTypes/MPUInt64.cs -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultDataTypes/MPVariable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultDataTypes/MPVariable.cs -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultFunctions/MPAbs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultFunctions/MPAbs.cs -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultFunctions/MPAcos.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultFunctions/MPAcos.cs -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultFunctions/MPAsin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultFunctions/MPAsin.cs -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultFunctions/MPAtan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultFunctions/MPAtan.cs -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultFunctions/MPAtan2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultFunctions/MPAtan2.cs -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultFunctions/MPCeiling.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultFunctions/MPCeiling.cs -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultFunctions/MPCos.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultFunctions/MPCos.cs -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultFunctions/MPCosh.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultFunctions/MPCosh.cs -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultFunctions/MPExp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultFunctions/MPExp.cs -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultFunctions/MPExp2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultFunctions/MPExp2.cs -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultFunctions/MPFloor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultFunctions/MPFloor.cs -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultFunctions/MPIfThen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultFunctions/MPIfThen.cs -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultFunctions/MPIn0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultFunctions/MPIn0.cs -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultFunctions/MPIn1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultFunctions/MPIn1.cs -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultFunctions/MPLerp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultFunctions/MPLerp.cs -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultFunctions/MPLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultFunctions/MPLog.cs -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultFunctions/MPLog10.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultFunctions/MPLog10.cs -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultFunctions/MPLog2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultFunctions/MPLog2.cs -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultFunctions/MPMax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultFunctions/MPMax.cs -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultFunctions/MPMaxTime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultFunctions/MPMaxTime.cs -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultFunctions/MPMin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultFunctions/MPMin.cs -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultFunctions/MPPi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultFunctions/MPPi.cs -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultFunctions/MPPow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultFunctions/MPPow.cs -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultFunctions/MPPulse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultFunctions/MPPulse.cs -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultFunctions/MPRand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultFunctions/MPRand.cs -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultFunctions/MPRound.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultFunctions/MPRound.cs -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultFunctions/MPSign.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultFunctions/MPSign.cs -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultFunctions/MPSin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultFunctions/MPSin.cs -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultFunctions/MPSqr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultFunctions/MPSqr.cs -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultFunctions/MPSqrt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultFunctions/MPSqrt.cs -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultFunctions/MPTan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultFunctions/MPTan.cs -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultFunctions/MPTanh.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultFunctions/MPTanh.cs -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultFunctions/MPTau.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultFunctions/MPTau.cs -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultFunctions/MPTautime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultFunctions/MPTautime.cs -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultFunctions/MPTriSaw.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultFunctions/MPTriSaw.cs -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultFunctions/MPTruncate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultFunctions/MPTruncate.cs -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultFunctions/MPVAftertouch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultFunctions/MPVAftertouch.cs -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultFunctions/MPVFrequency.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultFunctions/MPVFrequency.cs -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultFunctions/MPVGate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultFunctions/MPVGate.cs -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultFunctions/MPVNote.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultFunctions/MPVNote.cs -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultFunctions/MPVTrigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultFunctions/MPVTrigger.cs -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultFunctions/MPVVelocity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultFunctions/MPVVelocity.cs -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultOperators/MPAddition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultOperators/MPAddition.cs -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultOperators/MPAssignment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultOperators/MPAssignment.cs -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultOperators/MPComplement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultOperators/MPComplement.cs -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultOperators/MPConditionalAnd.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultOperators/MPConditionalAnd.cs -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultOperators/MPConditionalOr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultOperators/MPConditionalOr.cs -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultOperators/MPDivision.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultOperators/MPDivision.cs -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultOperators/MPEquality.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultOperators/MPEquality.cs -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultOperators/MPInequality.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultOperators/MPInequality.cs -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultOperators/MPLeftShift.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultOperators/MPLeftShift.cs -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultOperators/MPLogicalAnd.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultOperators/MPLogicalAnd.cs -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultOperators/MPLogicalOr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultOperators/MPLogicalOr.cs -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultOperators/MPLogicalXOr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultOperators/MPLogicalXOr.cs -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultOperators/MPModulo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultOperators/MPModulo.cs -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultOperators/MPMultiplication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultOperators/MPMultiplication.cs -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultOperators/MPNegative.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultOperators/MPNegative.cs -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultOperators/MPNot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultOperators/MPNot.cs -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultOperators/MPPositive.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultOperators/MPPositive.cs -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultOperators/MPRelationalLarger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultOperators/MPRelationalLarger.cs -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultOperators/MPRelationalLargerEqual.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultOperators/MPRelationalLargerEqual.cs -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultOperators/MPRelationalSmaller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultOperators/MPRelationalSmaller.cs -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultOperators/MPRelationalSmallerEqual.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultOperators/MPRelationalSmallerEqual.cs -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultOperators/MPRightShift.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultOperators/MPRightShift.cs -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultOperators/MPSubtraction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2GUI/MultiParse/DefaultOperators/MPSubtraction.cs -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2GUI/MultiParse/Expression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2GUI/MultiParse/Expression.cs -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2GUI/MultiParse/MPDataType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2GUI/MultiParse/MPDataType.cs -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2GUI/MultiParse/MPDefault.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2GUI/MultiParse/MPDefault.cs -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2GUI/MultiParse/MPFunction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2GUI/MultiParse/MPFunction.cs -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2GUI/MultiParse/MPOperator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2GUI/MultiParse/MPOperator.cs -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2GUI/MultiParse/MPSpecialCharacters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2GUI/MultiParse/MPSpecialCharacters.cs -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2GUI/MultiParse/ParseException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2GUI/MultiParse/ParseException.cs -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2GUI/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2GUI/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2GUI/SynthCanvas.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2GUI/SynthCanvas.xaml -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2GUI/SynthCanvas.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2GUI/SynthCanvas.xaml.cs -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2GUI/SynthWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2GUI/SynthWindow.xaml -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2GUI/SynthWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2GUI/SynthWindow.xaml.cs -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2GUI/TouchScrolling.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2GUI/TouchScrolling.cs -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2GUI/VUMeter.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2GUI/VUMeter.xaml -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2GUI/VUMeter.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2GUI/VUMeter.xaml.cs -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2GUI/WaveFileConfig.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2GUI/WaveFileConfig.xaml -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2GUI/WaveFileConfig.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2GUI/WaveFileConfig.xaml.cs -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2GUI/WaveFileDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2GUI/WaveFileDialog.xaml -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2GUI/WaveFileDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2GUI/WaveFileDialog.xaml.cs -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2GUI/WaveformTimeline.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2GUI/WaveformTimeline.cs -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2VSTi/64klang2VSTi.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2VSTi/64klang2VSTi.vcxproj -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2VSTi/vstplugmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2VSTi/vstplugmain.cpp -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2VSTi/vstxsynth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2VSTi/vstxsynth.cpp -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2VSTi/vstxsynth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2VSTi/vstxsynth.h -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2VSTi/vstxsynthproc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2VSTi/vstxsynthproc.cpp -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2Wrapper/64klang2Wrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2Wrapper/64klang2Wrapper.cpp -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2Wrapper/64klang2Wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2Wrapper/64klang2Wrapper.h -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2Wrapper/64klang2Wrapper.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2Wrapper/64klang2Wrapper.vcxproj -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2Wrapper/64klang2Wrapper.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2Wrapper/64klang2Wrapper.vcxproj.filters -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2Wrapper/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2Wrapper/ReadMe.txt -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2Wrapper/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2Wrapper/dllmain.cpp -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2Wrapper/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2Wrapper/stdafx.cpp -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2Wrapper/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2Wrapper/stdafx.h -------------------------------------------------------------------------------- /VSTiPluginSourceCode/64klang2Wrapper/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/64klang2Wrapper/targetver.h -------------------------------------------------------------------------------- /VSTiPluginSourceCode/DebugExe/AudioOut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/DebugExe/AudioOut.h -------------------------------------------------------------------------------- /VSTiPluginSourceCode/DebugExe/DebugExe.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/DebugExe/DebugExe.vcxproj -------------------------------------------------------------------------------- /VSTiPluginSourceCode/DebugExe/Exe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/DebugExe/Exe.cpp -------------------------------------------------------------------------------- /VSTiPluginSourceCode/DebugExe/Exe.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/DebugExe/Exe.ico -------------------------------------------------------------------------------- /VSTiPluginSourceCode/DebugExe/Exe.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/DebugExe/Exe.rc -------------------------------------------------------------------------------- /VSTiPluginSourceCode/DebugExe/Exe.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/DebugExe/Exe.vcxproj.filters -------------------------------------------------------------------------------- /VSTiPluginSourceCode/DebugExe/MidiIn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/DebugExe/MidiIn.h -------------------------------------------------------------------------------- /VSTiPluginSourceCode/DebugExe/Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/DebugExe/Resource.h -------------------------------------------------------------------------------- /VSTiPluginSourceCode/DebugExe/small.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/DebugExe/small.ico -------------------------------------------------------------------------------- /VSTiPluginSourceCode/DebugExe/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/DebugExe/targetver.h -------------------------------------------------------------------------------- /VSTiPluginSourceCode/Setup/64klang2_Setup.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/Setup/64klang2_Setup.exe -------------------------------------------------------------------------------- /VSTiPluginSourceCode/Setup/Setup.isl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/Setup/Setup.isl -------------------------------------------------------------------------------- /VSTiPluginSourceCode/Setup/Setup.isproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/Setup/Setup.isproj -------------------------------------------------------------------------------- /VSTiPluginSourceCode/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/readme.txt -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/include/ADSR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/include/ADSR.h -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/include/Asymp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/include/Asymp.h -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/include/BandedWG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/include/BandedWG.h -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/include/BeeThree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/include/BeeThree.h -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/include/BiQuad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/include/BiQuad.h -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/include/Blit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/include/Blit.h -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/include/BlitSaw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/include/BlitSaw.h -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/include/BlitSquare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/include/BlitSquare.h -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/include/BlowBotl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/include/BlowBotl.h -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/include/BlowHole.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/include/BlowHole.h -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/include/BowTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/include/BowTable.h -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/include/Bowed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/include/Bowed.h -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/include/Brass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/include/Brass.h -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/include/Chorus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/include/Chorus.h -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/include/Clarinet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/include/Clarinet.h -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/include/Cubic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/include/Cubic.h -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/include/Delay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/include/Delay.h -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/include/DelayA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/include/DelayA.h -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/include/DelayL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/include/DelayL.h -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/include/Drummer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/include/Drummer.h -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/include/Echo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/include/Echo.h -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/include/Effect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/include/Effect.h -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/include/Envelope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/include/Envelope.h -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/include/FM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/include/FM.h -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/include/FMVoices.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/include/FMVoices.h -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/include/FileLoop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/include/FileLoop.h -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/include/FileRead.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/include/FileRead.h -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/include/FileWrite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/include/FileWrite.h -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/include/FileWvIn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/include/FileWvIn.h -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/include/FileWvOut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/include/FileWvOut.h -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/include/Filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/include/Filter.h -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/include/Fir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/include/Fir.h -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/include/Flute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/include/Flute.h -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/include/FormSwep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/include/FormSwep.h -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/include/FreeVerb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/include/FreeVerb.h -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/include/Function.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/include/Function.h -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/include/Generator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/include/Generator.h -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/include/Granulate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/include/Granulate.h -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/include/Guitar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/include/Guitar.h -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/include/HevyMetl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/include/HevyMetl.h -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/include/Iir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/include/Iir.h -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/include/InetWvIn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/include/InetWvIn.h -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/include/InetWvOut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/include/InetWvOut.h -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/include/Instrmnt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/include/Instrmnt.h -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/include/JCRev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/include/JCRev.h -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/include/JetTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/include/JetTable.h -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/include/LentPitShift.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/include/LentPitShift.h -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/include/Mandolin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/include/Mandolin.h -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/include/Mesh2D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/include/Mesh2D.h -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/include/Messager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/include/Messager.h -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/include/MidiFileIn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/include/MidiFileIn.h -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/include/Modal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/include/Modal.h -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/include/ModalBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/include/ModalBar.h -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/include/Modulate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/include/Modulate.h -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/include/Moog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/include/Moog.h -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/include/Mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/include/Mutex.h -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/include/NRev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/include/NRev.h -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/include/Noise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/include/Noise.h -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/include/OnePole.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/include/OnePole.h -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/include/OneZero.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/include/OneZero.h -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/include/PRCRev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/include/PRCRev.h -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/include/PercFlut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/include/PercFlut.h -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/include/Phonemes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/include/Phonemes.h -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/include/PitShift.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/include/PitShift.h -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/include/PluckTwo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/include/PluckTwo.h -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/include/Plucked.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/include/Plucked.h -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/include/PoleZero.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/include/PoleZero.h -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/include/ReedTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/include/ReedTable.h -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/include/Resonate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/include/Resonate.h -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/include/Rhodey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/include/Rhodey.h -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/include/RtAudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/include/RtAudio.h -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/include/RtError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/include/RtError.h -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/include/RtMidi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/include/RtMidi.h -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/include/RtWvIn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/include/RtWvIn.h -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/include/RtWvOut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/include/RtWvOut.h -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/include/SKINI.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/include/SKINI.msg -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/include/SKINI.tbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/include/SKINI.tbl -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/include/Sampler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/include/Sampler.h -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/include/Saxofony.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/include/Saxofony.h -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/include/Shakers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/include/Shakers.h -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/include/Simple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/include/Simple.h -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/include/SineWave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/include/SineWave.h -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/include/SingWave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/include/SingWave.h -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/include/Sitar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/include/Sitar.h -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/include/Skini.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/include/Skini.h -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/include/Socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/include/Socket.h -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/include/Sphere.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/include/Sphere.h -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/include/StifKarp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/include/StifKarp.h -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/include/Stk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/include/Stk.h -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/include/TapDelay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/include/TapDelay.h -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/include/TcpClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/include/TcpClient.h -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/include/TcpServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/include/TcpServer.h -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/include/Thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/include/Thread.h -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/include/TubeBell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/include/TubeBell.h -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/include/Twang.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/include/Twang.h -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/include/TwoPole.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/include/TwoPole.h -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/include/TwoZero.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/include/TwoZero.h -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/include/UdpSocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/include/UdpSocket.h -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/include/Vector3D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/include/Vector3D.h -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/include/VoicForm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/include/VoicForm.h -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/include/Voicer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/include/Voicer.h -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/include/Whistle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/include/Whistle.h -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/include/Wurley.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/include/Wurley.h -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/include/WvIn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/include/WvIn.h -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/include/WvOut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/include/WvOut.h -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/src/ADSR.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/src/ADSR.cpp -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/src/Asymp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/src/Asymp.cpp -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/src/BandedWG.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/src/BandedWG.cpp -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/src/BeeThree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/src/BeeThree.cpp -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/src/BiQuad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/src/BiQuad.cpp -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/src/Blit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/src/Blit.cpp -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/src/BlitSaw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/src/BlitSaw.cpp -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/src/BlitSquare.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/src/BlitSquare.cpp -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/src/BlowBotl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/src/BlowBotl.cpp -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/src/BlowHole.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/src/BlowHole.cpp -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/src/Bowed.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/src/Bowed.cpp -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/src/Brass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/src/Brass.cpp -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/src/Chorus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/src/Chorus.cpp -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/src/Clarinet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/src/Clarinet.cpp -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/src/Delay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/src/Delay.cpp -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/src/DelayA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/src/DelayA.cpp -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/src/DelayL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/src/DelayL.cpp -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/src/Drummer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/src/Drummer.cpp -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/src/Echo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/src/Echo.cpp -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/src/Envelope.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/src/Envelope.cpp -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/src/FM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/src/FM.cpp -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/src/FMVoices.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/src/FMVoices.cpp -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/src/FileLoop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/src/FileLoop.cpp -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/src/FileRead.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/src/FileRead.cpp -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/src/FileWrite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/src/FileWrite.cpp -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/src/FileWvIn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/src/FileWvIn.cpp -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/src/FileWvOut.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/src/FileWvOut.cpp -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/src/Fir.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/src/Fir.cpp -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/src/Flute.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/src/Flute.cpp -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/src/FormSwep.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/src/FormSwep.cpp -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/src/FreeVerb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/src/FreeVerb.cpp -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/src/Granulate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/src/Granulate.cpp -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/src/Guitar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/src/Guitar.cpp -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/src/HevyMetl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/src/HevyMetl.cpp -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/src/Iir.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/src/Iir.cpp -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/src/InetWvIn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/src/InetWvIn.cpp -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/src/InetWvOut.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/src/InetWvOut.cpp -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/src/JCRev.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/src/JCRev.cpp -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/src/LentPitShift.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/src/LentPitShift.cpp -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/src/Mandolin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/src/Mandolin.cpp -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/src/Mesh2D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/src/Mesh2D.cpp -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/src/Messager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/src/Messager.cpp -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/src/MidiFileIn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/src/MidiFileIn.cpp -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/src/Modal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/src/Modal.cpp -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/src/ModalBar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/src/ModalBar.cpp -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/src/Modulate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/src/Modulate.cpp -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/src/Moog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/src/Moog.cpp -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/src/Mutex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/src/Mutex.cpp -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/src/NRev.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/src/NRev.cpp -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/src/Noise.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/src/Noise.cpp -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/src/OnePole.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/src/OnePole.cpp -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/src/OneZero.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/src/OneZero.cpp -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/src/PRCRev.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/src/PRCRev.cpp -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/src/PercFlut.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/src/PercFlut.cpp -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/src/Phonemes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/src/Phonemes.cpp -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/src/PitShift.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/src/PitShift.cpp -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/src/PluckTwo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/src/PluckTwo.cpp -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/src/Plucked.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/src/Plucked.cpp -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/src/PoleZero.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/src/PoleZero.cpp -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/src/Resonate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/src/Resonate.cpp -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/src/Rhodey.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/src/Rhodey.cpp -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/src/RtAudio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/src/RtAudio.cpp -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/src/RtMidi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/src/RtMidi.cpp -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/src/RtWvIn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/src/RtWvIn.cpp -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/src/RtWvOut.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/src/RtWvOut.cpp -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/src/Sampler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/src/Sampler.cpp -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/src/Saxofony.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/src/Saxofony.cpp -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/src/Shakers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/src/Shakers.cpp -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/src/Simple.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/src/Simple.cpp -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/src/SineWave.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/src/SineWave.cpp -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/src/SingWave.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/src/SingWave.cpp -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/src/Sitar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/src/Sitar.cpp -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/src/Skini.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/src/Skini.cpp -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/src/Socket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/src/Socket.cpp -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/src/Sphere.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/src/Sphere.cpp -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/src/StifKarp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/src/StifKarp.cpp -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/src/Stk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/src/Stk.cpp -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/src/TapDelay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/src/TapDelay.cpp -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/src/TcpClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/src/TcpClient.cpp -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/src/TcpServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/src/TcpServer.cpp -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/src/Thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/src/Thread.cpp -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/src/TubeBell.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/src/TubeBell.cpp -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/src/Twang.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/src/Twang.cpp -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/src/TwoPole.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/src/TwoPole.cpp -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/src/TwoZero.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/src/TwoZero.cpp -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/src/UdpSocket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/src/UdpSocket.cpp -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/src/VoicForm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/src/VoicForm.cpp -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/src/Voicer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/src/Voicer.cpp -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/src/Whistle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/src/Whistle.cpp -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/src/Wurley.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/src/Wurley.cpp -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/src/include/FunctionDiscoveryKeys_devpkey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/src/include/FunctionDiscoveryKeys_devpkey.h -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/src/include/asio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/src/include/asio.cpp -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/src/include/asio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/src/include/asio.h -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/src/include/asiodrivers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/src/include/asiodrivers.cpp -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/src/include/asiodrivers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/src/include/asiodrivers.h -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/src/include/asiodrvr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/src/include/asiodrvr.h -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/src/include/asiolist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/src/include/asiolist.cpp -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/src/include/asiolist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/src/include/asiolist.h -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/src/include/asiosys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/src/include/asiosys.h -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/src/include/dsound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/src/include/dsound.h -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/src/include/ginclude.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/src/include/ginclude.h -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/src/include/iasiodrv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/src/include/iasiodrv.h -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/src/include/iasiothiscallresolver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/src/include/iasiothiscallresolver.cpp -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/src/include/iasiothiscallresolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/src/include/iasiothiscallresolver.h -------------------------------------------------------------------------------- /VSTiPluginSourceCode/stk/src/include/soundcard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/stk/src/include/soundcard.h -------------------------------------------------------------------------------- /VSTiPluginSourceCode/vstsdk/interfaces/aeffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/vstsdk/interfaces/aeffect.h -------------------------------------------------------------------------------- /VSTiPluginSourceCode/vstsdk/interfaces/aeffectx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/vstsdk/interfaces/aeffectx.h -------------------------------------------------------------------------------- /VSTiPluginSourceCode/vstsdk/interfaces/vstfxstore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/vstsdk/interfaces/vstfxstore.h -------------------------------------------------------------------------------- /VSTiPluginSourceCode/vstsdk/source/aeffeditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/vstsdk/source/aeffeditor.h -------------------------------------------------------------------------------- /VSTiPluginSourceCode/vstsdk/source/audioeffect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/vstsdk/source/audioeffect.cpp -------------------------------------------------------------------------------- /VSTiPluginSourceCode/vstsdk/source/audioeffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/vstsdk/source/audioeffect.h -------------------------------------------------------------------------------- /VSTiPluginSourceCode/vstsdk/source/audioeffectx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/vstsdk/source/audioeffectx.cpp -------------------------------------------------------------------------------- /VSTiPluginSourceCode/vstsdk/source/audioeffectx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/vstsdk/source/audioeffectx.h -------------------------------------------------------------------------------- /VSTiPluginSourceCode/vstsdk/vstplug.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopher-atz/64klang/HEAD/VSTiPluginSourceCode/vstsdk/vstplug.def --------------------------------------------------------------------------------